diff --git a/grammar.js b/grammar.js index 1907a3a3..d140d127 100644 --- a/grammar.js +++ b/grammar.js @@ -11,21 +11,22 @@ // https://doc.rust-lang.org/reference/expressions.html#expression-precedence const PREC = { - call: 15, - field: 14, - try: 13, - unary: 12, - cast: 11, - multiplicative: 10, - additive: 9, - shift: 8, - bitand: 7, - bitxor: 6, - bitor: 5, - comparative: 4, - and: 3, - or: 2, - range: 1, + call: 16, + field: 15, + try: 14, + unary: 13, + cast: 12, + multiplicative: 11, + additive: 10, + shift: 9, + bitand: 8, + bitxor: 7, + bitor: 6, + comparative: 5, + and: 4, + or: 3, + range: 2, + attribute: 1, assign: 0, closure: -1, }; @@ -95,8 +96,10 @@ module.exports = grammar({ $._field_identifier, $._non_special_token, $._declaration_statement, + $._declaration_statement_without_attribute, $._reserved_identifier, $._expression_ending_with_block, + $._expression_ending_with_block_without_attribute, ], conflicts: $ => [ @@ -132,12 +135,11 @@ module.exports = grammar({ prec(1, $._expression_ending_with_block), ), - _declaration_statement: $ => choice( + _declaration_statement_without_attribute: $ => choice( $.const_item, $.macro_invocation, $.macro_definition, $.empty_statement, - $.attribute_item, $.inner_attribute_item, $.mod_item, $.foreign_mod_item, @@ -156,6 +158,16 @@ module.exports = grammar({ $.static_item, ), + declaration_with_attribute: $ => seq( + field('attributes', $.attributes), + field('declaration', $._declaration_statement), + ), + + _declaration_statement: $ => choice( + $._declaration_statement_without_attribute, + $.declaration_with_attribute, + ), + // Section - Macro definitions macro_definition: $ => { @@ -252,6 +264,10 @@ module.exports = grammar({ ']', ), + attributes: $ => prec.left(-3, + repeat1($.attribute_item) + ), + inner_attribute_item: $ => seq( '#', '!', @@ -332,12 +348,13 @@ module.exports = grammar({ enum_variant_list: $ => seq( '{', - sepBy(',', seq(repeat($.attribute_item), $.enum_variant)), + sepBy(',', seq($.enum_variant)), optional(','), '}', ), enum_variant: $ => seq( + optional($.attributes), optional($.visibility_modifier), field('name', $.identifier), field('body', optional(choice( @@ -352,7 +369,7 @@ module.exports = grammar({ field_declaration_list: $ => seq( '{', - sepBy(',', seq(repeat($.attribute_item), $.field_declaration)), + sepBy(',', seq(optional($.attributes), $.field_declaration)), optional(','), '}', ), @@ -367,7 +384,7 @@ module.exports = grammar({ ordered_field_declaration_list: $ => seq( '(', sepBy(',', seq( - repeat($.attribute_item), + optional($.attributes), optional($.visibility_modifier), field('type', $._type), )), @@ -549,7 +566,7 @@ module.exports = grammar({ type_parameters: $ => prec(1, seq( '<', sepBy1(',', seq( - repeat($.attribute_item), + optional($.attributes), choice( $.metavariable, $.type_parameter, @@ -660,7 +677,7 @@ module.exports = grammar({ parameters: $ => seq( '(', sepBy(',', seq( - optional($.attribute_item), + optional($.attributes), choice( $.parameter, $.self_parameter, @@ -951,15 +968,27 @@ module.exports = grammar({ $.closure_expression, $.parenthesized_expression, $.struct_expression, - $._expression_ending_with_block, + $._expression_ending_with_block_without_attribute, ), _expression: $ => choice( + $._expression_without_attribute, + $.expression_with_attribute, + ), + + expression_with_attribute: $ => prec(PREC.attribute, + seq( + field('attributes', $.attributes), + field('expression', $._expression_without_attribute), + ) + ), + + _expression_without_attribute: $ => choice( $._expression_except_range, $.range_expression, ), - _expression_ending_with_block: $ => choice( + _expression_ending_with_block_without_attribute: $ => choice( $.unsafe_block, $.async_block, $.gen_block, @@ -973,6 +1002,18 @@ module.exports = grammar({ $.const_block, ), + block_expression_with_attribute: $ => prec(PREC.attribute, + seq( + field('attributes', $.attributes), + field('expression', $._expression_ending_with_block_without_attribute), + ) + ), + + _expression_ending_with_block: $ => choice( + $._expression_ending_with_block_without_attribute, + $.block_expression_with_attribute, + ), + macro_invocation: $ => seq( field('macro', choice( $.scoped_identifier, @@ -1113,14 +1154,14 @@ module.exports = grammar({ arguments: $ => seq( '(', - sepBy(',', seq(repeat($.attribute_item), $._expression)), + sepBy(',', $._expression), optional(','), ')', ), array_expression: $ => seq( '[', - repeat($.attribute_item), + optional($.attributes), choice( seq( $._expression, @@ -1128,7 +1169,7 @@ module.exports = grammar({ field('length', $._expression), ), seq( - sepBy(',', seq(repeat($.attribute_item), $._expression)), + sepBy(',', seq(optional($.attributes), $._expression)), optional(','), ), ), @@ -1143,7 +1184,7 @@ module.exports = grammar({ tuple_expression: $ => seq( '(', - repeat($.attribute_item), + optional($.attributes), seq($._expression, ','), repeat(seq($._expression, ',')), optional($._expression), @@ -1173,12 +1214,12 @@ module.exports = grammar({ ), shorthand_field_initializer: $ => seq( - repeat($.attribute_item), + optional($.attributes), $.identifier, ), field_initializer: $ => seq( - repeat($.attribute_item), + optional($.attributes), field('field', choice($._field_identifier, $.integer_literal)), ':', field('value', $._expression), @@ -1233,6 +1274,7 @@ module.exports = grammar({ match_block: $ => seq( '{', + repeat($.inner_attribute_item), optional(seq( repeat($.match_arm), alias($.last_match_arm, $.match_arm), @@ -1241,7 +1283,7 @@ module.exports = grammar({ ), match_arm: $ => prec.right(seq( - repeat(choice($.attribute_item, $.inner_attribute_item)), + optional($.attributes), field('pattern', $.match_pattern), '=>', choice( @@ -1251,7 +1293,7 @@ module.exports = grammar({ )), last_match_arm: $ => seq( - repeat(choice($.attribute_item, $.inner_attribute_item)), + optional($.attributes), field('pattern', $.match_pattern), '=>', field('value', $._expression), @@ -1358,13 +1400,13 @@ module.exports = grammar({ $.block, ), - block: $ => seq( + block: $ => prec.right(3, seq( optional(seq($.label, ':')), '{', repeat($._statement), optional($._expression), '}', - ), + )), // Section - Patterns diff --git a/src/grammar.json b/src/grammar.json index b5cf2b16..9b9d308a 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -70,7 +70,7 @@ } ] }, - "_declaration_statement": { + "_declaration_statement_without_attribute": { "type": "CHOICE", "members": [ { @@ -89,10 +89,6 @@ "type": "SYMBOL", "name": "empty_statement" }, - { - "type": "SYMBOL", - "name": "attribute_item" - }, { "type": "SYMBOL", "name": "inner_attribute_item" @@ -159,6 +155,40 @@ } ] }, + "declaration_with_attribute": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "attributes", + "content": { + "type": "SYMBOL", + "name": "attributes" + } + }, + { + "type": "FIELD", + "name": "declaration", + "content": { + "type": "SYMBOL", + "name": "_declaration_statement" + } + } + ] + }, + "_declaration_statement": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_declaration_statement_without_attribute" + }, + { + "type": "SYMBOL", + "name": "declaration_with_attribute" + } + ] + }, "macro_definition": { "type": "SEQ", "members": [ @@ -1169,6 +1199,17 @@ } ] }, + "attributes": { + "type": "PREC_LEFT", + "value": -3, + "content": { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + } + }, "inner_attribute_item": { "type": "SEQ", "members": [ @@ -1604,13 +1645,6 @@ { "type": "SEQ", "members": [ - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "attribute_item" - } - }, { "type": "SYMBOL", "name": "enum_variant" @@ -1629,13 +1663,6 @@ { "type": "SEQ", "members": [ - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "attribute_item" - } - }, { "type": "SYMBOL", "name": "enum_variant" @@ -1673,6 +1700,18 @@ "enum_variant": { "type": "SEQ", "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attributes" + }, + { + "type": "BLANK" + } + ] + }, { "type": "CHOICE", "members": [ @@ -1762,11 +1801,16 @@ "type": "SEQ", "members": [ { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "attribute_item" - } + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attributes" + }, + { + "type": "BLANK" + } + ] }, { "type": "SYMBOL", @@ -1787,11 +1831,16 @@ "type": "SEQ", "members": [ { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "attribute_item" - } + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attributes" + }, + { + "type": "BLANK" + } + ] }, { "type": "SYMBOL", @@ -1881,11 +1930,16 @@ "type": "SEQ", "members": [ { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "attribute_item" - } + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attributes" + }, + { + "type": "BLANK" + } + ] }, { "type": "CHOICE", @@ -1922,11 +1976,16 @@ "type": "SEQ", "members": [ { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "attribute_item" - } + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attributes" + }, + { + "type": "BLANK" + } + ] }, { "type": "CHOICE", @@ -3147,11 +3206,16 @@ "type": "SEQ", "members": [ { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "attribute_item" - } + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attributes" + }, + { + "type": "BLANK" + } + ] }, { "type": "CHOICE", @@ -3189,11 +3253,16 @@ "type": "SEQ", "members": [ { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "attribute_item" - } + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attributes" + }, + { + "type": "BLANK" + } + ] }, { "type": "CHOICE", @@ -3755,7 +3824,7 @@ "members": [ { "type": "SYMBOL", - "name": "attribute_item" + "name": "attributes" }, { "type": "BLANK" @@ -3806,7 +3875,7 @@ "members": [ { "type": "SYMBOL", - "name": "attribute_item" + "name": "attributes" }, { "type": "BLANK" @@ -4427,7 +4496,7 @@ }, { "type": "PREC", - "value": 15, + "value": 16, "content": { "type": "SEQ", "members": [ @@ -5400,11 +5469,49 @@ }, { "type": "SYMBOL", - "name": "_expression_ending_with_block" + "name": "_expression_ending_with_block_without_attribute" } ] }, "_expression": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression_without_attribute" + }, + { + "type": "SYMBOL", + "name": "expression_with_attribute" + } + ] + }, + "expression_with_attribute": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "attributes", + "content": { + "type": "SYMBOL", + "name": "attributes" + } + }, + { + "type": "FIELD", + "name": "expression", + "content": { + "type": "SYMBOL", + "name": "_expression_without_attribute" + } + } + ] + } + }, + "_expression_without_attribute": { "type": "CHOICE", "members": [ { @@ -5417,7 +5524,7 @@ } ] }, - "_expression_ending_with_block": { + "_expression_ending_with_block_without_attribute": { "type": "CHOICE", "members": [ { @@ -5466,6 +5573,44 @@ } ] }, + "block_expression_with_attribute": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "attributes", + "content": { + "type": "SYMBOL", + "name": "attributes" + } + }, + { + "type": "FIELD", + "name": "expression", + "content": { + "type": "SYMBOL", + "name": "_expression_ending_with_block_without_attribute" + } + } + ] + } + }, + "_expression_ending_with_block": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression_ending_with_block_without_attribute" + }, + { + "type": "SYMBOL", + "name": "block_expression_with_attribute" + } + ] + }, "macro_invocation": { "type": "SEQ", "members": [ @@ -5769,7 +5914,7 @@ }, "range_expression": { "type": "PREC_LEFT", - "value": 1, + "value": 2, "content": { "type": "CHOICE", "members": [ @@ -5838,7 +5983,7 @@ }, "unary_expression": { "type": "PREC", - "value": 12, + "value": 13, "content": { "type": "SEQ", "members": [ @@ -5868,7 +6013,7 @@ }, "try_expression": { "type": "PREC", - "value": 13, + "value": 14, "content": { "type": "SEQ", "members": [ @@ -5885,7 +6030,7 @@ }, "reference_expression": { "type": "PREC", - "value": 12, + "value": 13, "content": { "type": "SEQ", "members": [ @@ -5948,7 +6093,7 @@ "members": [ { "type": "PREC_LEFT", - "value": 3, + "value": 4, "content": { "type": "SEQ", "members": [ @@ -5981,7 +6126,7 @@ }, { "type": "PREC_LEFT", - "value": 2, + "value": 3, "content": { "type": "SEQ", "members": [ @@ -6014,7 +6159,7 @@ }, { "type": "PREC_LEFT", - "value": 7, + "value": 8, "content": { "type": "SEQ", "members": [ @@ -6047,7 +6192,7 @@ }, { "type": "PREC_LEFT", - "value": 5, + "value": 6, "content": { "type": "SEQ", "members": [ @@ -6080,7 +6225,7 @@ }, { "type": "PREC_LEFT", - "value": 6, + "value": 7, "content": { "type": "SEQ", "members": [ @@ -6113,7 +6258,7 @@ }, { "type": "PREC_LEFT", - "value": 4, + "value": 5, "content": { "type": "SEQ", "members": [ @@ -6171,7 +6316,7 @@ }, { "type": "PREC_LEFT", - "value": 8, + "value": 9, "content": { "type": "SEQ", "members": [ @@ -6213,7 +6358,7 @@ }, { "type": "PREC_LEFT", - "value": 9, + "value": 10, "content": { "type": "SEQ", "members": [ @@ -6255,7 +6400,7 @@ }, { "type": "PREC_LEFT", - "value": 10, + "value": 11, "content": { "type": "SEQ", "members": [ @@ -6406,7 +6551,7 @@ }, "type_cast_expression": { "type": "PREC_LEFT", - "value": 11, + "value": 12, "content": { "type": "SEQ", "members": [ @@ -6495,7 +6640,7 @@ }, "call_expression": { "type": "PREC", - "value": 15, + "value": 16, "content": { "type": "SEQ", "members": [ @@ -6532,20 +6677,8 @@ "type": "SEQ", "members": [ { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "attribute_item" - } - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] + "type": "SYMBOL", + "name": "_expression" }, { "type": "REPEAT", @@ -6557,20 +6690,8 @@ "value": "," }, { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "attribute_item" - } - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] + "type": "SYMBOL", + "name": "_expression" } ] } @@ -6608,11 +6729,16 @@ "value": "[" }, { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "attribute_item" - } + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attributes" + }, + { + "type": "BLANK" + } + ] }, { "type": "CHOICE", @@ -6651,11 +6777,16 @@ "type": "SEQ", "members": [ { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "attribute_item" - } + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attributes" + }, + { + "type": "BLANK" + } + ] }, { "type": "SYMBOL", @@ -6676,11 +6807,16 @@ "type": "SEQ", "members": [ { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "attribute_item" - } + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attributes" + }, + { + "type": "BLANK" + } + ] }, { "type": "SYMBOL", @@ -6745,11 +6881,16 @@ "value": "(" }, { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "attribute_item" - } + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attributes" + }, + { + "type": "BLANK" + } + ] }, { "type": "SEQ", @@ -6938,11 +7079,16 @@ "type": "SEQ", "members": [ { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "attribute_item" - } + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attributes" + }, + { + "type": "BLANK" + } + ] }, { "type": "SYMBOL", @@ -6954,11 +7100,16 @@ "type": "SEQ", "members": [ { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "attribute_item" - } + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attributes" + }, + { + "type": "BLANK" + } + ] }, { "type": "FIELD", @@ -7073,7 +7224,7 @@ "name": "value", "content": { "type": "PREC_LEFT", - "value": 3, + "value": 4, "content": { "type": "SYMBOL", "name": "_expression" @@ -7084,7 +7235,7 @@ }, "_let_chain": { "type": "PREC_LEFT", - "value": 3, + "value": 4, "content": { "type": "CHOICE", "members": [ @@ -7252,6 +7403,13 @@ "type": "STRING", "value": "{" }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "inner_attribute_item" + } + }, { "type": "CHOICE", "members": [ @@ -7294,20 +7452,16 @@ "type": "SEQ", "members": [ { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "attribute_item" - }, - { - "type": "SYMBOL", - "name": "inner_attribute_item" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attributes" + }, + { + "type": "BLANK" + } + ] }, { "type": "FIELD", @@ -7362,20 +7516,16 @@ "type": "SEQ", "members": [ { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "attribute_item" - }, - { - "type": "SYMBOL", - "name": "inner_attribute_item" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attributes" + }, + { + "type": "BLANK" + } + ] }, { "type": "FIELD", @@ -7858,7 +8008,7 @@ }, "index_expression": { "type": "PREC", - "value": 15, + "value": 16, "content": { "type": "SEQ", "members": [ @@ -7883,7 +8033,7 @@ }, "await_expression": { "type": "PREC", - "value": 14, + "value": 15, "content": { "type": "SEQ", "members": [ @@ -7904,7 +8054,7 @@ }, "field_expression": { "type": "PREC", - "value": 14, + "value": 15, "content": { "type": "SEQ", "members": [ @@ -8017,57 +8167,61 @@ ] }, "block": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "label" - }, - { - "type": "STRING", - "value": ":" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "{" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_statement" - } - }, - { - "type": "CHOICE", - "members": [ - { + "type": "PREC_RIGHT", + "value": 3, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "label" + }, + { + "type": "STRING", + "value": ":" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "{" + }, + { + "type": "REPEAT", + "content": { "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "BLANK" + "name": "_statement" } - ] - }, - { - "type": "STRING", - "value": "}" - } - ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + } }, "_pattern": { "type": "CHOICE", @@ -9725,8 +9879,10 @@ "_field_identifier", "_non_special_token", "_declaration_statement", + "_declaration_statement_without_attribute", "_reserved_identifier", - "_expression_ending_with_block" + "_expression_ending_with_block", + "_expression_ending_with_block_without_attribute" ], "supertypes": [ "_expression", diff --git a/src/node-types.json b/src/node-types.json index 60a98952..32a36ed0 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -8,11 +8,11 @@ "named": true }, { - "type": "attribute_item", + "type": "const_item", "named": true }, { - "type": "const_item", + "type": "declaration_with_attribute", "named": true }, { @@ -145,6 +145,10 @@ "type": "continue_expression", "named": true }, + { + "type": "expression_with_attribute", + "named": true + }, { "type": "field_expression", "named": true @@ -532,10 +536,6 @@ { "type": "_expression", "named": true - }, - { - "type": "attribute_item", - "named": true } ] } @@ -564,7 +564,7 @@ "named": true }, { - "type": "attribute_item", + "type": "attributes", "named": true } ] @@ -754,6 +754,21 @@ ] } }, + { + "type": "attributes", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "attribute_item", + "named": true + } + ] + } + }, { "type": "await_expression", "named": true, @@ -951,6 +966,72 @@ } } }, + { + "type": "block_expression_with_attribute", + "named": true, + "fields": { + "attributes": { + "multiple": false, + "required": true, + "types": [ + { + "type": "attributes", + "named": true + } + ] + }, + "expression": { + "multiple": false, + "required": true, + "types": [ + { + "type": "async_block", + "named": true + }, + { + "type": "block", + "named": true + }, + { + "type": "const_block", + "named": true + }, + { + "type": "for_expression", + "named": true + }, + { + "type": "gen_block", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "loop_expression", + "named": true + }, + { + "type": "match_expression", + "named": true + }, + { + "type": "try_block", + "named": true + }, + { + "type": "unsafe_block", + "named": true + }, + { + "type": "while_expression", + "named": true + } + ] + } + } + }, { "type": "boolean_literal", "named": true, @@ -1481,6 +1562,32 @@ ] } }, + { + "type": "declaration_with_attribute", + "named": true, + "fields": { + "attributes": { + "multiple": false, + "required": true, + "types": [ + { + "type": "attributes", + "named": true + } + ] + }, + "declaration": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_declaration_statement", + "named": true + } + ] + } + } + }, { "type": "dynamic_type", "named": true, @@ -1631,9 +1738,13 @@ } }, "children": { - "multiple": false, + "multiple": true, "required": false, "types": [ + { + "type": "attributes", + "named": true + }, { "type": "visibility_modifier", "named": true @@ -1649,10 +1760,6 @@ "multiple": true, "required": false, "types": [ - { - "type": "attribute_item", - "named": true - }, { "type": "enum_variant", "named": true @@ -1671,10 +1778,196 @@ { "type": "_expression", "named": true + }, + { + "type": "block_expression_with_attribute", + "named": true } ] } }, + { + "type": "expression_with_attribute", + "named": true, + "fields": { + "attributes": { + "multiple": false, + "required": true, + "types": [ + { + "type": "attributes", + "named": true + } + ] + }, + "expression": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_literal", + "named": true + }, + { + "type": "array_expression", + "named": true + }, + { + "type": "assignment_expression", + "named": true + }, + { + "type": "async_block", + "named": true + }, + { + "type": "await_expression", + "named": true + }, + { + "type": "binary_expression", + "named": true + }, + { + "type": "block", + "named": true + }, + { + "type": "break_expression", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "closure_expression", + "named": true + }, + { + "type": "compound_assignment_expr", + "named": true + }, + { + "type": "const_block", + "named": true + }, + { + "type": "continue_expression", + "named": true + }, + { + "type": "field_expression", + "named": true + }, + { + "type": "for_expression", + "named": true + }, + { + "type": "gen_block", + "named": true + }, + { + "type": "generic_function", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "index_expression", + "named": true + }, + { + "type": "loop_expression", + "named": true + }, + { + "type": "macro_invocation", + "named": true + }, + { + "type": "match_expression", + "named": true + }, + { + "type": "metavariable", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "reference_expression", + "named": true + }, + { + "type": "return_expression", + "named": true + }, + { + "type": "scoped_identifier", + "named": true + }, + { + "type": "self", + "named": true + }, + { + "type": "struct_expression", + "named": true + }, + { + "type": "try_block", + "named": true + }, + { + "type": "try_expression", + "named": true + }, + { + "type": "tuple_expression", + "named": true + }, + { + "type": "type_cast_expression", + "named": true + }, + { + "type": "unary_expression", + "named": true + }, + { + "type": "unit_expression", + "named": true + }, + { + "type": "unsafe_block", + "named": true + }, + { + "type": "while_expression", + "named": true + }, + { + "type": "yield_expression", + "named": true + } + ] + } + } + }, { "type": "extern_crate_declaration", "named": true, @@ -1775,7 +2068,7 @@ "required": false, "types": [ { - "type": "attribute_item", + "type": "attributes", "named": true }, { @@ -1845,11 +2138,11 @@ } }, "children": { - "multiple": true, + "multiple": false, "required": false, "types": [ { - "type": "attribute_item", + "type": "attributes", "named": true } ] @@ -2867,20 +3160,20 @@ { "type": "_expression", "named": true + }, + { + "type": "block_expression_with_attribute", + "named": true } ] } }, "children": { - "multiple": true, + "multiple": false, "required": false, "types": [ { - "type": "attribute_item", - "named": true - }, - { - "type": "inner_attribute_item", + "type": "attributes", "named": true } ] @@ -2894,6 +3187,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "inner_attribute_item", + "named": true + }, { "type": "match_arm", "named": true @@ -3075,7 +3372,7 @@ "required": false, "types": [ { - "type": "attribute_item", + "type": "attributes", "named": true }, { @@ -3143,7 +3440,7 @@ "named": true }, { - "type": "attribute_item", + "type": "attributes", "named": true }, { @@ -3647,7 +3944,7 @@ "required": true, "types": [ { - "type": "attribute_item", + "type": "attributes", "named": true }, { @@ -4251,7 +4548,7 @@ "named": true }, { - "type": "attribute_item", + "type": "attributes", "named": true } ] @@ -4517,7 +4814,7 @@ "required": true, "types": [ { - "type": "attribute_item", + "type": "attributes", "named": true }, { diff --git a/src/parser.c b/src/parser.c index 31465729..608f96ca 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,4 +1,4 @@ -/* Automatically generated by tree-sitter v0.25.3 (2a835ee029dca1c325e6f1c01dbce40396f6123e) */ +/* Automatically generated by tree-sitter v0.25.3 */ #include "tree_sitter/parser.h" @@ -6,18 +6,18 @@ #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif -#define LANGUAGE_VERSION 14 -#define STATE_COUNT 3823 -#define LARGE_STATE_COUNT 1063 -#define SYMBOL_COUNT 351 +#define LANGUAGE_VERSION 15 +#define STATE_COUNT 3885 +#define LARGE_STATE_COUNT 1098 +#define SYMBOL_COUNT 357 #define ALIAS_COUNT 4 #define TOKEN_COUNT 157 #define EXTERNAL_TOKEN_COUNT 10 -#define FIELD_COUNT 31 +#define FIELD_COUNT 34 #define MAX_ALIAS_SEQUENCE_LENGTH 10 #define MAX_RESERVED_WORD_SET_SIZE 0 -#define PRODUCTION_ID_COUNT 295 -#define SUPERTYPE_COUNT 0 +#define PRODUCTION_ID_COUNT 299 +#define SUPERTYPE_COUNT 5 enum ts_symbol_identifiers { sym_identifier = 1, @@ -180,200 +180,206 @@ enum ts_symbol_identifiers { sym__statement = 158, sym_empty_statement = 159, sym_expression_statement = 160, - sym_macro_definition = 161, - sym_macro_rule = 162, - sym__token_pattern = 163, - sym_token_tree_pattern = 164, - sym_token_binding_pattern = 165, - sym_token_repetition_pattern = 166, - sym_fragment_specifier = 167, - sym_token_tree = 168, - sym_token_repetition = 169, - sym_attribute_item = 170, - sym_inner_attribute_item = 171, - sym_attribute = 172, - sym_mod_item = 173, - sym_foreign_mod_item = 174, - sym_declaration_list = 175, - sym_struct_item = 176, - sym_union_item = 177, - sym_enum_item = 178, - sym_enum_variant_list = 179, - sym_enum_variant = 180, - sym_field_declaration_list = 181, - sym_field_declaration = 182, - sym_ordered_field_declaration_list = 183, - sym_extern_crate_declaration = 184, - sym_const_item = 185, - sym_static_item = 186, - sym_type_item = 187, - sym_function_item = 188, - sym_function_signature_item = 189, - sym_function_modifiers = 190, - sym_where_clause = 191, - sym_where_predicate = 192, - sym_impl_item = 193, - sym_trait_item = 194, - sym_associated_type = 195, - sym_trait_bounds = 196, - sym_higher_ranked_trait_bound = 197, - sym_removed_trait_bound = 198, - sym_type_parameters = 199, - sym_const_parameter = 200, - sym_type_parameter = 201, - sym_lifetime_parameter = 202, - sym_let_declaration = 203, - sym_use_declaration = 204, - sym__use_clause = 205, - sym_scoped_use_list = 206, - sym_use_list = 207, - sym_use_as_clause = 208, - sym_use_wildcard = 209, - sym_parameters = 210, - sym_self_parameter = 211, - sym_variadic_parameter = 212, - sym_parameter = 213, - sym_extern_modifier = 214, - sym_visibility_modifier = 215, - sym__type = 216, - sym_bracketed_type = 217, - sym_qualified_type = 218, - sym_lifetime = 219, - sym_array_type = 220, - sym_for_lifetimes = 221, - sym_function_type = 222, - sym_tuple_type = 223, - sym_unit_type = 224, - sym_generic_function = 225, - sym_generic_type = 226, - sym_generic_type_with_turbofish = 227, - sym_bounded_type = 228, - sym_use_bounds = 229, - sym_type_arguments = 230, - sym_type_binding = 231, - sym_reference_type = 232, - sym_pointer_type = 233, - sym_never_type = 234, - sym_abstract_type = 235, - sym_dynamic_type = 236, - sym__expression_except_range = 237, - sym__expression = 238, - sym_macro_invocation = 239, - sym_delim_token_tree = 240, - sym__delim_tokens = 241, - sym__non_delim_token = 242, - sym_scoped_identifier = 243, - sym_scoped_type_identifier_in_expression_position = 244, - sym_scoped_type_identifier = 245, - sym_range_expression = 246, - sym_unary_expression = 247, - sym_try_expression = 248, - sym_reference_expression = 249, - sym_binary_expression = 250, - sym_assignment_expression = 251, - sym_compound_assignment_expr = 252, - sym_type_cast_expression = 253, - sym_return_expression = 254, - sym_yield_expression = 255, - sym_call_expression = 256, - sym_arguments = 257, - sym_array_expression = 258, - sym_parenthesized_expression = 259, - sym_tuple_expression = 260, - sym_unit_expression = 261, - sym_struct_expression = 262, - sym_field_initializer_list = 263, - sym_shorthand_field_initializer = 264, - sym_field_initializer = 265, - sym_base_field_initializer = 266, - sym_if_expression = 267, - sym_let_condition = 268, - sym__let_chain = 269, - sym__condition = 270, - sym_else_clause = 271, - sym_match_expression = 272, - sym_match_block = 273, - sym_match_arm = 274, - sym_last_match_arm = 275, - sym_match_pattern = 276, - sym_while_expression = 277, - sym_loop_expression = 278, - sym_for_expression = 279, - sym_const_block = 280, - sym_closure_expression = 281, - sym_closure_parameters = 282, - sym_label = 283, - sym_break_expression = 284, - sym_continue_expression = 285, - sym_index_expression = 286, - sym_await_expression = 287, - sym_field_expression = 288, - sym_unsafe_block = 289, - sym_async_block = 290, - sym_gen_block = 291, - sym_try_block = 292, - sym_block = 293, - sym__pattern = 294, - sym_generic_pattern = 295, - sym_tuple_pattern = 296, - sym_slice_pattern = 297, - sym_tuple_struct_pattern = 298, - sym_struct_pattern = 299, - sym_field_pattern = 300, - sym_remaining_field_pattern = 301, - sym_mut_pattern = 302, - sym_range_pattern = 303, - sym_ref_pattern = 304, - sym_captured_pattern = 305, - sym_reference_pattern = 306, - sym_or_pattern = 307, - sym__literal = 308, - sym__literal_pattern = 309, - sym_negative_literal = 310, - sym_string_literal = 311, - sym_raw_string_literal = 312, - sym_boolean_literal = 313, - sym_line_comment = 314, - sym__line_doc_comment_marker = 315, - sym__inner_line_doc_comment_marker = 316, - sym__outer_line_doc_comment_marker = 317, - sym_block_comment = 318, - sym__block_doc_comment_marker = 319, - aux_sym_source_file_repeat1 = 320, - aux_sym_macro_definition_repeat1 = 321, - aux_sym_token_tree_pattern_repeat1 = 322, - aux_sym_token_tree_repeat1 = 323, - aux_sym__non_special_token_repeat1 = 324, - aux_sym_declaration_list_repeat1 = 325, - aux_sym_enum_variant_list_repeat1 = 326, - aux_sym_enum_variant_list_repeat2 = 327, - aux_sym_field_declaration_list_repeat1 = 328, - aux_sym_ordered_field_declaration_list_repeat1 = 329, - aux_sym_function_modifiers_repeat1 = 330, - aux_sym_where_clause_repeat1 = 331, - aux_sym_trait_bounds_repeat1 = 332, - aux_sym_type_parameters_repeat1 = 333, - aux_sym_use_list_repeat1 = 334, - aux_sym_parameters_repeat1 = 335, - aux_sym_for_lifetimes_repeat1 = 336, - aux_sym_tuple_type_repeat1 = 337, - aux_sym_use_bounds_repeat1 = 338, - aux_sym_type_arguments_repeat1 = 339, - aux_sym_delim_token_tree_repeat1 = 340, - aux_sym_arguments_repeat1 = 341, - aux_sym_tuple_expression_repeat1 = 342, - aux_sym_field_initializer_list_repeat1 = 343, - aux_sym_match_block_repeat1 = 344, - aux_sym_match_arm_repeat1 = 345, - aux_sym_closure_parameters_repeat1 = 346, - aux_sym_tuple_pattern_repeat1 = 347, - aux_sym_slice_pattern_repeat1 = 348, - aux_sym_struct_pattern_repeat1 = 349, - aux_sym_string_literal_repeat1 = 350, - alias_sym_field_identifier = 351, - alias_sym_let_chain = 352, - alias_sym_shorthand_field_identifier = 353, - alias_sym_type_identifier = 354, + sym_declaration_with_attribute = 161, + sym_macro_definition = 162, + sym_macro_rule = 163, + sym__token_pattern = 164, + sym_token_tree_pattern = 165, + sym_token_binding_pattern = 166, + sym_token_repetition_pattern = 167, + sym_fragment_specifier = 168, + sym_token_tree = 169, + sym_token_repetition = 170, + sym_attribute_item = 171, + sym_attributes = 172, + sym_inner_attribute_item = 173, + sym_attribute = 174, + sym_mod_item = 175, + sym_foreign_mod_item = 176, + sym_declaration_list = 177, + sym_struct_item = 178, + sym_union_item = 179, + sym_enum_item = 180, + sym_enum_variant_list = 181, + sym_enum_variant = 182, + sym_field_declaration_list = 183, + sym_field_declaration = 184, + sym_ordered_field_declaration_list = 185, + sym_extern_crate_declaration = 186, + sym_const_item = 187, + sym_static_item = 188, + sym_type_item = 189, + sym_function_item = 190, + sym_function_signature_item = 191, + sym_function_modifiers = 192, + sym_where_clause = 193, + sym_where_predicate = 194, + sym_impl_item = 195, + sym_trait_item = 196, + sym_associated_type = 197, + sym_trait_bounds = 198, + sym_higher_ranked_trait_bound = 199, + sym_removed_trait_bound = 200, + sym_type_parameters = 201, + sym_const_parameter = 202, + sym_type_parameter = 203, + sym_lifetime_parameter = 204, + sym_let_declaration = 205, + sym_use_declaration = 206, + sym__use_clause = 207, + sym_scoped_use_list = 208, + sym_use_list = 209, + sym_use_as_clause = 210, + sym_use_wildcard = 211, + sym_parameters = 212, + sym_self_parameter = 213, + sym_variadic_parameter = 214, + sym_parameter = 215, + sym_extern_modifier = 216, + sym_visibility_modifier = 217, + sym__type = 218, + sym_bracketed_type = 219, + sym_qualified_type = 220, + sym_lifetime = 221, + sym_array_type = 222, + sym_for_lifetimes = 223, + sym_function_type = 224, + sym_tuple_type = 225, + sym_unit_type = 226, + sym_generic_function = 227, + sym_generic_type = 228, + sym_generic_type_with_turbofish = 229, + sym_bounded_type = 230, + sym_use_bounds = 231, + sym_type_arguments = 232, + sym_type_binding = 233, + sym_reference_type = 234, + sym_pointer_type = 235, + sym_never_type = 236, + sym_abstract_type = 237, + sym_dynamic_type = 238, + sym__expression_except_range = 239, + sym__expression = 240, + sym_expression_with_attribute = 241, + sym__expression_without_attribute = 242, + sym_block_expression_with_attribute = 243, + sym_macro_invocation = 244, + sym_delim_token_tree = 245, + sym__delim_tokens = 246, + sym__non_delim_token = 247, + sym_scoped_identifier = 248, + sym_scoped_type_identifier_in_expression_position = 249, + sym_scoped_type_identifier = 250, + sym_range_expression = 251, + sym_unary_expression = 252, + sym_try_expression = 253, + sym_reference_expression = 254, + sym_binary_expression = 255, + sym_assignment_expression = 256, + sym_compound_assignment_expr = 257, + sym_type_cast_expression = 258, + sym_return_expression = 259, + sym_yield_expression = 260, + sym_call_expression = 261, + sym_arguments = 262, + sym_array_expression = 263, + sym_parenthesized_expression = 264, + sym_tuple_expression = 265, + sym_unit_expression = 266, + sym_struct_expression = 267, + sym_field_initializer_list = 268, + sym_shorthand_field_initializer = 269, + sym_field_initializer = 270, + sym_base_field_initializer = 271, + sym_if_expression = 272, + sym_let_condition = 273, + sym__let_chain = 274, + sym__condition = 275, + sym_else_clause = 276, + sym_match_expression = 277, + sym_match_block = 278, + sym_match_arm = 279, + sym_last_match_arm = 280, + sym_match_pattern = 281, + sym_while_expression = 282, + sym_loop_expression = 283, + sym_for_expression = 284, + sym_const_block = 285, + sym_closure_expression = 286, + sym_closure_parameters = 287, + sym_label = 288, + sym_break_expression = 289, + sym_continue_expression = 290, + sym_index_expression = 291, + sym_await_expression = 292, + sym_field_expression = 293, + sym_unsafe_block = 294, + sym_async_block = 295, + sym_gen_block = 296, + sym_try_block = 297, + sym_block = 298, + sym__pattern = 299, + sym_generic_pattern = 300, + sym_tuple_pattern = 301, + sym_slice_pattern = 302, + sym_tuple_struct_pattern = 303, + sym_struct_pattern = 304, + sym_field_pattern = 305, + sym_remaining_field_pattern = 306, + sym_mut_pattern = 307, + sym_range_pattern = 308, + sym_ref_pattern = 309, + sym_captured_pattern = 310, + sym_reference_pattern = 311, + sym_or_pattern = 312, + sym__literal = 313, + sym__literal_pattern = 314, + sym_negative_literal = 315, + sym_string_literal = 316, + sym_raw_string_literal = 317, + sym_boolean_literal = 318, + sym_line_comment = 319, + sym__line_doc_comment_marker = 320, + sym__inner_line_doc_comment_marker = 321, + sym__outer_line_doc_comment_marker = 322, + sym_block_comment = 323, + sym__block_doc_comment_marker = 324, + aux_sym_source_file_repeat1 = 325, + aux_sym_macro_definition_repeat1 = 326, + aux_sym_token_tree_pattern_repeat1 = 327, + aux_sym_token_tree_repeat1 = 328, + aux_sym__non_special_token_repeat1 = 329, + aux_sym_attributes_repeat1 = 330, + aux_sym_declaration_list_repeat1 = 331, + aux_sym_enum_variant_list_repeat1 = 332, + aux_sym_field_declaration_list_repeat1 = 333, + aux_sym_ordered_field_declaration_list_repeat1 = 334, + aux_sym_function_modifiers_repeat1 = 335, + aux_sym_where_clause_repeat1 = 336, + aux_sym_trait_bounds_repeat1 = 337, + aux_sym_type_parameters_repeat1 = 338, + aux_sym_use_list_repeat1 = 339, + aux_sym_parameters_repeat1 = 340, + aux_sym_for_lifetimes_repeat1 = 341, + aux_sym_tuple_type_repeat1 = 342, + aux_sym_use_bounds_repeat1 = 343, + aux_sym_type_arguments_repeat1 = 344, + aux_sym_delim_token_tree_repeat1 = 345, + aux_sym_arguments_repeat1 = 346, + aux_sym_array_expression_repeat1 = 347, + aux_sym_tuple_expression_repeat1 = 348, + aux_sym_field_initializer_list_repeat1 = 349, + aux_sym_match_block_repeat1 = 350, + aux_sym_match_block_repeat2 = 351, + aux_sym_closure_parameters_repeat1 = 352, + aux_sym_tuple_pattern_repeat1 = 353, + aux_sym_slice_pattern_repeat1 = 354, + aux_sym_struct_pattern_repeat1 = 355, + aux_sym_string_literal_repeat1 = 356, + alias_sym_field_identifier = 357, + alias_sym_let_chain = 358, + alias_sym_shorthand_field_identifier = 359, + alias_sym_type_identifier = 360, }; static const char * const ts_symbol_names[] = { @@ -538,6 +544,7 @@ static const char * const ts_symbol_names[] = { [sym__statement] = "_statement", [sym_empty_statement] = "empty_statement", [sym_expression_statement] = "expression_statement", + [sym_declaration_with_attribute] = "declaration_with_attribute", [sym_macro_definition] = "macro_definition", [sym_macro_rule] = "macro_rule", [sym__token_pattern] = "_token_pattern", @@ -548,6 +555,7 @@ static const char * const ts_symbol_names[] = { [sym_token_tree] = "token_tree", [sym_token_repetition] = "token_repetition", [sym_attribute_item] = "attribute_item", + [sym_attributes] = "attributes", [sym_inner_attribute_item] = "inner_attribute_item", [sym_attribute] = "attribute", [sym_mod_item] = "mod_item", @@ -616,6 +624,9 @@ static const char * const ts_symbol_names[] = { [sym_dynamic_type] = "dynamic_type", [sym__expression_except_range] = "_expression_except_range", [sym__expression] = "_expression", + [sym_expression_with_attribute] = "expression_with_attribute", + [sym__expression_without_attribute] = "_expression_without_attribute", + [sym_block_expression_with_attribute] = "block_expression_with_attribute", [sym_macro_invocation] = "macro_invocation", [sym_delim_token_tree] = "token_tree", [sym__delim_tokens] = "_delim_tokens", @@ -702,9 +713,9 @@ static const char * const ts_symbol_names[] = { [aux_sym_token_tree_pattern_repeat1] = "token_tree_pattern_repeat1", [aux_sym_token_tree_repeat1] = "token_tree_repeat1", [aux_sym__non_special_token_repeat1] = "_non_special_token_repeat1", + [aux_sym_attributes_repeat1] = "attributes_repeat1", [aux_sym_declaration_list_repeat1] = "declaration_list_repeat1", [aux_sym_enum_variant_list_repeat1] = "enum_variant_list_repeat1", - [aux_sym_enum_variant_list_repeat2] = "enum_variant_list_repeat2", [aux_sym_field_declaration_list_repeat1] = "field_declaration_list_repeat1", [aux_sym_ordered_field_declaration_list_repeat1] = "ordered_field_declaration_list_repeat1", [aux_sym_function_modifiers_repeat1] = "function_modifiers_repeat1", @@ -719,10 +730,11 @@ static const char * const ts_symbol_names[] = { [aux_sym_type_arguments_repeat1] = "type_arguments_repeat1", [aux_sym_delim_token_tree_repeat1] = "delim_token_tree_repeat1", [aux_sym_arguments_repeat1] = "arguments_repeat1", + [aux_sym_array_expression_repeat1] = "array_expression_repeat1", [aux_sym_tuple_expression_repeat1] = "tuple_expression_repeat1", [aux_sym_field_initializer_list_repeat1] = "field_initializer_list_repeat1", [aux_sym_match_block_repeat1] = "match_block_repeat1", - [aux_sym_match_arm_repeat1] = "match_arm_repeat1", + [aux_sym_match_block_repeat2] = "match_block_repeat2", [aux_sym_closure_parameters_repeat1] = "closure_parameters_repeat1", [aux_sym_tuple_pattern_repeat1] = "tuple_pattern_repeat1", [aux_sym_slice_pattern_repeat1] = "slice_pattern_repeat1", @@ -896,6 +908,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__statement] = sym__statement, [sym_empty_statement] = sym_empty_statement, [sym_expression_statement] = sym_expression_statement, + [sym_declaration_with_attribute] = sym_declaration_with_attribute, [sym_macro_definition] = sym_macro_definition, [sym_macro_rule] = sym_macro_rule, [sym__token_pattern] = sym__token_pattern, @@ -906,6 +919,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_token_tree] = sym_token_tree, [sym_token_repetition] = sym_token_repetition, [sym_attribute_item] = sym_attribute_item, + [sym_attributes] = sym_attributes, [sym_inner_attribute_item] = sym_inner_attribute_item, [sym_attribute] = sym_attribute, [sym_mod_item] = sym_mod_item, @@ -974,6 +988,9 @@ static const TSSymbol ts_symbol_map[] = { [sym_dynamic_type] = sym_dynamic_type, [sym__expression_except_range] = sym__expression_except_range, [sym__expression] = sym__expression, + [sym_expression_with_attribute] = sym_expression_with_attribute, + [sym__expression_without_attribute] = sym__expression_without_attribute, + [sym_block_expression_with_attribute] = sym_block_expression_with_attribute, [sym_macro_invocation] = sym_macro_invocation, [sym_delim_token_tree] = sym_token_tree, [sym__delim_tokens] = sym__delim_tokens, @@ -1060,9 +1077,9 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_token_tree_pattern_repeat1] = aux_sym_token_tree_pattern_repeat1, [aux_sym_token_tree_repeat1] = aux_sym_token_tree_repeat1, [aux_sym__non_special_token_repeat1] = aux_sym__non_special_token_repeat1, + [aux_sym_attributes_repeat1] = aux_sym_attributes_repeat1, [aux_sym_declaration_list_repeat1] = aux_sym_declaration_list_repeat1, [aux_sym_enum_variant_list_repeat1] = aux_sym_enum_variant_list_repeat1, - [aux_sym_enum_variant_list_repeat2] = aux_sym_enum_variant_list_repeat2, [aux_sym_field_declaration_list_repeat1] = aux_sym_field_declaration_list_repeat1, [aux_sym_ordered_field_declaration_list_repeat1] = aux_sym_ordered_field_declaration_list_repeat1, [aux_sym_function_modifiers_repeat1] = aux_sym_function_modifiers_repeat1, @@ -1077,10 +1094,11 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_type_arguments_repeat1] = aux_sym_type_arguments_repeat1, [aux_sym_delim_token_tree_repeat1] = aux_sym_delim_token_tree_repeat1, [aux_sym_arguments_repeat1] = aux_sym_arguments_repeat1, + [aux_sym_array_expression_repeat1] = aux_sym_array_expression_repeat1, [aux_sym_tuple_expression_repeat1] = aux_sym_tuple_expression_repeat1, [aux_sym_field_initializer_list_repeat1] = aux_sym_field_initializer_list_repeat1, [aux_sym_match_block_repeat1] = aux_sym_match_block_repeat1, - [aux_sym_match_arm_repeat1] = aux_sym_match_arm_repeat1, + [aux_sym_match_block_repeat2] = aux_sym_match_block_repeat2, [aux_sym_closure_parameters_repeat1] = aux_sym_closure_parameters_repeat1, [aux_sym_tuple_pattern_repeat1] = aux_sym_tuple_pattern_repeat1, [aux_sym_slice_pattern_repeat1] = aux_sym_slice_pattern_repeat1, @@ -1737,6 +1755,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_declaration_with_attribute] = { + .visible = true, + .named = true, + }, [sym_macro_definition] = { .visible = true, .named = true, @@ -1777,6 +1799,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_attributes] = { + .visible = true, + .named = true, + }, [sym_inner_attribute_item] = { .visible = true, .named = true, @@ -2051,6 +2077,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .named = true, .supertype = true, }, + [sym_expression_with_attribute] = { + .visible = true, + .named = true, + }, + [sym__expression_without_attribute] = { + .visible = false, + .named = true, + }, + [sym_block_expression_with_attribute] = { + .visible = true, + .named = true, + }, [sym_macro_invocation] = { .visible = true, .named = true, @@ -2398,15 +2436,15 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_declaration_list_repeat1] = { + [aux_sym_attributes_repeat1] = { .visible = false, .named = false, }, - [aux_sym_enum_variant_list_repeat1] = { + [aux_sym_declaration_list_repeat1] = { .visible = false, .named = false, }, - [aux_sym_enum_variant_list_repeat2] = { + [aux_sym_enum_variant_list_repeat1] = { .visible = false, .named = false, }, @@ -2466,6 +2504,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_array_expression_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_tuple_expression_repeat1] = { .visible = false, .named = false, @@ -2478,7 +2520,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_match_arm_repeat1] = { + [aux_sym_match_block_repeat2] = { .visible = false, .named = false, }, @@ -2525,33 +2567,36 @@ enum ts_field_identifiers { field_alternative = 2, field_argument = 3, field_arguments = 4, - field_body = 5, - field_bounds = 6, - field_condition = 7, - field_consequence = 8, - field_default_type = 9, - field_doc = 10, - field_element = 11, - field_field = 12, - field_function = 13, - field_inner = 14, - field_left = 15, - field_length = 16, - field_list = 17, - field_macro = 18, - field_name = 19, - field_operator = 20, - field_outer = 21, - field_parameters = 22, - field_path = 23, - field_pattern = 24, - field_return_type = 25, - field_right = 26, - field_trait = 27, - field_type = 28, - field_type_arguments = 29, - field_type_parameters = 30, - field_value = 31, + field_attributes = 5, + field_body = 6, + field_bounds = 7, + field_condition = 8, + field_consequence = 9, + field_declaration = 10, + field_default_type = 11, + field_doc = 12, + field_element = 13, + field_expression = 14, + field_field = 15, + field_function = 16, + field_inner = 17, + field_left = 18, + field_length = 19, + field_list = 20, + field_macro = 21, + field_name = 22, + field_operator = 23, + field_outer = 24, + field_parameters = 25, + field_path = 26, + field_pattern = 27, + field_return_type = 28, + field_right = 29, + field_trait = 30, + field_type = 31, + field_type_arguments = 32, + field_type_parameters = 33, + field_value = 34, }; static const char * const ts_field_names[] = { @@ -2560,13 +2605,16 @@ static const char * const ts_field_names[] = { [field_alternative] = "alternative", [field_argument] = "argument", [field_arguments] = "arguments", + [field_attributes] = "attributes", [field_body] = "body", [field_bounds] = "bounds", [field_condition] = "condition", [field_consequence] = "consequence", + [field_declaration] = "declaration", [field_default_type] = "default_type", [field_doc] = "doc", [field_element] = "element", + [field_expression] = "expression", [field_field] = "field", [field_function] = "function", [field_inner] = "inner", @@ -2597,287 +2645,291 @@ static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [7] = {.index = 3, .length = 1}, [8] = {.index = 4, .length = 1}, [10] = {.index = 5, .length = 2}, - [11] = {.index = 5, .length = 2}, - [12] = {.index = 7, .length = 2}, - [13] = {.index = 9, .length = 2}, - [14] = {.index = 11, .length = 3}, - [15] = {.index = 14, .length = 2}, - [16] = {.index = 16, .length = 2}, - [17] = {.index = 16, .length = 2}, - [18] = {.index = 18, .length = 1}, - [19] = {.index = 19, .length = 1}, - [20] = {.index = 20, .length = 1}, - [21] = {.index = 20, .length = 1}, - [22] = {.index = 21, .length = 2}, - [23] = {.index = 19, .length = 1}, - [24] = {.index = 21, .length = 2}, - [25] = {.index = 21, .length = 2}, - [26] = {.index = 23, .length = 1}, - [27] = {.index = 24, .length = 1}, - [28] = {.index = 25, .length = 1}, - [29] = {.index = 25, .length = 1}, - [30] = {.index = 26, .length = 2}, - [31] = {.index = 26, .length = 2}, - [32] = {.index = 28, .length = 2}, - [33] = {.index = 30, .length = 1}, - [34] = {.index = 31, .length = 2}, - [35] = {.index = 33, .length = 2}, - [36] = {.index = 35, .length = 1}, - [37] = {.index = 35, .length = 1}, - [38] = {.index = 36, .length = 2}, - [39] = {.index = 38, .length = 1}, - [40] = {.index = 39, .length = 2}, - [41] = {.index = 31, .length = 2}, - [42] = {.index = 41, .length = 1}, - [43] = {.index = 42, .length = 1}, - [44] = {.index = 43, .length = 2}, - [45] = {.index = 30, .length = 1}, - [46] = {.index = 16, .length = 2}, - [47] = {.index = 16, .length = 2}, - [48] = {.index = 45, .length = 2}, - [49] = {.index = 47, .length = 2}, - [50] = {.index = 49, .length = 1}, - [51] = {.index = 16, .length = 2}, - [52] = {.index = 16, .length = 2}, - [53] = {.index = 50, .length = 3}, - [54] = {.index = 53, .length = 2}, - [55] = {.index = 55, .length = 2}, - [56] = {.index = 55, .length = 2}, - [57] = {.index = 57, .length = 2}, - [58] = {.index = 47, .length = 2}, - [59] = {.index = 11, .length = 3}, - [60] = {.index = 3, .length = 1}, - [61] = {.index = 59, .length = 1}, - [62] = {.index = 53, .length = 2}, - [63] = {.index = 53, .length = 2}, - [64] = {.index = 60, .length = 1}, - [65] = {.index = 60, .length = 1}, - [66] = {.index = 35, .length = 1}, - [67] = {.index = 53, .length = 2}, - [68] = {.index = 61, .length = 1}, - [69] = {.index = 62, .length = 2}, - [70] = {.index = 60, .length = 1}, - [71] = {.index = 64, .length = 1}, - [72] = {.index = 65, .length = 1}, - [73] = {.index = 66, .length = 1}, - [74] = {.index = 67, .length = 2}, - [75] = {.index = 69, .length = 2}, - [76] = {.index = 69, .length = 2}, - [77] = {.index = 71, .length = 1}, - [78] = {.index = 71, .length = 1}, - [79] = {.index = 72, .length = 2}, - [80] = {.index = 74, .length = 2}, - [81] = {.index = 76, .length = 3}, - [82] = {.index = 79, .length = 2}, - [83] = {.index = 81, .length = 3}, - [84] = {.index = 84, .length = 3}, - [85] = {.index = 87, .length = 2}, - [86] = {.index = 87, .length = 2}, - [87] = {.index = 89, .length = 2}, - [88] = {.index = 91, .length = 3}, - [89] = {.index = 94, .length = 2}, - [90] = {.index = 96, .length = 1}, - [91] = {.index = 97, .length = 2}, - [92] = {.index = 99, .length = 3}, - [93] = {.index = 102, .length = 2}, - [94] = {.index = 104, .length = 2}, + [11] = {.index = 7, .length = 2}, + [12] = {.index = 9, .length = 2}, + [13] = {.index = 5, .length = 2}, + [14] = {.index = 11, .length = 2}, + [15] = {.index = 13, .length = 2}, + [16] = {.index = 15, .length = 3}, + [17] = {.index = 18, .length = 2}, + [18] = {.index = 20, .length = 2}, + [19] = {.index = 20, .length = 2}, + [20] = {.index = 22, .length = 1}, + [21] = {.index = 23, .length = 1}, + [22] = {.index = 24, .length = 1}, + [23] = {.index = 24, .length = 1}, + [24] = {.index = 25, .length = 2}, + [25] = {.index = 23, .length = 1}, + [26] = {.index = 25, .length = 2}, + [27] = {.index = 25, .length = 2}, + [28] = {.index = 27, .length = 1}, + [29] = {.index = 28, .length = 1}, + [30] = {.index = 29, .length = 1}, + [31] = {.index = 29, .length = 1}, + [32] = {.index = 30, .length = 2}, + [33] = {.index = 30, .length = 2}, + [34] = {.index = 32, .length = 2}, + [35] = {.index = 34, .length = 1}, + [36] = {.index = 35, .length = 2}, + [37] = {.index = 37, .length = 2}, + [38] = {.index = 39, .length = 1}, + [39] = {.index = 39, .length = 1}, + [40] = {.index = 40, .length = 2}, + [41] = {.index = 42, .length = 1}, + [42] = {.index = 43, .length = 2}, + [43] = {.index = 35, .length = 2}, + [44] = {.index = 45, .length = 1}, + [45] = {.index = 46, .length = 1}, + [46] = {.index = 47, .length = 2}, + [47] = {.index = 34, .length = 1}, + [48] = {.index = 20, .length = 2}, + [49] = {.index = 20, .length = 2}, + [50] = {.index = 49, .length = 2}, + [51] = {.index = 51, .length = 2}, + [52] = {.index = 53, .length = 1}, + [53] = {.index = 20, .length = 2}, + [54] = {.index = 20, .length = 2}, + [55] = {.index = 54, .length = 3}, + [56] = {.index = 57, .length = 2}, + [57] = {.index = 59, .length = 2}, + [58] = {.index = 59, .length = 2}, + [59] = {.index = 61, .length = 2}, + [60] = {.index = 51, .length = 2}, + [61] = {.index = 15, .length = 3}, + [62] = {.index = 3, .length = 1}, + [63] = {.index = 63, .length = 1}, + [64] = {.index = 57, .length = 2}, + [65] = {.index = 57, .length = 2}, + [66] = {.index = 64, .length = 1}, + [67] = {.index = 64, .length = 1}, + [68] = {.index = 39, .length = 1}, + [69] = {.index = 57, .length = 2}, + [70] = {.index = 65, .length = 1}, + [71] = {.index = 66, .length = 2}, + [72] = {.index = 64, .length = 1}, + [73] = {.index = 68, .length = 1}, + [74] = {.index = 69, .length = 1}, + [75] = {.index = 70, .length = 1}, + [76] = {.index = 71, .length = 2}, + [77] = {.index = 73, .length = 2}, + [78] = {.index = 73, .length = 2}, + [79] = {.index = 75, .length = 1}, + [80] = {.index = 75, .length = 1}, + [81] = {.index = 76, .length = 2}, + [82] = {.index = 78, .length = 2}, + [83] = {.index = 80, .length = 3}, + [84] = {.index = 83, .length = 2}, + [85] = {.index = 85, .length = 3}, + [86] = {.index = 88, .length = 3}, + [87] = {.index = 91, .length = 2}, + [88] = {.index = 91, .length = 2}, + [89] = {.index = 93, .length = 2}, + [90] = {.index = 95, .length = 3}, + [91] = {.index = 98, .length = 2}, + [92] = {.index = 100, .length = 1}, + [93] = {.index = 101, .length = 2}, + [94] = {.index = 103, .length = 3}, [95] = {.index = 106, .length = 2}, [96] = {.index = 108, .length = 2}, [97] = {.index = 110, .length = 2}, - [98] = {.index = 108, .length = 2}, - [99] = {.index = 110, .length = 2}, - [100] = {.index = 112, .length = 1}, - [101] = {.index = 106, .length = 2}, - [102] = {.index = 112, .length = 1}, - [103] = {.index = 113, .length = 1}, - [104] = {.index = 114, .length = 3}, + [98] = {.index = 112, .length = 2}, + [99] = {.index = 114, .length = 2}, + [100] = {.index = 112, .length = 2}, + [101] = {.index = 114, .length = 2}, + [102] = {.index = 116, .length = 1}, + [103] = {.index = 110, .length = 2}, + [104] = {.index = 116, .length = 1}, [105] = {.index = 117, .length = 1}, - [106] = {.index = 118, .length = 1}, - [107] = {.index = 119, .length = 2}, - [108] = {.index = 3, .length = 1}, - [109] = {.index = 121, .length = 1}, - [110] = {.index = 122, .length = 2}, - [111] = {.index = 124, .length = 1}, - [112] = {.index = 124, .length = 1}, - [114] = {.index = 125, .length = 3}, - [115] = {.index = 128, .length = 1}, - [116] = {.index = 125, .length = 3}, - [117] = {.index = 18, .length = 1}, + [106] = {.index = 118, .length = 3}, + [107] = {.index = 121, .length = 1}, + [108] = {.index = 122, .length = 1}, + [109] = {.index = 123, .length = 2}, + [110] = {.index = 3, .length = 1}, + [111] = {.index = 125, .length = 1}, + [112] = {.index = 126, .length = 2}, + [113] = {.index = 128, .length = 1}, + [114] = {.index = 128, .length = 1}, + [116] = {.index = 129, .length = 3}, + [117] = {.index = 132, .length = 1}, [118] = {.index = 129, .length = 3}, - [119] = {.index = 132, .length = 2}, - [120] = {.index = 134, .length = 2}, - [121] = {.index = 134, .length = 2}, - [122] = {.index = 136, .length = 3}, - [123] = {.index = 139, .length = 3}, - [124] = {.index = 142, .length = 4}, - [125] = {.index = 146, .length = 3}, - [126] = {.index = 149, .length = 3}, - [127] = {.index = 152, .length = 2}, - [128] = {.index = 154, .length = 2}, + [119] = {.index = 22, .length = 1}, + [120] = {.index = 133, .length = 3}, + [121] = {.index = 136, .length = 2}, + [122] = {.index = 138, .length = 2}, + [123] = {.index = 138, .length = 2}, + [124] = {.index = 140, .length = 3}, + [125] = {.index = 143, .length = 3}, + [126] = {.index = 146, .length = 4}, + [127] = {.index = 150, .length = 3}, + [128] = {.index = 153, .length = 3}, [129] = {.index = 156, .length = 2}, - [130] = {.index = 158, .length = 3}, - [131] = {.index = 161, .length = 3}, - [132] = {.index = 156, .length = 2}, - [133] = {.index = 158, .length = 3}, - [134] = {.index = 164, .length = 2}, - [136] = {.index = 166, .length = 2}, - [137] = {.index = 168, .length = 3}, - [138] = {.index = 171, .length = 4}, - [139] = {.index = 132, .length = 2}, - [140] = {.index = 175, .length = 3}, - [141] = {.index = 178, .length = 2}, - [142] = {.index = 180, .length = 3}, - [143] = {.index = 183, .length = 2}, - [144] = {.index = 185, .length = 2}, - [145] = {.index = 187, .length = 3}, - [146] = {.index = 190, .length = 3}, - [147] = {.index = 193, .length = 2}, - [148] = {.index = 193, .length = 2}, - [149] = {.index = 195, .length = 2}, - [150] = {.index = 197, .length = 3}, - [151] = {.index = 200, .length = 2}, - [152] = {.index = 202, .length = 2}, - [153] = {.index = 204, .length = 1}, - [154] = {.index = 205, .length = 2}, - [155] = {.index = 207, .length = 1}, - [156] = {.index = 208, .length = 2}, - [157] = {.index = 112, .length = 1}, - [158] = {.index = 210, .length = 2}, - [159] = {.index = 212, .length = 2}, - [160] = {.index = 214, .length = 1}, - [162] = {.index = 215, .length = 2}, - [163] = {.index = 217, .length = 3}, - [164] = {.index = 217, .length = 3}, - [165] = {.index = 220, .length = 3}, - [166] = {.index = 223, .length = 2}, - [167] = {.index = 225, .length = 4}, - [168] = {.index = 229, .length = 3}, - [169] = {.index = 232, .length = 4}, - [170] = {.index = 236, .length = 2}, - [171] = {.index = 238, .length = 3}, - [172] = {.index = 236, .length = 2}, - [173] = {.index = 238, .length = 3}, - [174] = {.index = 241, .length = 3}, - [175] = {.index = 244, .length = 3}, - [176] = {.index = 247, .length = 3}, - [177] = {.index = 250, .length = 4}, - [178] = {.index = 247, .length = 3}, - [179] = {.index = 250, .length = 4}, - [180] = {.index = 244, .length = 3}, - [181] = {.index = 254, .length = 2}, - [182] = {.index = 256, .length = 2}, + [130] = {.index = 158, .length = 2}, + [131] = {.index = 160, .length = 2}, + [132] = {.index = 162, .length = 3}, + [133] = {.index = 165, .length = 3}, + [134] = {.index = 160, .length = 2}, + [135] = {.index = 162, .length = 3}, + [136] = {.index = 168, .length = 2}, + [138] = {.index = 170, .length = 2}, + [139] = {.index = 172, .length = 3}, + [140] = {.index = 175, .length = 4}, + [141] = {.index = 136, .length = 2}, + [142] = {.index = 179, .length = 3}, + [143] = {.index = 182, .length = 2}, + [144] = {.index = 184, .length = 3}, + [145] = {.index = 187, .length = 2}, + [146] = {.index = 189, .length = 2}, + [147] = {.index = 191, .length = 3}, + [148] = {.index = 194, .length = 3}, + [149] = {.index = 197, .length = 2}, + [150] = {.index = 197, .length = 2}, + [151] = {.index = 199, .length = 2}, + [152] = {.index = 201, .length = 3}, + [153] = {.index = 204, .length = 2}, + [154] = {.index = 206, .length = 2}, + [155] = {.index = 208, .length = 1}, + [156] = {.index = 209, .length = 2}, + [157] = {.index = 211, .length = 1}, + [158] = {.index = 212, .length = 2}, + [159] = {.index = 116, .length = 1}, + [160] = {.index = 214, .length = 2}, + [161] = {.index = 216, .length = 2}, + [162] = {.index = 218, .length = 1}, + [164] = {.index = 219, .length = 2}, + [165] = {.index = 221, .length = 3}, + [166] = {.index = 221, .length = 3}, + [167] = {.index = 224, .length = 3}, + [168] = {.index = 227, .length = 2}, + [169] = {.index = 229, .length = 4}, + [170] = {.index = 233, .length = 3}, + [171] = {.index = 236, .length = 4}, + [172] = {.index = 240, .length = 2}, + [173] = {.index = 242, .length = 3}, + [174] = {.index = 240, .length = 2}, + [175] = {.index = 242, .length = 3}, + [176] = {.index = 245, .length = 3}, + [177] = {.index = 248, .length = 3}, + [178] = {.index = 251, .length = 3}, + [179] = {.index = 254, .length = 4}, + [180] = {.index = 251, .length = 3}, + [181] = {.index = 254, .length = 4}, + [182] = {.index = 248, .length = 3}, [183] = {.index = 258, .length = 2}, [184] = {.index = 260, .length = 2}, - [185] = {.index = 262, .length = 1}, - [186] = {.index = 263, .length = 2}, - [187] = {.index = 265, .length = 2}, + [185] = {.index = 262, .length = 2}, + [186] = {.index = 264, .length = 2}, + [187] = {.index = 266, .length = 1}, [188] = {.index = 267, .length = 2}, - [189] = {.index = 208, .length = 2}, - [190] = {.index = 269, .length = 4}, - [191] = {.index = 273, .length = 2}, - [192] = {.index = 275, .length = 3}, - [193] = {.index = 278, .length = 3}, - [194] = {.index = 281, .length = 3}, - [195] = {.index = 284, .length = 3}, - [196] = {.index = 287, .length = 4}, - [197] = {.index = 291, .length = 2}, - [198] = {.index = 293, .length = 2}, - [199] = {.index = 293, .length = 2}, - [200] = {.index = 295, .length = 3}, - [201] = {.index = 298, .length = 4}, - [202] = {.index = 302, .length = 3}, - [203] = {.index = 263, .length = 2}, - [204] = {.index = 305, .length = 2}, - [205] = {.index = 307, .length = 3}, - [206] = {.index = 310, .length = 3}, - [207] = {.index = 313, .length = 2}, - [208] = {.index = 315, .length = 3}, - [209] = {.index = 208, .length = 2}, - [210] = {.index = 318, .length = 3}, - [211] = {.index = 321, .length = 2}, - [212] = {.index = 323, .length = 2}, - [213] = {.index = 325, .length = 3}, - [214] = {.index = 328, .length = 3}, - [215] = {.index = 331, .length = 2}, - [216] = {.index = 333, .length = 4}, - [217] = {.index = 337, .length = 5}, - [218] = {.index = 342, .length = 4}, - [219] = {.index = 346, .length = 3}, - [220] = {.index = 346, .length = 3}, - [221] = {.index = 349, .length = 3}, - [222] = {.index = 352, .length = 4}, - [223] = {.index = 349, .length = 3}, - [224] = {.index = 352, .length = 4}, - [225] = {.index = 356, .length = 4}, + [189] = {.index = 269, .length = 2}, + [190] = {.index = 271, .length = 2}, + [191] = {.index = 212, .length = 2}, + [192] = {.index = 273, .length = 4}, + [193] = {.index = 277, .length = 2}, + [194] = {.index = 279, .length = 3}, + [195] = {.index = 282, .length = 3}, + [196] = {.index = 285, .length = 3}, + [197] = {.index = 288, .length = 3}, + [198] = {.index = 291, .length = 4}, + [199] = {.index = 295, .length = 2}, + [200] = {.index = 297, .length = 2}, + [201] = {.index = 297, .length = 2}, + [202] = {.index = 299, .length = 3}, + [203] = {.index = 302, .length = 4}, + [204] = {.index = 306, .length = 3}, + [205] = {.index = 267, .length = 2}, + [206] = {.index = 309, .length = 2}, + [207] = {.index = 311, .length = 3}, + [208] = {.index = 314, .length = 3}, + [209] = {.index = 317, .length = 2}, + [210] = {.index = 319, .length = 3}, + [211] = {.index = 212, .length = 2}, + [212] = {.index = 322, .length = 3}, + [213] = {.index = 325, .length = 2}, + [214] = {.index = 327, .length = 2}, + [215] = {.index = 329, .length = 3}, + [216] = {.index = 332, .length = 3}, + [217] = {.index = 335, .length = 2}, + [218] = {.index = 337, .length = 4}, + [219] = {.index = 341, .length = 5}, + [220] = {.index = 346, .length = 4}, + [221] = {.index = 350, .length = 3}, + [222] = {.index = 350, .length = 3}, + [223] = {.index = 353, .length = 3}, + [224] = {.index = 356, .length = 4}, + [225] = {.index = 353, .length = 3}, [226] = {.index = 356, .length = 4}, - [227] = {.index = 360, .length = 3}, - [228] = {.index = 363, .length = 3}, - [229] = {.index = 366, .length = 3}, - [230] = {.index = 369, .length = 3}, - [231] = {.index = 372, .length = 2}, - [232] = {.index = 374, .length = 2}, - [233] = {.index = 132, .length = 2}, - [234] = {.index = 376, .length = 3}, - [235] = {.index = 379, .length = 2}, - [236] = {.index = 381, .length = 3}, - [237] = {.index = 379, .length = 2}, - [238] = {.index = 381, .length = 3}, - [239] = {.index = 384, .length = 3}, - [240] = {.index = 387, .length = 4}, - [241] = {.index = 384, .length = 3}, - [242] = {.index = 387, .length = 4}, - [243] = {.index = 391, .length = 4}, - [244] = {.index = 395, .length = 4}, - [245] = {.index = 399, .length = 3}, - [246] = {.index = 402, .length = 4}, - [247] = {.index = 406, .length = 2}, - [248] = {.index = 408, .length = 3}, - [249] = {.index = 411, .length = 3}, - [250] = {.index = 414, .length = 3}, - [251] = {.index = 417, .length = 4}, - [252] = {.index = 421, .length = 2}, - [253] = {.index = 423, .length = 3}, - [254] = {.index = 426, .length = 4}, - [255] = {.index = 430, .length = 3}, - [256] = {.index = 433, .length = 3}, - [257] = {.index = 436, .length = 2}, - [258] = {.index = 438, .length = 3}, - [259] = {.index = 441, .length = 5}, - [260] = {.index = 446, .length = 4}, - [261] = {.index = 446, .length = 4}, - [262] = {.index = 450, .length = 3}, - [263] = {.index = 453, .length = 3}, - [264] = {.index = 456, .length = 3}, - [265] = {.index = 459, .length = 3}, - [266] = {.index = 462, .length = 2}, - [267] = {.index = 464, .length = 3}, - [268] = {.index = 464, .length = 3}, - [269] = {.index = 467, .length = 3}, - [270] = {.index = 470, .length = 4}, - [271] = {.index = 467, .length = 3}, - [272] = {.index = 470, .length = 4}, - [273] = {.index = 474, .length = 4}, - [274] = {.index = 474, .length = 4}, - [275] = {.index = 478, .length = 4}, - [276] = {.index = 482, .length = 5}, - [277] = {.index = 487, .length = 4}, - [278] = {.index = 491, .length = 2}, - [279] = {.index = 493, .length = 3}, - [280] = {.index = 496, .length = 4}, - [281] = {.index = 500, .length = 4}, - [282] = {.index = 504, .length = 3}, - [283] = {.index = 507, .length = 4}, - [284] = {.index = 511, .length = 4}, - [285] = {.index = 515, .length = 3}, - [286] = {.index = 518, .length = 4}, - [287] = {.index = 518, .length = 4}, - [288] = {.index = 522, .length = 5}, - [289] = {.index = 527, .length = 4}, - [290] = {.index = 531, .length = 5}, - [291] = {.index = 536, .length = 4}, - [292] = {.index = 540, .length = 4}, - [293] = {.index = 544, .length = 3}, - [294] = {.index = 547, .length = 5}, + [227] = {.index = 360, .length = 4}, + [228] = {.index = 360, .length = 4}, + [229] = {.index = 364, .length = 3}, + [230] = {.index = 367, .length = 3}, + [231] = {.index = 370, .length = 3}, + [232] = {.index = 373, .length = 3}, + [233] = {.index = 376, .length = 2}, + [234] = {.index = 378, .length = 2}, + [235] = {.index = 136, .length = 2}, + [236] = {.index = 380, .length = 3}, + [237] = {.index = 383, .length = 2}, + [238] = {.index = 385, .length = 3}, + [239] = {.index = 383, .length = 2}, + [240] = {.index = 385, .length = 3}, + [241] = {.index = 388, .length = 3}, + [242] = {.index = 391, .length = 4}, + [243] = {.index = 388, .length = 3}, + [244] = {.index = 391, .length = 4}, + [245] = {.index = 395, .length = 4}, + [246] = {.index = 399, .length = 4}, + [247] = {.index = 403, .length = 3}, + [248] = {.index = 406, .length = 4}, + [249] = {.index = 410, .length = 2}, + [250] = {.index = 412, .length = 3}, + [251] = {.index = 415, .length = 3}, + [252] = {.index = 418, .length = 3}, + [253] = {.index = 421, .length = 4}, + [254] = {.index = 425, .length = 2}, + [255] = {.index = 427, .length = 3}, + [256] = {.index = 430, .length = 4}, + [257] = {.index = 434, .length = 3}, + [258] = {.index = 437, .length = 3}, + [259] = {.index = 440, .length = 2}, + [260] = {.index = 442, .length = 3}, + [261] = {.index = 445, .length = 2}, + [262] = {.index = 447, .length = 5}, + [263] = {.index = 452, .length = 4}, + [264] = {.index = 452, .length = 4}, + [265] = {.index = 456, .length = 3}, + [266] = {.index = 459, .length = 3}, + [267] = {.index = 462, .length = 3}, + [268] = {.index = 465, .length = 3}, + [269] = {.index = 468, .length = 2}, + [270] = {.index = 470, .length = 3}, + [271] = {.index = 470, .length = 3}, + [272] = {.index = 473, .length = 3}, + [273] = {.index = 476, .length = 4}, + [274] = {.index = 473, .length = 3}, + [275] = {.index = 476, .length = 4}, + [276] = {.index = 480, .length = 4}, + [277] = {.index = 480, .length = 4}, + [278] = {.index = 484, .length = 4}, + [279] = {.index = 488, .length = 5}, + [280] = {.index = 493, .length = 4}, + [281] = {.index = 497, .length = 2}, + [282] = {.index = 499, .length = 3}, + [283] = {.index = 502, .length = 4}, + [284] = {.index = 506, .length = 4}, + [285] = {.index = 510, .length = 3}, + [286] = {.index = 513, .length = 4}, + [287] = {.index = 517, .length = 3}, + [288] = {.index = 520, .length = 4}, + [289] = {.index = 524, .length = 3}, + [290] = {.index = 527, .length = 4}, + [291] = {.index = 527, .length = 4}, + [292] = {.index = 531, .length = 5}, + [293] = {.index = 536, .length = 4}, + [294] = {.index = 540, .length = 5}, + [295] = {.index = 545, .length = 4}, + [296] = {.index = 549, .length = 4}, + [297] = {.index = 553, .length = 3}, + [298] = {.index = 556, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2895,759 +2947,772 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_body, 1}, {field_name, 0}, [7] = + {field_attributes, 0}, + {field_declaration, 1}, + [9] = + {field_attributes, 0}, + {field_expression, 1}, + [11] = {field_arguments, 1}, {field_function, 0}, - [9] = + [13] = {field_body, 1}, {field_parameters, 0}, - [11] = + [15] = {field_doc, 2}, {field_inner, 1, .inherited = true}, {field_outer, 1, .inherited = true}, - [14] = + [18] = {field_inner, 1, .inherited = true}, {field_outer, 1, .inherited = true}, - [16] = + [20] = {field_name, 2}, {field_path, 0}, - [18] = + [22] = {field_value, 2}, - [19] = + [23] = {field_left, 0}, - [20] = + [24] = {field_right, 1}, - [21] = + [25] = {field_type, 0}, {field_type_arguments, 1}, - [23] = + [27] = {field_type, 1}, - [24] = + [28] = {field_parameters, 1}, - [25] = + [29] = {field_trait, 1}, - [26] = + [30] = {field_parameters, 1}, {field_trait, 0}, - [28] = + [32] = {field_body, 2}, {field_parameters, 1}, - [30] = + [34] = {field_macro, 0}, - [31] = + [35] = {field_body, 2}, {field_name, 1}, - [33] = + [37] = {field_condition, 1}, {field_consequence, 2}, - [35] = + [39] = {field_name, 0}, - [36] = + [40] = {field_body, 2}, {field_type, 1}, - [38] = + [42] = {field_pattern, 1}, - [39] = + [43] = {field_body, 2}, {field_value, 1}, - [41] = + [45] = {field_list, 1}, - [42] = + [46] = {field_argument, 1}, - [43] = + [47] = {field_body, 2}, {field_condition, 1}, - [45] = + [49] = {field_function, 0}, {field_type_arguments, 2}, - [47] = + [51] = {field_type, 0}, {field_type_arguments, 2}, - [49] = + [53] = {field_body, 2}, - [50] = + [54] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [53] = + [57] = {field_left, 0}, {field_right, 2}, - [55] = + [59] = {field_field, 2}, {field_value, 0}, - [57] = + [61] = {field_type, 2}, {field_value, 0}, - [59] = + [63] = {field_value, 3}, - [60] = + [64] = {field_type, 0}, - [61] = + [65] = {field_type_arguments, 2}, - [62] = + [66] = {field_pattern, 0}, {field_type, 2}, - [64] = + [68] = {field_element, 1}, - [65] = + [69] = {field_type, 2}, - [66] = + [70] = {field_parameters, 2}, - [67] = + [71] = {field_alias, 2}, {field_type, 0}, - [69] = + [73] = {field_parameters, 2}, {field_trait, 1}, - [71] = + [75] = {field_arguments, 1}, - [72] = + [76] = {field_body, 3}, {field_parameters, 2}, - [74] = + [78] = {field_body, 3}, {field_name, 1}, - [76] = + [80] = {field_body, 3}, {field_name, 1}, {field_type_parameters, 2}, - [79] = + [83] = {field_name, 1}, {field_parameters, 2}, - [81] = + [85] = {field_body, 3}, {field_name, 1}, {field_parameters, 2}, - [84] = + [88] = {field_alternative, 3}, {field_condition, 1}, {field_consequence, 2}, - [87] = + [91] = {field_bounds, 1}, {field_name, 0}, - [89] = + [93] = {field_type, 2}, {field_type_parameters, 1}, - [91] = + [95] = {field_body, 3}, {field_type, 2}, {field_type_parameters, 1}, - [94] = + [98] = {field_body, 3}, {field_type, 1}, - [96] = + [100] = {field_pattern, 2}, - [97] = + [101] = {field_name, 1}, {field_type_parameters, 2}, - [99] = + [103] = {field_body, 3}, {field_bounds, 2}, {field_name, 1}, - [102] = + [106] = {field_bounds, 2}, {field_name, 1}, - [104] = + [108] = {field_body, 3}, {field_type, 2}, - [106] = + [110] = {field_body, 3}, {field_name, 2}, - [108] = + [112] = {field_list, 2}, {field_path, 0}, - [110] = + [114] = {field_alias, 2}, {field_path, 0}, - [112] = + [116] = {field_name, 2}, - [113] = + [117] = {field_argument, 2}, - [114] = + [118] = {field_body, 3}, {field_parameters, 0}, {field_return_type, 2}, - [117] = + [121] = {field_body, 3}, - [118] = + [122] = {field_length, 3}, - [119] = + [123] = {field_pattern, 1}, {field_type, 3}, - [121] = + [125] = {field_type, 3}, - [122] = + [126] = {field_parameters, 1}, {field_return_type, 3}, - [124] = + [128] = {field_trait, 3}, - [125] = + [129] = {field_parameters, 1}, {field_return_type, 3}, {field_trait, 0}, - [128] = + [132] = {field_parameters, 3}, - [129] = + [133] = {field_body, 4}, {field_parameters, 1}, {field_return_type, 3}, - [132] = + [136] = {field_name, 1}, {field_type, 3}, - [134] = + [138] = {field_bounds, 1}, {field_left, 0}, - [136] = + [140] = {field_body, 4}, {field_name, 1}, {field_type_parameters, 2}, - [139] = + [143] = {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [142] = + [146] = {field_body, 4}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [146] = + [150] = {field_body, 4}, {field_name, 1}, {field_parameters, 2}, - [149] = + [153] = {field_body, 4}, {field_pattern, 1}, {field_value, 3}, - [152] = + [156] = {field_pattern, 1}, {field_value, 3}, - [154] = + [158] = {field_default_type, 2}, {field_name, 0}, - [156] = + [160] = {field_trait, 1}, {field_type, 3}, - [158] = + [162] = {field_body, 4}, {field_trait, 1}, {field_type, 3}, - [161] = + [165] = {field_body, 4}, {field_type, 2}, {field_type_parameters, 1}, - [164] = + [168] = {field_alternative, 3}, {field_pattern, 1}, - [166] = + [170] = {field_body, 4}, {field_parameters, 3}, - [168] = + [172] = {field_body, 4}, {field_bounds, 2}, {field_name, 1}, - [171] = + [175] = {field_body, 4}, {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [175] = + [179] = {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [178] = + [182] = {field_type, 3}, {field_type_parameters, 2}, - [180] = + [184] = {field_body, 4}, {field_type, 3}, {field_type_parameters, 2}, - [183] = + [187] = {field_body, 4}, {field_type, 2}, - [185] = + [189] = {field_body, 4}, {field_name, 2}, - [187] = + [191] = {field_body, 4}, {field_bounds, 3}, {field_name, 2}, - [190] = + [194] = {field_body, 4}, {field_name, 2}, {field_type_parameters, 3}, - [193] = + [197] = {field_field, 0}, {field_value, 2}, - [195] = + [199] = {field_name, 2}, {field_parameters, 3}, - [197] = + [201] = {field_body, 4}, {field_name, 2}, {field_parameters, 3}, - [200] = + [204] = {field_name, 2}, {field_type_parameters, 3}, - [202] = + [206] = {field_body, 4}, {field_name, 3}, - [204] = + [208] = {field_name, 3}, - [205] = + [209] = {field_body, 4}, {field_condition, 3}, - [207] = + [211] = {field_length, 4}, - [208] = + [212] = {field_name, 0}, {field_type, 2}, - [210] = + [214] = {field_name, 0}, {field_pattern, 2}, - [212] = + [216] = {field_element, 1}, {field_length, 3}, - [214] = + [218] = {field_pattern, 0}, - [215] = + [219] = {field_parameters, 2}, {field_return_type, 4}, - [217] = + [221] = {field_parameters, 2}, {field_return_type, 4}, {field_trait, 1}, - [220] = + [224] = {field_body, 5}, {field_parameters, 2}, {field_return_type, 4}, - [223] = + [227] = {field_name, 0}, {field_value, 2}, - [225] = + [229] = {field_body, 5}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [229] = + [233] = {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [232] = + [236] = {field_body, 5}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [236] = + [240] = {field_trait, 2}, {field_type, 4}, - [238] = + [242] = {field_body, 5}, {field_trait, 2}, {field_type, 4}, - [241] = + [245] = {field_bounds, 1}, {field_default_type, 3}, {field_name, 0}, - [244] = + [248] = {field_body, 5}, {field_trait, 1}, {field_type, 3}, - [247] = + [251] = {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [250] = + [254] = {field_body, 5}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [254] = + [258] = {field_pattern, 2}, {field_type, 4}, - [256] = + [260] = {field_pattern, 2}, {field_value, 4}, - [258] = + [262] = {field_alternative, 4}, {field_pattern, 2}, - [260] = + [264] = {field_pattern, 0}, {field_value, 2}, - [262] = + [266] = {field_condition, 2}, - [263] = + [267] = {field_name, 2}, {field_type, 4}, - [265] = + [269] = {field_type, 1}, {field_type, 2, .inherited = true}, - [267] = + [271] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [269] = + [273] = {field_body, 5}, {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [273] = + [277] = {field_name, 1}, {field_type, 4}, - [275] = + [279] = {field_name, 1}, {field_type, 4}, {field_type_parameters, 2}, - [278] = + [282] = {field_body, 5}, {field_type, 3}, {field_type_parameters, 2}, - [281] = + [285] = {field_body, 5}, {field_bounds, 3}, {field_name, 2}, - [284] = + [288] = {field_body, 5}, {field_name, 2}, {field_type_parameters, 3}, - [287] = + [291] = {field_body, 5}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [291] = + [295] = {field_alias, 4}, {field_name, 2}, - [293] = + [297] = {field_field, 1}, {field_value, 3}, - [295] = + [299] = {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [298] = + [302] = {field_body, 5}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [302] = + [306] = {field_body, 5}, {field_name, 2}, {field_parameters, 3}, - [305] = + [309] = {field_body, 5}, {field_name, 3}, - [307] = + [311] = {field_body, 5}, {field_bounds, 4}, {field_name, 3}, - [310] = + [314] = {field_body, 5}, {field_name, 3}, {field_type_parameters, 4}, - [313] = + [317] = {field_name, 3}, {field_parameters, 4}, - [315] = + [319] = {field_body, 5}, {field_name, 3}, {field_parameters, 4}, - [318] = + [322] = {field_name, 0}, {field_type, 3}, {field_type_arguments, 1}, - [321] = + [325] = {field_name, 1}, {field_pattern, 3}, - [323] = + [327] = {field_parameters, 3}, {field_return_type, 5}, - [325] = + [329] = {field_name, 1}, {field_type, 3}, {field_value, 5}, - [328] = + [332] = {field_body, 1}, {field_name, 0}, {field_value, 3}, - [331] = + [335] = {field_name, 1}, {field_value, 3}, - [333] = + [337] = {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [337] = + [341] = {field_body, 6}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [342] = + [346] = {field_body, 6}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [346] = + [350] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, - [349] = + [353] = {field_trait, 3}, {field_type, 5}, {field_type_parameters, 1}, - [352] = + [356] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 1}, - [356] = + [360] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [360] = + [364] = {field_pattern, 1}, {field_type, 3}, {field_value, 5}, - [363] = + [367] = {field_alternative, 5}, {field_pattern, 1}, {field_type, 3}, - [366] = + [370] = {field_alternative, 5}, {field_pattern, 1}, {field_value, 3}, - [369] = + [373] = {field_body, 6}, {field_parameters, 3}, {field_return_type, 5}, - [372] = + [376] = {field_name, 3}, {field_type, 5}, - [374] = + [378] = {field_type, 2}, {field_type, 3, .inherited = true}, - [376] = + [380] = {field_name, 1}, {field_type, 5}, {field_type_parameters, 2}, - [379] = + [383] = {field_trait, 3}, {field_type, 5}, - [381] = + [385] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, - [384] = + [388] = {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [387] = + [391] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [391] = + [395] = {field_body, 6}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [395] = + [399] = {field_body, 6}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [399] = + [403] = {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [402] = + [406] = {field_body, 6}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [406] = + [410] = {field_name, 2}, {field_type, 5}, - [408] = + [412] = {field_name, 2}, {field_type, 5}, {field_type_parameters, 3}, - [411] = + [415] = {field_body, 6}, {field_bounds, 4}, {field_name, 3}, - [414] = + [418] = {field_body, 6}, {field_name, 3}, {field_type_parameters, 4}, - [417] = + [421] = {field_body, 6}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, - [421] = + [425] = {field_alias, 5}, {field_name, 3}, - [423] = + [427] = {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [426] = + [430] = {field_body, 6}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [430] = + [434] = {field_body, 6}, {field_name, 3}, {field_parameters, 4}, - [433] = + [437] = {field_body, 6}, {field_pattern, 3}, {field_value, 5}, - [436] = + [440] = {field_name, 2}, {field_pattern, 4}, - [438] = + [442] = {field_body, 2}, {field_name, 1}, {field_value, 4}, - [441] = + [445] = + {field_name, 2}, + {field_value, 4}, + [447] = {field_body, 7}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [446] = + [452] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 1}, - [450] = + [456] = {field_pattern, 2}, {field_type, 4}, {field_value, 6}, - [453] = + [459] = {field_alternative, 6}, {field_pattern, 2}, {field_type, 4}, - [456] = + [462] = {field_alternative, 6}, {field_pattern, 2}, {field_value, 4}, - [459] = + [465] = {field_name, 2}, {field_type, 4}, {field_value, 6}, - [462] = + [468] = {field_type, 3}, {field_type, 4, .inherited = true}, - [464] = + [470] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, - [467] = + [473] = {field_trait, 4}, {field_type, 6}, {field_type_parameters, 2}, - [470] = + [476] = {field_body, 7}, {field_trait, 4}, {field_type, 6}, {field_type_parameters, 2}, - [474] = + [480] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [478] = + [484] = {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [482] = + [488] = {field_body, 7}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [487] = + [493] = {field_body, 7}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [491] = + [497] = {field_name, 4}, {field_type, 6}, - [493] = + [499] = {field_name, 2}, {field_type, 6}, {field_type_parameters, 3}, - [496] = + [502] = {field_body, 7}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, - [500] = + [506] = {field_body, 7}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [504] = + [510] = {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [507] = + [513] = {field_body, 7}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [511] = + [517] = + {field_body, 3}, + {field_name, 2}, + {field_value, 5}, + [520] = {field_alternative, 7}, {field_pattern, 1}, {field_type, 3}, {field_value, 5}, - [515] = + [524] = {field_name, 3}, {field_type, 5}, {field_value, 7}, - [518] = + [527] = {field_body, 8}, {field_trait, 4}, {field_type, 6}, {field_type_parameters, 2}, - [522] = + [531] = {field_body, 8}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [527] = + [536] = {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [531] = + [540] = {field_body, 8}, {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [536] = + [545] = {field_body, 8}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [540] = + [549] = {field_alternative, 8}, {field_pattern, 2}, {field_type, 4}, {field_value, 6}, - [544] = + [553] = {field_name, 4}, {field_type, 6}, {field_value, 8}, - [547] = + [556] = {field_body, 9}, {field_name, 3}, {field_parameters, 5}, @@ -3672,328 +3737,328 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [10] = { [0] = alias_sym_type_identifier, }, - [16] = { + [18] = { [0] = sym_identifier, }, - [17] = { + [19] = { [0] = sym_identifier, [2] = alias_sym_type_identifier, }, - [19] = { + [21] = { [0] = sym_identifier, }, - [20] = { + [22] = { [1] = sym_identifier, }, - [22] = { + [24] = { [0] = sym_identifier, }, - [24] = { + [26] = { [0] = alias_sym_type_identifier, }, - [28] = { + [30] = { [1] = alias_sym_type_identifier, }, - [30] = { + [32] = { [0] = alias_sym_type_identifier, }, - [33] = { + [35] = { [0] = sym_identifier, }, - [34] = { + [36] = { [1] = alias_sym_type_identifier, }, - [36] = { + [38] = { [0] = alias_sym_type_identifier, }, - [47] = { + [49] = { [2] = alias_sym_type_identifier, }, - [49] = { + [51] = { [0] = alias_sym_type_identifier, }, - [51] = { + [53] = { [0] = sym_generic_type, }, - [52] = { + [54] = { [0] = sym_generic_type, [2] = alias_sym_type_identifier, }, - [56] = { + [58] = { [2] = alias_sym_field_identifier, }, - [59] = { + [61] = { [2] = sym__line_doc_content, }, - [60] = { + [62] = { [1] = sym_identifier, }, - [62] = { + [64] = { [0] = sym_identifier, [2] = sym_identifier, }, - [63] = { + [65] = { [0] = sym_identifier, }, - [65] = { + [67] = { [0] = alias_sym_type_identifier, }, - [66] = { + [68] = { [0] = alias_sym_shorthand_field_identifier, }, - [67] = { + [69] = { [2] = sym_identifier, }, - [70] = { + [72] = { [0] = sym_generic_type, }, - [75] = { + [77] = { [1] = alias_sym_type_identifier, }, - [77] = { + [79] = { [0] = sym_identifier, }, - [80] = { + [82] = { [1] = alias_sym_type_identifier, }, - [81] = { + [83] = { [1] = alias_sym_type_identifier, }, - [85] = { + [87] = { [0] = alias_sym_type_identifier, }, - [91] = { + [93] = { [1] = alias_sym_type_identifier, }, - [92] = { + [94] = { [1] = alias_sym_type_identifier, }, - [93] = { + [95] = { [1] = alias_sym_type_identifier, }, - [95] = { + [97] = { [2] = alias_sym_type_identifier, }, - [96] = { + [98] = { [0] = sym_identifier, }, - [97] = { + [99] = { [0] = sym_identifier, }, - [102] = { + [104] = { [2] = alias_sym_type_identifier, }, - [108] = { + [110] = { [1] = alias_sym_shorthand_field_identifier, }, - [111] = { + [113] = { [3] = alias_sym_type_identifier, }, - [113] = { + [115] = { [2] = alias_sym_type_identifier, }, - [114] = { + [116] = { [0] = alias_sym_type_identifier, }, - [117] = { + [119] = { [0] = sym_identifier, }, - [121] = { + [123] = { [0] = alias_sym_type_identifier, }, - [122] = { + [124] = { [1] = alias_sym_type_identifier, }, - [128] = { + [130] = { [0] = alias_sym_type_identifier, }, - [129] = { + [131] = { [1] = alias_sym_type_identifier, }, - [130] = { + [132] = { [1] = alias_sym_type_identifier, }, - [135] = { + [137] = { [3] = sym_identifier, }, - [137] = { + [139] = { [1] = alias_sym_type_identifier, }, - [138] = { + [140] = { [1] = alias_sym_type_identifier, }, - [139] = { + [141] = { [1] = alias_sym_type_identifier, }, - [140] = { + [142] = { [1] = alias_sym_type_identifier, }, - [144] = { + [146] = { [2] = alias_sym_type_identifier, }, - [145] = { + [147] = { [2] = alias_sym_type_identifier, }, - [146] = { + [148] = { [2] = alias_sym_type_identifier, }, - [148] = { + [150] = { [0] = alias_sym_field_identifier, }, - [151] = { + [153] = { [2] = alias_sym_type_identifier, }, - [152] = { + [154] = { [3] = alias_sym_type_identifier, }, - [156] = { + [158] = { [0] = alias_sym_type_identifier, }, - [157] = { + [159] = { [2] = alias_sym_shorthand_field_identifier, }, - [158] = { + [160] = { [0] = alias_sym_field_identifier, }, - [161] = { + [163] = { [1] = alias_sym_type_identifier, }, - [163] = { + [165] = { [1] = alias_sym_type_identifier, }, - [170] = { + [172] = { [2] = alias_sym_type_identifier, }, - [171] = { + [173] = { [2] = alias_sym_type_identifier, }, - [174] = { + [176] = { [0] = alias_sym_type_identifier, }, - [175] = { + [177] = { [1] = alias_sym_type_identifier, }, - [176] = { + [178] = { [2] = alias_sym_type_identifier, }, - [177] = { + [179] = { [2] = alias_sym_type_identifier, }, - [189] = { + [191] = { [0] = alias_sym_field_identifier, }, - [190] = { + [192] = { [1] = alias_sym_type_identifier, }, - [191] = { + [193] = { [1] = alias_sym_type_identifier, }, - [192] = { + [194] = { [1] = alias_sym_type_identifier, }, - [194] = { + [196] = { [2] = alias_sym_type_identifier, }, - [195] = { + [197] = { [2] = alias_sym_type_identifier, }, - [196] = { + [198] = { [2] = alias_sym_type_identifier, }, - [199] = { + [201] = { [1] = alias_sym_field_identifier, }, - [203] = { + [205] = { [2] = alias_sym_type_identifier, }, - [204] = { + [206] = { [3] = alias_sym_type_identifier, }, - [205] = { + [207] = { [3] = alias_sym_type_identifier, }, - [206] = { + [208] = { [3] = alias_sym_type_identifier, }, - [210] = { + [212] = { [0] = alias_sym_type_identifier, }, - [211] = { + [213] = { [1] = alias_sym_field_identifier, }, - [219] = { + [221] = { [2] = alias_sym_type_identifier, }, - [221] = { + [223] = { [3] = alias_sym_type_identifier, }, - [222] = { + [224] = { [3] = alias_sym_type_identifier, }, - [225] = { + [227] = { [2] = alias_sym_type_identifier, }, - [233] = { + [235] = { [1] = alias_sym_field_identifier, }, - [234] = { + [236] = { [1] = alias_sym_type_identifier, }, - [235] = { + [237] = { [3] = alias_sym_type_identifier, }, - [236] = { + [238] = { [3] = alias_sym_type_identifier, }, - [239] = { + [241] = { [3] = alias_sym_type_identifier, }, - [240] = { + [242] = { [3] = alias_sym_type_identifier, }, - [243] = { + [245] = { [2] = alias_sym_type_identifier, }, - [247] = { + [249] = { [2] = alias_sym_type_identifier, }, - [248] = { + [250] = { [2] = alias_sym_type_identifier, }, - [249] = { + [251] = { [3] = alias_sym_type_identifier, }, - [250] = { + [252] = { [3] = alias_sym_type_identifier, }, - [251] = { + [253] = { [3] = alias_sym_type_identifier, }, - [257] = { + [259] = { [2] = alias_sym_field_identifier, }, - [260] = { + [263] = { [3] = alias_sym_type_identifier, }, - [267] = { + [270] = { [3] = alias_sym_type_identifier, }, - [269] = { + [272] = { [4] = alias_sym_type_identifier, }, - [270] = { + [273] = { [4] = alias_sym_type_identifier, }, - [273] = { + [276] = { [3] = alias_sym_type_identifier, }, - [279] = { + [282] = { [2] = alias_sym_type_identifier, }, - [280] = { + [283] = { [3] = alias_sym_type_identifier, }, - [286] = { + [290] = { [4] = alias_sym_type_identifier, }, }; @@ -4018,147 +4083,147 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6] = 6, [7] = 7, [8] = 8, - [9] = 9, - [10] = 5, - [11] = 4, - [12] = 7, + [9] = 3, + [10] = 2, + [11] = 11, + [12] = 6, [13] = 8, - [14] = 9, - [15] = 5, - [16] = 4, - [17] = 9, - [18] = 9, - [19] = 5, - [20] = 4, - [21] = 8, - [22] = 9, - [23] = 5, - [24] = 4, - [25] = 8, - [26] = 9, - [27] = 5, - [28] = 4, - [29] = 8, - [30] = 9, - [31] = 5, - [32] = 4, - [33] = 8, - [34] = 8, + [14] = 3, + [15] = 2, + [16] = 11, + [17] = 6, + [18] = 3, + [19] = 2, + [20] = 11, + [21] = 6, + [22] = 3, + [23] = 2, + [24] = 11, + [25] = 6, + [26] = 3, + [27] = 2, + [28] = 11, + [29] = 6, + [30] = 3, + [31] = 2, + [32] = 11, + [33] = 6, + [34] = 11, [35] = 35, - [36] = 36, + [36] = 35, [37] = 37, [38] = 38, [39] = 39, [40] = 40, - [41] = 38, - [42] = 39, - [43] = 35, - [44] = 36, - [45] = 39, - [46] = 40, - [47] = 37, - [48] = 38, + [41] = 41, + [42] = 42, + [43] = 42, + [44] = 41, + [45] = 45, + [46] = 38, + [47] = 41, + [48] = 41, [49] = 38, - [50] = 39, - [51] = 35, - [52] = 35, - [53] = 39, - [54] = 38, - [55] = 38, - [56] = 38, - [57] = 39, - [58] = 39, - [59] = 39, - [60] = 36, + [50] = 38, + [51] = 39, + [52] = 40, + [53] = 45, + [54] = 42, + [55] = 42, + [56] = 41, + [57] = 41, + [58] = 42, + [59] = 42, + [60] = 39, [61] = 40, - [62] = 37, - [63] = 36, - [64] = 38, - [65] = 40, - [66] = 37, - [67] = 67, - [68] = 68, - [69] = 69, + [62] = 45, + [63] = 42, + [64] = 41, + [65] = 42, + [66] = 41, + [67] = 39, + [68] = 40, + [69] = 45, [70] = 70, [71] = 71, [72] = 72, - [73] = 70, + [73] = 73, [74] = 74, - [75] = 74, + [75] = 75, [76] = 76, [77] = 77, [78] = 78, - [79] = 72, - [80] = 76, - [81] = 77, - [82] = 78, - [83] = 83, - [84] = 84, - [85] = 85, - [86] = 86, + [79] = 79, + [80] = 80, + [81] = 73, + [82] = 76, + [83] = 77, + [84] = 78, + [85] = 79, + [86] = 80, [87] = 87, [88] = 88, [89] = 89, [90] = 90, - [91] = 84, + [91] = 91, [92] = 92, - [93] = 87, - [94] = 88, - [95] = 89, - [96] = 90, - [97] = 84, - [98] = 92, + [93] = 93, + [94] = 94, + [95] = 95, + [96] = 96, + [97] = 97, + [98] = 98, [99] = 99, [100] = 100, [101] = 101, [102] = 102, [103] = 103, - [104] = 104, - [105] = 87, - [106] = 88, - [107] = 89, - [108] = 104, - [109] = 84, - [110] = 92, - [111] = 87, - [112] = 88, - [113] = 89, - [114] = 90, - [115] = 84, - [116] = 92, - [117] = 99, - [118] = 100, - [119] = 87, - [120] = 88, - [121] = 89, - [122] = 101, - [123] = 90, - [124] = 84, - [125] = 92, - [126] = 87, - [127] = 88, - [128] = 89, - [129] = 90, - [130] = 92, - [131] = 102, - [132] = 103, - [133] = 90, - [134] = 134, - [135] = 135, - [136] = 134, - [137] = 137, - [138] = 138, - [139] = 138, - [140] = 140, - [141] = 137, - [142] = 142, - [143] = 135, - [144] = 144, - [145] = 145, - [146] = 146, - [147] = 147, - [148] = 148, - [149] = 149, + [104] = 88, + [105] = 89, + [106] = 90, + [107] = 91, + [108] = 96, + [109] = 97, + [110] = 96, + [111] = 97, + [112] = 98, + [113] = 98, + [114] = 99, + [115] = 100, + [116] = 87, + [117] = 117, + [118] = 96, + [119] = 97, + [120] = 98, + [121] = 94, + [122] = 99, + [123] = 100, + [124] = 87, + [125] = 96, + [126] = 97, + [127] = 98, + [128] = 99, + [129] = 100, + [130] = 87, + [131] = 99, + [132] = 96, + [133] = 97, + [134] = 98, + [135] = 100, + [136] = 99, + [137] = 100, + [138] = 87, + [139] = 87, + [140] = 102, + [141] = 117, + [142] = 101, + [143] = 94, + [144] = 117, + [145] = 101, + [146] = 94, + [147] = 117, + [148] = 101, + [149] = 103, [150] = 150, [151] = 151, [152] = 152, @@ -4166,254 +4231,254 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [154] = 154, [155] = 155, [156] = 156, - [157] = 157, - [158] = 158, - [159] = 159, - [160] = 160, - [161] = 161, - [162] = 162, - [163] = 163, - [164] = 151, + [157] = 152, + [158] = 153, + [159] = 151, + [160] = 156, + [161] = 154, + [162] = 152, + [163] = 153, + [164] = 150, [165] = 165, - [166] = 165, + [166] = 166, [167] = 167, - [168] = 168, - [169] = 169, - [170] = 142, - [171] = 171, - [172] = 172, - [173] = 167, + [168] = 156, + [169] = 156, + [170] = 167, + [171] = 155, + [172] = 165, + [173] = 153, [174] = 174, [175] = 175, - [176] = 176, - [177] = 157, - [178] = 178, - [179] = 146, - [180] = 180, - [181] = 168, - [182] = 145, - [183] = 183, - [184] = 153, - [185] = 185, - [186] = 186, - [187] = 187, - [188] = 178, + [176] = 175, + [177] = 177, + [178] = 154, + [179] = 179, + [180] = 155, + [181] = 181, + [182] = 154, + [183] = 155, + [184] = 177, + [185] = 179, + [186] = 153, + [187] = 166, + [188] = 154, [189] = 152, - [190] = 146, - [191] = 178, - [192] = 152, - [193] = 162, - [194] = 146, - [195] = 178, - [196] = 152, + [190] = 155, + [191] = 152, + [192] = 174, + [193] = 193, + [194] = 194, + [195] = 195, + [196] = 196, [197] = 197, - [198] = 197, - [199] = 199, + [198] = 198, + [199] = 196, [200] = 200, [201] = 201, - [202] = 183, - [203] = 169, - [204] = 204, - [205] = 160, - [206] = 161, - [207] = 180, - [208] = 208, + [202] = 197, + [203] = 203, + [204] = 200, + [205] = 194, + [206] = 206, + [207] = 195, + [208] = 203, [209] = 209, - [210] = 210, + [210] = 206, [211] = 211, [212] = 212, - [213] = 201, - [214] = 199, + [213] = 213, + [214] = 214, [215] = 215, [216] = 216, [217] = 217, [218] = 218, [219] = 219, - [220] = 215, + [220] = 220, [221] = 221, [222] = 222, - [223] = 216, - [224] = 215, - [225] = 216, - [226] = 217, - [227] = 216, - [228] = 217, + [223] = 223, + [224] = 224, + [225] = 225, + [226] = 226, + [227] = 227, + [228] = 228, [229] = 229, - [230] = 221, + [230] = 230, [231] = 231, - [232] = 219, - [233] = 215, - [234] = 219, - [235] = 229, + [232] = 232, + [233] = 233, + [234] = 234, + [235] = 235, [236] = 236, - [237] = 231, - [238] = 218, + [237] = 237, + [238] = 238, [239] = 239, - [240] = 222, + [240] = 240, [241] = 241, - [242] = 231, - [243] = 236, - [244] = 236, - [245] = 217, - [246] = 241, - [247] = 236, - [248] = 219, - [249] = 236, + [242] = 242, + [243] = 243, + [244] = 244, + [245] = 245, + [246] = 246, + [247] = 247, + [248] = 248, + [249] = 249, [250] = 250, - [251] = 229, - [252] = 250, - [253] = 253, - [254] = 217, - [255] = 215, - [256] = 219, - [257] = 253, - [258] = 258, - [259] = 259, - [260] = 260, - [261] = 258, - [262] = 259, - [263] = 260, - [264] = 260, - [265] = 259, - [266] = 258, - [267] = 267, - [268] = 268, - [269] = 269, - [270] = 270, - [271] = 271, - [272] = 272, - [273] = 273, - [274] = 274, - [275] = 275, - [276] = 276, - [277] = 277, - [278] = 278, - [279] = 279, - [280] = 280, - [281] = 281, + [251] = 211, + [252] = 221, + [253] = 223, + [254] = 224, + [255] = 225, + [256] = 226, + [257] = 227, + [258] = 228, + [259] = 232, + [260] = 237, + [261] = 238, + [262] = 248, + [263] = 249, + [264] = 264, + [265] = 250, + [266] = 266, + [267] = 249, + [268] = 250, + [269] = 211, + [270] = 217, + [271] = 221, + [272] = 223, + [273] = 224, + [274] = 225, + [275] = 226, + [276] = 227, + [277] = 228, + [278] = 232, + [279] = 237, + [280] = 238, + [281] = 248, [282] = 282, - [283] = 283, - [284] = 284, - [285] = 285, - [286] = 268, - [287] = 269, - [288] = 288, - [289] = 270, - [290] = 290, - [291] = 291, - [292] = 292, - [293] = 293, - [294] = 294, - [295] = 295, - [296] = 269, - [297] = 297, - [298] = 269, - [299] = 269, - [300] = 269, - [301] = 301, - [302] = 302, - [303] = 301, - [304] = 304, - [305] = 305, - [306] = 306, - [307] = 307, - [308] = 308, - [309] = 267, - [310] = 276, - [311] = 277, - [312] = 278, - [313] = 279, - [314] = 280, - [315] = 281, - [316] = 282, + [283] = 249, + [284] = 250, + [285] = 211, + [286] = 217, + [287] = 221, + [288] = 223, + [289] = 224, + [290] = 225, + [291] = 226, + [292] = 227, + [293] = 228, + [294] = 232, + [295] = 237, + [296] = 238, + [297] = 248, + [298] = 249, + [299] = 238, + [300] = 300, + [301] = 249, + [302] = 238, + [303] = 249, + [304] = 238, + [305] = 249, + [306] = 238, + [307] = 247, + [308] = 247, + [309] = 309, + [310] = 310, + [311] = 311, + [312] = 312, + [313] = 313, + [314] = 264, + [315] = 247, + [316] = 316, [317] = 317, [318] = 318, [319] = 319, - [320] = 320, - [321] = 321, - [322] = 322, - [323] = 323, - [324] = 318, - [325] = 285, - [326] = 326, - [327] = 327, - [328] = 328, - [329] = 283, - [330] = 301, - [331] = 284, - [332] = 285, - [333] = 268, - [334] = 301, - [335] = 274, - [336] = 269, - [337] = 274, - [338] = 318, - [339] = 276, - [340] = 277, - [341] = 278, - [342] = 279, - [343] = 280, - [344] = 281, - [345] = 282, - [346] = 283, - [347] = 284, - [348] = 285, - [349] = 268, + [320] = 214, + [321] = 243, + [322] = 245, + [323] = 266, + [324] = 282, + [325] = 309, + [326] = 311, + [327] = 316, + [328] = 213, + [329] = 216, + [330] = 218, + [331] = 222, + [332] = 231, + [333] = 234, + [334] = 235, + [335] = 242, + [336] = 246, + [337] = 319, + [338] = 266, + [339] = 311, + [340] = 222, + [341] = 319, + [342] = 319, + [343] = 266, + [344] = 222, + [345] = 239, + [346] = 217, + [347] = 347, + [348] = 348, + [349] = 349, [350] = 350, - [351] = 269, - [352] = 270, + [351] = 351, + [352] = 352, [353] = 353, - [354] = 350, + [354] = 354, [355] = 355, [356] = 356, [357] = 357, [358] = 358, - [359] = 270, - [360] = 274, - [361] = 358, - [362] = 355, - [363] = 271, - [364] = 294, - [365] = 276, - [366] = 277, - [367] = 317, - [368] = 323, - [369] = 353, - [370] = 272, - [371] = 275, - [372] = 291, - [373] = 295, - [374] = 305, - [375] = 307, - [376] = 308, - [377] = 322, - [378] = 326, - [379] = 278, - [380] = 358, - [381] = 279, - [382] = 280, - [383] = 271, - [384] = 281, - [385] = 323, - [386] = 295, - [387] = 282, - [388] = 358, - [389] = 283, - [390] = 271, - [391] = 284, - [392] = 295, - [393] = 393, - [394] = 394, - [395] = 395, - [396] = 396, - [397] = 397, + [359] = 359, + [360] = 360, + [361] = 361, + [362] = 362, + [363] = 363, + [364] = 364, + [365] = 365, + [366] = 366, + [367] = 367, + [368] = 350, + [369] = 349, + [370] = 370, + [371] = 371, + [372] = 358, + [373] = 373, + [374] = 374, + [375] = 358, + [376] = 350, + [377] = 377, + [378] = 378, + [379] = 379, + [380] = 380, + [381] = 381, + [382] = 366, + [383] = 359, + [384] = 384, + [385] = 385, + [386] = 386, + [387] = 367, + [388] = 388, + [389] = 388, + [390] = 381, + [391] = 380, + [392] = 370, + [393] = 388, + [394] = 371, + [395] = 381, + [396] = 380, + [397] = 365, [398] = 398, [399] = 399, [400] = 400, [401] = 401, [402] = 402, - [403] = 403, - [404] = 404, + [403] = 401, + [404] = 401, [405] = 405, [406] = 406, [407] = 407, @@ -4426,125 +4491,125 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [414] = 414, [415] = 415, [416] = 416, - [417] = 400, - [418] = 418, + [417] = 417, + [418] = 399, [419] = 419, [420] = 420, - [421] = 204, + [421] = 398, [422] = 422, [423] = 423, - [424] = 424, + [424] = 419, [425] = 425, - [426] = 400, - [427] = 212, - [428] = 399, + [426] = 426, + [427] = 427, + [428] = 428, [429] = 429, [430] = 430, [431] = 431, [432] = 432, - [433] = 433, - [434] = 433, - [435] = 431, - [436] = 432, - [437] = 430, - [438] = 432, - [439] = 431, - [440] = 440, - [441] = 440, + [433] = 427, + [434] = 434, + [435] = 435, + [436] = 436, + [437] = 437, + [438] = 438, + [439] = 439, + [440] = 419, + [441] = 441, [442] = 442, - [443] = 443, - [444] = 444, + [443] = 427, + [444] = 425, [445] = 445, - [446] = 444, + [446] = 446, [447] = 447, [448] = 447, - [449] = 444, - [450] = 444, - [451] = 445, - [452] = 447, - [453] = 445, - [454] = 445, - [455] = 447, + [449] = 449, + [450] = 447, + [451] = 449, + [452] = 446, + [453] = 453, + [454] = 449, + [455] = 453, [456] = 456, - [457] = 457, - [458] = 456, - [459] = 456, - [460] = 456, + [457] = 456, + [458] = 458, + [459] = 459, + [460] = 460, [461] = 461, - [462] = 461, - [463] = 290, + [462] = 460, + [463] = 463, [464] = 461, [465] = 461, - [466] = 466, - [467] = 466, - [468] = 398, - [469] = 466, - [470] = 396, - [471] = 394, - [472] = 395, - [473] = 466, - [474] = 397, - [475] = 475, - [476] = 475, - [477] = 403, - [478] = 423, - [479] = 479, - [480] = 401, - [481] = 481, - [482] = 411, - [483] = 408, - [484] = 409, - [485] = 404, - [486] = 413, - [487] = 414, - [488] = 418, - [489] = 407, - [490] = 415, - [491] = 416, - [492] = 424, - [493] = 425, - [494] = 410, - [495] = 412, - [496] = 406, + [466] = 463, + [467] = 460, + [468] = 463, + [469] = 461, + [470] = 463, + [471] = 460, + [472] = 472, + [473] = 472, + [474] = 472, + [475] = 472, + [476] = 476, + [477] = 477, + [478] = 478, + [479] = 478, + [480] = 478, + [481] = 477, + [482] = 477, + [483] = 478, + [484] = 477, + [485] = 402, + [486] = 486, + [487] = 487, + [488] = 488, + [489] = 488, + [490] = 409, + [491] = 407, + [492] = 406, + [493] = 487, + [494] = 405, + [495] = 408, + [496] = 496, [497] = 497, - [498] = 422, - [499] = 499, - [500] = 500, - [501] = 499, - [502] = 500, - [503] = 503, - [504] = 504, - [505] = 505, - [506] = 506, - [507] = 507, - [508] = 508, - [509] = 509, - [510] = 510, - [511] = 511, - [512] = 512, - [513] = 513, - [514] = 514, - [515] = 515, - [516] = 516, - [517] = 517, - [518] = 518, - [519] = 519, + [498] = 497, + [499] = 487, + [500] = 488, + [501] = 486, + [502] = 487, + [503] = 488, + [504] = 438, + [505] = 441, + [506] = 415, + [507] = 414, + [508] = 416, + [509] = 417, + [510] = 442, + [511] = 422, + [512] = 431, + [513] = 435, + [514] = 413, + [515] = 430, + [516] = 423, + [517] = 426, + [518] = 412, + [519] = 428, [520] = 520, - [521] = 521, - [522] = 522, - [523] = 523, + [521] = 434, + [522] = 439, + [523] = 429, [524] = 524, [525] = 525, - [526] = 526, - [527] = 527, + [526] = 420, + [527] = 525, [528] = 528, - [529] = 529, + [529] = 437, [530] = 530, [531] = 531, [532] = 532, - [533] = 533, - [534] = 534, - [535] = 535, + [533] = 532, + [534] = 530, + [535] = 406, [536] = 536, [537] = 537, [538] = 538, @@ -4609,7 +4674,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [597] = 597, [598] = 598, [599] = 599, - [600] = 395, + [600] = 600, [601] = 601, [602] = 602, [603] = 603, @@ -4621,12 +4686,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [609] = 609, [610] = 610, [611] = 611, - [612] = 397, + [612] = 612, [613] = 613, - [614] = 398, + [614] = 409, [615] = 615, - [616] = 394, - [617] = 396, + [616] = 616, + [617] = 617, [618] = 618, [619] = 619, [620] = 620, @@ -4644,23 +4709,23 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [632] = 632, [633] = 633, [634] = 634, - [635] = 635, + [635] = 407, [636] = 636, [637] = 637, [638] = 638, [639] = 639, [640] = 640, [641] = 641, - [642] = 642, - [643] = 643, + [642] = 405, + [643] = 408, [644] = 644, - [645] = 550, + [645] = 645, [646] = 646, [647] = 647, [648] = 648, [649] = 649, [650] = 650, - [651] = 545, + [651] = 651, [652] = 652, [653] = 653, [654] = 654, @@ -4808,307 +4873,307 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [796] = 796, [797] = 797, [798] = 798, - [799] = 798, + [799] = 799, [800] = 800, - [801] = 796, + [801] = 801, [802] = 802, [803] = 803, - [804] = 803, + [804] = 804, [805] = 805, [806] = 806, [807] = 807, [808] = 808, [809] = 809, [810] = 810, - [811] = 809, - [812] = 806, - [813] = 805, + [811] = 811, + [812] = 812, + [813] = 813, [814] = 814, [815] = 815, - [816] = 807, - [817] = 808, + [816] = 816, + [817] = 817, [818] = 818, [819] = 819, - [820] = 819, + [820] = 820, [821] = 821, [822] = 822, [823] = 823, - [824] = 822, - [825] = 823, + [824] = 824, + [825] = 825, [826] = 826, - [827] = 826, - [828] = 828, + [827] = 827, + [828] = 827, [829] = 829, - [830] = 828, - [831] = 831, + [830] = 826, + [831] = 829, [832] = 832, [833] = 833, [834] = 834, - [835] = 831, - [836] = 832, + [835] = 835, + [836] = 836, [837] = 837, [838] = 838, [839] = 839, - [840] = 840, - [841] = 840, + [840] = 837, + [841] = 841, [842] = 842, - [843] = 821, - [844] = 844, - [845] = 829, + [843] = 841, + [844] = 832, + [845] = 839, [846] = 846, - [847] = 837, - [848] = 839, - [849] = 822, - [850] = 837, - [851] = 822, - [852] = 837, - [853] = 833, + [847] = 847, + [848] = 834, + [849] = 835, + [850] = 850, + [851] = 850, + [852] = 852, + [853] = 853, [854] = 854, [855] = 855, - [856] = 855, - [857] = 855, - [858] = 855, - [859] = 855, + [856] = 852, + [857] = 854, + [858] = 858, + [859] = 859, [860] = 860, [861] = 861, - [862] = 862, - [863] = 863, + [862] = 853, + [863] = 855, [864] = 864, - [865] = 861, - [866] = 866, + [865] = 864, + [866] = 850, [867] = 867, - [868] = 861, - [869] = 860, + [868] = 859, + [869] = 869, [870] = 870, [871] = 871, - [872] = 866, - [873] = 861, + [872] = 867, + [873] = 873, [874] = 874, - [875] = 866, - [876] = 876, - [877] = 864, - [878] = 860, - [879] = 862, - [880] = 862, - [881] = 862, - [882] = 862, - [883] = 861, + [875] = 869, + [876] = 873, + [877] = 877, + [878] = 874, + [879] = 867, + [880] = 850, + [881] = 867, + [882] = 858, + [883] = 883, [884] = 884, - [885] = 884, - [886] = 886, - [887] = 887, + [885] = 885, + [886] = 885, + [887] = 885, [888] = 888, - [889] = 889, - [890] = 890, + [889] = 885, + [890] = 885, [891] = 891, [892] = 892, [893] = 893, [894] = 894, [895] = 895, - [896] = 896, + [896] = 893, [897] = 897, - [898] = 898, + [898] = 897, [899] = 899, - [900] = 900, + [900] = 894, [901] = 901, - [902] = 902, - [903] = 903, - [904] = 904, - [905] = 905, - [906] = 906, - [907] = 907, - [908] = 908, - [909] = 909, + [902] = 894, + [903] = 894, + [904] = 897, + [905] = 897, + [906] = 891, + [907] = 895, + [908] = 894, + [909] = 895, [910] = 910, [911] = 911, - [912] = 912, + [912] = 897, [913] = 913, [914] = 914, - [915] = 915, - [916] = 916, + [915] = 901, + [916] = 893, [917] = 917, - [918] = 888, - [919] = 889, - [920] = 890, + [918] = 918, + [919] = 919, + [920] = 920, [921] = 921, - [922] = 893, + [922] = 922, [923] = 923, [924] = 924, [925] = 925, - [926] = 886, + [926] = 926, [927] = 927, [928] = 928, [929] = 929, - [930] = 893, - [931] = 931, - [932] = 907, - [933] = 908, + [930] = 925, + [931] = 926, + [932] = 927, + [933] = 933, [934] = 934, [935] = 935, - [936] = 910, + [936] = 936, [937] = 937, [938] = 938, [939] = 939, - [940] = 913, - [941] = 941, + [940] = 940, + [941] = 923, [942] = 942, - [943] = 914, + [943] = 936, [944] = 944, - [945] = 888, - [946] = 889, - [947] = 890, - [948] = 948, - [949] = 949, - [950] = 915, - [951] = 916, - [952] = 917, - [953] = 931, - [954] = 954, - [955] = 934, - [956] = 956, + [945] = 945, + [946] = 946, + [947] = 947, + [948] = 918, + [949] = 919, + [950] = 920, + [951] = 921, + [952] = 922, + [953] = 953, + [954] = 925, + [955] = 926, + [956] = 927, [957] = 957, [958] = 958, - [959] = 959, - [960] = 908, - [961] = 935, - [962] = 910, + [959] = 929, + [960] = 960, + [961] = 961, + [962] = 962, [963] = 963, [964] = 964, [965] = 965, - [966] = 966, + [966] = 920, [967] = 967, - [968] = 913, - [969] = 949, - [970] = 915, + [968] = 968, + [969] = 969, + [970] = 970, [971] = 971, [972] = 972, [973] = 973, - [974] = 974, + [974] = 918, [975] = 975, [976] = 976, - [977] = 957, + [977] = 977, [978] = 978, [979] = 979, [980] = 980, [981] = 981, [982] = 982, - [983] = 931, - [984] = 934, + [983] = 921, + [984] = 958, [985] = 985, - [986] = 935, - [987] = 907, - [988] = 908, - [989] = 949, - [990] = 910, - [991] = 991, - [992] = 992, - [993] = 913, - [994] = 914, - [995] = 915, - [996] = 916, - [997] = 886, - [998] = 959, - [999] = 980, - [1000] = 917, + [986] = 963, + [987] = 924, + [988] = 922, + [989] = 940, + [990] = 923, + [991] = 919, + [992] = 934, + [993] = 936, + [994] = 994, + [995] = 918, + [996] = 942, + [997] = 920, + [998] = 998, + [999] = 999, + [1000] = 1000, [1001] = 1001, - [1002] = 907, - [1003] = 908, - [1004] = 941, - [1005] = 942, - [1006] = 974, - [1007] = 976, - [1008] = 979, - [1009] = 892, - [1010] = 902, - [1011] = 903, + [1002] = 929, + [1003] = 958, + [1004] = 963, + [1005] = 934, + [1006] = 942, + [1007] = 1007, + [1008] = 1008, + [1009] = 1009, + [1010] = 1010, + [1011] = 1011, [1012] = 1012, - [1013] = 913, - [1014] = 914, - [1015] = 949, - [1016] = 915, - [1017] = 916, - [1018] = 917, - [1019] = 958, - [1020] = 978, - [1021] = 981, - [1022] = 982, - [1023] = 1001, - [1024] = 891, - [1025] = 894, - [1026] = 899, - [1027] = 906, - [1028] = 909, - [1029] = 921, - [1030] = 924, - [1031] = 888, - [1032] = 889, - [1033] = 890, - [1034] = 963, - [1035] = 972, - [1036] = 973, - [1037] = 985, - [1038] = 991, - [1039] = 895, - [1040] = 896, - [1041] = 897, - [1042] = 898, - [1043] = 901, - [1044] = 905, - [1045] = 911, - [1046] = 912, - [1047] = 893, - [1048] = 954, - [1049] = 956, - [1050] = 964, - [1051] = 966, - [1052] = 971, - [1053] = 975, - [1054] = 923, - [1055] = 931, - [1056] = 934, - [1057] = 907, - [1058] = 1058, - [1059] = 1059, - [1060] = 608, - [1061] = 1061, - [1062] = 1062, - [1063] = 1063, - [1064] = 608, - [1065] = 1065, - [1066] = 1066, - [1067] = 1067, - [1068] = 1068, - [1069] = 1069, - [1070] = 1070, - [1071] = 1071, - [1072] = 1072, - [1073] = 402, - [1074] = 398, - [1075] = 394, - [1076] = 396, - [1077] = 1077, - [1078] = 204, - [1079] = 1079, - [1080] = 419, - [1081] = 212, - [1082] = 395, - [1083] = 397, - [1084] = 1084, - [1085] = 574, - [1086] = 1086, - [1087] = 648, - [1088] = 1088, - [1089] = 1089, - [1090] = 765, + [1013] = 1013, + [1014] = 1014, + [1015] = 1015, + [1016] = 1016, + [1017] = 1017, + [1018] = 1018, + [1019] = 945, + [1020] = 1020, + [1021] = 1000, + [1022] = 940, + [1023] = 928, + [1024] = 1024, + [1025] = 940, + [1026] = 923, + [1027] = 953, + [1028] = 957, + [1029] = 1029, + [1030] = 967, + [1031] = 972, + [1032] = 917, + [1033] = 975, + [1034] = 980, + [1035] = 981, + [1036] = 918, + [1037] = 1037, + [1038] = 919, + [1039] = 942, + [1040] = 920, + [1041] = 921, + [1042] = 922, + [1043] = 1007, + [1044] = 1044, + [1045] = 1015, + [1046] = 1016, + [1047] = 1047, + [1048] = 1048, + [1049] = 1009, + [1050] = 933, + [1051] = 965, + [1052] = 977, + [1053] = 982, + [1054] = 985, + [1055] = 925, + [1056] = 926, + [1057] = 927, + [1058] = 935, + [1059] = 946, + [1060] = 947, + [1061] = 960, + [1062] = 961, + [1063] = 968, + [1064] = 969, + [1065] = 970, + [1066] = 971, + [1067] = 973, + [1068] = 976, + [1069] = 978, + [1070] = 979, + [1071] = 929, + [1072] = 1012, + [1073] = 1013, + [1074] = 1014, + [1075] = 1017, + [1076] = 1024, + [1077] = 1037, + [1078] = 1078, + [1079] = 1047, + [1080] = 945, + [1081] = 940, + [1082] = 923, + [1083] = 1048, + [1084] = 958, + [1085] = 963, + [1086] = 936, + [1087] = 1078, + [1088] = 1044, + [1089] = 593, + [1090] = 795, [1091] = 1091, [1092] = 1092, - [1093] = 1058, - [1094] = 1094, + [1093] = 823, + [1094] = 825, [1095] = 1095, - [1096] = 686, - [1097] = 720, - [1098] = 1098, - [1099] = 1099, + [1096] = 593, + [1097] = 795, + [1098] = 825, + [1099] = 823, [1100] = 1100, [1101] = 1101, [1102] = 1102, @@ -5117,479 +5182,479 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1105] = 1105, [1106] = 1106, [1107] = 1107, - [1108] = 1108, + [1108] = 410, [1109] = 1109, - [1110] = 1110, - [1111] = 1111, - [1112] = 1112, - [1113] = 538, - [1114] = 503, - [1115] = 779, - [1116] = 780, - [1117] = 781, - [1118] = 782, - [1119] = 783, - [1120] = 785, - [1121] = 786, - [1122] = 504, - [1123] = 505, - [1124] = 506, - [1125] = 507, - [1126] = 508, - [1127] = 509, - [1128] = 512, - [1129] = 513, - [1130] = 514, - [1131] = 515, - [1132] = 516, - [1133] = 517, - [1134] = 518, - [1135] = 519, - [1136] = 520, - [1137] = 521, - [1138] = 522, - [1139] = 787, - [1140] = 524, - [1141] = 526, - [1142] = 527, - [1143] = 528, - [1144] = 529, + [1110] = 398, + [1111] = 399, + [1112] = 409, + [1113] = 407, + [1114] = 406, + [1115] = 405, + [1116] = 408, + [1117] = 1117, + [1118] = 436, + [1119] = 1119, + [1120] = 1120, + [1121] = 1121, + [1122] = 593, + [1123] = 813, + [1124] = 1124, + [1125] = 741, + [1126] = 1126, + [1127] = 802, + [1128] = 795, + [1129] = 597, + [1130] = 1130, + [1131] = 1131, + [1132] = 1132, + [1133] = 816, + [1134] = 593, + [1135] = 1135, + [1136] = 1136, + [1137] = 1137, + [1138] = 795, + [1139] = 1139, + [1140] = 1140, + [1141] = 1141, + [1142] = 1142, + [1143] = 1143, + [1144] = 626, [1145] = 1145, [1146] = 1146, - [1147] = 553, - [1148] = 1070, - [1149] = 554, + [1147] = 1147, + [1148] = 1148, + [1149] = 1149, [1150] = 1150, - [1151] = 556, - [1152] = 557, - [1153] = 558, - [1154] = 559, - [1155] = 560, - [1156] = 1156, - [1157] = 561, - [1158] = 1158, - [1159] = 563, - [1160] = 564, - [1161] = 1161, - [1162] = 565, - [1163] = 566, - [1164] = 567, - [1165] = 568, - [1166] = 569, - [1167] = 570, - [1168] = 571, - [1169] = 572, - [1170] = 1170, - [1171] = 1171, - [1172] = 575, - [1173] = 576, - [1174] = 577, - [1175] = 578, - [1176] = 579, - [1177] = 580, - [1178] = 581, - [1179] = 582, - [1180] = 608, - [1181] = 1181, - [1182] = 583, - [1183] = 584, - [1184] = 585, - [1185] = 586, - [1186] = 553, - [1187] = 587, - [1188] = 588, - [1189] = 1189, - [1190] = 1190, - [1191] = 589, - [1192] = 590, - [1193] = 591, - [1194] = 592, - [1195] = 594, - [1196] = 595, - [1197] = 596, - [1198] = 597, - [1199] = 598, - [1200] = 599, - [1201] = 601, - [1202] = 602, - [1203] = 603, - [1204] = 604, - [1205] = 605, - [1206] = 606, - [1207] = 608, - [1208] = 609, - [1209] = 610, - [1210] = 1210, - [1211] = 1211, - [1212] = 1212, - [1213] = 1213, - [1214] = 621, - [1215] = 608, - [1216] = 623, - [1217] = 624, - [1218] = 625, - [1219] = 626, - [1220] = 627, - [1221] = 628, - [1222] = 629, - [1223] = 630, - [1224] = 1224, - [1225] = 631, - [1226] = 632, - [1227] = 633, - [1228] = 634, - [1229] = 635, - [1230] = 636, - [1231] = 637, - [1232] = 638, - [1233] = 639, - [1234] = 641, - [1235] = 642, - [1236] = 646, - [1237] = 1212, - [1238] = 440, - [1239] = 649, - [1240] = 1240, - [1241] = 650, - [1242] = 652, - [1243] = 653, - [1244] = 654, - [1245] = 655, - [1246] = 656, - [1247] = 523, - [1248] = 657, - [1249] = 658, - [1250] = 659, - [1251] = 1251, - [1252] = 660, - [1253] = 661, - [1254] = 1059, - [1255] = 662, - [1256] = 663, - [1257] = 1068, - [1258] = 664, - [1259] = 665, - [1260] = 778, - [1261] = 668, - [1262] = 1262, - [1263] = 669, - [1264] = 1264, - [1265] = 1265, - [1266] = 670, - [1267] = 1267, - [1268] = 671, - [1269] = 672, - [1270] = 673, - [1271] = 549, - [1272] = 551, - [1273] = 674, - [1274] = 675, - [1275] = 676, - [1276] = 677, - [1277] = 678, - [1278] = 687, - [1279] = 688, - [1280] = 1280, + [1151] = 795, + [1152] = 1152, + [1153] = 593, + [1154] = 1154, + [1155] = 696, + [1156] = 756, + [1157] = 757, + [1158] = 758, + [1159] = 759, + [1160] = 760, + [1161] = 761, + [1162] = 762, + [1163] = 765, + [1164] = 767, + [1165] = 768, + [1166] = 769, + [1167] = 770, + [1168] = 771, + [1169] = 772, + [1170] = 773, + [1171] = 785, + [1172] = 801, + [1173] = 1173, + [1174] = 1174, + [1175] = 1175, + [1176] = 1176, + [1177] = 626, + [1178] = 628, + [1179] = 650, + [1180] = 668, + [1181] = 788, + [1182] = 793, + [1183] = 794, + [1184] = 797, + [1185] = 777, + [1186] = 800, + [1187] = 803, + [1188] = 553, + [1189] = 554, + [1190] = 595, + [1191] = 658, + [1192] = 674, + [1193] = 702, + [1194] = 805, + [1195] = 536, + [1196] = 537, + [1197] = 538, + [1198] = 539, + [1199] = 540, + [1200] = 542, + [1201] = 543, + [1202] = 546, + [1203] = 549, + [1204] = 550, + [1205] = 563, + [1206] = 566, + [1207] = 567, + [1208] = 577, + [1209] = 578, + [1210] = 579, + [1211] = 580, + [1212] = 581, + [1213] = 584, + [1214] = 585, + [1215] = 586, + [1216] = 587, + [1217] = 589, + [1218] = 591, + [1219] = 609, + [1220] = 615, + [1221] = 616, + [1222] = 621, + [1223] = 622, + [1224] = 623, + [1225] = 630, + [1226] = 647, + [1227] = 1227, + [1228] = 1228, + [1229] = 676, + [1230] = 677, + [1231] = 683, + [1232] = 688, + [1233] = 691, + [1234] = 715, + [1235] = 720, + [1236] = 726, + [1237] = 763, + [1238] = 764, + [1239] = 778, + [1240] = 780, + [1241] = 781, + [1242] = 782, + [1243] = 783, + [1244] = 784, + [1245] = 786, + [1246] = 787, + [1247] = 790, + [1248] = 791, + [1249] = 796, + [1250] = 1250, + [1251] = 806, + [1252] = 808, + [1253] = 809, + [1254] = 811, + [1255] = 814, + [1256] = 815, + [1257] = 638, + [1258] = 678, + [1259] = 548, + [1260] = 775, + [1261] = 776, + [1262] = 779, + [1263] = 789, + [1264] = 792, + [1265] = 799, + [1266] = 545, + [1267] = 547, + [1268] = 551, + [1269] = 588, + [1270] = 590, + [1271] = 654, + [1272] = 655, + [1273] = 717, + [1274] = 718, + [1275] = 740, + [1276] = 746, + [1277] = 766, + [1278] = 774, + [1279] = 810, + [1280] = 541, [1281] = 1281, - [1282] = 1067, - [1283] = 1070, - [1284] = 1284, - [1285] = 1212, - [1286] = 693, - [1287] = 1066, - [1288] = 1288, - [1289] = 1289, - [1290] = 694, - [1291] = 696, - [1292] = 697, - [1293] = 1065, - [1294] = 1294, - [1295] = 698, - [1296] = 1296, - [1297] = 699, - [1298] = 700, - [1299] = 1299, - [1300] = 701, - [1301] = 1301, - [1302] = 702, - [1303] = 1303, - [1304] = 607, - [1305] = 703, - [1306] = 704, - [1307] = 290, - [1308] = 613, - [1309] = 615, - [1310] = 618, - [1311] = 682, - [1312] = 683, - [1313] = 685, - [1314] = 525, - [1315] = 539, - [1316] = 540, - [1317] = 541, - [1318] = 542, - [1319] = 544, - [1320] = 547, - [1321] = 548, - [1322] = 552, - [1323] = 555, - [1324] = 1324, - [1325] = 705, - [1326] = 1326, - [1327] = 706, - [1328] = 707, - [1329] = 708, - [1330] = 709, - [1331] = 710, - [1332] = 711, - [1333] = 1333, - [1334] = 712, + [1282] = 1282, + [1283] = 552, + [1284] = 555, + [1285] = 556, + [1286] = 557, + [1287] = 558, + [1288] = 559, + [1289] = 560, + [1290] = 561, + [1291] = 564, + [1292] = 565, + [1293] = 568, + [1294] = 569, + [1295] = 570, + [1296] = 571, + [1297] = 572, + [1298] = 573, + [1299] = 574, + [1300] = 575, + [1301] = 576, + [1302] = 582, + [1303] = 583, + [1304] = 594, + [1305] = 596, + [1306] = 599, + [1307] = 600, + [1308] = 601, + [1309] = 602, + [1310] = 603, + [1311] = 604, + [1312] = 605, + [1313] = 606, + [1314] = 607, + [1315] = 610, + [1316] = 611, + [1317] = 612, + [1318] = 619, + [1319] = 620, + [1320] = 624, + [1321] = 625, + [1322] = 627, + [1323] = 629, + [1324] = 631, + [1325] = 633, + [1326] = 634, + [1327] = 752, + [1328] = 639, + [1329] = 641, + [1330] = 646, + [1331] = 649, + [1332] = 651, + [1333] = 653, + [1334] = 1334, [1335] = 1335, - [1336] = 1336, - [1337] = 713, - [1338] = 714, - [1339] = 717, - [1340] = 719, - [1341] = 721, - [1342] = 722, - [1343] = 723, - [1344] = 619, - [1345] = 724, - [1346] = 725, - [1347] = 726, - [1348] = 620, - [1349] = 727, - [1350] = 728, - [1351] = 729, - [1352] = 622, - [1353] = 640, - [1354] = 643, - [1355] = 730, - [1356] = 731, - [1357] = 732, - [1358] = 733, - [1359] = 734, - [1360] = 735, - [1361] = 736, - [1362] = 737, - [1363] = 738, - [1364] = 739, - [1365] = 740, - [1366] = 741, - [1367] = 742, - [1368] = 743, - [1369] = 647, - [1370] = 667, - [1371] = 744, - [1372] = 745, - [1373] = 746, - [1374] = 747, - [1375] = 748, - [1376] = 1376, - [1377] = 679, - [1378] = 1378, - [1379] = 753, - [1380] = 754, - [1381] = 680, - [1382] = 755, - [1383] = 756, - [1384] = 681, - [1385] = 757, - [1386] = 758, - [1387] = 759, - [1388] = 760, - [1389] = 761, - [1390] = 762, - [1391] = 764, - [1392] = 1392, - [1393] = 766, - [1394] = 767, - [1395] = 768, - [1396] = 769, - [1397] = 770, - [1398] = 689, - [1399] = 771, - [1400] = 772, - [1401] = 773, - [1402] = 690, - [1403] = 774, - [1404] = 691, - [1405] = 692, - [1406] = 695, - [1407] = 715, - [1408] = 716, - [1409] = 718, - [1410] = 749, - [1411] = 750, - [1412] = 751, - [1413] = 752, - [1414] = 763, - [1415] = 784, - [1416] = 510, - [1417] = 511, - [1418] = 530, - [1419] = 532, - [1420] = 533, - [1421] = 534, - [1422] = 535, - [1423] = 536, - [1424] = 537, - [1425] = 775, - [1426] = 776, - [1427] = 777, - [1428] = 1212, - [1429] = 543, - [1430] = 546, + [1336] = 659, + [1337] = 661, + [1338] = 663, + [1339] = 664, + [1340] = 665, + [1341] = 666, + [1342] = 667, + [1343] = 669, + [1344] = 673, + [1345] = 675, + [1346] = 679, + [1347] = 680, + [1348] = 681, + [1349] = 682, + [1350] = 684, + [1351] = 685, + [1352] = 686, + [1353] = 687, + [1354] = 689, + [1355] = 690, + [1356] = 692, + [1357] = 693, + [1358] = 694, + [1359] = 695, + [1360] = 697, + [1361] = 698, + [1362] = 700, + [1363] = 701, + [1364] = 703, + [1365] = 704, + [1366] = 705, + [1367] = 706, + [1368] = 711, + [1369] = 712, + [1370] = 713, + [1371] = 716, + [1372] = 723, + [1373] = 727, + [1374] = 728, + [1375] = 729, + [1376] = 730, + [1377] = 731, + [1378] = 732, + [1379] = 734, + [1380] = 735, + [1381] = 736, + [1382] = 737, + [1383] = 738, + [1384] = 739, + [1385] = 751, + [1386] = 753, + [1387] = 754, + [1388] = 755, + [1389] = 825, + [1390] = 1390, + [1391] = 1391, + [1392] = 804, + [1393] = 1393, + [1394] = 1394, + [1395] = 823, + [1396] = 1102, + [1397] = 1397, + [1398] = 1398, + [1399] = 1399, + [1400] = 1400, + [1401] = 1401, + [1402] = 733, + [1403] = 456, + [1404] = 798, + [1405] = 807, + [1406] = 825, + [1407] = 1106, + [1408] = 823, + [1409] = 1409, + [1410] = 1103, + [1411] = 1411, + [1412] = 1101, + [1413] = 1400, + [1414] = 1414, + [1415] = 1415, + [1416] = 1416, + [1417] = 1100, + [1418] = 1418, + [1419] = 1419, + [1420] = 1420, + [1421] = 1421, + [1422] = 1422, + [1423] = 1423, + [1424] = 1424, + [1425] = 1400, + [1426] = 562, + [1427] = 1427, + [1428] = 1428, + [1429] = 402, + [1430] = 592, [1431] = 1431, - [1432] = 666, - [1433] = 1433, - [1434] = 1434, + [1432] = 1106, + [1433] = 598, + [1434] = 608, [1435] = 1435, - [1436] = 1436, - [1437] = 1437, - [1438] = 1438, - [1439] = 161, - [1440] = 395, - [1441] = 404, - [1442] = 1442, - [1443] = 1443, - [1444] = 1444, - [1445] = 1445, - [1446] = 1446, - [1447] = 1447, - [1448] = 1448, - [1449] = 1449, + [1436] = 613, + [1437] = 617, + [1438] = 618, + [1439] = 636, + [1440] = 640, + [1441] = 644, + [1442] = 645, + [1443] = 648, + [1444] = 657, + [1445] = 660, + [1446] = 662, + [1447] = 749, + [1448] = 670, + [1449] = 671, [1450] = 1450, [1451] = 1451, [1452] = 1452, - [1453] = 1453, + [1453] = 750, [1454] = 1454, [1455] = 1455, - [1456] = 1456, - [1457] = 1457, - [1458] = 1458, - [1459] = 212, - [1460] = 1460, + [1456] = 707, + [1457] = 708, + [1458] = 709, + [1459] = 710, + [1460] = 714, [1461] = 1461, - [1462] = 1462, - [1463] = 409, - [1464] = 1464, - [1465] = 411, - [1466] = 180, - [1467] = 1467, - [1468] = 413, - [1469] = 414, - [1470] = 416, - [1471] = 424, - [1472] = 160, - [1473] = 1473, - [1474] = 1474, - [1475] = 407, + [1462] = 719, + [1463] = 721, + [1464] = 722, + [1465] = 724, + [1466] = 725, + [1467] = 742, + [1468] = 1400, + [1469] = 743, + [1470] = 744, + [1471] = 745, + [1472] = 747, + [1473] = 748, + [1474] = 637, + [1475] = 1475, [1476] = 1476, [1477] = 1477, - [1478] = 1478, + [1478] = 366, [1479] = 1479, [1480] = 1480, [1481] = 1481, - [1482] = 396, - [1483] = 1483, + [1482] = 1482, + [1483] = 1106, [1484] = 1484, - [1485] = 1485, + [1485] = 825, [1486] = 1486, - [1487] = 1070, - [1488] = 397, + [1487] = 1487, + [1488] = 1488, [1489] = 1489, - [1490] = 1490, + [1490] = 434, [1491] = 1491, - [1492] = 1492, - [1493] = 1493, - [1494] = 422, - [1495] = 398, - [1496] = 1496, - [1497] = 1497, - [1498] = 1498, - [1499] = 1499, - [1500] = 169, - [1501] = 1501, + [1492] = 413, + [1493] = 414, + [1494] = 1494, + [1495] = 823, + [1496] = 415, + [1497] = 416, + [1498] = 417, + [1499] = 442, + [1500] = 399, + [1501] = 412, [1502] = 1502, [1503] = 1503, [1504] = 1504, [1505] = 1505, [1506] = 1506, [1507] = 1507, - [1508] = 1508, + [1508] = 439, [1509] = 1509, - [1510] = 1510, + [1510] = 407, [1511] = 1511, - [1512] = 408, + [1512] = 1512, [1513] = 1513, - [1514] = 1514, + [1514] = 371, [1515] = 1515, - [1516] = 1516, - [1517] = 1517, + [1516] = 420, + [1517] = 422, [1518] = 1518, [1519] = 1519, - [1520] = 406, + [1520] = 437, [1521] = 1521, - [1522] = 204, + [1522] = 1522, [1523] = 1523, [1524] = 1524, [1525] = 1525, - [1526] = 412, - [1527] = 419, - [1528] = 401, + [1526] = 1526, + [1527] = 1527, + [1528] = 1528, [1529] = 1529, - [1530] = 418, + [1530] = 405, [1531] = 1531, [1532] = 1532, - [1533] = 1533, + [1533] = 429, [1534] = 1534, [1535] = 1535, [1536] = 1536, - [1537] = 403, + [1537] = 1537, [1538] = 1538, [1539] = 1539, - [1540] = 1540, + [1540] = 408, [1541] = 1541, - [1542] = 1542, - [1543] = 394, - [1544] = 425, - [1545] = 183, - [1546] = 423, - [1547] = 410, - [1548] = 402, + [1542] = 441, + [1543] = 1543, + [1544] = 1544, + [1545] = 431, + [1546] = 1546, + [1547] = 1547, + [1548] = 410, [1549] = 1549, - [1550] = 415, + [1550] = 1550, [1551] = 1551, [1552] = 1552, - [1553] = 1553, + [1553] = 423, [1554] = 1554, [1555] = 1555, [1556] = 1556, [1557] = 1557, - [1558] = 1070, - [1559] = 1070, + [1558] = 1558, + [1559] = 1559, [1560] = 1560, - [1561] = 1561, + [1561] = 435, [1562] = 1562, [1563] = 1563, [1564] = 1564, - [1565] = 1565, + [1565] = 367, [1566] = 1566, [1567] = 1567, [1568] = 1568, - [1569] = 1108, + [1569] = 1569, [1570] = 1570, [1571] = 1571, - [1572] = 1562, - [1573] = 1564, - [1574] = 1565, + [1572] = 1572, + [1573] = 365, + [1574] = 1574, [1575] = 1575, - [1576] = 1071, - [1577] = 1577, + [1576] = 430, + [1577] = 436, [1578] = 1578, - [1579] = 1069, - [1580] = 1072, + [1579] = 406, + [1580] = 1580, [1581] = 1581, [1582] = 1582, [1583] = 1583, @@ -5598,707 +5663,707 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1586] = 1586, [1587] = 1587, [1588] = 1588, - [1589] = 1589, + [1589] = 398, [1590] = 1590, [1591] = 1591, - [1592] = 1592, + [1592] = 426, [1593] = 1593, [1594] = 1594, - [1595] = 1108, + [1595] = 1595, [1596] = 1596, - [1597] = 1108, - [1598] = 1079, - [1599] = 1158, - [1600] = 1095, - [1601] = 1088, - [1602] = 1099, - [1603] = 1158, - [1604] = 1445, - [1605] = 1501, - [1606] = 1213, - [1607] = 1445, - [1608] = 1161, - [1609] = 1091, - [1610] = 1181, - [1611] = 1092, - [1612] = 1161, - [1613] = 1181, - [1614] = 1084, - [1615] = 1089, - [1616] = 1213, - [1617] = 1098, - [1618] = 1516, + [1597] = 428, + [1598] = 1598, + [1599] = 409, + [1600] = 1600, + [1601] = 370, + [1602] = 1106, + [1603] = 1603, + [1604] = 1604, + [1605] = 1106, + [1606] = 1106, + [1607] = 1607, + [1608] = 1104, + [1609] = 1609, + [1610] = 1610, + [1611] = 1611, + [1612] = 1105, + [1613] = 1613, + [1614] = 1614, + [1615] = 1615, + [1616] = 1142, + [1617] = 1617, + [1618] = 1618, [1619] = 1619, - [1620] = 1516, - [1621] = 1109, - [1622] = 1501, - [1623] = 1103, - [1624] = 1107, + [1620] = 1620, + [1621] = 1619, + [1622] = 1622, + [1623] = 1623, + [1624] = 1624, [1625] = 1625, - [1626] = 1110, - [1627] = 1498, - [1628] = 1431, - [1629] = 1210, - [1630] = 1280, - [1631] = 1376, - [1632] = 1625, - [1633] = 290, - [1634] = 1445, - [1635] = 1498, - [1636] = 1619, + [1626] = 1626, + [1627] = 1627, + [1628] = 1628, + [1629] = 1610, + [1630] = 1107, + [1631] = 1631, + [1632] = 1632, + [1633] = 1633, + [1634] = 1634, + [1635] = 1635, + [1636] = 1615, [1637] = 1637, - [1638] = 1251, + [1638] = 1638, [1639] = 1639, [1640] = 1640, - [1641] = 1639, - [1642] = 1640, - [1643] = 1639, - [1644] = 1640, - [1645] = 1557, - [1646] = 1556, - [1647] = 1625, - [1648] = 1640, - [1649] = 1637, - [1650] = 1639, - [1651] = 1251, - [1652] = 1625, - [1653] = 396, - [1654] = 1171, - [1655] = 1591, - [1656] = 1150, - [1657] = 1592, - [1658] = 1392, - [1659] = 1284, - [1660] = 1211, - [1661] = 1288, - [1662] = 1281, - [1663] = 1289, - [1664] = 1378, - [1665] = 1294, - [1666] = 1585, - [1667] = 1189, - [1668] = 1296, - [1669] = 395, - [1670] = 397, - [1671] = 398, - [1672] = 394, - [1673] = 1673, - [1674] = 1190, - [1675] = 1593, - [1676] = 1586, - [1677] = 1557, - [1678] = 1587, - [1679] = 1581, - [1680] = 1582, - [1681] = 1262, - [1682] = 1560, - [1683] = 1299, + [1641] = 1641, + [1642] = 1109, + [1643] = 1643, + [1644] = 1142, + [1645] = 1142, + [1646] = 1130, + [1647] = 1121, + [1648] = 1135, + [1649] = 1416, + [1650] = 1137, + [1651] = 1401, + [1652] = 1424, + [1653] = 1461, + [1654] = 1416, + [1655] = 1424, + [1656] = 1575, + [1657] = 1120, + [1658] = 1461, + [1659] = 1131, + [1660] = 1401, + [1661] = 1575, + [1662] = 1132, + [1663] = 1538, + [1664] = 1119, + [1665] = 1394, + [1666] = 1604, + [1667] = 1667, + [1668] = 1394, + [1669] = 1669, + [1670] = 1670, + [1671] = 1139, + [1672] = 1552, + [1673] = 1575, + [1674] = 1145, + [1675] = 1675, + [1676] = 1146, + [1677] = 1523, + [1678] = 1675, + [1679] = 1334, + [1680] = 1148, + [1681] = 1675, + [1682] = 1552, + [1683] = 402, [1684] = 1684, - [1685] = 1588, - [1686] = 1563, - [1687] = 1687, - [1688] = 1301, - [1689] = 1689, - [1690] = 1303, - [1691] = 1589, - [1692] = 1265, - [1693] = 1156, - [1694] = 1590, - [1695] = 1583, - [1696] = 1584, - [1697] = 1697, - [1698] = 1324, - [1699] = 1326, - [1700] = 1684, - [1701] = 1567, - [1702] = 1333, - [1703] = 1687, - [1704] = 1556, - [1705] = 1594, - [1706] = 1267, - [1707] = 1689, - [1708] = 1335, - [1709] = 1709, - [1710] = 1577, - [1711] = 1578, - [1712] = 1336, - [1713] = 1264, - [1714] = 1561, - [1715] = 1585, - [1716] = 1716, - [1717] = 1717, - [1718] = 1485, - [1719] = 1492, - [1720] = 1444, - [1721] = 1509, - [1722] = 1531, - [1723] = 1723, - [1724] = 1551, - [1725] = 1542, - [1726] = 1524, - [1727] = 1727, - [1728] = 1489, - [1729] = 1490, - [1730] = 1493, - [1731] = 1467, - [1732] = 1532, - [1733] = 1540, - [1734] = 1477, - [1735] = 1478, - [1736] = 1525, - [1737] = 1529, - [1738] = 1521, - [1739] = 1739, - [1740] = 1491, - [1741] = 1741, - [1742] = 1742, - [1743] = 1581, - [1744] = 1452, - [1745] = 1456, - [1746] = 1582, - [1747] = 1496, - [1748] = 1561, - [1749] = 1560, - [1750] = 1567, - [1751] = 1481, - [1752] = 1535, - [1753] = 1552, - [1754] = 1517, - [1755] = 1503, - [1756] = 1505, - [1757] = 1065, - [1758] = 1483, - [1759] = 1515, - [1760] = 1514, - [1761] = 1484, - [1762] = 1519, - [1763] = 1536, - [1764] = 1764, - [1765] = 1502, - [1766] = 1577, - [1767] = 1578, - [1768] = 1768, - [1769] = 1769, - [1770] = 1583, - [1771] = 1584, - [1772] = 1585, - [1773] = 1586, - [1774] = 1587, - [1775] = 1588, - [1776] = 1589, - [1777] = 1590, - [1778] = 1591, - [1779] = 1592, - [1780] = 1593, - [1781] = 1781, - [1782] = 1434, - [1783] = 1435, - [1784] = 1474, - [1785] = 1442, - [1786] = 1450, - [1787] = 1480, - [1788] = 1563, + [1685] = 1684, + [1686] = 1227, + [1687] = 1675, + [1688] = 1281, + [1689] = 1669, + [1690] = 1684, + [1691] = 1538, + [1692] = 1667, + [1693] = 1669, + [1694] = 1670, + [1695] = 1669, + [1696] = 1173, + [1697] = 1523, + [1698] = 1684, + [1699] = 1603, + [1700] = 1639, + [1701] = 407, + [1702] = 406, + [1703] = 405, + [1704] = 408, + [1705] = 1618, + [1706] = 1450, + [1707] = 1393, + [1708] = 1398, + [1709] = 1451, + [1710] = 1614, + [1711] = 1637, + [1712] = 1609, + [1713] = 1613, + [1714] = 1452, + [1715] = 1454, + [1716] = 1455, + [1717] = 1399, + [1718] = 1622, + [1719] = 1174, + [1720] = 1720, + [1721] = 1721, + [1722] = 1175, + [1723] = 1176, + [1724] = 1604, + [1725] = 1720, + [1726] = 1228, + [1727] = 1640, + [1728] = 1397, + [1729] = 1282, + [1730] = 1335, + [1731] = 1411, + [1732] = 1414, + [1733] = 1415, + [1734] = 1603, + [1735] = 1418, + [1736] = 1420, + [1737] = 1737, + [1738] = 1721, + [1739] = 1421, + [1740] = 1422, + [1741] = 1607, + [1742] = 1624, + [1743] = 1625, + [1744] = 1626, + [1745] = 1627, + [1746] = 1631, + [1747] = 1632, + [1748] = 1633, + [1749] = 1634, + [1750] = 1635, + [1751] = 1427, + [1752] = 1428, + [1753] = 1423, + [1754] = 1641, + [1755] = 1435, + [1756] = 409, + [1757] = 1611, + [1758] = 414, + [1759] = 1594, + [1760] = 1595, + [1761] = 1761, + [1762] = 1632, + [1763] = 1763, + [1764] = 1505, + [1765] = 1765, + [1766] = 1633, + [1767] = 1634, + [1768] = 1503, + [1769] = 1567, + [1770] = 1770, + [1771] = 1635, + [1772] = 1504, + [1773] = 1543, + [1774] = 1487, + [1775] = 1513, + [1776] = 1515, + [1777] = 1477, + [1778] = 1519, + [1779] = 1779, + [1780] = 1780, + [1781] = 1476, + [1782] = 1480, + [1783] = 1783, + [1784] = 1585, + [1785] = 1639, + [1786] = 1547, + [1787] = 1494, + [1788] = 1761, [1789] = 1789, - [1790] = 1553, - [1791] = 1457, - [1792] = 1511, + [1790] = 1790, + [1791] = 1791, + [1792] = 1763, [1793] = 1793, - [1794] = 1454, - [1795] = 1464, - [1796] = 1523, - [1797] = 1506, - [1798] = 1594, - [1799] = 1448, - [1800] = 1451, - [1801] = 1479, - [1802] = 1458, - [1803] = 1460, - [1804] = 1461, - [1805] = 1462, - [1806] = 1473, - [1807] = 1555, - [1808] = 1497, - [1809] = 1499, - [1810] = 440, - [1811] = 409, - [1812] = 413, - [1813] = 414, - [1814] = 416, - [1815] = 424, + [1794] = 1618, + [1795] = 1622, + [1796] = 1796, + [1797] = 1578, + [1798] = 1798, + [1799] = 1549, + [1800] = 1554, + [1801] = 1486, + [1802] = 1596, + [1803] = 1598, + [1804] = 1804, + [1805] = 1479, + [1806] = 1481, + [1807] = 1591, + [1808] = 1541, + [1809] = 1809, + [1810] = 1484, + [1811] = 1600, + [1812] = 1812, + [1813] = 1489, + [1814] = 1614, + [1815] = 1637, [1816] = 1816, - [1817] = 1567, - [1818] = 1508, - [1819] = 412, - [1820] = 1577, - [1821] = 1578, - [1822] = 418, - [1823] = 403, - [1824] = 423, - [1825] = 1825, - [1826] = 1443, - [1827] = 1583, - [1828] = 1584, - [1829] = 1586, - [1830] = 1587, - [1831] = 1588, - [1832] = 1589, - [1833] = 1590, - [1834] = 1591, - [1835] = 1592, - [1836] = 1593, - [1837] = 1436, - [1838] = 1437, - [1839] = 1563, - [1840] = 407, - [1841] = 408, - [1842] = 410, - [1843] = 1554, - [1844] = 1538, - [1845] = 401, - [1846] = 404, - [1847] = 415, - [1848] = 1594, - [1849] = 1510, - [1850] = 406, - [1851] = 422, - [1852] = 183, - [1853] = 169, - [1854] = 411, - [1855] = 160, - [1856] = 1567, - [1857] = 161, - [1858] = 1577, - [1859] = 419, - [1860] = 180, - [1861] = 402, - [1862] = 1563, - [1863] = 1594, - [1864] = 1455, - [1865] = 212, - [1866] = 204, - [1867] = 1867, - [1868] = 1789, + [1817] = 1609, + [1818] = 1613, + [1819] = 1819, + [1820] = 1491, + [1821] = 1590, + [1822] = 1560, + [1823] = 1568, + [1824] = 1572, + [1825] = 1512, + [1826] = 1559, + [1827] = 398, + [1828] = 1506, + [1829] = 1829, + [1830] = 1789, + [1831] = 399, + [1832] = 1522, + [1833] = 1783, + [1834] = 1780, + [1835] = 1524, + [1836] = 1836, + [1837] = 1798, + [1838] = 1809, + [1839] = 1789, + [1840] = 1100, + [1841] = 1841, + [1842] = 456, + [1843] = 413, + [1844] = 1581, + [1845] = 415, + [1846] = 416, + [1847] = 1809, + [1848] = 1816, + [1849] = 1816, + [1850] = 1819, + [1851] = 417, + [1852] = 442, + [1853] = 1502, + [1854] = 1779, + [1855] = 1614, + [1856] = 1532, + [1857] = 1582, + [1858] = 1780, + [1859] = 1555, + [1860] = 1770, + [1861] = 1789, + [1862] = 1525, + [1863] = 1482, + [1864] = 1618, + [1865] = 1809, + [1866] = 1866, + [1867] = 1819, + [1868] = 1637, [1869] = 1869, - [1870] = 1476, - [1871] = 1871, - [1872] = 1486, - [1873] = 1717, - [1874] = 1874, - [1875] = 1518, - [1876] = 1867, - [1877] = 1541, - [1878] = 1549, - [1879] = 1449, - [1880] = 1793, - [1881] = 1723, - [1882] = 1727, - [1883] = 1741, - [1884] = 1816, - [1885] = 1825, - [1886] = 1886, - [1887] = 1886, - [1888] = 1888, - [1889] = 1889, - [1890] = 1869, - [1891] = 1581, - [1892] = 1582, - [1893] = 1871, - [1894] = 1561, - [1895] = 1560, - [1896] = 1717, - [1897] = 1723, - [1898] = 1816, - [1899] = 1869, - [1900] = 1871, - [1901] = 1717, - [1902] = 1869, - [1903] = 1723, - [1904] = 1816, - [1905] = 1869, - [1906] = 1717, - [1907] = 1907, - [1908] = 1723, - [1909] = 1816, - [1910] = 1869, - [1911] = 1717, - [1912] = 1912, - [1913] = 1913, - [1914] = 1723, + [1870] = 1526, + [1871] = 1536, + [1872] = 1872, + [1873] = 1780, + [1874] = 431, + [1875] = 1789, + [1876] = 1640, + [1877] = 1809, + [1878] = 1819, + [1879] = 1879, + [1880] = 1880, + [1881] = 1611, + [1882] = 1587, + [1883] = 1780, + [1884] = 1789, + [1885] = 423, + [1886] = 1809, + [1887] = 1819, + [1888] = 1780, + [1889] = 1789, + [1890] = 1528, + [1891] = 435, + [1892] = 430, + [1893] = 1511, + [1894] = 1607, + [1895] = 1624, + [1896] = 1625, + [1897] = 1626, + [1898] = 1627, + [1899] = 1631, + [1900] = 1518, + [1901] = 1632, + [1902] = 1633, + [1903] = 1634, + [1904] = 1635, + [1905] = 1639, + [1906] = 1586, + [1907] = 1583, + [1908] = 1584, + [1909] = 1544, + [1910] = 1488, + [1911] = 1546, + [1912] = 1588, + [1913] = 1624, + [1914] = 1625, [1915] = 1816, - [1916] = 1869, - [1917] = 1717, - [1918] = 1723, - [1919] = 1816, - [1920] = 1533, - [1921] = 1453, - [1922] = 1539, - [1923] = 1534, - [1924] = 1504, - [1925] = 1507, - [1926] = 1513, - [1927] = 1927, - [1928] = 1438, - [1929] = 1929, - [1930] = 1446, - [1931] = 1931, - [1932] = 1447, - [1933] = 1871, - [1934] = 1934, - [1935] = 1889, - [1936] = 425, - [1937] = 1937, - [1938] = 1938, - [1939] = 1939, - [1940] = 1940, - [1941] = 1941, - [1942] = 1942, - [1943] = 1943, - [1944] = 1944, - [1945] = 1937, - [1946] = 1946, - [1947] = 1947, - [1948] = 1943, - [1949] = 1949, - [1950] = 1950, - [1951] = 1951, - [1952] = 1739, - [1953] = 1953, - [1954] = 1954, - [1955] = 1781, - [1956] = 1947, - [1957] = 1907, - [1958] = 1944, - [1959] = 1939, - [1960] = 1960, - [1961] = 1949, - [1962] = 1954, - [1963] = 1950, - [1964] = 1939, - [1965] = 1965, - [1966] = 1966, - [1967] = 1967, - [1968] = 1940, - [1969] = 1969, - [1970] = 1942, - [1971] = 1946, - [1972] = 1941, - [1973] = 1969, - [1974] = 1974, - [1975] = 1975, + [1916] = 1626, + [1917] = 1627, + [1918] = 1509, + [1919] = 1475, + [1920] = 1607, + [1921] = 1550, + [1922] = 1631, + [1923] = 1521, + [1924] = 1529, + [1925] = 1551, + [1926] = 1641, + [1927] = 1556, + [1928] = 1819, + [1929] = 426, + [1930] = 1562, + [1931] = 1563, + [1932] = 428, + [1933] = 1566, + [1934] = 1557, + [1935] = 434, + [1936] = 1537, + [1937] = 1539, + [1938] = 1640, + [1939] = 420, + [1940] = 422, + [1941] = 412, + [1942] = 1829, + [1943] = 1622, + [1944] = 429, + [1945] = 441, + [1946] = 1609, + [1947] = 437, + [1948] = 439, + [1949] = 365, + [1950] = 1611, + [1951] = 366, + [1952] = 1819, + [1953] = 1593, + [1954] = 1535, + [1955] = 1507, + [1956] = 1613, + [1957] = 1641, + [1958] = 1564, + [1959] = 1809, + [1960] = 1569, + [1961] = 1804, + [1962] = 367, + [1963] = 1963, + [1964] = 1964, + [1965] = 1618, + [1966] = 1570, + [1967] = 370, + [1968] = 1968, + [1969] = 1558, + [1970] = 1640, + [1971] = 410, + [1972] = 371, + [1973] = 436, + [1974] = 1571, + [1975] = 1641, [1976] = 1976, [1977] = 1977, - [1978] = 1975, - [1979] = 1974, - [1980] = 1977, - [1981] = 1976, - [1982] = 1982, - [1983] = 1983, + [1978] = 1978, + [1979] = 1580, + [1980] = 1980, + [1981] = 1622, + [1982] = 1780, + [1983] = 1527, [1984] = 1984, - [1985] = 1985, - [1986] = 1986, - [1987] = 1986, - [1988] = 1986, - [1989] = 1985, - [1990] = 1986, - [1991] = 1986, - [1992] = 1986, - [1993] = 1985, + [1985] = 1531, + [1986] = 1534, + [1987] = 1987, + [1988] = 1988, + [1989] = 1989, + [1990] = 1989, + [1991] = 1991, + [1992] = 1992, + [1993] = 1987, [1994] = 1994, - [1995] = 1994, - [1996] = 160, - [1997] = 180, - [1998] = 1099, - [1999] = 1095, - [2000] = 2000, - [2001] = 1098, - [2002] = 1088, - [2003] = 1072, - [2004] = 1095, - [2005] = 1280, - [2006] = 1376, - [2007] = 1088, - [2008] = 1098, - [2009] = 1099, - [2010] = 1431, - [2011] = 1069, - [2012] = 1071, - [2013] = 1210, - [2014] = 1110, - [2015] = 1324, - [2016] = 1103, - [2017] = 1079, - [2018] = 2018, - [2019] = 1109, - [2020] = 1107, - [2021] = 2021, - [2022] = 2022, - [2023] = 2021, - [2024] = 1284, + [1995] = 1995, + [1996] = 1996, + [1997] = 1997, + [1998] = 1793, + [1999] = 1999, + [2000] = 1988, + [2001] = 1980, + [2002] = 1994, + [2003] = 2003, + [2004] = 1997, + [2005] = 1995, + [2006] = 1991, + [2007] = 1988, + [2008] = 1765, + [2009] = 2009, + [2010] = 2010, + [2011] = 2011, + [2012] = 2012, + [2013] = 2013, + [2014] = 1996, + [2015] = 2015, + [2016] = 2016, + [2017] = 2017, + [2018] = 2009, + [2019] = 2015, + [2020] = 2020, + [2021] = 1992, + [2022] = 2011, + [2023] = 2003, + [2024] = 2024, [2025] = 2025, - [2026] = 1289, - [2027] = 1288, - [2028] = 1084, - [2029] = 1091, - [2030] = 1089, - [2031] = 1092, - [2032] = 1150, - [2033] = 419, - [2034] = 1575, - [2035] = 2035, - [2036] = 2025, - [2037] = 2037, - [2038] = 212, - [2039] = 2039, - [2040] = 1265, - [2041] = 1211, - [2042] = 1296, - [2043] = 2037, - [2044] = 402, - [2045] = 1171, - [2046] = 1326, - [2047] = 1299, - [2048] = 204, - [2049] = 1378, - [2050] = 1264, - [2051] = 2037, - [2052] = 1281, - [2053] = 1262, - [2054] = 2025, - [2055] = 1505, - [2056] = 1508, - [2057] = 1434, - [2058] = 1435, - [2059] = 1457, - [2060] = 1568, - [2061] = 1437, - [2062] = 1515, - [2063] = 1519, - [2064] = 1448, - [2065] = 1451, - [2066] = 1553, - [2067] = 1570, - [2068] = 1442, - [2069] = 1456, - [2070] = 2070, - [2071] = 1571, - [2072] = 1511, - [2073] = 1452, - [2074] = 1458, - [2075] = 1460, - [2076] = 1436, - [2077] = 1461, - [2078] = 1462, - [2079] = 1473, - [2080] = 1454, - [2081] = 1555, - [2082] = 1497, - [2083] = 1499, - [2084] = 1464, - [2085] = 1538, - [2086] = 1523, - [2087] = 1506, - [2088] = 1554, - [2089] = 2089, - [2090] = 1503, - [2091] = 1450, - [2092] = 2092, - [2093] = 161, - [2094] = 169, + [2026] = 2024, + [2027] = 2024, + [2028] = 2024, + [2029] = 2029, + [2030] = 2024, + [2031] = 2024, + [2032] = 2025, + [2033] = 2033, + [2034] = 2033, + [2035] = 2024, + [2036] = 2024, + [2037] = 2029, + [2038] = 2038, + [2039] = 2038, + [2040] = 2040, + [2041] = 2041, + [2042] = 2042, + [2043] = 2043, + [2044] = 2043, + [2045] = 2043, + [2046] = 2046, + [2047] = 2043, + [2048] = 2046, + [2049] = 2043, + [2050] = 2043, + [2051] = 2046, + [2052] = 2052, + [2053] = 2052, + [2054] = 367, + [2055] = 371, + [2056] = 1120, + [2057] = 1131, + [2058] = 1130, + [2059] = 1119, + [2060] = 2060, + [2061] = 1105, + [2062] = 1130, + [2063] = 1334, + [2064] = 1173, + [2065] = 1131, + [2066] = 1119, + [2067] = 1281, + [2068] = 1227, + [2069] = 1104, + [2070] = 1107, + [2071] = 1120, + [2072] = 1139, + [2073] = 1145, + [2074] = 1450, + [2075] = 1148, + [2076] = 1146, + [2077] = 1109, + [2078] = 2078, + [2079] = 1411, + [2080] = 2080, + [2081] = 2081, + [2082] = 1415, + [2083] = 1414, + [2084] = 2084, + [2085] = 1132, + [2086] = 1135, + [2087] = 1121, + [2088] = 2084, + [2089] = 1137, + [2090] = 1451, + [2091] = 1282, + [2092] = 1623, + [2093] = 398, + [2094] = 1397, [2095] = 2095, - [2096] = 1294, - [2097] = 1301, - [2098] = 1303, - [2099] = 1333, + [2096] = 2095, + [2097] = 2097, + [2098] = 1421, + [2099] = 436, [2100] = 1335, - [2101] = 1336, - [2102] = 1392, - [2103] = 1098, - [2104] = 1099, - [2105] = 1095, - [2106] = 1088, - [2107] = 1088, - [2108] = 2108, - [2109] = 1095, - [2110] = 2110, - [2111] = 1099, - [2112] = 1088, - [2113] = 1099, - [2114] = 1098, - [2115] = 1098, - [2116] = 2000, - [2117] = 2117, - [2118] = 1095, - [2119] = 2119, - [2120] = 2120, - [2121] = 2121, - [2122] = 2122, - [2123] = 2120, - [2124] = 2124, - [2125] = 2125, - [2126] = 2122, - [2127] = 2124, - [2128] = 2128, - [2129] = 2129, - [2130] = 1098, - [2131] = 395, - [2132] = 2132, - [2133] = 2133, - [2134] = 2134, - [2135] = 2135, - [2136] = 2136, - [2137] = 2137, - [2138] = 2138, - [2139] = 2139, - [2140] = 2022, - [2141] = 1095, - [2142] = 2142, - [2143] = 2143, - [2144] = 394, - [2145] = 2145, - [2146] = 2146, + [2101] = 2101, + [2102] = 1174, + [2103] = 1399, + [2104] = 1228, + [2105] = 399, + [2106] = 1420, + [2107] = 2080, + [2108] = 410, + [2109] = 2095, + [2110] = 1175, + [2111] = 1398, + [2112] = 1560, + [2113] = 1537, + [2114] = 1482, + [2115] = 1532, + [2116] = 1596, + [2117] = 1617, + [2118] = 1620, + [2119] = 1536, + [2120] = 1598, + [2121] = 1554, + [2122] = 1584, + [2123] = 1513, + [2124] = 1479, + [2125] = 1522, + [2126] = 1515, + [2127] = 1539, + [2128] = 1526, + [2129] = 1519, + [2130] = 2130, + [2131] = 1638, + [2132] = 1581, + [2133] = 1582, + [2134] = 1568, + [2135] = 1572, + [2136] = 1583, + [2137] = 1586, + [2138] = 1488, + [2139] = 2080, + [2140] = 1481, + [2141] = 1503, + [2142] = 1504, + [2143] = 1489, + [2144] = 1505, + [2145] = 1549, + [2146] = 1547, [2147] = 2147, - [2148] = 2138, - [2149] = 397, - [2150] = 2150, - [2151] = 2142, - [2152] = 2143, + [2148] = 1475, + [2149] = 1524, + [2150] = 370, + [2151] = 366, + [2152] = 1176, [2153] = 2153, [2154] = 2154, - [2155] = 1069, - [2156] = 2156, - [2157] = 2157, - [2158] = 2158, - [2159] = 1088, - [2160] = 2156, - [2161] = 2158, - [2162] = 2157, - [2163] = 1099, + [2155] = 1418, + [2156] = 1422, + [2157] = 1423, + [2158] = 1452, + [2159] = 1454, + [2160] = 1455, + [2161] = 1131, + [2162] = 1131, + [2163] = 1119, [2164] = 2164, - [2165] = 1071, + [2165] = 2165, [2166] = 2166, [2167] = 2167, - [2168] = 2168, - [2169] = 2137, - [2170] = 398, - [2171] = 2171, - [2172] = 396, - [2173] = 1072, + [2168] = 2167, + [2169] = 2169, + [2170] = 1119, + [2171] = 2060, + [2172] = 2164, + [2173] = 1120, [2174] = 2174, - [2175] = 2135, - [2176] = 2171, - [2177] = 2177, - [2178] = 2178, - [2179] = 2179, - [2180] = 2180, - [2181] = 2181, + [2175] = 1130, + [2176] = 1130, + [2177] = 2166, + [2178] = 1130, + [2179] = 1119, + [2180] = 1131, + [2181] = 1120, [2182] = 2182, - [2183] = 2183, - [2184] = 2184, + [2183] = 1120, + [2184] = 2174, [2185] = 2185, [2186] = 2186, [2187] = 2187, [2188] = 2188, [2189] = 2189, - [2190] = 2190, + [2190] = 2186, [2191] = 2191, [2192] = 2192, - [2193] = 2193, - [2194] = 2194, + [2193] = 2191, + [2194] = 2189, [2195] = 2195, [2196] = 2196, - [2197] = 1079, + [2197] = 1107, [2198] = 2198, - [2199] = 2022, - [2200] = 2200, + [2199] = 2199, + [2200] = 2195, [2201] = 2201, - [2202] = 2202, + [2202] = 406, [2203] = 2203, [2204] = 2204, [2205] = 2205, - [2206] = 2196, - [2207] = 411, - [2208] = 2196, - [2209] = 2200, - [2210] = 2210, - [2211] = 2211, - [2212] = 2203, - [2213] = 2213, + [2206] = 2206, + [2207] = 407, + [2208] = 1104, + [2209] = 2199, + [2210] = 2203, + [2211] = 2081, + [2212] = 1105, + [2213] = 409, [2214] = 2214, - [2215] = 2202, + [2215] = 2215, [2216] = 2216, [2217] = 2217, [2218] = 2218, [2219] = 2219, - [2220] = 2220, + [2220] = 2198, [2221] = 2221, - [2222] = 2196, - [2223] = 2196, - [2224] = 2035, + [2222] = 2222, + [2223] = 405, + [2224] = 2215, [2225] = 2225, - [2226] = 2022, - [2227] = 2227, - [2228] = 2228, + [2226] = 2226, + [2227] = 2205, + [2228] = 2222, [2229] = 2229, [2230] = 2230, - [2231] = 2177, - [2232] = 1107, - [2233] = 2233, - [2234] = 1091, - [2235] = 2235, + [2231] = 2231, + [2232] = 2226, + [2233] = 2225, + [2234] = 1120, + [2235] = 1130, [2236] = 2236, - [2237] = 1109, - [2238] = 2238, - [2239] = 1092, + [2237] = 1131, + [2238] = 1119, + [2239] = 2229, [2240] = 2240, - [2241] = 2035, - [2242] = 2236, + [2241] = 408, + [2242] = 2231, [2243] = 2243, [2244] = 2244, [2245] = 2245, [2246] = 2246, [2247] = 2247, - [2248] = 2235, + [2248] = 2248, [2249] = 2249, - [2250] = 2246, - [2251] = 1103, + [2250] = 2250, + [2251] = 2251, [2252] = 2252, - [2253] = 2244, + [2253] = 2253, [2254] = 2254, - [2255] = 1084, + [2255] = 2255, [2256] = 2256, [2257] = 2257, - [2258] = 1089, - [2259] = 2259, - [2260] = 2236, - [2261] = 2254, + [2258] = 2258, + [2259] = 2258, + [2260] = 2260, + [2261] = 2261, [2262] = 2262, - [2263] = 2263, + [2263] = 2097, [2264] = 2264, - [2265] = 2265, - [2266] = 2257, - [2267] = 2233, - [2268] = 2022, - [2269] = 2245, - [2270] = 2270, - [2271] = 2259, - [2272] = 2249, - [2273] = 2256, - [2274] = 2259, - [2275] = 2035, - [2276] = 2238, - [2277] = 2270, - [2278] = 2278, + [2265] = 2081, + [2266] = 2266, + [2267] = 2251, + [2268] = 2268, + [2269] = 2254, + [2270] = 2258, + [2271] = 2271, + [2272] = 2272, + [2273] = 2258, + [2274] = 2274, + [2275] = 2275, + [2276] = 2276, + [2277] = 1109, + [2278] = 2081, [2279] = 2279, - [2280] = 2252, - [2281] = 2240, - [2282] = 2278, - [2283] = 1110, + [2280] = 2280, + [2281] = 2281, + [2282] = 2253, + [2283] = 2283, [2284] = 2284, [2285] = 2285, [2286] = 2286, [2287] = 2287, [2288] = 2288, - [2289] = 2289, + [2289] = 414, [2290] = 2290, [2291] = 2291, [2292] = 2292, @@ -6306,659 +6371,659 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2294] = 2294, [2295] = 2295, [2296] = 2296, - [2297] = 2285, - [2298] = 2298, - [2299] = 2299, - [2300] = 2300, + [2297] = 2297, + [2298] = 2280, + [2299] = 2258, + [2300] = 2292, [2301] = 2301, [2302] = 2302, - [2303] = 2303, + [2303] = 2097, [2304] = 2304, - [2305] = 2286, - [2306] = 2306, - [2307] = 2307, + [2305] = 2302, + [2306] = 2301, + [2307] = 1137, [2308] = 2308, - [2309] = 2293, + [2309] = 2081, [2310] = 2310, - [2311] = 2035, - [2312] = 2295, + [2311] = 2311, + [2312] = 2312, [2313] = 2313, - [2314] = 2290, - [2315] = 2291, - [2316] = 2288, - [2317] = 2317, - [2318] = 2318, + [2314] = 2314, + [2315] = 2315, + [2316] = 2316, + [2317] = 1132, + [2318] = 2315, [2319] = 2319, - [2320] = 2318, - [2321] = 2313, - [2322] = 2307, + [2320] = 2319, + [2321] = 1148, + [2322] = 2097, [2323] = 2323, - [2324] = 2300, - [2325] = 2323, - [2326] = 2326, - [2327] = 2327, - [2328] = 2306, - [2329] = 2308, - [2330] = 2330, - [2331] = 2298, - [2332] = 2319, - [2333] = 2333, - [2334] = 2330, - [2335] = 2294, - [2336] = 2333, - [2337] = 2289, - [2338] = 2338, + [2324] = 2324, + [2325] = 2312, + [2326] = 2310, + [2327] = 2313, + [2328] = 1146, + [2329] = 2329, + [2330] = 1121, + [2331] = 2311, + [2332] = 1139, + [2333] = 2310, + [2334] = 2334, + [2335] = 2314, + [2336] = 1145, + [2337] = 2311, + [2338] = 2316, [2339] = 2339, [2340] = 2340, - [2341] = 2341, + [2341] = 1135, [2342] = 2342, - [2343] = 2095, + [2343] = 2343, [2344] = 2344, [2345] = 2345, [2346] = 2346, [2347] = 2347, [2348] = 2348, [2349] = 2349, - [2350] = 2348, + [2350] = 2350, [2351] = 2351, [2352] = 2352, [2353] = 2353, [2354] = 2354, [2355] = 2355, [2356] = 2356, - [2357] = 2356, + [2357] = 2354, [2358] = 2358, - [2359] = 2358, + [2359] = 2359, [2360] = 2347, [2361] = 2361, - [2362] = 2338, - [2363] = 2363, - [2364] = 2344, - [2365] = 2342, - [2366] = 2361, - [2367] = 2367, - [2368] = 2368, - [2369] = 2369, - [2370] = 2363, + [2362] = 2362, + [2363] = 2344, + [2364] = 2345, + [2365] = 2365, + [2366] = 2352, + [2367] = 2361, + [2368] = 2365, + [2369] = 2358, + [2370] = 2370, [2371] = 2371, [2372] = 2372, - [2373] = 2373, - [2374] = 2374, - [2375] = 2371, + [2373] = 2355, + [2374] = 2356, + [2375] = 2343, [2376] = 2376, - [2377] = 2358, - [2378] = 2352, - [2379] = 2379, - [2380] = 2353, - [2381] = 2369, + [2377] = 2348, + [2378] = 2370, + [2379] = 2097, + [2380] = 2380, + [2381] = 2381, [2382] = 2382, [2383] = 2383, - [2384] = 2372, - [2385] = 2382, - [2386] = 2386, - [2387] = 2387, - [2388] = 2347, - [2389] = 2389, - [2390] = 2345, + [2384] = 2362, + [2385] = 2385, + [2386] = 2371, + [2387] = 2359, + [2388] = 2372, + [2389] = 2380, + [2390] = 2376, [2391] = 2391, - [2392] = 2383, - [2393] = 2346, - [2394] = 2379, - [2395] = 2341, - [2396] = 2354, - [2397] = 2386, - [2398] = 2347, - [2399] = 2355, + [2392] = 2392, + [2393] = 2393, + [2394] = 2394, + [2395] = 2153, + [2396] = 2396, + [2397] = 2397, + [2398] = 2398, + [2399] = 2399, [2400] = 2400, - [2401] = 2347, - [2402] = 1335, + [2401] = 2401, + [2402] = 2402, [2403] = 2403, - [2404] = 1392, - [2405] = 1303, + [2404] = 2404, + [2405] = 2405, [2406] = 2406, [2407] = 2407, - [2408] = 2110, - [2409] = 1301, + [2408] = 2408, + [2409] = 2409, [2410] = 2410, [2411] = 2411, [2412] = 2412, [2413] = 2413, [2414] = 2414, [2415] = 2415, - [2416] = 2416, + [2416] = 2405, [2417] = 2417, - [2418] = 2418, + [2418] = 2406, [2419] = 2419, - [2420] = 2406, + [2420] = 2415, [2421] = 2421, - [2422] = 2422, - [2423] = 2423, + [2422] = 2415, + [2423] = 2392, [2424] = 2424, [2425] = 2425, [2426] = 2426, - [2427] = 2427, + [2427] = 2412, [2428] = 2428, [2429] = 2429, - [2430] = 2430, - [2431] = 2431, - [2432] = 2432, - [2433] = 2410, - [2434] = 2423, - [2435] = 2435, - [2436] = 2430, - [2437] = 2411, - [2438] = 2438, - [2439] = 2439, - [2440] = 2440, - [2441] = 2406, - [2442] = 2442, - [2443] = 2428, - [2444] = 2421, - [2445] = 2411, - [2446] = 2440, + [2430] = 2397, + [2431] = 2400, + [2432] = 2402, + [2433] = 2403, + [2434] = 2415, + [2435] = 2410, + [2436] = 2411, + [2437] = 2413, + [2438] = 2414, + [2439] = 2417, + [2440] = 2419, + [2441] = 2415, + [2442] = 2398, + [2443] = 2399, + [2444] = 2401, + [2445] = 2404, + [2446] = 2446, [2447] = 2447, - [2448] = 2422, - [2449] = 2108, + [2448] = 2396, + [2449] = 2419, [2450] = 2450, - [2451] = 2451, + [2451] = 2447, [2452] = 2452, - [2453] = 2451, - [2454] = 2426, - [2455] = 2412, - [2456] = 1333, - [2457] = 2414, + [2453] = 2450, + [2454] = 2408, + [2455] = 2455, + [2456] = 2456, + [2457] = 2457, [2458] = 2458, - [2459] = 2452, - [2460] = 2442, + [2459] = 2459, + [2460] = 2460, [2461] = 2461, [2462] = 2462, - [2463] = 2429, - [2464] = 169, - [2465] = 160, - [2466] = 2092, + [2463] = 2463, + [2464] = 2464, + [2465] = 2465, + [2466] = 2466, [2467] = 2467, - [2468] = 161, - [2469] = 2406, - [2470] = 2411, + [2468] = 2468, + [2469] = 2460, + [2470] = 2463, [2471] = 2471, - [2472] = 2422, + [2472] = 2472, [2473] = 2473, - [2474] = 2415, - [2475] = 180, - [2476] = 2417, - [2477] = 2439, - [2478] = 2431, - [2479] = 2418, - [2480] = 2447, + [2474] = 2474, + [2475] = 2475, + [2476] = 2475, + [2477] = 2165, + [2478] = 2464, + [2479] = 2479, + [2480] = 2466, [2481] = 2481, [2482] = 2482, - [2483] = 2467, - [2484] = 2438, - [2485] = 2406, - [2486] = 2486, - [2487] = 2419, - [2488] = 2473, - [2489] = 2458, - [2490] = 2482, - [2491] = 2416, - [2492] = 2403, - [2493] = 2406, - [2494] = 1294, - [2495] = 2495, - [2496] = 2424, - [2497] = 2426, - [2498] = 2482, - [2499] = 2462, - [2500] = 2422, - [2501] = 1336, - [2502] = 2427, + [2483] = 2483, + [2484] = 2484, + [2485] = 2169, + [2486] = 2479, + [2487] = 2467, + [2488] = 1176, + [2489] = 2489, + [2490] = 2490, + [2491] = 2491, + [2492] = 2492, + [2493] = 2493, + [2494] = 2494, + [2495] = 2465, + [2496] = 2496, + [2497] = 2458, + [2498] = 1418, + [2499] = 2499, + [2500] = 2500, + [2501] = 2499, + [2502] = 2502, [2503] = 2503, - [2504] = 2495, - [2505] = 2432, - [2506] = 2486, - [2507] = 2413, - [2508] = 2508, - [2509] = 1112, - [2510] = 2510, - [2511] = 2511, - [2512] = 2512, - [2513] = 2513, - [2514] = 2514, - [2515] = 2515, + [2504] = 2504, + [2505] = 2460, + [2506] = 2503, + [2507] = 2507, + [2508] = 2471, + [2509] = 2503, + [2510] = 2460, + [2511] = 2471, + [2512] = 1452, + [2513] = 2481, + [2514] = 1454, + [2515] = 2503, [2516] = 2516, - [2517] = 2517, - [2518] = 2518, - [2519] = 2519, - [2520] = 2520, - [2521] = 2521, - [2522] = 2522, - [2523] = 2523, - [2524] = 2524, + [2517] = 2482, + [2518] = 1455, + [2519] = 1422, + [2520] = 2503, + [2521] = 2489, + [2522] = 2490, + [2523] = 1423, + [2524] = 2457, [2525] = 2525, - [2526] = 2526, - [2527] = 2527, - [2528] = 2528, - [2529] = 2529, - [2530] = 2530, + [2526] = 2483, + [2527] = 2484, + [2528] = 2154, + [2529] = 366, + [2530] = 367, [2531] = 2531, - [2532] = 2532, - [2533] = 2533, - [2534] = 2511, + [2532] = 2500, + [2533] = 370, + [2534] = 371, [2535] = 2535, - [2536] = 2526, - [2537] = 2530, - [2538] = 2532, - [2539] = 2539, - [2540] = 2528, - [2541] = 2541, - [2542] = 2532, - [2543] = 2543, - [2544] = 2544, - [2545] = 2519, - [2546] = 2511, - [2547] = 1065, - [2548] = 2523, - [2549] = 2549, - [2550] = 2550, - [2551] = 2551, - [2552] = 2552, - [2553] = 1105, + [2536] = 2474, + [2537] = 2491, + [2538] = 2492, + [2539] = 2493, + [2540] = 2468, + [2541] = 2494, + [2542] = 2471, + [2543] = 2459, + [2544] = 2507, + [2545] = 2472, + [2546] = 2473, + [2547] = 2547, + [2548] = 2548, + [2549] = 2503, + [2550] = 2525, + [2551] = 2548, + [2552] = 2547, + [2553] = 2553, [2554] = 2554, - [2555] = 2555, - [2556] = 2508, - [2557] = 2510, - [2558] = 2558, + [2555] = 2456, + [2556] = 2496, + [2557] = 2461, + [2558] = 2459, [2559] = 2559, - [2560] = 2539, - [2561] = 2561, + [2560] = 2462, + [2561] = 2457, [2562] = 2562, [2563] = 2563, - [2564] = 2128, + [2564] = 2564, [2565] = 2565, - [2566] = 2526, - [2567] = 2525, + [2566] = 2566, + [2567] = 2567, [2568] = 2568, [2569] = 2569, [2570] = 2570, - [2571] = 2512, - [2572] = 2544, + [2571] = 2571, + [2572] = 2572, [2573] = 2573, - [2574] = 2574, - [2575] = 1431, - [2576] = 2576, + [2574] = 2569, + [2575] = 1100, + [2576] = 1150, [2577] = 2577, - [2578] = 2516, + [2578] = 2563, [2579] = 2579, - [2580] = 2530, - [2581] = 2528, - [2582] = 2521, - [2583] = 2583, - [2584] = 1210, - [2585] = 1106, - [2586] = 2517, - [2587] = 1111, - [2588] = 2544, + [2580] = 2188, + [2581] = 1143, + [2582] = 2185, + [2583] = 1227, + [2584] = 2584, + [2585] = 2563, + [2586] = 2586, + [2587] = 2587, + [2588] = 2588, [2589] = 2589, - [2590] = 2514, - [2591] = 2539, - [2592] = 2592, - [2593] = 2520, - [2594] = 2594, - [2595] = 2558, + [2590] = 2590, + [2591] = 2566, + [2592] = 2587, + [2593] = 2593, + [2594] = 2567, + [2595] = 2564, [2596] = 2596, - [2597] = 2526, - [2598] = 1280, - [2599] = 2599, - [2600] = 2583, - [2601] = 1376, - [2602] = 2569, - [2603] = 2549, - [2604] = 2524, - [2605] = 2121, - [2606] = 2570, - [2607] = 2607, - [2608] = 2589, - [2609] = 2565, - [2610] = 2532, - [2611] = 2611, + [2597] = 2597, + [2598] = 2590, + [2599] = 1281, + [2600] = 1334, + [2601] = 2601, + [2602] = 2602, + [2603] = 2597, + [2604] = 2570, + [2605] = 2605, + [2606] = 2606, + [2607] = 2566, + [2608] = 2572, + [2609] = 2609, + [2610] = 2605, + [2611] = 1147, [2612] = 2612, [2613] = 2613, [2614] = 2614, - [2615] = 2511, + [2615] = 2615, [2616] = 2616, - [2617] = 2617, - [2618] = 2618, + [2617] = 2568, + [2618] = 2570, [2619] = 2619, [2620] = 2620, [2621] = 2621, [2622] = 2622, [2623] = 2623, [2624] = 2624, - [2625] = 2625, - [2626] = 2626, + [2625] = 2563, + [2626] = 2569, [2627] = 2627, [2628] = 2628, [2629] = 2629, [2630] = 2630, - [2631] = 2631, + [2631] = 2606, [2632] = 2632, [2633] = 2633, - [2634] = 2617, + [2634] = 2634, [2635] = 2635, - [2636] = 2636, + [2636] = 2622, [2637] = 2637, [2638] = 2638, [2639] = 2639, - [2640] = 2640, - [2641] = 2639, - [2642] = 2642, - [2643] = 2619, - [2644] = 2618, - [2645] = 2645, - [2646] = 2619, + [2640] = 2635, + [2641] = 2641, + [2642] = 2584, + [2643] = 2643, + [2644] = 2644, + [2645] = 1152, + [2646] = 2609, [2647] = 2647, [2648] = 2648, - [2649] = 2649, - [2650] = 2642, + [2649] = 2621, + [2650] = 2629, [2651] = 2651, - [2652] = 2618, - [2653] = 2619, - [2654] = 2654, + [2652] = 2588, + [2653] = 2653, + [2654] = 2566, [2655] = 2655, [2656] = 2656, - [2657] = 2623, - [2658] = 2628, - [2659] = 2629, - [2660] = 2660, - [2661] = 2631, + [2657] = 2657, + [2658] = 2644, + [2659] = 2601, + [2660] = 2622, + [2661] = 2589, [2662] = 2632, - [2663] = 2633, - [2664] = 2617, - [2665] = 2624, - [2666] = 2666, + [2663] = 2567, + [2664] = 2664, + [2665] = 2634, + [2666] = 2644, [2667] = 2667, - [2668] = 2668, - [2669] = 2669, - [2670] = 2670, - [2671] = 2671, + [2668] = 2567, + [2669] = 1173, + [2670] = 2633, + [2671] = 2641, [2672] = 2672, - [2673] = 2642, + [2673] = 2673, [2674] = 2674, - [2675] = 2631, - [2676] = 2628, - [2677] = 2616, - [2678] = 2633, - [2679] = 2617, + [2675] = 2675, + [2676] = 2676, + [2677] = 2677, + [2678] = 2678, + [2679] = 2679, [2680] = 2680, [2681] = 2681, [2682] = 2682, - [2683] = 2683, - [2684] = 2684, - [2685] = 2637, + [2683] = 2678, + [2684] = 2196, + [2685] = 2201, [2686] = 2686, - [2687] = 2687, - [2688] = 2631, - [2689] = 2617, - [2690] = 2147, - [2691] = 2633, - [2692] = 2617, - [2693] = 2654, + [2687] = 2204, + [2688] = 2206, + [2689] = 2689, + [2690] = 2676, + [2691] = 2677, + [2692] = 2692, + [2693] = 2693, [2694] = 2694, [2695] = 2695, - [2696] = 2623, + [2696] = 2696, [2697] = 2697, [2698] = 2698, - [2699] = 2625, + [2699] = 2699, [2700] = 2700, - [2701] = 2669, - [2702] = 2624, - [2703] = 2625, - [2704] = 2647, - [2705] = 2633, + [2701] = 2701, + [2702] = 2702, + [2703] = 364, + [2704] = 2704, + [2705] = 2681, [2706] = 2706, - [2707] = 2707, - [2708] = 2626, + [2707] = 2706, + [2708] = 2708, [2709] = 2709, [2710] = 2710, - [2711] = 2651, + [2711] = 2711, [2712] = 2712, [2713] = 2713, - [2714] = 2628, - [2715] = 2636, - [2716] = 2627, - [2717] = 2670, - [2718] = 2640, + [2714] = 2714, + [2715] = 2697, + [2716] = 2711, + [2717] = 2714, + [2718] = 2718, [2719] = 2719, - [2720] = 2628, - [2721] = 2629, - [2722] = 2722, - [2723] = 2621, - [2724] = 2628, + [2720] = 2720, + [2721] = 2721, + [2722] = 2680, + [2723] = 2723, + [2724] = 2724, [2725] = 2725, [2726] = 2726, - [2727] = 2727, - [2728] = 2642, - [2729] = 2631, - [2730] = 2632, - [2731] = 2694, - [2732] = 2680, + [2727] = 2708, + [2728] = 2709, + [2729] = 2712, + [2730] = 2730, + [2731] = 2731, + [2732] = 2694, [2733] = 2733, [2734] = 2734, - [2735] = 2726, - [2736] = 2672, - [2737] = 2719, - [2738] = 175, - [2739] = 2726, - [2740] = 2667, - [2741] = 2668, - [2742] = 2742, - [2743] = 2698, - [2744] = 2744, + [2735] = 2735, + [2736] = 2736, + [2737] = 2737, + [2738] = 2738, + [2739] = 2739, + [2740] = 2740, + [2741] = 2741, + [2742] = 2686, + [2743] = 2743, + [2744] = 2675, [2745] = 2745, - [2746] = 176, + [2746] = 2746, [2747] = 2747, [2748] = 2748, - [2749] = 2749, - [2750] = 2632, + [2749] = 2214, + [2750] = 2750, [2751] = 2751, - [2752] = 2154, - [2753] = 2633, - [2754] = 2645, - [2755] = 2755, - [2756] = 2756, - [2757] = 2757, - [2758] = 2686, - [2759] = 2759, + [2752] = 2752, + [2753] = 2219, + [2754] = 2695, + [2755] = 2719, + [2756] = 2731, + [2757] = 2682, + [2758] = 2230, + [2759] = 2743, [2760] = 2760, - [2761] = 2713, - [2762] = 2629, - [2763] = 2630, - [2764] = 2700, - [2765] = 2669, - [2766] = 2666, - [2767] = 2767, - [2768] = 2639, - [2769] = 2769, - [2770] = 2617, - [2771] = 2627, - [2772] = 2642, + [2761] = 2761, + [2762] = 2762, + [2763] = 2763, + [2764] = 2764, + [2765] = 2765, + [2766] = 2766, + [2767] = 2689, + [2768] = 2730, + [2769] = 2735, + [2770] = 2240, + [2771] = 2771, + [2772] = 2723, [2773] = 2773, [2774] = 2774, [2775] = 2775, - [2776] = 2707, - [2777] = 2632, - [2778] = 2637, - [2779] = 2680, - [2780] = 2749, - [2781] = 2618, - [2782] = 2767, - [2783] = 2139, - [2784] = 2618, - [2785] = 2145, - [2786] = 2623, + [2776] = 2686, + [2777] = 2777, + [2778] = 2696, + [2779] = 2696, + [2780] = 2780, + [2781] = 2708, + [2782] = 2697, + [2783] = 2711, + [2784] = 2714, + [2785] = 2733, + [2786] = 2734, [2787] = 2787, - [2788] = 2788, - [2789] = 2683, - [2790] = 2167, - [2791] = 2648, + [2788] = 2750, + [2789] = 2751, + [2790] = 2752, + [2791] = 2791, [2792] = 2695, - [2793] = 2670, - [2794] = 2712, - [2795] = 2795, - [2796] = 2796, - [2797] = 2637, - [2798] = 2684, - [2799] = 2799, + [2793] = 2719, + [2794] = 2743, + [2795] = 2760, + [2796] = 2761, + [2797] = 2762, + [2798] = 2763, + [2799] = 2764, [2800] = 2800, - [2801] = 2683, - [2802] = 2802, - [2803] = 2683, - [2804] = 2709, - [2805] = 2619, - [2806] = 2647, - [2807] = 2638, - [2808] = 2136, - [2809] = 2654, - [2810] = 2636, - [2811] = 2134, - [2812] = 2168, - [2813] = 2813, - [2814] = 2814, - [2815] = 2815, - [2816] = 2150, - [2817] = 2647, - [2818] = 2621, - [2819] = 2645, - [2820] = 2636, - [2821] = 2795, - [2822] = 2630, - [2823] = 2815, - [2824] = 2655, - [2825] = 2825, - [2826] = 2727, - [2827] = 2129, - [2828] = 2671, - [2829] = 2647, - [2830] = 2166, - [2831] = 2760, - [2832] = 2622, - [2833] = 2620, - [2834] = 2834, - [2835] = 2645, - [2836] = 2153, - [2837] = 2706, - [2838] = 2814, - [2839] = 2839, - [2840] = 2825, - [2841] = 2841, - [2842] = 2683, - [2843] = 2774, - [2844] = 2710, - [2845] = 2845, - [2846] = 2775, - [2847] = 2623, - [2848] = 2695, - [2849] = 2697, - [2850] = 2799, - [2851] = 2800, - [2852] = 2624, - [2853] = 2787, - [2854] = 2722, - [2855] = 2625, - [2856] = 2799, - [2857] = 2845, - [2858] = 2788, - [2859] = 2744, + [2801] = 2689, + [2802] = 2730, + [2803] = 2771, + [2804] = 2774, + [2805] = 2733, + [2806] = 2686, + [2807] = 2734, + [2808] = 2808, + [2809] = 2809, + [2810] = 2708, + [2811] = 2701, + [2812] = 2752, + [2813] = 2760, + [2814] = 2695, + [2815] = 2719, + [2816] = 2693, + [2817] = 2763, + [2818] = 2764, + [2819] = 2689, + [2820] = 2730, + [2821] = 2771, + [2822] = 2774, + [2823] = 2702, + [2824] = 2771, + [2825] = 2752, + [2826] = 2826, + [2827] = 2763, + [2828] = 2828, + [2829] = 2771, + [2830] = 2774, + [2831] = 2761, + [2832] = 2762, + [2833] = 2833, + [2834] = 2750, + [2835] = 2751, + [2836] = 2752, + [2837] = 2773, + [2838] = 2771, + [2839] = 2774, + [2840] = 2774, + [2841] = 2724, + [2842] = 2842, + [2843] = 2766, + [2844] = 2844, + [2845] = 2695, + [2846] = 2719, + [2847] = 2847, + [2848] = 2731, + [2849] = 2725, + [2850] = 2745, + [2851] = 2851, + [2852] = 2710, + [2853] = 2679, + [2854] = 2751, + [2855] = 2855, + [2856] = 2847, + [2857] = 2857, + [2858] = 2858, + [2859] = 2859, [2860] = 2860, [2861] = 2682, - [2862] = 2744, - [2863] = 2682, - [2864] = 2800, - [2865] = 2700, - [2866] = 2633, - [2867] = 2629, - [2868] = 2686, - [2869] = 2627, - [2870] = 2841, + [2862] = 2862, + [2863] = 2752, + [2864] = 2698, + [2865] = 2674, + [2866] = 2743, + [2867] = 2760, + [2868] = 2761, + [2869] = 2869, + [2870] = 2676, [2871] = 2871, - [2872] = 2686, - [2873] = 2630, - [2874] = 2639, - [2875] = 2875, - [2876] = 2642, - [2877] = 2747, - [2878] = 2878, + [2872] = 2737, + [2873] = 2762, + [2874] = 2874, + [2875] = 2677, + [2876] = 2763, + [2877] = 2763, + [2878] = 2764, [2879] = 2879, - [2880] = 2880, - [2881] = 2881, - [2882] = 2882, - [2883] = 2221, - [2884] = 2884, - [2885] = 2885, - [2886] = 2878, - [2887] = 2887, - [2888] = 2888, + [2880] = 2718, + [2881] = 2765, + [2882] = 2726, + [2883] = 2764, + [2884] = 2765, + [2885] = 2775, + [2886] = 2777, + [2887] = 2847, + [2888] = 2766, [2889] = 2889, - [2890] = 2890, - [2891] = 2891, + [2890] = 2842, + [2891] = 2844, [2892] = 2892, - [2893] = 2893, - [2894] = 2894, - [2895] = 2895, - [2896] = 2896, - [2897] = 2897, - [2898] = 2898, - [2899] = 2899, - [2900] = 2900, - [2901] = 2901, - [2902] = 2902, - [2903] = 2903, - [2904] = 2904, - [2905] = 2905, - [2906] = 2906, - [2907] = 2891, - [2908] = 2908, - [2909] = 2909, - [2910] = 2910, - [2911] = 2911, - [2912] = 2912, + [2893] = 2720, + [2894] = 2721, + [2895] = 2682, + [2896] = 2739, + [2897] = 2682, + [2898] = 2740, + [2899] = 2673, + [2900] = 2847, + [2901] = 2741, + [2902] = 2679, + [2903] = 2787, + [2904] = 2874, + [2905] = 2800, + [2906] = 2700, + [2907] = 2907, + [2908] = 2704, + [2909] = 363, + [2910] = 2847, + [2911] = 2679, + [2912] = 2689, [2913] = 2913, - [2914] = 2914, + [2914] = 2833, [2915] = 2915, - [2916] = 2916, - [2917] = 2917, - [2918] = 2918, - [2919] = 2919, + [2916] = 2750, + [2917] = 2730, + [2918] = 2735, + [2919] = 2913, [2920] = 2920, - [2921] = 2921, - [2922] = 2922, + [2921] = 2216, + [2922] = 2217, [2923] = 2923, - [2924] = 2924, - [2925] = 2925, - [2926] = 2926, - [2927] = 2187, - [2928] = 2928, - [2929] = 2929, - [2930] = 2188, - [2931] = 2931, - [2932] = 2932, - [2933] = 2190, + [2924] = 2892, + [2925] = 2747, + [2926] = 2218, + [2927] = 2858, + [2928] = 2771, + [2929] = 2221, + [2930] = 2773, + [2931] = 2773, + [2932] = 2774, + [2933] = 2743, [2934] = 2934, - [2935] = 2192, + [2935] = 2285, [2936] = 2936, [2937] = 2937, - [2938] = 2193, - [2939] = 2195, + [2938] = 2934, + [2939] = 2939, [2940] = 2940, - [2941] = 2879, - [2942] = 2921, + [2941] = 2941, + [2942] = 414, [2943] = 2943, [2944] = 2944, - [2945] = 2887, + [2945] = 2945, [2946] = 2946, [2947] = 2947, - [2948] = 2911, - [2949] = 2943, + [2948] = 2946, + [2949] = 2949, [2950] = 2950, [2951] = 2951, [2952] = 2952, @@ -6968,614 +7033,614 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2956] = 2956, [2957] = 2957, [2958] = 2958, - [2959] = 2888, - [2960] = 2908, + [2959] = 2959, + [2960] = 2934, [2961] = 2961, - [2962] = 2918, - [2963] = 2947, + [2962] = 2958, + [2963] = 2963, [2964] = 2964, [2965] = 2965, - [2966] = 2912, - [2967] = 2913, + [2966] = 2966, + [2967] = 2261, [2968] = 2968, - [2969] = 2914, + [2969] = 2968, [2970] = 2970, [2971] = 2971, - [2972] = 2198, - [2973] = 2205, - [2974] = 2915, + [2972] = 2972, + [2973] = 2973, + [2974] = 2974, [2975] = 2975, - [2976] = 2976, - [2977] = 2977, - [2978] = 2916, - [2979] = 2944, - [2980] = 2968, + [2976] = 2958, + [2977] = 2262, + [2978] = 2974, + [2979] = 2979, + [2980] = 2965, [2981] = 2981, [2982] = 2982, - [2983] = 2983, - [2984] = 2984, - [2985] = 2917, - [2986] = 2946, - [2987] = 2216, - [2988] = 2981, + [2983] = 2968, + [2984] = 2264, + [2985] = 2970, + [2986] = 2986, + [2987] = 2987, + [2988] = 2970, [2989] = 2989, [2990] = 2990, - [2991] = 2201, - [2992] = 2992, + [2991] = 2991, + [2992] = 2939, [2993] = 2993, - [2994] = 2884, - [2995] = 2995, - [2996] = 2189, - [2997] = 2191, + [2994] = 2994, + [2995] = 2966, + [2996] = 2996, + [2997] = 2997, [2998] = 2998, [2999] = 2999, - [3000] = 2194, - [3001] = 3001, + [3000] = 3000, + [3001] = 2286, [3002] = 3002, - [3003] = 2890, - [3004] = 2964, - [3005] = 2919, + [3003] = 3003, + [3004] = 2999, + [3005] = 3005, [3006] = 3006, - [3007] = 2204, + [3007] = 3007, [3008] = 3008, - [3009] = 2920, - [3010] = 2210, + [3009] = 2987, + [3010] = 2949, [3011] = 3011, - [3012] = 3012, - [3013] = 2211, - [3014] = 2213, - [3015] = 2217, - [3016] = 2218, - [3017] = 2219, - [3018] = 3018, - [3019] = 2220, - [3020] = 3020, + [3012] = 2950, + [3013] = 3013, + [3014] = 3014, + [3015] = 2959, + [3016] = 3016, + [3017] = 3017, + [3018] = 2973, + [3019] = 3019, + [3020] = 2271, [3021] = 3021, - [3022] = 3022, + [3022] = 2943, [3023] = 3023, - [3024] = 2897, - [3025] = 3025, + [3024] = 3024, + [3025] = 3011, [3026] = 3026, - [3027] = 3027, - [3028] = 3028, - [3029] = 2922, - [3030] = 2882, - [3031] = 2923, - [3032] = 2884, + [3027] = 2946, + [3028] = 2939, + [3029] = 3029, + [3030] = 3030, + [3031] = 3031, + [3032] = 3016, [3033] = 3033, - [3034] = 2885, - [3035] = 2878, + [3034] = 2287, + [3035] = 2965, [3036] = 3036, [3037] = 3037, [3038] = 3038, - [3039] = 183, - [3040] = 2912, - [3041] = 2913, + [3039] = 3039, + [3040] = 3040, + [3041] = 3041, [3042] = 3042, - [3043] = 2919, - [3044] = 2898, - [3045] = 2920, - [3046] = 3046, + [3043] = 3043, + [3044] = 3044, + [3045] = 2949, + [3046] = 2950, [3047] = 3047, - [3048] = 2923, - [3049] = 2992, - [3050] = 2965, - [3051] = 2951, - [3052] = 2955, - [3053] = 3053, - [3054] = 2225, + [3048] = 2957, + [3049] = 2973, + [3050] = 2990, + [3051] = 3051, + [3052] = 3052, + [3053] = 3008, + [3054] = 2974, [3055] = 3055, - [3056] = 3056, - [3057] = 2924, - [3058] = 2227, - [3059] = 2925, - [3060] = 2885, - [3061] = 2899, - [3062] = 2951, + [3056] = 3030, + [3057] = 3057, + [3058] = 3055, + [3059] = 3059, + [3060] = 3060, + [3061] = 3061, + [3062] = 3062, [3063] = 3063, - [3064] = 3011, - [3065] = 3065, - [3066] = 3018, - [3067] = 3067, - [3068] = 2229, - [3069] = 3022, + [3064] = 3043, + [3065] = 3047, + [3066] = 2975, + [3067] = 3007, + [3068] = 2266, + [3069] = 2268, [3070] = 3070, - [3071] = 3071, - [3072] = 2230, - [3073] = 3073, - [3074] = 3074, - [3075] = 2912, - [3076] = 2913, - [3077] = 2993, - [3078] = 3078, - [3079] = 2951, - [3080] = 3080, - [3081] = 411, + [3071] = 2291, + [3072] = 2246, + [3073] = 2294, + [3074] = 2255, + [3075] = 3075, + [3076] = 3059, + [3077] = 3061, + [3078] = 3007, + [3079] = 3079, + [3080] = 3002, + [3081] = 3029, [3082] = 3082, - [3083] = 2928, - [3084] = 3011, - [3085] = 2929, - [3086] = 2900, + [3083] = 3083, + [3084] = 3084, + [3085] = 3085, + [3086] = 3086, [3087] = 3087, - [3088] = 3088, - [3089] = 2931, - [3090] = 2179, - [3091] = 3091, + [3088] = 3060, + [3089] = 3089, + [3090] = 3090, + [3091] = 2981, [3092] = 3092, - [3093] = 3022, + [3093] = 3093, [3094] = 3094, - [3095] = 2983, - [3096] = 2182, - [3097] = 3097, + [3095] = 3095, + [3096] = 3082, + [3097] = 2993, [3098] = 3098, [3099] = 3099, [3100] = 3100, [3101] = 3101, - [3102] = 3102, + [3102] = 2243, [3103] = 3103, - [3104] = 3038, - [3105] = 3038, + [3104] = 3104, + [3105] = 2943, [3106] = 3106, [3107] = 3107, - [3108] = 2902, - [3109] = 2934, - [3110] = 3055, + [3108] = 3108, + [3109] = 3023, + [3110] = 3110, [3111] = 3111, [3112] = 3112, - [3113] = 2955, + [3113] = 3113, [3114] = 3114, - [3115] = 3115, - [3116] = 3116, - [3117] = 2880, + [3115] = 3085, + [3116] = 2998, + [3117] = 3117, [3118] = 3118, - [3119] = 3106, - [3120] = 3120, - [3121] = 2936, - [3122] = 2937, - [3123] = 3123, - [3124] = 3107, + [3119] = 2989, + [3120] = 2959, + [3121] = 3121, + [3122] = 3122, + [3123] = 3118, + [3124] = 2934, [3125] = 3125, - [3126] = 3011, - [3127] = 2178, - [3128] = 2180, - [3129] = 3129, - [3130] = 2181, - [3131] = 2183, - [3132] = 2184, - [3133] = 2185, - [3134] = 3134, - [3135] = 3135, - [3136] = 2904, + [3126] = 2939, + [3127] = 3110, + [3128] = 3128, + [3129] = 2982, + [3130] = 3130, + [3131] = 3000, + [3132] = 3132, + [3133] = 3133, + [3134] = 2945, + [3135] = 2956, + [3136] = 3128, [3137] = 3137, [3138] = 3138, [3139] = 3139, [3140] = 3140, - [3141] = 3141, + [3141] = 2283, [3142] = 3142, - [3143] = 3143, - [3144] = 3144, - [3145] = 2901, - [3146] = 3146, + [3143] = 2944, + [3144] = 3093, + [3145] = 3145, + [3146] = 3101, [3147] = 3147, - [3148] = 2893, - [3149] = 2903, - [3150] = 3018, - [3151] = 3125, - [3152] = 3152, - [3153] = 3153, - [3154] = 3022, + [3148] = 2293, + [3149] = 3149, + [3150] = 2249, + [3151] = 2272, + [3152] = 2274, + [3153] = 2275, + [3154] = 2276, [3155] = 3155, - [3156] = 3011, - [3157] = 2894, - [3158] = 2975, - [3159] = 2940, - [3160] = 2976, - [3161] = 2971, - [3162] = 3001, - [3163] = 3143, - [3164] = 3152, + [3156] = 2290, + [3157] = 3157, + [3158] = 3099, + [3159] = 2941, + [3160] = 3122, + [3161] = 2248, + [3162] = 3138, + [3163] = 3163, + [3164] = 3164, [3165] = 3165, - [3166] = 2882, - [3167] = 2889, - [3168] = 2953, - [3169] = 3080, - [3170] = 2905, - [3171] = 3112, - [3172] = 3165, - [3173] = 3173, - [3174] = 3094, + [3166] = 3166, + [3167] = 3167, + [3168] = 3089, + [3169] = 2940, + [3170] = 3139, + [3171] = 3171, + [3172] = 3024, + [3173] = 2297, + [3174] = 3108, [3175] = 3175, - [3176] = 3176, + [3176] = 2973, [3177] = 3177, - [3178] = 3155, - [3179] = 2957, - [3180] = 2984, - [3181] = 2958, - [3182] = 3176, - [3183] = 2214, - [3184] = 3147, - [3185] = 3023, - [3186] = 3111, - [3187] = 2895, - [3188] = 2922, - [3189] = 3189, + [3178] = 2952, + [3179] = 3179, + [3180] = 3180, + [3181] = 3181, + [3182] = 3182, + [3183] = 3084, + [3184] = 2279, + [3185] = 2997, + [3186] = 2288, + [3187] = 3187, + [3188] = 3104, + [3189] = 2996, [3190] = 3190, [3191] = 3191, - [3192] = 3192, + [3192] = 2244, [3193] = 3193, - [3194] = 3194, + [3194] = 2939, [3195] = 3195, - [3196] = 3196, - [3197] = 3197, + [3196] = 2247, + [3197] = 3195, [3198] = 3198, - [3199] = 3199, - [3200] = 3200, + [3199] = 3187, + [3200] = 3163, [3201] = 3201, - [3202] = 1554, - [3203] = 3203, + [3202] = 2951, + [3203] = 2250, [3204] = 3204, - [3205] = 3205, - [3206] = 3206, - [3207] = 3207, - [3208] = 3208, - [3209] = 3209, + [3205] = 3083, + [3206] = 2994, + [3207] = 3198, + [3208] = 2245, + [3209] = 2260, [3210] = 3210, - [3211] = 3211, - [3212] = 3212, - [3213] = 3212, + [3211] = 2257, + [3212] = 3125, + [3213] = 3213, [3214] = 3214, - [3215] = 3215, - [3216] = 3216, - [3217] = 3217, - [3218] = 3218, + [3215] = 2256, + [3216] = 3033, + [3217] = 3083, + [3218] = 3167, [3219] = 3219, - [3220] = 3220, - [3221] = 3221, - [3222] = 3222, - [3223] = 3223, - [3224] = 3203, - [3225] = 3225, - [3226] = 3226, - [3227] = 3192, - [3228] = 3221, - [3229] = 3229, - [3230] = 3230, + [3220] = 2937, + [3221] = 2295, + [3222] = 2999, + [3223] = 3133, + [3224] = 3021, + [3225] = 3005, + [3226] = 3098, + [3227] = 3227, + [3228] = 2999, + [3229] = 3164, + [3230] = 3037, [3231] = 3231, - [3232] = 3232, - [3233] = 3233, - [3234] = 3234, + [3232] = 365, + [3233] = 3231, + [3234] = 2954, [3235] = 3235, - [3236] = 3204, - [3237] = 3237, - [3238] = 3201, - [3239] = 3239, - [3240] = 3223, + [3236] = 3236, + [3237] = 3166, + [3238] = 2959, + [3239] = 2281, + [3240] = 3240, [3241] = 3241, [3242] = 3242, [3243] = 3243, - [3244] = 3241, - [3245] = 3230, + [3244] = 3244, + [3245] = 3245, [3246] = 3246, - [3247] = 3206, - [3248] = 3248, + [3247] = 3247, + [3248] = 3244, [3249] = 3249, - [3250] = 3193, - [3251] = 3201, - [3252] = 3199, + [3250] = 3250, + [3251] = 3251, + [3252] = 3252, [3253] = 3253, - [3254] = 3201, - [3255] = 3203, - [3256] = 3204, - [3257] = 3257, - [3258] = 3207, + [3254] = 3254, + [3255] = 3255, + [3256] = 3256, + [3257] = 1526, + [3258] = 3258, [3259] = 3259, [3260] = 3260, - [3261] = 3211, - [3262] = 3262, - [3263] = 3209, + [3261] = 3261, + [3262] = 3242, + [3263] = 3263, [3264] = 3264, [3265] = 3265, [3266] = 3266, - [3267] = 3267, + [3267] = 3253, [3268] = 3268, - [3269] = 3201, - [3270] = 3220, - [3271] = 3223, + [3269] = 3269, + [3270] = 3270, + [3271] = 3271, [3272] = 3272, [3273] = 3273, - [3274] = 3211, - [3275] = 3241, + [3274] = 3274, + [3275] = 3275, [3276] = 3276, - [3277] = 3193, - [3278] = 3201, - [3279] = 3243, - [3280] = 3203, - [3281] = 3204, - [3282] = 3189, - [3283] = 3211, + [3277] = 3277, + [3278] = 3278, + [3279] = 3277, + [3280] = 1539, + [3281] = 3281, + [3282] = 3282, + [3283] = 3283, [3284] = 3284, - [3285] = 3226, - [3286] = 3191, - [3287] = 3241, - [3288] = 3205, + [3285] = 3285, + [3286] = 3286, + [3287] = 3287, + [3288] = 3288, [3289] = 3289, - [3290] = 3201, - [3291] = 3203, - [3292] = 3204, - [3293] = 3195, + [3290] = 3290, + [3291] = 3291, + [3292] = 1537, + [3293] = 3293, [3294] = 3294, [3295] = 3295, - [3296] = 3296, - [3297] = 3294, + [3296] = 3253, + [3297] = 3297, [3298] = 3298, [3299] = 3299, - [3300] = 3241, - [3301] = 3259, - [3302] = 3201, - [3303] = 3203, - [3304] = 3204, - [3305] = 3284, - [3306] = 3197, - [3307] = 3223, - [3308] = 3241, - [3309] = 3201, - [3310] = 3203, - [3311] = 3204, - [3312] = 3241, - [3313] = 3203, - [3314] = 3204, - [3315] = 3241, - [3316] = 3203, - [3317] = 3204, - [3318] = 3241, - [3319] = 3203, - [3320] = 3204, - [3321] = 3241, - [3322] = 3203, - [3323] = 3204, - [3324] = 3199, - [3325] = 3325, + [3300] = 3291, + [3301] = 3301, + [3302] = 3302, + [3303] = 3303, + [3304] = 3304, + [3305] = 3305, + [3306] = 3306, + [3307] = 3307, + [3308] = 3308, + [3309] = 3309, + [3310] = 3245, + [3311] = 3311, + [3312] = 3250, + [3313] = 3263, + [3314] = 3253, + [3315] = 3315, + [3316] = 3255, + [3317] = 3256, + [3318] = 3304, + [3319] = 3291, + [3320] = 3320, + [3321] = 3321, + [3322] = 3276, + [3323] = 3323, + [3324] = 3269, + [3325] = 3304, [3326] = 3326, - [3327] = 3222, - [3328] = 3208, + [3327] = 3308, + [3328] = 3328, [3329] = 3329, - [3330] = 3330, + [3330] = 3305, [3331] = 3331, - [3332] = 3200, - [3333] = 3231, - [3334] = 3334, - [3335] = 3265, - [3336] = 1262, - [3337] = 1264, - [3338] = 3234, - [3339] = 3339, - [3340] = 3232, - [3341] = 3235, - [3342] = 3243, - [3343] = 3343, - [3344] = 3233, + [3332] = 3329, + [3333] = 3333, + [3334] = 3255, + [3335] = 3335, + [3336] = 3336, + [3337] = 3291, + [3338] = 3264, + [3339] = 3275, + [3340] = 3340, + [3341] = 3341, + [3342] = 3305, + [3343] = 3270, + [3344] = 3245, [3345] = 3345, - [3346] = 3330, - [3347] = 3347, - [3348] = 3241, - [3349] = 3349, - [3350] = 3265, + [3346] = 3346, + [3347] = 3253, + [3348] = 3255, + [3349] = 3256, + [3350] = 3277, [3351] = 3351, - [3352] = 3331, - [3353] = 3353, - [3354] = 3276, + [3352] = 3352, + [3353] = 3269, + [3354] = 3315, [3355] = 3355, - [3356] = 3356, - [3357] = 3357, - [3358] = 1436, - [3359] = 1437, + [3356] = 3039, + [3357] = 3042, + [3358] = 3266, + [3359] = 3305, [3360] = 3360, - [3361] = 3091, - [3362] = 3103, - [3363] = 3363, - [3364] = 3364, - [3365] = 3357, - [3366] = 3366, - [3367] = 3367, - [3368] = 3368, - [3369] = 3369, - [3370] = 3193, - [3371] = 3334, - [3372] = 3372, - [3373] = 3373, - [3374] = 3214, + [3361] = 3253, + [3362] = 3255, + [3363] = 3256, + [3364] = 3328, + [3365] = 3365, + [3366] = 3260, + [3367] = 3245, + [3368] = 3305, + [3369] = 3253, + [3370] = 3255, + [3371] = 3256, + [3372] = 3311, + [3373] = 3331, + [3374] = 3249, [3375] = 3375, - [3376] = 3376, - [3377] = 3198, - [3378] = 3199, - [3379] = 3200, - [3380] = 3380, - [3381] = 3356, - [3382] = 3382, - [3383] = 3383, - [3384] = 3384, - [3385] = 3242, - [3386] = 3386, - [3387] = 3387, - [3388] = 3295, - [3389] = 3363, - [3390] = 3382, - [3391] = 3387, - [3392] = 3392, + [3376] = 3305, + [3377] = 3301, + [3378] = 3253, + [3379] = 3255, + [3380] = 3256, + [3381] = 3305, + [3382] = 3255, + [3383] = 3256, + [3384] = 3305, + [3385] = 3255, + [3386] = 3256, + [3387] = 3305, + [3388] = 3255, + [3389] = 3256, + [3390] = 3305, + [3391] = 3255, + [3392] = 3256, [3393] = 3393, [3394] = 3394, - [3395] = 3395, - [3396] = 3396, - [3397] = 3201, - [3398] = 3220, - [3399] = 3399, - [3400] = 3355, - [3401] = 3360, - [3402] = 3402, - [3403] = 3203, - [3404] = 3204, - [3405] = 1538, - [3406] = 3353, - [3407] = 3357, - [3408] = 3408, - [3409] = 3386, - [3410] = 3410, - [3411] = 3205, - [3412] = 3198, + [3395] = 3250, + [3396] = 3251, + [3397] = 3288, + [3398] = 3398, + [3399] = 3375, + [3400] = 3394, + [3401] = 3333, + [3402] = 1397, + [3403] = 1398, + [3404] = 3404, + [3405] = 3405, + [3406] = 3256, + [3407] = 3407, + [3408] = 3290, + [3409] = 3335, + [3410] = 3346, + [3411] = 3411, + [3412] = 3412, [3413] = 3413, - [3414] = 3208, - [3415] = 3201, - [3416] = 3231, + [3414] = 3414, + [3415] = 3415, + [3416] = 3416, [3417] = 3417, - [3418] = 1262, - [3419] = 1264, - [3420] = 3339, - [3421] = 3421, - [3422] = 3276, - [3423] = 3423, - [3424] = 3193, + [3418] = 3418, + [3419] = 3333, + [3420] = 3420, + [3421] = 3253, + [3422] = 3245, + [3423] = 3281, + [3424] = 3424, [3425] = 3425, - [3426] = 3347, - [3427] = 3364, - [3428] = 3428, + [3426] = 3307, + [3427] = 3427, + [3428] = 3411, [3429] = 3429, [3430] = 3430, - [3431] = 3231, - [3432] = 3259, - [3433] = 3339, - [3434] = 3428, - [3435] = 3190, - [3436] = 3366, - [3437] = 3218, + [3431] = 3255, + [3432] = 3432, + [3433] = 3256, + [3434] = 3305, + [3435] = 3435, + [3436] = 3436, + [3437] = 3285, [3438] = 3438, - [3439] = 3231, - [3440] = 3339, - [3441] = 3211, - [3442] = 3246, - [3443] = 3262, - [3444] = 3444, - [3445] = 3421, - [3446] = 3265, - [3447] = 3223, - [3448] = 3448, - [3449] = 3260, - [3450] = 3253, - [3451] = 3451, - [3452] = 3201, - [3453] = 3372, - [3454] = 3276, - [3455] = 3205, - [3456] = 3219, - [3457] = 3444, - [3458] = 3239, - [3459] = 3212, - [3460] = 3229, - [3461] = 3339, - [3462] = 3462, - [3463] = 3257, - [3464] = 3429, - [3465] = 3451, - [3466] = 3289, - [3467] = 1508, - [3468] = 3468, - [3469] = 3235, - [3470] = 3243, - [3471] = 3423, - [3472] = 3221, - [3473] = 3241, - [3474] = 3410, - [3475] = 3262, - [3476] = 3260, - [3477] = 3423, - [3478] = 3260, - [3479] = 3423, - [3480] = 3367, - [3481] = 3353, - [3482] = 3265, - [3483] = 3438, - [3484] = 3413, - [3485] = 3329, - [3486] = 3267, - [3487] = 3208, - [3488] = 3353, - [3489] = 3393, - [3490] = 3430, - [3491] = 3343, - [3492] = 3268, - [3493] = 3221, - [3494] = 3368, - [3495] = 3448, - [3496] = 3462, - [3497] = 3497, - [3498] = 3498, - [3499] = 3499, + [3439] = 3345, + [3440] = 3440, + [3441] = 3441, + [3442] = 3252, + [3443] = 3258, + [3444] = 3272, + [3445] = 3274, + [3446] = 3446, + [3447] = 3263, + [3448] = 3441, + [3449] = 3266, + [3450] = 3446, + [3451] = 3253, + [3452] = 3452, + [3453] = 3249, + [3454] = 3454, + [3455] = 3360, + [3456] = 3250, + [3457] = 3457, + [3458] = 3260, + [3459] = 3459, + [3460] = 3460, + [3461] = 3269, + [3462] = 3281, + [3463] = 3398, + [3464] = 3464, + [3465] = 3405, + [3466] = 3459, + [3467] = 3416, + [3468] = 3251, + [3469] = 3309, + [3470] = 3398, + [3471] = 3452, + [3472] = 3454, + [3473] = 1397, + [3474] = 1398, + [3475] = 3405, + [3476] = 3269, + [3477] = 3253, + [3478] = 3414, + [3479] = 3479, + [3480] = 3479, + [3481] = 3481, + [3482] = 3482, + [3483] = 3464, + [3484] = 3282, + [3485] = 3271, + [3486] = 3398, + [3487] = 3405, + [3488] = 3424, + [3489] = 3412, + [3490] = 3293, + [3491] = 3294, + [3492] = 3298, + [3493] = 3398, + [3494] = 3405, + [3495] = 3299, + [3496] = 3496, + [3497] = 3432, + [3498] = 3413, + [3499] = 3436, [3500] = 3500, - [3501] = 3501, + [3501] = 3333, [3502] = 3502, - [3503] = 3503, - [3504] = 3504, - [3505] = 3505, - [3506] = 3506, - [3507] = 3507, - [3508] = 3508, - [3509] = 3509, - [3510] = 3510, - [3511] = 3511, - [3512] = 3512, - [3513] = 3513, - [3514] = 3509, - [3515] = 3515, - [3516] = 3516, - [3517] = 3517, + [3503] = 3306, + [3504] = 1583, + [3505] = 3414, + [3506] = 3482, + [3507] = 1584, + [3508] = 3253, + [3509] = 3414, + [3510] = 3263, + [3511] = 3283, + [3512] = 3270, + [3513] = 3496, + [3514] = 3351, + [3515] = 3283, + [3516] = 3425, + [3517] = 3291, [3518] = 3518, [3519] = 3519, - [3520] = 3520, - [3521] = 3521, - [3522] = 3522, - [3523] = 3523, + [3520] = 3326, + [3521] = 3460, + [3522] = 3323, + [3523] = 3438, [3524] = 3524, - [3525] = 3525, - [3526] = 3526, - [3527] = 3527, - [3528] = 3498, + [3525] = 3276, + [3526] = 3304, + [3527] = 3440, + [3528] = 3305, [3529] = 3529, [3530] = 3530, - [3531] = 3522, - [3532] = 3516, - [3533] = 3523, - [3534] = 3534, - [3535] = 3535, - [3536] = 3536, - [3537] = 3537, - [3538] = 3502, - [3539] = 3539, - [3540] = 3540, - [3541] = 3541, + [3531] = 3340, + [3532] = 3333, + [3533] = 3432, + [3534] = 3242, + [3535] = 3440, + [3536] = 3242, + [3537] = 3440, + [3538] = 3345, + [3539] = 3243, + [3540] = 3418, + [3541] = 3345, [3542] = 3542, - [3543] = 3543, - [3544] = 3544, - [3545] = 3545, - [3546] = 3546, - [3547] = 3547, - [3548] = 3548, - [3549] = 3549, + [3543] = 3266, + [3544] = 3404, + [3545] = 3287, + [3546] = 3277, + [3547] = 3303, + [3548] = 3427, + [3549] = 3352, [3550] = 3550, - [3551] = 3501, + [3551] = 3551, [3552] = 3552, [3553] = 3553, - [3554] = 3507, - [3555] = 3510, - [3556] = 3518, - [3557] = 3547, - [3558] = 3519, + [3554] = 3554, + [3555] = 3555, + [3556] = 3556, + [3557] = 3557, + [3558] = 3558, [3559] = 3559, [3560] = 3560, [3561] = 3561, [3562] = 3562, - [3563] = 3525, - [3564] = 3512, + [3563] = 3563, + [3564] = 3564, [3565] = 3565, - [3566] = 3552, + [3566] = 3566, [3567] = 3567, [3568] = 3568, [3569] = 3569, @@ -7585,253 +7650,444 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3573] = 3573, [3574] = 3574, [3575] = 3575, - [3576] = 3511, + [3576] = 3576, [3577] = 3577, - [3578] = 3572, + [3578] = 3578, [3579] = 3579, - [3580] = 3571, + [3580] = 3579, [3581] = 3581, [3582] = 3582, [3583] = 3583, [3584] = 3584, - [3585] = 3500, - [3586] = 3586, - [3587] = 3568, - [3588] = 3570, + [3585] = 362, + [3586] = 3563, + [3587] = 3587, + [3588] = 3588, [3589] = 3589, - [3590] = 3590, + [3590] = 3561, [3591] = 3591, - [3592] = 3539, + [3592] = 3592, [3593] = 3593, - [3594] = 3594, + [3594] = 3561, [3595] = 3595, [3596] = 3596, - [3597] = 3594, + [3597] = 3597, [3598] = 3598, [3599] = 3599, [3600] = 3600, - [3601] = 3527, - [3602] = 3547, + [3601] = 3601, + [3602] = 3561, [3603] = 3603, - [3604] = 3511, - [3605] = 3605, - [3606] = 3510, - [3607] = 3607, - [3608] = 3596, + [3604] = 3604, + [3605] = 3589, + [3606] = 3595, + [3607] = 3573, + [3608] = 3608, [3609] = 3609, - [3610] = 3513, - [3611] = 3517, - [3612] = 3498, + [3610] = 3610, + [3611] = 3611, + [3612] = 3612, [3613] = 3613, - [3614] = 3614, + [3614] = 3581, [3615] = 3615, [3616] = 3616, - [3617] = 3589, + [3617] = 3617, [3618] = 3618, - [3619] = 3619, - [3620] = 3512, + [3619] = 3569, + [3620] = 3620, [3621] = 3621, [3622] = 3622, - [3623] = 3530, - [3624] = 3614, - [3625] = 3625, - [3626] = 3536, - [3627] = 3590, - [3628] = 3628, + [3623] = 3623, + [3624] = 3624, + [3625] = 3555, + [3626] = 3626, + [3627] = 3627, + [3628] = 3600, [3629] = 3629, - [3630] = 3579, - [3631] = 3504, + [3630] = 3575, + [3631] = 3582, [3632] = 3632, [3633] = 3633, - [3634] = 3575, - [3635] = 3507, - [3636] = 3636, - [3637] = 3637, - [3638] = 3638, - [3639] = 3632, + [3634] = 3634, + [3635] = 3561, + [3636] = 3570, + [3637] = 3616, + [3638] = 3618, + [3639] = 3639, [3640] = 3640, - [3641] = 3583, + [3641] = 3591, [3642] = 3642, [3643] = 3643, - [3644] = 3500, - [3645] = 3547, + [3644] = 3644, + [3645] = 3645, [3646] = 3646, - [3647] = 3647, + [3647] = 360, [3648] = 3648, - [3649] = 3573, - [3650] = 3512, - [3651] = 3513, - [3652] = 3509, - [3653] = 3646, - [3654] = 3517, - [3655] = 3498, - [3656] = 3656, + [3649] = 3649, + [3650] = 3650, + [3651] = 3566, + [3652] = 3652, + [3653] = 3653, + [3654] = 3570, + [3655] = 3655, + [3656] = 3604, [3657] = 3657, - [3658] = 3582, - [3659] = 3573, - [3660] = 3536, - [3661] = 3661, + [3658] = 3644, + [3659] = 3659, + [3660] = 3574, + [3661] = 3643, [3662] = 3662, - [3663] = 3625, - [3664] = 3540, - [3665] = 3544, - [3666] = 3629, - [3667] = 3629, + [3663] = 3663, + [3664] = 3664, + [3665] = 3665, + [3666] = 3604, + [3667] = 3592, [3668] = 3668, - [3669] = 3549, - [3670] = 3633, + [3669] = 3573, + [3670] = 3550, [3671] = 3671, - [3672] = 3668, - [3673] = 3643, - [3674] = 3633, - [3675] = 3675, - [3676] = 3500, + [3672] = 3566, + [3673] = 3673, + [3674] = 3601, + [3675] = 3649, + [3676] = 3589, [3677] = 3677, - [3678] = 3513, - [3679] = 3517, - [3680] = 3668, + [3678] = 3678, + [3679] = 3650, + [3680] = 3680, [3681] = 3681, [3682] = 3682, - [3683] = 3546, - [3684] = 3625, - [3685] = 3633, - [3686] = 3643, + [3683] = 3578, + [3684] = 3684, + [3685] = 3685, + [3686] = 3680, [3687] = 3687, - [3688] = 3547, - [3689] = 3517, - [3690] = 3625, - [3691] = 3633, - [3692] = 3643, - [3693] = 3625, - [3694] = 3517, - [3695] = 3633, - [3696] = 3643, - [3697] = 3517, - [3698] = 3633, - [3699] = 3633, - [3700] = 3633, - [3701] = 3633, - [3702] = 3633, - [3703] = 174, - [3704] = 3704, - [3705] = 3600, - [3706] = 3562, - [3707] = 3574, - [3708] = 3708, - [3709] = 3535, - [3710] = 3710, - [3711] = 3711, + [3688] = 3612, + [3689] = 3689, + [3690] = 3690, + [3691] = 3691, + [3692] = 3550, + [3693] = 3693, + [3694] = 3572, + [3695] = 3695, + [3696] = 3696, + [3697] = 3562, + [3698] = 3663, + [3699] = 3569, + [3700] = 3689, + [3701] = 3593, + [3702] = 3664, + [3703] = 3617, + [3704] = 3657, + [3705] = 3615, + [3706] = 3706, + [3707] = 3583, + [3708] = 3681, + [3709] = 3570, + [3710] = 3571, + [3711] = 3572, [3712] = 3712, - [3713] = 3603, - [3714] = 3621, + [3713] = 3575, + [3714] = 3714, [3715] = 3715, - [3716] = 3542, - [3717] = 3586, - [3718] = 3715, - [3719] = 3497, - [3720] = 3657, - [3721] = 3721, - [3722] = 3722, - [3723] = 3499, + [3716] = 3716, + [3717] = 3717, + [3718] = 3718, + [3719] = 3719, + [3720] = 3720, + [3721] = 3604, + [3722] = 3578, + [3723] = 3723, [3724] = 3724, - [3725] = 3710, - [3726] = 3598, - [3727] = 3511, + [3725] = 3609, + [3726] = 3612, + [3727] = 3706, [3728] = 3728, - [3729] = 3628, + [3729] = 3729, [3730] = 3730, - [3731] = 3511, - [3732] = 3629, - [3733] = 3733, - [3734] = 3733, - [3735] = 3569, - [3736] = 3643, - [3737] = 3625, - [3738] = 3738, + [3731] = 3731, + [3732] = 3664, + [3733] = 3714, + [3734] = 3734, + [3735] = 3735, + [3736] = 3626, + [3737] = 3571, + [3738] = 3575, [3739] = 3739, - [3740] = 3739, + [3740] = 3740, [3741] = 3741, - [3742] = 3547, - [3743] = 3613, - [3744] = 3521, - [3745] = 3545, - [3746] = 3746, - [3747] = 3541, - [3748] = 3638, - [3749] = 3618, - [3750] = 3750, - [3751] = 3738, - [3752] = 3633, - [3753] = 3599, - [3754] = 3682, - [3755] = 3755, - [3756] = 3508, - [3757] = 3724, - [3758] = 3640, + [3742] = 3742, + [3743] = 3685, + [3744] = 3578, + [3745] = 3550, + [3746] = 3664, + [3747] = 3747, + [3748] = 3599, + [3749] = 3575, + [3750] = 3578, + [3751] = 3550, + [3752] = 3664, + [3753] = 3753, + [3754] = 3575, + [3755] = 3550, + [3756] = 3664, + [3757] = 3575, + [3758] = 3550, [3759] = 3550, - [3760] = 3648, - [3761] = 3761, - [3762] = 3762, + [3760] = 3550, + [3761] = 3550, + [3762] = 3550, [3763] = 3763, - [3764] = 3656, - [3765] = 3577, - [3766] = 3632, - [3767] = 3562, - [3768] = 3574, - [3769] = 3603, - [3770] = 3621, - [3771] = 3579, - [3772] = 3583, - [3773] = 3562, - [3774] = 3621, - [3775] = 3522, - [3776] = 3668, - [3777] = 3621, - [3778] = 3621, - [3779] = 3621, - [3780] = 3643, - [3781] = 3559, - [3782] = 3520, - [3783] = 3546, - [3784] = 171, - [3785] = 3785, - [3786] = 3712, - [3787] = 3511, - [3788] = 3637, - [3789] = 3789, - [3790] = 3507, - [3791] = 3537, - [3792] = 3675, - [3793] = 3755, + [3764] = 3599, + [3765] = 3718, + [3766] = 3609, + [3767] = 3677, + [3768] = 3627, + [3769] = 3559, + [3770] = 3578, + [3771] = 3747, + [3772] = 3772, + [3773] = 3693, + [3774] = 3690, + [3775] = 3775, + [3776] = 3577, + [3777] = 3611, + [3778] = 3728, + [3779] = 3645, + [3780] = 3741, + [3781] = 3662, + [3782] = 3782, + [3783] = 3665, + [3784] = 3784, + [3785] = 3678, + [3786] = 3691, + [3787] = 3787, + [3788] = 3551, + [3789] = 3609, + [3790] = 3787, + [3791] = 3739, + [3792] = 3604, + [3793] = 3566, [3794] = 3794, - [3795] = 3721, - [3796] = 3561, + [3795] = 3610, + [3796] = 3687, [3797] = 3797, - [3798] = 3593, - [3799] = 3799, - [3800] = 3646, - [3801] = 3565, - [3802] = 3628, - [3803] = 3560, - [3804] = 3797, + [3798] = 3612, + [3799] = 3565, + [3800] = 3800, + [3801] = 3775, + [3802] = 3717, + [3803] = 3561, + [3804] = 3804, [3805] = 3805, [3806] = 3806, - [3807] = 3728, - [3808] = 3505, - [3809] = 3622, - [3810] = 3619, - [3811] = 3805, - [3812] = 3583, - [3813] = 3522, - [3814] = 3509, - [3815] = 3799, - [3816] = 3816, + [3807] = 3720, + [3808] = 3772, + [3809] = 3655, + [3810] = 3622, + [3811] = 3596, + [3812] = 3623, + [3813] = 3813, + [3814] = 3794, + [3815] = 3603, + [3816] = 3550, [3817] = 3817, - [3818] = 3818, - [3819] = 3819, - [3820] = 3820, - [3821] = 3821, - [3822] = 3822, + [3818] = 3741, + [3819] = 3588, + [3820] = 3555, + [3821] = 3730, + [3822] = 3659, + [3823] = 3571, + [3824] = 3817, + [3825] = 3584, + [3826] = 3677, + [3827] = 3627, + [3828] = 3690, + [3829] = 3775, + [3830] = 3663, + [3831] = 3555, + [3832] = 3677, + [3833] = 3627, + [3834] = 3775, + [3835] = 3689, + [3836] = 3601, + [3837] = 3627, + [3838] = 3775, + [3839] = 3627, + [3840] = 3775, + [3841] = 3775, + [3842] = 3842, + [3843] = 3806, + [3844] = 3604, + [3845] = 3714, + [3846] = 3569, + [3847] = 3664, + [3848] = 3848, + [3849] = 3813, + [3850] = 3587, + [3851] = 3851, + [3852] = 3741, + [3853] = 3853, + [3854] = 3642, + [3855] = 3687, + [3856] = 3597, + [3857] = 3552, + [3858] = 3567, + [3859] = 3753, + [3860] = 3601, + [3861] = 3861, + [3862] = 3729, + [3863] = 3716, + [3864] = 3553, + [3865] = 3753, + [3866] = 3648, + [3867] = 3668, + [3868] = 3868, + [3869] = 3632, + [3870] = 3682, + [3871] = 3719, + [3872] = 3615, + [3873] = 3853, + [3874] = 3689, + [3875] = 3554, + [3876] = 3572, + [3877] = 3800, + [3878] = 3878, + [3879] = 3879, + [3880] = 3880, + [3881] = 3881, + [3882] = 3882, + [3883] = 3883, + [3884] = 3884, +}; + +static const TSSymbol ts_supertype_symbols[SUPERTYPE_COUNT] = { + sym__expression, + sym__literal, + sym__literal_pattern, + sym__pattern, + sym__type, +}; + +static const TSMapSlice ts_supertype_map_slices[] = { + [sym__expression] = {.index = 0, .length = 41}, + [sym__literal] = {.index = 41, .length = 6}, + [sym__literal_pattern] = {.index = 47, .length = 7}, + [sym__pattern] = {.index = 54, .length = 18}, + [sym__type] = {.index = 72, .length = 33}, +}; + +static const TSSymbol ts_supertype_map_entries[] = { + [0] = + sym__literal, + sym_array_expression, + sym_assignment_expression, + sym_async_block, + sym_await_expression, + sym_binary_expression, + sym_block, + sym_break_expression, + sym_call_expression, + sym_closure_expression, + sym_compound_assignment_expr, + sym_const_block, + sym_continue_expression, + sym_expression_with_attribute, + sym_field_expression, + sym_for_expression, + sym_gen_block, + sym_generic_function, + sym_identifier, + sym_if_expression, + sym_index_expression, + sym_loop_expression, + sym_macro_invocation, + sym_match_expression, + sym_metavariable, + sym_parenthesized_expression, + sym_range_expression, + sym_reference_expression, + sym_return_expression, + sym_scoped_identifier, + sym_self, + sym_struct_expression, + sym_try_block, + sym_try_expression, + sym_tuple_expression, + sym_type_cast_expression, + sym_unary_expression, + sym_unit_expression, + sym_unsafe_block, + sym_while_expression, + sym_yield_expression, + [41] = + sym_boolean_literal, + sym_char_literal, + sym_float_literal, + sym_integer_literal, + sym_raw_string_literal, + sym_string_literal, + [47] = + sym_boolean_literal, + sym_char_literal, + sym_float_literal, + sym_integer_literal, + sym_negative_literal, + sym_raw_string_literal, + sym_string_literal, + [54] = + anon_sym__, + sym__literal_pattern, + sym_captured_pattern, + sym_const_block, + sym_generic_pattern, + sym_identifier, + sym_macro_invocation, + sym_mut_pattern, + sym_or_pattern, + sym_range_pattern, + sym_ref_pattern, + sym_reference_pattern, + sym_remaining_field_pattern, + sym_scoped_identifier, + sym_slice_pattern, + sym_struct_pattern, + sym_tuple_pattern, + sym_tuple_struct_pattern, + [72] = + alias_sym_type_identifier, + anon_sym_bool, + anon_sym_char, + anon_sym_f32, + anon_sym_f64, + anon_sym_i128, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i8, + anon_sym_isize, + anon_sym_str, + anon_sym_u128, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u8, + anon_sym_usize, + sym_abstract_type, + sym_array_type, + sym_bounded_type, + sym_dynamic_type, + sym_function_type, + sym_generic_type, + sym_macro_invocation, + sym_metavariable, + sym_never_type, + sym_pointer_type, + sym_reference_type, + sym_removed_trait_bound, + sym_scoped_type_identifier, + sym_tuple_type, + sym_unit_type, }; static const TSCharacterRange sym_identifier_character_set_1[] = { @@ -8175,35 +8431,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '!', 104, '"', 158, '#', 144, - '$', 86, + '$', 68, '%', 101, '&', 106, '\'', 147, '(', 77, - ')', 78, '*', 94, '+', 92, - ',', 141, - '-', 98, + '-', 97, '.', 135, '/', 100, '0', 153, ':', 85, - ';', 75, '<', 131, '=', 125, '>', 129, '?', 95, - '@', 134, '[', 79, - ']', 80, '^', 102, 'b', 180, 'c', 181, 'r', 182, '{', 81, '|', 108, - '}', 82, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(6); @@ -8214,29 +8464,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( '!', 104, '"', 158, - '$', 68, + '#', 144, + '$', 86, '%', 101, '&', 106, '\'', 147, '(', 77, + ')', 78, '*', 94, '+', 92, - '-', 97, + ',', 141, + '-', 98, '.', 135, '/', 100, '0', 153, ':', 85, + ';', 75, '<', 131, '=', 125, '>', 129, '?', 95, + '@', 134, '[', 79, + ']', 80, '^', 102, 'b', 180, 'c', 181, 'r', 182, '{', 81, '|', 108, + '}', 82, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(7); @@ -8465,6 +8722,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( '!', 103, '"', 158, + '#', 144, '$', 68, '&', 105, '\'', 147, @@ -8496,6 +8754,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( '!', 103, '"', 158, + '#', 144, '$', 68, '&', 105, '\'', 147, @@ -10482,7 +10741,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { } } -static const TSLexMode ts_lex_modes[STATE_COUNT] = { +static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, [1] = {.lex_state = 72, .external_lex_state = 2}, [2] = {.lex_state = 73, .external_lex_state = 2}, @@ -10518,27 +10777,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [32] = {.lex_state = 73, .external_lex_state = 2}, [33] = {.lex_state = 73, .external_lex_state = 2}, [34] = {.lex_state = 73, .external_lex_state = 2}, - [35] = {.lex_state = 5, .external_lex_state = 2}, - [36] = {.lex_state = 5, .external_lex_state = 2}, - [37] = {.lex_state = 5, .external_lex_state = 2}, + [35] = {.lex_state = 73, .external_lex_state = 2}, + [36] = {.lex_state = 73, .external_lex_state = 2}, + [37] = {.lex_state = 73, .external_lex_state = 2}, [38] = {.lex_state = 5, .external_lex_state = 2}, [39] = {.lex_state = 5, .external_lex_state = 2}, [40] = {.lex_state = 5, .external_lex_state = 2}, [41] = {.lex_state = 5, .external_lex_state = 2}, [42] = {.lex_state = 5, .external_lex_state = 2}, - [43] = {.lex_state = 7, .external_lex_state = 2}, - [44] = {.lex_state = 7, .external_lex_state = 2}, - [45] = {.lex_state = 7, .external_lex_state = 2}, - [46] = {.lex_state = 7, .external_lex_state = 2}, - [47] = {.lex_state = 7, .external_lex_state = 2}, - [48] = {.lex_state = 7, .external_lex_state = 2}, - [49] = {.lex_state = 7, .external_lex_state = 2}, - [50] = {.lex_state = 7, .external_lex_state = 2}, - [51] = {.lex_state = 5, .external_lex_state = 2}, - [52] = {.lex_state = 5, .external_lex_state = 2}, - [53] = {.lex_state = 5, .external_lex_state = 2}, - [54] = {.lex_state = 5, .external_lex_state = 2}, - [55] = {.lex_state = 5, .external_lex_state = 2}, + [43] = {.lex_state = 5, .external_lex_state = 2}, + [44] = {.lex_state = 5, .external_lex_state = 2}, + [45] = {.lex_state = 5, .external_lex_state = 2}, + [46] = {.lex_state = 6, .external_lex_state = 2}, + [47] = {.lex_state = 6, .external_lex_state = 2}, + [48] = {.lex_state = 6, .external_lex_state = 2}, + [49] = {.lex_state = 5, .external_lex_state = 2}, + [50] = {.lex_state = 5, .external_lex_state = 2}, + [51] = {.lex_state = 6, .external_lex_state = 2}, + [52] = {.lex_state = 6, .external_lex_state = 2}, + [53] = {.lex_state = 6, .external_lex_state = 2}, + [54] = {.lex_state = 6, .external_lex_state = 2}, + [55] = {.lex_state = 6, .external_lex_state = 2}, [56] = {.lex_state = 5, .external_lex_state = 2}, [57] = {.lex_state = 5, .external_lex_state = 2}, [58] = {.lex_state = 5, .external_lex_state = 2}, @@ -10550,11 +10809,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [64] = {.lex_state = 5, .external_lex_state = 2}, [65] = {.lex_state = 5, .external_lex_state = 2}, [66] = {.lex_state = 5, .external_lex_state = 2}, - [67] = {.lex_state = 4, .external_lex_state = 2}, - [68] = {.lex_state = 4, .external_lex_state = 2}, - [69] = {.lex_state = 4, .external_lex_state = 2}, + [67] = {.lex_state = 5, .external_lex_state = 2}, + [68] = {.lex_state = 5, .external_lex_state = 2}, + [69] = {.lex_state = 5, .external_lex_state = 2}, [70] = {.lex_state = 4, .external_lex_state = 2}, - [71] = {.lex_state = 4, .external_lex_state = 2}, + [71] = {.lex_state = 7, .external_lex_state = 2}, [72] = {.lex_state = 4, .external_lex_state = 2}, [73] = {.lex_state = 4, .external_lex_state = 2}, [74] = {.lex_state = 4, .external_lex_state = 2}, @@ -10566,190 +10825,190 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [80] = {.lex_state = 4, .external_lex_state = 2}, [81] = {.lex_state = 4, .external_lex_state = 2}, [82] = {.lex_state = 4, .external_lex_state = 2}, - [83] = {.lex_state = 6, .external_lex_state = 2}, - [84] = {.lex_state = 6, .external_lex_state = 2}, + [83] = {.lex_state = 4, .external_lex_state = 2}, + [84] = {.lex_state = 4, .external_lex_state = 2}, [85] = {.lex_state = 4, .external_lex_state = 2}, [86] = {.lex_state = 4, .external_lex_state = 2}, - [87] = {.lex_state = 6, .external_lex_state = 2}, - [88] = {.lex_state = 6, .external_lex_state = 2}, - [89] = {.lex_state = 6, .external_lex_state = 2}, - [90] = {.lex_state = 6, .external_lex_state = 2}, - [91] = {.lex_state = 6, .external_lex_state = 2}, - [92] = {.lex_state = 6, .external_lex_state = 2}, - [93] = {.lex_state = 6, .external_lex_state = 2}, - [94] = {.lex_state = 6, .external_lex_state = 2}, - [95] = {.lex_state = 6, .external_lex_state = 2}, - [96] = {.lex_state = 6, .external_lex_state = 2}, - [97] = {.lex_state = 6, .external_lex_state = 2}, - [98] = {.lex_state = 6, .external_lex_state = 2}, - [99] = {.lex_state = 4, .external_lex_state = 2}, - [100] = {.lex_state = 4, .external_lex_state = 2}, - [101] = {.lex_state = 4, .external_lex_state = 2}, + [87] = {.lex_state = 7, .external_lex_state = 2}, + [88] = {.lex_state = 4, .external_lex_state = 2}, + [89] = {.lex_state = 4, .external_lex_state = 2}, + [90] = {.lex_state = 4, .external_lex_state = 2}, + [91] = {.lex_state = 4, .external_lex_state = 2}, + [92] = {.lex_state = 4, .external_lex_state = 2}, + [93] = {.lex_state = 4, .external_lex_state = 2}, + [94] = {.lex_state = 13, .external_lex_state = 2}, + [95] = {.lex_state = 13, .external_lex_state = 2}, + [96] = {.lex_state = 7, .external_lex_state = 2}, + [97] = {.lex_state = 7, .external_lex_state = 2}, + [98] = {.lex_state = 7, .external_lex_state = 2}, + [99] = {.lex_state = 7, .external_lex_state = 2}, + [100] = {.lex_state = 7, .external_lex_state = 2}, + [101] = {.lex_state = 13, .external_lex_state = 2}, [102] = {.lex_state = 4, .external_lex_state = 2}, [103] = {.lex_state = 4, .external_lex_state = 2}, [104] = {.lex_state = 4, .external_lex_state = 2}, - [105] = {.lex_state = 6, .external_lex_state = 2}, - [106] = {.lex_state = 6, .external_lex_state = 2}, - [107] = {.lex_state = 6, .external_lex_state = 2}, - [108] = {.lex_state = 4, .external_lex_state = 2}, - [109] = {.lex_state = 6, .external_lex_state = 2}, - [110] = {.lex_state = 6, .external_lex_state = 2}, - [111] = {.lex_state = 6, .external_lex_state = 2}, - [112] = {.lex_state = 6, .external_lex_state = 2}, - [113] = {.lex_state = 6, .external_lex_state = 2}, - [114] = {.lex_state = 6, .external_lex_state = 2}, - [115] = {.lex_state = 6, .external_lex_state = 2}, - [116] = {.lex_state = 6, .external_lex_state = 2}, - [117] = {.lex_state = 4, .external_lex_state = 2}, - [118] = {.lex_state = 4, .external_lex_state = 2}, - [119] = {.lex_state = 6, .external_lex_state = 2}, - [120] = {.lex_state = 6, .external_lex_state = 2}, - [121] = {.lex_state = 6, .external_lex_state = 2}, - [122] = {.lex_state = 4, .external_lex_state = 2}, - [123] = {.lex_state = 6, .external_lex_state = 2}, - [124] = {.lex_state = 6, .external_lex_state = 2}, - [125] = {.lex_state = 6, .external_lex_state = 2}, - [126] = {.lex_state = 6, .external_lex_state = 2}, - [127] = {.lex_state = 6, .external_lex_state = 2}, - [128] = {.lex_state = 6, .external_lex_state = 2}, - [129] = {.lex_state = 6, .external_lex_state = 2}, - [130] = {.lex_state = 6, .external_lex_state = 2}, - [131] = {.lex_state = 4, .external_lex_state = 2}, - [132] = {.lex_state = 4, .external_lex_state = 2}, - [133] = {.lex_state = 6, .external_lex_state = 2}, - [134] = {.lex_state = 13, .external_lex_state = 2}, - [135] = {.lex_state = 13, .external_lex_state = 2}, - [136] = {.lex_state = 13, .external_lex_state = 2}, - [137] = {.lex_state = 13, .external_lex_state = 2}, - [138] = {.lex_state = 13, .external_lex_state = 2}, - [139] = {.lex_state = 13, .external_lex_state = 2}, + [105] = {.lex_state = 4, .external_lex_state = 2}, + [106] = {.lex_state = 4, .external_lex_state = 2}, + [107] = {.lex_state = 4, .external_lex_state = 2}, + [108] = {.lex_state = 7, .external_lex_state = 2}, + [109] = {.lex_state = 7, .external_lex_state = 2}, + [110] = {.lex_state = 7, .external_lex_state = 2}, + [111] = {.lex_state = 7, .external_lex_state = 2}, + [112] = {.lex_state = 7, .external_lex_state = 2}, + [113] = {.lex_state = 7, .external_lex_state = 2}, + [114] = {.lex_state = 7, .external_lex_state = 2}, + [115] = {.lex_state = 7, .external_lex_state = 2}, + [116] = {.lex_state = 7, .external_lex_state = 2}, + [117] = {.lex_state = 13, .external_lex_state = 2}, + [118] = {.lex_state = 7, .external_lex_state = 2}, + [119] = {.lex_state = 7, .external_lex_state = 2}, + [120] = {.lex_state = 7, .external_lex_state = 2}, + [121] = {.lex_state = 13, .external_lex_state = 2}, + [122] = {.lex_state = 7, .external_lex_state = 2}, + [123] = {.lex_state = 7, .external_lex_state = 2}, + [124] = {.lex_state = 7, .external_lex_state = 2}, + [125] = {.lex_state = 7, .external_lex_state = 2}, + [126] = {.lex_state = 7, .external_lex_state = 2}, + [127] = {.lex_state = 7, .external_lex_state = 2}, + [128] = {.lex_state = 7, .external_lex_state = 2}, + [129] = {.lex_state = 7, .external_lex_state = 2}, + [130] = {.lex_state = 7, .external_lex_state = 2}, + [131] = {.lex_state = 7, .external_lex_state = 2}, + [132] = {.lex_state = 7, .external_lex_state = 2}, + [133] = {.lex_state = 7, .external_lex_state = 2}, + [134] = {.lex_state = 7, .external_lex_state = 2}, + [135] = {.lex_state = 7, .external_lex_state = 2}, + [136] = {.lex_state = 7, .external_lex_state = 2}, + [137] = {.lex_state = 7, .external_lex_state = 2}, + [138] = {.lex_state = 7, .external_lex_state = 2}, + [139] = {.lex_state = 7, .external_lex_state = 2}, [140] = {.lex_state = 4, .external_lex_state = 2}, [141] = {.lex_state = 13, .external_lex_state = 2}, - [142] = {.lex_state = 4, .external_lex_state = 2}, + [142] = {.lex_state = 13, .external_lex_state = 2}, [143] = {.lex_state = 13, .external_lex_state = 2}, - [144] = {.lex_state = 4, .external_lex_state = 2}, + [144] = {.lex_state = 13, .external_lex_state = 2}, [145] = {.lex_state = 13, .external_lex_state = 2}, [146] = {.lex_state = 13, .external_lex_state = 2}, - [147] = {.lex_state = 6, .external_lex_state = 2}, - [148] = {.lex_state = 4, .external_lex_state = 2}, + [147] = {.lex_state = 13, .external_lex_state = 2}, + [148] = {.lex_state = 13, .external_lex_state = 2}, [149] = {.lex_state = 4, .external_lex_state = 2}, - [150] = {.lex_state = 4, .external_lex_state = 2}, + [150] = {.lex_state = 13, .external_lex_state = 2}, [151] = {.lex_state = 13, .external_lex_state = 2}, - [152] = {.lex_state = 13, .external_lex_state = 2}, - [153] = {.lex_state = 13, .external_lex_state = 2}, - [154] = {.lex_state = 4, .external_lex_state = 2}, - [155] = {.lex_state = 4, .external_lex_state = 2}, - [156] = {.lex_state = 4, .external_lex_state = 2}, - [157] = {.lex_state = 13, .external_lex_state = 2}, - [158] = {.lex_state = 4, .external_lex_state = 2}, - [159] = {.lex_state = 4, .external_lex_state = 2}, - [160] = {.lex_state = 4, .external_lex_state = 2}, - [161] = {.lex_state = 4, .external_lex_state = 2}, - [162] = {.lex_state = 13, .external_lex_state = 2}, - [163] = {.lex_state = 4, .external_lex_state = 2}, + [152] = {.lex_state = 15, .external_lex_state = 2}, + [153] = {.lex_state = 15, .external_lex_state = 2}, + [154] = {.lex_state = 15, .external_lex_state = 2}, + [155] = {.lex_state = 15, .external_lex_state = 2}, + [156] = {.lex_state = 13, .external_lex_state = 2}, + [157] = {.lex_state = 15, .external_lex_state = 2}, + [158] = {.lex_state = 15, .external_lex_state = 2}, + [159] = {.lex_state = 13, .external_lex_state = 2}, + [160] = {.lex_state = 13, .external_lex_state = 2}, + [161] = {.lex_state = 15, .external_lex_state = 2}, + [162] = {.lex_state = 15, .external_lex_state = 2}, + [163] = {.lex_state = 15, .external_lex_state = 2}, [164] = {.lex_state = 13, .external_lex_state = 2}, [165] = {.lex_state = 13, .external_lex_state = 2}, [166] = {.lex_state = 13, .external_lex_state = 2}, [167] = {.lex_state = 13, .external_lex_state = 2}, [168] = {.lex_state = 13, .external_lex_state = 2}, - [169] = {.lex_state = 4, .external_lex_state = 2}, - [170] = {.lex_state = 6, .external_lex_state = 2}, - [171] = {.lex_state = 4, .external_lex_state = 2}, + [169] = {.lex_state = 13, .external_lex_state = 2}, + [170] = {.lex_state = 13, .external_lex_state = 2}, + [171] = {.lex_state = 15, .external_lex_state = 2}, [172] = {.lex_state = 13, .external_lex_state = 2}, - [173] = {.lex_state = 13, .external_lex_state = 2}, - [174] = {.lex_state = 4, .external_lex_state = 2}, - [175] = {.lex_state = 4, .external_lex_state = 2}, - [176] = {.lex_state = 4, .external_lex_state = 2}, + [173] = {.lex_state = 15, .external_lex_state = 2}, + [174] = {.lex_state = 13, .external_lex_state = 2}, + [175] = {.lex_state = 13, .external_lex_state = 2}, + [176] = {.lex_state = 13, .external_lex_state = 2}, [177] = {.lex_state = 13, .external_lex_state = 2}, - [178] = {.lex_state = 13, .external_lex_state = 2}, + [178] = {.lex_state = 15, .external_lex_state = 2}, [179] = {.lex_state = 13, .external_lex_state = 2}, - [180] = {.lex_state = 4, .external_lex_state = 2}, + [180] = {.lex_state = 15, .external_lex_state = 2}, [181] = {.lex_state = 13, .external_lex_state = 2}, - [182] = {.lex_state = 13, .external_lex_state = 2}, - [183] = {.lex_state = 4, .external_lex_state = 2}, + [182] = {.lex_state = 15, .external_lex_state = 2}, + [183] = {.lex_state = 15, .external_lex_state = 2}, [184] = {.lex_state = 13, .external_lex_state = 2}, - [185] = {.lex_state = 4, .external_lex_state = 2}, - [186] = {.lex_state = 4, .external_lex_state = 2}, - [187] = {.lex_state = 4, .external_lex_state = 2}, - [188] = {.lex_state = 13, .external_lex_state = 2}, - [189] = {.lex_state = 13, .external_lex_state = 2}, - [190] = {.lex_state = 13, .external_lex_state = 2}, - [191] = {.lex_state = 13, .external_lex_state = 2}, + [185] = {.lex_state = 13, .external_lex_state = 2}, + [186] = {.lex_state = 15, .external_lex_state = 2}, + [187] = {.lex_state = 13, .external_lex_state = 2}, + [188] = {.lex_state = 15, .external_lex_state = 2}, + [189] = {.lex_state = 15, .external_lex_state = 2}, + [190] = {.lex_state = 15, .external_lex_state = 2}, + [191] = {.lex_state = 15, .external_lex_state = 2}, [192] = {.lex_state = 13, .external_lex_state = 2}, [193] = {.lex_state = 13, .external_lex_state = 2}, [194] = {.lex_state = 13, .external_lex_state = 2}, [195] = {.lex_state = 13, .external_lex_state = 2}, [196] = {.lex_state = 13, .external_lex_state = 2}, - [197] = {.lex_state = 4, .external_lex_state = 2}, - [198] = {.lex_state = 6, .external_lex_state = 2}, + [197] = {.lex_state = 13, .external_lex_state = 2}, + [198] = {.lex_state = 13, .external_lex_state = 2}, [199] = {.lex_state = 13, .external_lex_state = 2}, - [200] = {.lex_state = 6, .external_lex_state = 2}, + [200] = {.lex_state = 13, .external_lex_state = 2}, [201] = {.lex_state = 13, .external_lex_state = 2}, - [202] = {.lex_state = 6, .external_lex_state = 2}, - [203] = {.lex_state = 6, .external_lex_state = 2}, - [204] = {.lex_state = 6, .external_lex_state = 2}, - [205] = {.lex_state = 6, .external_lex_state = 2}, - [206] = {.lex_state = 6, .external_lex_state = 2}, - [207] = {.lex_state = 6, .external_lex_state = 2}, - [208] = {.lex_state = 6, .external_lex_state = 2}, + [202] = {.lex_state = 13, .external_lex_state = 2}, + [203] = {.lex_state = 13, .external_lex_state = 2}, + [204] = {.lex_state = 13, .external_lex_state = 2}, + [205] = {.lex_state = 13, .external_lex_state = 2}, + [206] = {.lex_state = 13, .external_lex_state = 2}, + [207] = {.lex_state = 13, .external_lex_state = 2}, + [208] = {.lex_state = 13, .external_lex_state = 2}, [209] = {.lex_state = 13, .external_lex_state = 2}, - [210] = {.lex_state = 6, .external_lex_state = 2}, + [210] = {.lex_state = 13, .external_lex_state = 2}, [211] = {.lex_state = 13, .external_lex_state = 2}, - [212] = {.lex_state = 6, .external_lex_state = 2}, + [212] = {.lex_state = 13, .external_lex_state = 2}, [213] = {.lex_state = 13, .external_lex_state = 2}, [214] = {.lex_state = 13, .external_lex_state = 2}, - [215] = {.lex_state = 15, .external_lex_state = 2}, + [215] = {.lex_state = 13, .external_lex_state = 2}, [216] = {.lex_state = 13, .external_lex_state = 2}, - [217] = {.lex_state = 15, .external_lex_state = 2}, + [217] = {.lex_state = 13, .external_lex_state = 2}, [218] = {.lex_state = 13, .external_lex_state = 2}, - [219] = {.lex_state = 15, .external_lex_state = 2}, - [220] = {.lex_state = 15, .external_lex_state = 2}, + [219] = {.lex_state = 13, .external_lex_state = 2}, + [220] = {.lex_state = 13, .external_lex_state = 2}, [221] = {.lex_state = 13, .external_lex_state = 2}, [222] = {.lex_state = 13, .external_lex_state = 2}, [223] = {.lex_state = 13, .external_lex_state = 2}, - [224] = {.lex_state = 15, .external_lex_state = 2}, + [224] = {.lex_state = 13, .external_lex_state = 2}, [225] = {.lex_state = 13, .external_lex_state = 2}, - [226] = {.lex_state = 15, .external_lex_state = 2}, + [226] = {.lex_state = 13, .external_lex_state = 2}, [227] = {.lex_state = 13, .external_lex_state = 2}, - [228] = {.lex_state = 15, .external_lex_state = 2}, - [229] = {.lex_state = 12, .external_lex_state = 2}, + [228] = {.lex_state = 13, .external_lex_state = 2}, + [229] = {.lex_state = 13, .external_lex_state = 2}, [230] = {.lex_state = 13, .external_lex_state = 2}, - [231] = {.lex_state = 12, .external_lex_state = 2}, - [232] = {.lex_state = 15, .external_lex_state = 2}, - [233] = {.lex_state = 15, .external_lex_state = 2}, - [234] = {.lex_state = 15, .external_lex_state = 2}, - [235] = {.lex_state = 12, .external_lex_state = 2}, - [236] = {.lex_state = 15, .external_lex_state = 2}, - [237] = {.lex_state = 12, .external_lex_state = 2}, + [231] = {.lex_state = 13, .external_lex_state = 2}, + [232] = {.lex_state = 13, .external_lex_state = 2}, + [233] = {.lex_state = 13, .external_lex_state = 2}, + [234] = {.lex_state = 13, .external_lex_state = 2}, + [235] = {.lex_state = 13, .external_lex_state = 2}, + [236] = {.lex_state = 13, .external_lex_state = 2}, + [237] = {.lex_state = 13, .external_lex_state = 2}, [238] = {.lex_state = 13, .external_lex_state = 2}, [239] = {.lex_state = 13, .external_lex_state = 2}, [240] = {.lex_state = 13, .external_lex_state = 2}, [241] = {.lex_state = 13, .external_lex_state = 2}, - [242] = {.lex_state = 12, .external_lex_state = 2}, - [243] = {.lex_state = 15, .external_lex_state = 2}, - [244] = {.lex_state = 15, .external_lex_state = 2}, - [245] = {.lex_state = 15, .external_lex_state = 2}, + [242] = {.lex_state = 13, .external_lex_state = 2}, + [243] = {.lex_state = 13, .external_lex_state = 2}, + [244] = {.lex_state = 13, .external_lex_state = 2}, + [245] = {.lex_state = 13, .external_lex_state = 2}, [246] = {.lex_state = 13, .external_lex_state = 2}, - [247] = {.lex_state = 15, .external_lex_state = 2}, - [248] = {.lex_state = 15, .external_lex_state = 2}, - [249] = {.lex_state = 15, .external_lex_state = 2}, + [247] = {.lex_state = 13, .external_lex_state = 2}, + [248] = {.lex_state = 13, .external_lex_state = 2}, + [249] = {.lex_state = 13, .external_lex_state = 2}, [250] = {.lex_state = 13, .external_lex_state = 2}, - [251] = {.lex_state = 12, .external_lex_state = 2}, + [251] = {.lex_state = 13, .external_lex_state = 2}, [252] = {.lex_state = 13, .external_lex_state = 2}, [253] = {.lex_state = 13, .external_lex_state = 2}, - [254] = {.lex_state = 15, .external_lex_state = 2}, - [255] = {.lex_state = 15, .external_lex_state = 2}, - [256] = {.lex_state = 15, .external_lex_state = 2}, + [254] = {.lex_state = 13, .external_lex_state = 2}, + [255] = {.lex_state = 13, .external_lex_state = 2}, + [256] = {.lex_state = 13, .external_lex_state = 2}, [257] = {.lex_state = 13, .external_lex_state = 2}, - [258] = {.lex_state = 12, .external_lex_state = 2}, - [259] = {.lex_state = 12, .external_lex_state = 2}, - [260] = {.lex_state = 12, .external_lex_state = 2}, - [261] = {.lex_state = 12, .external_lex_state = 2}, - [262] = {.lex_state = 12, .external_lex_state = 2}, - [263] = {.lex_state = 12, .external_lex_state = 2}, - [264] = {.lex_state = 12, .external_lex_state = 2}, - [265] = {.lex_state = 12, .external_lex_state = 2}, - [266] = {.lex_state = 12, .external_lex_state = 2}, + [258] = {.lex_state = 13, .external_lex_state = 2}, + [259] = {.lex_state = 13, .external_lex_state = 2}, + [260] = {.lex_state = 13, .external_lex_state = 2}, + [261] = {.lex_state = 13, .external_lex_state = 2}, + [262] = {.lex_state = 13, .external_lex_state = 2}, + [263] = {.lex_state = 13, .external_lex_state = 2}, + [264] = {.lex_state = 13, .external_lex_state = 2}, + [265] = {.lex_state = 13, .external_lex_state = 2}, + [266] = {.lex_state = 13, .external_lex_state = 2}, [267] = {.lex_state = 13, .external_lex_state = 2}, [268] = {.lex_state = 13, .external_lex_state = 2}, [269] = {.lex_state = 13, .external_lex_state = 2}, @@ -10773,7 +11032,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [287] = {.lex_state = 13, .external_lex_state = 2}, [288] = {.lex_state = 13, .external_lex_state = 2}, [289] = {.lex_state = 13, .external_lex_state = 2}, - [290] = {.lex_state = 71, .external_lex_state = 2}, + [290] = {.lex_state = 13, .external_lex_state = 2}, [291] = {.lex_state = 13, .external_lex_state = 2}, [292] = {.lex_state = 13, .external_lex_state = 2}, [293] = {.lex_state = 13, .external_lex_state = 2}, @@ -10801,13 +11060,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [315] = {.lex_state = 13, .external_lex_state = 2}, [316] = {.lex_state = 13, .external_lex_state = 2}, [317] = {.lex_state = 13, .external_lex_state = 2}, - [318] = {.lex_state = 14, .external_lex_state = 2}, - [319] = {.lex_state = 12, .external_lex_state = 2}, + [318] = {.lex_state = 13, .external_lex_state = 2}, + [319] = {.lex_state = 13, .external_lex_state = 2}, [320] = {.lex_state = 13, .external_lex_state = 2}, [321] = {.lex_state = 13, .external_lex_state = 2}, [322] = {.lex_state = 13, .external_lex_state = 2}, [323] = {.lex_state = 13, .external_lex_state = 2}, - [324] = {.lex_state = 14, .external_lex_state = 2}, + [324] = {.lex_state = 13, .external_lex_state = 2}, [325] = {.lex_state = 13, .external_lex_state = 2}, [326] = {.lex_state = 13, .external_lex_state = 2}, [327] = {.lex_state = 13, .external_lex_state = 2}, @@ -10821,7 +11080,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [335] = {.lex_state = 13, .external_lex_state = 2}, [336] = {.lex_state = 13, .external_lex_state = 2}, [337] = {.lex_state = 13, .external_lex_state = 2}, - [338] = {.lex_state = 14, .external_lex_state = 2}, + [338] = {.lex_state = 13, .external_lex_state = 2}, [339] = {.lex_state = 13, .external_lex_state = 2}, [340] = {.lex_state = 13, .external_lex_state = 2}, [341] = {.lex_state = 13, .external_lex_state = 2}, @@ -10830,194 +11089,194 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [344] = {.lex_state = 13, .external_lex_state = 2}, [345] = {.lex_state = 13, .external_lex_state = 2}, [346] = {.lex_state = 13, .external_lex_state = 2}, - [347] = {.lex_state = 13, .external_lex_state = 2}, - [348] = {.lex_state = 13, .external_lex_state = 2}, - [349] = {.lex_state = 13, .external_lex_state = 2}, - [350] = {.lex_state = 13, .external_lex_state = 2}, - [351] = {.lex_state = 13, .external_lex_state = 2}, - [352] = {.lex_state = 13, .external_lex_state = 2}, - [353] = {.lex_state = 13, .external_lex_state = 2}, - [354] = {.lex_state = 13, .external_lex_state = 2}, - [355] = {.lex_state = 13, .external_lex_state = 2}, - [356] = {.lex_state = 13, .external_lex_state = 2}, - [357] = {.lex_state = 13, .external_lex_state = 2}, - [358] = {.lex_state = 13, .external_lex_state = 2}, - [359] = {.lex_state = 13, .external_lex_state = 2}, - [360] = {.lex_state = 13, .external_lex_state = 2}, - [361] = {.lex_state = 13, .external_lex_state = 2}, - [362] = {.lex_state = 13, .external_lex_state = 2}, - [363] = {.lex_state = 13, .external_lex_state = 2}, - [364] = {.lex_state = 13, .external_lex_state = 2}, - [365] = {.lex_state = 13, .external_lex_state = 2}, - [366] = {.lex_state = 13, .external_lex_state = 2}, - [367] = {.lex_state = 13, .external_lex_state = 2}, - [368] = {.lex_state = 13, .external_lex_state = 2}, - [369] = {.lex_state = 13, .external_lex_state = 2}, - [370] = {.lex_state = 13, .external_lex_state = 2}, - [371] = {.lex_state = 13, .external_lex_state = 2}, - [372] = {.lex_state = 13, .external_lex_state = 2}, - [373] = {.lex_state = 13, .external_lex_state = 2}, - [374] = {.lex_state = 13, .external_lex_state = 2}, - [375] = {.lex_state = 13, .external_lex_state = 2}, - [376] = {.lex_state = 13, .external_lex_state = 2}, - [377] = {.lex_state = 13, .external_lex_state = 2}, - [378] = {.lex_state = 13, .external_lex_state = 2}, - [379] = {.lex_state = 13, .external_lex_state = 2}, - [380] = {.lex_state = 13, .external_lex_state = 2}, - [381] = {.lex_state = 13, .external_lex_state = 2}, - [382] = {.lex_state = 13, .external_lex_state = 2}, - [383] = {.lex_state = 13, .external_lex_state = 2}, - [384] = {.lex_state = 13, .external_lex_state = 2}, - [385] = {.lex_state = 13, .external_lex_state = 2}, - [386] = {.lex_state = 13, .external_lex_state = 2}, - [387] = {.lex_state = 13, .external_lex_state = 2}, - [388] = {.lex_state = 13, .external_lex_state = 2}, - [389] = {.lex_state = 13, .external_lex_state = 2}, - [390] = {.lex_state = 13, .external_lex_state = 2}, - [391] = {.lex_state = 13, .external_lex_state = 2}, - [392] = {.lex_state = 13, .external_lex_state = 2}, - [393] = {.lex_state = 13, .external_lex_state = 2}, - [394] = {.lex_state = 71, .external_lex_state = 2}, - [395] = {.lex_state = 71, .external_lex_state = 2}, - [396] = {.lex_state = 71, .external_lex_state = 2}, - [397] = {.lex_state = 71, .external_lex_state = 2}, - [398] = {.lex_state = 71, .external_lex_state = 2}, - [399] = {.lex_state = 71, .external_lex_state = 2}, + [347] = {.lex_state = 4, .external_lex_state = 2}, + [348] = {.lex_state = 4, .external_lex_state = 2}, + [349] = {.lex_state = 4, .external_lex_state = 2}, + [350] = {.lex_state = 12, .external_lex_state = 2}, + [351] = {.lex_state = 4, .external_lex_state = 2}, + [352] = {.lex_state = 4, .external_lex_state = 2}, + [353] = {.lex_state = 4, .external_lex_state = 2}, + [354] = {.lex_state = 4, .external_lex_state = 2}, + [355] = {.lex_state = 4, .external_lex_state = 2}, + [356] = {.lex_state = 4, .external_lex_state = 2}, + [357] = {.lex_state = 4, .external_lex_state = 2}, + [358] = {.lex_state = 12, .external_lex_state = 2}, + [359] = {.lex_state = 4, .external_lex_state = 2}, + [360] = {.lex_state = 4, .external_lex_state = 2}, + [361] = {.lex_state = 4, .external_lex_state = 2}, + [362] = {.lex_state = 4, .external_lex_state = 2}, + [363] = {.lex_state = 4, .external_lex_state = 2}, + [364] = {.lex_state = 4, .external_lex_state = 2}, + [365] = {.lex_state = 4, .external_lex_state = 2}, + [366] = {.lex_state = 4, .external_lex_state = 2}, + [367] = {.lex_state = 4, .external_lex_state = 2}, + [368] = {.lex_state = 12, .external_lex_state = 2}, + [369] = {.lex_state = 7, .external_lex_state = 2}, + [370] = {.lex_state = 4, .external_lex_state = 2}, + [371] = {.lex_state = 4, .external_lex_state = 2}, + [372] = {.lex_state = 12, .external_lex_state = 2}, + [373] = {.lex_state = 7, .external_lex_state = 2}, + [374] = {.lex_state = 4, .external_lex_state = 2}, + [375] = {.lex_state = 12, .external_lex_state = 2}, + [376] = {.lex_state = 12, .external_lex_state = 2}, + [377] = {.lex_state = 4, .external_lex_state = 2}, + [378] = {.lex_state = 4, .external_lex_state = 2}, + [379] = {.lex_state = 4, .external_lex_state = 2}, + [380] = {.lex_state = 12, .external_lex_state = 2}, + [381] = {.lex_state = 12, .external_lex_state = 2}, + [382] = {.lex_state = 7, .external_lex_state = 2}, + [383] = {.lex_state = 7, .external_lex_state = 2}, + [384] = {.lex_state = 7, .external_lex_state = 2}, + [385] = {.lex_state = 7, .external_lex_state = 2}, + [386] = {.lex_state = 7, .external_lex_state = 2}, + [387] = {.lex_state = 7, .external_lex_state = 2}, + [388] = {.lex_state = 12, .external_lex_state = 2}, + [389] = {.lex_state = 12, .external_lex_state = 2}, + [390] = {.lex_state = 12, .external_lex_state = 2}, + [391] = {.lex_state = 12, .external_lex_state = 2}, + [392] = {.lex_state = 7, .external_lex_state = 2}, + [393] = {.lex_state = 12, .external_lex_state = 2}, + [394] = {.lex_state = 7, .external_lex_state = 2}, + [395] = {.lex_state = 12, .external_lex_state = 2}, + [396] = {.lex_state = 12, .external_lex_state = 2}, + [397] = {.lex_state = 7, .external_lex_state = 2}, + [398] = {.lex_state = 7, .external_lex_state = 2}, + [399] = {.lex_state = 7, .external_lex_state = 2}, [400] = {.lex_state = 12, .external_lex_state = 2}, - [401] = {.lex_state = 71, .external_lex_state = 2}, + [401] = {.lex_state = 14, .external_lex_state = 2}, [402] = {.lex_state = 71, .external_lex_state = 2}, - [403] = {.lex_state = 71, .external_lex_state = 2}, - [404] = {.lex_state = 71, .external_lex_state = 2}, - [405] = {.lex_state = 12, .external_lex_state = 2}, + [403] = {.lex_state = 14, .external_lex_state = 2}, + [404] = {.lex_state = 14, .external_lex_state = 2}, + [405] = {.lex_state = 71, .external_lex_state = 2}, [406] = {.lex_state = 71, .external_lex_state = 2}, [407] = {.lex_state = 71, .external_lex_state = 2}, [408] = {.lex_state = 71, .external_lex_state = 2}, [409] = {.lex_state = 71, .external_lex_state = 2}, [410] = {.lex_state = 71, .external_lex_state = 2}, - [411] = {.lex_state = 71, .external_lex_state = 2}, + [411] = {.lex_state = 12, .external_lex_state = 2}, [412] = {.lex_state = 71, .external_lex_state = 2}, [413] = {.lex_state = 71, .external_lex_state = 2}, [414] = {.lex_state = 71, .external_lex_state = 2}, [415] = {.lex_state = 71, .external_lex_state = 2}, [416] = {.lex_state = 71, .external_lex_state = 2}, - [417] = {.lex_state = 12, .external_lex_state = 2}, + [417] = {.lex_state = 71, .external_lex_state = 2}, [418] = {.lex_state = 71, .external_lex_state = 2}, - [419] = {.lex_state = 71, .external_lex_state = 2}, + [419] = {.lex_state = 12, .external_lex_state = 2}, [420] = {.lex_state = 71, .external_lex_state = 2}, [421] = {.lex_state = 71, .external_lex_state = 2}, [422] = {.lex_state = 71, .external_lex_state = 2}, [423] = {.lex_state = 71, .external_lex_state = 2}, - [424] = {.lex_state = 71, .external_lex_state = 2}, + [424] = {.lex_state = 12, .external_lex_state = 2}, [425] = {.lex_state = 71, .external_lex_state = 2}, - [426] = {.lex_state = 12, .external_lex_state = 2}, + [426] = {.lex_state = 71, .external_lex_state = 2}, [427] = {.lex_state = 71, .external_lex_state = 2}, [428] = {.lex_state = 71, .external_lex_state = 2}, - [429] = {.lex_state = 14, .external_lex_state = 2}, - [430] = {.lex_state = 14, .external_lex_state = 2}, - [431] = {.lex_state = 14, .external_lex_state = 2}, - [432] = {.lex_state = 14, .external_lex_state = 2}, - [433] = {.lex_state = 14, .external_lex_state = 2}, - [434] = {.lex_state = 14, .external_lex_state = 2}, - [435] = {.lex_state = 14, .external_lex_state = 2}, - [436] = {.lex_state = 14, .external_lex_state = 2}, - [437] = {.lex_state = 14, .external_lex_state = 2}, - [438] = {.lex_state = 14, .external_lex_state = 2}, - [439] = {.lex_state = 14, .external_lex_state = 2}, - [440] = {.lex_state = 5, .external_lex_state = 2}, - [441] = {.lex_state = 7, .external_lex_state = 2}, - [442] = {.lex_state = 16, .external_lex_state = 2}, - [443] = {.lex_state = 16, .external_lex_state = 2}, - [444] = {.lex_state = 13, .external_lex_state = 2}, - [445] = {.lex_state = 13, .external_lex_state = 2}, - [446] = {.lex_state = 13, .external_lex_state = 2}, - [447] = {.lex_state = 13, .external_lex_state = 2}, - [448] = {.lex_state = 13, .external_lex_state = 2}, - [449] = {.lex_state = 13, .external_lex_state = 2}, - [450] = {.lex_state = 13, .external_lex_state = 2}, - [451] = {.lex_state = 13, .external_lex_state = 2}, - [452] = {.lex_state = 13, .external_lex_state = 2}, - [453] = {.lex_state = 13, .external_lex_state = 2}, - [454] = {.lex_state = 13, .external_lex_state = 2}, - [455] = {.lex_state = 13, .external_lex_state = 2}, - [456] = {.lex_state = 13, .external_lex_state = 2}, - [457] = {.lex_state = 13, .external_lex_state = 2}, - [458] = {.lex_state = 13, .external_lex_state = 2}, - [459] = {.lex_state = 13, .external_lex_state = 2}, + [429] = {.lex_state = 71, .external_lex_state = 2}, + [430] = {.lex_state = 71, .external_lex_state = 2}, + [431] = {.lex_state = 71, .external_lex_state = 2}, + [432] = {.lex_state = 71, .external_lex_state = 2}, + [433] = {.lex_state = 71, .external_lex_state = 2}, + [434] = {.lex_state = 71, .external_lex_state = 2}, + [435] = {.lex_state = 71, .external_lex_state = 2}, + [436] = {.lex_state = 71, .external_lex_state = 2}, + [437] = {.lex_state = 71, .external_lex_state = 2}, + [438] = {.lex_state = 71, .external_lex_state = 2}, + [439] = {.lex_state = 71, .external_lex_state = 2}, + [440] = {.lex_state = 12, .external_lex_state = 2}, + [441] = {.lex_state = 71, .external_lex_state = 2}, + [442] = {.lex_state = 71, .external_lex_state = 2}, + [443] = {.lex_state = 71, .external_lex_state = 2}, + [444] = {.lex_state = 71, .external_lex_state = 2}, + [445] = {.lex_state = 14, .external_lex_state = 2}, + [446] = {.lex_state = 14, .external_lex_state = 2}, + [447] = {.lex_state = 14, .external_lex_state = 2}, + [448] = {.lex_state = 14, .external_lex_state = 2}, + [449] = {.lex_state = 14, .external_lex_state = 2}, + [450] = {.lex_state = 14, .external_lex_state = 2}, + [451] = {.lex_state = 14, .external_lex_state = 2}, + [452] = {.lex_state = 14, .external_lex_state = 2}, + [453] = {.lex_state = 14, .external_lex_state = 2}, + [454] = {.lex_state = 14, .external_lex_state = 2}, + [455] = {.lex_state = 14, .external_lex_state = 2}, + [456] = {.lex_state = 5, .external_lex_state = 2}, + [457] = {.lex_state = 6, .external_lex_state = 2}, + [458] = {.lex_state = 16, .external_lex_state = 2}, + [459] = {.lex_state = 16, .external_lex_state = 2}, [460] = {.lex_state = 13, .external_lex_state = 2}, - [461] = {.lex_state = 14, .external_lex_state = 2}, - [462] = {.lex_state = 14, .external_lex_state = 2}, - [463] = {.lex_state = 5, .external_lex_state = 2}, - [464] = {.lex_state = 14, .external_lex_state = 2}, - [465] = {.lex_state = 14, .external_lex_state = 2}, - [466] = {.lex_state = 14, .external_lex_state = 2}, - [467] = {.lex_state = 14, .external_lex_state = 2}, - [468] = {.lex_state = 5, .external_lex_state = 2}, - [469] = {.lex_state = 14, .external_lex_state = 2}, - [470] = {.lex_state = 5, .external_lex_state = 2}, - [471] = {.lex_state = 5, .external_lex_state = 2}, - [472] = {.lex_state = 5, .external_lex_state = 2}, - [473] = {.lex_state = 14, .external_lex_state = 2}, - [474] = {.lex_state = 5, .external_lex_state = 2}, - [475] = {.lex_state = 14, .external_lex_state = 2}, - [476] = {.lex_state = 14, .external_lex_state = 2}, - [477] = {.lex_state = 5, .external_lex_state = 2}, - [478] = {.lex_state = 5, .external_lex_state = 2}, - [479] = {.lex_state = 5, .external_lex_state = 2}, - [480] = {.lex_state = 5, .external_lex_state = 2}, - [481] = {.lex_state = 5, .external_lex_state = 2}, - [482] = {.lex_state = 5, .external_lex_state = 2}, - [483] = {.lex_state = 5, .external_lex_state = 2}, - [484] = {.lex_state = 5, .external_lex_state = 2}, + [461] = {.lex_state = 13, .external_lex_state = 2}, + [462] = {.lex_state = 13, .external_lex_state = 2}, + [463] = {.lex_state = 13, .external_lex_state = 2}, + [464] = {.lex_state = 13, .external_lex_state = 2}, + [465] = {.lex_state = 13, .external_lex_state = 2}, + [466] = {.lex_state = 13, .external_lex_state = 2}, + [467] = {.lex_state = 13, .external_lex_state = 2}, + [468] = {.lex_state = 13, .external_lex_state = 2}, + [469] = {.lex_state = 13, .external_lex_state = 2}, + [470] = {.lex_state = 13, .external_lex_state = 2}, + [471] = {.lex_state = 13, .external_lex_state = 2}, + [472] = {.lex_state = 13, .external_lex_state = 2}, + [473] = {.lex_state = 13, .external_lex_state = 2}, + [474] = {.lex_state = 13, .external_lex_state = 2}, + [475] = {.lex_state = 13, .external_lex_state = 2}, + [476] = {.lex_state = 13, .external_lex_state = 2}, + [477] = {.lex_state = 14, .external_lex_state = 2}, + [478] = {.lex_state = 14, .external_lex_state = 2}, + [479] = {.lex_state = 14, .external_lex_state = 2}, + [480] = {.lex_state = 14, .external_lex_state = 2}, + [481] = {.lex_state = 14, .external_lex_state = 2}, + [482] = {.lex_state = 14, .external_lex_state = 2}, + [483] = {.lex_state = 14, .external_lex_state = 2}, + [484] = {.lex_state = 14, .external_lex_state = 2}, [485] = {.lex_state = 5, .external_lex_state = 2}, - [486] = {.lex_state = 5, .external_lex_state = 2}, - [487] = {.lex_state = 5, .external_lex_state = 2}, - [488] = {.lex_state = 5, .external_lex_state = 2}, - [489] = {.lex_state = 5, .external_lex_state = 2}, + [486] = {.lex_state = 23}, + [487] = {.lex_state = 14, .external_lex_state = 2}, + [488] = {.lex_state = 14, .external_lex_state = 2}, + [489] = {.lex_state = 14, .external_lex_state = 2}, [490] = {.lex_state = 5, .external_lex_state = 2}, [491] = {.lex_state = 5, .external_lex_state = 2}, [492] = {.lex_state = 5, .external_lex_state = 2}, - [493] = {.lex_state = 5, .external_lex_state = 2}, + [493] = {.lex_state = 14, .external_lex_state = 2}, [494] = {.lex_state = 5, .external_lex_state = 2}, [495] = {.lex_state = 5, .external_lex_state = 2}, - [496] = {.lex_state = 5, .external_lex_state = 2}, - [497] = {.lex_state = 14, .external_lex_state = 2}, - [498] = {.lex_state = 5, .external_lex_state = 2}, + [496] = {.lex_state = 23}, + [497] = {.lex_state = 23}, + [498] = {.lex_state = 23}, [499] = {.lex_state = 14, .external_lex_state = 2}, [500] = {.lex_state = 14, .external_lex_state = 2}, - [501] = {.lex_state = 14, .external_lex_state = 2}, + [501] = {.lex_state = 23}, [502] = {.lex_state = 14, .external_lex_state = 2}, - [503] = {.lex_state = 73, .external_lex_state = 2}, - [504] = {.lex_state = 73, .external_lex_state = 2}, - [505] = {.lex_state = 73, .external_lex_state = 2}, - [506] = {.lex_state = 73, .external_lex_state = 2}, - [507] = {.lex_state = 73, .external_lex_state = 2}, - [508] = {.lex_state = 73, .external_lex_state = 2}, - [509] = {.lex_state = 73, .external_lex_state = 2}, - [510] = {.lex_state = 73, .external_lex_state = 2}, - [511] = {.lex_state = 73, .external_lex_state = 2}, - [512] = {.lex_state = 73, .external_lex_state = 2}, - [513] = {.lex_state = 73, .external_lex_state = 2}, - [514] = {.lex_state = 73, .external_lex_state = 2}, - [515] = {.lex_state = 73, .external_lex_state = 2}, - [516] = {.lex_state = 73, .external_lex_state = 2}, - [517] = {.lex_state = 73, .external_lex_state = 2}, - [518] = {.lex_state = 73, .external_lex_state = 2}, - [519] = {.lex_state = 73, .external_lex_state = 2}, - [520] = {.lex_state = 73, .external_lex_state = 2}, - [521] = {.lex_state = 73, .external_lex_state = 2}, - [522] = {.lex_state = 73, .external_lex_state = 2}, - [523] = {.lex_state = 73, .external_lex_state = 2}, - [524] = {.lex_state = 73, .external_lex_state = 2}, - [525] = {.lex_state = 73, .external_lex_state = 2}, - [526] = {.lex_state = 73, .external_lex_state = 2}, - [527] = {.lex_state = 73, .external_lex_state = 2}, - [528] = {.lex_state = 73, .external_lex_state = 2}, - [529] = {.lex_state = 73, .external_lex_state = 2}, - [530] = {.lex_state = 73, .external_lex_state = 2}, + [503] = {.lex_state = 14, .external_lex_state = 2}, + [504] = {.lex_state = 5, .external_lex_state = 2}, + [505] = {.lex_state = 5, .external_lex_state = 2}, + [506] = {.lex_state = 5, .external_lex_state = 2}, + [507] = {.lex_state = 5, .external_lex_state = 2}, + [508] = {.lex_state = 5, .external_lex_state = 2}, + [509] = {.lex_state = 5, .external_lex_state = 2}, + [510] = {.lex_state = 5, .external_lex_state = 2}, + [511] = {.lex_state = 5, .external_lex_state = 2}, + [512] = {.lex_state = 5, .external_lex_state = 2}, + [513] = {.lex_state = 5, .external_lex_state = 2}, + [514] = {.lex_state = 5, .external_lex_state = 2}, + [515] = {.lex_state = 5, .external_lex_state = 2}, + [516] = {.lex_state = 5, .external_lex_state = 2}, + [517] = {.lex_state = 5, .external_lex_state = 2}, + [518] = {.lex_state = 5, .external_lex_state = 2}, + [519] = {.lex_state = 5, .external_lex_state = 2}, + [520] = {.lex_state = 14, .external_lex_state = 2}, + [521] = {.lex_state = 5, .external_lex_state = 2}, + [522] = {.lex_state = 5, .external_lex_state = 2}, + [523] = {.lex_state = 5, .external_lex_state = 2}, + [524] = {.lex_state = 5, .external_lex_state = 2}, + [525] = {.lex_state = 14, .external_lex_state = 2}, + [526] = {.lex_state = 5, .external_lex_state = 2}, + [527] = {.lex_state = 14, .external_lex_state = 2}, + [528] = {.lex_state = 5, .external_lex_state = 2}, + [529] = {.lex_state = 5, .external_lex_state = 2}, + [530] = {.lex_state = 14, .external_lex_state = 2}, [531] = {.lex_state = 23}, - [532] = {.lex_state = 73, .external_lex_state = 2}, - [533] = {.lex_state = 73, .external_lex_state = 2}, - [534] = {.lex_state = 73, .external_lex_state = 2}, + [532] = {.lex_state = 14, .external_lex_state = 2}, + [533] = {.lex_state = 14, .external_lex_state = 2}, + [534] = {.lex_state = 14, .external_lex_state = 2}, [535] = {.lex_state = 73, .external_lex_state = 2}, [536] = {.lex_state = 73, .external_lex_state = 2}, [537] = {.lex_state = 73, .external_lex_state = 2}, @@ -11028,12 +11287,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [542] = {.lex_state = 73, .external_lex_state = 2}, [543] = {.lex_state = 73, .external_lex_state = 2}, [544] = {.lex_state = 73, .external_lex_state = 2}, - [545] = {.lex_state = 23}, + [545] = {.lex_state = 73, .external_lex_state = 2}, [546] = {.lex_state = 73, .external_lex_state = 2}, [547] = {.lex_state = 73, .external_lex_state = 2}, [548] = {.lex_state = 73, .external_lex_state = 2}, [549] = {.lex_state = 73, .external_lex_state = 2}, - [550] = {.lex_state = 23}, + [550] = {.lex_state = 73, .external_lex_state = 2}, [551] = {.lex_state = 73, .external_lex_state = 2}, [552] = {.lex_state = 73, .external_lex_state = 2}, [553] = {.lex_state = 73, .external_lex_state = 2}, @@ -11094,7 +11353,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [608] = {.lex_state = 73, .external_lex_state = 2}, [609] = {.lex_state = 73, .external_lex_state = 2}, [610] = {.lex_state = 73, .external_lex_state = 2}, - [611] = {.lex_state = 14, .external_lex_state = 2}, + [611] = {.lex_state = 73, .external_lex_state = 2}, [612] = {.lex_state = 73, .external_lex_state = 2}, [613] = {.lex_state = 73, .external_lex_state = 2}, [614] = {.lex_state = 73, .external_lex_state = 2}, @@ -11115,7 +11374,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [629] = {.lex_state = 73, .external_lex_state = 2}, [630] = {.lex_state = 73, .external_lex_state = 2}, [631] = {.lex_state = 73, .external_lex_state = 2}, - [632] = {.lex_state = 73, .external_lex_state = 2}, + [632] = {.lex_state = 17}, [633] = {.lex_state = 73, .external_lex_state = 2}, [634] = {.lex_state = 73, .external_lex_state = 2}, [635] = {.lex_state = 73, .external_lex_state = 2}, @@ -11127,15 +11386,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [641] = {.lex_state = 73, .external_lex_state = 2}, [642] = {.lex_state = 73, .external_lex_state = 2}, [643] = {.lex_state = 73, .external_lex_state = 2}, - [644] = {.lex_state = 14, .external_lex_state = 2}, - [645] = {.lex_state = 23}, + [644] = {.lex_state = 73, .external_lex_state = 2}, + [645] = {.lex_state = 73, .external_lex_state = 2}, [646] = {.lex_state = 73, .external_lex_state = 2}, [647] = {.lex_state = 73, .external_lex_state = 2}, [648] = {.lex_state = 73, .external_lex_state = 2}, [649] = {.lex_state = 73, .external_lex_state = 2}, [650] = {.lex_state = 73, .external_lex_state = 2}, - [651] = {.lex_state = 23}, - [652] = {.lex_state = 73, .external_lex_state = 2}, + [651] = {.lex_state = 73, .external_lex_state = 2}, + [652] = {.lex_state = 14, .external_lex_state = 2}, [653] = {.lex_state = 73, .external_lex_state = 2}, [654] = {.lex_state = 73, .external_lex_state = 2}, [655] = {.lex_state = 73, .external_lex_state = 2}, @@ -11155,7 +11414,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [669] = {.lex_state = 73, .external_lex_state = 2}, [670] = {.lex_state = 73, .external_lex_state = 2}, [671] = {.lex_state = 73, .external_lex_state = 2}, - [672] = {.lex_state = 73, .external_lex_state = 2}, + [672] = {.lex_state = 17}, [673] = {.lex_state = 73, .external_lex_state = 2}, [674] = {.lex_state = 73, .external_lex_state = 2}, [675] = {.lex_state = 73, .external_lex_state = 2}, @@ -11167,7 +11426,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [681] = {.lex_state = 73, .external_lex_state = 2}, [682] = {.lex_state = 73, .external_lex_state = 2}, [683] = {.lex_state = 73, .external_lex_state = 2}, - [684] = {.lex_state = 14, .external_lex_state = 2}, + [684] = {.lex_state = 73, .external_lex_state = 2}, [685] = {.lex_state = 73, .external_lex_state = 2}, [686] = {.lex_state = 73, .external_lex_state = 2}, [687] = {.lex_state = 73, .external_lex_state = 2}, @@ -11271,44 +11530,44 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [785] = {.lex_state = 73, .external_lex_state = 2}, [786] = {.lex_state = 73, .external_lex_state = 2}, [787] = {.lex_state = 73, .external_lex_state = 2}, - [788] = {.lex_state = 17}, - [789] = {.lex_state = 17}, - [790] = {.lex_state = 17}, - [791] = {.lex_state = 17}, - [792] = {.lex_state = 17}, - [793] = {.lex_state = 17}, - [794] = {.lex_state = 17}, - [795] = {.lex_state = 17}, - [796] = {.lex_state = 14, .external_lex_state = 2}, - [797] = {.lex_state = 17}, - [798] = {.lex_state = 14, .external_lex_state = 2}, - [799] = {.lex_state = 14, .external_lex_state = 2}, - [800] = {.lex_state = 17}, - [801] = {.lex_state = 14, .external_lex_state = 2}, - [802] = {.lex_state = 17}, - [803] = {.lex_state = 14, .external_lex_state = 2}, - [804] = {.lex_state = 14, .external_lex_state = 2}, - [805] = {.lex_state = 14, .external_lex_state = 2}, - [806] = {.lex_state = 14, .external_lex_state = 2}, - [807] = {.lex_state = 14, .external_lex_state = 2}, - [808] = {.lex_state = 14, .external_lex_state = 2}, - [809] = {.lex_state = 14, .external_lex_state = 2}, - [810] = {.lex_state = 14, .external_lex_state = 2}, - [811] = {.lex_state = 14, .external_lex_state = 2}, - [812] = {.lex_state = 14, .external_lex_state = 2}, - [813] = {.lex_state = 14, .external_lex_state = 2}, - [814] = {.lex_state = 12, .external_lex_state = 2}, - [815] = {.lex_state = 14, .external_lex_state = 2}, - [816] = {.lex_state = 14, .external_lex_state = 2}, - [817] = {.lex_state = 14, .external_lex_state = 2}, - [818] = {.lex_state = 14, .external_lex_state = 2}, - [819] = {.lex_state = 14, .external_lex_state = 2}, - [820] = {.lex_state = 14, .external_lex_state = 2}, - [821] = {.lex_state = 14, .external_lex_state = 2}, - [822] = {.lex_state = 14, .external_lex_state = 2}, - [823] = {.lex_state = 14, .external_lex_state = 2}, - [824] = {.lex_state = 14, .external_lex_state = 2}, - [825] = {.lex_state = 14, .external_lex_state = 2}, + [788] = {.lex_state = 73, .external_lex_state = 2}, + [789] = {.lex_state = 73, .external_lex_state = 2}, + [790] = {.lex_state = 73, .external_lex_state = 2}, + [791] = {.lex_state = 73, .external_lex_state = 2}, + [792] = {.lex_state = 73, .external_lex_state = 2}, + [793] = {.lex_state = 73, .external_lex_state = 2}, + [794] = {.lex_state = 73, .external_lex_state = 2}, + [795] = {.lex_state = 73, .external_lex_state = 2}, + [796] = {.lex_state = 73, .external_lex_state = 2}, + [797] = {.lex_state = 73, .external_lex_state = 2}, + [798] = {.lex_state = 73, .external_lex_state = 2}, + [799] = {.lex_state = 73, .external_lex_state = 2}, + [800] = {.lex_state = 73, .external_lex_state = 2}, + [801] = {.lex_state = 73, .external_lex_state = 2}, + [802] = {.lex_state = 73, .external_lex_state = 2}, + [803] = {.lex_state = 73, .external_lex_state = 2}, + [804] = {.lex_state = 73, .external_lex_state = 2}, + [805] = {.lex_state = 73, .external_lex_state = 2}, + [806] = {.lex_state = 73, .external_lex_state = 2}, + [807] = {.lex_state = 73, .external_lex_state = 2}, + [808] = {.lex_state = 73, .external_lex_state = 2}, + [809] = {.lex_state = 73, .external_lex_state = 2}, + [810] = {.lex_state = 73, .external_lex_state = 2}, + [811] = {.lex_state = 73, .external_lex_state = 2}, + [812] = {.lex_state = 73, .external_lex_state = 2}, + [813] = {.lex_state = 73, .external_lex_state = 2}, + [814] = {.lex_state = 73, .external_lex_state = 2}, + [815] = {.lex_state = 73, .external_lex_state = 2}, + [816] = {.lex_state = 73, .external_lex_state = 2}, + [817] = {.lex_state = 17}, + [818] = {.lex_state = 17}, + [819] = {.lex_state = 17}, + [820] = {.lex_state = 17}, + [821] = {.lex_state = 17}, + [822] = {.lex_state = 17}, + [823] = {.lex_state = 73, .external_lex_state = 2}, + [824] = {.lex_state = 17}, + [825] = {.lex_state = 73, .external_lex_state = 2}, [826] = {.lex_state = 14, .external_lex_state = 2}, [827] = {.lex_state = 14, .external_lex_state = 2}, [828] = {.lex_state = 14, .external_lex_state = 2}, @@ -11330,42 +11589,42 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [844] = {.lex_state = 14, .external_lex_state = 2}, [845] = {.lex_state = 14, .external_lex_state = 2}, [846] = {.lex_state = 14, .external_lex_state = 2}, - [847] = {.lex_state = 14, .external_lex_state = 2}, + [847] = {.lex_state = 12, .external_lex_state = 2}, [848] = {.lex_state = 14, .external_lex_state = 2}, [849] = {.lex_state = 14, .external_lex_state = 2}, [850] = {.lex_state = 14, .external_lex_state = 2}, [851] = {.lex_state = 14, .external_lex_state = 2}, [852] = {.lex_state = 14, .external_lex_state = 2}, [853] = {.lex_state = 14, .external_lex_state = 2}, - [854] = {.lex_state = 17}, - [855] = {.lex_state = 17}, - [856] = {.lex_state = 17}, - [857] = {.lex_state = 17}, - [858] = {.lex_state = 17}, - [859] = {.lex_state = 17}, - [860] = {.lex_state = 17}, - [861] = {.lex_state = 17}, - [862] = {.lex_state = 17}, - [863] = {.lex_state = 17}, - [864] = {.lex_state = 17}, - [865] = {.lex_state = 17}, - [866] = {.lex_state = 17}, - [867] = {.lex_state = 17}, - [868] = {.lex_state = 17}, - [869] = {.lex_state = 17}, - [870] = {.lex_state = 17}, - [871] = {.lex_state = 17}, - [872] = {.lex_state = 17}, - [873] = {.lex_state = 17}, - [874] = {.lex_state = 17}, - [875] = {.lex_state = 17}, - [876] = {.lex_state = 17}, - [877] = {.lex_state = 17}, - [878] = {.lex_state = 17}, - [879] = {.lex_state = 17}, - [880] = {.lex_state = 17}, - [881] = {.lex_state = 17}, - [882] = {.lex_state = 17}, + [854] = {.lex_state = 14, .external_lex_state = 2}, + [855] = {.lex_state = 14, .external_lex_state = 2}, + [856] = {.lex_state = 14, .external_lex_state = 2}, + [857] = {.lex_state = 14, .external_lex_state = 2}, + [858] = {.lex_state = 14, .external_lex_state = 2}, + [859] = {.lex_state = 14, .external_lex_state = 2}, + [860] = {.lex_state = 14, .external_lex_state = 2}, + [861] = {.lex_state = 14, .external_lex_state = 2}, + [862] = {.lex_state = 14, .external_lex_state = 2}, + [863] = {.lex_state = 14, .external_lex_state = 2}, + [864] = {.lex_state = 14, .external_lex_state = 2}, + [865] = {.lex_state = 14, .external_lex_state = 2}, + [866] = {.lex_state = 14, .external_lex_state = 2}, + [867] = {.lex_state = 14, .external_lex_state = 2}, + [868] = {.lex_state = 14, .external_lex_state = 2}, + [869] = {.lex_state = 14, .external_lex_state = 2}, + [870] = {.lex_state = 14, .external_lex_state = 2}, + [871] = {.lex_state = 14, .external_lex_state = 2}, + [872] = {.lex_state = 14, .external_lex_state = 2}, + [873] = {.lex_state = 14, .external_lex_state = 2}, + [874] = {.lex_state = 14, .external_lex_state = 2}, + [875] = {.lex_state = 14, .external_lex_state = 2}, + [876] = {.lex_state = 14, .external_lex_state = 2}, + [877] = {.lex_state = 14, .external_lex_state = 2}, + [878] = {.lex_state = 14, .external_lex_state = 2}, + [879] = {.lex_state = 14, .external_lex_state = 2}, + [880] = {.lex_state = 14, .external_lex_state = 2}, + [881] = {.lex_state = 14, .external_lex_state = 2}, + [882] = {.lex_state = 14, .external_lex_state = 2}, [883] = {.lex_state = 17}, [884] = {.lex_state = 17}, [885] = {.lex_state = 17}, @@ -11541,110 +11800,110 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1055] = {.lex_state = 17}, [1056] = {.lex_state = 17}, [1057] = {.lex_state = 17}, - [1058] = {.lex_state = 13, .external_lex_state = 2}, - [1059] = {.lex_state = 13, .external_lex_state = 2}, - [1060] = {.lex_state = 13, .external_lex_state = 2}, - [1061] = {.lex_state = 15, .external_lex_state = 2}, - [1062] = {.lex_state = 15, .external_lex_state = 2}, - [1063] = {.lex_state = 13, .external_lex_state = 2}, - [1064] = {.lex_state = 12, .external_lex_state = 2}, + [1058] = {.lex_state = 17}, + [1059] = {.lex_state = 17}, + [1060] = {.lex_state = 17}, + [1061] = {.lex_state = 17}, + [1062] = {.lex_state = 17}, + [1063] = {.lex_state = 17}, + [1064] = {.lex_state = 17}, [1065] = {.lex_state = 17}, - [1066] = {.lex_state = 13, .external_lex_state = 2}, - [1067] = {.lex_state = 13, .external_lex_state = 2}, - [1068] = {.lex_state = 13, .external_lex_state = 2}, - [1069] = {.lex_state = 8}, - [1070] = {.lex_state = 9}, - [1071] = {.lex_state = 8}, - [1072] = {.lex_state = 8}, - [1073] = {.lex_state = 23}, - [1074] = {.lex_state = 23}, - [1075] = {.lex_state = 23}, - [1076] = {.lex_state = 23}, - [1077] = {.lex_state = 14, .external_lex_state = 2}, - [1078] = {.lex_state = 23}, - [1079] = {.lex_state = 8}, - [1080] = {.lex_state = 23}, - [1081] = {.lex_state = 23}, - [1082] = {.lex_state = 23}, - [1083] = {.lex_state = 23}, - [1084] = {.lex_state = 8}, - [1085] = {.lex_state = 26}, + [1066] = {.lex_state = 17}, + [1067] = {.lex_state = 17}, + [1068] = {.lex_state = 17}, + [1069] = {.lex_state = 17}, + [1070] = {.lex_state = 17}, + [1071] = {.lex_state = 17}, + [1072] = {.lex_state = 17}, + [1073] = {.lex_state = 17}, + [1074] = {.lex_state = 17}, + [1075] = {.lex_state = 17}, + [1076] = {.lex_state = 17}, + [1077] = {.lex_state = 17}, + [1078] = {.lex_state = 17}, + [1079] = {.lex_state = 17}, + [1080] = {.lex_state = 17}, + [1081] = {.lex_state = 17}, + [1082] = {.lex_state = 17}, + [1083] = {.lex_state = 17}, + [1084] = {.lex_state = 17}, + [1085] = {.lex_state = 17}, [1086] = {.lex_state = 17}, - [1087] = {.lex_state = 26}, - [1088] = {.lex_state = 8}, - [1089] = {.lex_state = 8}, - [1090] = {.lex_state = 26}, - [1091] = {.lex_state = 8}, - [1092] = {.lex_state = 8}, - [1093] = {.lex_state = 17}, - [1094] = {.lex_state = 17}, - [1095] = {.lex_state = 8}, - [1096] = {.lex_state = 26}, - [1097] = {.lex_state = 26}, - [1098] = {.lex_state = 8}, - [1099] = {.lex_state = 8}, + [1087] = {.lex_state = 17}, + [1088] = {.lex_state = 17}, + [1089] = {.lex_state = 13, .external_lex_state = 2}, + [1090] = {.lex_state = 13, .external_lex_state = 2}, + [1091] = {.lex_state = 15, .external_lex_state = 2}, + [1092] = {.lex_state = 15, .external_lex_state = 2}, + [1093] = {.lex_state = 13, .external_lex_state = 2}, + [1094] = {.lex_state = 13, .external_lex_state = 2}, + [1095] = {.lex_state = 13, .external_lex_state = 2}, + [1096] = {.lex_state = 12, .external_lex_state = 2}, + [1097] = {.lex_state = 12, .external_lex_state = 2}, + [1098] = {.lex_state = 12, .external_lex_state = 2}, + [1099] = {.lex_state = 12, .external_lex_state = 2}, [1100] = {.lex_state = 17}, - [1101] = {.lex_state = 14, .external_lex_state = 2}, - [1102] = {.lex_state = 14, .external_lex_state = 2}, - [1103] = {.lex_state = 9}, - [1104] = {.lex_state = 9}, - [1105] = {.lex_state = 17}, - [1106] = {.lex_state = 17}, - [1107] = {.lex_state = 9}, - [1108] = {.lex_state = 9}, - [1109] = {.lex_state = 9}, - [1110] = {.lex_state = 9}, - [1111] = {.lex_state = 17}, - [1112] = {.lex_state = 17}, + [1101] = {.lex_state = 13, .external_lex_state = 2}, + [1102] = {.lex_state = 13, .external_lex_state = 2}, + [1103] = {.lex_state = 13, .external_lex_state = 2}, + [1104] = {.lex_state = 8}, + [1105] = {.lex_state = 8}, + [1106] = {.lex_state = 9}, + [1107] = {.lex_state = 8}, + [1108] = {.lex_state = 23}, + [1109] = {.lex_state = 8}, + [1110] = {.lex_state = 23}, + [1111] = {.lex_state = 23}, + [1112] = {.lex_state = 23}, [1113] = {.lex_state = 23}, [1114] = {.lex_state = 23}, [1115] = {.lex_state = 23}, [1116] = {.lex_state = 23}, - [1117] = {.lex_state = 23}, + [1117] = {.lex_state = 14, .external_lex_state = 2}, [1118] = {.lex_state = 23}, - [1119] = {.lex_state = 23}, - [1120] = {.lex_state = 23}, - [1121] = {.lex_state = 23}, - [1122] = {.lex_state = 23}, - [1123] = {.lex_state = 23}, - [1124] = {.lex_state = 23}, - [1125] = {.lex_state = 23}, - [1126] = {.lex_state = 23}, - [1127] = {.lex_state = 23}, - [1128] = {.lex_state = 23}, - [1129] = {.lex_state = 23}, - [1130] = {.lex_state = 23}, - [1131] = {.lex_state = 23}, - [1132] = {.lex_state = 23}, - [1133] = {.lex_state = 23}, - [1134] = {.lex_state = 23}, - [1135] = {.lex_state = 23}, - [1136] = {.lex_state = 23}, - [1137] = {.lex_state = 23}, - [1138] = {.lex_state = 23}, - [1139] = {.lex_state = 23}, - [1140] = {.lex_state = 23}, - [1141] = {.lex_state = 23}, - [1142] = {.lex_state = 23}, - [1143] = {.lex_state = 23}, - [1144] = {.lex_state = 23}, - [1145] = {.lex_state = 14, .external_lex_state = 2}, - [1146] = {.lex_state = 14, .external_lex_state = 2}, - [1147] = {.lex_state = 23}, + [1119] = {.lex_state = 8}, + [1120] = {.lex_state = 8}, + [1121] = {.lex_state = 8}, + [1122] = {.lex_state = 14, .external_lex_state = 2}, + [1123] = {.lex_state = 26}, + [1124] = {.lex_state = 17}, + [1125] = {.lex_state = 26}, + [1126] = {.lex_state = 17}, + [1127] = {.lex_state = 26}, + [1128] = {.lex_state = 14, .external_lex_state = 2}, + [1129] = {.lex_state = 26}, + [1130] = {.lex_state = 8}, + [1131] = {.lex_state = 8}, + [1132] = {.lex_state = 8}, + [1133] = {.lex_state = 26}, + [1134] = {.lex_state = 17}, + [1135] = {.lex_state = 8}, + [1136] = {.lex_state = 17}, + [1137] = {.lex_state = 8}, + [1138] = {.lex_state = 17}, + [1139] = {.lex_state = 9}, + [1140] = {.lex_state = 14, .external_lex_state = 2}, + [1141] = {.lex_state = 9}, + [1142] = {.lex_state = 9}, + [1143] = {.lex_state = 17}, + [1144] = {.lex_state = 14, .external_lex_state = 2}, + [1145] = {.lex_state = 9}, + [1146] = {.lex_state = 9}, + [1147] = {.lex_state = 17}, [1148] = {.lex_state = 9}, - [1149] = {.lex_state = 23}, - [1150] = {.lex_state = 9}, + [1149] = {.lex_state = 14, .external_lex_state = 2}, + [1150] = {.lex_state = 17}, [1151] = {.lex_state = 23}, - [1152] = {.lex_state = 23}, + [1152] = {.lex_state = 17}, [1153] = {.lex_state = 23}, - [1154] = {.lex_state = 23}, + [1154] = {.lex_state = 14, .external_lex_state = 2}, [1155] = {.lex_state = 23}, - [1156] = {.lex_state = 9}, + [1156] = {.lex_state = 23}, [1157] = {.lex_state = 23}, - [1158] = {.lex_state = 9}, + [1158] = {.lex_state = 23}, [1159] = {.lex_state = 23}, [1160] = {.lex_state = 23}, - [1161] = {.lex_state = 9}, + [1161] = {.lex_state = 23}, [1162] = {.lex_state = 23}, [1163] = {.lex_state = 23}, [1164] = {.lex_state = 23}, @@ -11654,26 +11913,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1168] = {.lex_state = 23}, [1169] = {.lex_state = 23}, [1170] = {.lex_state = 23}, - [1171] = {.lex_state = 20}, + [1171] = {.lex_state = 23}, [1172] = {.lex_state = 23}, - [1173] = {.lex_state = 23}, - [1174] = {.lex_state = 23}, - [1175] = {.lex_state = 23}, - [1176] = {.lex_state = 23}, + [1173] = {.lex_state = 9}, + [1174] = {.lex_state = 20}, + [1175] = {.lex_state = 9}, + [1176] = {.lex_state = 20}, [1177] = {.lex_state = 23}, [1178] = {.lex_state = 23}, [1179] = {.lex_state = 23}, - [1180] = {.lex_state = 17}, - [1181] = {.lex_state = 9}, + [1180] = {.lex_state = 23}, + [1181] = {.lex_state = 23}, [1182] = {.lex_state = 23}, [1183] = {.lex_state = 23}, [1184] = {.lex_state = 23}, [1185] = {.lex_state = 23}, - [1186] = {.lex_state = 14, .external_lex_state = 2}, + [1186] = {.lex_state = 23}, [1187] = {.lex_state = 23}, [1188] = {.lex_state = 23}, - [1189] = {.lex_state = 9}, - [1190] = {.lex_state = 9}, + [1189] = {.lex_state = 23}, + [1190] = {.lex_state = 23}, [1191] = {.lex_state = 23}, [1192] = {.lex_state = 23}, [1193] = {.lex_state = 23}, @@ -11693,12 +11952,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1207] = {.lex_state = 23}, [1208] = {.lex_state = 23}, [1209] = {.lex_state = 23}, - [1210] = {.lex_state = 9}, - [1211] = {.lex_state = 20}, - [1212] = {.lex_state = 17}, - [1213] = {.lex_state = 9}, + [1210] = {.lex_state = 23}, + [1211] = {.lex_state = 23}, + [1212] = {.lex_state = 23}, + [1213] = {.lex_state = 23}, [1214] = {.lex_state = 23}, - [1215] = {.lex_state = 14, .external_lex_state = 2}, + [1215] = {.lex_state = 23}, [1216] = {.lex_state = 23}, [1217] = {.lex_state = 23}, [1218] = {.lex_state = 23}, @@ -11707,11 +11966,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1221] = {.lex_state = 23}, [1222] = {.lex_state = 23}, [1223] = {.lex_state = 23}, - [1224] = {.lex_state = 14, .external_lex_state = 2}, + [1224] = {.lex_state = 23}, [1225] = {.lex_state = 23}, [1226] = {.lex_state = 23}, - [1227] = {.lex_state = 23}, - [1228] = {.lex_state = 23}, + [1227] = {.lex_state = 9}, + [1228] = {.lex_state = 20}, [1229] = {.lex_state = 23}, [1230] = {.lex_state = 23}, [1231] = {.lex_state = 23}, @@ -11720,10 +11979,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1234] = {.lex_state = 23}, [1235] = {.lex_state = 23}, [1236] = {.lex_state = 23}, - [1237] = {.lex_state = 17}, - [1238] = {.lex_state = 21}, + [1237] = {.lex_state = 23}, + [1238] = {.lex_state = 23}, [1239] = {.lex_state = 23}, - [1240] = {.lex_state = 14, .external_lex_state = 2}, + [1240] = {.lex_state = 23}, [1241] = {.lex_state = 23}, [1242] = {.lex_state = 23}, [1243] = {.lex_state = 23}, @@ -11733,24 +11992,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1247] = {.lex_state = 23}, [1248] = {.lex_state = 23}, [1249] = {.lex_state = 23}, - [1250] = {.lex_state = 23}, - [1251] = {.lex_state = 9}, + [1250] = {.lex_state = 14, .external_lex_state = 2}, + [1251] = {.lex_state = 23}, [1252] = {.lex_state = 23}, [1253] = {.lex_state = 23}, - [1254] = {.lex_state = 17}, + [1254] = {.lex_state = 23}, [1255] = {.lex_state = 23}, [1256] = {.lex_state = 23}, - [1257] = {.lex_state = 12, .external_lex_state = 2}, + [1257] = {.lex_state = 23}, [1258] = {.lex_state = 23}, [1259] = {.lex_state = 23}, [1260] = {.lex_state = 23}, [1261] = {.lex_state = 23}, - [1262] = {.lex_state = 9}, + [1262] = {.lex_state = 23}, [1263] = {.lex_state = 23}, - [1264] = {.lex_state = 9}, - [1265] = {.lex_state = 9}, + [1264] = {.lex_state = 23}, + [1265] = {.lex_state = 23}, [1266] = {.lex_state = 23}, - [1267] = {.lex_state = 9}, + [1267] = {.lex_state = 23}, [1268] = {.lex_state = 23}, [1269] = {.lex_state = 23}, [1270] = {.lex_state = 23}, @@ -11763,34 +12022,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1277] = {.lex_state = 23}, [1278] = {.lex_state = 23}, [1279] = {.lex_state = 23}, - [1280] = {.lex_state = 9}, - [1281] = {.lex_state = 20}, - [1282] = {.lex_state = 12, .external_lex_state = 2}, - [1283] = {.lex_state = 9}, - [1284] = {.lex_state = 9}, - [1285] = {.lex_state = 17}, + [1280] = {.lex_state = 23}, + [1281] = {.lex_state = 9}, + [1282] = {.lex_state = 20}, + [1283] = {.lex_state = 23}, + [1284] = {.lex_state = 23}, + [1285] = {.lex_state = 23}, [1286] = {.lex_state = 23}, - [1287] = {.lex_state = 12, .external_lex_state = 2}, - [1288] = {.lex_state = 9}, - [1289] = {.lex_state = 9}, + [1287] = {.lex_state = 23}, + [1288] = {.lex_state = 23}, + [1289] = {.lex_state = 23}, [1290] = {.lex_state = 23}, [1291] = {.lex_state = 23}, [1292] = {.lex_state = 23}, - [1293] = {.lex_state = 21}, - [1294] = {.lex_state = 20}, + [1293] = {.lex_state = 23}, + [1294] = {.lex_state = 23}, [1295] = {.lex_state = 23}, - [1296] = {.lex_state = 9}, + [1296] = {.lex_state = 23}, [1297] = {.lex_state = 23}, [1298] = {.lex_state = 23}, - [1299] = {.lex_state = 9}, + [1299] = {.lex_state = 23}, [1300] = {.lex_state = 23}, - [1301] = {.lex_state = 20}, + [1301] = {.lex_state = 23}, [1302] = {.lex_state = 23}, - [1303] = {.lex_state = 20}, + [1303] = {.lex_state = 23}, [1304] = {.lex_state = 23}, [1305] = {.lex_state = 23}, [1306] = {.lex_state = 23}, - [1307] = {.lex_state = 9}, + [1307] = {.lex_state = 23}, [1308] = {.lex_state = 23}, [1309] = {.lex_state = 23}, [1310] = {.lex_state = 23}, @@ -11807,19 +12066,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1321] = {.lex_state = 23}, [1322] = {.lex_state = 23}, [1323] = {.lex_state = 23}, - [1324] = {.lex_state = 8}, + [1324] = {.lex_state = 23}, [1325] = {.lex_state = 23}, - [1326] = {.lex_state = 20}, + [1326] = {.lex_state = 23}, [1327] = {.lex_state = 23}, [1328] = {.lex_state = 23}, [1329] = {.lex_state = 23}, [1330] = {.lex_state = 23}, [1331] = {.lex_state = 23}, [1332] = {.lex_state = 23}, - [1333] = {.lex_state = 20}, - [1334] = {.lex_state = 23}, + [1333] = {.lex_state = 23}, + [1334] = {.lex_state = 9}, [1335] = {.lex_state = 20}, - [1336] = {.lex_state = 20}, + [1336] = {.lex_state = 23}, [1337] = {.lex_state = 23}, [1338] = {.lex_state = 23}, [1339] = {.lex_state = 23}, @@ -11859,9 +12118,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1373] = {.lex_state = 23}, [1374] = {.lex_state = 23}, [1375] = {.lex_state = 23}, - [1376] = {.lex_state = 9}, + [1376] = {.lex_state = 23}, [1377] = {.lex_state = 23}, - [1378] = {.lex_state = 20}, + [1378] = {.lex_state = 23}, [1379] = {.lex_state = 23}, [1380] = {.lex_state = 23}, [1381] = {.lex_state = 23}, @@ -11872,92 +12131,92 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1386] = {.lex_state = 23}, [1387] = {.lex_state = 23}, [1388] = {.lex_state = 23}, - [1389] = {.lex_state = 23}, - [1390] = {.lex_state = 23}, - [1391] = {.lex_state = 23}, - [1392] = {.lex_state = 20}, - [1393] = {.lex_state = 23}, - [1394] = {.lex_state = 23}, - [1395] = {.lex_state = 23}, - [1396] = {.lex_state = 23}, - [1397] = {.lex_state = 23}, - [1398] = {.lex_state = 23}, - [1399] = {.lex_state = 23}, - [1400] = {.lex_state = 23}, - [1401] = {.lex_state = 23}, + [1389] = {.lex_state = 17}, + [1390] = {.lex_state = 14, .external_lex_state = 2}, + [1391] = {.lex_state = 14, .external_lex_state = 2}, + [1392] = {.lex_state = 23}, + [1393] = {.lex_state = 9}, + [1394] = {.lex_state = 9}, + [1395] = {.lex_state = 17}, + [1396] = {.lex_state = 12, .external_lex_state = 2}, + [1397] = {.lex_state = 9}, + [1398] = {.lex_state = 9}, + [1399] = {.lex_state = 9}, + [1400] = {.lex_state = 17}, + [1401] = {.lex_state = 9}, [1402] = {.lex_state = 23}, - [1403] = {.lex_state = 23}, + [1403] = {.lex_state = 21}, [1404] = {.lex_state = 23}, [1405] = {.lex_state = 23}, - [1406] = {.lex_state = 23}, - [1407] = {.lex_state = 23}, - [1408] = {.lex_state = 23}, - [1409] = {.lex_state = 23}, - [1410] = {.lex_state = 23}, - [1411] = {.lex_state = 23}, - [1412] = {.lex_state = 23}, - [1413] = {.lex_state = 23}, - [1414] = {.lex_state = 23}, - [1415] = {.lex_state = 23}, - [1416] = {.lex_state = 23}, - [1417] = {.lex_state = 23}, - [1418] = {.lex_state = 23}, + [1406] = {.lex_state = 14, .external_lex_state = 2}, + [1407] = {.lex_state = 9}, + [1408] = {.lex_state = 14, .external_lex_state = 2}, + [1409] = {.lex_state = 14, .external_lex_state = 2}, + [1410] = {.lex_state = 12, .external_lex_state = 2}, + [1411] = {.lex_state = 9}, + [1412] = {.lex_state = 12, .external_lex_state = 2}, + [1413] = {.lex_state = 17}, + [1414] = {.lex_state = 9}, + [1415] = {.lex_state = 9}, + [1416] = {.lex_state = 9}, + [1417] = {.lex_state = 21}, + [1418] = {.lex_state = 20}, [1419] = {.lex_state = 23}, - [1420] = {.lex_state = 23}, - [1421] = {.lex_state = 23}, - [1422] = {.lex_state = 23}, - [1423] = {.lex_state = 23}, - [1424] = {.lex_state = 23}, - [1425] = {.lex_state = 23}, + [1420] = {.lex_state = 9}, + [1421] = {.lex_state = 9}, + [1422] = {.lex_state = 20}, + [1423] = {.lex_state = 20}, + [1424] = {.lex_state = 9}, + [1425] = {.lex_state = 17}, [1426] = {.lex_state = 23}, - [1427] = {.lex_state = 23}, - [1428] = {.lex_state = 17}, - [1429] = {.lex_state = 23}, + [1427] = {.lex_state = 9}, + [1428] = {.lex_state = 9}, + [1429] = {.lex_state = 9}, [1430] = {.lex_state = 23}, - [1431] = {.lex_state = 9}, - [1432] = {.lex_state = 23}, - [1433] = {.lex_state = 17}, - [1434] = {.lex_state = 9}, + [1431] = {.lex_state = 14, .external_lex_state = 2}, + [1432] = {.lex_state = 9}, + [1433] = {.lex_state = 23}, + [1434] = {.lex_state = 23}, [1435] = {.lex_state = 9}, - [1436] = {.lex_state = 9}, - [1437] = {.lex_state = 9}, - [1438] = {.lex_state = 9}, - [1439] = {.lex_state = 9}, - [1440] = {.lex_state = 9}, - [1441] = {.lex_state = 9}, - [1442] = {.lex_state = 9}, - [1443] = {.lex_state = 9}, - [1444] = {.lex_state = 9}, - [1445] = {.lex_state = 9}, - [1446] = {.lex_state = 9}, - [1447] = {.lex_state = 9}, - [1448] = {.lex_state = 9}, - [1449] = {.lex_state = 9}, - [1450] = {.lex_state = 9}, - [1451] = {.lex_state = 9}, - [1452] = {.lex_state = 9}, - [1453] = {.lex_state = 9}, - [1454] = {.lex_state = 9}, - [1455] = {.lex_state = 9}, - [1456] = {.lex_state = 9}, - [1457] = {.lex_state = 9}, - [1458] = {.lex_state = 9}, - [1459] = {.lex_state = 9}, - [1460] = {.lex_state = 9}, + [1436] = {.lex_state = 23}, + [1437] = {.lex_state = 23}, + [1438] = {.lex_state = 23}, + [1439] = {.lex_state = 23}, + [1440] = {.lex_state = 23}, + [1441] = {.lex_state = 23}, + [1442] = {.lex_state = 23}, + [1443] = {.lex_state = 23}, + [1444] = {.lex_state = 23}, + [1445] = {.lex_state = 23}, + [1446] = {.lex_state = 23}, + [1447] = {.lex_state = 23}, + [1448] = {.lex_state = 23}, + [1449] = {.lex_state = 23}, + [1450] = {.lex_state = 8}, + [1451] = {.lex_state = 20}, + [1452] = {.lex_state = 20}, + [1453] = {.lex_state = 23}, + [1454] = {.lex_state = 20}, + [1455] = {.lex_state = 20}, + [1456] = {.lex_state = 23}, + [1457] = {.lex_state = 23}, + [1458] = {.lex_state = 23}, + [1459] = {.lex_state = 23}, + [1460] = {.lex_state = 23}, [1461] = {.lex_state = 9}, - [1462] = {.lex_state = 9}, - [1463] = {.lex_state = 9}, - [1464] = {.lex_state = 9}, - [1465] = {.lex_state = 9}, - [1466] = {.lex_state = 9}, - [1467] = {.lex_state = 9}, - [1468] = {.lex_state = 9}, - [1469] = {.lex_state = 9}, - [1470] = {.lex_state = 9}, - [1471] = {.lex_state = 9}, - [1472] = {.lex_state = 9}, - [1473] = {.lex_state = 9}, - [1474] = {.lex_state = 9}, + [1462] = {.lex_state = 23}, + [1463] = {.lex_state = 23}, + [1464] = {.lex_state = 23}, + [1465] = {.lex_state = 23}, + [1466] = {.lex_state = 23}, + [1467] = {.lex_state = 23}, + [1468] = {.lex_state = 17}, + [1469] = {.lex_state = 23}, + [1470] = {.lex_state = 23}, + [1471] = {.lex_state = 23}, + [1472] = {.lex_state = 23}, + [1473] = {.lex_state = 23}, + [1474] = {.lex_state = 23}, [1475] = {.lex_state = 9}, [1476] = {.lex_state = 9}, [1477] = {.lex_state = 9}, @@ -11966,11 +12225,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1480] = {.lex_state = 9}, [1481] = {.lex_state = 9}, [1482] = {.lex_state = 9}, - [1483] = {.lex_state = 9}, + [1483] = {.lex_state = 10}, [1484] = {.lex_state = 9}, - [1485] = {.lex_state = 9}, + [1485] = {.lex_state = 23}, [1486] = {.lex_state = 9}, - [1487] = {.lex_state = 10}, + [1487] = {.lex_state = 9}, [1488] = {.lex_state = 9}, [1489] = {.lex_state = 9}, [1490] = {.lex_state = 9}, @@ -11978,7 +12237,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1492] = {.lex_state = 9}, [1493] = {.lex_state = 9}, [1494] = {.lex_state = 9}, - [1495] = {.lex_state = 9}, + [1495] = {.lex_state = 23}, [1496] = {.lex_state = 9}, [1497] = {.lex_state = 9}, [1498] = {.lex_state = 9}, @@ -12045,25 +12304,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1559] = {.lex_state = 9}, [1560] = {.lex_state = 9}, [1561] = {.lex_state = 9}, - [1562] = {.lex_state = 13, .external_lex_state = 2}, + [1562] = {.lex_state = 9}, [1563] = {.lex_state = 9}, - [1564] = {.lex_state = 13, .external_lex_state = 2}, - [1565] = {.lex_state = 13, .external_lex_state = 2}, - [1566] = {.lex_state = 17}, + [1564] = {.lex_state = 9}, + [1565] = {.lex_state = 9}, + [1566] = {.lex_state = 9}, [1567] = {.lex_state = 9}, - [1568] = {.lex_state = 17}, + [1568] = {.lex_state = 9}, [1569] = {.lex_state = 9}, - [1570] = {.lex_state = 17}, - [1571] = {.lex_state = 17}, - [1572] = {.lex_state = 13, .external_lex_state = 2}, - [1573] = {.lex_state = 13, .external_lex_state = 2}, - [1574] = {.lex_state = 13, .external_lex_state = 2}, - [1575] = {.lex_state = 17}, - [1576] = {.lex_state = 11}, + [1570] = {.lex_state = 9}, + [1571] = {.lex_state = 9}, + [1572] = {.lex_state = 9}, + [1573] = {.lex_state = 9}, + [1574] = {.lex_state = 17}, + [1575] = {.lex_state = 9}, + [1576] = {.lex_state = 9}, [1577] = {.lex_state = 9}, [1578] = {.lex_state = 9}, - [1579] = {.lex_state = 11}, - [1580] = {.lex_state = 11}, + [1579] = {.lex_state = 9}, + [1580] = {.lex_state = 9}, [1581] = {.lex_state = 9}, [1582] = {.lex_state = 9}, [1583] = {.lex_state = 9}, @@ -12080,206 +12339,206 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1594] = {.lex_state = 9}, [1595] = {.lex_state = 9}, [1596] = {.lex_state = 9}, - [1597] = {.lex_state = 10}, - [1598] = {.lex_state = 11}, - [1599] = {.lex_state = 10}, - [1600] = {.lex_state = 11}, - [1601] = {.lex_state = 11}, - [1602] = {.lex_state = 11}, + [1597] = {.lex_state = 9}, + [1598] = {.lex_state = 9}, + [1599] = {.lex_state = 9}, + [1600] = {.lex_state = 9}, + [1601] = {.lex_state = 9}, + [1602] = {.lex_state = 9}, [1603] = {.lex_state = 9}, [1604] = {.lex_state = 9}, [1605] = {.lex_state = 9}, [1606] = {.lex_state = 9}, [1607] = {.lex_state = 9}, - [1608] = {.lex_state = 9}, - [1609] = {.lex_state = 11}, - [1610] = {.lex_state = 9}, - [1611] = {.lex_state = 11}, - [1612] = {.lex_state = 10}, - [1613] = {.lex_state = 10}, - [1614] = {.lex_state = 11}, - [1615] = {.lex_state = 11}, - [1616] = {.lex_state = 10}, - [1617] = {.lex_state = 11}, - [1618] = {.lex_state = 10}, - [1619] = {.lex_state = 9}, - [1620] = {.lex_state = 9}, - [1621] = {.lex_state = 10}, - [1622] = {.lex_state = 10}, - [1623] = {.lex_state = 10}, - [1624] = {.lex_state = 10}, - [1625] = {.lex_state = 17}, - [1626] = {.lex_state = 10}, - [1627] = {.lex_state = 10}, - [1628] = {.lex_state = 10}, - [1629] = {.lex_state = 10}, - [1630] = {.lex_state = 10}, - [1631] = {.lex_state = 10}, - [1632] = {.lex_state = 17}, - [1633] = {.lex_state = 10}, - [1634] = {.lex_state = 10}, + [1608] = {.lex_state = 11}, + [1609] = {.lex_state = 9}, + [1610] = {.lex_state = 13, .external_lex_state = 2}, + [1611] = {.lex_state = 9}, + [1612] = {.lex_state = 11}, + [1613] = {.lex_state = 9}, + [1614] = {.lex_state = 9}, + [1615] = {.lex_state = 13, .external_lex_state = 2}, + [1616] = {.lex_state = 9}, + [1617] = {.lex_state = 17}, + [1618] = {.lex_state = 9}, + [1619] = {.lex_state = 13, .external_lex_state = 2}, + [1620] = {.lex_state = 17}, + [1621] = {.lex_state = 13, .external_lex_state = 2}, + [1622] = {.lex_state = 9}, + [1623] = {.lex_state = 17}, + [1624] = {.lex_state = 9}, + [1625] = {.lex_state = 9}, + [1626] = {.lex_state = 9}, + [1627] = {.lex_state = 9}, + [1628] = {.lex_state = 17}, + [1629] = {.lex_state = 13, .external_lex_state = 2}, + [1630] = {.lex_state = 11}, + [1631] = {.lex_state = 9}, + [1632] = {.lex_state = 9}, + [1633] = {.lex_state = 9}, + [1634] = {.lex_state = 9}, [1635] = {.lex_state = 9}, - [1636] = {.lex_state = 9}, + [1636] = {.lex_state = 13, .external_lex_state = 2}, [1637] = {.lex_state = 9}, - [1638] = {.lex_state = 9}, + [1638] = {.lex_state = 17}, [1639] = {.lex_state = 9}, [1640] = {.lex_state = 9}, [1641] = {.lex_state = 9}, - [1642] = {.lex_state = 9}, + [1642] = {.lex_state = 11}, [1643] = {.lex_state = 9}, - [1644] = {.lex_state = 9}, + [1644] = {.lex_state = 10}, [1645] = {.lex_state = 9}, - [1646] = {.lex_state = 9}, - [1647] = {.lex_state = 17}, - [1648] = {.lex_state = 9}, + [1646] = {.lex_state = 11}, + [1647] = {.lex_state = 11}, + [1648] = {.lex_state = 11}, [1649] = {.lex_state = 9}, - [1650] = {.lex_state = 9}, - [1651] = {.lex_state = 10}, - [1652] = {.lex_state = 17}, + [1650] = {.lex_state = 11}, + [1651] = {.lex_state = 9}, + [1652] = {.lex_state = 9}, [1653] = {.lex_state = 10}, - [1654] = {.lex_state = 22}, - [1655] = {.lex_state = 9}, - [1656] = {.lex_state = 10}, - [1657] = {.lex_state = 9}, - [1658] = {.lex_state = 22}, - [1659] = {.lex_state = 10}, - [1660] = {.lex_state = 22}, - [1661] = {.lex_state = 10}, - [1662] = {.lex_state = 22}, - [1663] = {.lex_state = 10}, - [1664] = {.lex_state = 22}, - [1665] = {.lex_state = 22}, + [1654] = {.lex_state = 10}, + [1655] = {.lex_state = 10}, + [1656] = {.lex_state = 9}, + [1657] = {.lex_state = 11}, + [1658] = {.lex_state = 9}, + [1659] = {.lex_state = 11}, + [1660] = {.lex_state = 10}, + [1661] = {.lex_state = 9}, + [1662] = {.lex_state = 11}, + [1663] = {.lex_state = 9}, + [1664] = {.lex_state = 11}, + [1665] = {.lex_state = 10}, [1666] = {.lex_state = 9}, - [1667] = {.lex_state = 10}, - [1668] = {.lex_state = 10}, - [1669] = {.lex_state = 10}, - [1670] = {.lex_state = 10}, + [1667] = {.lex_state = 9}, + [1668] = {.lex_state = 9}, + [1669] = {.lex_state = 9}, + [1670] = {.lex_state = 9}, [1671] = {.lex_state = 10}, - [1672] = {.lex_state = 10}, - [1673] = {.lex_state = 9}, + [1672] = {.lex_state = 9}, + [1673] = {.lex_state = 10}, [1674] = {.lex_state = 10}, [1675] = {.lex_state = 9}, - [1676] = {.lex_state = 9}, + [1676] = {.lex_state = 10}, [1677] = {.lex_state = 10}, [1678] = {.lex_state = 9}, - [1679] = {.lex_state = 9}, - [1680] = {.lex_state = 9}, - [1681] = {.lex_state = 10}, - [1682] = {.lex_state = 9}, + [1679] = {.lex_state = 10}, + [1680] = {.lex_state = 10}, + [1681] = {.lex_state = 9}, + [1682] = {.lex_state = 10}, [1683] = {.lex_state = 10}, - [1684] = {.lex_state = 9}, - [1685] = {.lex_state = 9}, - [1686] = {.lex_state = 9}, + [1684] = {.lex_state = 17}, + [1685] = {.lex_state = 17}, + [1686] = {.lex_state = 10}, [1687] = {.lex_state = 9}, - [1688] = {.lex_state = 22}, + [1688] = {.lex_state = 10}, [1689] = {.lex_state = 9}, - [1690] = {.lex_state = 22}, - [1691] = {.lex_state = 9}, - [1692] = {.lex_state = 10}, - [1693] = {.lex_state = 10}, + [1690] = {.lex_state = 17}, + [1691] = {.lex_state = 10}, + [1692] = {.lex_state = 9}, + [1693] = {.lex_state = 9}, [1694] = {.lex_state = 9}, [1695] = {.lex_state = 9}, - [1696] = {.lex_state = 9}, - [1697] = {.lex_state = 17}, - [1698] = {.lex_state = 11}, - [1699] = {.lex_state = 22}, + [1696] = {.lex_state = 10}, + [1697] = {.lex_state = 9}, + [1698] = {.lex_state = 17}, + [1699] = {.lex_state = 9}, [1700] = {.lex_state = 9}, - [1701] = {.lex_state = 9}, - [1702] = {.lex_state = 22}, - [1703] = {.lex_state = 9}, + [1701] = {.lex_state = 10}, + [1702] = {.lex_state = 10}, + [1703] = {.lex_state = 10}, [1704] = {.lex_state = 10}, [1705] = {.lex_state = 9}, - [1706] = {.lex_state = 10}, - [1707] = {.lex_state = 9}, - [1708] = {.lex_state = 22}, - [1709] = {.lex_state = 9}, + [1706] = {.lex_state = 11}, + [1707] = {.lex_state = 10}, + [1708] = {.lex_state = 10}, + [1709] = {.lex_state = 22}, [1710] = {.lex_state = 9}, [1711] = {.lex_state = 9}, - [1712] = {.lex_state = 22}, - [1713] = {.lex_state = 10}, - [1714] = {.lex_state = 9}, - [1715] = {.lex_state = 10}, - [1716] = {.lex_state = 9}, - [1717] = {.lex_state = 9}, - [1718] = {.lex_state = 10}, - [1719] = {.lex_state = 10}, - [1720] = {.lex_state = 10}, - [1721] = {.lex_state = 10}, + [1712] = {.lex_state = 9}, + [1713] = {.lex_state = 9}, + [1714] = {.lex_state = 22}, + [1715] = {.lex_state = 22}, + [1716] = {.lex_state = 22}, + [1717] = {.lex_state = 10}, + [1718] = {.lex_state = 9}, + [1719] = {.lex_state = 22}, + [1720] = {.lex_state = 9}, + [1721] = {.lex_state = 9}, [1722] = {.lex_state = 10}, - [1723] = {.lex_state = 9}, + [1723] = {.lex_state = 22}, [1724] = {.lex_state = 10}, - [1725] = {.lex_state = 10}, - [1726] = {.lex_state = 10}, + [1725] = {.lex_state = 9}, + [1726] = {.lex_state = 22}, [1727] = {.lex_state = 9}, [1728] = {.lex_state = 10}, - [1729] = {.lex_state = 10}, - [1730] = {.lex_state = 10}, + [1729] = {.lex_state = 22}, + [1730] = {.lex_state = 22}, [1731] = {.lex_state = 10}, [1732] = {.lex_state = 10}, [1733] = {.lex_state = 10}, [1734] = {.lex_state = 10}, - [1735] = {.lex_state = 10}, + [1735] = {.lex_state = 22}, [1736] = {.lex_state = 10}, - [1737] = {.lex_state = 10}, - [1738] = {.lex_state = 10}, - [1739] = {.lex_state = 9}, - [1740] = {.lex_state = 10}, + [1737] = {.lex_state = 17}, + [1738] = {.lex_state = 9}, + [1739] = {.lex_state = 10}, + [1740] = {.lex_state = 22}, [1741] = {.lex_state = 9}, [1742] = {.lex_state = 9}, - [1743] = {.lex_state = 10}, - [1744] = {.lex_state = 10}, - [1745] = {.lex_state = 10}, - [1746] = {.lex_state = 10}, - [1747] = {.lex_state = 10}, - [1748] = {.lex_state = 10}, - [1749] = {.lex_state = 10}, + [1743] = {.lex_state = 9}, + [1744] = {.lex_state = 9}, + [1745] = {.lex_state = 9}, + [1746] = {.lex_state = 9}, + [1747] = {.lex_state = 9}, + [1748] = {.lex_state = 9}, + [1749] = {.lex_state = 9}, [1750] = {.lex_state = 9}, [1751] = {.lex_state = 10}, [1752] = {.lex_state = 10}, - [1753] = {.lex_state = 10}, - [1754] = {.lex_state = 10}, + [1753] = {.lex_state = 22}, + [1754] = {.lex_state = 9}, [1755] = {.lex_state = 10}, [1756] = {.lex_state = 10}, - [1757] = {.lex_state = 10}, + [1757] = {.lex_state = 9}, [1758] = {.lex_state = 10}, [1759] = {.lex_state = 10}, [1760] = {.lex_state = 10}, - [1761] = {.lex_state = 10}, - [1762] = {.lex_state = 10}, - [1763] = {.lex_state = 10}, - [1764] = {.lex_state = 17}, - [1765] = {.lex_state = 10}, + [1761] = {.lex_state = 9}, + [1762] = {.lex_state = 9}, + [1763] = {.lex_state = 9}, + [1764] = {.lex_state = 10}, + [1765] = {.lex_state = 9}, [1766] = {.lex_state = 9}, [1767] = {.lex_state = 9}, - [1768] = {.lex_state = 9}, - [1769] = {.lex_state = 9}, + [1768] = {.lex_state = 10}, + [1769] = {.lex_state = 10}, [1770] = {.lex_state = 9}, [1771] = {.lex_state = 9}, - [1772] = {.lex_state = 9}, - [1773] = {.lex_state = 9}, - [1774] = {.lex_state = 9}, - [1775] = {.lex_state = 9}, - [1776] = {.lex_state = 9}, - [1777] = {.lex_state = 9}, - [1778] = {.lex_state = 9}, + [1772] = {.lex_state = 10}, + [1773] = {.lex_state = 10}, + [1774] = {.lex_state = 10}, + [1775] = {.lex_state = 10}, + [1776] = {.lex_state = 10}, + [1777] = {.lex_state = 10}, + [1778] = {.lex_state = 10}, [1779] = {.lex_state = 9}, [1780] = {.lex_state = 9}, - [1781] = {.lex_state = 9}, + [1781] = {.lex_state = 10}, [1782] = {.lex_state = 10}, - [1783] = {.lex_state = 10}, + [1783] = {.lex_state = 9}, [1784] = {.lex_state = 10}, - [1785] = {.lex_state = 10}, + [1785] = {.lex_state = 9}, [1786] = {.lex_state = 10}, [1787] = {.lex_state = 10}, [1788] = {.lex_state = 9}, [1789] = {.lex_state = 9}, - [1790] = {.lex_state = 10}, - [1791] = {.lex_state = 10}, - [1792] = {.lex_state = 10}, + [1790] = {.lex_state = 9}, + [1791] = {.lex_state = 9}, + [1792] = {.lex_state = 9}, [1793] = {.lex_state = 9}, - [1794] = {.lex_state = 10}, - [1795] = {.lex_state = 10}, - [1796] = {.lex_state = 10}, + [1794] = {.lex_state = 9}, + [1795] = {.lex_state = 9}, + [1796] = {.lex_state = 9}, [1797] = {.lex_state = 10}, [1798] = {.lex_state = 9}, [1799] = {.lex_state = 10}, @@ -12287,1245 +12546,1245 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1801] = {.lex_state = 10}, [1802] = {.lex_state = 10}, [1803] = {.lex_state = 10}, - [1804] = {.lex_state = 10}, + [1804] = {.lex_state = 9}, [1805] = {.lex_state = 10}, [1806] = {.lex_state = 10}, [1807] = {.lex_state = 10}, [1808] = {.lex_state = 10}, - [1809] = {.lex_state = 10}, + [1809] = {.lex_state = 9}, [1810] = {.lex_state = 10}, [1811] = {.lex_state = 10}, - [1812] = {.lex_state = 10}, + [1812] = {.lex_state = 9}, [1813] = {.lex_state = 10}, - [1814] = {.lex_state = 10}, - [1815] = {.lex_state = 10}, + [1814] = {.lex_state = 9}, + [1815] = {.lex_state = 9}, [1816] = {.lex_state = 9}, [1817] = {.lex_state = 9}, - [1818] = {.lex_state = 10}, - [1819] = {.lex_state = 10}, - [1820] = {.lex_state = 9}, + [1818] = {.lex_state = 9}, + [1819] = {.lex_state = 9}, + [1820] = {.lex_state = 10}, [1821] = {.lex_state = 10}, [1822] = {.lex_state = 10}, [1823] = {.lex_state = 10}, [1824] = {.lex_state = 10}, - [1825] = {.lex_state = 9}, + [1825] = {.lex_state = 10}, [1826] = {.lex_state = 10}, [1827] = {.lex_state = 10}, [1828] = {.lex_state = 10}, - [1829] = {.lex_state = 10}, - [1830] = {.lex_state = 10}, + [1829] = {.lex_state = 9}, + [1830] = {.lex_state = 9}, [1831] = {.lex_state = 10}, [1832] = {.lex_state = 10}, - [1833] = {.lex_state = 10}, - [1834] = {.lex_state = 10}, + [1833] = {.lex_state = 9}, + [1834] = {.lex_state = 9}, [1835] = {.lex_state = 10}, - [1836] = {.lex_state = 10}, - [1837] = {.lex_state = 10}, - [1838] = {.lex_state = 10}, + [1836] = {.lex_state = 9}, + [1837] = {.lex_state = 9}, + [1838] = {.lex_state = 9}, [1839] = {.lex_state = 9}, [1840] = {.lex_state = 10}, - [1841] = {.lex_state = 10}, + [1841] = {.lex_state = 9}, [1842] = {.lex_state = 10}, [1843] = {.lex_state = 10}, [1844] = {.lex_state = 10}, [1845] = {.lex_state = 10}, [1846] = {.lex_state = 10}, - [1847] = {.lex_state = 10}, + [1847] = {.lex_state = 9}, [1848] = {.lex_state = 9}, - [1849] = {.lex_state = 10}, - [1850] = {.lex_state = 10}, + [1849] = {.lex_state = 9}, + [1850] = {.lex_state = 9}, [1851] = {.lex_state = 10}, [1852] = {.lex_state = 10}, [1853] = {.lex_state = 10}, - [1854] = {.lex_state = 10}, + [1854] = {.lex_state = 9}, [1855] = {.lex_state = 10}, [1856] = {.lex_state = 10}, [1857] = {.lex_state = 10}, - [1858] = {.lex_state = 10}, + [1858] = {.lex_state = 9}, [1859] = {.lex_state = 10}, - [1860] = {.lex_state = 10}, - [1861] = {.lex_state = 10}, + [1860] = {.lex_state = 9}, + [1861] = {.lex_state = 9}, [1862] = {.lex_state = 10}, [1863] = {.lex_state = 10}, - [1864] = {.lex_state = 10}, - [1865] = {.lex_state = 10}, - [1866] = {.lex_state = 10}, + [1864] = {.lex_state = 9}, + [1865] = {.lex_state = 9}, + [1866] = {.lex_state = 9}, [1867] = {.lex_state = 9}, - [1868] = {.lex_state = 9}, + [1868] = {.lex_state = 10}, [1869] = {.lex_state = 9}, [1870] = {.lex_state = 10}, - [1871] = {.lex_state = 9}, - [1872] = {.lex_state = 10}, + [1871] = {.lex_state = 10}, + [1872] = {.lex_state = 9}, [1873] = {.lex_state = 9}, - [1874] = {.lex_state = 9}, - [1875] = {.lex_state = 10}, + [1874] = {.lex_state = 10}, + [1875] = {.lex_state = 9}, [1876] = {.lex_state = 9}, - [1877] = {.lex_state = 10}, - [1878] = {.lex_state = 10}, - [1879] = {.lex_state = 10}, + [1877] = {.lex_state = 9}, + [1878] = {.lex_state = 9}, + [1879] = {.lex_state = 9}, [1880] = {.lex_state = 9}, - [1881] = {.lex_state = 9}, - [1882] = {.lex_state = 9}, + [1881] = {.lex_state = 10}, + [1882] = {.lex_state = 10}, [1883] = {.lex_state = 9}, [1884] = {.lex_state = 9}, - [1885] = {.lex_state = 9}, + [1885] = {.lex_state = 10}, [1886] = {.lex_state = 9}, [1887] = {.lex_state = 9}, [1888] = {.lex_state = 9}, [1889] = {.lex_state = 9}, - [1890] = {.lex_state = 9}, - [1891] = {.lex_state = 9}, - [1892] = {.lex_state = 9}, - [1893] = {.lex_state = 9}, - [1894] = {.lex_state = 9}, - [1895] = {.lex_state = 9}, - [1896] = {.lex_state = 9}, - [1897] = {.lex_state = 9}, - [1898] = {.lex_state = 9}, - [1899] = {.lex_state = 9}, - [1900] = {.lex_state = 9}, - [1901] = {.lex_state = 9}, - [1902] = {.lex_state = 9}, - [1903] = {.lex_state = 9}, - [1904] = {.lex_state = 9}, - [1905] = {.lex_state = 9}, - [1906] = {.lex_state = 9}, - [1907] = {.lex_state = 9}, - [1908] = {.lex_state = 9}, - [1909] = {.lex_state = 9}, - [1910] = {.lex_state = 9}, - [1911] = {.lex_state = 9}, - [1912] = {.lex_state = 9}, + [1890] = {.lex_state = 10}, + [1891] = {.lex_state = 10}, + [1892] = {.lex_state = 10}, + [1893] = {.lex_state = 10}, + [1894] = {.lex_state = 10}, + [1895] = {.lex_state = 10}, + [1896] = {.lex_state = 10}, + [1897] = {.lex_state = 10}, + [1898] = {.lex_state = 10}, + [1899] = {.lex_state = 10}, + [1900] = {.lex_state = 10}, + [1901] = {.lex_state = 10}, + [1902] = {.lex_state = 10}, + [1903] = {.lex_state = 10}, + [1904] = {.lex_state = 10}, + [1905] = {.lex_state = 10}, + [1906] = {.lex_state = 10}, + [1907] = {.lex_state = 10}, + [1908] = {.lex_state = 10}, + [1909] = {.lex_state = 10}, + [1910] = {.lex_state = 10}, + [1911] = {.lex_state = 10}, + [1912] = {.lex_state = 10}, [1913] = {.lex_state = 9}, [1914] = {.lex_state = 9}, [1915] = {.lex_state = 9}, [1916] = {.lex_state = 9}, [1917] = {.lex_state = 9}, - [1918] = {.lex_state = 9}, - [1919] = {.lex_state = 9}, - [1920] = {.lex_state = 10}, + [1918] = {.lex_state = 10}, + [1919] = {.lex_state = 10}, + [1920] = {.lex_state = 9}, [1921] = {.lex_state = 10}, - [1922] = {.lex_state = 10}, + [1922] = {.lex_state = 9}, [1923] = {.lex_state = 10}, [1924] = {.lex_state = 10}, [1925] = {.lex_state = 10}, - [1926] = {.lex_state = 10}, - [1927] = {.lex_state = 17}, - [1928] = {.lex_state = 10}, - [1929] = {.lex_state = 9}, + [1926] = {.lex_state = 9}, + [1927] = {.lex_state = 10}, + [1928] = {.lex_state = 9}, + [1929] = {.lex_state = 10}, [1930] = {.lex_state = 10}, - [1931] = {.lex_state = 9}, + [1931] = {.lex_state = 10}, [1932] = {.lex_state = 10}, - [1933] = {.lex_state = 9}, - [1934] = {.lex_state = 9}, - [1935] = {.lex_state = 9}, + [1933] = {.lex_state = 10}, + [1934] = {.lex_state = 10}, + [1935] = {.lex_state = 10}, [1936] = {.lex_state = 10}, - [1937] = {.lex_state = 17}, + [1937] = {.lex_state = 10}, [1938] = {.lex_state = 9}, - [1939] = {.lex_state = 9}, - [1940] = {.lex_state = 9}, - [1941] = {.lex_state = 9}, + [1939] = {.lex_state = 10}, + [1940] = {.lex_state = 10}, + [1941] = {.lex_state = 10}, [1942] = {.lex_state = 9}, [1943] = {.lex_state = 9}, - [1944] = {.lex_state = 9}, - [1945] = {.lex_state = 17}, - [1946] = {.lex_state = 9}, - [1947] = {.lex_state = 9}, - [1948] = {.lex_state = 9}, - [1949] = {.lex_state = 17}, + [1944] = {.lex_state = 10}, + [1945] = {.lex_state = 10}, + [1946] = {.lex_state = 10}, + [1947] = {.lex_state = 10}, + [1948] = {.lex_state = 10}, + [1949] = {.lex_state = 10}, [1950] = {.lex_state = 9}, - [1951] = {.lex_state = 9}, - [1952] = {.lex_state = 10}, - [1953] = {.lex_state = 17}, - [1954] = {.lex_state = 9}, + [1951] = {.lex_state = 10}, + [1952] = {.lex_state = 9}, + [1953] = {.lex_state = 10}, + [1954] = {.lex_state = 10}, [1955] = {.lex_state = 10}, - [1956] = {.lex_state = 9}, - [1957] = {.lex_state = 10}, - [1958] = {.lex_state = 9}, + [1956] = {.lex_state = 10}, + [1957] = {.lex_state = 9}, + [1958] = {.lex_state = 10}, [1959] = {.lex_state = 9}, - [1960] = {.lex_state = 9}, - [1961] = {.lex_state = 17}, - [1962] = {.lex_state = 9}, - [1963] = {.lex_state = 9}, + [1960] = {.lex_state = 10}, + [1961] = {.lex_state = 9}, + [1962] = {.lex_state = 10}, + [1963] = {.lex_state = 17}, [1964] = {.lex_state = 9}, - [1965] = {.lex_state = 9}, - [1966] = {.lex_state = 9}, - [1967] = {.lex_state = 9}, + [1965] = {.lex_state = 10}, + [1966] = {.lex_state = 10}, + [1967] = {.lex_state = 10}, [1968] = {.lex_state = 9}, - [1969] = {.lex_state = 9}, - [1970] = {.lex_state = 9}, - [1971] = {.lex_state = 9}, - [1972] = {.lex_state = 9}, - [1973] = {.lex_state = 9}, - [1974] = {.lex_state = 17}, - [1975] = {.lex_state = 17}, + [1969] = {.lex_state = 10}, + [1970] = {.lex_state = 10}, + [1971] = {.lex_state = 10}, + [1972] = {.lex_state = 10}, + [1973] = {.lex_state = 10}, + [1974] = {.lex_state = 10}, + [1975] = {.lex_state = 10}, [1976] = {.lex_state = 17}, - [1977] = {.lex_state = 17}, - [1978] = {.lex_state = 17}, - [1979] = {.lex_state = 17}, - [1980] = {.lex_state = 17}, - [1981] = {.lex_state = 17}, - [1982] = {.lex_state = 17}, - [1983] = {.lex_state = 17}, - [1984] = {.lex_state = 17}, - [1985] = {.lex_state = 17}, - [1986] = {.lex_state = 17}, + [1977] = {.lex_state = 9}, + [1978] = {.lex_state = 9}, + [1979] = {.lex_state = 10}, + [1980] = {.lex_state = 9}, + [1981] = {.lex_state = 10}, + [1982] = {.lex_state = 9}, + [1983] = {.lex_state = 10}, + [1984] = {.lex_state = 9}, + [1985] = {.lex_state = 10}, + [1986] = {.lex_state = 10}, [1987] = {.lex_state = 17}, - [1988] = {.lex_state = 17}, - [1989] = {.lex_state = 17}, - [1990] = {.lex_state = 17}, - [1991] = {.lex_state = 17}, - [1992] = {.lex_state = 17}, + [1988] = {.lex_state = 9}, + [1989] = {.lex_state = 9}, + [1990] = {.lex_state = 9}, + [1991] = {.lex_state = 9}, + [1992] = {.lex_state = 9}, [1993] = {.lex_state = 17}, - [1994] = {.lex_state = 17}, - [1995] = {.lex_state = 17}, - [1996] = {.lex_state = 31}, - [1997] = {.lex_state = 31}, - [1998] = {.lex_state = 18}, - [1999] = {.lex_state = 18}, - [2000] = {.lex_state = 18}, - [2001] = {.lex_state = 18}, - [2002] = {.lex_state = 18}, - [2003] = {.lex_state = 18}, - [2004] = {.lex_state = 18}, - [2005] = {.lex_state = 17}, - [2006] = {.lex_state = 17}, - [2007] = {.lex_state = 18}, - [2008] = {.lex_state = 18}, - [2009] = {.lex_state = 18}, - [2010] = {.lex_state = 17}, - [2011] = {.lex_state = 18}, - [2012] = {.lex_state = 18}, + [1994] = {.lex_state = 9}, + [1995] = {.lex_state = 9}, + [1996] = {.lex_state = 9}, + [1997] = {.lex_state = 9}, + [1998] = {.lex_state = 10}, + [1999] = {.lex_state = 9}, + [2000] = {.lex_state = 9}, + [2001] = {.lex_state = 10}, + [2002] = {.lex_state = 9}, + [2003] = {.lex_state = 9}, + [2004] = {.lex_state = 9}, + [2005] = {.lex_state = 9}, + [2006] = {.lex_state = 9}, + [2007] = {.lex_state = 9}, + [2008] = {.lex_state = 10}, + [2009] = {.lex_state = 17}, + [2010] = {.lex_state = 9}, + [2011] = {.lex_state = 9}, + [2012] = {.lex_state = 9}, [2013] = {.lex_state = 17}, - [2014] = {.lex_state = 17}, - [2015] = {.lex_state = 31}, - [2016] = {.lex_state = 17}, - [2017] = {.lex_state = 18}, - [2018] = {.lex_state = 13, .external_lex_state = 2}, - [2019] = {.lex_state = 17}, - [2020] = {.lex_state = 17}, - [2021] = {.lex_state = 17}, - [2022] = {.lex_state = 18}, - [2023] = {.lex_state = 17}, - [2024] = {.lex_state = 17}, - [2025] = {.lex_state = 18}, - [2026] = {.lex_state = 17}, - [2027] = {.lex_state = 17}, - [2028] = {.lex_state = 31}, - [2029] = {.lex_state = 31}, - [2030] = {.lex_state = 31}, - [2031] = {.lex_state = 31}, + [2014] = {.lex_state = 9}, + [2015] = {.lex_state = 9}, + [2016] = {.lex_state = 9}, + [2017] = {.lex_state = 9}, + [2018] = {.lex_state = 17}, + [2019] = {.lex_state = 9}, + [2020] = {.lex_state = 9}, + [2021] = {.lex_state = 9}, + [2022] = {.lex_state = 9}, + [2023] = {.lex_state = 9}, + [2024] = {.lex_state = 9}, + [2025] = {.lex_state = 17}, + [2026] = {.lex_state = 9}, + [2027] = {.lex_state = 9}, + [2028] = {.lex_state = 9}, + [2029] = {.lex_state = 17}, + [2030] = {.lex_state = 9}, + [2031] = {.lex_state = 9}, [2032] = {.lex_state = 17}, - [2033] = {.lex_state = 31}, + [2033] = {.lex_state = 17}, [2034] = {.lex_state = 17}, - [2035] = {.lex_state = 17}, - [2036] = {.lex_state = 18}, - [2037] = {.lex_state = 18}, - [2038] = {.lex_state = 31}, + [2035] = {.lex_state = 9}, + [2036] = {.lex_state = 9}, + [2037] = {.lex_state = 17}, + [2038] = {.lex_state = 17}, [2039] = {.lex_state = 17}, [2040] = {.lex_state = 17}, - [2041] = {.lex_state = 31}, + [2041] = {.lex_state = 17}, [2042] = {.lex_state = 17}, - [2043] = {.lex_state = 18}, - [2044] = {.lex_state = 31}, - [2045] = {.lex_state = 31}, - [2046] = {.lex_state = 31}, + [2043] = {.lex_state = 17}, + [2044] = {.lex_state = 17}, + [2045] = {.lex_state = 17}, + [2046] = {.lex_state = 17}, [2047] = {.lex_state = 17}, - [2048] = {.lex_state = 31}, - [2049] = {.lex_state = 31}, + [2048] = {.lex_state = 17}, + [2049] = {.lex_state = 17}, [2050] = {.lex_state = 17}, - [2051] = {.lex_state = 18}, - [2052] = {.lex_state = 31}, + [2051] = {.lex_state = 17}, + [2052] = {.lex_state = 17}, [2053] = {.lex_state = 17}, - [2054] = {.lex_state = 18}, + [2054] = {.lex_state = 31}, [2055] = {.lex_state = 31}, - [2056] = {.lex_state = 31}, - [2057] = {.lex_state = 31}, - [2058] = {.lex_state = 31}, - [2059] = {.lex_state = 31}, - [2060] = {.lex_state = 17}, - [2061] = {.lex_state = 31}, - [2062] = {.lex_state = 31}, - [2063] = {.lex_state = 31}, - [2064] = {.lex_state = 31}, - [2065] = {.lex_state = 31}, - [2066] = {.lex_state = 31}, + [2056] = {.lex_state = 18}, + [2057] = {.lex_state = 18}, + [2058] = {.lex_state = 18}, + [2059] = {.lex_state = 18}, + [2060] = {.lex_state = 18}, + [2061] = {.lex_state = 18}, + [2062] = {.lex_state = 18}, + [2063] = {.lex_state = 17}, + [2064] = {.lex_state = 17}, + [2065] = {.lex_state = 18}, + [2066] = {.lex_state = 18}, [2067] = {.lex_state = 17}, - [2068] = {.lex_state = 31}, - [2069] = {.lex_state = 31}, - [2070] = {.lex_state = 17}, - [2071] = {.lex_state = 17}, - [2072] = {.lex_state = 31}, - [2073] = {.lex_state = 31}, + [2068] = {.lex_state = 17}, + [2069] = {.lex_state = 18}, + [2070] = {.lex_state = 18}, + [2071] = {.lex_state = 18}, + [2072] = {.lex_state = 17}, + [2073] = {.lex_state = 17}, [2074] = {.lex_state = 31}, - [2075] = {.lex_state = 31}, - [2076] = {.lex_state = 31}, - [2077] = {.lex_state = 31}, - [2078] = {.lex_state = 31}, - [2079] = {.lex_state = 31}, - [2080] = {.lex_state = 31}, - [2081] = {.lex_state = 31}, - [2082] = {.lex_state = 31}, - [2083] = {.lex_state = 31}, - [2084] = {.lex_state = 31}, + [2075] = {.lex_state = 17}, + [2076] = {.lex_state = 17}, + [2077] = {.lex_state = 18}, + [2078] = {.lex_state = 13, .external_lex_state = 2}, + [2079] = {.lex_state = 17}, + [2080] = {.lex_state = 18}, + [2081] = {.lex_state = 18}, + [2082] = {.lex_state = 17}, + [2083] = {.lex_state = 17}, + [2084] = {.lex_state = 17}, [2085] = {.lex_state = 31}, [2086] = {.lex_state = 31}, [2087] = {.lex_state = 31}, - [2088] = {.lex_state = 31}, - [2089] = {.lex_state = 17}, + [2088] = {.lex_state = 17}, + [2089] = {.lex_state = 31}, [2090] = {.lex_state = 31}, [2091] = {.lex_state = 31}, - [2092] = {.lex_state = 31}, + [2092] = {.lex_state = 17}, [2093] = {.lex_state = 31}, - [2094] = {.lex_state = 31}, - [2095] = {.lex_state = 17}, - [2096] = {.lex_state = 17}, + [2094] = {.lex_state = 17}, + [2095] = {.lex_state = 18}, + [2096] = {.lex_state = 18}, [2097] = {.lex_state = 17}, [2098] = {.lex_state = 17}, - [2099] = {.lex_state = 17}, - [2100] = {.lex_state = 17}, + [2099] = {.lex_state = 31}, + [2100] = {.lex_state = 31}, [2101] = {.lex_state = 17}, - [2102] = {.lex_state = 17}, - [2103] = {.lex_state = 18}, - [2104] = {.lex_state = 18}, - [2105] = {.lex_state = 18}, - [2106] = {.lex_state = 18}, + [2102] = {.lex_state = 31}, + [2103] = {.lex_state = 17}, + [2104] = {.lex_state = 31}, + [2105] = {.lex_state = 31}, + [2106] = {.lex_state = 17}, [2107] = {.lex_state = 18}, [2108] = {.lex_state = 31}, [2109] = {.lex_state = 18}, - [2110] = {.lex_state = 31}, - [2111] = {.lex_state = 18}, - [2112] = {.lex_state = 18}, - [2113] = {.lex_state = 18}, - [2114] = {.lex_state = 18}, - [2115] = {.lex_state = 18}, - [2116] = {.lex_state = 19}, + [2110] = {.lex_state = 17}, + [2111] = {.lex_state = 17}, + [2112] = {.lex_state = 31}, + [2113] = {.lex_state = 31}, + [2114] = {.lex_state = 31}, + [2115] = {.lex_state = 31}, + [2116] = {.lex_state = 31}, [2117] = {.lex_state = 17}, - [2118] = {.lex_state = 18}, - [2119] = {.lex_state = 18}, - [2120] = {.lex_state = 17}, - [2121] = {.lex_state = 17}, - [2122] = {.lex_state = 17}, - [2123] = {.lex_state = 17}, - [2124] = {.lex_state = 17}, - [2125] = {.lex_state = 17}, - [2126] = {.lex_state = 17}, - [2127] = {.lex_state = 17}, - [2128] = {.lex_state = 17}, - [2129] = {.lex_state = 17}, - [2130] = {.lex_state = 19}, - [2131] = {.lex_state = 31}, - [2132] = {.lex_state = 17}, - [2133] = {.lex_state = 18}, - [2134] = {.lex_state = 17}, - [2135] = {.lex_state = 17}, - [2136] = {.lex_state = 17}, - [2137] = {.lex_state = 17}, - [2138] = {.lex_state = 27}, - [2139] = {.lex_state = 17}, - [2140] = {.lex_state = 18}, - [2141] = {.lex_state = 19}, - [2142] = {.lex_state = 18}, - [2143] = {.lex_state = 24}, + [2118] = {.lex_state = 17}, + [2119] = {.lex_state = 31}, + [2120] = {.lex_state = 31}, + [2121] = {.lex_state = 31}, + [2122] = {.lex_state = 31}, + [2123] = {.lex_state = 31}, + [2124] = {.lex_state = 31}, + [2125] = {.lex_state = 31}, + [2126] = {.lex_state = 31}, + [2127] = {.lex_state = 31}, + [2128] = {.lex_state = 31}, + [2129] = {.lex_state = 31}, + [2130] = {.lex_state = 17}, + [2131] = {.lex_state = 17}, + [2132] = {.lex_state = 31}, + [2133] = {.lex_state = 31}, + [2134] = {.lex_state = 31}, + [2135] = {.lex_state = 31}, + [2136] = {.lex_state = 31}, + [2137] = {.lex_state = 31}, + [2138] = {.lex_state = 31}, + [2139] = {.lex_state = 18}, + [2140] = {.lex_state = 31}, + [2141] = {.lex_state = 31}, + [2142] = {.lex_state = 31}, + [2143] = {.lex_state = 31}, [2144] = {.lex_state = 31}, - [2145] = {.lex_state = 17}, - [2146] = {.lex_state = 17}, + [2145] = {.lex_state = 31}, + [2146] = {.lex_state = 31}, [2147] = {.lex_state = 17}, - [2148] = {.lex_state = 27}, + [2148] = {.lex_state = 31}, [2149] = {.lex_state = 31}, - [2150] = {.lex_state = 17}, - [2151] = {.lex_state = 18}, - [2152] = {.lex_state = 24}, + [2150] = {.lex_state = 31}, + [2151] = {.lex_state = 31}, + [2152] = {.lex_state = 17}, [2153] = {.lex_state = 17}, - [2154] = {.lex_state = 17}, - [2155] = {.lex_state = 18}, - [2156] = {.lex_state = 18}, - [2157] = {.lex_state = 18}, - [2158] = {.lex_state = 18}, - [2159] = {.lex_state = 19}, - [2160] = {.lex_state = 18}, + [2154] = {.lex_state = 31}, + [2155] = {.lex_state = 17}, + [2156] = {.lex_state = 17}, + [2157] = {.lex_state = 17}, + [2158] = {.lex_state = 17}, + [2159] = {.lex_state = 17}, + [2160] = {.lex_state = 17}, [2161] = {.lex_state = 18}, [2162] = {.lex_state = 18}, - [2163] = {.lex_state = 19}, + [2163] = {.lex_state = 18}, [2164] = {.lex_state = 17}, - [2165] = {.lex_state = 18}, + [2165] = {.lex_state = 31}, [2166] = {.lex_state = 17}, [2167] = {.lex_state = 17}, [2168] = {.lex_state = 17}, - [2169] = {.lex_state = 17}, - [2170] = {.lex_state = 31}, - [2171] = {.lex_state = 24}, - [2172] = {.lex_state = 31}, + [2169] = {.lex_state = 31}, + [2170] = {.lex_state = 18}, + [2171] = {.lex_state = 19}, + [2172] = {.lex_state = 17}, [2173] = {.lex_state = 18}, [2174] = {.lex_state = 17}, - [2175] = {.lex_state = 17}, - [2176] = {.lex_state = 24}, + [2175] = {.lex_state = 18}, + [2176] = {.lex_state = 18}, [2177] = {.lex_state = 17}, - [2178] = {.lex_state = 31}, - [2179] = {.lex_state = 31}, - [2180] = {.lex_state = 31}, - [2181] = {.lex_state = 31}, - [2182] = {.lex_state = 31}, - [2183] = {.lex_state = 31}, - [2184] = {.lex_state = 31}, - [2185] = {.lex_state = 31}, - [2186] = {.lex_state = 31}, - [2187] = {.lex_state = 31}, - [2188] = {.lex_state = 31}, - [2189] = {.lex_state = 31}, - [2190] = {.lex_state = 31}, - [2191] = {.lex_state = 31}, - [2192] = {.lex_state = 31}, - [2193] = {.lex_state = 31}, - [2194] = {.lex_state = 31}, - [2195] = {.lex_state = 31}, - [2196] = {.lex_state = 18}, + [2178] = {.lex_state = 18}, + [2179] = {.lex_state = 18}, + [2180] = {.lex_state = 18}, + [2181] = {.lex_state = 18}, + [2182] = {.lex_state = 18}, + [2183] = {.lex_state = 18}, + [2184] = {.lex_state = 17}, + [2185] = {.lex_state = 17}, + [2186] = {.lex_state = 17}, + [2187] = {.lex_state = 17}, + [2188] = {.lex_state = 17}, + [2189] = {.lex_state = 27}, + [2190] = {.lex_state = 17}, + [2191] = {.lex_state = 17}, + [2192] = {.lex_state = 17}, + [2193] = {.lex_state = 17}, + [2194] = {.lex_state = 27}, + [2195] = {.lex_state = 17}, + [2196] = {.lex_state = 17}, [2197] = {.lex_state = 18}, - [2198] = {.lex_state = 31}, - [2199] = {.lex_state = 19}, + [2198] = {.lex_state = 27}, + [2199] = {.lex_state = 17}, [2200] = {.lex_state = 17}, - [2201] = {.lex_state = 31}, - [2202] = {.lex_state = 27}, - [2203] = {.lex_state = 27}, - [2204] = {.lex_state = 31}, - [2205] = {.lex_state = 31}, - [2206] = {.lex_state = 18}, + [2201] = {.lex_state = 17}, + [2202] = {.lex_state = 31}, + [2203] = {.lex_state = 17}, + [2204] = {.lex_state = 17}, + [2205] = {.lex_state = 24}, + [2206] = {.lex_state = 17}, [2207] = {.lex_state = 31}, [2208] = {.lex_state = 18}, [2209] = {.lex_state = 17}, - [2210] = {.lex_state = 31}, - [2211] = {.lex_state = 31}, - [2212] = {.lex_state = 27}, + [2210] = {.lex_state = 17}, + [2211] = {.lex_state = 18}, + [2212] = {.lex_state = 18}, [2213] = {.lex_state = 31}, - [2214] = {.lex_state = 31}, - [2215] = {.lex_state = 27}, - [2216] = {.lex_state = 31}, - [2217] = {.lex_state = 31}, - [2218] = {.lex_state = 31}, - [2219] = {.lex_state = 31}, - [2220] = {.lex_state = 31}, - [2221] = {.lex_state = 31}, + [2214] = {.lex_state = 17}, + [2215] = {.lex_state = 24}, + [2216] = {.lex_state = 17}, + [2217] = {.lex_state = 17}, + [2218] = {.lex_state = 17}, + [2219] = {.lex_state = 17}, + [2220] = {.lex_state = 27}, + [2221] = {.lex_state = 17}, [2222] = {.lex_state = 18}, - [2223] = {.lex_state = 18}, - [2224] = {.lex_state = 12}, - [2225] = {.lex_state = 31}, + [2223] = {.lex_state = 31}, + [2224] = {.lex_state = 24}, + [2225] = {.lex_state = 18}, [2226] = {.lex_state = 18}, - [2227] = {.lex_state = 31}, - [2228] = {.lex_state = 17}, - [2229] = {.lex_state = 31}, - [2230] = {.lex_state = 31}, - [2231] = {.lex_state = 17}, - [2232] = {.lex_state = 19}, - [2233] = {.lex_state = 31}, - [2234] = {.lex_state = 31}, - [2235] = {.lex_state = 17}, - [2236] = {.lex_state = 8}, + [2227] = {.lex_state = 24}, + [2228] = {.lex_state = 18}, + [2229] = {.lex_state = 18}, + [2230] = {.lex_state = 17}, + [2231] = {.lex_state = 27}, + [2232] = {.lex_state = 18}, + [2233] = {.lex_state = 18}, + [2234] = {.lex_state = 19}, + [2235] = {.lex_state = 19}, + [2236] = {.lex_state = 18}, [2237] = {.lex_state = 19}, - [2238] = {.lex_state = 17}, - [2239] = {.lex_state = 31}, + [2238] = {.lex_state = 19}, + [2239] = {.lex_state = 18}, [2240] = {.lex_state = 17}, - [2241] = {.lex_state = 19}, - [2242] = {.lex_state = 8}, - [2243] = {.lex_state = 17}, - [2244] = {.lex_state = 17}, - [2245] = {.lex_state = 17}, - [2246] = {.lex_state = 17}, - [2247] = {.lex_state = 17}, - [2248] = {.lex_state = 17}, - [2249] = {.lex_state = 17}, - [2250] = {.lex_state = 17}, - [2251] = {.lex_state = 19}, - [2252] = {.lex_state = 31}, + [2241] = {.lex_state = 31}, + [2242] = {.lex_state = 27}, + [2243] = {.lex_state = 31}, + [2244] = {.lex_state = 31}, + [2245] = {.lex_state = 31}, + [2246] = {.lex_state = 31}, + [2247] = {.lex_state = 31}, + [2248] = {.lex_state = 31}, + [2249] = {.lex_state = 31}, + [2250] = {.lex_state = 31}, + [2251] = {.lex_state = 17}, + [2252] = {.lex_state = 27}, [2253] = {.lex_state = 17}, [2254] = {.lex_state = 17}, [2255] = {.lex_state = 31}, - [2256] = {.lex_state = 17}, - [2257] = {.lex_state = 17}, - [2258] = {.lex_state = 31}, - [2259] = {.lex_state = 12}, - [2260] = {.lex_state = 8}, - [2261] = {.lex_state = 17}, - [2262] = {.lex_state = 17}, - [2263] = {.lex_state = 17}, - [2264] = {.lex_state = 17}, - [2265] = {.lex_state = 27}, - [2266] = {.lex_state = 17}, - [2267] = {.lex_state = 31}, - [2268] = {.lex_state = 18}, + [2256] = {.lex_state = 31}, + [2257] = {.lex_state = 31}, + [2258] = {.lex_state = 18}, + [2259] = {.lex_state = 18}, + [2260] = {.lex_state = 31}, + [2261] = {.lex_state = 31}, + [2262] = {.lex_state = 31}, + [2263] = {.lex_state = 12}, + [2264] = {.lex_state = 31}, + [2265] = {.lex_state = 19}, + [2266] = {.lex_state = 31}, + [2267] = {.lex_state = 17}, + [2268] = {.lex_state = 31}, [2269] = {.lex_state = 17}, - [2270] = {.lex_state = 31}, - [2271] = {.lex_state = 12}, - [2272] = {.lex_state = 17}, - [2273] = {.lex_state = 17}, - [2274] = {.lex_state = 12}, - [2275] = {.lex_state = 12}, - [2276] = {.lex_state = 17}, - [2277] = {.lex_state = 31}, - [2278] = {.lex_state = 31}, - [2279] = {.lex_state = 72}, - [2280] = {.lex_state = 31}, - [2281] = {.lex_state = 17}, - [2282] = {.lex_state = 31}, - [2283] = {.lex_state = 19}, + [2270] = {.lex_state = 18}, + [2271] = {.lex_state = 31}, + [2272] = {.lex_state = 31}, + [2273] = {.lex_state = 18}, + [2274] = {.lex_state = 31}, + [2275] = {.lex_state = 31}, + [2276] = {.lex_state = 31}, + [2277] = {.lex_state = 18}, + [2278] = {.lex_state = 18}, + [2279] = {.lex_state = 31}, + [2280] = {.lex_state = 17}, + [2281] = {.lex_state = 31}, + [2282] = {.lex_state = 17}, + [2283] = {.lex_state = 31}, [2284] = {.lex_state = 17}, - [2285] = {.lex_state = 27}, - [2286] = {.lex_state = 17}, - [2287] = {.lex_state = 17}, - [2288] = {.lex_state = 27}, - [2289] = {.lex_state = 17}, - [2290] = {.lex_state = 17}, - [2291] = {.lex_state = 17}, + [2285] = {.lex_state = 31}, + [2286] = {.lex_state = 31}, + [2287] = {.lex_state = 31}, + [2288] = {.lex_state = 31}, + [2289] = {.lex_state = 31}, + [2290] = {.lex_state = 31}, + [2291] = {.lex_state = 31}, [2292] = {.lex_state = 17}, - [2293] = {.lex_state = 17}, - [2294] = {.lex_state = 17}, - [2295] = {.lex_state = 17}, - [2296] = {.lex_state = 24}, - [2297] = {.lex_state = 27}, - [2298] = {.lex_state = 27}, - [2299] = {.lex_state = 17}, + [2293] = {.lex_state = 31}, + [2294] = {.lex_state = 31}, + [2295] = {.lex_state = 31}, + [2296] = {.lex_state = 31}, + [2297] = {.lex_state = 31}, + [2298] = {.lex_state = 17}, + [2299] = {.lex_state = 18}, [2300] = {.lex_state = 17}, - [2301] = {.lex_state = 17}, + [2301] = {.lex_state = 31}, [2302] = {.lex_state = 17}, - [2303] = {.lex_state = 17}, + [2303] = {.lex_state = 19}, [2304] = {.lex_state = 17}, [2305] = {.lex_state = 17}, - [2306] = {.lex_state = 17}, - [2307] = {.lex_state = 27}, - [2308] = {.lex_state = 27}, - [2309] = {.lex_state = 17}, - [2310] = {.lex_state = 17}, + [2306] = {.lex_state = 31}, + [2307] = {.lex_state = 31}, + [2308] = {.lex_state = 17}, + [2309] = {.lex_state = 18}, + [2310] = {.lex_state = 8}, [2311] = {.lex_state = 12}, - [2312] = {.lex_state = 17}, + [2312] = {.lex_state = 31}, [2313] = {.lex_state = 17}, - [2314] = {.lex_state = 17}, + [2314] = {.lex_state = 31}, [2315] = {.lex_state = 17}, - [2316] = {.lex_state = 27}, - [2317] = {.lex_state = 17}, + [2316] = {.lex_state = 17}, + [2317] = {.lex_state = 31}, [2318] = {.lex_state = 17}, - [2319] = {.lex_state = 17}, - [2320] = {.lex_state = 17}, - [2321] = {.lex_state = 17}, - [2322] = {.lex_state = 27}, - [2323] = {.lex_state = 27}, + [2319] = {.lex_state = 31}, + [2320] = {.lex_state = 31}, + [2321] = {.lex_state = 19}, + [2322] = {.lex_state = 12}, + [2323] = {.lex_state = 17}, [2324] = {.lex_state = 17}, - [2325] = {.lex_state = 27}, - [2326] = {.lex_state = 17}, + [2325] = {.lex_state = 31}, + [2326] = {.lex_state = 8}, [2327] = {.lex_state = 17}, - [2328] = {.lex_state = 17}, - [2329] = {.lex_state = 27}, - [2330] = {.lex_state = 17}, - [2331] = {.lex_state = 27}, - [2332] = {.lex_state = 17}, - [2333] = {.lex_state = 17}, + [2328] = {.lex_state = 19}, + [2329] = {.lex_state = 72}, + [2330] = {.lex_state = 31}, + [2331] = {.lex_state = 12}, + [2332] = {.lex_state = 19}, + [2333] = {.lex_state = 8}, [2334] = {.lex_state = 17}, - [2335] = {.lex_state = 17}, - [2336] = {.lex_state = 17}, - [2337] = {.lex_state = 17}, - [2338] = {.lex_state = 72}, - [2339] = {.lex_state = 72}, - [2340] = {.lex_state = 31}, - [2341] = {.lex_state = 72}, - [2342] = {.lex_state = 72}, - [2343] = {.lex_state = 19}, - [2344] = {.lex_state = 72}, - [2345] = {.lex_state = 72}, - [2346] = {.lex_state = 72}, - [2347] = {.lex_state = 17}, - [2348] = {.lex_state = 27}, + [2335] = {.lex_state = 31}, + [2336] = {.lex_state = 19}, + [2337] = {.lex_state = 12}, + [2338] = {.lex_state = 17}, + [2339] = {.lex_state = 17}, + [2340] = {.lex_state = 17}, + [2341] = {.lex_state = 31}, + [2342] = {.lex_state = 17}, + [2343] = {.lex_state = 17}, + [2344] = {.lex_state = 17}, + [2345] = {.lex_state = 27}, + [2346] = {.lex_state = 24}, + [2347] = {.lex_state = 27}, + [2348] = {.lex_state = 17}, [2349] = {.lex_state = 17}, - [2350] = {.lex_state = 27}, - [2351] = {.lex_state = 72}, - [2352] = {.lex_state = 72}, - [2353] = {.lex_state = 72}, - [2354] = {.lex_state = 72}, - [2355] = {.lex_state = 72}, - [2356] = {.lex_state = 5}, - [2357] = {.lex_state = 5}, - [2358] = {.lex_state = 12}, - [2359] = {.lex_state = 12}, - [2360] = {.lex_state = 17}, + [2350] = {.lex_state = 17}, + [2351] = {.lex_state = 17}, + [2352] = {.lex_state = 17}, + [2353] = {.lex_state = 17}, + [2354] = {.lex_state = 27}, + [2355] = {.lex_state = 27}, + [2356] = {.lex_state = 27}, + [2357] = {.lex_state = 27}, + [2358] = {.lex_state = 27}, + [2359] = {.lex_state = 17}, + [2360] = {.lex_state = 27}, [2361] = {.lex_state = 17}, - [2362] = {.lex_state = 72}, + [2362] = {.lex_state = 17}, [2363] = {.lex_state = 17}, - [2364] = {.lex_state = 72}, - [2365] = {.lex_state = 72}, + [2364] = {.lex_state = 27}, + [2365] = {.lex_state = 17}, [2366] = {.lex_state = 17}, - [2367] = {.lex_state = 31}, - [2368] = {.lex_state = 72}, + [2367] = {.lex_state = 17}, + [2368] = {.lex_state = 17}, [2369] = {.lex_state = 27}, [2370] = {.lex_state = 17}, - [2371] = {.lex_state = 27}, + [2371] = {.lex_state = 17}, [2372] = {.lex_state = 17}, - [2373] = {.lex_state = 17}, - [2374] = {.lex_state = 72}, - [2375] = {.lex_state = 27}, - [2376] = {.lex_state = 169}, - [2377] = {.lex_state = 12}, - [2378] = {.lex_state = 72}, - [2379] = {.lex_state = 72}, - [2380] = {.lex_state = 72}, - [2381] = {.lex_state = 27}, - [2382] = {.lex_state = 72}, - [2383] = {.lex_state = 27}, + [2373] = {.lex_state = 27}, + [2374] = {.lex_state = 27}, + [2375] = {.lex_state = 17}, + [2376] = {.lex_state = 17}, + [2377] = {.lex_state = 17}, + [2378] = {.lex_state = 17}, + [2379] = {.lex_state = 12}, + [2380] = {.lex_state = 17}, + [2381] = {.lex_state = 17}, + [2382] = {.lex_state = 17}, + [2383] = {.lex_state = 17}, [2384] = {.lex_state = 17}, - [2385] = {.lex_state = 72}, + [2385] = {.lex_state = 17}, [2386] = {.lex_state = 17}, - [2387] = {.lex_state = 72}, + [2387] = {.lex_state = 17}, [2388] = {.lex_state = 17}, - [2389] = {.lex_state = 5}, - [2390] = {.lex_state = 72}, - [2391] = {.lex_state = 17}, - [2392] = {.lex_state = 27}, - [2393] = {.lex_state = 72}, - [2394] = {.lex_state = 72}, - [2395] = {.lex_state = 72}, - [2396] = {.lex_state = 72}, - [2397] = {.lex_state = 17}, - [2398] = {.lex_state = 17}, - [2399] = {.lex_state = 72}, + [2389] = {.lex_state = 17}, + [2390] = {.lex_state = 17}, + [2391] = {.lex_state = 72}, + [2392] = {.lex_state = 72}, + [2393] = {.lex_state = 17}, + [2394] = {.lex_state = 31}, + [2395] = {.lex_state = 19}, + [2396] = {.lex_state = 17}, + [2397] = {.lex_state = 72}, + [2398] = {.lex_state = 27}, + [2399] = {.lex_state = 27}, [2400] = {.lex_state = 72}, - [2401] = {.lex_state = 17}, - [2402] = {.lex_state = 31}, - [2403] = {.lex_state = 17}, - [2404] = {.lex_state = 31}, - [2405] = {.lex_state = 31}, - [2406] = {.lex_state = 23}, - [2407] = {.lex_state = 17}, - [2408] = {.lex_state = 19}, + [2401] = {.lex_state = 72}, + [2402] = {.lex_state = 72}, + [2403] = {.lex_state = 72}, + [2404] = {.lex_state = 72}, + [2405] = {.lex_state = 27}, + [2406] = {.lex_state = 27}, + [2407] = {.lex_state = 72}, + [2408] = {.lex_state = 17}, [2409] = {.lex_state = 31}, - [2410] = {.lex_state = 20}, - [2411] = {.lex_state = 31}, - [2412] = {.lex_state = 17}, - [2413] = {.lex_state = 17}, - [2414] = {.lex_state = 20}, + [2410] = {.lex_state = 72}, + [2411] = {.lex_state = 72}, + [2412] = {.lex_state = 72}, + [2413] = {.lex_state = 72}, + [2414] = {.lex_state = 72}, [2415] = {.lex_state = 17}, - [2416] = {.lex_state = 17}, - [2417] = {.lex_state = 17}, - [2418] = {.lex_state = 17}, - [2419] = {.lex_state = 17}, - [2420] = {.lex_state = 23}, - [2421] = {.lex_state = 17}, + [2416] = {.lex_state = 27}, + [2417] = {.lex_state = 5}, + [2418] = {.lex_state = 27}, + [2419] = {.lex_state = 12}, + [2420] = {.lex_state = 17}, + [2421] = {.lex_state = 72}, [2422] = {.lex_state = 17}, - [2423] = {.lex_state = 17}, - [2424] = {.lex_state = 17}, - [2425] = {.lex_state = 17}, - [2426] = {.lex_state = 31}, - [2427] = {.lex_state = 17}, - [2428] = {.lex_state = 17}, - [2429] = {.lex_state = 17}, - [2430] = {.lex_state = 17}, - [2431] = {.lex_state = 17}, - [2432] = {.lex_state = 17}, - [2433] = {.lex_state = 20}, + [2423] = {.lex_state = 72}, + [2424] = {.lex_state = 72}, + [2425] = {.lex_state = 72}, + [2426] = {.lex_state = 5}, + [2427] = {.lex_state = 72}, + [2428] = {.lex_state = 169}, + [2429] = {.lex_state = 72}, + [2430] = {.lex_state = 72}, + [2431] = {.lex_state = 72}, + [2432] = {.lex_state = 72}, + [2433] = {.lex_state = 72}, [2434] = {.lex_state = 17}, [2435] = {.lex_state = 72}, - [2436] = {.lex_state = 17}, - [2437] = {.lex_state = 31}, - [2438] = {.lex_state = 17}, - [2439] = {.lex_state = 17}, - [2440] = {.lex_state = 17}, - [2441] = {.lex_state = 23}, - [2442] = {.lex_state = 31}, - [2443] = {.lex_state = 17}, - [2444] = {.lex_state = 17}, - [2445] = {.lex_state = 31}, + [2436] = {.lex_state = 72}, + [2437] = {.lex_state = 72}, + [2438] = {.lex_state = 72}, + [2439] = {.lex_state = 5}, + [2440] = {.lex_state = 12}, + [2441] = {.lex_state = 17}, + [2442] = {.lex_state = 27}, + [2443] = {.lex_state = 27}, + [2444] = {.lex_state = 72}, + [2445] = {.lex_state = 72}, [2446] = {.lex_state = 17}, [2447] = {.lex_state = 17}, [2448] = {.lex_state = 17}, - [2449] = {.lex_state = 19}, - [2450] = {.lex_state = 27}, - [2451] = {.lex_state = 5}, - [2452] = {.lex_state = 5}, - [2453] = {.lex_state = 5}, - [2454] = {.lex_state = 31}, - [2455] = {.lex_state = 17}, - [2456] = {.lex_state = 31}, - [2457] = {.lex_state = 20}, + [2449] = {.lex_state = 12}, + [2450] = {.lex_state = 17}, + [2451] = {.lex_state = 17}, + [2452] = {.lex_state = 17}, + [2453] = {.lex_state = 17}, + [2454] = {.lex_state = 17}, + [2455] = {.lex_state = 72}, + [2456] = {.lex_state = 17}, + [2457] = {.lex_state = 15}, [2458] = {.lex_state = 17}, - [2459] = {.lex_state = 5}, + [2459] = {.lex_state = 15}, [2460] = {.lex_state = 31}, [2461] = {.lex_state = 17}, [2462] = {.lex_state = 17}, - [2463] = {.lex_state = 17}, - [2464] = {.lex_state = 19}, - [2465] = {.lex_state = 19}, - [2466] = {.lex_state = 19}, + [2463] = {.lex_state = 20}, + [2464] = {.lex_state = 31}, + [2465] = {.lex_state = 17}, + [2466] = {.lex_state = 17}, [2467] = {.lex_state = 17}, - [2468] = {.lex_state = 19}, - [2469] = {.lex_state = 23}, - [2470] = {.lex_state = 31}, + [2468] = {.lex_state = 5}, + [2469] = {.lex_state = 31}, + [2470] = {.lex_state = 20}, [2471] = {.lex_state = 17}, [2472] = {.lex_state = 17}, [2473] = {.lex_state = 17}, [2474] = {.lex_state = 17}, - [2475] = {.lex_state = 19}, - [2476] = {.lex_state = 17}, - [2477] = {.lex_state = 17}, - [2478] = {.lex_state = 17}, - [2479] = {.lex_state = 17}, + [2475] = {.lex_state = 20}, + [2476] = {.lex_state = 20}, + [2477] = {.lex_state = 19}, + [2478] = {.lex_state = 31}, + [2479] = {.lex_state = 20}, [2480] = {.lex_state = 17}, - [2481] = {.lex_state = 72}, - [2482] = {.lex_state = 15}, + [2481] = {.lex_state = 17}, + [2482] = {.lex_state = 17}, [2483] = {.lex_state = 17}, [2484] = {.lex_state = 17}, - [2485] = {.lex_state = 23}, - [2486] = {.lex_state = 17}, + [2485] = {.lex_state = 19}, + [2486] = {.lex_state = 20}, [2487] = {.lex_state = 17}, - [2488] = {.lex_state = 17}, + [2488] = {.lex_state = 31}, [2489] = {.lex_state = 17}, - [2490] = {.lex_state = 31}, + [2490] = {.lex_state = 17}, [2491] = {.lex_state = 17}, [2492] = {.lex_state = 17}, - [2493] = {.lex_state = 23}, - [2494] = {.lex_state = 31}, - [2495] = {.lex_state = 20}, + [2493] = {.lex_state = 17}, + [2494] = {.lex_state = 17}, + [2495] = {.lex_state = 17}, [2496] = {.lex_state = 17}, - [2497] = {.lex_state = 15}, + [2497] = {.lex_state = 17}, [2498] = {.lex_state = 31}, [2499] = {.lex_state = 17}, [2500] = {.lex_state = 17}, - [2501] = {.lex_state = 31}, - [2502] = {.lex_state = 17}, - [2503] = {.lex_state = 17}, - [2504] = {.lex_state = 20}, - [2505] = {.lex_state = 17}, - [2506] = {.lex_state = 17}, - [2507] = {.lex_state = 17}, - [2508] = {.lex_state = 23}, - [2509] = {.lex_state = 31}, - [2510] = {.lex_state = 23}, - [2511] = {.lex_state = 31}, - [2512] = {.lex_state = 23}, + [2501] = {.lex_state = 17}, + [2502] = {.lex_state = 72}, + [2503] = {.lex_state = 23}, + [2504] = {.lex_state = 17}, + [2505] = {.lex_state = 31}, + [2506] = {.lex_state = 23}, + [2507] = {.lex_state = 5}, + [2508] = {.lex_state = 17}, + [2509] = {.lex_state = 23}, + [2510] = {.lex_state = 31}, + [2511] = {.lex_state = 17}, + [2512] = {.lex_state = 31}, [2513] = {.lex_state = 17}, - [2514] = {.lex_state = 23}, - [2515] = {.lex_state = 5}, - [2516] = {.lex_state = 23}, - [2517] = {.lex_state = 23}, - [2518] = {.lex_state = 17}, - [2519] = {.lex_state = 23}, + [2514] = {.lex_state = 31}, + [2515] = {.lex_state = 23}, + [2516] = {.lex_state = 17}, + [2517] = {.lex_state = 17}, + [2518] = {.lex_state = 31}, + [2519] = {.lex_state = 31}, [2520] = {.lex_state = 23}, - [2521] = {.lex_state = 23}, + [2521] = {.lex_state = 17}, [2522] = {.lex_state = 17}, - [2523] = {.lex_state = 23}, - [2524] = {.lex_state = 23}, - [2525] = {.lex_state = 23}, - [2526] = {.lex_state = 31}, + [2523] = {.lex_state = 31}, + [2524] = {.lex_state = 31}, + [2525] = {.lex_state = 17}, + [2526] = {.lex_state = 17}, [2527] = {.lex_state = 17}, - [2528] = {.lex_state = 31}, - [2529] = {.lex_state = 17}, - [2530] = {.lex_state = 17}, + [2528] = {.lex_state = 19}, + [2529] = {.lex_state = 19}, + [2530] = {.lex_state = 19}, [2531] = {.lex_state = 17}, - [2532] = {.lex_state = 8}, - [2533] = {.lex_state = 17}, - [2534] = {.lex_state = 31}, + [2532] = {.lex_state = 17}, + [2533] = {.lex_state = 19}, + [2534] = {.lex_state = 19}, [2535] = {.lex_state = 17}, - [2536] = {.lex_state = 31}, + [2536] = {.lex_state = 17}, [2537] = {.lex_state = 17}, - [2538] = {.lex_state = 8}, - [2539] = {.lex_state = 31}, - [2540] = {.lex_state = 31}, + [2538] = {.lex_state = 17}, + [2539] = {.lex_state = 17}, + [2540] = {.lex_state = 5}, [2541] = {.lex_state = 17}, - [2542] = {.lex_state = 8}, - [2543] = {.lex_state = 17}, - [2544] = {.lex_state = 31}, - [2545] = {.lex_state = 23}, - [2546] = {.lex_state = 31}, - [2547] = {.lex_state = 31}, - [2548] = {.lex_state = 23}, - [2549] = {.lex_state = 31}, + [2542] = {.lex_state = 17}, + [2543] = {.lex_state = 31}, + [2544] = {.lex_state = 5}, + [2545] = {.lex_state = 17}, + [2546] = {.lex_state = 17}, + [2547] = {.lex_state = 17}, + [2548] = {.lex_state = 17}, + [2549] = {.lex_state = 23}, [2550] = {.lex_state = 17}, [2551] = {.lex_state = 17}, [2552] = {.lex_state = 17}, - [2553] = {.lex_state = 31}, + [2553] = {.lex_state = 27}, [2554] = {.lex_state = 17}, [2555] = {.lex_state = 17}, - [2556] = {.lex_state = 23}, - [2557] = {.lex_state = 23}, - [2558] = {.lex_state = 23}, - [2559] = {.lex_state = 17}, - [2560] = {.lex_state = 31}, - [2561] = {.lex_state = 17}, + [2556] = {.lex_state = 17}, + [2557] = {.lex_state = 17}, + [2558] = {.lex_state = 31}, + [2559] = {.lex_state = 72}, + [2560] = {.lex_state = 17}, + [2561] = {.lex_state = 31}, [2562] = {.lex_state = 17}, - [2563] = {.lex_state = 17}, - [2564] = {.lex_state = 19}, - [2565] = {.lex_state = 23}, + [2563] = {.lex_state = 31}, + [2564] = {.lex_state = 23}, + [2565] = {.lex_state = 17}, [2566] = {.lex_state = 31}, - [2567] = {.lex_state = 23}, - [2568] = {.lex_state = 31}, - [2569] = {.lex_state = 17}, - [2570] = {.lex_state = 23}, - [2571] = {.lex_state = 23}, + [2567] = {.lex_state = 8}, + [2568] = {.lex_state = 23}, + [2569] = {.lex_state = 31}, + [2570] = {.lex_state = 31}, + [2571] = {.lex_state = 17}, [2572] = {.lex_state = 31}, - [2573] = {.lex_state = 8}, - [2574] = {.lex_state = 17}, - [2575] = {.lex_state = 19}, + [2573] = {.lex_state = 31}, + [2574] = {.lex_state = 72}, + [2575] = {.lex_state = 31}, [2576] = {.lex_state = 31}, - [2577] = {.lex_state = 5}, - [2578] = {.lex_state = 23}, - [2579] = {.lex_state = 31}, - [2580] = {.lex_state = 17}, - [2581] = {.lex_state = 72}, - [2582] = {.lex_state = 23}, - [2583] = {.lex_state = 23}, - [2584] = {.lex_state = 19}, + [2577] = {.lex_state = 17}, + [2578] = {.lex_state = 31}, + [2579] = {.lex_state = 17}, + [2580] = {.lex_state = 19}, + [2581] = {.lex_state = 31}, + [2582] = {.lex_state = 19}, + [2583] = {.lex_state = 19}, + [2584] = {.lex_state = 23}, [2585] = {.lex_state = 31}, - [2586] = {.lex_state = 23}, - [2587] = {.lex_state = 31}, - [2588] = {.lex_state = 72}, - [2589] = {.lex_state = 31}, + [2586] = {.lex_state = 17}, + [2587] = {.lex_state = 23}, + [2588] = {.lex_state = 23}, + [2589] = {.lex_state = 17}, [2590] = {.lex_state = 23}, [2591] = {.lex_state = 31}, - [2592] = {.lex_state = 17}, - [2593] = {.lex_state = 23}, - [2594] = {.lex_state = 17}, + [2592] = {.lex_state = 23}, + [2593] = {.lex_state = 17}, + [2594] = {.lex_state = 8}, [2595] = {.lex_state = 23}, - [2596] = {.lex_state = 31}, - [2597] = {.lex_state = 31}, - [2598] = {.lex_state = 19}, - [2599] = {.lex_state = 23, .external_lex_state = 3}, - [2600] = {.lex_state = 23}, - [2601] = {.lex_state = 19}, + [2596] = {.lex_state = 17}, + [2597] = {.lex_state = 23}, + [2598] = {.lex_state = 23}, + [2599] = {.lex_state = 19}, + [2600] = {.lex_state = 19}, + [2601] = {.lex_state = 23}, [2602] = {.lex_state = 17}, - [2603] = {.lex_state = 31}, - [2604] = {.lex_state = 23}, - [2605] = {.lex_state = 19}, + [2603] = {.lex_state = 23}, + [2604] = {.lex_state = 31}, + [2605] = {.lex_state = 23}, [2606] = {.lex_state = 23}, - [2607] = {.lex_state = 17}, + [2607] = {.lex_state = 31}, [2608] = {.lex_state = 31}, [2609] = {.lex_state = 23}, - [2610] = {.lex_state = 8}, + [2610] = {.lex_state = 23}, [2611] = {.lex_state = 31}, [2612] = {.lex_state = 31}, [2613] = {.lex_state = 17}, [2614] = {.lex_state = 17}, - [2615] = {.lex_state = 31}, + [2615] = {.lex_state = 17}, [2616] = {.lex_state = 8}, - [2617] = {.lex_state = 8}, - [2618] = {.lex_state = 23}, + [2617] = {.lex_state = 23}, + [2618] = {.lex_state = 31}, [2619] = {.lex_state = 17}, [2620] = {.lex_state = 17}, - [2621] = {.lex_state = 8}, - [2622] = {.lex_state = 17}, - [2623] = {.lex_state = 72}, - [2624] = {.lex_state = 23}, - [2625] = {.lex_state = 23}, - [2626] = {.lex_state = 72}, - [2627] = {.lex_state = 23}, - [2628] = {.lex_state = 23, .external_lex_state = 4}, - [2629] = {.lex_state = 72}, - [2630] = {.lex_state = 23}, - [2631] = {.lex_state = 8}, - [2632] = {.lex_state = 8}, - [2633] = {.lex_state = 8}, - [2634] = {.lex_state = 8}, - [2635] = {.lex_state = 23, .external_lex_state = 4}, - [2636] = {.lex_state = 17}, - [2637] = {.lex_state = 23}, + [2621] = {.lex_state = 23}, + [2622] = {.lex_state = 72}, + [2623] = {.lex_state = 17}, + [2624] = {.lex_state = 17}, + [2625] = {.lex_state = 31}, + [2626] = {.lex_state = 31}, + [2627] = {.lex_state = 17}, + [2628] = {.lex_state = 17}, + [2629] = {.lex_state = 23}, + [2630] = {.lex_state = 23, .external_lex_state = 3}, + [2631] = {.lex_state = 23}, + [2632] = {.lex_state = 31}, + [2633] = {.lex_state = 23}, + [2634] = {.lex_state = 17}, + [2635] = {.lex_state = 23}, + [2636] = {.lex_state = 31}, + [2637] = {.lex_state = 17}, [2638] = {.lex_state = 17}, - [2639] = {.lex_state = 23}, - [2640] = {.lex_state = 17}, + [2639] = {.lex_state = 5}, + [2640] = {.lex_state = 23}, [2641] = {.lex_state = 23}, - [2642] = {.lex_state = 23, .external_lex_state = 4}, - [2643] = {.lex_state = 17}, - [2644] = {.lex_state = 23}, - [2645] = {.lex_state = 23}, - [2646] = {.lex_state = 17}, - [2647] = {.lex_state = 5}, + [2642] = {.lex_state = 23}, + [2643] = {.lex_state = 31}, + [2644] = {.lex_state = 17}, + [2645] = {.lex_state = 31}, + [2646] = {.lex_state = 23}, + [2647] = {.lex_state = 17}, [2648] = {.lex_state = 17}, - [2649] = {.lex_state = 72}, - [2650] = {.lex_state = 23, .external_lex_state = 4}, - [2651] = {.lex_state = 17}, + [2649] = {.lex_state = 23}, + [2650] = {.lex_state = 23}, + [2651] = {.lex_state = 5}, [2652] = {.lex_state = 23}, - [2653] = {.lex_state = 17}, - [2654] = {.lex_state = 23}, - [2655] = {.lex_state = 72}, - [2656] = {.lex_state = 72}, - [2657] = {.lex_state = 72}, - [2658] = {.lex_state = 23, .external_lex_state = 4}, - [2659] = {.lex_state = 72}, - [2660] = {.lex_state = 72}, - [2661] = {.lex_state = 8}, - [2662] = {.lex_state = 8}, + [2653] = {.lex_state = 31}, + [2654] = {.lex_state = 31}, + [2655] = {.lex_state = 17}, + [2656] = {.lex_state = 17}, + [2657] = {.lex_state = 31}, + [2658] = {.lex_state = 17}, + [2659] = {.lex_state = 23}, + [2660] = {.lex_state = 31}, + [2661] = {.lex_state = 17}, + [2662] = {.lex_state = 31}, [2663] = {.lex_state = 8}, - [2664] = {.lex_state = 8}, - [2665] = {.lex_state = 23}, + [2664] = {.lex_state = 17}, + [2665] = {.lex_state = 17}, [2666] = {.lex_state = 17}, - [2667] = {.lex_state = 17}, - [2668] = {.lex_state = 17}, - [2669] = {.lex_state = 8}, - [2670] = {.lex_state = 72}, - [2671] = {.lex_state = 72}, - [2672] = {.lex_state = 72}, - [2673] = {.lex_state = 23, .external_lex_state = 4}, - [2674] = {.lex_state = 31}, - [2675] = {.lex_state = 8}, - [2676] = {.lex_state = 23, .external_lex_state = 4}, + [2667] = {.lex_state = 31}, + [2668] = {.lex_state = 8}, + [2669] = {.lex_state = 19}, + [2670] = {.lex_state = 23}, + [2671] = {.lex_state = 23}, + [2672] = {.lex_state = 33}, + [2673] = {.lex_state = 17}, + [2674] = {.lex_state = 72}, + [2675] = {.lex_state = 17}, + [2676] = {.lex_state = 8}, [2677] = {.lex_state = 8}, - [2678] = {.lex_state = 8}, - [2679] = {.lex_state = 8}, - [2680] = {.lex_state = 72}, - [2681] = {.lex_state = 72}, - [2682] = {.lex_state = 17}, - [2683] = {.lex_state = 18}, - [2684] = {.lex_state = 23}, - [2685] = {.lex_state = 23}, - [2686] = {.lex_state = 8}, - [2687] = {.lex_state = 31}, - [2688] = {.lex_state = 8}, + [2678] = {.lex_state = 17}, + [2679] = {.lex_state = 17}, + [2680] = {.lex_state = 17}, + [2681] = {.lex_state = 17}, + [2682] = {.lex_state = 18}, + [2683] = {.lex_state = 17}, + [2684] = {.lex_state = 19}, + [2685] = {.lex_state = 19}, + [2686] = {.lex_state = 23}, + [2687] = {.lex_state = 19}, + [2688] = {.lex_state = 19}, [2689] = {.lex_state = 8}, - [2690] = {.lex_state = 19}, + [2690] = {.lex_state = 8}, [2691] = {.lex_state = 8}, - [2692] = {.lex_state = 8}, - [2693] = {.lex_state = 23}, - [2694] = {.lex_state = 23}, - [2695] = {.lex_state = 72}, + [2692] = {.lex_state = 31}, + [2693] = {.lex_state = 72}, + [2694] = {.lex_state = 72}, + [2695] = {.lex_state = 23}, [2696] = {.lex_state = 72}, - [2697] = {.lex_state = 8}, - [2698] = {.lex_state = 17}, - [2699] = {.lex_state = 23}, - [2700] = {.lex_state = 8}, - [2701] = {.lex_state = 8}, - [2702] = {.lex_state = 23}, - [2703] = {.lex_state = 23}, - [2704] = {.lex_state = 5}, - [2705] = {.lex_state = 8}, + [2697] = {.lex_state = 72}, + [2698] = {.lex_state = 23}, + [2699] = {.lex_state = 33}, + [2700] = {.lex_state = 17}, + [2701] = {.lex_state = 17}, + [2702] = {.lex_state = 17}, + [2703] = {.lex_state = 72}, + [2704] = {.lex_state = 17}, + [2705] = {.lex_state = 17}, [2706] = {.lex_state = 17}, - [2707] = {.lex_state = 72}, - [2708] = {.lex_state = 72}, - [2709] = {.lex_state = 72}, + [2707] = {.lex_state = 17}, + [2708] = {.lex_state = 23}, + [2709] = {.lex_state = 17}, [2710] = {.lex_state = 17}, [2711] = {.lex_state = 17}, [2712] = {.lex_state = 17}, - [2713] = {.lex_state = 23}, - [2714] = {.lex_state = 23, .external_lex_state = 4}, - [2715] = {.lex_state = 17}, - [2716] = {.lex_state = 23}, - [2717] = {.lex_state = 72}, - [2718] = {.lex_state = 17}, + [2713] = {.lex_state = 72}, + [2714] = {.lex_state = 17}, + [2715] = {.lex_state = 72}, + [2716] = {.lex_state = 17}, + [2717] = {.lex_state = 17}, + [2718] = {.lex_state = 72}, [2719] = {.lex_state = 17}, - [2720] = {.lex_state = 23, .external_lex_state = 4}, - [2721] = {.lex_state = 72}, + [2720] = {.lex_state = 23}, + [2721] = {.lex_state = 23}, [2722] = {.lex_state = 17}, - [2723] = {.lex_state = 8}, - [2724] = {.lex_state = 23, .external_lex_state = 4}, - [2725] = {.lex_state = 31}, - [2726] = {.lex_state = 8}, - [2727] = {.lex_state = 17}, - [2728] = {.lex_state = 23, .external_lex_state = 4}, - [2729] = {.lex_state = 8}, + [2723] = {.lex_state = 17}, + [2724] = {.lex_state = 17}, + [2725] = {.lex_state = 17}, + [2726] = {.lex_state = 17}, + [2727] = {.lex_state = 23}, + [2728] = {.lex_state = 17}, + [2729] = {.lex_state = 17}, [2730] = {.lex_state = 8}, [2731] = {.lex_state = 23}, [2732] = {.lex_state = 72}, - [2733] = {.lex_state = 33}, - [2734] = {.lex_state = 33}, - [2735] = {.lex_state = 8}, + [2733] = {.lex_state = 17}, + [2734] = {.lex_state = 17}, + [2735] = {.lex_state = 72}, [2736] = {.lex_state = 72}, [2737] = {.lex_state = 17}, [2738] = {.lex_state = 72}, - [2739] = {.lex_state = 8}, + [2739] = {.lex_state = 17}, [2740] = {.lex_state = 17}, [2741] = {.lex_state = 17}, - [2742] = {.lex_state = 72}, - [2743] = {.lex_state = 17}, + [2742] = {.lex_state = 23}, + [2743] = {.lex_state = 72}, [2744] = {.lex_state = 17}, - [2745] = {.lex_state = 31}, - [2746] = {.lex_state = 72}, - [2747] = {.lex_state = 17}, - [2748] = {.lex_state = 72}, - [2749] = {.lex_state = 17}, - [2750] = {.lex_state = 8}, - [2751] = {.lex_state = 31}, - [2752] = {.lex_state = 19}, - [2753] = {.lex_state = 8}, + [2745] = {.lex_state = 72}, + [2746] = {.lex_state = 31}, + [2747] = {.lex_state = 8}, + [2748] = {.lex_state = 31}, + [2749] = {.lex_state = 19}, + [2750] = {.lex_state = 23}, + [2751] = {.lex_state = 23}, + [2752] = {.lex_state = 23, .external_lex_state = 4}, + [2753] = {.lex_state = 19}, [2754] = {.lex_state = 23}, - [2755] = {.lex_state = 31}, - [2756] = {.lex_state = 72}, - [2757] = {.lex_state = 33}, - [2758] = {.lex_state = 8}, + [2755] = {.lex_state = 17}, + [2756] = {.lex_state = 23}, + [2757] = {.lex_state = 18}, + [2758] = {.lex_state = 19}, [2759] = {.lex_state = 72}, - [2760] = {.lex_state = 17}, + [2760] = {.lex_state = 23}, [2761] = {.lex_state = 23}, - [2762] = {.lex_state = 72}, - [2763] = {.lex_state = 23}, - [2764] = {.lex_state = 8}, + [2762] = {.lex_state = 23}, + [2763] = {.lex_state = 23, .external_lex_state = 4}, + [2764] = {.lex_state = 72}, [2765] = {.lex_state = 8}, - [2766] = {.lex_state = 17}, - [2767] = {.lex_state = 72}, - [2768] = {.lex_state = 23}, - [2769] = {.lex_state = 31}, - [2770] = {.lex_state = 8}, - [2771] = {.lex_state = 23}, - [2772] = {.lex_state = 23, .external_lex_state = 4}, - [2773] = {.lex_state = 33}, - [2774] = {.lex_state = 23}, + [2766] = {.lex_state = 8}, + [2767] = {.lex_state = 8}, + [2768] = {.lex_state = 8}, + [2769] = {.lex_state = 72}, + [2770] = {.lex_state = 19}, + [2771] = {.lex_state = 8}, + [2772] = {.lex_state = 17}, + [2773] = {.lex_state = 8}, + [2774] = {.lex_state = 8}, [2775] = {.lex_state = 23}, - [2776] = {.lex_state = 72}, - [2777] = {.lex_state = 8}, - [2778] = {.lex_state = 23}, + [2776] = {.lex_state = 23}, + [2777] = {.lex_state = 23}, + [2778] = {.lex_state = 72}, [2779] = {.lex_state = 72}, - [2780] = {.lex_state = 17}, + [2780] = {.lex_state = 31}, [2781] = {.lex_state = 23}, [2782] = {.lex_state = 72}, - [2783] = {.lex_state = 19}, - [2784] = {.lex_state = 23}, - [2785] = {.lex_state = 19}, - [2786] = {.lex_state = 72}, - [2787] = {.lex_state = 23}, + [2783] = {.lex_state = 17}, + [2784] = {.lex_state = 17}, + [2785] = {.lex_state = 17}, + [2786] = {.lex_state = 17}, + [2787] = {.lex_state = 72}, [2788] = {.lex_state = 23}, - [2789] = {.lex_state = 18}, - [2790] = {.lex_state = 19}, - [2791] = {.lex_state = 17}, - [2792] = {.lex_state = 72}, - [2793] = {.lex_state = 72}, - [2794] = {.lex_state = 17}, + [2789] = {.lex_state = 23}, + [2790] = {.lex_state = 23, .external_lex_state = 4}, + [2791] = {.lex_state = 33}, + [2792] = {.lex_state = 23}, + [2793] = {.lex_state = 17}, + [2794] = {.lex_state = 72}, [2795] = {.lex_state = 23}, - [2796] = {.lex_state = 31}, + [2796] = {.lex_state = 23}, [2797] = {.lex_state = 23}, - [2798] = {.lex_state = 23}, - [2799] = {.lex_state = 17}, - [2800] = {.lex_state = 17}, - [2801] = {.lex_state = 18}, - [2802] = {.lex_state = 72}, - [2803] = {.lex_state = 18}, - [2804] = {.lex_state = 72}, + [2798] = {.lex_state = 23, .external_lex_state = 4}, + [2799] = {.lex_state = 72}, + [2800] = {.lex_state = 72}, + [2801] = {.lex_state = 8}, + [2802] = {.lex_state = 8}, + [2803] = {.lex_state = 8}, + [2804] = {.lex_state = 8}, [2805] = {.lex_state = 17}, - [2806] = {.lex_state = 5}, + [2806] = {.lex_state = 23}, [2807] = {.lex_state = 17}, - [2808] = {.lex_state = 19}, - [2809] = {.lex_state = 23}, - [2810] = {.lex_state = 17}, - [2811] = {.lex_state = 19}, - [2812] = {.lex_state = 19}, - [2813] = {.lex_state = 31}, - [2814] = {.lex_state = 8}, + [2808] = {.lex_state = 72}, + [2809] = {.lex_state = 23, .external_lex_state = 4}, + [2810] = {.lex_state = 23}, + [2811] = {.lex_state = 17}, + [2812] = {.lex_state = 23, .external_lex_state = 4}, + [2813] = {.lex_state = 23}, + [2814] = {.lex_state = 23}, [2815] = {.lex_state = 17}, - [2816] = {.lex_state = 19}, - [2817] = {.lex_state = 5}, - [2818] = {.lex_state = 8}, - [2819] = {.lex_state = 23}, - [2820] = {.lex_state = 17}, - [2821] = {.lex_state = 23}, - [2822] = {.lex_state = 23}, + [2816] = {.lex_state = 72}, + [2817] = {.lex_state = 23, .external_lex_state = 4}, + [2818] = {.lex_state = 72}, + [2819] = {.lex_state = 8}, + [2820] = {.lex_state = 8}, + [2821] = {.lex_state = 8}, + [2822] = {.lex_state = 8}, [2823] = {.lex_state = 17}, - [2824] = {.lex_state = 72}, - [2825] = {.lex_state = 17}, - [2826] = {.lex_state = 17}, - [2827] = {.lex_state = 19}, + [2824] = {.lex_state = 8}, + [2825] = {.lex_state = 23, .external_lex_state = 4}, + [2826] = {.lex_state = 72}, + [2827] = {.lex_state = 23, .external_lex_state = 4}, [2828] = {.lex_state = 72}, - [2829] = {.lex_state = 5}, - [2830] = {.lex_state = 19}, - [2831] = {.lex_state = 17}, - [2832] = {.lex_state = 17}, + [2829] = {.lex_state = 8}, + [2830] = {.lex_state = 8}, + [2831] = {.lex_state = 23}, + [2832] = {.lex_state = 23}, [2833] = {.lex_state = 17}, - [2834] = {.lex_state = 72}, + [2834] = {.lex_state = 23}, [2835] = {.lex_state = 23}, - [2836] = {.lex_state = 19}, - [2837] = {.lex_state = 17}, + [2836] = {.lex_state = 23, .external_lex_state = 4}, + [2837] = {.lex_state = 8}, [2838] = {.lex_state = 8}, - [2839] = {.lex_state = 72}, - [2840] = {.lex_state = 17}, + [2839] = {.lex_state = 8}, + [2840] = {.lex_state = 8}, [2841] = {.lex_state = 17}, - [2842] = {.lex_state = 18}, - [2843] = {.lex_state = 23}, - [2844] = {.lex_state = 17}, - [2845] = {.lex_state = 8}, - [2846] = {.lex_state = 23}, - [2847] = {.lex_state = 72}, - [2848] = {.lex_state = 72}, - [2849] = {.lex_state = 8}, - [2850] = {.lex_state = 17}, + [2842] = {.lex_state = 23}, + [2843] = {.lex_state = 8}, + [2844] = {.lex_state = 23}, + [2845] = {.lex_state = 23}, + [2846] = {.lex_state = 17}, + [2847] = {.lex_state = 5}, + [2848] = {.lex_state = 23}, + [2849] = {.lex_state = 17}, + [2850] = {.lex_state = 72}, [2851] = {.lex_state = 17}, - [2852] = {.lex_state = 23}, - [2853] = {.lex_state = 23}, - [2854] = {.lex_state = 17}, - [2855] = {.lex_state = 23}, - [2856] = {.lex_state = 17}, - [2857] = {.lex_state = 8}, - [2858] = {.lex_state = 23}, - [2859] = {.lex_state = 17}, - [2860] = {.lex_state = 23}, - [2861] = {.lex_state = 17}, - [2862] = {.lex_state = 17}, - [2863] = {.lex_state = 17}, - [2864] = {.lex_state = 17}, - [2865] = {.lex_state = 8}, - [2866] = {.lex_state = 8}, - [2867] = {.lex_state = 72}, - [2868] = {.lex_state = 8}, - [2869] = {.lex_state = 23}, - [2870] = {.lex_state = 17}, - [2871] = {.lex_state = 31}, - [2872] = {.lex_state = 8}, + [2852] = {.lex_state = 17}, + [2853] = {.lex_state = 17}, + [2854] = {.lex_state = 23}, + [2855] = {.lex_state = 72}, + [2856] = {.lex_state = 5}, + [2857] = {.lex_state = 31}, + [2858] = {.lex_state = 8}, + [2859] = {.lex_state = 31}, + [2860] = {.lex_state = 72}, + [2861] = {.lex_state = 18}, + [2862] = {.lex_state = 31}, + [2863] = {.lex_state = 23, .external_lex_state = 4}, + [2864] = {.lex_state = 23}, + [2865] = {.lex_state = 72}, + [2866] = {.lex_state = 72}, + [2867] = {.lex_state = 23}, + [2868] = {.lex_state = 23}, + [2869] = {.lex_state = 31}, + [2870] = {.lex_state = 8}, + [2871] = {.lex_state = 72}, + [2872] = {.lex_state = 17}, [2873] = {.lex_state = 23}, [2874] = {.lex_state = 23}, - [2875] = {.lex_state = 31}, + [2875] = {.lex_state = 8}, [2876] = {.lex_state = 23, .external_lex_state = 4}, - [2877] = {.lex_state = 17}, + [2877] = {.lex_state = 23, .external_lex_state = 4}, [2878] = {.lex_state = 72}, - [2879] = {.lex_state = 72}, + [2879] = {.lex_state = 23}, [2880] = {.lex_state = 72}, - [2881] = {.lex_state = 72}, - [2882] = {.lex_state = 72}, - [2883] = {.lex_state = 19}, - [2884] = {.lex_state = 72}, - [2885] = {.lex_state = 72}, - [2886] = {.lex_state = 72}, - [2887] = {.lex_state = 72}, - [2888] = {.lex_state = 72}, - [2889] = {.lex_state = 17}, - [2890] = {.lex_state = 72}, - [2891] = {.lex_state = 72}, - [2892] = {.lex_state = 72}, - [2893] = {.lex_state = 72}, - [2894] = {.lex_state = 72}, - [2895] = {.lex_state = 72}, + [2881] = {.lex_state = 8}, + [2882] = {.lex_state = 17}, + [2883] = {.lex_state = 72}, + [2884] = {.lex_state = 8}, + [2885] = {.lex_state = 23}, + [2886] = {.lex_state = 23}, + [2887] = {.lex_state = 5}, + [2888] = {.lex_state = 8}, + [2889] = {.lex_state = 33}, + [2890] = {.lex_state = 23}, + [2891] = {.lex_state = 23}, + [2892] = {.lex_state = 8}, + [2893] = {.lex_state = 23}, + [2894] = {.lex_state = 23}, + [2895] = {.lex_state = 18}, [2896] = {.lex_state = 17}, - [2897] = {.lex_state = 72}, - [2898] = {.lex_state = 72}, + [2897] = {.lex_state = 18}, + [2898] = {.lex_state = 17}, [2899] = {.lex_state = 17}, - [2900] = {.lex_state = 17}, - [2901] = {.lex_state = 72}, - [2902] = {.lex_state = 72}, + [2900] = {.lex_state = 5}, + [2901] = {.lex_state = 17}, + [2902] = {.lex_state = 17}, [2903] = {.lex_state = 72}, - [2904] = {.lex_state = 17}, - [2905] = {.lex_state = 17}, - [2906] = {.lex_state = 72}, - [2907] = {.lex_state = 72}, - [2908] = {.lex_state = 72}, - [2909] = {.lex_state = 19}, - [2910] = {.lex_state = 72}, - [2911] = {.lex_state = 72}, - [2912] = {.lex_state = 72}, - [2913] = {.lex_state = 72}, - [2914] = {.lex_state = 72}, - [2915] = {.lex_state = 72}, - [2916] = {.lex_state = 72}, - [2917] = {.lex_state = 72}, + [2904] = {.lex_state = 23}, + [2905] = {.lex_state = 72}, + [2906] = {.lex_state = 17}, + [2907] = {.lex_state = 31}, + [2908] = {.lex_state = 17}, + [2909] = {.lex_state = 72}, + [2910] = {.lex_state = 5}, + [2911] = {.lex_state = 17}, + [2912] = {.lex_state = 8}, + [2913] = {.lex_state = 8}, + [2914] = {.lex_state = 17}, + [2915] = {.lex_state = 31}, + [2916] = {.lex_state = 23}, + [2917] = {.lex_state = 8}, [2918] = {.lex_state = 72}, - [2919] = {.lex_state = 72}, - [2920] = {.lex_state = 72}, - [2921] = {.lex_state = 72}, - [2922] = {.lex_state = 72}, + [2919] = {.lex_state = 8}, + [2920] = {.lex_state = 31}, + [2921] = {.lex_state = 19}, + [2922] = {.lex_state = 19}, [2923] = {.lex_state = 72}, - [2924] = {.lex_state = 72}, - [2925] = {.lex_state = 72}, - [2926] = {.lex_state = 17}, - [2927] = {.lex_state = 19}, - [2928] = {.lex_state = 72}, - [2929] = {.lex_state = 72}, - [2930] = {.lex_state = 19}, - [2931] = {.lex_state = 72}, - [2932] = {.lex_state = 20}, - [2933] = {.lex_state = 19}, + [2924] = {.lex_state = 8}, + [2925] = {.lex_state = 8}, + [2926] = {.lex_state = 19}, + [2927] = {.lex_state = 8}, + [2928] = {.lex_state = 8}, + [2929] = {.lex_state = 19}, + [2930] = {.lex_state = 8}, + [2931] = {.lex_state = 8}, + [2932] = {.lex_state = 8}, + [2933] = {.lex_state = 72}, [2934] = {.lex_state = 72}, [2935] = {.lex_state = 19}, - [2936] = {.lex_state = 72}, - [2937] = {.lex_state = 72}, - [2938] = {.lex_state = 19}, - [2939] = {.lex_state = 19}, + [2936] = {.lex_state = 17}, + [2937] = {.lex_state = 8}, + [2938] = {.lex_state = 72}, + [2939] = {.lex_state = 17}, [2940] = {.lex_state = 72}, [2941] = {.lex_state = 72}, - [2942] = {.lex_state = 72}, - [2943] = {.lex_state = 17}, - [2944] = {.lex_state = 72}, + [2942] = {.lex_state = 19}, + [2943] = {.lex_state = 72}, + [2944] = {.lex_state = 17}, [2945] = {.lex_state = 72}, [2946] = {.lex_state = 72}, [2947] = {.lex_state = 72}, [2948] = {.lex_state = 72}, - [2949] = {.lex_state = 17}, + [2949] = {.lex_state = 72}, [2950] = {.lex_state = 72}, [2951] = {.lex_state = 72}, [2952] = {.lex_state = 72}, - [2953] = {.lex_state = 8}, + [2953] = {.lex_state = 17}, [2954] = {.lex_state = 72}, [2955] = {.lex_state = 72}, [2956] = {.lex_state = 72}, [2957] = {.lex_state = 72}, - [2958] = {.lex_state = 17}, + [2958] = {.lex_state = 72}, [2959] = {.lex_state = 72}, [2960] = {.lex_state = 72}, [2961] = {.lex_state = 72}, [2962] = {.lex_state = 72}, [2963] = {.lex_state = 72}, - [2964] = {.lex_state = 72}, + [2964] = {.lex_state = 20}, [2965] = {.lex_state = 72}, [2966] = {.lex_state = 72}, - [2967] = {.lex_state = 72}, + [2967] = {.lex_state = 19}, [2968] = {.lex_state = 72}, [2969] = {.lex_state = 72}, - [2970] = {.lex_state = 20}, - [2971] = {.lex_state = 72}, - [2972] = {.lex_state = 19}, - [2973] = {.lex_state = 19}, + [2970] = {.lex_state = 72}, + [2971] = {.lex_state = 17}, + [2972] = {.lex_state = 72}, + [2973] = {.lex_state = 72}, [2974] = {.lex_state = 72}, [2975] = {.lex_state = 72}, [2976] = {.lex_state = 72}, - [2977] = {.lex_state = 72}, + [2977] = {.lex_state = 19}, [2978] = {.lex_state = 72}, [2979] = {.lex_state = 72}, [2980] = {.lex_state = 72}, [2981] = {.lex_state = 72}, - [2982] = {.lex_state = 23, .external_lex_state = 4}, + [2982] = {.lex_state = 72}, [2983] = {.lex_state = 72}, - [2984] = {.lex_state = 72}, + [2984] = {.lex_state = 19}, [2985] = {.lex_state = 72}, - [2986] = {.lex_state = 72}, - [2987] = {.lex_state = 19}, + [2986] = {.lex_state = 23}, + [2987] = {.lex_state = 72}, [2988] = {.lex_state = 72}, [2989] = {.lex_state = 72}, [2990] = {.lex_state = 72}, - [2991] = {.lex_state = 19}, - [2992] = {.lex_state = 72}, - [2993] = {.lex_state = 72}, + [2991] = {.lex_state = 72}, + [2992] = {.lex_state = 17}, + [2993] = {.lex_state = 17}, [2994] = {.lex_state = 72}, [2995] = {.lex_state = 72}, - [2996] = {.lex_state = 19}, - [2997] = {.lex_state = 19}, + [2996] = {.lex_state = 72}, + [2997] = {.lex_state = 72}, [2998] = {.lex_state = 72}, - [2999] = {.lex_state = 72}, - [3000] = {.lex_state = 19}, - [3001] = {.lex_state = 72}, + [2999] = {.lex_state = 8}, + [3000] = {.lex_state = 72}, + [3001] = {.lex_state = 19}, [3002] = {.lex_state = 72}, [3003] = {.lex_state = 72}, - [3004] = {.lex_state = 72}, + [3004] = {.lex_state = 8}, [3005] = {.lex_state = 72}, [3006] = {.lex_state = 72}, - [3007] = {.lex_state = 19}, - [3008] = {.lex_state = 17}, + [3007] = {.lex_state = 72}, + [3008] = {.lex_state = 72}, [3009] = {.lex_state = 72}, - [3010] = {.lex_state = 19}, - [3011] = {.lex_state = 17}, + [3010] = {.lex_state = 72}, + [3011] = {.lex_state = 72}, [3012] = {.lex_state = 72}, - [3013] = {.lex_state = 19}, - [3014] = {.lex_state = 19}, - [3015] = {.lex_state = 19}, - [3016] = {.lex_state = 19}, - [3017] = {.lex_state = 19}, + [3013] = {.lex_state = 31}, + [3014] = {.lex_state = 72}, + [3015] = {.lex_state = 72}, + [3016] = {.lex_state = 72}, + [3017] = {.lex_state = 72}, [3018] = {.lex_state = 72}, - [3019] = {.lex_state = 19}, - [3020] = {.lex_state = 23}, + [3019] = {.lex_state = 72}, + [3020] = {.lex_state = 19}, [3021] = {.lex_state = 72}, - [3022] = {.lex_state = 8}, + [3022] = {.lex_state = 72}, [3023] = {.lex_state = 72}, - [3024] = {.lex_state = 72}, + [3024] = {.lex_state = 17}, [3025] = {.lex_state = 72}, [3026] = {.lex_state = 72}, [3027] = {.lex_state = 72}, - [3028] = {.lex_state = 72}, + [3028] = {.lex_state = 17}, [3029] = {.lex_state = 72}, [3030] = {.lex_state = 72}, [3031] = {.lex_state = 72}, [3032] = {.lex_state = 72}, - [3033] = {.lex_state = 72}, - [3034] = {.lex_state = 72}, + [3033] = {.lex_state = 17}, + [3034] = {.lex_state = 19}, [3035] = {.lex_state = 72}, [3036] = {.lex_state = 72}, [3037] = {.lex_state = 72}, [3038] = {.lex_state = 72}, - [3039] = {.lex_state = 31}, + [3039] = {.lex_state = 23}, [3040] = {.lex_state = 72}, [3041] = {.lex_state = 72}, - [3042] = {.lex_state = 72}, + [3042] = {.lex_state = 23}, [3043] = {.lex_state = 72}, [3044] = {.lex_state = 72}, [3045] = {.lex_state = 72}, @@ -13536,71 +13795,71 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3050] = {.lex_state = 72}, [3051] = {.lex_state = 72}, [3052] = {.lex_state = 72}, - [3053] = {.lex_state = 31}, - [3054] = {.lex_state = 19}, - [3055] = {.lex_state = 8}, + [3053] = {.lex_state = 72}, + [3054] = {.lex_state = 72}, + [3055] = {.lex_state = 72}, [3056] = {.lex_state = 72}, - [3057] = {.lex_state = 72}, - [3058] = {.lex_state = 19}, + [3057] = {.lex_state = 20}, + [3058] = {.lex_state = 72}, [3059] = {.lex_state = 72}, [3060] = {.lex_state = 72}, - [3061] = {.lex_state = 17}, + [3061] = {.lex_state = 72}, [3062] = {.lex_state = 72}, [3063] = {.lex_state = 72}, - [3064] = {.lex_state = 17}, + [3064] = {.lex_state = 72}, [3065] = {.lex_state = 72}, [3066] = {.lex_state = 72}, [3067] = {.lex_state = 72}, [3068] = {.lex_state = 19}, - [3069] = {.lex_state = 8}, - [3070] = {.lex_state = 20}, - [3071] = {.lex_state = 72}, + [3069] = {.lex_state = 19}, + [3070] = {.lex_state = 72}, + [3071] = {.lex_state = 19}, [3072] = {.lex_state = 19}, - [3073] = {.lex_state = 72}, - [3074] = {.lex_state = 72}, + [3073] = {.lex_state = 19}, + [3074] = {.lex_state = 19}, [3075] = {.lex_state = 72}, [3076] = {.lex_state = 72}, [3077] = {.lex_state = 72}, - [3078] = {.lex_state = 20}, + [3078] = {.lex_state = 72}, [3079] = {.lex_state = 72}, [3080] = {.lex_state = 72}, - [3081] = {.lex_state = 19}, + [3081] = {.lex_state = 72}, [3082] = {.lex_state = 72}, [3083] = {.lex_state = 72}, - [3084] = {.lex_state = 17}, + [3084] = {.lex_state = 8}, [3085] = {.lex_state = 72}, [3086] = {.lex_state = 17}, [3087] = {.lex_state = 72}, [3088] = {.lex_state = 72}, [3089] = {.lex_state = 72}, - [3090] = {.lex_state = 19}, - [3091] = {.lex_state = 23}, + [3090] = {.lex_state = 72}, + [3091] = {.lex_state = 72}, [3092] = {.lex_state = 72}, - [3093] = {.lex_state = 8}, - [3094] = {.lex_state = 8}, - [3095] = {.lex_state = 72}, - [3096] = {.lex_state = 19}, - [3097] = {.lex_state = 72}, - [3098] = {.lex_state = 72}, - [3099] = {.lex_state = 17}, - [3100] = {.lex_state = 17}, + [3093] = {.lex_state = 72}, + [3094] = {.lex_state = 72}, + [3095] = {.lex_state = 23}, + [3096] = {.lex_state = 72}, + [3097] = {.lex_state = 17}, + [3098] = {.lex_state = 8}, + [3099] = {.lex_state = 72}, + [3100] = {.lex_state = 72}, [3101] = {.lex_state = 72}, - [3102] = {.lex_state = 72}, - [3103] = {.lex_state = 23}, + [3102] = {.lex_state = 19}, + [3103] = {.lex_state = 72}, [3104] = {.lex_state = 72}, [3105] = {.lex_state = 72}, [3106] = {.lex_state = 72}, [3107] = {.lex_state = 72}, [3108] = {.lex_state = 72}, [3109] = {.lex_state = 72}, - [3110] = {.lex_state = 8}, + [3110] = {.lex_state = 72}, [3111] = {.lex_state = 72}, [3112] = {.lex_state = 72}, [3113] = {.lex_state = 72}, [3114] = {.lex_state = 72}, - [3115] = {.lex_state = 23}, + [3115] = {.lex_state = 72}, [3116] = {.lex_state = 72}, - [3117] = {.lex_state = 72}, + [3117] = {.lex_state = 20}, [3118] = {.lex_state = 72}, [3119] = {.lex_state = 72}, [3120] = {.lex_state = 72}, @@ -13610,630 +13869,630 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3124] = {.lex_state = 72}, [3125] = {.lex_state = 72}, [3126] = {.lex_state = 17}, - [3127] = {.lex_state = 19}, - [3128] = {.lex_state = 19}, + [3127] = {.lex_state = 72}, + [3128] = {.lex_state = 72}, [3129] = {.lex_state = 72}, - [3130] = {.lex_state = 19}, - [3131] = {.lex_state = 19}, - [3132] = {.lex_state = 19}, - [3133] = {.lex_state = 19}, + [3130] = {.lex_state = 23, .external_lex_state = 4}, + [3131] = {.lex_state = 72}, + [3132] = {.lex_state = 72}, + [3133] = {.lex_state = 17}, [3134] = {.lex_state = 72}, [3135] = {.lex_state = 72}, - [3136] = {.lex_state = 17}, + [3136] = {.lex_state = 72}, [3137] = {.lex_state = 72}, [3138] = {.lex_state = 72}, [3139] = {.lex_state = 72}, [3140] = {.lex_state = 72}, - [3141] = {.lex_state = 72}, + [3141] = {.lex_state = 19}, [3142] = {.lex_state = 72}, - [3143] = {.lex_state = 72}, + [3143] = {.lex_state = 17}, [3144] = {.lex_state = 72}, [3145] = {.lex_state = 72}, - [3146] = {.lex_state = 17}, + [3146] = {.lex_state = 72}, [3147] = {.lex_state = 72}, - [3148] = {.lex_state = 72}, + [3148] = {.lex_state = 19}, [3149] = {.lex_state = 72}, - [3150] = {.lex_state = 72}, - [3151] = {.lex_state = 72}, - [3152] = {.lex_state = 17}, - [3153] = {.lex_state = 20}, - [3154] = {.lex_state = 8}, - [3155] = {.lex_state = 8}, - [3156] = {.lex_state = 17}, + [3150] = {.lex_state = 19}, + [3151] = {.lex_state = 19}, + [3152] = {.lex_state = 19}, + [3153] = {.lex_state = 19}, + [3154] = {.lex_state = 19}, + [3155] = {.lex_state = 72}, + [3156] = {.lex_state = 19}, [3157] = {.lex_state = 72}, [3158] = {.lex_state = 72}, [3159] = {.lex_state = 72}, [3160] = {.lex_state = 72}, - [3161] = {.lex_state = 72}, + [3161] = {.lex_state = 19}, [3162] = {.lex_state = 72}, [3163] = {.lex_state = 72}, - [3164] = {.lex_state = 17}, - [3165] = {.lex_state = 8}, - [3166] = {.lex_state = 72}, - [3167] = {.lex_state = 17}, - [3168] = {.lex_state = 8}, + [3164] = {.lex_state = 72}, + [3165] = {.lex_state = 72}, + [3166] = {.lex_state = 17}, + [3167] = {.lex_state = 8}, + [3168] = {.lex_state = 72}, [3169] = {.lex_state = 72}, - [3170] = {.lex_state = 17}, + [3170] = {.lex_state = 72}, [3171] = {.lex_state = 72}, - [3172] = {.lex_state = 8}, - [3173] = {.lex_state = 72}, - [3174] = {.lex_state = 8}, - [3175] = {.lex_state = 72}, - [3176] = {.lex_state = 17}, - [3177] = {.lex_state = 72}, - [3178] = {.lex_state = 8}, + [3172] = {.lex_state = 17}, + [3173] = {.lex_state = 19}, + [3174] = {.lex_state = 72}, + [3175] = {.lex_state = 17}, + [3176] = {.lex_state = 72}, + [3177] = {.lex_state = 20}, + [3178] = {.lex_state = 72}, [3179] = {.lex_state = 72}, - [3180] = {.lex_state = 72}, - [3181] = {.lex_state = 17}, - [3182] = {.lex_state = 17}, - [3183] = {.lex_state = 19}, - [3184] = {.lex_state = 72}, + [3180] = {.lex_state = 20}, + [3181] = {.lex_state = 72}, + [3182] = {.lex_state = 72}, + [3183] = {.lex_state = 8}, + [3184] = {.lex_state = 19}, [3185] = {.lex_state = 72}, - [3186] = {.lex_state = 72}, - [3187] = {.lex_state = 72}, + [3186] = {.lex_state = 19}, + [3187] = {.lex_state = 17}, [3188] = {.lex_state = 72}, [3189] = {.lex_state = 72}, [3190] = {.lex_state = 72}, [3191] = {.lex_state = 72}, - [3192] = {.lex_state = 72}, - [3193] = {.lex_state = 72}, - [3194] = {.lex_state = 72}, - [3195] = {.lex_state = 72}, - [3196] = {.lex_state = 72}, - [3197] = {.lex_state = 72}, - [3198] = {.lex_state = 17}, + [3192] = {.lex_state = 19}, + [3193] = {.lex_state = 19}, + [3194] = {.lex_state = 17}, + [3195] = {.lex_state = 17}, + [3196] = {.lex_state = 19}, + [3197] = {.lex_state = 17}, + [3198] = {.lex_state = 8}, [3199] = {.lex_state = 17}, - [3200] = {.lex_state = 17}, - [3201] = {.lex_state = 17}, - [3202] = {.lex_state = 31}, - [3203] = {.lex_state = 17}, - [3204] = {.lex_state = 17}, + [3200] = {.lex_state = 72}, + [3201] = {.lex_state = 72}, + [3202] = {.lex_state = 72}, + [3203] = {.lex_state = 19}, + [3204] = {.lex_state = 72}, [3205] = {.lex_state = 72}, [3206] = {.lex_state = 72}, - [3207] = {.lex_state = 72}, - [3208] = {.lex_state = 72}, - [3209] = {.lex_state = 72}, - [3210] = {.lex_state = 31}, - [3211] = {.lex_state = 72}, - [3212] = {.lex_state = 17}, - [3213] = {.lex_state = 17}, + [3207] = {.lex_state = 8}, + [3208] = {.lex_state = 19}, + [3209] = {.lex_state = 19}, + [3210] = {.lex_state = 72}, + [3211] = {.lex_state = 19}, + [3212] = {.lex_state = 72}, + [3213] = {.lex_state = 72}, [3214] = {.lex_state = 72}, - [3215] = {.lex_state = 20}, - [3216] = {.lex_state = 72}, + [3215] = {.lex_state = 19}, + [3216] = {.lex_state = 17}, [3217] = {.lex_state = 72}, - [3218] = {.lex_state = 72}, + [3218] = {.lex_state = 8}, [3219] = {.lex_state = 72}, - [3220] = {.lex_state = 17}, - [3221] = {.lex_state = 72}, - [3222] = {.lex_state = 72}, - [3223] = {.lex_state = 72}, - [3224] = {.lex_state = 17}, + [3220] = {.lex_state = 8}, + [3221] = {.lex_state = 19}, + [3222] = {.lex_state = 8}, + [3223] = {.lex_state = 17}, + [3224] = {.lex_state = 72}, [3225] = {.lex_state = 72}, - [3226] = {.lex_state = 72}, - [3227] = {.lex_state = 72}, - [3228] = {.lex_state = 72}, - [3229] = {.lex_state = 17}, + [3226] = {.lex_state = 8}, + [3227] = {.lex_state = 17}, + [3228] = {.lex_state = 8}, + [3229] = {.lex_state = 72}, [3230] = {.lex_state = 72}, - [3231] = {.lex_state = 72}, - [3232] = {.lex_state = 72}, - [3233] = {.lex_state = 72}, + [3231] = {.lex_state = 17}, + [3232] = {.lex_state = 31}, + [3233] = {.lex_state = 17}, [3234] = {.lex_state = 72}, - [3235] = {.lex_state = 17}, - [3236] = {.lex_state = 17}, - [3237] = {.lex_state = 72}, - [3238] = {.lex_state = 17}, - [3239] = {.lex_state = 17}, + [3235] = {.lex_state = 72}, + [3236] = {.lex_state = 72}, + [3237] = {.lex_state = 17}, + [3238] = {.lex_state = 72}, + [3239] = {.lex_state = 19}, [3240] = {.lex_state = 72}, - [3241] = {.lex_state = 17}, - [3242] = {.lex_state = 8}, - [3243] = {.lex_state = 17}, - [3244] = {.lex_state = 17}, + [3241] = {.lex_state = 72}, + [3242] = {.lex_state = 17}, + [3243] = {.lex_state = 72}, + [3244] = {.lex_state = 72}, [3245] = {.lex_state = 72}, [3246] = {.lex_state = 72}, [3247] = {.lex_state = 72}, - [3248] = {.lex_state = 23, .external_lex_state = 5}, - [3249] = {.lex_state = 72}, - [3250] = {.lex_state = 72}, + [3248] = {.lex_state = 72}, + [3249] = {.lex_state = 17}, + [3250] = {.lex_state = 17}, [3251] = {.lex_state = 17}, - [3252] = {.lex_state = 17}, - [3253] = {.lex_state = 72}, - [3254] = {.lex_state = 17}, + [3252] = {.lex_state = 72}, + [3253] = {.lex_state = 17}, + [3254] = {.lex_state = 23, .external_lex_state = 5}, [3255] = {.lex_state = 17}, [3256] = {.lex_state = 17}, - [3257] = {.lex_state = 72}, + [3257] = {.lex_state = 31}, [3258] = {.lex_state = 72}, - [3259] = {.lex_state = 17}, + [3259] = {.lex_state = 72}, [3260] = {.lex_state = 17}, [3261] = {.lex_state = 72}, - [3262] = {.lex_state = 72}, + [3262] = {.lex_state = 17}, [3263] = {.lex_state = 72}, [3264] = {.lex_state = 72}, - [3265] = {.lex_state = 17}, + [3265] = {.lex_state = 72}, [3266] = {.lex_state = 72}, - [3267] = {.lex_state = 72}, - [3268] = {.lex_state = 17}, - [3269] = {.lex_state = 17}, + [3267] = {.lex_state = 17}, + [3268] = {.lex_state = 23, .external_lex_state = 5}, + [3269] = {.lex_state = 72}, [3270] = {.lex_state = 17}, [3271] = {.lex_state = 72}, - [3272] = {.lex_state = 23}, + [3272] = {.lex_state = 72}, [3273] = {.lex_state = 72}, [3274] = {.lex_state = 72}, - [3275] = {.lex_state = 17}, - [3276] = {.lex_state = 72}, + [3275] = {.lex_state = 72}, + [3276] = {.lex_state = 17}, [3277] = {.lex_state = 72}, [3278] = {.lex_state = 17}, - [3279] = {.lex_state = 17}, - [3280] = {.lex_state = 17}, + [3279] = {.lex_state = 72}, + [3280] = {.lex_state = 31}, [3281] = {.lex_state = 17}, [3282] = {.lex_state = 72}, - [3283] = {.lex_state = 72}, + [3283] = {.lex_state = 17}, [3284] = {.lex_state = 72}, [3285] = {.lex_state = 72}, - [3286] = {.lex_state = 72}, + [3286] = {.lex_state = 31}, [3287] = {.lex_state = 17}, [3288] = {.lex_state = 72}, - [3289] = {.lex_state = 17}, - [3290] = {.lex_state = 17}, - [3291] = {.lex_state = 17}, - [3292] = {.lex_state = 17}, + [3289] = {.lex_state = 23, .external_lex_state = 5}, + [3290] = {.lex_state = 72}, + [3291] = {.lex_state = 72}, + [3292] = {.lex_state = 31}, [3293] = {.lex_state = 72}, [3294] = {.lex_state = 72}, [3295] = {.lex_state = 72}, - [3296] = {.lex_state = 72}, + [3296] = {.lex_state = 17}, [3297] = {.lex_state = 72}, [3298] = {.lex_state = 72}, [3299] = {.lex_state = 72}, - [3300] = {.lex_state = 17}, - [3301] = {.lex_state = 17}, - [3302] = {.lex_state = 17}, - [3303] = {.lex_state = 17}, + [3300] = {.lex_state = 72}, + [3301] = {.lex_state = 72}, + [3302] = {.lex_state = 72}, + [3303] = {.lex_state = 72}, [3304] = {.lex_state = 17}, - [3305] = {.lex_state = 72}, + [3305] = {.lex_state = 17}, [3306] = {.lex_state = 72}, [3307] = {.lex_state = 72}, - [3308] = {.lex_state = 17}, - [3309] = {.lex_state = 17}, - [3310] = {.lex_state = 17}, - [3311] = {.lex_state = 17}, + [3308] = {.lex_state = 72}, + [3309] = {.lex_state = 72}, + [3310] = {.lex_state = 72}, + [3311] = {.lex_state = 72}, [3312] = {.lex_state = 17}, - [3313] = {.lex_state = 17}, + [3313] = {.lex_state = 72}, [3314] = {.lex_state = 17}, - [3315] = {.lex_state = 17}, + [3315] = {.lex_state = 72}, [3316] = {.lex_state = 17}, [3317] = {.lex_state = 17}, [3318] = {.lex_state = 17}, - [3319] = {.lex_state = 17}, - [3320] = {.lex_state = 17}, - [3321] = {.lex_state = 17}, + [3319] = {.lex_state = 72}, + [3320] = {.lex_state = 72}, + [3321] = {.lex_state = 72}, [3322] = {.lex_state = 17}, - [3323] = {.lex_state = 17}, - [3324] = {.lex_state = 17}, - [3325] = {.lex_state = 72}, - [3326] = {.lex_state = 72}, + [3323] = {.lex_state = 72}, + [3324] = {.lex_state = 72}, + [3325] = {.lex_state = 17}, + [3326] = {.lex_state = 17}, [3327] = {.lex_state = 72}, [3328] = {.lex_state = 72}, - [3329] = {.lex_state = 72}, - [3330] = {.lex_state = 72}, - [3331] = {.lex_state = 72}, - [3332] = {.lex_state = 17}, - [3333] = {.lex_state = 72}, - [3334] = {.lex_state = 72}, - [3335] = {.lex_state = 17}, + [3329] = {.lex_state = 72, .external_lex_state = 6}, + [3330] = {.lex_state = 17}, + [3331] = {.lex_state = 17}, + [3332] = {.lex_state = 72, .external_lex_state = 6}, + [3333] = {.lex_state = 17}, + [3334] = {.lex_state = 17}, + [3335] = {.lex_state = 72}, [3336] = {.lex_state = 72}, [3337] = {.lex_state = 72}, [3338] = {.lex_state = 72}, [3339] = {.lex_state = 72}, - [3340] = {.lex_state = 72}, - [3341] = {.lex_state = 17}, + [3340] = {.lex_state = 17}, + [3341] = {.lex_state = 72}, [3342] = {.lex_state = 17}, [3343] = {.lex_state = 17}, [3344] = {.lex_state = 72}, [3345] = {.lex_state = 72}, [3346] = {.lex_state = 72}, - [3347] = {.lex_state = 72, .external_lex_state = 6}, + [3347] = {.lex_state = 17}, [3348] = {.lex_state = 17}, - [3349] = {.lex_state = 72}, - [3350] = {.lex_state = 17}, - [3351] = {.lex_state = 72}, + [3349] = {.lex_state = 17}, + [3350] = {.lex_state = 72}, + [3351] = {.lex_state = 17}, [3352] = {.lex_state = 72}, [3353] = {.lex_state = 72}, [3354] = {.lex_state = 72}, [3355] = {.lex_state = 72}, - [3356] = {.lex_state = 72}, - [3357] = {.lex_state = 17}, - [3358] = {.lex_state = 31}, - [3359] = {.lex_state = 31}, + [3356] = {.lex_state = 6}, + [3357] = {.lex_state = 6}, + [3358] = {.lex_state = 72}, + [3359] = {.lex_state = 17}, [3360] = {.lex_state = 72}, - [3361] = {.lex_state = 7}, - [3362] = {.lex_state = 7}, - [3363] = {.lex_state = 72}, + [3361] = {.lex_state = 17}, + [3362] = {.lex_state = 17}, + [3363] = {.lex_state = 17}, [3364] = {.lex_state = 72}, - [3365] = {.lex_state = 17}, - [3366] = {.lex_state = 72}, + [3365] = {.lex_state = 72}, + [3366] = {.lex_state = 17}, [3367] = {.lex_state = 72}, - [3368] = {.lex_state = 72}, - [3369] = {.lex_state = 72}, - [3370] = {.lex_state = 72}, - [3371] = {.lex_state = 72}, + [3368] = {.lex_state = 17}, + [3369] = {.lex_state = 17}, + [3370] = {.lex_state = 17}, + [3371] = {.lex_state = 17}, [3372] = {.lex_state = 72}, - [3373] = {.lex_state = 23, .external_lex_state = 5}, - [3374] = {.lex_state = 72}, - [3375] = {.lex_state = 17}, - [3376] = {.lex_state = 72}, - [3377] = {.lex_state = 17}, + [3373] = {.lex_state = 17}, + [3374] = {.lex_state = 17}, + [3375] = {.lex_state = 72}, + [3376] = {.lex_state = 17}, + [3377] = {.lex_state = 72}, [3378] = {.lex_state = 17}, [3379] = {.lex_state = 17}, - [3380] = {.lex_state = 72}, - [3381] = {.lex_state = 72}, - [3382] = {.lex_state = 72}, - [3383] = {.lex_state = 72}, - [3384] = {.lex_state = 23, .external_lex_state = 5}, - [3385] = {.lex_state = 8}, - [3386] = {.lex_state = 72}, - [3387] = {.lex_state = 72}, - [3388] = {.lex_state = 72}, - [3389] = {.lex_state = 72}, - [3390] = {.lex_state = 72}, - [3391] = {.lex_state = 72}, - [3392] = {.lex_state = 72}, + [3380] = {.lex_state = 17}, + [3381] = {.lex_state = 17}, + [3382] = {.lex_state = 17}, + [3383] = {.lex_state = 17}, + [3384] = {.lex_state = 17}, + [3385] = {.lex_state = 17}, + [3386] = {.lex_state = 17}, + [3387] = {.lex_state = 17}, + [3388] = {.lex_state = 17}, + [3389] = {.lex_state = 17}, + [3390] = {.lex_state = 17}, + [3391] = {.lex_state = 17}, + [3392] = {.lex_state = 17}, [3393] = {.lex_state = 72}, [3394] = {.lex_state = 72}, - [3395] = {.lex_state = 23}, - [3396] = {.lex_state = 72}, - [3397] = {.lex_state = 17}, - [3398] = {.lex_state = 17}, + [3395] = {.lex_state = 17}, + [3396] = {.lex_state = 17}, + [3397] = {.lex_state = 72}, + [3398] = {.lex_state = 72}, [3399] = {.lex_state = 72}, [3400] = {.lex_state = 72}, - [3401] = {.lex_state = 72}, + [3401] = {.lex_state = 17}, [3402] = {.lex_state = 72}, - [3403] = {.lex_state = 17}, - [3404] = {.lex_state = 17}, - [3405] = {.lex_state = 31}, - [3406] = {.lex_state = 72}, - [3407] = {.lex_state = 17}, + [3403] = {.lex_state = 72}, + [3404] = {.lex_state = 8}, + [3405] = {.lex_state = 72}, + [3406] = {.lex_state = 17}, + [3407] = {.lex_state = 72}, [3408] = {.lex_state = 72}, [3409] = {.lex_state = 72}, - [3410] = {.lex_state = 17}, + [3410] = {.lex_state = 72}, [3411] = {.lex_state = 72}, - [3412] = {.lex_state = 17}, + [3412] = {.lex_state = 72}, [3413] = {.lex_state = 17}, [3414] = {.lex_state = 72}, - [3415] = {.lex_state = 17}, + [3415] = {.lex_state = 72}, [3416] = {.lex_state = 72}, [3417] = {.lex_state = 72}, - [3418] = {.lex_state = 72}, - [3419] = {.lex_state = 72}, - [3420] = {.lex_state = 72}, - [3421] = {.lex_state = 72}, + [3418] = {.lex_state = 17}, + [3419] = {.lex_state = 17}, + [3420] = {.lex_state = 20}, + [3421] = {.lex_state = 17}, [3422] = {.lex_state = 72}, [3423] = {.lex_state = 17}, [3424] = {.lex_state = 72}, [3425] = {.lex_state = 72}, - [3426] = {.lex_state = 72, .external_lex_state = 6}, + [3426] = {.lex_state = 72}, [3427] = {.lex_state = 72}, [3428] = {.lex_state = 72}, - [3429] = {.lex_state = 17}, + [3429] = {.lex_state = 72}, [3430] = {.lex_state = 72}, - [3431] = {.lex_state = 72}, - [3432] = {.lex_state = 17}, - [3433] = {.lex_state = 72}, - [3434] = {.lex_state = 72}, - [3435] = {.lex_state = 72}, + [3431] = {.lex_state = 17}, + [3432] = {.lex_state = 72}, + [3433] = {.lex_state = 17}, + [3434] = {.lex_state = 17}, + [3435] = {.lex_state = 17}, [3436] = {.lex_state = 72}, [3437] = {.lex_state = 72}, - [3438] = {.lex_state = 72}, + [3438] = {.lex_state = 17}, [3439] = {.lex_state = 72}, - [3440] = {.lex_state = 72}, + [3440] = {.lex_state = 17}, [3441] = {.lex_state = 72}, [3442] = {.lex_state = 72}, [3443] = {.lex_state = 72}, - [3444] = {.lex_state = 17}, + [3444] = {.lex_state = 72}, [3445] = {.lex_state = 72}, - [3446] = {.lex_state = 17}, + [3446] = {.lex_state = 72}, [3447] = {.lex_state = 72}, [3448] = {.lex_state = 72}, - [3449] = {.lex_state = 17}, + [3449] = {.lex_state = 72}, [3450] = {.lex_state = 72}, [3451] = {.lex_state = 17}, - [3452] = {.lex_state = 17}, - [3453] = {.lex_state = 72}, + [3452] = {.lex_state = 72}, + [3453] = {.lex_state = 17}, [3454] = {.lex_state = 72}, [3455] = {.lex_state = 72}, - [3456] = {.lex_state = 72}, - [3457] = {.lex_state = 17}, + [3456] = {.lex_state = 17}, + [3457] = {.lex_state = 72}, [3458] = {.lex_state = 17}, - [3459] = {.lex_state = 17}, + [3459] = {.lex_state = 72}, [3460] = {.lex_state = 17}, [3461] = {.lex_state = 72}, [3462] = {.lex_state = 17}, [3463] = {.lex_state = 72}, - [3464] = {.lex_state = 17}, - [3465] = {.lex_state = 17}, - [3466] = {.lex_state = 17}, - [3467] = {.lex_state = 31}, - [3468] = {.lex_state = 72}, - [3469] = {.lex_state = 17}, - [3470] = {.lex_state = 17}, - [3471] = {.lex_state = 17}, + [3464] = {.lex_state = 72}, + [3465] = {.lex_state = 72}, + [3466] = {.lex_state = 72}, + [3467] = {.lex_state = 72}, + [3468] = {.lex_state = 17}, + [3469] = {.lex_state = 72}, + [3470] = {.lex_state = 72}, + [3471] = {.lex_state = 72}, [3472] = {.lex_state = 72}, - [3473] = {.lex_state = 17}, - [3474] = {.lex_state = 17}, + [3473] = {.lex_state = 72}, + [3474] = {.lex_state = 72}, [3475] = {.lex_state = 72}, - [3476] = {.lex_state = 17}, + [3476] = {.lex_state = 72}, [3477] = {.lex_state = 17}, - [3478] = {.lex_state = 17}, - [3479] = {.lex_state = 17}, + [3478] = {.lex_state = 72}, + [3479] = {.lex_state = 72}, [3480] = {.lex_state = 72}, - [3481] = {.lex_state = 72}, + [3481] = {.lex_state = 23}, [3482] = {.lex_state = 17}, [3483] = {.lex_state = 72}, - [3484] = {.lex_state = 17}, + [3484] = {.lex_state = 72}, [3485] = {.lex_state = 72}, [3486] = {.lex_state = 72}, [3487] = {.lex_state = 72}, [3488] = {.lex_state = 72}, [3489] = {.lex_state = 72}, [3490] = {.lex_state = 72}, - [3491] = {.lex_state = 17}, - [3492] = {.lex_state = 17}, + [3491] = {.lex_state = 72}, + [3492] = {.lex_state = 72}, [3493] = {.lex_state = 72}, [3494] = {.lex_state = 72}, [3495] = {.lex_state = 72}, [3496] = {.lex_state = 17}, - [3497] = {.lex_state = 17}, - [3498] = {.lex_state = 72}, - [3499] = {.lex_state = 17}, - [3500] = {.lex_state = 17}, - [3501] = {.lex_state = 72}, + [3497] = {.lex_state = 72}, + [3498] = {.lex_state = 17}, + [3499] = {.lex_state = 72}, + [3500] = {.lex_state = 72}, + [3501] = {.lex_state = 17}, [3502] = {.lex_state = 72}, - [3503] = {.lex_state = 72, .external_lex_state = 7}, - [3504] = {.lex_state = 72}, - [3505] = {.lex_state = 17}, + [3503] = {.lex_state = 72}, + [3504] = {.lex_state = 31}, + [3505] = {.lex_state = 72}, [3506] = {.lex_state = 17}, - [3507] = {.lex_state = 17}, - [3508] = {.lex_state = 72}, - [3509] = {.lex_state = 17}, - [3510] = {.lex_state = 17}, - [3511] = {.lex_state = 72, .external_lex_state = 8}, - [3512] = {.lex_state = 72}, - [3513] = {.lex_state = 72}, + [3507] = {.lex_state = 31}, + [3508] = {.lex_state = 17}, + [3509] = {.lex_state = 72}, + [3510] = {.lex_state = 72}, + [3511] = {.lex_state = 17}, + [3512] = {.lex_state = 17}, + [3513] = {.lex_state = 17}, [3514] = {.lex_state = 17}, [3515] = {.lex_state = 17}, - [3516] = {.lex_state = 17}, + [3516] = {.lex_state = 72}, [3517] = {.lex_state = 72}, [3518] = {.lex_state = 72}, [3519] = {.lex_state = 72}, - [3520] = {.lex_state = 72}, - [3521] = {.lex_state = 72}, + [3520] = {.lex_state = 17}, + [3521] = {.lex_state = 17}, [3522] = {.lex_state = 72}, [3523] = {.lex_state = 17}, - [3524] = {.lex_state = 23}, - [3525] = {.lex_state = 72}, - [3526] = {.lex_state = 73}, + [3524] = {.lex_state = 72}, + [3525] = {.lex_state = 17}, + [3526] = {.lex_state = 17}, [3527] = {.lex_state = 17}, - [3528] = {.lex_state = 72}, - [3529] = {.lex_state = 20}, + [3528] = {.lex_state = 17}, + [3529] = {.lex_state = 23}, [3530] = {.lex_state = 72}, - [3531] = {.lex_state = 72}, + [3531] = {.lex_state = 17}, [3532] = {.lex_state = 17}, - [3533] = {.lex_state = 17}, - [3534] = {.lex_state = 72}, - [3535] = {.lex_state = 72}, - [3536] = {.lex_state = 72}, + [3533] = {.lex_state = 72}, + [3534] = {.lex_state = 17}, + [3535] = {.lex_state = 17}, + [3536] = {.lex_state = 17}, [3537] = {.lex_state = 17}, [3538] = {.lex_state = 72}, [3539] = {.lex_state = 72}, - [3540] = {.lex_state = 72}, + [3540] = {.lex_state = 17}, [3541] = {.lex_state = 72}, - [3542] = {.lex_state = 17}, + [3542] = {.lex_state = 72}, [3543] = {.lex_state = 72}, - [3544] = {.lex_state = 72}, - [3545] = {.lex_state = 72}, + [3544] = {.lex_state = 8}, + [3545] = {.lex_state = 17}, [3546] = {.lex_state = 72}, [3547] = {.lex_state = 72}, - [3548] = {.lex_state = 20}, + [3548] = {.lex_state = 72}, [3549] = {.lex_state = 72}, [3550] = {.lex_state = 72}, - [3551] = {.lex_state = 72}, - [3552] = {.lex_state = 72}, - [3553] = {.lex_state = 72}, + [3551] = {.lex_state = 17}, + [3552] = {.lex_state = 17}, + [3553] = {.lex_state = 17}, [3554] = {.lex_state = 17}, - [3555] = {.lex_state = 17}, - [3556] = {.lex_state = 72}, - [3557] = {.lex_state = 72}, - [3558] = {.lex_state = 72}, - [3559] = {.lex_state = 17}, - [3560] = {.lex_state = 17}, - [3561] = {.lex_state = 72}, - [3562] = {.lex_state = 20}, + [3555] = {.lex_state = 72}, + [3556] = {.lex_state = 17}, + [3557] = {.lex_state = 73}, + [3558] = {.lex_state = 17}, + [3559] = {.lex_state = 72}, + [3560] = {.lex_state = 20}, + [3561] = {.lex_state = 72, .external_lex_state = 7}, + [3562] = {.lex_state = 72}, [3563] = {.lex_state = 72}, - [3564] = {.lex_state = 72}, - [3565] = {.lex_state = 17}, - [3566] = {.lex_state = 72}, - [3567] = {.lex_state = 72, .external_lex_state = 7}, - [3568] = {.lex_state = 72}, - [3569] = {.lex_state = 20}, - [3570] = {.lex_state = 17}, + [3564] = {.lex_state = 17}, + [3565] = {.lex_state = 20}, + [3566] = {.lex_state = 17}, + [3567] = {.lex_state = 72}, + [3568] = {.lex_state = 73}, + [3569] = {.lex_state = 17}, + [3570] = {.lex_state = 72}, [3571] = {.lex_state = 72}, - [3572] = {.lex_state = 72}, + [3572] = {.lex_state = 17}, [3573] = {.lex_state = 72}, [3574] = {.lex_state = 72}, [3575] = {.lex_state = 72}, - [3576] = {.lex_state = 72, .external_lex_state = 8}, - [3577] = {.lex_state = 72}, - [3578] = {.lex_state = 72}, + [3576] = {.lex_state = 20}, + [3577] = {.lex_state = 20}, + [3578] = {.lex_state = 72, .external_lex_state = 8}, [3579] = {.lex_state = 72}, [3580] = {.lex_state = 72}, [3581] = {.lex_state = 72}, [3582] = {.lex_state = 72}, - [3583] = {.lex_state = 17}, - [3584] = {.lex_state = 17}, - [3585] = {.lex_state = 17}, + [3583] = {.lex_state = 72}, + [3584] = {.lex_state = 72}, + [3585] = {.lex_state = 73}, [3586] = {.lex_state = 72}, - [3587] = {.lex_state = 72}, - [3588] = {.lex_state = 17}, - [3589] = {.lex_state = 72}, - [3590] = {.lex_state = 72}, - [3591] = {.lex_state = 72}, - [3592] = {.lex_state = 72}, + [3587] = {.lex_state = 17}, + [3588] = {.lex_state = 72}, + [3589] = {.lex_state = 17}, + [3590] = {.lex_state = 72, .external_lex_state = 7}, + [3591] = {.lex_state = 17}, + [3592] = {.lex_state = 17}, [3593] = {.lex_state = 72}, - [3594] = {.lex_state = 72}, + [3594] = {.lex_state = 72, .external_lex_state = 7}, [3595] = {.lex_state = 72}, [3596] = {.lex_state = 72}, [3597] = {.lex_state = 72}, - [3598] = {.lex_state = 72}, + [3598] = {.lex_state = 72, .external_lex_state = 9}, [3599] = {.lex_state = 72}, [3600] = {.lex_state = 17}, - [3601] = {.lex_state = 17}, - [3602] = {.lex_state = 72}, + [3601] = {.lex_state = 72}, + [3602] = {.lex_state = 72, .external_lex_state = 7}, [3603] = {.lex_state = 72}, - [3604] = {.lex_state = 72, .external_lex_state = 8}, - [3605] = {.lex_state = 167}, - [3606] = {.lex_state = 17}, + [3604] = {.lex_state = 72}, + [3605] = {.lex_state = 17}, + [3606] = {.lex_state = 72}, [3607] = {.lex_state = 72}, - [3608] = {.lex_state = 72}, + [3608] = {.lex_state = 72, .external_lex_state = 9}, [3609] = {.lex_state = 72}, - [3610] = {.lex_state = 72}, - [3611] = {.lex_state = 72}, + [3610] = {.lex_state = 20}, + [3611] = {.lex_state = 17}, [3612] = {.lex_state = 72}, [3613] = {.lex_state = 72}, [3614] = {.lex_state = 72}, - [3615] = {.lex_state = 20}, + [3615] = {.lex_state = 72}, [3616] = {.lex_state = 72}, [3617] = {.lex_state = 72}, [3618] = {.lex_state = 72}, - [3619] = {.lex_state = 72}, + [3619] = {.lex_state = 17}, [3620] = {.lex_state = 72}, - [3621] = {.lex_state = 20}, - [3622] = {.lex_state = 17}, + [3621] = {.lex_state = 72}, + [3622] = {.lex_state = 72}, [3623] = {.lex_state = 72}, - [3624] = {.lex_state = 72}, - [3625] = {.lex_state = 72, .external_lex_state = 9}, + [3624] = {.lex_state = 167}, + [3625] = {.lex_state = 72}, [3626] = {.lex_state = 72}, [3627] = {.lex_state = 72}, - [3628] = {.lex_state = 72}, + [3628] = {.lex_state = 17}, [3629] = {.lex_state = 72}, [3630] = {.lex_state = 72}, [3631] = {.lex_state = 72}, - [3632] = {.lex_state = 8}, - [3633] = {.lex_state = 72}, - [3634] = {.lex_state = 72}, - [3635] = {.lex_state = 17}, - [3636] = {.lex_state = 17}, - [3637] = {.lex_state = 17}, - [3638] = {.lex_state = 20}, - [3639] = {.lex_state = 8}, + [3632] = {.lex_state = 17}, + [3633] = {.lex_state = 17}, + [3634] = {.lex_state = 17}, + [3635] = {.lex_state = 72, .external_lex_state = 7}, + [3636] = {.lex_state = 72}, + [3637] = {.lex_state = 72}, + [3638] = {.lex_state = 72}, + [3639] = {.lex_state = 17}, [3640] = {.lex_state = 72}, [3641] = {.lex_state = 17}, - [3642] = {.lex_state = 73}, + [3642] = {.lex_state = 17}, [3643] = {.lex_state = 72}, [3644] = {.lex_state = 17}, [3645] = {.lex_state = 72}, - [3646] = {.lex_state = 72}, + [3646] = {.lex_state = 20}, [3647] = {.lex_state = 73}, [3648] = {.lex_state = 72}, [3649] = {.lex_state = 72}, [3650] = {.lex_state = 72}, - [3651] = {.lex_state = 72}, - [3652] = {.lex_state = 17}, - [3653] = {.lex_state = 72}, + [3651] = {.lex_state = 17}, + [3652] = {.lex_state = 72}, + [3653] = {.lex_state = 17}, [3654] = {.lex_state = 72}, [3655] = {.lex_state = 72}, - [3656] = {.lex_state = 20}, - [3657] = {.lex_state = 20}, - [3658] = {.lex_state = 72}, + [3656] = {.lex_state = 72}, + [3657] = {.lex_state = 72}, + [3658] = {.lex_state = 17}, [3659] = {.lex_state = 72}, [3660] = {.lex_state = 72}, - [3661] = {.lex_state = 73}, - [3662] = {.lex_state = 72}, - [3663] = {.lex_state = 72, .external_lex_state = 9}, + [3661] = {.lex_state = 72}, + [3662] = {.lex_state = 20}, + [3663] = {.lex_state = 8}, [3664] = {.lex_state = 72}, - [3665] = {.lex_state = 72}, + [3665] = {.lex_state = 17}, [3666] = {.lex_state = 72}, - [3667] = {.lex_state = 72}, + [3667] = {.lex_state = 17}, [3668] = {.lex_state = 72}, [3669] = {.lex_state = 72}, [3670] = {.lex_state = 72}, - [3671] = {.lex_state = 72, .external_lex_state = 7}, - [3672] = {.lex_state = 72}, + [3671] = {.lex_state = 72}, + [3672] = {.lex_state = 17}, [3673] = {.lex_state = 72}, [3674] = {.lex_state = 72}, - [3675] = {.lex_state = 17}, + [3675] = {.lex_state = 72}, [3676] = {.lex_state = 17}, - [3677] = {.lex_state = 72, .external_lex_state = 7}, - [3678] = {.lex_state = 72}, + [3677] = {.lex_state = 20}, + [3678] = {.lex_state = 17}, [3679] = {.lex_state = 72}, [3680] = {.lex_state = 72}, - [3681] = {.lex_state = 17}, - [3682] = {.lex_state = 72}, - [3683] = {.lex_state = 72}, - [3684] = {.lex_state = 72, .external_lex_state = 9}, + [3681] = {.lex_state = 72}, + [3682] = {.lex_state = 17}, + [3683] = {.lex_state = 72, .external_lex_state = 8}, + [3684] = {.lex_state = 72}, [3685] = {.lex_state = 72}, [3686] = {.lex_state = 72}, - [3687] = {.lex_state = 17}, + [3687] = {.lex_state = 72}, [3688] = {.lex_state = 72}, - [3689] = {.lex_state = 72}, - [3690] = {.lex_state = 72, .external_lex_state = 9}, - [3691] = {.lex_state = 72}, + [3689] = {.lex_state = 17}, + [3690] = {.lex_state = 72}, + [3691] = {.lex_state = 17}, [3692] = {.lex_state = 72}, - [3693] = {.lex_state = 72, .external_lex_state = 9}, - [3694] = {.lex_state = 72}, - [3695] = {.lex_state = 72}, - [3696] = {.lex_state = 72}, + [3693] = {.lex_state = 72}, + [3694] = {.lex_state = 17}, + [3695] = {.lex_state = 72, .external_lex_state = 9}, + [3696] = {.lex_state = 20}, [3697] = {.lex_state = 72}, - [3698] = {.lex_state = 72}, - [3699] = {.lex_state = 72}, - [3700] = {.lex_state = 72}, + [3698] = {.lex_state = 8}, + [3699] = {.lex_state = 17}, + [3700] = {.lex_state = 17}, [3701] = {.lex_state = 72}, [3702] = {.lex_state = 72}, - [3703] = {.lex_state = 73}, + [3703] = {.lex_state = 72}, [3704] = {.lex_state = 72}, - [3705] = {.lex_state = 17}, - [3706] = {.lex_state = 20}, + [3705] = {.lex_state = 72}, + [3706] = {.lex_state = 72}, [3707] = {.lex_state = 72}, - [3708] = {.lex_state = 73}, + [3708] = {.lex_state = 72}, [3709] = {.lex_state = 72}, [3710] = {.lex_state = 72}, - [3711] = {.lex_state = 72}, - [3712] = {.lex_state = 72}, + [3711] = {.lex_state = 17}, + [3712] = {.lex_state = 17}, [3713] = {.lex_state = 72}, - [3714] = {.lex_state = 20}, - [3715] = {.lex_state = 20}, + [3714] = {.lex_state = 72}, + [3715] = {.lex_state = 72}, [3716] = {.lex_state = 17}, [3717] = {.lex_state = 72}, - [3718] = {.lex_state = 20}, - [3719] = {.lex_state = 17}, - [3720] = {.lex_state = 20}, - [3721] = {.lex_state = 17}, - [3722] = {.lex_state = 17}, - [3723] = {.lex_state = 17}, - [3724] = {.lex_state = 72}, + [3718] = {.lex_state = 72}, + [3719] = {.lex_state = 72}, + [3720] = {.lex_state = 72}, + [3721] = {.lex_state = 72}, + [3722] = {.lex_state = 72, .external_lex_state = 8}, + [3723] = {.lex_state = 72, .external_lex_state = 9}, + [3724] = {.lex_state = 72, .external_lex_state = 9}, [3725] = {.lex_state = 72}, [3726] = {.lex_state = 72}, - [3727] = {.lex_state = 72, .external_lex_state = 8}, - [3728] = {.lex_state = 17}, + [3727] = {.lex_state = 72}, + [3728] = {.lex_state = 72}, [3729] = {.lex_state = 72}, - [3730] = {.lex_state = 72}, - [3731] = {.lex_state = 72, .external_lex_state = 8}, + [3730] = {.lex_state = 17}, + [3731] = {.lex_state = 72}, [3732] = {.lex_state = 72}, [3733] = {.lex_state = 72}, - [3734] = {.lex_state = 72}, - [3735] = {.lex_state = 20}, + [3734] = {.lex_state = 73}, + [3735] = {.lex_state = 17}, [3736] = {.lex_state = 72}, - [3737] = {.lex_state = 72, .external_lex_state = 9}, + [3737] = {.lex_state = 72}, [3738] = {.lex_state = 72}, - [3739] = {.lex_state = 20}, - [3740] = {.lex_state = 20}, - [3741] = {.lex_state = 17}, - [3742] = {.lex_state = 72}, + [3739] = {.lex_state = 72}, + [3740] = {.lex_state = 73}, + [3741] = {.lex_state = 72}, + [3742] = {.lex_state = 23}, [3743] = {.lex_state = 72}, - [3744] = {.lex_state = 72}, + [3744] = {.lex_state = 72, .external_lex_state = 8}, [3745] = {.lex_state = 72}, - [3746] = {.lex_state = 73}, + [3746] = {.lex_state = 72}, [3747] = {.lex_state = 72}, - [3748] = {.lex_state = 20}, + [3748] = {.lex_state = 72}, [3749] = {.lex_state = 72}, - [3750] = {.lex_state = 72}, + [3750] = {.lex_state = 72, .external_lex_state = 8}, [3751] = {.lex_state = 72}, [3752] = {.lex_state = 72}, [3753] = {.lex_state = 72}, @@ -14244,68 +14503,130 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3758] = {.lex_state = 72}, [3759] = {.lex_state = 72}, [3760] = {.lex_state = 72}, - [3761] = {.lex_state = 20}, - [3762] = {.lex_state = 20}, - [3763] = {.lex_state = 23}, - [3764] = {.lex_state = 20}, + [3761] = {.lex_state = 72}, + [3762] = {.lex_state = 72}, + [3763] = {.lex_state = 72}, + [3764] = {.lex_state = 72}, [3765] = {.lex_state = 72}, - [3766] = {.lex_state = 8}, + [3766] = {.lex_state = 72}, [3767] = {.lex_state = 20}, [3768] = {.lex_state = 72}, [3769] = {.lex_state = 72}, - [3770] = {.lex_state = 20}, + [3770] = {.lex_state = 72, .external_lex_state = 8}, [3771] = {.lex_state = 72}, - [3772] = {.lex_state = 17}, - [3773] = {.lex_state = 20}, - [3774] = {.lex_state = 20}, - [3775] = {.lex_state = 72}, - [3776] = {.lex_state = 72}, - [3777] = {.lex_state = 20}, - [3778] = {.lex_state = 20}, - [3779] = {.lex_state = 20}, + [3772] = {.lex_state = 20}, + [3773] = {.lex_state = 72}, + [3774] = {.lex_state = 72}, + [3775] = {.lex_state = 20}, + [3776] = {.lex_state = 20}, + [3777] = {.lex_state = 17}, + [3778] = {.lex_state = 72}, + [3779] = {.lex_state = 72}, [3780] = {.lex_state = 72}, - [3781] = {.lex_state = 17}, + [3781] = {.lex_state = 20}, [3782] = {.lex_state = 72}, - [3783] = {.lex_state = 72}, - [3784] = {.lex_state = 73}, - [3785] = {.lex_state = 72}, - [3786] = {.lex_state = 72}, - [3787] = {.lex_state = 72, .external_lex_state = 8}, + [3783] = {.lex_state = 17}, + [3784] = {.lex_state = 72}, + [3785] = {.lex_state = 17}, + [3786] = {.lex_state = 17}, + [3787] = {.lex_state = 17}, [3788] = {.lex_state = 17}, - [3789] = {.lex_state = 72, .external_lex_state = 7}, + [3789] = {.lex_state = 72}, [3790] = {.lex_state = 17}, - [3791] = {.lex_state = 17}, - [3792] = {.lex_state = 17}, - [3793] = {.lex_state = 72}, - [3794] = {.lex_state = 17}, - [3795] = {.lex_state = 17}, + [3791] = {.lex_state = 72}, + [3792] = {.lex_state = 72}, + [3793] = {.lex_state = 17}, + [3794] = {.lex_state = 72}, + [3795] = {.lex_state = 20}, [3796] = {.lex_state = 72}, - [3797] = {.lex_state = 17}, + [3797] = {.lex_state = 23}, [3798] = {.lex_state = 72}, - [3799] = {.lex_state = 17}, + [3799] = {.lex_state = 20}, [3800] = {.lex_state = 72}, - [3801] = {.lex_state = 17}, + [3801] = {.lex_state = 20}, [3802] = {.lex_state = 72}, - [3803] = {.lex_state = 17}, - [3804] = {.lex_state = 17}, - [3805] = {.lex_state = 17}, + [3803] = {.lex_state = 72, .external_lex_state = 7}, + [3804] = {.lex_state = 73}, + [3805] = {.lex_state = 72}, [3806] = {.lex_state = 17}, - [3807] = {.lex_state = 17}, - [3808] = {.lex_state = 17}, - [3809] = {.lex_state = 17}, + [3807] = {.lex_state = 72}, + [3808] = {.lex_state = 20}, + [3809] = {.lex_state = 72}, [3810] = {.lex_state = 72}, - [3811] = {.lex_state = 17}, - [3812] = {.lex_state = 17}, + [3811] = {.lex_state = 72}, + [3812] = {.lex_state = 72}, [3813] = {.lex_state = 72}, - [3814] = {.lex_state = 17}, - [3815] = {.lex_state = 17}, - [3816] = {(TSStateId)(-1),}, - [3817] = {(TSStateId)(-1),}, - [3818] = {(TSStateId)(-1),}, - [3819] = {(TSStateId)(-1),}, - [3820] = {(TSStateId)(-1),}, - [3821] = {(TSStateId)(-1),}, - [3822] = {(TSStateId)(-1),}, + [3814] = {.lex_state = 72}, + [3815] = {.lex_state = 72}, + [3816] = {.lex_state = 72}, + [3817] = {.lex_state = 20}, + [3818] = {.lex_state = 72}, + [3819] = {.lex_state = 72}, + [3820] = {.lex_state = 72}, + [3821] = {.lex_state = 17}, + [3822] = {.lex_state = 72}, + [3823] = {.lex_state = 72}, + [3824] = {.lex_state = 20}, + [3825] = {.lex_state = 72}, + [3826] = {.lex_state = 20}, + [3827] = {.lex_state = 72}, + [3828] = {.lex_state = 72}, + [3829] = {.lex_state = 20}, + [3830] = {.lex_state = 8}, + [3831] = {.lex_state = 72}, + [3832] = {.lex_state = 20}, + [3833] = {.lex_state = 72}, + [3834] = {.lex_state = 20}, + [3835] = {.lex_state = 17}, + [3836] = {.lex_state = 72}, + [3837] = {.lex_state = 72}, + [3838] = {.lex_state = 20}, + [3839] = {.lex_state = 72}, + [3840] = {.lex_state = 20}, + [3841] = {.lex_state = 20}, + [3842] = {.lex_state = 20}, + [3843] = {.lex_state = 17}, + [3844] = {.lex_state = 72}, + [3845] = {.lex_state = 72}, + [3846] = {.lex_state = 17}, + [3847] = {.lex_state = 72}, + [3848] = {.lex_state = 17}, + [3849] = {.lex_state = 72}, + [3850] = {.lex_state = 17}, + [3851] = {.lex_state = 17}, + [3852] = {.lex_state = 72}, + [3853] = {.lex_state = 17}, + [3854] = {.lex_state = 17}, + [3855] = {.lex_state = 72}, + [3856] = {.lex_state = 72}, + [3857] = {.lex_state = 17}, + [3858] = {.lex_state = 72}, + [3859] = {.lex_state = 72}, + [3860] = {.lex_state = 72}, + [3861] = {.lex_state = 73}, + [3862] = {.lex_state = 72}, + [3863] = {.lex_state = 17}, + [3864] = {.lex_state = 17}, + [3865] = {.lex_state = 72}, + [3866] = {.lex_state = 72}, + [3867] = {.lex_state = 72}, + [3868] = {.lex_state = 72}, + [3869] = {.lex_state = 17}, + [3870] = {.lex_state = 17}, + [3871] = {.lex_state = 72}, + [3872] = {.lex_state = 72}, + [3873] = {.lex_state = 17}, + [3874] = {.lex_state = 17}, + [3875] = {.lex_state = 17}, + [3876] = {.lex_state = 17}, + [3877] = {.lex_state = 72}, + [3878] = {(TSStateId)(-1),}, + [3879] = {(TSStateId)(-1),}, + [3880] = {(TSStateId)(-1),}, + [3881] = {(TSStateId)(-1),}, + [3882] = {(TSStateId)(-1),}, + [3883] = {(TSStateId)(-1),}, + [3884] = {(TSStateId)(-1),}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -14466,83 +14787,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__error_sentinel] = ACTIONS(1), }, [STATE(1)] = { - [sym_source_file] = STATE(3607), - [sym__statement] = STATE(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1960), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_source_file] = STATE(3763), + [sym__statement] = STATE(656), + [sym_empty_statement] = STATE(544), + [sym_expression_statement] = STATE(544), + [sym_declaration_with_attribute] = STATE(544), + [sym_macro_definition] = STATE(544), + [sym_attribute_item] = STATE(825), + [sym_attributes] = STATE(35), + [sym_inner_attribute_item] = STATE(544), + [sym_mod_item] = STATE(544), + [sym_foreign_mod_item] = STATE(544), + [sym_struct_item] = STATE(544), + [sym_union_item] = STATE(544), + [sym_enum_item] = STATE(544), + [sym_extern_crate_declaration] = STATE(544), + [sym_const_item] = STATE(544), + [sym_static_item] = STATE(544), + [sym_type_item] = STATE(544), + [sym_function_item] = STATE(544), + [sym_function_signature_item] = STATE(544), + [sym_function_modifiers] = STATE(3806), + [sym_impl_item] = STATE(544), + [sym_trait_item] = STATE(544), + [sym_associated_type] = STATE(544), + [sym_let_declaration] = STATE(544), + [sym_use_declaration] = STATE(544), + [sym_extern_modifier] = STATE(2327), + [sym_visibility_modifier] = STATE(2084), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(2010), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_block_expression_with_attribute] = STATE(699), + [sym_macro_invocation] = STATE(425), + [sym_scoped_identifier] = STATE(1661), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(432), + [sym_match_expression] = STATE(432), + [sym_while_expression] = STATE(432), + [sym_loop_expression] = STATE(432), + [sym_for_expression] = STATE(432), + [sym_const_block] = STATE(432), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3677), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(432), + [sym_async_block] = STATE(432), + [sym_gen_block] = STATE(432), + [sym_try_block] = STATE(432), + [sym_block] = STATE(432), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(1), [sym_block_comment] = STATE(1), - [aux_sym_source_file_repeat1] = STATE(2), - [aux_sym_function_modifiers_repeat1] = STATE(2317), + [aux_sym_source_file_repeat1] = STATE(5), + [aux_sym_attributes_repeat1] = STATE(795), + [aux_sym_function_modifiers_repeat1] = STATE(2385), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -14622,89 +14949,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(2)] = { - [sym__statement] = STATE(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1960), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(656), + [sym_empty_statement] = STATE(544), + [sym_expression_statement] = STATE(544), + [sym_declaration_with_attribute] = STATE(544), + [sym_macro_definition] = STATE(544), + [sym_attribute_item] = STATE(825), + [sym_attributes] = STATE(35), + [sym_inner_attribute_item] = STATE(544), + [sym_mod_item] = STATE(544), + [sym_foreign_mod_item] = STATE(544), + [sym_struct_item] = STATE(544), + [sym_union_item] = STATE(544), + [sym_enum_item] = STATE(544), + [sym_extern_crate_declaration] = STATE(544), + [sym_const_item] = STATE(544), + [sym_static_item] = STATE(544), + [sym_type_item] = STATE(544), + [sym_function_item] = STATE(544), + [sym_function_signature_item] = STATE(544), + [sym_function_modifiers] = STATE(3806), + [sym_impl_item] = STATE(544), + [sym_trait_item] = STATE(544), + [sym_associated_type] = STATE(544), + [sym_let_declaration] = STATE(544), + [sym_use_declaration] = STATE(544), + [sym_extern_modifier] = STATE(2327), + [sym_visibility_modifier] = STATE(2084), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1889), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_block_expression_with_attribute] = STATE(699), + [sym_macro_invocation] = STATE(425), + [sym_scoped_identifier] = STATE(1661), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(432), + [sym_match_expression] = STATE(432), + [sym_while_expression] = STATE(432), + [sym_loop_expression] = STATE(432), + [sym_for_expression] = STATE(432), + [sym_const_block] = STATE(432), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3677), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(432), + [sym_async_block] = STATE(432), + [sym_gen_block] = STATE(432), + [sym_try_block] = STATE(432), + [sym_block] = STATE(432), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(2), [sym_block_comment] = STATE(2), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [ts_builtin_sym_end] = ACTIONS(119), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_attributes_repeat1] = STATE(795), + [aux_sym_function_modifiers_repeat1] = STATE(2385), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(119), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -14776,89 +15109,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(3)] = { - [sym__statement] = STATE(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1960), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(656), + [sym_empty_statement] = STATE(544), + [sym_expression_statement] = STATE(544), + [sym_declaration_with_attribute] = STATE(544), + [sym_macro_definition] = STATE(544), + [sym_attribute_item] = STATE(825), + [sym_attributes] = STATE(35), + [sym_inner_attribute_item] = STATE(544), + [sym_mod_item] = STATE(544), + [sym_foreign_mod_item] = STATE(544), + [sym_struct_item] = STATE(544), + [sym_union_item] = STATE(544), + [sym_enum_item] = STATE(544), + [sym_extern_crate_declaration] = STATE(544), + [sym_const_item] = STATE(544), + [sym_static_item] = STATE(544), + [sym_type_item] = STATE(544), + [sym_function_item] = STATE(544), + [sym_function_signature_item] = STATE(544), + [sym_function_modifiers] = STATE(3806), + [sym_impl_item] = STATE(544), + [sym_trait_item] = STATE(544), + [sym_associated_type] = STATE(544), + [sym_let_declaration] = STATE(544), + [sym_use_declaration] = STATE(544), + [sym_extern_modifier] = STATE(2327), + [sym_visibility_modifier] = STATE(2084), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1888), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_block_expression_with_attribute] = STATE(699), + [sym_macro_invocation] = STATE(425), + [sym_scoped_identifier] = STATE(1661), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(432), + [sym_match_expression] = STATE(432), + [sym_while_expression] = STATE(432), + [sym_loop_expression] = STATE(432), + [sym_for_expression] = STATE(432), + [sym_const_block] = STATE(432), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3677), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(432), + [sym_async_block] = STATE(432), + [sym_gen_block] = STATE(432), + [sym_try_block] = STATE(432), + [sym_block] = STATE(432), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(3), [sym_block_comment] = STATE(3), - [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [ts_builtin_sym_end] = ACTIONS(119), + [aux_sym_source_file_repeat1] = STATE(2), + [aux_sym_attributes_repeat1] = STATE(795), + [aux_sym_function_modifiers_repeat1] = STATE(2385), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(123), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -14930,89 +15269,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(4)] = { - [sym__statement] = STATE(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1717), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(656), + [sym_empty_statement] = STATE(544), + [sym_expression_statement] = STATE(544), + [sym_declaration_with_attribute] = STATE(544), + [sym_macro_definition] = STATE(544), + [sym_attribute_item] = STATE(825), + [sym_attributes] = STATE(35), + [sym_inner_attribute_item] = STATE(544), + [sym_mod_item] = STATE(544), + [sym_foreign_mod_item] = STATE(544), + [sym_struct_item] = STATE(544), + [sym_union_item] = STATE(544), + [sym_enum_item] = STATE(544), + [sym_extern_crate_declaration] = STATE(544), + [sym_const_item] = STATE(544), + [sym_static_item] = STATE(544), + [sym_type_item] = STATE(544), + [sym_function_item] = STATE(544), + [sym_function_signature_item] = STATE(544), + [sym_function_modifiers] = STATE(3806), + [sym_impl_item] = STATE(544), + [sym_trait_item] = STATE(544), + [sym_associated_type] = STATE(544), + [sym_let_declaration] = STATE(544), + [sym_use_declaration] = STATE(544), + [sym_extern_modifier] = STATE(2327), + [sym_visibility_modifier] = STATE(2084), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(2010), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_block_expression_with_attribute] = STATE(699), + [sym_macro_invocation] = STATE(425), + [sym_scoped_identifier] = STATE(1661), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(432), + [sym_match_expression] = STATE(432), + [sym_while_expression] = STATE(432), + [sym_loop_expression] = STATE(432), + [sym_for_expression] = STATE(432), + [sym_const_block] = STATE(432), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3677), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(432), + [sym_async_block] = STATE(432), + [sym_gen_block] = STATE(432), + [sym_try_block] = STATE(432), + [sym_block] = STATE(432), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(4), [sym_block_comment] = STATE(4), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2317), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_attributes_repeat1] = STATE(795), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [ts_builtin_sym_end] = ACTIONS(125), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(123), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15084,89 +15429,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(5)] = { - [sym__statement] = STATE(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1902), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(656), + [sym_empty_statement] = STATE(544), + [sym_expression_statement] = STATE(544), + [sym_declaration_with_attribute] = STATE(544), + [sym_macro_definition] = STATE(544), + [sym_attribute_item] = STATE(825), + [sym_attributes] = STATE(35), + [sym_inner_attribute_item] = STATE(544), + [sym_mod_item] = STATE(544), + [sym_foreign_mod_item] = STATE(544), + [sym_struct_item] = STATE(544), + [sym_union_item] = STATE(544), + [sym_enum_item] = STATE(544), + [sym_extern_crate_declaration] = STATE(544), + [sym_const_item] = STATE(544), + [sym_static_item] = STATE(544), + [sym_type_item] = STATE(544), + [sym_function_item] = STATE(544), + [sym_function_signature_item] = STATE(544), + [sym_function_modifiers] = STATE(3806), + [sym_impl_item] = STATE(544), + [sym_trait_item] = STATE(544), + [sym_associated_type] = STATE(544), + [sym_let_declaration] = STATE(544), + [sym_use_declaration] = STATE(544), + [sym_extern_modifier] = STATE(2327), + [sym_visibility_modifier] = STATE(2084), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(2010), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_block_expression_with_attribute] = STATE(699), + [sym_macro_invocation] = STATE(425), + [sym_scoped_identifier] = STATE(1661), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(432), + [sym_match_expression] = STATE(432), + [sym_while_expression] = STATE(432), + [sym_loop_expression] = STATE(432), + [sym_for_expression] = STATE(432), + [sym_const_block] = STATE(432), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3677), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(432), + [sym_async_block] = STATE(432), + [sym_gen_block] = STATE(432), + [sym_try_block] = STATE(432), + [sym_block] = STATE(432), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(5), [sym_block_comment] = STATE(5), - [aux_sym_source_file_repeat1] = STATE(4), - [aux_sym_function_modifiers_repeat1] = STATE(2317), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_attributes_repeat1] = STATE(795), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [ts_builtin_sym_end] = ACTIONS(125), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(125), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15238,89 +15589,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(6)] = { - [sym__statement] = STATE(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1960), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(656), + [sym_empty_statement] = STATE(544), + [sym_expression_statement] = STATE(544), + [sym_declaration_with_attribute] = STATE(544), + [sym_macro_definition] = STATE(544), + [sym_attribute_item] = STATE(825), + [sym_attributes] = STATE(35), + [sym_inner_attribute_item] = STATE(544), + [sym_mod_item] = STATE(544), + [sym_foreign_mod_item] = STATE(544), + [sym_struct_item] = STATE(544), + [sym_union_item] = STATE(544), + [sym_enum_item] = STATE(544), + [sym_extern_crate_declaration] = STATE(544), + [sym_const_item] = STATE(544), + [sym_static_item] = STATE(544), + [sym_type_item] = STATE(544), + [sym_function_item] = STATE(544), + [sym_function_signature_item] = STATE(544), + [sym_function_modifiers] = STATE(3806), + [sym_impl_item] = STATE(544), + [sym_trait_item] = STATE(544), + [sym_associated_type] = STATE(544), + [sym_let_declaration] = STATE(544), + [sym_use_declaration] = STATE(544), + [sym_extern_modifier] = STATE(2327), + [sym_visibility_modifier] = STATE(2084), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1952), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_block_expression_with_attribute] = STATE(699), + [sym_macro_invocation] = STATE(425), + [sym_scoped_identifier] = STATE(1661), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(432), + [sym_match_expression] = STATE(432), + [sym_while_expression] = STATE(432), + [sym_loop_expression] = STATE(432), + [sym_for_expression] = STATE(432), + [sym_const_block] = STATE(432), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3677), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(432), + [sym_async_block] = STATE(432), + [sym_gen_block] = STATE(432), + [sym_try_block] = STATE(432), + [sym_block] = STATE(432), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(6), [sym_block_comment] = STATE(6), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [ts_builtin_sym_end] = ACTIONS(127), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_attributes_repeat1] = STATE(795), + [aux_sym_function_modifiers_repeat1] = STATE(2385), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(127), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15392,243 +15749,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(7)] = { - [sym__statement] = STATE(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1960), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(656), + [sym_empty_statement] = STATE(544), + [sym_expression_statement] = STATE(544), + [sym_declaration_with_attribute] = STATE(544), + [sym_macro_definition] = STATE(544), + [sym_attribute_item] = STATE(825), + [sym_attributes] = STATE(35), + [sym_inner_attribute_item] = STATE(544), + [sym_mod_item] = STATE(544), + [sym_foreign_mod_item] = STATE(544), + [sym_struct_item] = STATE(544), + [sym_union_item] = STATE(544), + [sym_enum_item] = STATE(544), + [sym_extern_crate_declaration] = STATE(544), + [sym_const_item] = STATE(544), + [sym_static_item] = STATE(544), + [sym_type_item] = STATE(544), + [sym_function_item] = STATE(544), + [sym_function_signature_item] = STATE(544), + [sym_function_modifiers] = STATE(3806), + [sym_impl_item] = STATE(544), + [sym_trait_item] = STATE(544), + [sym_associated_type] = STATE(544), + [sym_let_declaration] = STATE(544), + [sym_use_declaration] = STATE(544), + [sym_extern_modifier] = STATE(2327), + [sym_visibility_modifier] = STATE(2084), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(2010), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_block_expression_with_attribute] = STATE(699), + [sym_macro_invocation] = STATE(425), + [sym_scoped_identifier] = STATE(1661), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(432), + [sym_match_expression] = STATE(432), + [sym_while_expression] = STATE(432), + [sym_loop_expression] = STATE(432), + [sym_for_expression] = STATE(432), + [sym_const_block] = STATE(432), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3677), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(432), + [sym_async_block] = STATE(432), + [sym_gen_block] = STATE(432), + [sym_try_block] = STATE(432), + [sym_block] = STATE(432), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(7), [sym_block_comment] = STATE(7), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(2317), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_attributes_repeat1] = STATE(795), + [aux_sym_function_modifiers_repeat1] = STATE(2385), [ts_builtin_sym_end] = ACTIONS(129), - [sym_identifier] = ACTIONS(131), - [anon_sym_SEMI] = ACTIONS(134), - [anon_sym_macro_rules_BANG] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACE] = ACTIONS(146), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_u8] = ACTIONS(152), - [anon_sym_i8] = ACTIONS(152), - [anon_sym_u16] = ACTIONS(152), - [anon_sym_i16] = ACTIONS(152), - [anon_sym_u32] = ACTIONS(152), - [anon_sym_i32] = ACTIONS(152), - [anon_sym_u64] = ACTIONS(152), - [anon_sym_i64] = ACTIONS(152), - [anon_sym_u128] = ACTIONS(152), - [anon_sym_i128] = ACTIONS(152), - [anon_sym_isize] = ACTIONS(152), - [anon_sym_usize] = ACTIONS(152), - [anon_sym_f32] = ACTIONS(152), - [anon_sym_f64] = ACTIONS(152), - [anon_sym_bool] = ACTIONS(152), - [anon_sym_str] = ACTIONS(152), - [anon_sym_char] = ACTIONS(152), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_AMP] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(158), - [anon_sym_LT] = ACTIONS(161), - [anon_sym_DOT_DOT] = ACTIONS(164), - [anon_sym_COLON_COLON] = ACTIONS(167), - [anon_sym_POUND] = ACTIONS(170), - [anon_sym_SQUOTE] = ACTIONS(173), - [anon_sym_async] = ACTIONS(176), - [anon_sym_break] = ACTIONS(179), - [anon_sym_const] = ACTIONS(182), - [anon_sym_continue] = ACTIONS(185), - [anon_sym_default] = ACTIONS(188), - [anon_sym_enum] = ACTIONS(191), - [anon_sym_fn] = ACTIONS(194), - [anon_sym_for] = ACTIONS(197), - [anon_sym_gen] = ACTIONS(200), - [anon_sym_if] = ACTIONS(203), - [anon_sym_impl] = ACTIONS(206), - [anon_sym_let] = ACTIONS(209), - [anon_sym_loop] = ACTIONS(212), - [anon_sym_match] = ACTIONS(215), - [anon_sym_mod] = ACTIONS(218), - [anon_sym_pub] = ACTIONS(221), - [anon_sym_return] = ACTIONS(224), - [anon_sym_static] = ACTIONS(227), - [anon_sym_struct] = ACTIONS(230), - [anon_sym_trait] = ACTIONS(233), - [anon_sym_type] = ACTIONS(236), - [anon_sym_union] = ACTIONS(239), - [anon_sym_unsafe] = ACTIONS(242), - [anon_sym_use] = ACTIONS(245), - [anon_sym_while] = ACTIONS(248), - [anon_sym_extern] = ACTIONS(251), - [anon_sym_yield] = ACTIONS(254), - [anon_sym_move] = ACTIONS(257), - [anon_sym_try] = ACTIONS(260), - [sym_integer_literal] = ACTIONS(263), - [aux_sym_string_literal_token1] = ACTIONS(266), - [sym_char_literal] = ACTIONS(263), - [anon_sym_true] = ACTIONS(269), - [anon_sym_false] = ACTIONS(269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(272), - [sym_super] = ACTIONS(275), - [sym_crate] = ACTIONS(278), - [sym_metavariable] = ACTIONS(281), - [sym__raw_string_literal_start] = ACTIONS(284), - [sym_float_literal] = ACTIONS(263), - }, - [STATE(8)] = { - [sym__statement] = STATE(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1723), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(8), - [sym_block_comment] = STATE(8), - [aux_sym_source_file_repeat1] = STATE(9), - [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(287), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15699,83 +15908,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, + [STATE(8)] = { + [sym__statement] = STATE(656), + [sym_empty_statement] = STATE(544), + [sym_expression_statement] = STATE(544), + [sym_declaration_with_attribute] = STATE(544), + [sym_macro_definition] = STATE(544), + [sym_attribute_item] = STATE(825), + [sym_attributes] = STATE(35), + [sym_inner_attribute_item] = STATE(544), + [sym_mod_item] = STATE(544), + [sym_foreign_mod_item] = STATE(544), + [sym_struct_item] = STATE(544), + [sym_union_item] = STATE(544), + [sym_enum_item] = STATE(544), + [sym_extern_crate_declaration] = STATE(544), + [sym_const_item] = STATE(544), + [sym_static_item] = STATE(544), + [sym_type_item] = STATE(544), + [sym_function_item] = STATE(544), + [sym_function_signature_item] = STATE(544), + [sym_function_modifiers] = STATE(3806), + [sym_impl_item] = STATE(544), + [sym_trait_item] = STATE(544), + [sym_associated_type] = STATE(544), + [sym_let_declaration] = STATE(544), + [sym_use_declaration] = STATE(544), + [sym_extern_modifier] = STATE(2327), + [sym_visibility_modifier] = STATE(2084), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(2010), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_block_expression_with_attribute] = STATE(699), + [sym_macro_invocation] = STATE(425), + [sym_scoped_identifier] = STATE(1661), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(432), + [sym_match_expression] = STATE(432), + [sym_while_expression] = STATE(432), + [sym_loop_expression] = STATE(432), + [sym_for_expression] = STATE(432), + [sym_const_block] = STATE(432), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3677), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(432), + [sym_async_block] = STATE(432), + [sym_gen_block] = STATE(432), + [sym_try_block] = STATE(432), + [sym_block] = STATE(432), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(8), + [sym_block_comment] = STATE(8), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_attributes_repeat1] = STATE(795), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [ts_builtin_sym_end] = ACTIONS(131), + [sym_identifier] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(136), + [anon_sym_macro_rules_BANG] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(148), + [anon_sym_STAR] = 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_isize] = ACTIONS(154), + [anon_sym_usize] = ACTIONS(154), + [anon_sym_f32] = ACTIONS(154), + [anon_sym_f64] = ACTIONS(154), + [anon_sym_bool] = ACTIONS(154), + [anon_sym_str] = ACTIONS(154), + [anon_sym_char] = ACTIONS(154), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(160), + [anon_sym_LT] = ACTIONS(163), + [anon_sym_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_POUND] = ACTIONS(172), + [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_async] = ACTIONS(178), + [anon_sym_break] = ACTIONS(181), + [anon_sym_const] = ACTIONS(184), + [anon_sym_continue] = ACTIONS(187), + [anon_sym_default] = ACTIONS(190), + [anon_sym_enum] = ACTIONS(193), + [anon_sym_fn] = ACTIONS(196), + [anon_sym_for] = ACTIONS(199), + [anon_sym_gen] = ACTIONS(202), + [anon_sym_if] = ACTIONS(205), + [anon_sym_impl] = ACTIONS(208), + [anon_sym_let] = ACTIONS(211), + [anon_sym_loop] = ACTIONS(214), + [anon_sym_match] = ACTIONS(217), + [anon_sym_mod] = ACTIONS(220), + [anon_sym_pub] = ACTIONS(223), + [anon_sym_return] = ACTIONS(226), + [anon_sym_static] = ACTIONS(229), + [anon_sym_struct] = ACTIONS(232), + [anon_sym_trait] = ACTIONS(235), + [anon_sym_type] = ACTIONS(238), + [anon_sym_union] = ACTIONS(241), + [anon_sym_unsafe] = ACTIONS(244), + [anon_sym_use] = ACTIONS(247), + [anon_sym_while] = ACTIONS(250), + [anon_sym_extern] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(256), + [anon_sym_move] = ACTIONS(259), + [anon_sym_try] = ACTIONS(262), + [sym_integer_literal] = ACTIONS(265), + [aux_sym_string_literal_token1] = ACTIONS(268), + [sym_char_literal] = ACTIONS(265), + [anon_sym_true] = ACTIONS(271), + [anon_sym_false] = ACTIONS(271), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(274), + [sym_super] = ACTIONS(277), + [sym_crate] = ACTIONS(280), + [sym_metavariable] = ACTIONS(283), + [sym__raw_string_literal_start] = ACTIONS(286), + [sym_float_literal] = ACTIONS(265), + }, [STATE(9)] = { - [sym__statement] = STATE(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1816), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(656), + [sym_empty_statement] = STATE(544), + [sym_expression_statement] = STATE(544), + [sym_declaration_with_attribute] = STATE(544), + [sym_macro_definition] = STATE(544), + [sym_attribute_item] = STATE(825), + [sym_attributes] = STATE(35), + [sym_inner_attribute_item] = STATE(544), + [sym_mod_item] = STATE(544), + [sym_foreign_mod_item] = STATE(544), + [sym_struct_item] = STATE(544), + [sym_union_item] = STATE(544), + [sym_enum_item] = STATE(544), + [sym_extern_crate_declaration] = STATE(544), + [sym_const_item] = STATE(544), + [sym_static_item] = STATE(544), + [sym_type_item] = STATE(544), + [sym_function_item] = STATE(544), + [sym_function_signature_item] = STATE(544), + [sym_function_modifiers] = STATE(3806), + [sym_impl_item] = STATE(544), + [sym_trait_item] = STATE(544), + [sym_associated_type] = STATE(544), + [sym_let_declaration] = STATE(544), + [sym_use_declaration] = STATE(544), + [sym_extern_modifier] = STATE(2327), + [sym_visibility_modifier] = STATE(2084), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1982), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_block_expression_with_attribute] = STATE(699), + [sym_macro_invocation] = STATE(425), + [sym_scoped_identifier] = STATE(1661), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(432), + [sym_match_expression] = STATE(432), + [sym_while_expression] = STATE(432), + [sym_loop_expression] = STATE(432), + [sym_for_expression] = STATE(432), + [sym_const_block] = STATE(432), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3677), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(432), + [sym_async_block] = STATE(432), + [sym_gen_block] = STATE(432), + [sym_try_block] = STATE(432), + [sym_block] = STATE(432), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(9), [sym_block_comment] = STATE(9), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2317), + [aux_sym_source_file_repeat1] = STATE(10), + [aux_sym_attributes_repeat1] = STATE(795), + [aux_sym_function_modifiers_repeat1] = STATE(2385), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -15854,82 +16229,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(10)] = { - [sym__statement] = STATE(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1869), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(656), + [sym_empty_statement] = STATE(544), + [sym_expression_statement] = STATE(544), + [sym_declaration_with_attribute] = STATE(544), + [sym_macro_definition] = STATE(544), + [sym_attribute_item] = STATE(825), + [sym_attributes] = STATE(35), + [sym_inner_attribute_item] = STATE(544), + [sym_mod_item] = STATE(544), + [sym_foreign_mod_item] = STATE(544), + [sym_struct_item] = STATE(544), + [sym_union_item] = STATE(544), + [sym_enum_item] = STATE(544), + [sym_extern_crate_declaration] = STATE(544), + [sym_const_item] = STATE(544), + [sym_static_item] = STATE(544), + [sym_type_item] = STATE(544), + [sym_function_item] = STATE(544), + [sym_function_signature_item] = STATE(544), + [sym_function_modifiers] = STATE(3806), + [sym_impl_item] = STATE(544), + [sym_trait_item] = STATE(544), + [sym_associated_type] = STATE(544), + [sym_let_declaration] = STATE(544), + [sym_use_declaration] = STATE(544), + [sym_extern_modifier] = STATE(2327), + [sym_visibility_modifier] = STATE(2084), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1830), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_block_expression_with_attribute] = STATE(699), + [sym_macro_invocation] = STATE(425), + [sym_scoped_identifier] = STATE(1661), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(432), + [sym_match_expression] = STATE(432), + [sym_while_expression] = STATE(432), + [sym_loop_expression] = STATE(432), + [sym_for_expression] = STATE(432), + [sym_const_block] = STATE(432), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3677), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(432), + [sym_async_block] = STATE(432), + [sym_gen_block] = STATE(432), + [sym_try_block] = STATE(432), + [sym_block] = STATE(432), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(10), [sym_block_comment] = STATE(10), - [aux_sym_source_file_repeat1] = STATE(11), - [aux_sym_function_modifiers_repeat1] = STATE(2317), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_attributes_repeat1] = STATE(795), + [aux_sym_function_modifiers_repeat1] = STATE(2385), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16008,82 +16389,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(11)] = { - [sym__statement] = STATE(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1873), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(656), + [sym_empty_statement] = STATE(544), + [sym_expression_statement] = STATE(544), + [sym_declaration_with_attribute] = STATE(544), + [sym_macro_definition] = STATE(544), + [sym_attribute_item] = STATE(825), + [sym_attributes] = STATE(35), + [sym_inner_attribute_item] = STATE(544), + [sym_mod_item] = STATE(544), + [sym_foreign_mod_item] = STATE(544), + [sym_struct_item] = STATE(544), + [sym_union_item] = STATE(544), + [sym_enum_item] = STATE(544), + [sym_extern_crate_declaration] = STATE(544), + [sym_const_item] = STATE(544), + [sym_static_item] = STATE(544), + [sym_type_item] = STATE(544), + [sym_function_item] = STATE(544), + [sym_function_signature_item] = STATE(544), + [sym_function_modifiers] = STATE(3806), + [sym_impl_item] = STATE(544), + [sym_trait_item] = STATE(544), + [sym_associated_type] = STATE(544), + [sym_let_declaration] = STATE(544), + [sym_use_declaration] = STATE(544), + [sym_extern_modifier] = STATE(2327), + [sym_visibility_modifier] = STATE(2084), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1838), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_block_expression_with_attribute] = STATE(699), + [sym_macro_invocation] = STATE(425), + [sym_scoped_identifier] = STATE(1661), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(432), + [sym_match_expression] = STATE(432), + [sym_while_expression] = STATE(432), + [sym_loop_expression] = STATE(432), + [sym_for_expression] = STATE(432), + [sym_const_block] = STATE(432), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3677), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(432), + [sym_async_block] = STATE(432), + [sym_gen_block] = STATE(432), + [sym_try_block] = STATE(432), + [sym_block] = STATE(432), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(11), [sym_block_comment] = STATE(11), [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2317), + [aux_sym_attributes_repeat1] = STATE(795), + [aux_sym_function_modifiers_repeat1] = STATE(2385), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16162,236 +16549,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(12)] = { - [sym__statement] = STATE(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1960), - [sym_macro_invocation] = STATE(428), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(656), + [sym_empty_statement] = STATE(544), + [sym_expression_statement] = STATE(544), + [sym_declaration_with_attribute] = STATE(544), + [sym_macro_definition] = STATE(544), + [sym_attribute_item] = STATE(825), + [sym_attributes] = STATE(35), + [sym_inner_attribute_item] = STATE(544), + [sym_mod_item] = STATE(544), + [sym_foreign_mod_item] = STATE(544), + [sym_struct_item] = STATE(544), + [sym_union_item] = STATE(544), + [sym_enum_item] = STATE(544), + [sym_extern_crate_declaration] = STATE(544), + [sym_const_item] = STATE(544), + [sym_static_item] = STATE(544), + [sym_type_item] = STATE(544), + [sym_function_item] = STATE(544), + [sym_function_signature_item] = STATE(544), + [sym_function_modifiers] = STATE(3806), + [sym_impl_item] = STATE(544), + [sym_trait_item] = STATE(544), + [sym_associated_type] = STATE(544), + [sym_let_declaration] = STATE(544), + [sym_use_declaration] = STATE(544), + [sym_extern_modifier] = STATE(2327), + [sym_visibility_modifier] = STATE(2084), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1928), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_block_expression_with_attribute] = STATE(699), + [sym_macro_invocation] = STATE(425), + [sym_scoped_identifier] = STATE(1661), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(432), + [sym_match_expression] = STATE(432), + [sym_while_expression] = STATE(432), + [sym_loop_expression] = STATE(432), + [sym_for_expression] = STATE(432), + [sym_const_block] = STATE(432), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3677), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(432), + [sym_async_block] = STATE(432), + [sym_gen_block] = STATE(432), + [sym_try_block] = STATE(432), + [sym_block] = STATE(432), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(12), [sym_block_comment] = STATE(12), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(131), - [anon_sym_SEMI] = ACTIONS(134), - [anon_sym_macro_rules_BANG] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACE] = ACTIONS(146), - [anon_sym_RBRACE] = ACTIONS(129), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_u8] = ACTIONS(152), - [anon_sym_i8] = ACTIONS(152), - [anon_sym_u16] = ACTIONS(152), - [anon_sym_i16] = ACTIONS(152), - [anon_sym_u32] = ACTIONS(152), - [anon_sym_i32] = ACTIONS(152), - [anon_sym_u64] = ACTIONS(152), - [anon_sym_i64] = ACTIONS(152), - [anon_sym_u128] = ACTIONS(152), - [anon_sym_i128] = ACTIONS(152), - [anon_sym_isize] = ACTIONS(152), - [anon_sym_usize] = ACTIONS(152), - [anon_sym_f32] = ACTIONS(152), - [anon_sym_f64] = ACTIONS(152), - [anon_sym_bool] = ACTIONS(152), - [anon_sym_str] = ACTIONS(152), - [anon_sym_char] = ACTIONS(152), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_AMP] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(158), - [anon_sym_LT] = ACTIONS(161), - [anon_sym_DOT_DOT] = ACTIONS(164), - [anon_sym_COLON_COLON] = ACTIONS(167), - [anon_sym_POUND] = ACTIONS(170), - [anon_sym_SQUOTE] = ACTIONS(173), - [anon_sym_async] = ACTIONS(176), - [anon_sym_break] = ACTIONS(179), - [anon_sym_const] = ACTIONS(182), - [anon_sym_continue] = ACTIONS(185), - [anon_sym_default] = ACTIONS(188), - [anon_sym_enum] = ACTIONS(191), - [anon_sym_fn] = ACTIONS(194), - [anon_sym_for] = ACTIONS(197), - [anon_sym_gen] = ACTIONS(200), - [anon_sym_if] = ACTIONS(203), - [anon_sym_impl] = ACTIONS(206), - [anon_sym_let] = ACTIONS(209), - [anon_sym_loop] = ACTIONS(212), - [anon_sym_match] = ACTIONS(215), - [anon_sym_mod] = ACTIONS(218), - [anon_sym_pub] = ACTIONS(221), - [anon_sym_return] = ACTIONS(224), - [anon_sym_static] = ACTIONS(227), - [anon_sym_struct] = ACTIONS(230), - [anon_sym_trait] = ACTIONS(233), - [anon_sym_type] = ACTIONS(236), - [anon_sym_union] = ACTIONS(239), - [anon_sym_unsafe] = ACTIONS(242), - [anon_sym_use] = ACTIONS(245), - [anon_sym_while] = ACTIONS(248), - [anon_sym_extern] = ACTIONS(251), - [anon_sym_yield] = ACTIONS(254), - [anon_sym_move] = ACTIONS(257), - [anon_sym_try] = ACTIONS(260), - [sym_integer_literal] = ACTIONS(263), - [aux_sym_string_literal_token1] = ACTIONS(266), - [sym_char_literal] = ACTIONS(263), - [anon_sym_true] = ACTIONS(269), - [anon_sym_false] = ACTIONS(269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(272), - [sym_super] = ACTIONS(275), - [sym_crate] = ACTIONS(278), - [sym_metavariable] = ACTIONS(281), - [sym__raw_string_literal_start] = ACTIONS(284), - [sym_float_literal] = ACTIONS(263), - }, - [STATE(13)] = { - [sym__statement] = STATE(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1881), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(13), - [sym_block_comment] = STATE(13), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2317), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_attributes_repeat1] = STATE(795), + [aux_sym_function_modifiers_repeat1] = STATE(2385), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16469,83 +16708,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, + [STATE(13)] = { + [sym__statement] = STATE(656), + [sym_empty_statement] = STATE(544), + [sym_expression_statement] = STATE(544), + [sym_declaration_with_attribute] = STATE(544), + [sym_macro_definition] = STATE(544), + [sym_attribute_item] = STATE(825), + [sym_attributes] = STATE(36), + [sym_inner_attribute_item] = STATE(544), + [sym_mod_item] = STATE(544), + [sym_foreign_mod_item] = STATE(544), + [sym_struct_item] = STATE(544), + [sym_union_item] = STATE(544), + [sym_enum_item] = STATE(544), + [sym_extern_crate_declaration] = STATE(544), + [sym_const_item] = STATE(544), + [sym_static_item] = STATE(544), + [sym_type_item] = STATE(544), + [sym_function_item] = STATE(544), + [sym_function_signature_item] = STATE(544), + [sym_function_modifiers] = STATE(3806), + [sym_impl_item] = STATE(544), + [sym_trait_item] = STATE(544), + [sym_associated_type] = STATE(544), + [sym_let_declaration] = STATE(544), + [sym_use_declaration] = STATE(544), + [sym_extern_modifier] = STATE(2327), + [sym_visibility_modifier] = STATE(2084), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(2010), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_block_expression_with_attribute] = STATE(699), + [sym_macro_invocation] = STATE(444), + [sym_scoped_identifier] = STATE(1661), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(432), + [sym_match_expression] = STATE(432), + [sym_while_expression] = STATE(432), + [sym_loop_expression] = STATE(432), + [sym_for_expression] = STATE(432), + [sym_const_block] = STATE(432), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3677), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(432), + [sym_async_block] = STATE(432), + [sym_gen_block] = STATE(432), + [sym_try_block] = STATE(432), + [sym_block] = STATE(432), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(13), + [sym_block_comment] = STATE(13), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_attributes_repeat1] = STATE(795), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(136), + [anon_sym_macro_rules_BANG] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(148), + [anon_sym_RBRACE] = ACTIONS(131), + [anon_sym_STAR] = 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_isize] = ACTIONS(154), + [anon_sym_usize] = ACTIONS(154), + [anon_sym_f32] = ACTIONS(154), + [anon_sym_f64] = ACTIONS(154), + [anon_sym_bool] = ACTIONS(154), + [anon_sym_str] = ACTIONS(154), + [anon_sym_char] = ACTIONS(154), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(160), + [anon_sym_LT] = ACTIONS(163), + [anon_sym_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_POUND] = ACTIONS(172), + [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_async] = ACTIONS(178), + [anon_sym_break] = ACTIONS(181), + [anon_sym_const] = ACTIONS(184), + [anon_sym_continue] = ACTIONS(187), + [anon_sym_default] = ACTIONS(190), + [anon_sym_enum] = ACTIONS(193), + [anon_sym_fn] = ACTIONS(196), + [anon_sym_for] = ACTIONS(199), + [anon_sym_gen] = ACTIONS(202), + [anon_sym_if] = ACTIONS(205), + [anon_sym_impl] = ACTIONS(208), + [anon_sym_let] = ACTIONS(211), + [anon_sym_loop] = ACTIONS(214), + [anon_sym_match] = ACTIONS(217), + [anon_sym_mod] = ACTIONS(220), + [anon_sym_pub] = ACTIONS(223), + [anon_sym_return] = ACTIONS(226), + [anon_sym_static] = ACTIONS(229), + [anon_sym_struct] = ACTIONS(232), + [anon_sym_trait] = ACTIONS(235), + [anon_sym_type] = ACTIONS(238), + [anon_sym_union] = ACTIONS(241), + [anon_sym_unsafe] = ACTIONS(244), + [anon_sym_use] = ACTIONS(247), + [anon_sym_while] = ACTIONS(250), + [anon_sym_extern] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(256), + [anon_sym_move] = ACTIONS(259), + [anon_sym_try] = ACTIONS(262), + [sym_integer_literal] = ACTIONS(265), + [aux_sym_string_literal_token1] = ACTIONS(268), + [sym_char_literal] = ACTIONS(265), + [anon_sym_true] = ACTIONS(271), + [anon_sym_false] = ACTIONS(271), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(274), + [sym_super] = ACTIONS(277), + [sym_crate] = ACTIONS(280), + [sym_metavariable] = ACTIONS(283), + [sym__raw_string_literal_start] = ACTIONS(286), + [sym_float_literal] = ACTIONS(265), + }, [STATE(14)] = { - [sym__statement] = STATE(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1884), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(656), + [sym_empty_statement] = STATE(544), + [sym_expression_statement] = STATE(544), + [sym_declaration_with_attribute] = STATE(544), + [sym_macro_definition] = STATE(544), + [sym_attribute_item] = STATE(825), + [sym_attributes] = STATE(35), + [sym_inner_attribute_item] = STATE(544), + [sym_mod_item] = STATE(544), + [sym_foreign_mod_item] = STATE(544), + [sym_struct_item] = STATE(544), + [sym_union_item] = STATE(544), + [sym_enum_item] = STATE(544), + [sym_extern_crate_declaration] = STATE(544), + [sym_const_item] = STATE(544), + [sym_static_item] = STATE(544), + [sym_type_item] = STATE(544), + [sym_function_item] = STATE(544), + [sym_function_signature_item] = STATE(544), + [sym_function_modifiers] = STATE(3806), + [sym_impl_item] = STATE(544), + [sym_trait_item] = STATE(544), + [sym_associated_type] = STATE(544), + [sym_let_declaration] = STATE(544), + [sym_use_declaration] = STATE(544), + [sym_extern_modifier] = STATE(2327), + [sym_visibility_modifier] = STATE(2084), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1780), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_block_expression_with_attribute] = STATE(699), + [sym_macro_invocation] = STATE(425), + [sym_scoped_identifier] = STATE(1661), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(432), + [sym_match_expression] = STATE(432), + [sym_while_expression] = STATE(432), + [sym_loop_expression] = STATE(432), + [sym_for_expression] = STATE(432), + [sym_const_block] = STATE(432), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3677), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(432), + [sym_async_block] = STATE(432), + [sym_gen_block] = STATE(432), + [sym_try_block] = STATE(432), + [sym_block] = STATE(432), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(14), [sym_block_comment] = STATE(14), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2317), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_attributes_repeat1] = STATE(795), + [aux_sym_function_modifiers_repeat1] = STATE(2385), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16624,82 +17029,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(15)] = { - [sym__statement] = STATE(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1890), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(656), + [sym_empty_statement] = STATE(544), + [sym_expression_statement] = STATE(544), + [sym_declaration_with_attribute] = STATE(544), + [sym_macro_definition] = STATE(544), + [sym_attribute_item] = STATE(825), + [sym_attributes] = STATE(35), + [sym_inner_attribute_item] = STATE(544), + [sym_mod_item] = STATE(544), + [sym_foreign_mod_item] = STATE(544), + [sym_struct_item] = STATE(544), + [sym_union_item] = STATE(544), + [sym_enum_item] = STATE(544), + [sym_extern_crate_declaration] = STATE(544), + [sym_const_item] = STATE(544), + [sym_static_item] = STATE(544), + [sym_type_item] = STATE(544), + [sym_function_item] = STATE(544), + [sym_function_signature_item] = STATE(544), + [sym_function_modifiers] = STATE(3806), + [sym_impl_item] = STATE(544), + [sym_trait_item] = STATE(544), + [sym_associated_type] = STATE(544), + [sym_let_declaration] = STATE(544), + [sym_use_declaration] = STATE(544), + [sym_extern_modifier] = STATE(2327), + [sym_visibility_modifier] = STATE(2084), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1789), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_block_expression_with_attribute] = STATE(699), + [sym_macro_invocation] = STATE(425), + [sym_scoped_identifier] = STATE(1661), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(432), + [sym_match_expression] = STATE(432), + [sym_while_expression] = STATE(432), + [sym_loop_expression] = STATE(432), + [sym_for_expression] = STATE(432), + [sym_const_block] = STATE(432), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3677), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(432), + [sym_async_block] = STATE(432), + [sym_gen_block] = STATE(432), + [sym_try_block] = STATE(432), + [sym_block] = STATE(432), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(15), [sym_block_comment] = STATE(15), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(2317), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_attributes_repeat1] = STATE(795), + [aux_sym_function_modifiers_repeat1] = STATE(2385), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16778,82 +17189,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(16)] = { - [sym__statement] = STATE(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1896), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(656), + [sym_empty_statement] = STATE(544), + [sym_expression_statement] = STATE(544), + [sym_declaration_with_attribute] = STATE(544), + [sym_macro_definition] = STATE(544), + [sym_attribute_item] = STATE(825), + [sym_attributes] = STATE(35), + [sym_inner_attribute_item] = STATE(544), + [sym_mod_item] = STATE(544), + [sym_foreign_mod_item] = STATE(544), + [sym_struct_item] = STATE(544), + [sym_union_item] = STATE(544), + [sym_enum_item] = STATE(544), + [sym_extern_crate_declaration] = STATE(544), + [sym_const_item] = STATE(544), + [sym_static_item] = STATE(544), + [sym_type_item] = STATE(544), + [sym_function_item] = STATE(544), + [sym_function_signature_item] = STATE(544), + [sym_function_modifiers] = STATE(3806), + [sym_impl_item] = STATE(544), + [sym_trait_item] = STATE(544), + [sym_associated_type] = STATE(544), + [sym_let_declaration] = STATE(544), + [sym_use_declaration] = STATE(544), + [sym_extern_modifier] = STATE(2327), + [sym_visibility_modifier] = STATE(2084), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1809), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_block_expression_with_attribute] = STATE(699), + [sym_macro_invocation] = STATE(425), + [sym_scoped_identifier] = STATE(1661), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(432), + [sym_match_expression] = STATE(432), + [sym_while_expression] = STATE(432), + [sym_loop_expression] = STATE(432), + [sym_for_expression] = STATE(432), + [sym_const_block] = STATE(432), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3677), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(432), + [sym_async_block] = STATE(432), + [sym_gen_block] = STATE(432), + [sym_try_block] = STATE(432), + [sym_block] = STATE(432), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(16), [sym_block_comment] = STATE(16), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2317), + [aux_sym_source_file_repeat1] = STATE(17), + [aux_sym_attributes_repeat1] = STATE(795), + [aux_sym_function_modifiers_repeat1] = STATE(2385), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16932,82 +17349,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(17)] = { - [sym__statement] = STATE(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1919), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(656), + [sym_empty_statement] = STATE(544), + [sym_expression_statement] = STATE(544), + [sym_declaration_with_attribute] = STATE(544), + [sym_macro_definition] = STATE(544), + [sym_attribute_item] = STATE(825), + [sym_attributes] = STATE(35), + [sym_inner_attribute_item] = STATE(544), + [sym_mod_item] = STATE(544), + [sym_foreign_mod_item] = STATE(544), + [sym_struct_item] = STATE(544), + [sym_union_item] = STATE(544), + [sym_enum_item] = STATE(544), + [sym_extern_crate_declaration] = STATE(544), + [sym_const_item] = STATE(544), + [sym_static_item] = STATE(544), + [sym_type_item] = STATE(544), + [sym_function_item] = STATE(544), + [sym_function_signature_item] = STATE(544), + [sym_function_modifiers] = STATE(3806), + [sym_impl_item] = STATE(544), + [sym_trait_item] = STATE(544), + [sym_associated_type] = STATE(544), + [sym_let_declaration] = STATE(544), + [sym_use_declaration] = STATE(544), + [sym_extern_modifier] = STATE(2327), + [sym_visibility_modifier] = STATE(2084), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1819), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_block_expression_with_attribute] = STATE(699), + [sym_macro_invocation] = STATE(425), + [sym_scoped_identifier] = STATE(1661), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(432), + [sym_match_expression] = STATE(432), + [sym_while_expression] = STATE(432), + [sym_loop_expression] = STATE(432), + [sym_for_expression] = STATE(432), + [sym_const_block] = STATE(432), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3677), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(432), + [sym_async_block] = STATE(432), + [sym_gen_block] = STATE(432), + [sym_try_block] = STATE(432), + [sym_block] = STATE(432), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(17), [sym_block_comment] = STATE(17), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2317), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_attributes_repeat1] = STATE(795), + [aux_sym_function_modifiers_repeat1] = STATE(2385), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17086,82 +17509,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(18)] = { - [sym__statement] = STATE(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1898), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(656), + [sym_empty_statement] = STATE(544), + [sym_expression_statement] = STATE(544), + [sym_declaration_with_attribute] = STATE(544), + [sym_macro_definition] = STATE(544), + [sym_attribute_item] = STATE(825), + [sym_attributes] = STATE(35), + [sym_inner_attribute_item] = STATE(544), + [sym_mod_item] = STATE(544), + [sym_foreign_mod_item] = STATE(544), + [sym_struct_item] = STATE(544), + [sym_union_item] = STATE(544), + [sym_enum_item] = STATE(544), + [sym_extern_crate_declaration] = STATE(544), + [sym_const_item] = STATE(544), + [sym_static_item] = STATE(544), + [sym_type_item] = STATE(544), + [sym_function_item] = STATE(544), + [sym_function_signature_item] = STATE(544), + [sym_function_modifiers] = STATE(3806), + [sym_impl_item] = STATE(544), + [sym_trait_item] = STATE(544), + [sym_associated_type] = STATE(544), + [sym_let_declaration] = STATE(544), + [sym_use_declaration] = STATE(544), + [sym_extern_modifier] = STATE(2327), + [sym_visibility_modifier] = STATE(2084), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1834), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_block_expression_with_attribute] = STATE(699), + [sym_macro_invocation] = STATE(425), + [sym_scoped_identifier] = STATE(1661), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(432), + [sym_match_expression] = STATE(432), + [sym_while_expression] = STATE(432), + [sym_loop_expression] = STATE(432), + [sym_for_expression] = STATE(432), + [sym_const_block] = STATE(432), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3677), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(432), + [sym_async_block] = STATE(432), + [sym_gen_block] = STATE(432), + [sym_try_block] = STATE(432), + [sym_block] = STATE(432), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(18), [sym_block_comment] = STATE(18), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2317), + [aux_sym_source_file_repeat1] = STATE(19), + [aux_sym_attributes_repeat1] = STATE(795), + [aux_sym_function_modifiers_repeat1] = STATE(2385), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17240,82 +17669,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(19)] = { - [sym__statement] = STATE(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1899), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(656), + [sym_empty_statement] = STATE(544), + [sym_expression_statement] = STATE(544), + [sym_declaration_with_attribute] = STATE(544), + [sym_macro_definition] = STATE(544), + [sym_attribute_item] = STATE(825), + [sym_attributes] = STATE(35), + [sym_inner_attribute_item] = STATE(544), + [sym_mod_item] = STATE(544), + [sym_foreign_mod_item] = STATE(544), + [sym_struct_item] = STATE(544), + [sym_union_item] = STATE(544), + [sym_enum_item] = STATE(544), + [sym_extern_crate_declaration] = STATE(544), + [sym_const_item] = STATE(544), + [sym_static_item] = STATE(544), + [sym_type_item] = STATE(544), + [sym_function_item] = STATE(544), + [sym_function_signature_item] = STATE(544), + [sym_function_modifiers] = STATE(3806), + [sym_impl_item] = STATE(544), + [sym_trait_item] = STATE(544), + [sym_associated_type] = STATE(544), + [sym_let_declaration] = STATE(544), + [sym_use_declaration] = STATE(544), + [sym_extern_modifier] = STATE(2327), + [sym_visibility_modifier] = STATE(2084), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1839), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_block_expression_with_attribute] = STATE(699), + [sym_macro_invocation] = STATE(425), + [sym_scoped_identifier] = STATE(1661), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(432), + [sym_match_expression] = STATE(432), + [sym_while_expression] = STATE(432), + [sym_loop_expression] = STATE(432), + [sym_for_expression] = STATE(432), + [sym_const_block] = STATE(432), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3677), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(432), + [sym_async_block] = STATE(432), + [sym_gen_block] = STATE(432), + [sym_try_block] = STATE(432), + [sym_block] = STATE(432), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(19), [sym_block_comment] = STATE(19), - [aux_sym_source_file_repeat1] = STATE(20), - [aux_sym_function_modifiers_repeat1] = STATE(2317), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_attributes_repeat1] = STATE(795), + [aux_sym_function_modifiers_repeat1] = STATE(2385), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17394,82 +17829,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(20)] = { - [sym__statement] = STATE(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1901), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(656), + [sym_empty_statement] = STATE(544), + [sym_expression_statement] = STATE(544), + [sym_declaration_with_attribute] = STATE(544), + [sym_macro_definition] = STATE(544), + [sym_attribute_item] = STATE(825), + [sym_attributes] = STATE(35), + [sym_inner_attribute_item] = STATE(544), + [sym_mod_item] = STATE(544), + [sym_foreign_mod_item] = STATE(544), + [sym_struct_item] = STATE(544), + [sym_union_item] = STATE(544), + [sym_enum_item] = STATE(544), + [sym_extern_crate_declaration] = STATE(544), + [sym_const_item] = STATE(544), + [sym_static_item] = STATE(544), + [sym_type_item] = STATE(544), + [sym_function_item] = STATE(544), + [sym_function_signature_item] = STATE(544), + [sym_function_modifiers] = STATE(3806), + [sym_impl_item] = STATE(544), + [sym_trait_item] = STATE(544), + [sym_associated_type] = STATE(544), + [sym_let_declaration] = STATE(544), + [sym_use_declaration] = STATE(544), + [sym_extern_modifier] = STATE(2327), + [sym_visibility_modifier] = STATE(2084), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1847), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_block_expression_with_attribute] = STATE(699), + [sym_macro_invocation] = STATE(425), + [sym_scoped_identifier] = STATE(1661), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(432), + [sym_match_expression] = STATE(432), + [sym_while_expression] = STATE(432), + [sym_loop_expression] = STATE(432), + [sym_for_expression] = STATE(432), + [sym_const_block] = STATE(432), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3677), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(432), + [sym_async_block] = STATE(432), + [sym_gen_block] = STATE(432), + [sym_try_block] = STATE(432), + [sym_block] = STATE(432), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(20), [sym_block_comment] = STATE(20), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2317), + [aux_sym_source_file_repeat1] = STATE(21), + [aux_sym_attributes_repeat1] = STATE(795), + [aux_sym_function_modifiers_repeat1] = STATE(2385), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17548,82 +17989,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(21)] = { - [sym__statement] = STATE(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1903), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(656), + [sym_empty_statement] = STATE(544), + [sym_expression_statement] = STATE(544), + [sym_declaration_with_attribute] = STATE(544), + [sym_macro_definition] = STATE(544), + [sym_attribute_item] = STATE(825), + [sym_attributes] = STATE(35), + [sym_inner_attribute_item] = STATE(544), + [sym_mod_item] = STATE(544), + [sym_foreign_mod_item] = STATE(544), + [sym_struct_item] = STATE(544), + [sym_union_item] = STATE(544), + [sym_enum_item] = STATE(544), + [sym_extern_crate_declaration] = STATE(544), + [sym_const_item] = STATE(544), + [sym_static_item] = STATE(544), + [sym_type_item] = STATE(544), + [sym_function_item] = STATE(544), + [sym_function_signature_item] = STATE(544), + [sym_function_modifiers] = STATE(3806), + [sym_impl_item] = STATE(544), + [sym_trait_item] = STATE(544), + [sym_associated_type] = STATE(544), + [sym_let_declaration] = STATE(544), + [sym_use_declaration] = STATE(544), + [sym_extern_modifier] = STATE(2327), + [sym_visibility_modifier] = STATE(2084), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1850), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_block_expression_with_attribute] = STATE(699), + [sym_macro_invocation] = STATE(425), + [sym_scoped_identifier] = STATE(1661), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(432), + [sym_match_expression] = STATE(432), + [sym_while_expression] = STATE(432), + [sym_loop_expression] = STATE(432), + [sym_for_expression] = STATE(432), + [sym_const_block] = STATE(432), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3677), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(432), + [sym_async_block] = STATE(432), + [sym_gen_block] = STATE(432), + [sym_try_block] = STATE(432), + [sym_block] = STATE(432), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(21), [sym_block_comment] = STATE(21), - [aux_sym_source_file_repeat1] = STATE(22), - [aux_sym_function_modifiers_repeat1] = STATE(2317), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_attributes_repeat1] = STATE(795), + [aux_sym_function_modifiers_repeat1] = STATE(2385), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17702,82 +18149,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(22)] = { - [sym__statement] = STATE(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1904), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(656), + [sym_empty_statement] = STATE(544), + [sym_expression_statement] = STATE(544), + [sym_declaration_with_attribute] = STATE(544), + [sym_macro_definition] = STATE(544), + [sym_attribute_item] = STATE(825), + [sym_attributes] = STATE(35), + [sym_inner_attribute_item] = STATE(544), + [sym_mod_item] = STATE(544), + [sym_foreign_mod_item] = STATE(544), + [sym_struct_item] = STATE(544), + [sym_union_item] = STATE(544), + [sym_enum_item] = STATE(544), + [sym_extern_crate_declaration] = STATE(544), + [sym_const_item] = STATE(544), + [sym_static_item] = STATE(544), + [sym_type_item] = STATE(544), + [sym_function_item] = STATE(544), + [sym_function_signature_item] = STATE(544), + [sym_function_modifiers] = STATE(3806), + [sym_impl_item] = STATE(544), + [sym_trait_item] = STATE(544), + [sym_associated_type] = STATE(544), + [sym_let_declaration] = STATE(544), + [sym_use_declaration] = STATE(544), + [sym_extern_modifier] = STATE(2327), + [sym_visibility_modifier] = STATE(2084), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1858), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_block_expression_with_attribute] = STATE(699), + [sym_macro_invocation] = STATE(425), + [sym_scoped_identifier] = STATE(1661), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(432), + [sym_match_expression] = STATE(432), + [sym_while_expression] = STATE(432), + [sym_loop_expression] = STATE(432), + [sym_for_expression] = STATE(432), + [sym_const_block] = STATE(432), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3677), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(432), + [sym_async_block] = STATE(432), + [sym_gen_block] = STATE(432), + [sym_try_block] = STATE(432), + [sym_block] = STATE(432), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(22), [sym_block_comment] = STATE(22), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2317), + [aux_sym_source_file_repeat1] = STATE(23), + [aux_sym_attributes_repeat1] = STATE(795), + [aux_sym_function_modifiers_repeat1] = STATE(2385), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17856,82 +18309,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(23)] = { - [sym__statement] = STATE(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1905), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(656), + [sym_empty_statement] = STATE(544), + [sym_expression_statement] = STATE(544), + [sym_declaration_with_attribute] = STATE(544), + [sym_macro_definition] = STATE(544), + [sym_attribute_item] = STATE(825), + [sym_attributes] = STATE(35), + [sym_inner_attribute_item] = STATE(544), + [sym_mod_item] = STATE(544), + [sym_foreign_mod_item] = STATE(544), + [sym_struct_item] = STATE(544), + [sym_union_item] = STATE(544), + [sym_enum_item] = STATE(544), + [sym_extern_crate_declaration] = STATE(544), + [sym_const_item] = STATE(544), + [sym_static_item] = STATE(544), + [sym_type_item] = STATE(544), + [sym_function_item] = STATE(544), + [sym_function_signature_item] = STATE(544), + [sym_function_modifiers] = STATE(3806), + [sym_impl_item] = STATE(544), + [sym_trait_item] = STATE(544), + [sym_associated_type] = STATE(544), + [sym_let_declaration] = STATE(544), + [sym_use_declaration] = STATE(544), + [sym_extern_modifier] = STATE(2327), + [sym_visibility_modifier] = STATE(2084), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1861), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_block_expression_with_attribute] = STATE(699), + [sym_macro_invocation] = STATE(425), + [sym_scoped_identifier] = STATE(1661), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(432), + [sym_match_expression] = STATE(432), + [sym_while_expression] = STATE(432), + [sym_loop_expression] = STATE(432), + [sym_for_expression] = STATE(432), + [sym_const_block] = STATE(432), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3677), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(432), + [sym_async_block] = STATE(432), + [sym_gen_block] = STATE(432), + [sym_try_block] = STATE(432), + [sym_block] = STATE(432), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(23), [sym_block_comment] = STATE(23), - [aux_sym_source_file_repeat1] = STATE(24), - [aux_sym_function_modifiers_repeat1] = STATE(2317), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_attributes_repeat1] = STATE(795), + [aux_sym_function_modifiers_repeat1] = STATE(2385), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18010,82 +18469,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(24)] = { - [sym__statement] = STATE(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1906), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(656), + [sym_empty_statement] = STATE(544), + [sym_expression_statement] = STATE(544), + [sym_declaration_with_attribute] = STATE(544), + [sym_macro_definition] = STATE(544), + [sym_attribute_item] = STATE(825), + [sym_attributes] = STATE(35), + [sym_inner_attribute_item] = STATE(544), + [sym_mod_item] = STATE(544), + [sym_foreign_mod_item] = STATE(544), + [sym_struct_item] = STATE(544), + [sym_union_item] = STATE(544), + [sym_enum_item] = STATE(544), + [sym_extern_crate_declaration] = STATE(544), + [sym_const_item] = STATE(544), + [sym_static_item] = STATE(544), + [sym_type_item] = STATE(544), + [sym_function_item] = STATE(544), + [sym_function_signature_item] = STATE(544), + [sym_function_modifiers] = STATE(3806), + [sym_impl_item] = STATE(544), + [sym_trait_item] = STATE(544), + [sym_associated_type] = STATE(544), + [sym_let_declaration] = STATE(544), + [sym_use_declaration] = STATE(544), + [sym_extern_modifier] = STATE(2327), + [sym_visibility_modifier] = STATE(2084), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1865), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_block_expression_with_attribute] = STATE(699), + [sym_macro_invocation] = STATE(425), + [sym_scoped_identifier] = STATE(1661), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(432), + [sym_match_expression] = STATE(432), + [sym_while_expression] = STATE(432), + [sym_loop_expression] = STATE(432), + [sym_for_expression] = STATE(432), + [sym_const_block] = STATE(432), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3677), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(432), + [sym_async_block] = STATE(432), + [sym_gen_block] = STATE(432), + [sym_try_block] = STATE(432), + [sym_block] = STATE(432), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(24), [sym_block_comment] = STATE(24), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2317), + [aux_sym_source_file_repeat1] = STATE(25), + [aux_sym_attributes_repeat1] = STATE(795), + [aux_sym_function_modifiers_repeat1] = STATE(2385), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18164,82 +18629,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(25)] = { - [sym__statement] = STATE(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1908), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(656), + [sym_empty_statement] = STATE(544), + [sym_expression_statement] = STATE(544), + [sym_declaration_with_attribute] = STATE(544), + [sym_macro_definition] = STATE(544), + [sym_attribute_item] = STATE(825), + [sym_attributes] = STATE(35), + [sym_inner_attribute_item] = STATE(544), + [sym_mod_item] = STATE(544), + [sym_foreign_mod_item] = STATE(544), + [sym_struct_item] = STATE(544), + [sym_union_item] = STATE(544), + [sym_enum_item] = STATE(544), + [sym_extern_crate_declaration] = STATE(544), + [sym_const_item] = STATE(544), + [sym_static_item] = STATE(544), + [sym_type_item] = STATE(544), + [sym_function_item] = STATE(544), + [sym_function_signature_item] = STATE(544), + [sym_function_modifiers] = STATE(3806), + [sym_impl_item] = STATE(544), + [sym_trait_item] = STATE(544), + [sym_associated_type] = STATE(544), + [sym_let_declaration] = STATE(544), + [sym_use_declaration] = STATE(544), + [sym_extern_modifier] = STATE(2327), + [sym_visibility_modifier] = STATE(2084), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1867), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_block_expression_with_attribute] = STATE(699), + [sym_macro_invocation] = STATE(425), + [sym_scoped_identifier] = STATE(1661), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(432), + [sym_match_expression] = STATE(432), + [sym_while_expression] = STATE(432), + [sym_loop_expression] = STATE(432), + [sym_for_expression] = STATE(432), + [sym_const_block] = STATE(432), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3677), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(432), + [sym_async_block] = STATE(432), + [sym_gen_block] = STATE(432), + [sym_try_block] = STATE(432), + [sym_block] = STATE(432), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(25), [sym_block_comment] = STATE(25), - [aux_sym_source_file_repeat1] = STATE(26), - [aux_sym_function_modifiers_repeat1] = STATE(2317), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_attributes_repeat1] = STATE(795), + [aux_sym_function_modifiers_repeat1] = STATE(2385), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18318,82 +18789,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(26)] = { - [sym__statement] = STATE(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1909), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(656), + [sym_empty_statement] = STATE(544), + [sym_expression_statement] = STATE(544), + [sym_declaration_with_attribute] = STATE(544), + [sym_macro_definition] = STATE(544), + [sym_attribute_item] = STATE(825), + [sym_attributes] = STATE(35), + [sym_inner_attribute_item] = STATE(544), + [sym_mod_item] = STATE(544), + [sym_foreign_mod_item] = STATE(544), + [sym_struct_item] = STATE(544), + [sym_union_item] = STATE(544), + [sym_enum_item] = STATE(544), + [sym_extern_crate_declaration] = STATE(544), + [sym_const_item] = STATE(544), + [sym_static_item] = STATE(544), + [sym_type_item] = STATE(544), + [sym_function_item] = STATE(544), + [sym_function_signature_item] = STATE(544), + [sym_function_modifiers] = STATE(3806), + [sym_impl_item] = STATE(544), + [sym_trait_item] = STATE(544), + [sym_associated_type] = STATE(544), + [sym_let_declaration] = STATE(544), + [sym_use_declaration] = STATE(544), + [sym_extern_modifier] = STATE(2327), + [sym_visibility_modifier] = STATE(2084), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1873), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_block_expression_with_attribute] = STATE(699), + [sym_macro_invocation] = STATE(425), + [sym_scoped_identifier] = STATE(1661), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(432), + [sym_match_expression] = STATE(432), + [sym_while_expression] = STATE(432), + [sym_loop_expression] = STATE(432), + [sym_for_expression] = STATE(432), + [sym_const_block] = STATE(432), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3677), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(432), + [sym_async_block] = STATE(432), + [sym_gen_block] = STATE(432), + [sym_try_block] = STATE(432), + [sym_block] = STATE(432), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(26), [sym_block_comment] = STATE(26), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2317), + [aux_sym_source_file_repeat1] = STATE(27), + [aux_sym_attributes_repeat1] = STATE(795), + [aux_sym_function_modifiers_repeat1] = STATE(2385), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18472,82 +18949,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(27)] = { - [sym__statement] = STATE(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1910), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(656), + [sym_empty_statement] = STATE(544), + [sym_expression_statement] = STATE(544), + [sym_declaration_with_attribute] = STATE(544), + [sym_macro_definition] = STATE(544), + [sym_attribute_item] = STATE(825), + [sym_attributes] = STATE(35), + [sym_inner_attribute_item] = STATE(544), + [sym_mod_item] = STATE(544), + [sym_foreign_mod_item] = STATE(544), + [sym_struct_item] = STATE(544), + [sym_union_item] = STATE(544), + [sym_enum_item] = STATE(544), + [sym_extern_crate_declaration] = STATE(544), + [sym_const_item] = STATE(544), + [sym_static_item] = STATE(544), + [sym_type_item] = STATE(544), + [sym_function_item] = STATE(544), + [sym_function_signature_item] = STATE(544), + [sym_function_modifiers] = STATE(3806), + [sym_impl_item] = STATE(544), + [sym_trait_item] = STATE(544), + [sym_associated_type] = STATE(544), + [sym_let_declaration] = STATE(544), + [sym_use_declaration] = STATE(544), + [sym_extern_modifier] = STATE(2327), + [sym_visibility_modifier] = STATE(2084), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1875), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_block_expression_with_attribute] = STATE(699), + [sym_macro_invocation] = STATE(425), + [sym_scoped_identifier] = STATE(1661), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(432), + [sym_match_expression] = STATE(432), + [sym_while_expression] = STATE(432), + [sym_loop_expression] = STATE(432), + [sym_for_expression] = STATE(432), + [sym_const_block] = STATE(432), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3677), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(432), + [sym_async_block] = STATE(432), + [sym_gen_block] = STATE(432), + [sym_try_block] = STATE(432), + [sym_block] = STATE(432), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(27), [sym_block_comment] = STATE(27), - [aux_sym_source_file_repeat1] = STATE(28), - [aux_sym_function_modifiers_repeat1] = STATE(2317), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_attributes_repeat1] = STATE(795), + [aux_sym_function_modifiers_repeat1] = STATE(2385), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18626,82 +19109,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(28)] = { - [sym__statement] = STATE(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1911), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(656), + [sym_empty_statement] = STATE(544), + [sym_expression_statement] = STATE(544), + [sym_declaration_with_attribute] = STATE(544), + [sym_macro_definition] = STATE(544), + [sym_attribute_item] = STATE(825), + [sym_attributes] = STATE(35), + [sym_inner_attribute_item] = STATE(544), + [sym_mod_item] = STATE(544), + [sym_foreign_mod_item] = STATE(544), + [sym_struct_item] = STATE(544), + [sym_union_item] = STATE(544), + [sym_enum_item] = STATE(544), + [sym_extern_crate_declaration] = STATE(544), + [sym_const_item] = STATE(544), + [sym_static_item] = STATE(544), + [sym_type_item] = STATE(544), + [sym_function_item] = STATE(544), + [sym_function_signature_item] = STATE(544), + [sym_function_modifiers] = STATE(3806), + [sym_impl_item] = STATE(544), + [sym_trait_item] = STATE(544), + [sym_associated_type] = STATE(544), + [sym_let_declaration] = STATE(544), + [sym_use_declaration] = STATE(544), + [sym_extern_modifier] = STATE(2327), + [sym_visibility_modifier] = STATE(2084), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1877), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_block_expression_with_attribute] = STATE(699), + [sym_macro_invocation] = STATE(425), + [sym_scoped_identifier] = STATE(1661), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(432), + [sym_match_expression] = STATE(432), + [sym_while_expression] = STATE(432), + [sym_loop_expression] = STATE(432), + [sym_for_expression] = STATE(432), + [sym_const_block] = STATE(432), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3677), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(432), + [sym_async_block] = STATE(432), + [sym_gen_block] = STATE(432), + [sym_try_block] = STATE(432), + [sym_block] = STATE(432), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(28), [sym_block_comment] = STATE(28), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2317), + [aux_sym_source_file_repeat1] = STATE(29), + [aux_sym_attributes_repeat1] = STATE(795), + [aux_sym_function_modifiers_repeat1] = STATE(2385), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18780,82 +19269,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(29)] = { - [sym__statement] = STATE(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1914), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(656), + [sym_empty_statement] = STATE(544), + [sym_expression_statement] = STATE(544), + [sym_declaration_with_attribute] = STATE(544), + [sym_macro_definition] = STATE(544), + [sym_attribute_item] = STATE(825), + [sym_attributes] = STATE(35), + [sym_inner_attribute_item] = STATE(544), + [sym_mod_item] = STATE(544), + [sym_foreign_mod_item] = STATE(544), + [sym_struct_item] = STATE(544), + [sym_union_item] = STATE(544), + [sym_enum_item] = STATE(544), + [sym_extern_crate_declaration] = STATE(544), + [sym_const_item] = STATE(544), + [sym_static_item] = STATE(544), + [sym_type_item] = STATE(544), + [sym_function_item] = STATE(544), + [sym_function_signature_item] = STATE(544), + [sym_function_modifiers] = STATE(3806), + [sym_impl_item] = STATE(544), + [sym_trait_item] = STATE(544), + [sym_associated_type] = STATE(544), + [sym_let_declaration] = STATE(544), + [sym_use_declaration] = STATE(544), + [sym_extern_modifier] = STATE(2327), + [sym_visibility_modifier] = STATE(2084), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1878), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_block_expression_with_attribute] = STATE(699), + [sym_macro_invocation] = STATE(425), + [sym_scoped_identifier] = STATE(1661), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(432), + [sym_match_expression] = STATE(432), + [sym_while_expression] = STATE(432), + [sym_loop_expression] = STATE(432), + [sym_for_expression] = STATE(432), + [sym_const_block] = STATE(432), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3677), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(432), + [sym_async_block] = STATE(432), + [sym_gen_block] = STATE(432), + [sym_try_block] = STATE(432), + [sym_block] = STATE(432), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(29), [sym_block_comment] = STATE(29), - [aux_sym_source_file_repeat1] = STATE(30), - [aux_sym_function_modifiers_repeat1] = STATE(2317), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_attributes_repeat1] = STATE(795), + [aux_sym_function_modifiers_repeat1] = STATE(2385), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18934,82 +19429,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(30)] = { - [sym__statement] = STATE(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1915), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(656), + [sym_empty_statement] = STATE(544), + [sym_expression_statement] = STATE(544), + [sym_declaration_with_attribute] = STATE(544), + [sym_macro_definition] = STATE(544), + [sym_attribute_item] = STATE(825), + [sym_attributes] = STATE(35), + [sym_inner_attribute_item] = STATE(544), + [sym_mod_item] = STATE(544), + [sym_foreign_mod_item] = STATE(544), + [sym_struct_item] = STATE(544), + [sym_union_item] = STATE(544), + [sym_enum_item] = STATE(544), + [sym_extern_crate_declaration] = STATE(544), + [sym_const_item] = STATE(544), + [sym_static_item] = STATE(544), + [sym_type_item] = STATE(544), + [sym_function_item] = STATE(544), + [sym_function_signature_item] = STATE(544), + [sym_function_modifiers] = STATE(3806), + [sym_impl_item] = STATE(544), + [sym_trait_item] = STATE(544), + [sym_associated_type] = STATE(544), + [sym_let_declaration] = STATE(544), + [sym_use_declaration] = STATE(544), + [sym_extern_modifier] = STATE(2327), + [sym_visibility_modifier] = STATE(2084), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1883), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_block_expression_with_attribute] = STATE(699), + [sym_macro_invocation] = STATE(425), + [sym_scoped_identifier] = STATE(1661), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(432), + [sym_match_expression] = STATE(432), + [sym_while_expression] = STATE(432), + [sym_loop_expression] = STATE(432), + [sym_for_expression] = STATE(432), + [sym_const_block] = STATE(432), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3677), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(432), + [sym_async_block] = STATE(432), + [sym_gen_block] = STATE(432), + [sym_try_block] = STATE(432), + [sym_block] = STATE(432), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(30), [sym_block_comment] = STATE(30), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2317), + [aux_sym_source_file_repeat1] = STATE(31), + [aux_sym_attributes_repeat1] = STATE(795), + [aux_sym_function_modifiers_repeat1] = STATE(2385), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -19088,82 +19589,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(31)] = { - [sym__statement] = STATE(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1916), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(656), + [sym_empty_statement] = STATE(544), + [sym_expression_statement] = STATE(544), + [sym_declaration_with_attribute] = STATE(544), + [sym_macro_definition] = STATE(544), + [sym_attribute_item] = STATE(825), + [sym_attributes] = STATE(35), + [sym_inner_attribute_item] = STATE(544), + [sym_mod_item] = STATE(544), + [sym_foreign_mod_item] = STATE(544), + [sym_struct_item] = STATE(544), + [sym_union_item] = STATE(544), + [sym_enum_item] = STATE(544), + [sym_extern_crate_declaration] = STATE(544), + [sym_const_item] = STATE(544), + [sym_static_item] = STATE(544), + [sym_type_item] = STATE(544), + [sym_function_item] = STATE(544), + [sym_function_signature_item] = STATE(544), + [sym_function_modifiers] = STATE(3806), + [sym_impl_item] = STATE(544), + [sym_trait_item] = STATE(544), + [sym_associated_type] = STATE(544), + [sym_let_declaration] = STATE(544), + [sym_use_declaration] = STATE(544), + [sym_extern_modifier] = STATE(2327), + [sym_visibility_modifier] = STATE(2084), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1884), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_block_expression_with_attribute] = STATE(699), + [sym_macro_invocation] = STATE(425), + [sym_scoped_identifier] = STATE(1661), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(432), + [sym_match_expression] = STATE(432), + [sym_while_expression] = STATE(432), + [sym_loop_expression] = STATE(432), + [sym_for_expression] = STATE(432), + [sym_const_block] = STATE(432), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3677), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(432), + [sym_async_block] = STATE(432), + [sym_gen_block] = STATE(432), + [sym_try_block] = STATE(432), + [sym_block] = STATE(432), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(31), [sym_block_comment] = STATE(31), - [aux_sym_source_file_repeat1] = STATE(32), - [aux_sym_function_modifiers_repeat1] = STATE(2317), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_attributes_repeat1] = STATE(795), + [aux_sym_function_modifiers_repeat1] = STATE(2385), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -19242,82 +19749,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(32)] = { - [sym__statement] = STATE(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1917), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(656), + [sym_empty_statement] = STATE(544), + [sym_expression_statement] = STATE(544), + [sym_declaration_with_attribute] = STATE(544), + [sym_macro_definition] = STATE(544), + [sym_attribute_item] = STATE(825), + [sym_attributes] = STATE(35), + [sym_inner_attribute_item] = STATE(544), + [sym_mod_item] = STATE(544), + [sym_foreign_mod_item] = STATE(544), + [sym_struct_item] = STATE(544), + [sym_union_item] = STATE(544), + [sym_enum_item] = STATE(544), + [sym_extern_crate_declaration] = STATE(544), + [sym_const_item] = STATE(544), + [sym_static_item] = STATE(544), + [sym_type_item] = STATE(544), + [sym_function_item] = STATE(544), + [sym_function_signature_item] = STATE(544), + [sym_function_modifiers] = STATE(3806), + [sym_impl_item] = STATE(544), + [sym_trait_item] = STATE(544), + [sym_associated_type] = STATE(544), + [sym_let_declaration] = STATE(544), + [sym_use_declaration] = STATE(544), + [sym_extern_modifier] = STATE(2327), + [sym_visibility_modifier] = STATE(2084), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1886), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_block_expression_with_attribute] = STATE(699), + [sym_macro_invocation] = STATE(425), + [sym_scoped_identifier] = STATE(1661), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(432), + [sym_match_expression] = STATE(432), + [sym_while_expression] = STATE(432), + [sym_loop_expression] = STATE(432), + [sym_for_expression] = STATE(432), + [sym_const_block] = STATE(432), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3677), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(432), + [sym_async_block] = STATE(432), + [sym_gen_block] = STATE(432), + [sym_try_block] = STATE(432), + [sym_block] = STATE(432), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(32), [sym_block_comment] = STATE(32), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2317), + [aux_sym_source_file_repeat1] = STATE(33), + [aux_sym_attributes_repeat1] = STATE(795), + [aux_sym_function_modifiers_repeat1] = STATE(2385), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -19396,82 +19909,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(33)] = { - [sym__statement] = STATE(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1918), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(656), + [sym_empty_statement] = STATE(544), + [sym_expression_statement] = STATE(544), + [sym_declaration_with_attribute] = STATE(544), + [sym_macro_definition] = STATE(544), + [sym_attribute_item] = STATE(825), + [sym_attributes] = STATE(35), + [sym_inner_attribute_item] = STATE(544), + [sym_mod_item] = STATE(544), + [sym_foreign_mod_item] = STATE(544), + [sym_struct_item] = STATE(544), + [sym_union_item] = STATE(544), + [sym_enum_item] = STATE(544), + [sym_extern_crate_declaration] = STATE(544), + [sym_const_item] = STATE(544), + [sym_static_item] = STATE(544), + [sym_type_item] = STATE(544), + [sym_function_item] = STATE(544), + [sym_function_signature_item] = STATE(544), + [sym_function_modifiers] = STATE(3806), + [sym_impl_item] = STATE(544), + [sym_trait_item] = STATE(544), + [sym_associated_type] = STATE(544), + [sym_let_declaration] = STATE(544), + [sym_use_declaration] = STATE(544), + [sym_extern_modifier] = STATE(2327), + [sym_visibility_modifier] = STATE(2084), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1887), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_block_expression_with_attribute] = STATE(699), + [sym_macro_invocation] = STATE(425), + [sym_scoped_identifier] = STATE(1661), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(432), + [sym_match_expression] = STATE(432), + [sym_while_expression] = STATE(432), + [sym_loop_expression] = STATE(432), + [sym_for_expression] = STATE(432), + [sym_const_block] = STATE(432), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3677), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(432), + [sym_async_block] = STATE(432), + [sym_gen_block] = STATE(432), + [sym_try_block] = STATE(432), + [sym_block] = STATE(432), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(33), [sym_block_comment] = STATE(33), - [aux_sym_source_file_repeat1] = STATE(17), - [aux_sym_function_modifiers_repeat1] = STATE(2317), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_attributes_repeat1] = STATE(795), + [aux_sym_function_modifiers_repeat1] = STATE(2385), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -19550,82 +20069,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(34)] = { - [sym__statement] = STATE(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1897), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(656), + [sym_empty_statement] = STATE(544), + [sym_expression_statement] = STATE(544), + [sym_declaration_with_attribute] = STATE(544), + [sym_macro_definition] = STATE(544), + [sym_attribute_item] = STATE(825), + [sym_attributes] = STATE(35), + [sym_inner_attribute_item] = STATE(544), + [sym_mod_item] = STATE(544), + [sym_foreign_mod_item] = STATE(544), + [sym_struct_item] = STATE(544), + [sym_union_item] = STATE(544), + [sym_enum_item] = STATE(544), + [sym_extern_crate_declaration] = STATE(544), + [sym_const_item] = STATE(544), + [sym_static_item] = STATE(544), + [sym_type_item] = STATE(544), + [sym_function_item] = STATE(544), + [sym_function_signature_item] = STATE(544), + [sym_function_modifiers] = STATE(3806), + [sym_impl_item] = STATE(544), + [sym_trait_item] = STATE(544), + [sym_associated_type] = STATE(544), + [sym_let_declaration] = STATE(544), + [sym_use_declaration] = STATE(544), + [sym_extern_modifier] = STATE(2327), + [sym_visibility_modifier] = STATE(2084), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1959), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_block_expression_with_attribute] = STATE(699), + [sym_macro_invocation] = STATE(425), + [sym_scoped_identifier] = STATE(1661), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(432), + [sym_match_expression] = STATE(432), + [sym_while_expression] = STATE(432), + [sym_loop_expression] = STATE(432), + [sym_for_expression] = STATE(432), + [sym_const_block] = STATE(432), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3677), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(432), + [sym_async_block] = STATE(432), + [sym_gen_block] = STATE(432), + [sym_try_block] = STATE(432), + [sym_block] = STATE(432), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(34), [sym_block_comment] = STATE(34), - [aux_sym_source_file_repeat1] = STATE(18), - [aux_sym_function_modifiers_repeat1] = STATE(2317), + [aux_sym_source_file_repeat1] = STATE(6), + [aux_sym_attributes_repeat1] = STATE(795), + [aux_sym_function_modifiers_repeat1] = STATE(2385), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -19704,67 +20229,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(35)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1578), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_empty_statement] = STATE(733), + [sym_declaration_with_attribute] = STATE(733), + [sym_macro_definition] = STATE(733), + [sym_attribute_item] = STATE(825), + [sym_attributes] = STATE(37), + [sym_inner_attribute_item] = STATE(733), + [sym_mod_item] = STATE(733), + [sym_foreign_mod_item] = STATE(733), + [sym_struct_item] = STATE(733), + [sym_union_item] = STATE(733), + [sym_enum_item] = STATE(733), + [sym_extern_crate_declaration] = STATE(733), + [sym_const_item] = STATE(733), + [sym_static_item] = STATE(733), + [sym_type_item] = STATE(733), + [sym_function_item] = STATE(733), + [sym_function_signature_item] = STATE(733), + [sym_function_modifiers] = STATE(3806), + [sym_impl_item] = STATE(733), + [sym_trait_item] = STATE(733), + [sym_associated_type] = STATE(733), + [sym_let_declaration] = STATE(733), + [sym_use_declaration] = STATE(733), + [sym_extern_modifier] = STATE(2327), + [sym_visibility_modifier] = STATE(2084), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(2031), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1571), + [sym_macro_invocation] = STATE(433), + [sym_scoped_identifier] = STATE(1661), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(438), + [sym_match_expression] = STATE(438), + [sym_while_expression] = STATE(438), + [sym_loop_expression] = STATE(438), + [sym_for_expression] = STATE(438), + [sym_const_block] = STATE(438), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3677), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(438), + [sym_async_block] = STATE(438), + [sym_gen_block] = STATE(438), + [sym_try_block] = STATE(438), + [sym_block] = STATE(438), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(35), [sym_block_comment] = STATE(35), - [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(341), - [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_RPAREN] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_RBRACK] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_COLON] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(347), - [anon_sym_QMARK] = ACTIONS(341), + [aux_sym_attributes_repeat1] = STATE(795), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_macro_rules_BANG] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -19782,61 +20331,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_SLASH] = ACTIONS(347), - [anon_sym_PERCENT] = ACTIONS(347), - [anon_sym_CARET] = ACTIONS(347), - [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(347), - [anon_sym_PIPE] = ACTIONS(347), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_LT_LT] = ACTIONS(347), - [anon_sym_GT_GT] = ACTIONS(347), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_SLASH_EQ] = ACTIONS(341), - [anon_sym_PERCENT_EQ] = ACTIONS(341), - [anon_sym_CARET_EQ] = ACTIONS(341), - [anon_sym_AMP_EQ] = ACTIONS(341), - [anon_sym_PIPE_EQ] = ACTIONS(341), - [anon_sym_LT_LT_EQ] = ACTIONS(341), - [anon_sym_GT_GT_EQ] = ACTIONS(341), - [anon_sym_EQ] = ACTIONS(347), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_GT] = ACTIONS(347), - [anon_sym_LT] = ACTIONS(347), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_DOT] = ACTIONS(347), - [anon_sym_DOT_DOT] = ACTIONS(347), - [anon_sym_DOT_DOT_DOT] = ACTIONS(341), - [anon_sym_DOT_DOT_EQ] = ACTIONS(341), - [anon_sym_COMMA] = ACTIONS(341), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(347), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(47), + [anon_sym_enum] = ACTIONS(49), + [anon_sym_fn] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_else] = ACTIONS(347), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(95), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -19846,72 +20378,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(109), [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), + [sym_crate] = ACTIONS(113), [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(36)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1582), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(35), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_empty_statement] = STATE(733), + [sym_declaration_with_attribute] = STATE(733), + [sym_macro_definition] = STATE(733), + [sym_attribute_item] = STATE(825), + [sym_attributes] = STATE(37), + [sym_inner_attribute_item] = STATE(733), + [sym_mod_item] = STATE(733), + [sym_foreign_mod_item] = STATE(733), + [sym_struct_item] = STATE(733), + [sym_union_item] = STATE(733), + [sym_enum_item] = STATE(733), + [sym_extern_crate_declaration] = STATE(733), + [sym_const_item] = STATE(733), + [sym_static_item] = STATE(733), + [sym_type_item] = STATE(733), + [sym_function_item] = STATE(733), + [sym_function_signature_item] = STATE(733), + [sym_function_modifiers] = STATE(3806), + [sym_impl_item] = STATE(733), + [sym_trait_item] = STATE(733), + [sym_associated_type] = STATE(733), + [sym_let_declaration] = STATE(733), + [sym_use_declaration] = STATE(733), + [sym_extern_modifier] = STATE(2327), + [sym_visibility_modifier] = STATE(2084), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(2031), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1571), + [sym_macro_invocation] = STATE(443), + [sym_scoped_identifier] = STATE(1661), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(438), + [sym_match_expression] = STATE(438), + [sym_while_expression] = STATE(438), + [sym_loop_expression] = STATE(438), + [sym_for_expression] = STATE(438), + [sym_const_block] = STATE(438), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3677), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(438), + [sym_async_block] = STATE(438), + [sym_gen_block] = STATE(438), + [sym_try_block] = STATE(438), + [sym_block] = STATE(438), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(36), [sym_block_comment] = STATE(36), - [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(375), - [anon_sym_LPAREN] = ACTIONS(375), - [anon_sym_RPAREN] = ACTIONS(375), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_RBRACK] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(375), - [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_QMARK] = ACTIONS(375), + [aux_sym_attributes_repeat1] = STATE(795), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_macro_rules_BANG] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -19929,61 +20486,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(377), - [anon_sym_SLASH] = ACTIONS(377), - [anon_sym_PERCENT] = ACTIONS(377), - [anon_sym_CARET] = ACTIONS(377), - [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(377), - [anon_sym_PIPE] = ACTIONS(377), - [anon_sym_AMP_AMP] = ACTIONS(375), - [anon_sym_PIPE_PIPE] = ACTIONS(375), - [anon_sym_LT_LT] = ACTIONS(377), - [anon_sym_GT_GT] = ACTIONS(377), - [anon_sym_PLUS_EQ] = ACTIONS(375), - [anon_sym_DASH_EQ] = ACTIONS(375), - [anon_sym_STAR_EQ] = ACTIONS(375), - [anon_sym_SLASH_EQ] = ACTIONS(375), - [anon_sym_PERCENT_EQ] = ACTIONS(375), - [anon_sym_CARET_EQ] = ACTIONS(375), - [anon_sym_AMP_EQ] = ACTIONS(375), - [anon_sym_PIPE_EQ] = ACTIONS(375), - [anon_sym_LT_LT_EQ] = ACTIONS(375), - [anon_sym_GT_GT_EQ] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(377), - [anon_sym_EQ_EQ] = ACTIONS(375), - [anon_sym_BANG_EQ] = ACTIONS(375), - [anon_sym_GT] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(377), - [anon_sym_GT_EQ] = ACTIONS(375), - [anon_sym_LT_EQ] = ACTIONS(375), - [anon_sym_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT_DOT] = ACTIONS(375), - [anon_sym_DOT_DOT_EQ] = ACTIONS(375), - [anon_sym_COMMA] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(379), - [anon_sym_as] = ACTIONS(377), - [anon_sym_async] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(43), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(47), + [anon_sym_enum] = ACTIONS(49), + [anon_sym_fn] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_else] = ACTIONS(377), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(95), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -19993,72 +20533,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(109), [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), + [sym_crate] = ACTIONS(113), [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(37)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1560), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_empty_statement] = STATE(733), + [sym_declaration_with_attribute] = STATE(733), + [sym_macro_definition] = STATE(733), + [sym_attribute_item] = STATE(825), + [sym_attributes] = STATE(37), + [sym_inner_attribute_item] = STATE(733), + [sym_mod_item] = STATE(733), + [sym_foreign_mod_item] = STATE(733), + [sym_struct_item] = STATE(733), + [sym_union_item] = STATE(733), + [sym_enum_item] = STATE(733), + [sym_extern_crate_declaration] = STATE(733), + [sym_const_item] = STATE(733), + [sym_static_item] = STATE(733), + [sym_type_item] = STATE(733), + [sym_function_item] = STATE(733), + [sym_function_signature_item] = STATE(733), + [sym_function_modifiers] = STATE(3806), + [sym_impl_item] = STATE(733), + [sym_trait_item] = STATE(733), + [sym_associated_type] = STATE(733), + [sym_let_declaration] = STATE(733), + [sym_use_declaration] = STATE(733), + [sym_extern_modifier] = STATE(2327), + [sym_visibility_modifier] = STATE(2084), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(2031), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1571), + [sym_macro_invocation] = STATE(427), + [sym_scoped_identifier] = STATE(1661), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(37), [sym_block_comment] = STATE(37), - [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(381), + [aux_sym_attributes_repeat1] = STATE(795), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(381), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(381), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_STAR] = ACTIONS(349), - [anon_sym_QMARK] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20076,61 +20641,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(387), - [anon_sym_AMP_AMP] = ACTIONS(381), - [anon_sym_PIPE_PIPE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS_EQ] = ACTIONS(381), - [anon_sym_DASH_EQ] = ACTIONS(381), - [anon_sym_STAR_EQ] = ACTIONS(381), - [anon_sym_SLASH_EQ] = ACTIONS(381), - [anon_sym_PERCENT_EQ] = ACTIONS(381), - [anon_sym_CARET_EQ] = ACTIONS(381), - [anon_sym_AMP_EQ] = ACTIONS(381), - [anon_sym_PIPE_EQ] = ACTIONS(381), - [anon_sym_LT_LT_EQ] = ACTIONS(381), - [anon_sym_GT_GT_EQ] = ACTIONS(381), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(381), - [anon_sym_BANG_EQ] = ACTIONS(381), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(381), - [anon_sym_LT_EQ] = ACTIONS(381), - [anon_sym_DOT] = ACTIONS(383), - [anon_sym_DOT_DOT] = ACTIONS(391), - [anon_sym_DOT_DOT_DOT] = ACTIONS(381), - [anon_sym_DOT_DOT_EQ] = ACTIONS(381), - [anon_sym_COMMA] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(383), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(341), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(343), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(47), + [anon_sym_enum] = ACTIONS(49), + [anon_sym_fn] = ACTIONS(51), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_else] = ACTIONS(383), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(355), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(357), + [anon_sym_extern] = ACTIONS(89), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -20140,72 +20688,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(109), [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), + [sym_crate] = ACTIONS(113), [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(38)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1581), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(263), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1611), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(38), [sym_block_comment] = STATE(38), - [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_RBRACK] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(393), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(395), - [anon_sym_QMARK] = ACTIONS(393), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), + [anon_sym_SEMI] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(363), + [anon_sym_RPAREN] = ACTIONS(363), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_RBRACK] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_RBRACE] = ACTIONS(363), + [anon_sym_COLON] = ACTIONS(365), + [anon_sym_PLUS] = ACTIONS(367), + [anon_sym_STAR] = ACTIONS(367), + [anon_sym_QMARK] = ACTIONS(363), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20223,61 +20777,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_SLASH] = ACTIONS(395), - [anon_sym_PERCENT] = ACTIONS(395), - [anon_sym_CARET] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(395), - [anon_sym_GT_GT] = ACTIONS(395), - [anon_sym_PLUS_EQ] = ACTIONS(393), - [anon_sym_DASH_EQ] = ACTIONS(393), - [anon_sym_STAR_EQ] = ACTIONS(393), - [anon_sym_SLASH_EQ] = ACTIONS(393), - [anon_sym_PERCENT_EQ] = ACTIONS(393), - [anon_sym_CARET_EQ] = ACTIONS(393), - [anon_sym_AMP_EQ] = ACTIONS(393), - [anon_sym_PIPE_EQ] = ACTIONS(393), - [anon_sym_LT_LT_EQ] = ACTIONS(393), - [anon_sym_GT_GT_EQ] = ACTIONS(393), - [anon_sym_EQ] = ACTIONS(395), - [anon_sym_EQ_EQ] = ACTIONS(393), - [anon_sym_BANG_EQ] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_GT_EQ] = ACTIONS(393), - [anon_sym_LT_EQ] = ACTIONS(393), - [anon_sym_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_EQ] = ACTIONS(393), - [anon_sym_COMMA] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(367), + [anon_sym_SLASH] = ACTIONS(367), + [anon_sym_PERCENT] = ACTIONS(367), + [anon_sym_CARET] = ACTIONS(367), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_AMP] = ACTIONS(367), + [anon_sym_PIPE] = ACTIONS(367), + [anon_sym_AMP_AMP] = ACTIONS(363), + [anon_sym_PIPE_PIPE] = ACTIONS(363), + [anon_sym_LT_LT] = ACTIONS(367), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_PLUS_EQ] = ACTIONS(363), + [anon_sym_DASH_EQ] = ACTIONS(363), + [anon_sym_STAR_EQ] = ACTIONS(363), + [anon_sym_SLASH_EQ] = ACTIONS(363), + [anon_sym_PERCENT_EQ] = ACTIONS(363), + [anon_sym_CARET_EQ] = ACTIONS(363), + [anon_sym_AMP_EQ] = ACTIONS(363), + [anon_sym_PIPE_EQ] = ACTIONS(363), + [anon_sym_LT_LT_EQ] = ACTIONS(363), + [anon_sym_GT_GT_EQ] = ACTIONS(363), + [anon_sym_EQ] = ACTIONS(367), + [anon_sym_EQ_EQ] = ACTIONS(363), + [anon_sym_BANG_EQ] = ACTIONS(363), + [anon_sym_GT] = ACTIONS(367), + [anon_sym_LT] = ACTIONS(367), + [anon_sym_GT_EQ] = ACTIONS(363), + [anon_sym_LT_EQ] = ACTIONS(363), + [anon_sym_DOT] = ACTIONS(367), + [anon_sym_DOT_DOT] = ACTIONS(367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(363), + [anon_sym_DOT_DOT_EQ] = ACTIONS(363), + [anon_sym_COMMA] = ACTIONS(363), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(395), - [anon_sym_async] = ACTIONS(351), + [anon_sym_as] = ACTIONS(367), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_else] = ACTIONS(395), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_else] = ACTIONS(367), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -20293,66 +20848,224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(39)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1593), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(263), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1637), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(38), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(39), [sym_block_comment] = STATE(39), - [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(397), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), + [anon_sym_SEMI] = ACTIONS(385), + [anon_sym_LPAREN] = ACTIONS(385), + [anon_sym_RPAREN] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(385), + [anon_sym_RBRACK] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_RBRACE] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_QMARK] = ACTIONS(385), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_CARET] = ACTIONS(387), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_AMP] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(385), + [anon_sym_PIPE_PIPE] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_GT_GT] = ACTIONS(387), + [anon_sym_PLUS_EQ] = ACTIONS(385), + [anon_sym_DASH_EQ] = ACTIONS(385), + [anon_sym_STAR_EQ] = ACTIONS(385), + [anon_sym_SLASH_EQ] = ACTIONS(385), + [anon_sym_PERCENT_EQ] = ACTIONS(385), + [anon_sym_CARET_EQ] = ACTIONS(385), + [anon_sym_AMP_EQ] = ACTIONS(385), + [anon_sym_PIPE_EQ] = ACTIONS(385), + [anon_sym_LT_LT_EQ] = ACTIONS(385), + [anon_sym_GT_GT_EQ] = ACTIONS(385), + [anon_sym_EQ] = ACTIONS(387), + [anon_sym_EQ_EQ] = ACTIONS(385), + [anon_sym_BANG_EQ] = ACTIONS(385), + [anon_sym_GT] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(385), + [anon_sym_COMMA] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_as] = ACTIONS(387), + [anon_sym_async] = ACTIONS(373), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_else] = ACTIONS(387), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(359), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(40)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(263), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1609), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(40), + [sym_block_comment] = STATE(40), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), + [anon_sym_SEMI] = ACTIONS(391), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_RBRACK] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_RPAREN] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_RBRACE] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_STAR] = ACTIONS(369), + [anon_sym_QMARK] = ACTIONS(391), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20370,61 +21083,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(399), - [anon_sym_PERCENT] = ACTIONS(399), - [anon_sym_CARET] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_AMP_AMP] = ACTIONS(397), - [anon_sym_PIPE_PIPE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(399), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_PLUS_EQ] = ACTIONS(397), - [anon_sym_DASH_EQ] = ACTIONS(397), - [anon_sym_STAR_EQ] = ACTIONS(397), - [anon_sym_SLASH_EQ] = ACTIONS(397), - [anon_sym_PERCENT_EQ] = ACTIONS(397), - [anon_sym_CARET_EQ] = ACTIONS(397), - [anon_sym_AMP_EQ] = ACTIONS(397), - [anon_sym_PIPE_EQ] = ACTIONS(397), - [anon_sym_LT_LT_EQ] = ACTIONS(397), - [anon_sym_GT_GT_EQ] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(399), - [anon_sym_EQ_EQ] = ACTIONS(397), - [anon_sym_BANG_EQ] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(369), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_AMP] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_AMP_AMP] = ACTIONS(391), + [anon_sym_PIPE_PIPE] = ACTIONS(391), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(393), + [anon_sym_PLUS_EQ] = ACTIONS(391), + [anon_sym_DASH_EQ] = ACTIONS(391), + [anon_sym_STAR_EQ] = ACTIONS(391), + [anon_sym_SLASH_EQ] = ACTIONS(391), + [anon_sym_PERCENT_EQ] = ACTIONS(391), + [anon_sym_CARET_EQ] = ACTIONS(391), + [anon_sym_AMP_EQ] = ACTIONS(391), + [anon_sym_PIPE_EQ] = ACTIONS(391), + [anon_sym_LT_LT_EQ] = ACTIONS(391), + [anon_sym_GT_GT_EQ] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(393), + [anon_sym_EQ_EQ] = ACTIONS(391), + [anon_sym_BANG_EQ] = ACTIONS(391), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LT] = ACTIONS(399), - [anon_sym_GT_EQ] = ACTIONS(397), - [anon_sym_LT_EQ] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(391), + [anon_sym_LT_EQ] = ACTIONS(391), + [anon_sym_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_DOT] = ACTIONS(391), + [anon_sym_DOT_DOT_EQ] = ACTIONS(391), + [anon_sym_COMMA] = ACTIONS(391), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(399), - [anon_sym_async] = ACTIONS(351), + [anon_sym_as] = ACTIONS(393), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_else] = ACTIONS(399), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_else] = ACTIONS(393), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -20439,67 +21153,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(40)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1561), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(40), - [sym_block_comment] = STATE(40), - [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(401), + [STATE(41)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1639), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(41), + [sym_block_comment] = STATE(41), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), + [anon_sym_SEMI] = ACTIONS(403), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(401), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(349), - [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_RBRACK] = ACTIONS(403), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_RBRACE] = ACTIONS(403), + [anon_sym_PLUS] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(405), + [anon_sym_QMARK] = ACTIONS(403), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20517,61 +21236,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), - [anon_sym_SLASH] = ACTIONS(403), - [anon_sym_PERCENT] = ACTIONS(403), - [anon_sym_CARET] = ACTIONS(403), - [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(387), - [anon_sym_AMP_AMP] = ACTIONS(401), - [anon_sym_PIPE_PIPE] = ACTIONS(401), - [anon_sym_LT_LT] = ACTIONS(403), - [anon_sym_GT_GT] = ACTIONS(403), - [anon_sym_PLUS_EQ] = ACTIONS(401), - [anon_sym_DASH_EQ] = ACTIONS(401), - [anon_sym_STAR_EQ] = ACTIONS(401), - [anon_sym_SLASH_EQ] = ACTIONS(401), - [anon_sym_PERCENT_EQ] = ACTIONS(401), - [anon_sym_CARET_EQ] = ACTIONS(401), - [anon_sym_AMP_EQ] = ACTIONS(401), - [anon_sym_PIPE_EQ] = ACTIONS(401), - [anon_sym_LT_LT_EQ] = ACTIONS(401), - [anon_sym_GT_GT_EQ] = ACTIONS(401), - [anon_sym_EQ] = ACTIONS(403), - [anon_sym_EQ_EQ] = ACTIONS(401), - [anon_sym_BANG_EQ] = ACTIONS(401), - [anon_sym_GT] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(401), - [anon_sym_LT_EQ] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(391), - [anon_sym_DOT_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(401), - [anon_sym_COMMA] = ACTIONS(401), + [anon_sym_DASH] = ACTIONS(405), + [anon_sym_SLASH] = ACTIONS(405), + [anon_sym_PERCENT] = ACTIONS(405), + [anon_sym_CARET] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PIPE] = ACTIONS(405), + [anon_sym_AMP_AMP] = ACTIONS(403), + [anon_sym_PIPE_PIPE] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(405), + [anon_sym_GT_GT] = ACTIONS(405), + [anon_sym_PLUS_EQ] = ACTIONS(403), + [anon_sym_DASH_EQ] = ACTIONS(403), + [anon_sym_STAR_EQ] = ACTIONS(403), + [anon_sym_SLASH_EQ] = ACTIONS(403), + [anon_sym_PERCENT_EQ] = ACTIONS(403), + [anon_sym_CARET_EQ] = ACTIONS(403), + [anon_sym_AMP_EQ] = ACTIONS(403), + [anon_sym_PIPE_EQ] = ACTIONS(403), + [anon_sym_LT_LT_EQ] = ACTIONS(403), + [anon_sym_GT_GT_EQ] = ACTIONS(403), + [anon_sym_EQ] = ACTIONS(405), + [anon_sym_EQ_EQ] = ACTIONS(403), + [anon_sym_BANG_EQ] = ACTIONS(403), + [anon_sym_GT] = ACTIONS(405), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(403), + [anon_sym_LT_EQ] = ACTIONS(403), + [anon_sym_DOT] = ACTIONS(405), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DOT_DOT_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT_EQ] = ACTIONS(403), + [anon_sym_COMMA] = ACTIONS(403), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(403), - [anon_sym_async] = ACTIONS(351), + [anon_sym_as] = ACTIONS(405), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_else] = ACTIONS(403), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_else] = ACTIONS(405), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -20586,67 +21306,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(41)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1581), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(41), - [sym_block_comment] = STATE(41), - [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_RPAREN] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_RBRACK] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(393), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(395), - [anon_sym_QMARK] = ACTIONS(393), + [STATE(42)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1614), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(42), + [sym_block_comment] = STATE(42), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), + [anon_sym_SEMI] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_RBRACK] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_RBRACE] = ACTIONS(407), + [anon_sym_PLUS] = ACTIONS(409), + [anon_sym_STAR] = ACTIONS(409), + [anon_sym_QMARK] = ACTIONS(407), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20664,61 +21389,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_SLASH] = ACTIONS(395), - [anon_sym_PERCENT] = ACTIONS(395), - [anon_sym_CARET] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(395), - [anon_sym_GT_GT] = ACTIONS(395), - [anon_sym_PLUS_EQ] = ACTIONS(393), - [anon_sym_DASH_EQ] = ACTIONS(393), - [anon_sym_STAR_EQ] = ACTIONS(393), - [anon_sym_SLASH_EQ] = ACTIONS(393), - [anon_sym_PERCENT_EQ] = ACTIONS(393), - [anon_sym_CARET_EQ] = ACTIONS(393), - [anon_sym_AMP_EQ] = ACTIONS(393), - [anon_sym_PIPE_EQ] = ACTIONS(393), - [anon_sym_LT_LT_EQ] = ACTIONS(393), - [anon_sym_GT_GT_EQ] = ACTIONS(393), - [anon_sym_EQ] = ACTIONS(395), - [anon_sym_EQ_EQ] = ACTIONS(393), - [anon_sym_BANG_EQ] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_GT_EQ] = ACTIONS(393), - [anon_sym_LT_EQ] = ACTIONS(393), - [anon_sym_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_EQ] = ACTIONS(393), - [anon_sym_COMMA] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(409), + [anon_sym_SLASH] = ACTIONS(409), + [anon_sym_PERCENT] = ACTIONS(409), + [anon_sym_CARET] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_PIPE] = ACTIONS(409), + [anon_sym_AMP_AMP] = ACTIONS(407), + [anon_sym_PIPE_PIPE] = ACTIONS(407), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_GT_GT] = ACTIONS(409), + [anon_sym_PLUS_EQ] = ACTIONS(407), + [anon_sym_DASH_EQ] = ACTIONS(407), + [anon_sym_STAR_EQ] = ACTIONS(407), + [anon_sym_SLASH_EQ] = ACTIONS(407), + [anon_sym_PERCENT_EQ] = ACTIONS(407), + [anon_sym_CARET_EQ] = ACTIONS(407), + [anon_sym_AMP_EQ] = ACTIONS(407), + [anon_sym_PIPE_EQ] = ACTIONS(407), + [anon_sym_LT_LT_EQ] = ACTIONS(407), + [anon_sym_GT_GT_EQ] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(409), + [anon_sym_EQ_EQ] = ACTIONS(407), + [anon_sym_BANG_EQ] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_LT_EQ] = ACTIONS(407), + [anon_sym_DOT] = ACTIONS(409), + [anon_sym_DOT_DOT] = ACTIONS(409), + [anon_sym_DOT_DOT_DOT] = ACTIONS(407), + [anon_sym_DOT_DOT_EQ] = ACTIONS(407), + [anon_sym_COMMA] = ACTIONS(407), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(395), - [anon_sym_async] = ACTIONS(351), + [anon_sym_as] = ACTIONS(409), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_else] = ACTIONS(395), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_else] = ACTIONS(409), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -20733,67 +21459,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(42)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1593), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(42), - [sym_block_comment] = STATE(42), - [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(397), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_RBRACK] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(397), + [STATE(43)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(263), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1614), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(43), + [sym_block_comment] = STATE(43), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), + [anon_sym_SEMI] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(407), + [anon_sym_RPAREN] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_RBRACK] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_RBRACE] = ACTIONS(407), + [anon_sym_PLUS] = ACTIONS(409), + [anon_sym_STAR] = ACTIONS(409), + [anon_sym_QMARK] = ACTIONS(407), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20811,61 +21542,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(399), - [anon_sym_PERCENT] = ACTIONS(399), - [anon_sym_CARET] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_AMP_AMP] = ACTIONS(397), - [anon_sym_PIPE_PIPE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(399), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_PLUS_EQ] = ACTIONS(397), - [anon_sym_DASH_EQ] = ACTIONS(397), - [anon_sym_STAR_EQ] = ACTIONS(397), - [anon_sym_SLASH_EQ] = ACTIONS(397), - [anon_sym_PERCENT_EQ] = ACTIONS(397), - [anon_sym_CARET_EQ] = ACTIONS(397), - [anon_sym_AMP_EQ] = ACTIONS(397), - [anon_sym_PIPE_EQ] = ACTIONS(397), - [anon_sym_LT_LT_EQ] = ACTIONS(397), - [anon_sym_GT_GT_EQ] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(399), - [anon_sym_EQ_EQ] = ACTIONS(397), - [anon_sym_BANG_EQ] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(399), - [anon_sym_GT_EQ] = ACTIONS(397), - [anon_sym_LT_EQ] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(409), + [anon_sym_SLASH] = ACTIONS(409), + [anon_sym_PERCENT] = ACTIONS(409), + [anon_sym_CARET] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_PIPE] = ACTIONS(409), + [anon_sym_AMP_AMP] = ACTIONS(407), + [anon_sym_PIPE_PIPE] = ACTIONS(407), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_GT_GT] = ACTIONS(409), + [anon_sym_PLUS_EQ] = ACTIONS(407), + [anon_sym_DASH_EQ] = ACTIONS(407), + [anon_sym_STAR_EQ] = ACTIONS(407), + [anon_sym_SLASH_EQ] = ACTIONS(407), + [anon_sym_PERCENT_EQ] = ACTIONS(407), + [anon_sym_CARET_EQ] = ACTIONS(407), + [anon_sym_AMP_EQ] = ACTIONS(407), + [anon_sym_PIPE_EQ] = ACTIONS(407), + [anon_sym_LT_LT_EQ] = ACTIONS(407), + [anon_sym_GT_GT_EQ] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(409), + [anon_sym_EQ_EQ] = ACTIONS(407), + [anon_sym_BANG_EQ] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_LT_EQ] = ACTIONS(407), + [anon_sym_DOT] = ACTIONS(409), + [anon_sym_DOT_DOT] = ACTIONS(409), + [anon_sym_DOT_DOT_DOT] = ACTIONS(407), + [anon_sym_DOT_DOT_EQ] = ACTIONS(407), + [anon_sym_COMMA] = ACTIONS(407), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(399), - [anon_sym_async] = ACTIONS(351), + [anon_sym_as] = ACTIONS(409), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_else] = ACTIONS(399), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_else] = ACTIONS(409), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -20880,1271 +21612,891 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(43)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1821), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), - [sym_line_comment] = STATE(43), - [sym_block_comment] = STATE(43), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(341), - [anon_sym_COLON] = ACTIONS(409), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(347), - [anon_sym_QMARK] = ACTIONS(341), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_SLASH] = ACTIONS(347), - [anon_sym_PERCENT] = ACTIONS(347), - [anon_sym_CARET] = ACTIONS(347), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(347), - [anon_sym_PIPE] = ACTIONS(347), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_LT_LT] = ACTIONS(347), - [anon_sym_GT_GT] = ACTIONS(347), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_SLASH_EQ] = ACTIONS(341), - [anon_sym_PERCENT_EQ] = ACTIONS(341), - [anon_sym_CARET_EQ] = ACTIONS(341), - [anon_sym_AMP_EQ] = ACTIONS(341), - [anon_sym_PIPE_EQ] = ACTIONS(341), - [anon_sym_LT_LT_EQ] = ACTIONS(341), - [anon_sym_GT_GT_EQ] = ACTIONS(341), - [anon_sym_EQ] = ACTIONS(347), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_GT] = ACTIONS(347), - [anon_sym_LT] = ACTIONS(347), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_DOT] = ACTIONS(347), - [anon_sym_DOT_DOT] = ACTIONS(347), - [anon_sym_DOT_DOT_DOT] = ACTIONS(341), - [anon_sym_DOT_DOT_EQ] = ACTIONS(341), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(347), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, [STATE(44)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1746), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(43), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(263), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1639), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(44), [sym_block_comment] = STATE(44), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(375), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(375), - [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_QMARK] = ACTIONS(375), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(377), - [anon_sym_SLASH] = ACTIONS(377), - [anon_sym_PERCENT] = ACTIONS(377), - [anon_sym_CARET] = ACTIONS(377), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(377), - [anon_sym_PIPE] = ACTIONS(377), - [anon_sym_AMP_AMP] = ACTIONS(375), - [anon_sym_PIPE_PIPE] = ACTIONS(375), - [anon_sym_LT_LT] = ACTIONS(377), - [anon_sym_GT_GT] = ACTIONS(377), - [anon_sym_PLUS_EQ] = ACTIONS(375), - [anon_sym_DASH_EQ] = ACTIONS(375), - [anon_sym_STAR_EQ] = ACTIONS(375), - [anon_sym_SLASH_EQ] = ACTIONS(375), - [anon_sym_PERCENT_EQ] = ACTIONS(375), - [anon_sym_CARET_EQ] = ACTIONS(375), - [anon_sym_AMP_EQ] = ACTIONS(375), - [anon_sym_PIPE_EQ] = ACTIONS(375), - [anon_sym_LT_LT_EQ] = ACTIONS(375), - [anon_sym_GT_GT_EQ] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(377), - [anon_sym_EQ_EQ] = ACTIONS(375), - [anon_sym_BANG_EQ] = ACTIONS(375), - [anon_sym_GT] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(377), - [anon_sym_GT_EQ] = ACTIONS(375), - [anon_sym_LT_EQ] = ACTIONS(375), - [anon_sym_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT_DOT] = ACTIONS(375), - [anon_sym_DOT_DOT_EQ] = ACTIONS(375), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(465), - [anon_sym_as] = ACTIONS(377), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), + [anon_sym_SEMI] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(403), + [anon_sym_RPAREN] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_RBRACK] = ACTIONS(403), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_RBRACE] = ACTIONS(403), + [anon_sym_PLUS] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(405), + [anon_sym_QMARK] = ACTIONS(403), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(405), + [anon_sym_SLASH] = ACTIONS(405), + [anon_sym_PERCENT] = ACTIONS(405), + [anon_sym_CARET] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PIPE] = ACTIONS(405), + [anon_sym_AMP_AMP] = ACTIONS(403), + [anon_sym_PIPE_PIPE] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(405), + [anon_sym_GT_GT] = ACTIONS(405), + [anon_sym_PLUS_EQ] = ACTIONS(403), + [anon_sym_DASH_EQ] = ACTIONS(403), + [anon_sym_STAR_EQ] = ACTIONS(403), + [anon_sym_SLASH_EQ] = ACTIONS(403), + [anon_sym_PERCENT_EQ] = ACTIONS(403), + [anon_sym_CARET_EQ] = ACTIONS(403), + [anon_sym_AMP_EQ] = ACTIONS(403), + [anon_sym_PIPE_EQ] = ACTIONS(403), + [anon_sym_LT_LT_EQ] = ACTIONS(403), + [anon_sym_GT_GT_EQ] = ACTIONS(403), + [anon_sym_EQ] = ACTIONS(405), + [anon_sym_EQ_EQ] = ACTIONS(403), + [anon_sym_BANG_EQ] = ACTIONS(403), + [anon_sym_GT] = ACTIONS(405), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(403), + [anon_sym_LT_EQ] = ACTIONS(403), + [anon_sym_DOT] = ACTIONS(405), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DOT_DOT_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT_EQ] = ACTIONS(403), + [anon_sym_COMMA] = ACTIONS(403), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(405), + [anon_sym_async] = ACTIONS(373), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_else] = ACTIONS(405), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(359), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [STATE(45)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1836), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(263), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1613), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(45), [sym_block_comment] = STATE(45), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(397), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(399), - [anon_sym_PERCENT] = ACTIONS(399), - [anon_sym_CARET] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_AMP_AMP] = ACTIONS(397), - [anon_sym_PIPE_PIPE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(399), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_PLUS_EQ] = ACTIONS(397), - [anon_sym_DASH_EQ] = ACTIONS(397), - [anon_sym_STAR_EQ] = ACTIONS(397), - [anon_sym_SLASH_EQ] = ACTIONS(397), - [anon_sym_PERCENT_EQ] = ACTIONS(397), - [anon_sym_CARET_EQ] = ACTIONS(397), - [anon_sym_AMP_EQ] = ACTIONS(397), - [anon_sym_PIPE_EQ] = ACTIONS(397), - [anon_sym_LT_LT_EQ] = ACTIONS(397), - [anon_sym_GT_GT_EQ] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(399), - [anon_sym_EQ_EQ] = ACTIONS(397), - [anon_sym_BANG_EQ] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(399), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), + [anon_sym_SEMI] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(411), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_RBRACE] = ACTIONS(411), + [anon_sym_PLUS] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(369), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(369), + [anon_sym_SLASH] = ACTIONS(413), + [anon_sym_PERCENT] = ACTIONS(413), + [anon_sym_CARET] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_AMP] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_AMP_AMP] = ACTIONS(411), + [anon_sym_PIPE_PIPE] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(413), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_PLUS_EQ] = ACTIONS(411), + [anon_sym_DASH_EQ] = ACTIONS(411), + [anon_sym_STAR_EQ] = ACTIONS(411), + [anon_sym_SLASH_EQ] = ACTIONS(411), + [anon_sym_PERCENT_EQ] = ACTIONS(411), + [anon_sym_CARET_EQ] = ACTIONS(411), + [anon_sym_AMP_EQ] = ACTIONS(411), + [anon_sym_PIPE_EQ] = ACTIONS(411), + [anon_sym_LT_LT_EQ] = ACTIONS(411), + [anon_sym_GT_GT_EQ] = ACTIONS(411), + [anon_sym_EQ] = ACTIONS(413), + [anon_sym_EQ_EQ] = ACTIONS(411), + [anon_sym_BANG_EQ] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(413), [anon_sym_LT] = ACTIONS(399), - [anon_sym_GT_EQ] = ACTIONS(397), - [anon_sym_LT_EQ] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(397), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_GT_EQ] = ACTIONS(411), + [anon_sym_LT_EQ] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(413), + [anon_sym_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_DOT] = ACTIONS(411), + [anon_sym_DOT_DOT_EQ] = ACTIONS(411), + [anon_sym_COMMA] = ACTIONS(411), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(399), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [anon_sym_as] = ACTIONS(413), + [anon_sym_async] = ACTIONS(373), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_else] = ACTIONS(413), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(359), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [STATE(46)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1748), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(305), + [sym_bracketed_type] = STATE(3726), + [sym_generic_function] = STATE(1934), + [sym_generic_type_with_turbofish] = STATE(3067), + [sym__expression_except_range] = STATE(1755), + [sym__expression] = STATE(1881), + [sym_expression_with_attribute] = STATE(1958), + [sym__expression_without_attribute] = STATE(1958), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(1673), + [sym_scoped_type_identifier_in_expression_position] = STATE(3301), + [sym_range_expression] = STATE(1801), + [sym_unary_expression] = STATE(1934), + [sym_try_expression] = STATE(1934), + [sym_reference_expression] = STATE(1934), + [sym_binary_expression] = STATE(1934), + [sym_assignment_expression] = STATE(1934), + [sym_compound_assignment_expr] = STATE(1934), + [sym_type_cast_expression] = STATE(1934), + [sym_return_expression] = STATE(1934), + [sym_yield_expression] = STATE(1934), + [sym_call_expression] = STATE(1934), + [sym_array_expression] = STATE(1934), + [sym_parenthesized_expression] = STATE(1934), + [sym_tuple_expression] = STATE(1934), + [sym_unit_expression] = STATE(1934), + [sym_struct_expression] = STATE(1934), + [sym_if_expression] = STATE(1934), + [sym_match_expression] = STATE(1934), + [sym_while_expression] = STATE(1934), + [sym_loop_expression] = STATE(1934), + [sym_for_expression] = STATE(1934), + [sym_const_block] = STATE(1934), + [sym_closure_expression] = STATE(1934), + [sym_closure_parameters] = STATE(154), + [sym_label] = STATE(3832), + [sym_break_expression] = STATE(1934), + [sym_continue_expression] = STATE(1934), + [sym_index_expression] = STATE(1934), + [sym_await_expression] = STATE(1934), + [sym_field_expression] = STATE(1707), + [sym_unsafe_block] = STATE(1934), + [sym_async_block] = STATE(1934), + [sym_gen_block] = STATE(1934), + [sym_try_block] = STATE(1934), + [sym_block] = STATE(1934), + [sym__literal] = STATE(1934), + [sym_string_literal] = STATE(1949), + [sym_raw_string_literal] = STATE(1949), + [sym_boolean_literal] = STATE(1949), [sym_line_comment] = STATE(46), [sym_block_comment] = STATE(46), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(401), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(413), - [anon_sym_QMARK] = ACTIONS(401), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(413), - [anon_sym_SLASH] = ACTIONS(403), - [anon_sym_PERCENT] = ACTIONS(403), - [anon_sym_CARET] = ACTIONS(403), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(471), - [anon_sym_PIPE] = ACTIONS(387), - [anon_sym_AMP_AMP] = ACTIONS(401), - [anon_sym_PIPE_PIPE] = ACTIONS(401), - [anon_sym_LT_LT] = ACTIONS(403), - [anon_sym_GT_GT] = ACTIONS(403), - [anon_sym_PLUS_EQ] = ACTIONS(401), - [anon_sym_DASH_EQ] = ACTIONS(401), - [anon_sym_STAR_EQ] = ACTIONS(401), - [anon_sym_SLASH_EQ] = ACTIONS(401), - [anon_sym_PERCENT_EQ] = ACTIONS(401), - [anon_sym_CARET_EQ] = ACTIONS(401), - [anon_sym_AMP_EQ] = ACTIONS(401), - [anon_sym_PIPE_EQ] = ACTIONS(401), - [anon_sym_LT_LT_EQ] = ACTIONS(401), - [anon_sym_GT_GT_EQ] = ACTIONS(401), - [anon_sym_EQ] = ACTIONS(403), - [anon_sym_EQ_EQ] = ACTIONS(401), - [anon_sym_BANG_EQ] = ACTIONS(401), - [anon_sym_GT] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(401), - [anon_sym_LT_EQ] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(473), - [anon_sym_DOT_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(401), - [anon_sym_COLON_COLON] = ACTIONS(415), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(363), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_EQ_GT] = ACTIONS(363), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(367), + [anon_sym_STAR] = ACTIONS(367), + [anon_sym_QMARK] = ACTIONS(363), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(367), + [anon_sym_SLASH] = ACTIONS(367), + [anon_sym_PERCENT] = ACTIONS(367), + [anon_sym_CARET] = ACTIONS(367), + [anon_sym_BANG] = ACTIONS(423), + [anon_sym_AMP] = ACTIONS(367), + [anon_sym_PIPE] = ACTIONS(367), + [anon_sym_AMP_AMP] = ACTIONS(363), + [anon_sym_PIPE_PIPE] = ACTIONS(363), + [anon_sym_LT_LT] = ACTIONS(367), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_PLUS_EQ] = ACTIONS(363), + [anon_sym_DASH_EQ] = ACTIONS(363), + [anon_sym_STAR_EQ] = ACTIONS(363), + [anon_sym_SLASH_EQ] = ACTIONS(363), + [anon_sym_PERCENT_EQ] = ACTIONS(363), + [anon_sym_CARET_EQ] = ACTIONS(363), + [anon_sym_AMP_EQ] = ACTIONS(363), + [anon_sym_PIPE_EQ] = ACTIONS(363), + [anon_sym_LT_LT_EQ] = ACTIONS(363), + [anon_sym_GT_GT_EQ] = ACTIONS(363), + [anon_sym_EQ] = ACTIONS(367), + [anon_sym_EQ_EQ] = ACTIONS(363), + [anon_sym_BANG_EQ] = ACTIONS(363), + [anon_sym_GT] = ACTIONS(367), + [anon_sym_LT] = ACTIONS(367), + [anon_sym_GT_EQ] = ACTIONS(363), + [anon_sym_LT_EQ] = ACTIONS(363), + [anon_sym_DOT] = ACTIONS(367), + [anon_sym_DOT_DOT] = ACTIONS(367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(363), + [anon_sym_DOT_DOT_EQ] = ACTIONS(363), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(403), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [anon_sym_as] = ACTIONS(367), + [anon_sym_async] = ACTIONS(427), + [anon_sym_break] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_default] = ACTIONS(435), + [anon_sym_for] = ACTIONS(437), + [anon_sym_gen] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_loop] = ACTIONS(443), + [anon_sym_match] = ACTIONS(445), + [anon_sym_return] = ACTIONS(447), + [anon_sym_static] = ACTIONS(449), + [anon_sym_union] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(451), + [anon_sym_while] = ACTIONS(453), + [anon_sym_yield] = ACTIONS(455), + [anon_sym_move] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [aux_sym_string_literal_token1] = ACTIONS(463), + [sym_char_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(467), + [sym_super] = ACTIONS(469), + [sym_crate] = ACTIONS(469), + [sym_metavariable] = ACTIONS(471), + [sym__raw_string_literal_start] = ACTIONS(473), + [sym_float_literal] = ACTIONS(461), }, [STATE(47)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1749), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(303), + [sym_bracketed_type] = STATE(3726), + [sym_generic_function] = STATE(1934), + [sym_generic_type_with_turbofish] = STATE(3067), + [sym__expression_except_range] = STATE(1755), + [sym__expression] = STATE(1905), + [sym_expression_with_attribute] = STATE(1958), + [sym__expression_without_attribute] = STATE(1958), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(1673), + [sym_scoped_type_identifier_in_expression_position] = STATE(3301), + [sym_range_expression] = STATE(1801), + [sym_unary_expression] = STATE(1934), + [sym_try_expression] = STATE(1934), + [sym_reference_expression] = STATE(1934), + [sym_binary_expression] = STATE(1934), + [sym_assignment_expression] = STATE(1934), + [sym_compound_assignment_expr] = STATE(1934), + [sym_type_cast_expression] = STATE(1934), + [sym_return_expression] = STATE(1934), + [sym_yield_expression] = STATE(1934), + [sym_call_expression] = STATE(1934), + [sym_array_expression] = STATE(1934), + [sym_parenthesized_expression] = STATE(1934), + [sym_tuple_expression] = STATE(1934), + [sym_unit_expression] = STATE(1934), + [sym_struct_expression] = STATE(1934), + [sym_if_expression] = STATE(1934), + [sym_match_expression] = STATE(1934), + [sym_while_expression] = STATE(1934), + [sym_loop_expression] = STATE(1934), + [sym_for_expression] = STATE(1934), + [sym_const_block] = STATE(1934), + [sym_closure_expression] = STATE(1934), + [sym_closure_parameters] = STATE(154), + [sym_label] = STATE(3832), + [sym_break_expression] = STATE(1934), + [sym_continue_expression] = STATE(1934), + [sym_index_expression] = STATE(1934), + [sym_await_expression] = STATE(1934), + [sym_field_expression] = STATE(1707), + [sym_unsafe_block] = STATE(1934), + [sym_async_block] = STATE(1934), + [sym_gen_block] = STATE(1934), + [sym_try_block] = STATE(1934), + [sym_block] = STATE(1934), + [sym__literal] = STATE(1934), + [sym_string_literal] = STATE(1949), + [sym_raw_string_literal] = STATE(1949), + [sym_boolean_literal] = STATE(1949), [sym_line_comment] = STATE(47), [sym_block_comment] = STATE(47), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_STAR] = ACTIONS(413), - [anon_sym_QMARK] = ACTIONS(381), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(413), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(471), - [anon_sym_PIPE] = ACTIONS(387), - [anon_sym_AMP_AMP] = ACTIONS(381), - [anon_sym_PIPE_PIPE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS_EQ] = ACTIONS(381), - [anon_sym_DASH_EQ] = ACTIONS(381), - [anon_sym_STAR_EQ] = ACTIONS(381), - [anon_sym_SLASH_EQ] = ACTIONS(381), - [anon_sym_PERCENT_EQ] = ACTIONS(381), - [anon_sym_CARET_EQ] = ACTIONS(381), - [anon_sym_AMP_EQ] = ACTIONS(381), - [anon_sym_PIPE_EQ] = ACTIONS(381), - [anon_sym_LT_LT_EQ] = ACTIONS(381), - [anon_sym_GT_GT_EQ] = ACTIONS(381), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(381), - [anon_sym_BANG_EQ] = ACTIONS(381), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(381), - [anon_sym_LT_EQ] = ACTIONS(381), - [anon_sym_DOT] = ACTIONS(383), - [anon_sym_DOT_DOT] = ACTIONS(473), - [anon_sym_DOT_DOT_DOT] = ACTIONS(381), - [anon_sym_DOT_DOT_EQ] = ACTIONS(381), - [anon_sym_COLON_COLON] = ACTIONS(415), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_EQ_GT] = ACTIONS(403), + [anon_sym_PLUS] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(405), + [anon_sym_QMARK] = ACTIONS(403), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(405), + [anon_sym_SLASH] = ACTIONS(405), + [anon_sym_PERCENT] = ACTIONS(405), + [anon_sym_CARET] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(423), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PIPE] = ACTIONS(405), + [anon_sym_AMP_AMP] = ACTIONS(403), + [anon_sym_PIPE_PIPE] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(405), + [anon_sym_GT_GT] = ACTIONS(405), + [anon_sym_PLUS_EQ] = ACTIONS(403), + [anon_sym_DASH_EQ] = ACTIONS(403), + [anon_sym_STAR_EQ] = ACTIONS(403), + [anon_sym_SLASH_EQ] = ACTIONS(403), + [anon_sym_PERCENT_EQ] = ACTIONS(403), + [anon_sym_CARET_EQ] = ACTIONS(403), + [anon_sym_AMP_EQ] = ACTIONS(403), + [anon_sym_PIPE_EQ] = ACTIONS(403), + [anon_sym_LT_LT_EQ] = ACTIONS(403), + [anon_sym_GT_GT_EQ] = ACTIONS(403), + [anon_sym_EQ] = ACTIONS(405), + [anon_sym_EQ_EQ] = ACTIONS(403), + [anon_sym_BANG_EQ] = ACTIONS(403), + [anon_sym_GT] = ACTIONS(405), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(403), + [anon_sym_LT_EQ] = ACTIONS(403), + [anon_sym_DOT] = ACTIONS(405), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DOT_DOT_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT_EQ] = ACTIONS(403), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(383), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [anon_sym_as] = ACTIONS(405), + [anon_sym_async] = ACTIONS(427), + [anon_sym_break] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_default] = ACTIONS(435), + [anon_sym_for] = ACTIONS(437), + [anon_sym_gen] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_loop] = ACTIONS(443), + [anon_sym_match] = ACTIONS(445), + [anon_sym_return] = ACTIONS(447), + [anon_sym_static] = ACTIONS(449), + [anon_sym_union] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(451), + [anon_sym_while] = ACTIONS(453), + [anon_sym_yield] = ACTIONS(455), + [anon_sym_move] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [aux_sym_string_literal_token1] = ACTIONS(463), + [sym_char_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(467), + [sym_super] = ACTIONS(469), + [sym_crate] = ACTIONS(469), + [sym_metavariable] = ACTIONS(471), + [sym__raw_string_literal_start] = ACTIONS(473), + [sym_float_literal] = ACTIONS(461), }, [STATE(48)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1743), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(305), + [sym_bracketed_type] = STATE(3726), + [sym_generic_function] = STATE(1934), + [sym_generic_type_with_turbofish] = STATE(3067), + [sym__expression_except_range] = STATE(1755), + [sym__expression] = STATE(1905), + [sym_expression_with_attribute] = STATE(1958), + [sym__expression_without_attribute] = STATE(1958), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(1673), + [sym_scoped_type_identifier_in_expression_position] = STATE(3301), + [sym_range_expression] = STATE(1801), + [sym_unary_expression] = STATE(1934), + [sym_try_expression] = STATE(1934), + [sym_reference_expression] = STATE(1934), + [sym_binary_expression] = STATE(1934), + [sym_assignment_expression] = STATE(1934), + [sym_compound_assignment_expr] = STATE(1934), + [sym_type_cast_expression] = STATE(1934), + [sym_return_expression] = STATE(1934), + [sym_yield_expression] = STATE(1934), + [sym_call_expression] = STATE(1934), + [sym_array_expression] = STATE(1934), + [sym_parenthesized_expression] = STATE(1934), + [sym_tuple_expression] = STATE(1934), + [sym_unit_expression] = STATE(1934), + [sym_struct_expression] = STATE(1934), + [sym_if_expression] = STATE(1934), + [sym_match_expression] = STATE(1934), + [sym_while_expression] = STATE(1934), + [sym_loop_expression] = STATE(1934), + [sym_for_expression] = STATE(1934), + [sym_const_block] = STATE(1934), + [sym_closure_expression] = STATE(1934), + [sym_closure_parameters] = STATE(154), + [sym_label] = STATE(3832), + [sym_break_expression] = STATE(1934), + [sym_continue_expression] = STATE(1934), + [sym_index_expression] = STATE(1934), + [sym_await_expression] = STATE(1934), + [sym_field_expression] = STATE(1707), + [sym_unsafe_block] = STATE(1934), + [sym_async_block] = STATE(1934), + [sym_gen_block] = STATE(1934), + [sym_try_block] = STATE(1934), + [sym_block] = STATE(1934), + [sym__literal] = STATE(1934), + [sym_string_literal] = STATE(1949), + [sym_raw_string_literal] = STATE(1949), + [sym_boolean_literal] = STATE(1949), [sym_line_comment] = STATE(48), [sym_block_comment] = STATE(48), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(393), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(395), - [anon_sym_QMARK] = ACTIONS(393), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_SLASH] = ACTIONS(395), - [anon_sym_PERCENT] = ACTIONS(395), - [anon_sym_CARET] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(395), - [anon_sym_GT_GT] = ACTIONS(395), - [anon_sym_PLUS_EQ] = ACTIONS(393), - [anon_sym_DASH_EQ] = ACTIONS(393), - [anon_sym_STAR_EQ] = ACTIONS(393), - [anon_sym_SLASH_EQ] = ACTIONS(393), - [anon_sym_PERCENT_EQ] = ACTIONS(393), - [anon_sym_CARET_EQ] = ACTIONS(393), - [anon_sym_AMP_EQ] = ACTIONS(393), - [anon_sym_PIPE_EQ] = ACTIONS(393), - [anon_sym_LT_LT_EQ] = ACTIONS(393), - [anon_sym_GT_GT_EQ] = ACTIONS(393), - [anon_sym_EQ] = ACTIONS(395), - [anon_sym_EQ_EQ] = ACTIONS(393), - [anon_sym_BANG_EQ] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_GT_EQ] = ACTIONS(393), - [anon_sym_LT_EQ] = ACTIONS(393), - [anon_sym_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_EQ] = ACTIONS(393), - [anon_sym_COLON_COLON] = ACTIONS(415), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_EQ_GT] = ACTIONS(403), + [anon_sym_PLUS] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(405), + [anon_sym_QMARK] = ACTIONS(403), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(405), + [anon_sym_SLASH] = ACTIONS(405), + [anon_sym_PERCENT] = ACTIONS(405), + [anon_sym_CARET] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(423), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PIPE] = ACTIONS(405), + [anon_sym_AMP_AMP] = ACTIONS(403), + [anon_sym_PIPE_PIPE] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(405), + [anon_sym_GT_GT] = ACTIONS(405), + [anon_sym_PLUS_EQ] = ACTIONS(403), + [anon_sym_DASH_EQ] = ACTIONS(403), + [anon_sym_STAR_EQ] = ACTIONS(403), + [anon_sym_SLASH_EQ] = ACTIONS(403), + [anon_sym_PERCENT_EQ] = ACTIONS(403), + [anon_sym_CARET_EQ] = ACTIONS(403), + [anon_sym_AMP_EQ] = ACTIONS(403), + [anon_sym_PIPE_EQ] = ACTIONS(403), + [anon_sym_LT_LT_EQ] = ACTIONS(403), + [anon_sym_GT_GT_EQ] = ACTIONS(403), + [anon_sym_EQ] = ACTIONS(405), + [anon_sym_EQ_EQ] = ACTIONS(403), + [anon_sym_BANG_EQ] = ACTIONS(403), + [anon_sym_GT] = ACTIONS(405), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(403), + [anon_sym_LT_EQ] = ACTIONS(403), + [anon_sym_DOT] = ACTIONS(405), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DOT_DOT_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT_EQ] = ACTIONS(403), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(395), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [anon_sym_as] = ACTIONS(405), + [anon_sym_async] = ACTIONS(427), + [anon_sym_break] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_default] = ACTIONS(435), + [anon_sym_for] = ACTIONS(437), + [anon_sym_gen] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_loop] = ACTIONS(443), + [anon_sym_match] = ACTIONS(445), + [anon_sym_return] = ACTIONS(447), + [anon_sym_static] = ACTIONS(449), + [anon_sym_union] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(451), + [anon_sym_while] = ACTIONS(453), + [anon_sym_yield] = ACTIONS(455), + [anon_sym_move] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [aux_sym_string_literal_token1] = ACTIONS(463), + [sym_char_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(467), + [sym_super] = ACTIONS(469), + [sym_crate] = ACTIONS(469), + [sym_metavariable] = ACTIONS(471), + [sym__raw_string_literal_start] = ACTIONS(473), + [sym_float_literal] = ACTIONS(461), }, [STATE(49)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1743), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(298), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1757), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(49), [sym_block_comment] = STATE(49), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(393), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(395), - [anon_sym_QMARK] = ACTIONS(393), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_SLASH] = ACTIONS(395), - [anon_sym_PERCENT] = ACTIONS(395), - [anon_sym_CARET] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(395), - [anon_sym_GT_GT] = ACTIONS(395), - [anon_sym_PLUS_EQ] = ACTIONS(393), - [anon_sym_DASH_EQ] = ACTIONS(393), - [anon_sym_STAR_EQ] = ACTIONS(393), - [anon_sym_SLASH_EQ] = ACTIONS(393), - [anon_sym_PERCENT_EQ] = ACTIONS(393), - [anon_sym_CARET_EQ] = ACTIONS(393), - [anon_sym_AMP_EQ] = ACTIONS(393), - [anon_sym_PIPE_EQ] = ACTIONS(393), - [anon_sym_LT_LT_EQ] = ACTIONS(393), - [anon_sym_GT_GT_EQ] = ACTIONS(393), - [anon_sym_EQ] = ACTIONS(395), - [anon_sym_EQ_EQ] = ACTIONS(393), - [anon_sym_BANG_EQ] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_GT_EQ] = ACTIONS(393), - [anon_sym_LT_EQ] = ACTIONS(393), - [anon_sym_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_EQ] = ACTIONS(393), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(395), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(50)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1836), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), - [sym_line_comment] = STATE(50), - [sym_block_comment] = STATE(50), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(397), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(399), - [anon_sym_PERCENT] = ACTIONS(399), - [anon_sym_CARET] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_AMP_AMP] = ACTIONS(397), - [anon_sym_PIPE_PIPE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(399), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_PLUS_EQ] = ACTIONS(397), - [anon_sym_DASH_EQ] = ACTIONS(397), - [anon_sym_STAR_EQ] = ACTIONS(397), - [anon_sym_SLASH_EQ] = ACTIONS(397), - [anon_sym_PERCENT_EQ] = ACTIONS(397), - [anon_sym_CARET_EQ] = ACTIONS(397), - [anon_sym_AMP_EQ] = ACTIONS(397), - [anon_sym_PIPE_EQ] = ACTIONS(397), - [anon_sym_LT_LT_EQ] = ACTIONS(397), - [anon_sym_GT_GT_EQ] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(399), - [anon_sym_EQ_EQ] = ACTIONS(397), - [anon_sym_BANG_EQ] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(399), - [anon_sym_GT_EQ] = ACTIONS(397), - [anon_sym_LT_EQ] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(397), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(399), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(51)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1711), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(51), - [sym_block_comment] = STATE(51), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(341), - [anon_sym_COLON] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(347), - [anon_sym_QMARK] = ACTIONS(341), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_SLASH] = ACTIONS(347), - [anon_sym_PERCENT] = ACTIONS(347), - [anon_sym_CARET] = ACTIONS(347), - [anon_sym_BANG] = ACTIONS(479), - [anon_sym_AMP] = ACTIONS(347), - [anon_sym_PIPE] = ACTIONS(347), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_LT_LT] = ACTIONS(347), - [anon_sym_GT_GT] = ACTIONS(347), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_SLASH_EQ] = ACTIONS(341), - [anon_sym_PERCENT_EQ] = ACTIONS(341), - [anon_sym_CARET_EQ] = ACTIONS(341), - [anon_sym_AMP_EQ] = ACTIONS(341), - [anon_sym_PIPE_EQ] = ACTIONS(341), - [anon_sym_LT_LT_EQ] = ACTIONS(341), - [anon_sym_GT_GT_EQ] = ACTIONS(341), - [anon_sym_EQ] = ACTIONS(347), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_GT] = ACTIONS(347), - [anon_sym_LT] = ACTIONS(347), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_DOT] = ACTIONS(347), - [anon_sym_DOT_DOT] = ACTIONS(347), - [anon_sym_DOT_DOT_DOT] = ACTIONS(341), - [anon_sym_DOT_DOT_EQ] = ACTIONS(341), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_as] = ACTIONS(347), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(363), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(363), + [anon_sym_COLON] = ACTIONS(365), + [anon_sym_PLUS] = ACTIONS(367), + [anon_sym_STAR] = ACTIONS(367), + [anon_sym_QMARK] = ACTIONS(363), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(367), + [anon_sym_SLASH] = ACTIONS(367), + [anon_sym_PERCENT] = ACTIONS(367), + [anon_sym_CARET] = ACTIONS(367), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(367), + [anon_sym_PIPE] = ACTIONS(367), + [anon_sym_AMP_AMP] = ACTIONS(363), + [anon_sym_PIPE_PIPE] = ACTIONS(363), + [anon_sym_LT_LT] = ACTIONS(367), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_PLUS_EQ] = ACTIONS(363), + [anon_sym_DASH_EQ] = ACTIONS(363), + [anon_sym_STAR_EQ] = ACTIONS(363), + [anon_sym_SLASH_EQ] = ACTIONS(363), + [anon_sym_PERCENT_EQ] = ACTIONS(363), + [anon_sym_CARET_EQ] = ACTIONS(363), + [anon_sym_AMP_EQ] = ACTIONS(363), + [anon_sym_PIPE_EQ] = ACTIONS(363), + [anon_sym_LT_LT_EQ] = ACTIONS(363), + [anon_sym_GT_GT_EQ] = ACTIONS(363), + [anon_sym_EQ] = ACTIONS(367), + [anon_sym_EQ_EQ] = ACTIONS(363), + [anon_sym_BANG_EQ] = ACTIONS(363), + [anon_sym_GT] = ACTIONS(367), + [anon_sym_LT] = ACTIONS(367), + [anon_sym_GT_EQ] = ACTIONS(363), + [anon_sym_LT_EQ] = ACTIONS(363), + [anon_sym_DOT] = ACTIONS(367), + [anon_sym_DOT_DOT] = ACTIONS(367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(363), + [anon_sym_DOT_DOT_EQ] = ACTIONS(363), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_as] = ACTIONS(367), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -22152,141 +22504,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(52)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1767), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(52), - [sym_block_comment] = STATE(52), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(341), - [anon_sym_COLON] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(347), - [anon_sym_QMARK] = ACTIONS(341), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_SLASH] = ACTIONS(347), - [anon_sym_PERCENT] = ACTIONS(347), - [anon_sym_CARET] = ACTIONS(347), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(347), - [anon_sym_PIPE] = ACTIONS(347), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_LT_LT] = ACTIONS(347), - [anon_sym_GT_GT] = ACTIONS(347), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_SLASH_EQ] = ACTIONS(341), - [anon_sym_PERCENT_EQ] = ACTIONS(341), - [anon_sym_CARET_EQ] = ACTIONS(341), - [anon_sym_AMP_EQ] = ACTIONS(341), - [anon_sym_PIPE_EQ] = ACTIONS(341), - [anon_sym_LT_LT_EQ] = ACTIONS(341), - [anon_sym_GT_GT_EQ] = ACTIONS(341), - [anon_sym_EQ] = ACTIONS(347), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_GT] = ACTIONS(347), - [anon_sym_LT] = ACTIONS(347), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_DOT] = ACTIONS(347), - [anon_sym_DOT_DOT] = ACTIONS(347), - [anon_sym_DOT_DOT_DOT] = ACTIONS(341), - [anon_sym_DOT_DOT_EQ] = ACTIONS(341), - [anon_sym_COLON_COLON] = ACTIONS(481), + [STATE(50)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(301), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1950), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(178), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(50), + [sym_block_comment] = STATE(50), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(363), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(363), + [anon_sym_COLON] = ACTIONS(365), + [anon_sym_PLUS] = ACTIONS(367), + [anon_sym_STAR] = ACTIONS(367), + [anon_sym_QMARK] = ACTIONS(363), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(367), + [anon_sym_SLASH] = ACTIONS(367), + [anon_sym_PERCENT] = ACTIONS(367), + [anon_sym_CARET] = ACTIONS(367), + [anon_sym_BANG] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(367), + [anon_sym_PIPE] = ACTIONS(367), + [anon_sym_AMP_AMP] = ACTIONS(363), + [anon_sym_PIPE_PIPE] = ACTIONS(363), + [anon_sym_LT_LT] = ACTIONS(367), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_PLUS_EQ] = ACTIONS(363), + [anon_sym_DASH_EQ] = ACTIONS(363), + [anon_sym_STAR_EQ] = ACTIONS(363), + [anon_sym_SLASH_EQ] = ACTIONS(363), + [anon_sym_PERCENT_EQ] = ACTIONS(363), + [anon_sym_CARET_EQ] = ACTIONS(363), + [anon_sym_AMP_EQ] = ACTIONS(363), + [anon_sym_PIPE_EQ] = ACTIONS(363), + [anon_sym_LT_LT_EQ] = ACTIONS(363), + [anon_sym_GT_GT_EQ] = ACTIONS(363), + [anon_sym_EQ] = ACTIONS(367), + [anon_sym_EQ_EQ] = ACTIONS(363), + [anon_sym_BANG_EQ] = ACTIONS(363), + [anon_sym_GT] = ACTIONS(367), + [anon_sym_LT] = ACTIONS(367), + [anon_sym_GT_EQ] = ACTIONS(363), + [anon_sym_LT_EQ] = ACTIONS(363), + [anon_sym_DOT] = ACTIONS(367), + [anon_sym_DOT_DOT] = ACTIONS(367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(363), + [anon_sym_DOT_DOT_EQ] = ACTIONS(363), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(347), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), + [anon_sym_as] = ACTIONS(367), + [anon_sym_async] = ACTIONS(511), + [anon_sym_break] = ACTIONS(513), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(515), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(517), + [anon_sym_static] = ACTIONS(519), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(521), + [anon_sym_move] = ACTIONS(523), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -22294,563 +22652,886 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, + [STATE(51)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(305), + [sym_bracketed_type] = STATE(3726), + [sym_generic_function] = STATE(1934), + [sym_generic_type_with_turbofish] = STATE(3067), + [sym__expression_except_range] = STATE(1755), + [sym__expression] = STATE(1868), + [sym_expression_with_attribute] = STATE(1958), + [sym__expression_without_attribute] = STATE(1958), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(1673), + [sym_scoped_type_identifier_in_expression_position] = STATE(3301), + [sym_range_expression] = STATE(1801), + [sym_unary_expression] = STATE(1934), + [sym_try_expression] = STATE(1934), + [sym_reference_expression] = STATE(1934), + [sym_binary_expression] = STATE(1934), + [sym_assignment_expression] = STATE(1934), + [sym_compound_assignment_expr] = STATE(1934), + [sym_type_cast_expression] = STATE(1934), + [sym_return_expression] = STATE(1934), + [sym_yield_expression] = STATE(1934), + [sym_call_expression] = STATE(1934), + [sym_array_expression] = STATE(1934), + [sym_parenthesized_expression] = STATE(1934), + [sym_tuple_expression] = STATE(1934), + [sym_unit_expression] = STATE(1934), + [sym_struct_expression] = STATE(1934), + [sym_if_expression] = STATE(1934), + [sym_match_expression] = STATE(1934), + [sym_while_expression] = STATE(1934), + [sym_loop_expression] = STATE(1934), + [sym_for_expression] = STATE(1934), + [sym_const_block] = STATE(1934), + [sym_closure_expression] = STATE(1934), + [sym_closure_parameters] = STATE(154), + [sym_label] = STATE(46), + [sym_break_expression] = STATE(1934), + [sym_continue_expression] = STATE(1934), + [sym_index_expression] = STATE(1934), + [sym_await_expression] = STATE(1934), + [sym_field_expression] = STATE(1707), + [sym_unsafe_block] = STATE(1934), + [sym_async_block] = STATE(1934), + [sym_gen_block] = STATE(1934), + [sym_try_block] = STATE(1934), + [sym_block] = STATE(1934), + [sym__literal] = STATE(1934), + [sym_string_literal] = STATE(1949), + [sym_raw_string_literal] = STATE(1949), + [sym_boolean_literal] = STATE(1949), + [sym_line_comment] = STATE(51), + [sym_block_comment] = STATE(51), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_EQ_GT] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_QMARK] = ACTIONS(385), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_CARET] = ACTIONS(387), + [anon_sym_BANG] = ACTIONS(423), + [anon_sym_AMP] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(385), + [anon_sym_PIPE_PIPE] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_GT_GT] = ACTIONS(387), + [anon_sym_PLUS_EQ] = ACTIONS(385), + [anon_sym_DASH_EQ] = ACTIONS(385), + [anon_sym_STAR_EQ] = ACTIONS(385), + [anon_sym_SLASH_EQ] = ACTIONS(385), + [anon_sym_PERCENT_EQ] = ACTIONS(385), + [anon_sym_CARET_EQ] = ACTIONS(385), + [anon_sym_AMP_EQ] = ACTIONS(385), + [anon_sym_PIPE_EQ] = ACTIONS(385), + [anon_sym_LT_LT_EQ] = ACTIONS(385), + [anon_sym_GT_GT_EQ] = ACTIONS(385), + [anon_sym_EQ] = ACTIONS(387), + [anon_sym_EQ_EQ] = ACTIONS(385), + [anon_sym_BANG_EQ] = ACTIONS(385), + [anon_sym_GT] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(525), + [anon_sym_as] = ACTIONS(387), + [anon_sym_async] = ACTIONS(427), + [anon_sym_break] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_default] = ACTIONS(435), + [anon_sym_for] = ACTIONS(437), + [anon_sym_gen] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_loop] = ACTIONS(443), + [anon_sym_match] = ACTIONS(445), + [anon_sym_return] = ACTIONS(447), + [anon_sym_static] = ACTIONS(449), + [anon_sym_union] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(451), + [anon_sym_while] = ACTIONS(453), + [anon_sym_yield] = ACTIONS(455), + [anon_sym_move] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [aux_sym_string_literal_token1] = ACTIONS(463), + [sym_char_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(467), + [sym_super] = ACTIONS(469), + [sym_crate] = ACTIONS(469), + [sym_metavariable] = ACTIONS(471), + [sym__raw_string_literal_start] = ACTIONS(473), + [sym_float_literal] = ACTIONS(461), + }, + [STATE(52)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(305), + [sym_bracketed_type] = STATE(3726), + [sym_generic_function] = STATE(1934), + [sym_generic_type_with_turbofish] = STATE(3067), + [sym__expression_except_range] = STATE(1755), + [sym__expression] = STATE(1946), + [sym_expression_with_attribute] = STATE(1958), + [sym__expression_without_attribute] = STATE(1958), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(1673), + [sym_scoped_type_identifier_in_expression_position] = STATE(3301), + [sym_range_expression] = STATE(1801), + [sym_unary_expression] = STATE(1934), + [sym_try_expression] = STATE(1934), + [sym_reference_expression] = STATE(1934), + [sym_binary_expression] = STATE(1934), + [sym_assignment_expression] = STATE(1934), + [sym_compound_assignment_expr] = STATE(1934), + [sym_type_cast_expression] = STATE(1934), + [sym_return_expression] = STATE(1934), + [sym_yield_expression] = STATE(1934), + [sym_call_expression] = STATE(1934), + [sym_array_expression] = STATE(1934), + [sym_parenthesized_expression] = STATE(1934), + [sym_tuple_expression] = STATE(1934), + [sym_unit_expression] = STATE(1934), + [sym_struct_expression] = STATE(1934), + [sym_if_expression] = STATE(1934), + [sym_match_expression] = STATE(1934), + [sym_while_expression] = STATE(1934), + [sym_loop_expression] = STATE(1934), + [sym_for_expression] = STATE(1934), + [sym_const_block] = STATE(1934), + [sym_closure_expression] = STATE(1934), + [sym_closure_parameters] = STATE(154), + [sym_label] = STATE(3832), + [sym_break_expression] = STATE(1934), + [sym_continue_expression] = STATE(1934), + [sym_index_expression] = STATE(1934), + [sym_await_expression] = STATE(1934), + [sym_field_expression] = STATE(1707), + [sym_unsafe_block] = STATE(1934), + [sym_async_block] = STATE(1934), + [sym_gen_block] = STATE(1934), + [sym_try_block] = STATE(1934), + [sym_block] = STATE(1934), + [sym__literal] = STATE(1934), + [sym_string_literal] = STATE(1949), + [sym_raw_string_literal] = STATE(1949), + [sym_boolean_literal] = STATE(1949), + [sym_line_comment] = STATE(52), + [sym_block_comment] = STATE(52), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_EQ_GT] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_STAR] = ACTIONS(423), + [anon_sym_QMARK] = ACTIONS(391), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(423), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(423), + [anon_sym_AMP] = ACTIONS(529), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_AMP_AMP] = ACTIONS(391), + [anon_sym_PIPE_PIPE] = ACTIONS(391), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(393), + [anon_sym_PLUS_EQ] = ACTIONS(391), + [anon_sym_DASH_EQ] = ACTIONS(391), + [anon_sym_STAR_EQ] = ACTIONS(391), + [anon_sym_SLASH_EQ] = ACTIONS(391), + [anon_sym_PERCENT_EQ] = ACTIONS(391), + [anon_sym_CARET_EQ] = ACTIONS(391), + [anon_sym_AMP_EQ] = ACTIONS(391), + [anon_sym_PIPE_EQ] = ACTIONS(391), + [anon_sym_LT_LT_EQ] = ACTIONS(391), + [anon_sym_GT_GT_EQ] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(393), + [anon_sym_EQ_EQ] = ACTIONS(391), + [anon_sym_BANG_EQ] = ACTIONS(391), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT_EQ] = ACTIONS(391), + [anon_sym_LT_EQ] = ACTIONS(391), + [anon_sym_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT] = ACTIONS(531), + [anon_sym_DOT_DOT_DOT] = ACTIONS(391), + [anon_sym_DOT_DOT_EQ] = ACTIONS(391), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(393), + [anon_sym_async] = ACTIONS(427), + [anon_sym_break] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_default] = ACTIONS(435), + [anon_sym_for] = ACTIONS(437), + [anon_sym_gen] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_loop] = ACTIONS(443), + [anon_sym_match] = ACTIONS(445), + [anon_sym_return] = ACTIONS(447), + [anon_sym_static] = ACTIONS(449), + [anon_sym_union] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(451), + [anon_sym_while] = ACTIONS(453), + [anon_sym_yield] = ACTIONS(455), + [anon_sym_move] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [aux_sym_string_literal_token1] = ACTIONS(463), + [sym_char_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(467), + [sym_super] = ACTIONS(469), + [sym_crate] = ACTIONS(469), + [sym_metavariable] = ACTIONS(471), + [sym__raw_string_literal_start] = ACTIONS(473), + [sym_float_literal] = ACTIONS(461), + }, [STATE(53)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1780), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(305), + [sym_bracketed_type] = STATE(3726), + [sym_generic_function] = STATE(1934), + [sym_generic_type_with_turbofish] = STATE(3067), + [sym__expression_except_range] = STATE(1755), + [sym__expression] = STATE(1956), + [sym_expression_with_attribute] = STATE(1958), + [sym__expression_without_attribute] = STATE(1958), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(1673), + [sym_scoped_type_identifier_in_expression_position] = STATE(3301), + [sym_range_expression] = STATE(1801), + [sym_unary_expression] = STATE(1934), + [sym_try_expression] = STATE(1934), + [sym_reference_expression] = STATE(1934), + [sym_binary_expression] = STATE(1934), + [sym_assignment_expression] = STATE(1934), + [sym_compound_assignment_expr] = STATE(1934), + [sym_type_cast_expression] = STATE(1934), + [sym_return_expression] = STATE(1934), + [sym_yield_expression] = STATE(1934), + [sym_call_expression] = STATE(1934), + [sym_array_expression] = STATE(1934), + [sym_parenthesized_expression] = STATE(1934), + [sym_tuple_expression] = STATE(1934), + [sym_unit_expression] = STATE(1934), + [sym_struct_expression] = STATE(1934), + [sym_if_expression] = STATE(1934), + [sym_match_expression] = STATE(1934), + [sym_while_expression] = STATE(1934), + [sym_loop_expression] = STATE(1934), + [sym_for_expression] = STATE(1934), + [sym_const_block] = STATE(1934), + [sym_closure_expression] = STATE(1934), + [sym_closure_parameters] = STATE(154), + [sym_label] = STATE(3832), + [sym_break_expression] = STATE(1934), + [sym_continue_expression] = STATE(1934), + [sym_index_expression] = STATE(1934), + [sym_await_expression] = STATE(1934), + [sym_field_expression] = STATE(1707), + [sym_unsafe_block] = STATE(1934), + [sym_async_block] = STATE(1934), + [sym_gen_block] = STATE(1934), + [sym_try_block] = STATE(1934), + [sym_block] = STATE(1934), + [sym__literal] = STATE(1934), + [sym_string_literal] = STATE(1949), + [sym_raw_string_literal] = STATE(1949), + [sym_boolean_literal] = STATE(1949), [sym_line_comment] = STATE(53), [sym_block_comment] = STATE(53), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(397), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(399), - [anon_sym_PERCENT] = ACTIONS(399), - [anon_sym_CARET] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_AMP_AMP] = ACTIONS(397), - [anon_sym_PIPE_PIPE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(399), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_PLUS_EQ] = ACTIONS(397), - [anon_sym_DASH_EQ] = ACTIONS(397), - [anon_sym_STAR_EQ] = ACTIONS(397), - [anon_sym_SLASH_EQ] = ACTIONS(397), - [anon_sym_PERCENT_EQ] = ACTIONS(397), - [anon_sym_CARET_EQ] = ACTIONS(397), - [anon_sym_AMP_EQ] = ACTIONS(397), - [anon_sym_PIPE_EQ] = ACTIONS(397), - [anon_sym_LT_LT_EQ] = ACTIONS(397), - [anon_sym_GT_GT_EQ] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(399), - [anon_sym_EQ_EQ] = ACTIONS(397), - [anon_sym_BANG_EQ] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(399), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_EQ_GT] = ACTIONS(411), + [anon_sym_PLUS] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(423), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(423), + [anon_sym_SLASH] = ACTIONS(413), + [anon_sym_PERCENT] = ACTIONS(413), + [anon_sym_CARET] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(423), + [anon_sym_AMP] = ACTIONS(529), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_AMP_AMP] = ACTIONS(411), + [anon_sym_PIPE_PIPE] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(413), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_PLUS_EQ] = ACTIONS(411), + [anon_sym_DASH_EQ] = ACTIONS(411), + [anon_sym_STAR_EQ] = ACTIONS(411), + [anon_sym_SLASH_EQ] = ACTIONS(411), + [anon_sym_PERCENT_EQ] = ACTIONS(411), + [anon_sym_CARET_EQ] = ACTIONS(411), + [anon_sym_AMP_EQ] = ACTIONS(411), + [anon_sym_PIPE_EQ] = ACTIONS(411), + [anon_sym_LT_LT_EQ] = ACTIONS(411), + [anon_sym_GT_GT_EQ] = ACTIONS(411), + [anon_sym_EQ] = ACTIONS(413), + [anon_sym_EQ_EQ] = ACTIONS(411), + [anon_sym_BANG_EQ] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(413), [anon_sym_LT] = ACTIONS(399), - [anon_sym_GT_EQ] = ACTIONS(397), - [anon_sym_LT_EQ] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(397), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_GT_EQ] = ACTIONS(411), + [anon_sym_LT_EQ] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(413), + [anon_sym_DOT_DOT] = ACTIONS(531), + [anon_sym_DOT_DOT_DOT] = ACTIONS(411), + [anon_sym_DOT_DOT_EQ] = ACTIONS(411), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(399), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_as] = ACTIONS(413), + [anon_sym_async] = ACTIONS(427), + [anon_sym_break] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_default] = ACTIONS(435), + [anon_sym_for] = ACTIONS(437), + [anon_sym_gen] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_loop] = ACTIONS(443), + [anon_sym_match] = ACTIONS(445), + [anon_sym_return] = ACTIONS(447), + [anon_sym_static] = ACTIONS(449), + [anon_sym_union] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(451), + [anon_sym_while] = ACTIONS(453), + [anon_sym_yield] = ACTIONS(455), + [anon_sym_move] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [aux_sym_string_literal_token1] = ACTIONS(463), + [sym_char_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(467), + [sym_super] = ACTIONS(469), + [sym_crate] = ACTIONS(469), + [sym_metavariable] = ACTIONS(471), + [sym__raw_string_literal_start] = ACTIONS(473), + [sym_float_literal] = ACTIONS(461), }, [STATE(54)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1891), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(303), + [sym_bracketed_type] = STATE(3726), + [sym_generic_function] = STATE(1934), + [sym_generic_type_with_turbofish] = STATE(3067), + [sym__expression_except_range] = STATE(1755), + [sym__expression] = STATE(1855), + [sym_expression_with_attribute] = STATE(1958), + [sym__expression_without_attribute] = STATE(1958), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(1673), + [sym_scoped_type_identifier_in_expression_position] = STATE(3301), + [sym_range_expression] = STATE(1801), + [sym_unary_expression] = STATE(1934), + [sym_try_expression] = STATE(1934), + [sym_reference_expression] = STATE(1934), + [sym_binary_expression] = STATE(1934), + [sym_assignment_expression] = STATE(1934), + [sym_compound_assignment_expr] = STATE(1934), + [sym_type_cast_expression] = STATE(1934), + [sym_return_expression] = STATE(1934), + [sym_yield_expression] = STATE(1934), + [sym_call_expression] = STATE(1934), + [sym_array_expression] = STATE(1934), + [sym_parenthesized_expression] = STATE(1934), + [sym_tuple_expression] = STATE(1934), + [sym_unit_expression] = STATE(1934), + [sym_struct_expression] = STATE(1934), + [sym_if_expression] = STATE(1934), + [sym_match_expression] = STATE(1934), + [sym_while_expression] = STATE(1934), + [sym_loop_expression] = STATE(1934), + [sym_for_expression] = STATE(1934), + [sym_const_block] = STATE(1934), + [sym_closure_expression] = STATE(1934), + [sym_closure_parameters] = STATE(154), + [sym_label] = STATE(3832), + [sym_break_expression] = STATE(1934), + [sym_continue_expression] = STATE(1934), + [sym_index_expression] = STATE(1934), + [sym_await_expression] = STATE(1934), + [sym_field_expression] = STATE(1707), + [sym_unsafe_block] = STATE(1934), + [sym_async_block] = STATE(1934), + [sym_gen_block] = STATE(1934), + [sym_try_block] = STATE(1934), + [sym_block] = STATE(1934), + [sym__literal] = STATE(1934), + [sym_string_literal] = STATE(1949), + [sym_raw_string_literal] = STATE(1949), + [sym_boolean_literal] = STATE(1949), [sym_line_comment] = STATE(54), [sym_block_comment] = STATE(54), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(395), - [anon_sym_QMARK] = ACTIONS(393), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_SLASH] = ACTIONS(395), - [anon_sym_PERCENT] = ACTIONS(395), - [anon_sym_CARET] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(395), - [anon_sym_GT_GT] = ACTIONS(395), - [anon_sym_PLUS_EQ] = ACTIONS(393), - [anon_sym_DASH_EQ] = ACTIONS(393), - [anon_sym_STAR_EQ] = ACTIONS(393), - [anon_sym_SLASH_EQ] = ACTIONS(393), - [anon_sym_PERCENT_EQ] = ACTIONS(393), - [anon_sym_CARET_EQ] = ACTIONS(393), - [anon_sym_AMP_EQ] = ACTIONS(393), - [anon_sym_PIPE_EQ] = ACTIONS(393), - [anon_sym_LT_LT_EQ] = ACTIONS(393), - [anon_sym_GT_GT_EQ] = ACTIONS(393), - [anon_sym_EQ] = ACTIONS(395), - [anon_sym_EQ_EQ] = ACTIONS(393), - [anon_sym_BANG_EQ] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_GT_EQ] = ACTIONS(393), - [anon_sym_LT_EQ] = ACTIONS(393), - [anon_sym_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_EQ] = ACTIONS(393), - [anon_sym_COLON_COLON] = ACTIONS(481), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_EQ_GT] = ACTIONS(407), + [anon_sym_PLUS] = ACTIONS(409), + [anon_sym_STAR] = ACTIONS(409), + [anon_sym_QMARK] = ACTIONS(407), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(409), + [anon_sym_SLASH] = ACTIONS(409), + [anon_sym_PERCENT] = ACTIONS(409), + [anon_sym_CARET] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(423), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_PIPE] = ACTIONS(409), + [anon_sym_AMP_AMP] = ACTIONS(407), + [anon_sym_PIPE_PIPE] = ACTIONS(407), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_GT_GT] = ACTIONS(409), + [anon_sym_PLUS_EQ] = ACTIONS(407), + [anon_sym_DASH_EQ] = ACTIONS(407), + [anon_sym_STAR_EQ] = ACTIONS(407), + [anon_sym_SLASH_EQ] = ACTIONS(407), + [anon_sym_PERCENT_EQ] = ACTIONS(407), + [anon_sym_CARET_EQ] = ACTIONS(407), + [anon_sym_AMP_EQ] = ACTIONS(407), + [anon_sym_PIPE_EQ] = ACTIONS(407), + [anon_sym_LT_LT_EQ] = ACTIONS(407), + [anon_sym_GT_GT_EQ] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(409), + [anon_sym_EQ_EQ] = ACTIONS(407), + [anon_sym_BANG_EQ] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_LT_EQ] = ACTIONS(407), + [anon_sym_DOT] = ACTIONS(409), + [anon_sym_DOT_DOT] = ACTIONS(409), + [anon_sym_DOT_DOT_DOT] = ACTIONS(407), + [anon_sym_DOT_DOT_EQ] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(395), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_as] = ACTIONS(409), + [anon_sym_async] = ACTIONS(427), + [anon_sym_break] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_default] = ACTIONS(435), + [anon_sym_for] = ACTIONS(437), + [anon_sym_gen] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_loop] = ACTIONS(443), + [anon_sym_match] = ACTIONS(445), + [anon_sym_return] = ACTIONS(447), + [anon_sym_static] = ACTIONS(449), + [anon_sym_union] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(451), + [anon_sym_while] = ACTIONS(453), + [anon_sym_yield] = ACTIONS(455), + [anon_sym_move] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [aux_sym_string_literal_token1] = ACTIONS(463), + [sym_char_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(467), + [sym_super] = ACTIONS(469), + [sym_crate] = ACTIONS(469), + [sym_metavariable] = ACTIONS(471), + [sym__raw_string_literal_start] = ACTIONS(473), + [sym_float_literal] = ACTIONS(461), }, [STATE(55)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1679), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(305), + [sym_bracketed_type] = STATE(3726), + [sym_generic_function] = STATE(1934), + [sym_generic_type_with_turbofish] = STATE(3067), + [sym__expression_except_range] = STATE(1755), + [sym__expression] = STATE(1855), + [sym_expression_with_attribute] = STATE(1958), + [sym__expression_without_attribute] = STATE(1958), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(1673), + [sym_scoped_type_identifier_in_expression_position] = STATE(3301), + [sym_range_expression] = STATE(1801), + [sym_unary_expression] = STATE(1934), + [sym_try_expression] = STATE(1934), + [sym_reference_expression] = STATE(1934), + [sym_binary_expression] = STATE(1934), + [sym_assignment_expression] = STATE(1934), + [sym_compound_assignment_expr] = STATE(1934), + [sym_type_cast_expression] = STATE(1934), + [sym_return_expression] = STATE(1934), + [sym_yield_expression] = STATE(1934), + [sym_call_expression] = STATE(1934), + [sym_array_expression] = STATE(1934), + [sym_parenthesized_expression] = STATE(1934), + [sym_tuple_expression] = STATE(1934), + [sym_unit_expression] = STATE(1934), + [sym_struct_expression] = STATE(1934), + [sym_if_expression] = STATE(1934), + [sym_match_expression] = STATE(1934), + [sym_while_expression] = STATE(1934), + [sym_loop_expression] = STATE(1934), + [sym_for_expression] = STATE(1934), + [sym_const_block] = STATE(1934), + [sym_closure_expression] = STATE(1934), + [sym_closure_parameters] = STATE(154), + [sym_label] = STATE(3832), + [sym_break_expression] = STATE(1934), + [sym_continue_expression] = STATE(1934), + [sym_index_expression] = STATE(1934), + [sym_await_expression] = STATE(1934), + [sym_field_expression] = STATE(1707), + [sym_unsafe_block] = STATE(1934), + [sym_async_block] = STATE(1934), + [sym_gen_block] = STATE(1934), + [sym_try_block] = STATE(1934), + [sym_block] = STATE(1934), + [sym__literal] = STATE(1934), + [sym_string_literal] = STATE(1949), + [sym_raw_string_literal] = STATE(1949), + [sym_boolean_literal] = STATE(1949), [sym_line_comment] = STATE(55), [sym_block_comment] = STATE(55), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(395), - [anon_sym_QMARK] = ACTIONS(393), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_SLASH] = ACTIONS(395), - [anon_sym_PERCENT] = ACTIONS(395), - [anon_sym_CARET] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(479), - [anon_sym_AMP] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(395), - [anon_sym_GT_GT] = ACTIONS(395), - [anon_sym_PLUS_EQ] = ACTIONS(393), - [anon_sym_DASH_EQ] = ACTIONS(393), - [anon_sym_STAR_EQ] = ACTIONS(393), - [anon_sym_SLASH_EQ] = ACTIONS(393), - [anon_sym_PERCENT_EQ] = ACTIONS(393), - [anon_sym_CARET_EQ] = ACTIONS(393), - [anon_sym_AMP_EQ] = ACTIONS(393), - [anon_sym_PIPE_EQ] = ACTIONS(393), - [anon_sym_LT_LT_EQ] = ACTIONS(393), - [anon_sym_GT_GT_EQ] = ACTIONS(393), - [anon_sym_EQ] = ACTIONS(395), - [anon_sym_EQ_EQ] = ACTIONS(393), - [anon_sym_BANG_EQ] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_GT_EQ] = ACTIONS(393), - [anon_sym_LT_EQ] = ACTIONS(393), - [anon_sym_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_EQ] = ACTIONS(393), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(395), - [anon_sym_as] = ACTIONS(395), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_EQ_GT] = ACTIONS(407), + [anon_sym_PLUS] = ACTIONS(409), + [anon_sym_STAR] = ACTIONS(409), + [anon_sym_QMARK] = ACTIONS(407), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(409), + [anon_sym_SLASH] = ACTIONS(409), + [anon_sym_PERCENT] = ACTIONS(409), + [anon_sym_CARET] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(423), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_PIPE] = ACTIONS(409), + [anon_sym_AMP_AMP] = ACTIONS(407), + [anon_sym_PIPE_PIPE] = ACTIONS(407), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_GT_GT] = ACTIONS(409), + [anon_sym_PLUS_EQ] = ACTIONS(407), + [anon_sym_DASH_EQ] = ACTIONS(407), + [anon_sym_STAR_EQ] = ACTIONS(407), + [anon_sym_SLASH_EQ] = ACTIONS(407), + [anon_sym_PERCENT_EQ] = ACTIONS(407), + [anon_sym_CARET_EQ] = ACTIONS(407), + [anon_sym_AMP_EQ] = ACTIONS(407), + [anon_sym_PIPE_EQ] = ACTIONS(407), + [anon_sym_LT_LT_EQ] = ACTIONS(407), + [anon_sym_GT_GT_EQ] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(409), + [anon_sym_EQ_EQ] = ACTIONS(407), + [anon_sym_BANG_EQ] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_LT_EQ] = ACTIONS(407), + [anon_sym_DOT] = ACTIONS(409), + [anon_sym_DOT_DOT] = ACTIONS(409), + [anon_sym_DOT_DOT_DOT] = ACTIONS(407), + [anon_sym_DOT_DOT_EQ] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(409), + [anon_sym_async] = ACTIONS(427), + [anon_sym_break] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_default] = ACTIONS(435), + [anon_sym_for] = ACTIONS(437), + [anon_sym_gen] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_loop] = ACTIONS(443), + [anon_sym_match] = ACTIONS(445), + [anon_sym_return] = ACTIONS(447), + [anon_sym_static] = ACTIONS(449), + [anon_sym_union] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(451), + [anon_sym_while] = ACTIONS(453), + [anon_sym_yield] = ACTIONS(455), + [anon_sym_move] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [aux_sym_string_literal_token1] = ACTIONS(463), + [sym_char_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(467), + [sym_super] = ACTIONS(469), + [sym_crate] = ACTIONS(469), + [sym_metavariable] = ACTIONS(471), + [sym__raw_string_literal_start] = ACTIONS(473), + [sym_float_literal] = ACTIONS(461), }, [STATE(56)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1891), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(267), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1700), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(56), [sym_block_comment] = STATE(56), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(395), - [anon_sym_QMARK] = ACTIONS(393), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_SLASH] = ACTIONS(395), - [anon_sym_PERCENT] = ACTIONS(395), - [anon_sym_CARET] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(395), - [anon_sym_GT_GT] = ACTIONS(395), - [anon_sym_PLUS_EQ] = ACTIONS(393), - [anon_sym_DASH_EQ] = ACTIONS(393), - [anon_sym_STAR_EQ] = ACTIONS(393), - [anon_sym_SLASH_EQ] = ACTIONS(393), - [anon_sym_PERCENT_EQ] = ACTIONS(393), - [anon_sym_CARET_EQ] = ACTIONS(393), - [anon_sym_AMP_EQ] = ACTIONS(393), - [anon_sym_PIPE_EQ] = ACTIONS(393), - [anon_sym_LT_LT_EQ] = ACTIONS(393), - [anon_sym_GT_GT_EQ] = ACTIONS(393), - [anon_sym_EQ] = ACTIONS(395), - [anon_sym_EQ_EQ] = ACTIONS(393), - [anon_sym_BANG_EQ] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_GT_EQ] = ACTIONS(393), - [anon_sym_LT_EQ] = ACTIONS(393), - [anon_sym_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_EQ] = ACTIONS(393), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(395), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_LBRACE] = ACTIONS(403), + [anon_sym_PLUS] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(405), + [anon_sym_QMARK] = ACTIONS(403), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(405), + [anon_sym_SLASH] = ACTIONS(405), + [anon_sym_PERCENT] = ACTIONS(405), + [anon_sym_CARET] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PIPE] = ACTIONS(405), + [anon_sym_AMP_AMP] = ACTIONS(403), + [anon_sym_PIPE_PIPE] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(405), + [anon_sym_GT_GT] = ACTIONS(405), + [anon_sym_PLUS_EQ] = ACTIONS(403), + [anon_sym_DASH_EQ] = ACTIONS(403), + [anon_sym_STAR_EQ] = ACTIONS(403), + [anon_sym_SLASH_EQ] = ACTIONS(403), + [anon_sym_PERCENT_EQ] = ACTIONS(403), + [anon_sym_CARET_EQ] = ACTIONS(403), + [anon_sym_AMP_EQ] = ACTIONS(403), + [anon_sym_PIPE_EQ] = ACTIONS(403), + [anon_sym_LT_LT_EQ] = ACTIONS(403), + [anon_sym_GT_GT_EQ] = ACTIONS(403), + [anon_sym_EQ] = ACTIONS(405), + [anon_sym_EQ_EQ] = ACTIONS(403), + [anon_sym_BANG_EQ] = ACTIONS(403), + [anon_sym_GT] = ACTIONS(405), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(403), + [anon_sym_LT_EQ] = ACTIONS(403), + [anon_sym_DOT] = ACTIONS(405), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DOT_DOT_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT_EQ] = ACTIONS(403), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(405), + [anon_sym_as] = ACTIONS(405), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -22858,140 +23539,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(57)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1780), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(283), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1785), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(178), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(57), [sym_block_comment] = STATE(57), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(397), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(399), - [anon_sym_PERCENT] = ACTIONS(399), - [anon_sym_CARET] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_AMP_AMP] = ACTIONS(397), - [anon_sym_PIPE_PIPE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(399), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_PLUS_EQ] = ACTIONS(397), - [anon_sym_DASH_EQ] = ACTIONS(397), - [anon_sym_STAR_EQ] = ACTIONS(397), - [anon_sym_SLASH_EQ] = ACTIONS(397), - [anon_sym_PERCENT_EQ] = ACTIONS(397), - [anon_sym_CARET_EQ] = ACTIONS(397), - [anon_sym_AMP_EQ] = ACTIONS(397), - [anon_sym_PIPE_EQ] = ACTIONS(397), - [anon_sym_LT_LT_EQ] = ACTIONS(397), - [anon_sym_GT_GT_EQ] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(399), - [anon_sym_EQ_EQ] = ACTIONS(397), - [anon_sym_BANG_EQ] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(399), - [anon_sym_GT_EQ] = ACTIONS(397), - [anon_sym_LT_EQ] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(397), - [anon_sym_COLON_COLON] = ACTIONS(481), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_LBRACE] = ACTIONS(403), + [anon_sym_PLUS] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(405), + [anon_sym_QMARK] = ACTIONS(403), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(405), + [anon_sym_SLASH] = ACTIONS(405), + [anon_sym_PERCENT] = ACTIONS(405), + [anon_sym_CARET] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PIPE] = ACTIONS(405), + [anon_sym_AMP_AMP] = ACTIONS(403), + [anon_sym_PIPE_PIPE] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(405), + [anon_sym_GT_GT] = ACTIONS(405), + [anon_sym_PLUS_EQ] = ACTIONS(403), + [anon_sym_DASH_EQ] = ACTIONS(403), + [anon_sym_STAR_EQ] = ACTIONS(403), + [anon_sym_SLASH_EQ] = ACTIONS(403), + [anon_sym_PERCENT_EQ] = ACTIONS(403), + [anon_sym_CARET_EQ] = ACTIONS(403), + [anon_sym_AMP_EQ] = ACTIONS(403), + [anon_sym_PIPE_EQ] = ACTIONS(403), + [anon_sym_LT_LT_EQ] = ACTIONS(403), + [anon_sym_GT_GT_EQ] = ACTIONS(403), + [anon_sym_EQ] = ACTIONS(405), + [anon_sym_EQ_EQ] = ACTIONS(403), + [anon_sym_BANG_EQ] = ACTIONS(403), + [anon_sym_GT] = ACTIONS(405), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(403), + [anon_sym_LT_EQ] = ACTIONS(403), + [anon_sym_DOT] = ACTIONS(405), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DOT_DOT_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT_EQ] = ACTIONS(403), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(399), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), + [anon_sym_as] = ACTIONS(405), + [anon_sym_async] = ACTIONS(511), + [anon_sym_break] = ACTIONS(513), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(515), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(517), + [anon_sym_static] = ACTIONS(519), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(521), + [anon_sym_move] = ACTIONS(523), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -22999,140 +23686,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(58)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1675), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(283), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1814), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(178), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(58), [sym_block_comment] = STATE(58), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(397), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(399), - [anon_sym_PERCENT] = ACTIONS(399), - [anon_sym_CARET] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(479), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_AMP_AMP] = ACTIONS(397), - [anon_sym_PIPE_PIPE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(399), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_PLUS_EQ] = ACTIONS(397), - [anon_sym_DASH_EQ] = ACTIONS(397), - [anon_sym_STAR_EQ] = ACTIONS(397), - [anon_sym_SLASH_EQ] = ACTIONS(397), - [anon_sym_PERCENT_EQ] = ACTIONS(397), - [anon_sym_CARET_EQ] = ACTIONS(397), - [anon_sym_AMP_EQ] = ACTIONS(397), - [anon_sym_PIPE_EQ] = ACTIONS(397), - [anon_sym_LT_LT_EQ] = ACTIONS(397), - [anon_sym_GT_GT_EQ] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(399), - [anon_sym_EQ_EQ] = ACTIONS(397), - [anon_sym_BANG_EQ] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(399), - [anon_sym_GT_EQ] = ACTIONS(397), - [anon_sym_LT_EQ] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(397), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(399), - [anon_sym_as] = ACTIONS(399), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_PLUS] = ACTIONS(409), + [anon_sym_STAR] = ACTIONS(409), + [anon_sym_QMARK] = ACTIONS(407), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(409), + [anon_sym_SLASH] = ACTIONS(409), + [anon_sym_PERCENT] = ACTIONS(409), + [anon_sym_CARET] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_PIPE] = ACTIONS(409), + [anon_sym_AMP_AMP] = ACTIONS(407), + [anon_sym_PIPE_PIPE] = ACTIONS(407), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_GT_GT] = ACTIONS(409), + [anon_sym_PLUS_EQ] = ACTIONS(407), + [anon_sym_DASH_EQ] = ACTIONS(407), + [anon_sym_STAR_EQ] = ACTIONS(407), + [anon_sym_SLASH_EQ] = ACTIONS(407), + [anon_sym_PERCENT_EQ] = ACTIONS(407), + [anon_sym_CARET_EQ] = ACTIONS(407), + [anon_sym_AMP_EQ] = ACTIONS(407), + [anon_sym_PIPE_EQ] = ACTIONS(407), + [anon_sym_LT_LT_EQ] = ACTIONS(407), + [anon_sym_GT_GT_EQ] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(409), + [anon_sym_EQ_EQ] = ACTIONS(407), + [anon_sym_BANG_EQ] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_LT_EQ] = ACTIONS(407), + [anon_sym_DOT] = ACTIONS(409), + [anon_sym_DOT_DOT] = ACTIONS(409), + [anon_sym_DOT_DOT_DOT] = ACTIONS(407), + [anon_sym_DOT_DOT_EQ] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(409), + [anon_sym_async] = ACTIONS(511), + [anon_sym_break] = ACTIONS(513), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(515), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(517), + [anon_sym_static] = ACTIONS(519), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(521), + [anon_sym_move] = ACTIONS(523), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -23140,140 +23833,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(59)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1675), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(267), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1710), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(59), [sym_block_comment] = STATE(59), - [sym_identifier] = ACTIONS(475), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(397), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(399), - [anon_sym_PERCENT] = ACTIONS(399), - [anon_sym_CARET] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(479), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_AMP_AMP] = ACTIONS(397), - [anon_sym_PIPE_PIPE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(399), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_PLUS_EQ] = ACTIONS(397), - [anon_sym_DASH_EQ] = ACTIONS(397), - [anon_sym_STAR_EQ] = ACTIONS(397), - [anon_sym_SLASH_EQ] = ACTIONS(397), - [anon_sym_PERCENT_EQ] = ACTIONS(397), - [anon_sym_CARET_EQ] = ACTIONS(397), - [anon_sym_AMP_EQ] = ACTIONS(397), - [anon_sym_PIPE_EQ] = ACTIONS(397), - [anon_sym_LT_LT_EQ] = ACTIONS(397), - [anon_sym_GT_GT_EQ] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(399), - [anon_sym_EQ_EQ] = ACTIONS(397), - [anon_sym_BANG_EQ] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(399), - [anon_sym_GT_EQ] = ACTIONS(397), - [anon_sym_LT_EQ] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(397), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(399), - [anon_sym_as] = ACTIONS(399), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_PLUS] = ACTIONS(409), + [anon_sym_STAR] = ACTIONS(409), + [anon_sym_QMARK] = ACTIONS(407), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(409), + [anon_sym_SLASH] = ACTIONS(409), + [anon_sym_PERCENT] = ACTIONS(409), + [anon_sym_CARET] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_PIPE] = ACTIONS(409), + [anon_sym_AMP_AMP] = ACTIONS(407), + [anon_sym_PIPE_PIPE] = ACTIONS(407), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_GT_GT] = ACTIONS(409), + [anon_sym_PLUS_EQ] = ACTIONS(407), + [anon_sym_DASH_EQ] = ACTIONS(407), + [anon_sym_STAR_EQ] = ACTIONS(407), + [anon_sym_SLASH_EQ] = ACTIONS(407), + [anon_sym_PERCENT_EQ] = ACTIONS(407), + [anon_sym_CARET_EQ] = ACTIONS(407), + [anon_sym_AMP_EQ] = ACTIONS(407), + [anon_sym_PIPE_EQ] = ACTIONS(407), + [anon_sym_LT_LT_EQ] = ACTIONS(407), + [anon_sym_GT_GT_EQ] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(409), + [anon_sym_EQ_EQ] = ACTIONS(407), + [anon_sym_BANG_EQ] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_LT_EQ] = ACTIONS(407), + [anon_sym_DOT] = ACTIONS(409), + [anon_sym_DOT_DOT] = ACTIONS(409), + [anon_sym_DOT_DOT_DOT] = ACTIONS(407), + [anon_sym_DOT_DOT_EQ] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(409), + [anon_sym_as] = ACTIONS(409), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -23281,140 +23980,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(60)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1680), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(51), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(301), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1815), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(178), + [sym_label] = STATE(50), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(60), [sym_block_comment] = STATE(60), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(375), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(375), - [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_QMARK] = ACTIONS(375), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(377), - [anon_sym_SLASH] = ACTIONS(377), - [anon_sym_PERCENT] = ACTIONS(377), - [anon_sym_CARET] = ACTIONS(377), - [anon_sym_BANG] = ACTIONS(479), - [anon_sym_AMP] = ACTIONS(377), - [anon_sym_PIPE] = ACTIONS(377), - [anon_sym_AMP_AMP] = ACTIONS(375), - [anon_sym_PIPE_PIPE] = ACTIONS(375), - [anon_sym_LT_LT] = ACTIONS(377), - [anon_sym_GT_GT] = ACTIONS(377), - [anon_sym_PLUS_EQ] = ACTIONS(375), - [anon_sym_DASH_EQ] = ACTIONS(375), - [anon_sym_STAR_EQ] = ACTIONS(375), - [anon_sym_SLASH_EQ] = ACTIONS(375), - [anon_sym_PERCENT_EQ] = ACTIONS(375), - [anon_sym_CARET_EQ] = ACTIONS(375), - [anon_sym_AMP_EQ] = ACTIONS(375), - [anon_sym_PIPE_EQ] = ACTIONS(375), - [anon_sym_LT_LT_EQ] = ACTIONS(375), - [anon_sym_GT_GT_EQ] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(377), - [anon_sym_EQ_EQ] = ACTIONS(375), - [anon_sym_BANG_EQ] = ACTIONS(375), - [anon_sym_GT] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(377), - [anon_sym_GT_EQ] = ACTIONS(375), - [anon_sym_LT_EQ] = ACTIONS(375), - [anon_sym_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT_DOT] = ACTIONS(375), - [anon_sym_DOT_DOT_EQ] = ACTIONS(375), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(377), - [anon_sym_as] = ACTIONS(377), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_QMARK] = ACTIONS(385), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_CARET] = ACTIONS(387), + [anon_sym_BANG] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(385), + [anon_sym_PIPE_PIPE] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_GT_GT] = ACTIONS(387), + [anon_sym_PLUS_EQ] = ACTIONS(385), + [anon_sym_DASH_EQ] = ACTIONS(385), + [anon_sym_STAR_EQ] = ACTIONS(385), + [anon_sym_SLASH_EQ] = ACTIONS(385), + [anon_sym_PERCENT_EQ] = ACTIONS(385), + [anon_sym_CARET_EQ] = ACTIONS(385), + [anon_sym_AMP_EQ] = ACTIONS(385), + [anon_sym_PIPE_EQ] = ACTIONS(385), + [anon_sym_LT_LT_EQ] = ACTIONS(385), + [anon_sym_GT_GT_EQ] = ACTIONS(385), + [anon_sym_EQ] = ACTIONS(387), + [anon_sym_EQ_EQ] = ACTIONS(385), + [anon_sym_BANG_EQ] = ACTIONS(385), + [anon_sym_GT] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_as] = ACTIONS(387), + [anon_sym_async] = ACTIONS(511), + [anon_sym_break] = ACTIONS(513), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(515), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(517), + [anon_sym_static] = ACTIONS(519), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(521), + [anon_sym_move] = ACTIONS(523), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -23422,140 +24127,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(61)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1714), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(301), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1817), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(178), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(61), [sym_block_comment] = STATE(61), - [sym_identifier] = ACTIONS(475), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(479), - [anon_sym_QMARK] = ACTIONS(401), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(403), - [anon_sym_PERCENT] = ACTIONS(403), - [anon_sym_CARET] = ACTIONS(403), - [anon_sym_BANG] = ACTIONS(479), - [anon_sym_AMP] = ACTIONS(523), - [anon_sym_PIPE] = ACTIONS(387), - [anon_sym_AMP_AMP] = ACTIONS(401), - [anon_sym_PIPE_PIPE] = ACTIONS(401), - [anon_sym_LT_LT] = ACTIONS(403), - [anon_sym_GT_GT] = ACTIONS(403), - [anon_sym_PLUS_EQ] = ACTIONS(401), - [anon_sym_DASH_EQ] = ACTIONS(401), - [anon_sym_STAR_EQ] = ACTIONS(401), - [anon_sym_SLASH_EQ] = ACTIONS(401), - [anon_sym_PERCENT_EQ] = ACTIONS(401), - [anon_sym_CARET_EQ] = ACTIONS(401), - [anon_sym_AMP_EQ] = ACTIONS(401), - [anon_sym_PIPE_EQ] = ACTIONS(401), - [anon_sym_LT_LT_EQ] = ACTIONS(401), - [anon_sym_GT_GT_EQ] = ACTIONS(401), - [anon_sym_EQ] = ACTIONS(403), - [anon_sym_EQ_EQ] = ACTIONS(401), - [anon_sym_BANG_EQ] = ACTIONS(401), - [anon_sym_GT] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(401), - [anon_sym_LT_EQ] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(525), - [anon_sym_DOT_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(401), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_STAR] = ACTIONS(509), + [anon_sym_QMARK] = ACTIONS(391), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(533), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_AMP_AMP] = ACTIONS(391), + [anon_sym_PIPE_PIPE] = ACTIONS(391), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(393), + [anon_sym_PLUS_EQ] = ACTIONS(391), + [anon_sym_DASH_EQ] = ACTIONS(391), + [anon_sym_STAR_EQ] = ACTIONS(391), + [anon_sym_SLASH_EQ] = ACTIONS(391), + [anon_sym_PERCENT_EQ] = ACTIONS(391), + [anon_sym_CARET_EQ] = ACTIONS(391), + [anon_sym_AMP_EQ] = ACTIONS(391), + [anon_sym_PIPE_EQ] = ACTIONS(391), + [anon_sym_LT_LT_EQ] = ACTIONS(391), + [anon_sym_GT_GT_EQ] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(393), + [anon_sym_EQ_EQ] = ACTIONS(391), + [anon_sym_BANG_EQ] = ACTIONS(391), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT_EQ] = ACTIONS(391), + [anon_sym_LT_EQ] = ACTIONS(391), + [anon_sym_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT] = ACTIONS(535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(391), + [anon_sym_DOT_DOT_EQ] = ACTIONS(391), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(403), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), + [anon_sym_as] = ACTIONS(393), + [anon_sym_async] = ACTIONS(511), + [anon_sym_break] = ACTIONS(513), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(515), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(517), + [anon_sym_static] = ACTIONS(519), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(521), + [anon_sym_move] = ACTIONS(523), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -23563,140 +24274,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(62)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1682), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(301), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1818), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(178), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(62), [sym_block_comment] = STATE(62), - [sym_identifier] = ACTIONS(475), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_STAR] = ACTIONS(479), - [anon_sym_QMARK] = ACTIONS(381), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_BANG] = ACTIONS(479), - [anon_sym_AMP] = ACTIONS(523), - [anon_sym_PIPE] = ACTIONS(387), - [anon_sym_AMP_AMP] = ACTIONS(381), - [anon_sym_PIPE_PIPE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS_EQ] = ACTIONS(381), - [anon_sym_DASH_EQ] = ACTIONS(381), - [anon_sym_STAR_EQ] = ACTIONS(381), - [anon_sym_SLASH_EQ] = ACTIONS(381), - [anon_sym_PERCENT_EQ] = ACTIONS(381), - [anon_sym_CARET_EQ] = ACTIONS(381), - [anon_sym_AMP_EQ] = ACTIONS(381), - [anon_sym_PIPE_EQ] = ACTIONS(381), - [anon_sym_LT_LT_EQ] = ACTIONS(381), - [anon_sym_GT_GT_EQ] = ACTIONS(381), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(381), - [anon_sym_BANG_EQ] = ACTIONS(381), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(381), - [anon_sym_LT_EQ] = ACTIONS(381), - [anon_sym_DOT] = ACTIONS(383), - [anon_sym_DOT_DOT] = ACTIONS(525), - [anon_sym_DOT_DOT_DOT] = ACTIONS(381), - [anon_sym_DOT_DOT_EQ] = ACTIONS(381), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_PLUS] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(509), + [anon_sym_QMARK] = ACTIONS(411), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(413), + [anon_sym_PERCENT] = ACTIONS(413), + [anon_sym_CARET] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(533), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_AMP_AMP] = ACTIONS(411), + [anon_sym_PIPE_PIPE] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(413), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_PLUS_EQ] = ACTIONS(411), + [anon_sym_DASH_EQ] = ACTIONS(411), + [anon_sym_STAR_EQ] = ACTIONS(411), + [anon_sym_SLASH_EQ] = ACTIONS(411), + [anon_sym_PERCENT_EQ] = ACTIONS(411), + [anon_sym_CARET_EQ] = ACTIONS(411), + [anon_sym_AMP_EQ] = ACTIONS(411), + [anon_sym_PIPE_EQ] = ACTIONS(411), + [anon_sym_LT_LT_EQ] = ACTIONS(411), + [anon_sym_GT_GT_EQ] = ACTIONS(411), + [anon_sym_EQ] = ACTIONS(413), + [anon_sym_EQ_EQ] = ACTIONS(411), + [anon_sym_BANG_EQ] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT_EQ] = ACTIONS(411), + [anon_sym_LT_EQ] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(413), + [anon_sym_DOT_DOT] = ACTIONS(535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(411), + [anon_sym_DOT_DOT_EQ] = ACTIONS(411), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(383), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), + [anon_sym_as] = ACTIONS(413), + [anon_sym_async] = ACTIONS(511), + [anon_sym_break] = ACTIONS(513), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(515), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(517), + [anon_sym_static] = ACTIONS(519), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(521), + [anon_sym_move] = ACTIONS(523), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -23704,140 +24421,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(63)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1892), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(52), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(298), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1710), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(63), [sym_block_comment] = STATE(63), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(375), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(375), - [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_QMARK] = ACTIONS(375), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(377), - [anon_sym_SLASH] = ACTIONS(377), - [anon_sym_PERCENT] = ACTIONS(377), - [anon_sym_CARET] = ACTIONS(377), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(377), - [anon_sym_PIPE] = ACTIONS(377), - [anon_sym_AMP_AMP] = ACTIONS(375), - [anon_sym_PIPE_PIPE] = ACTIONS(375), - [anon_sym_LT_LT] = ACTIONS(377), - [anon_sym_GT_GT] = ACTIONS(377), - [anon_sym_PLUS_EQ] = ACTIONS(375), - [anon_sym_DASH_EQ] = ACTIONS(375), - [anon_sym_STAR_EQ] = ACTIONS(375), - [anon_sym_SLASH_EQ] = ACTIONS(375), - [anon_sym_PERCENT_EQ] = ACTIONS(375), - [anon_sym_CARET_EQ] = ACTIONS(375), - [anon_sym_AMP_EQ] = ACTIONS(375), - [anon_sym_PIPE_EQ] = ACTIONS(375), - [anon_sym_LT_LT_EQ] = ACTIONS(375), - [anon_sym_GT_GT_EQ] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(377), - [anon_sym_EQ_EQ] = ACTIONS(375), - [anon_sym_BANG_EQ] = ACTIONS(375), - [anon_sym_GT] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(377), - [anon_sym_GT_EQ] = ACTIONS(375), - [anon_sym_LT_EQ] = ACTIONS(375), - [anon_sym_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT_DOT] = ACTIONS(375), - [anon_sym_DOT_DOT_EQ] = ACTIONS(375), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(379), - [anon_sym_as] = ACTIONS(377), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_PLUS] = ACTIONS(409), + [anon_sym_STAR] = ACTIONS(409), + [anon_sym_QMARK] = ACTIONS(407), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(409), + [anon_sym_SLASH] = ACTIONS(409), + [anon_sym_PERCENT] = ACTIONS(409), + [anon_sym_CARET] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_PIPE] = ACTIONS(409), + [anon_sym_AMP_AMP] = ACTIONS(407), + [anon_sym_PIPE_PIPE] = ACTIONS(407), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_GT_GT] = ACTIONS(409), + [anon_sym_PLUS_EQ] = ACTIONS(407), + [anon_sym_DASH_EQ] = ACTIONS(407), + [anon_sym_STAR_EQ] = ACTIONS(407), + [anon_sym_SLASH_EQ] = ACTIONS(407), + [anon_sym_PERCENT_EQ] = ACTIONS(407), + [anon_sym_CARET_EQ] = ACTIONS(407), + [anon_sym_AMP_EQ] = ACTIONS(407), + [anon_sym_PIPE_EQ] = ACTIONS(407), + [anon_sym_LT_LT_EQ] = ACTIONS(407), + [anon_sym_GT_GT_EQ] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(409), + [anon_sym_EQ_EQ] = ACTIONS(407), + [anon_sym_BANG_EQ] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_LT_EQ] = ACTIONS(407), + [anon_sym_DOT] = ACTIONS(409), + [anon_sym_DOT_DOT] = ACTIONS(409), + [anon_sym_DOT_DOT_DOT] = ACTIONS(407), + [anon_sym_DOT_DOT_EQ] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(409), + [anon_sym_as] = ACTIONS(409), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -23845,140 +24568,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(64)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1679), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(298), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1700), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(64), [sym_block_comment] = STATE(64), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(395), - [anon_sym_QMARK] = ACTIONS(393), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_SLASH] = ACTIONS(395), - [anon_sym_PERCENT] = ACTIONS(395), - [anon_sym_CARET] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(479), - [anon_sym_AMP] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(395), - [anon_sym_GT_GT] = ACTIONS(395), - [anon_sym_PLUS_EQ] = ACTIONS(393), - [anon_sym_DASH_EQ] = ACTIONS(393), - [anon_sym_STAR_EQ] = ACTIONS(393), - [anon_sym_SLASH_EQ] = ACTIONS(393), - [anon_sym_PERCENT_EQ] = ACTIONS(393), - [anon_sym_CARET_EQ] = ACTIONS(393), - [anon_sym_AMP_EQ] = ACTIONS(393), - [anon_sym_PIPE_EQ] = ACTIONS(393), - [anon_sym_LT_LT_EQ] = ACTIONS(393), - [anon_sym_GT_GT_EQ] = ACTIONS(393), - [anon_sym_EQ] = ACTIONS(395), - [anon_sym_EQ_EQ] = ACTIONS(393), - [anon_sym_BANG_EQ] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_GT_EQ] = ACTIONS(393), - [anon_sym_LT_EQ] = ACTIONS(393), - [anon_sym_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_EQ] = ACTIONS(393), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(395), - [anon_sym_as] = ACTIONS(395), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_LBRACE] = ACTIONS(403), + [anon_sym_PLUS] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(405), + [anon_sym_QMARK] = ACTIONS(403), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(405), + [anon_sym_SLASH] = ACTIONS(405), + [anon_sym_PERCENT] = ACTIONS(405), + [anon_sym_CARET] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PIPE] = ACTIONS(405), + [anon_sym_AMP_AMP] = ACTIONS(403), + [anon_sym_PIPE_PIPE] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(405), + [anon_sym_GT_GT] = ACTIONS(405), + [anon_sym_PLUS_EQ] = ACTIONS(403), + [anon_sym_DASH_EQ] = ACTIONS(403), + [anon_sym_STAR_EQ] = ACTIONS(403), + [anon_sym_SLASH_EQ] = ACTIONS(403), + [anon_sym_PERCENT_EQ] = ACTIONS(403), + [anon_sym_CARET_EQ] = ACTIONS(403), + [anon_sym_AMP_EQ] = ACTIONS(403), + [anon_sym_PIPE_EQ] = ACTIONS(403), + [anon_sym_LT_LT_EQ] = ACTIONS(403), + [anon_sym_GT_GT_EQ] = ACTIONS(403), + [anon_sym_EQ] = ACTIONS(405), + [anon_sym_EQ_EQ] = ACTIONS(403), + [anon_sym_BANG_EQ] = ACTIONS(403), + [anon_sym_GT] = ACTIONS(405), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(403), + [anon_sym_LT_EQ] = ACTIONS(403), + [anon_sym_DOT] = ACTIONS(405), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DOT_DOT_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT_EQ] = ACTIONS(403), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(405), + [anon_sym_as] = ACTIONS(405), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -23986,140 +24715,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(65)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1894), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(301), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1814), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(178), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(65), [sym_block_comment] = STATE(65), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_QMARK] = ACTIONS(401), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(403), - [anon_sym_PERCENT] = ACTIONS(403), - [anon_sym_CARET] = ACTIONS(403), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(527), - [anon_sym_PIPE] = ACTIONS(387), - [anon_sym_AMP_AMP] = ACTIONS(401), - [anon_sym_PIPE_PIPE] = ACTIONS(401), - [anon_sym_LT_LT] = ACTIONS(403), - [anon_sym_GT_GT] = ACTIONS(403), - [anon_sym_PLUS_EQ] = ACTIONS(401), - [anon_sym_DASH_EQ] = ACTIONS(401), - [anon_sym_STAR_EQ] = ACTIONS(401), - [anon_sym_SLASH_EQ] = ACTIONS(401), - [anon_sym_PERCENT_EQ] = ACTIONS(401), - [anon_sym_CARET_EQ] = ACTIONS(401), - [anon_sym_AMP_EQ] = ACTIONS(401), - [anon_sym_PIPE_EQ] = ACTIONS(401), - [anon_sym_LT_LT_EQ] = ACTIONS(401), - [anon_sym_GT_GT_EQ] = ACTIONS(401), - [anon_sym_EQ] = ACTIONS(403), - [anon_sym_EQ_EQ] = ACTIONS(401), - [anon_sym_BANG_EQ] = ACTIONS(401), - [anon_sym_GT] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(401), - [anon_sym_LT_EQ] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(529), - [anon_sym_DOT_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(401), - [anon_sym_COLON_COLON] = ACTIONS(481), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_PLUS] = ACTIONS(409), + [anon_sym_STAR] = ACTIONS(409), + [anon_sym_QMARK] = ACTIONS(407), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(409), + [anon_sym_SLASH] = ACTIONS(409), + [anon_sym_PERCENT] = ACTIONS(409), + [anon_sym_CARET] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_PIPE] = ACTIONS(409), + [anon_sym_AMP_AMP] = ACTIONS(407), + [anon_sym_PIPE_PIPE] = ACTIONS(407), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_GT_GT] = ACTIONS(409), + [anon_sym_PLUS_EQ] = ACTIONS(407), + [anon_sym_DASH_EQ] = ACTIONS(407), + [anon_sym_STAR_EQ] = ACTIONS(407), + [anon_sym_SLASH_EQ] = ACTIONS(407), + [anon_sym_PERCENT_EQ] = ACTIONS(407), + [anon_sym_CARET_EQ] = ACTIONS(407), + [anon_sym_AMP_EQ] = ACTIONS(407), + [anon_sym_PIPE_EQ] = ACTIONS(407), + [anon_sym_LT_LT_EQ] = ACTIONS(407), + [anon_sym_GT_GT_EQ] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(409), + [anon_sym_EQ_EQ] = ACTIONS(407), + [anon_sym_BANG_EQ] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_LT_EQ] = ACTIONS(407), + [anon_sym_DOT] = ACTIONS(409), + [anon_sym_DOT_DOT] = ACTIONS(409), + [anon_sym_DOT_DOT_DOT] = ACTIONS(407), + [anon_sym_DOT_DOT_EQ] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(403), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), + [anon_sym_as] = ACTIONS(409), + [anon_sym_async] = ACTIONS(511), + [anon_sym_break] = ACTIONS(513), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(515), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(517), + [anon_sym_static] = ACTIONS(519), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(521), + [anon_sym_move] = ACTIONS(523), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -24127,140 +24862,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(66)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1895), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(301), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1785), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(178), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(66), [sym_block_comment] = STATE(66), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_QMARK] = ACTIONS(381), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(527), - [anon_sym_PIPE] = ACTIONS(387), - [anon_sym_AMP_AMP] = ACTIONS(381), - [anon_sym_PIPE_PIPE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS_EQ] = ACTIONS(381), - [anon_sym_DASH_EQ] = ACTIONS(381), - [anon_sym_STAR_EQ] = ACTIONS(381), - [anon_sym_SLASH_EQ] = ACTIONS(381), - [anon_sym_PERCENT_EQ] = ACTIONS(381), - [anon_sym_CARET_EQ] = ACTIONS(381), - [anon_sym_AMP_EQ] = ACTIONS(381), - [anon_sym_PIPE_EQ] = ACTIONS(381), - [anon_sym_LT_LT_EQ] = ACTIONS(381), - [anon_sym_GT_GT_EQ] = ACTIONS(381), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(381), - [anon_sym_BANG_EQ] = ACTIONS(381), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(381), - [anon_sym_LT_EQ] = ACTIONS(381), - [anon_sym_DOT] = ACTIONS(383), - [anon_sym_DOT_DOT] = ACTIONS(529), - [anon_sym_DOT_DOT_DOT] = ACTIONS(381), - [anon_sym_DOT_DOT_EQ] = ACTIONS(381), - [anon_sym_COLON_COLON] = ACTIONS(481), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_LBRACE] = ACTIONS(403), + [anon_sym_PLUS] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(405), + [anon_sym_QMARK] = ACTIONS(403), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(405), + [anon_sym_SLASH] = ACTIONS(405), + [anon_sym_PERCENT] = ACTIONS(405), + [anon_sym_CARET] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PIPE] = ACTIONS(405), + [anon_sym_AMP_AMP] = ACTIONS(403), + [anon_sym_PIPE_PIPE] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(405), + [anon_sym_GT_GT] = ACTIONS(405), + [anon_sym_PLUS_EQ] = ACTIONS(403), + [anon_sym_DASH_EQ] = ACTIONS(403), + [anon_sym_STAR_EQ] = ACTIONS(403), + [anon_sym_SLASH_EQ] = ACTIONS(403), + [anon_sym_PERCENT_EQ] = ACTIONS(403), + [anon_sym_CARET_EQ] = ACTIONS(403), + [anon_sym_AMP_EQ] = ACTIONS(403), + [anon_sym_PIPE_EQ] = ACTIONS(403), + [anon_sym_LT_LT_EQ] = ACTIONS(403), + [anon_sym_GT_GT_EQ] = ACTIONS(403), + [anon_sym_EQ] = ACTIONS(405), + [anon_sym_EQ_EQ] = ACTIONS(403), + [anon_sym_BANG_EQ] = ACTIONS(403), + [anon_sym_GT] = ACTIONS(405), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(403), + [anon_sym_LT_EQ] = ACTIONS(403), + [anon_sym_DOT] = ACTIONS(405), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DOT_DOT_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT_EQ] = ACTIONS(403), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(383), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), + [anon_sym_as] = ACTIONS(405), + [anon_sym_async] = ACTIONS(511), + [anon_sym_break] = ACTIONS(513), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(515), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(517), + [anon_sym_static] = ACTIONS(519), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(521), + [anon_sym_move] = ACTIONS(523), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -24268,8326 +25009,9260 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(67)] = { - [sym__token_pattern] = STATE(156), - [sym_token_tree_pattern] = STATE(154), - [sym_token_binding_pattern] = STATE(154), - [sym_token_repetition_pattern] = STATE(154), - [sym__literal] = STATE(154), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(298), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1711), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(49), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(67), [sym_block_comment] = STATE(67), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(531), - [anon_sym_SEMI] = ACTIONS(534), - [anon_sym_LPAREN] = ACTIONS(537), - [anon_sym_RPAREN] = ACTIONS(540), - [anon_sym_LBRACK] = ACTIONS(542), - [anon_sym_RBRACK] = ACTIONS(540), - [anon_sym_LBRACE] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(540), - [anon_sym_EQ_GT] = ACTIONS(534), - [anon_sym_COLON] = ACTIONS(548), - [anon_sym_DOLLAR] = ACTIONS(551), - [anon_sym_PLUS] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(548), - [anon_sym_QMARK] = ACTIONS(534), - [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_isize] = ACTIONS(531), - [anon_sym_usize] = ACTIONS(531), - [anon_sym_f32] = ACTIONS(531), - [anon_sym_f64] = ACTIONS(531), - [anon_sym_bool] = ACTIONS(531), - [anon_sym_str] = ACTIONS(531), - [anon_sym_char] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(548), - [anon_sym_PERCENT] = ACTIONS(548), - [anon_sym_CARET] = ACTIONS(548), - [anon_sym_BANG] = ACTIONS(548), - [anon_sym_AMP] = ACTIONS(548), - [anon_sym_PIPE] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(534), - [anon_sym_PIPE_PIPE] = ACTIONS(534), - [anon_sym_LT_LT] = ACTIONS(548), - [anon_sym_GT_GT] = ACTIONS(548), - [anon_sym_PLUS_EQ] = ACTIONS(534), - [anon_sym_DASH_EQ] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(534), - [anon_sym_SLASH_EQ] = ACTIONS(534), - [anon_sym_PERCENT_EQ] = ACTIONS(534), - [anon_sym_CARET_EQ] = ACTIONS(534), - [anon_sym_AMP_EQ] = ACTIONS(534), - [anon_sym_PIPE_EQ] = ACTIONS(534), - [anon_sym_LT_LT_EQ] = ACTIONS(534), - [anon_sym_GT_GT_EQ] = ACTIONS(534), - [anon_sym_EQ] = ACTIONS(548), - [anon_sym_EQ_EQ] = ACTIONS(534), - [anon_sym_BANG_EQ] = ACTIONS(534), - [anon_sym_GT] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_GT_EQ] = ACTIONS(534), - [anon_sym_LT_EQ] = ACTIONS(534), - [anon_sym_AT] = ACTIONS(534), - [anon_sym__] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(548), - [anon_sym_DOT_DOT] = ACTIONS(548), - [anon_sym_DOT_DOT_DOT] = ACTIONS(534), - [anon_sym_DOT_DOT_EQ] = ACTIONS(534), - [anon_sym_COMMA] = ACTIONS(534), - [anon_sym_COLON_COLON] = ACTIONS(534), - [anon_sym_DASH_GT] = ACTIONS(534), - [anon_sym_POUND] = ACTIONS(534), - [anon_sym_SQUOTE] = ACTIONS(531), - [anon_sym_as] = ACTIONS(531), - [anon_sym_async] = ACTIONS(531), - [anon_sym_await] = ACTIONS(531), - [anon_sym_break] = ACTIONS(531), - [anon_sym_const] = ACTIONS(531), - [anon_sym_continue] = ACTIONS(531), - [anon_sym_default] = ACTIONS(531), - [anon_sym_enum] = ACTIONS(531), - [anon_sym_fn] = ACTIONS(531), - [anon_sym_for] = ACTIONS(531), - [anon_sym_gen] = ACTIONS(531), - [anon_sym_if] = ACTIONS(531), - [anon_sym_impl] = ACTIONS(531), - [anon_sym_let] = ACTIONS(531), - [anon_sym_loop] = ACTIONS(531), - [anon_sym_match] = ACTIONS(531), - [anon_sym_mod] = ACTIONS(531), - [anon_sym_pub] = ACTIONS(531), - [anon_sym_return] = ACTIONS(531), - [anon_sym_static] = ACTIONS(531), - [anon_sym_struct] = ACTIONS(531), - [anon_sym_trait] = ACTIONS(531), - [anon_sym_type] = ACTIONS(531), - [anon_sym_union] = ACTIONS(531), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_use] = ACTIONS(531), - [anon_sym_where] = ACTIONS(531), - [anon_sym_while] = ACTIONS(531), - [sym_mutable_specifier] = ACTIONS(531), - [sym_integer_literal] = ACTIONS(554), - [aux_sym_string_literal_token1] = ACTIONS(557), - [sym_char_literal] = ACTIONS(554), - [anon_sym_true] = ACTIONS(560), - [anon_sym_false] = ACTIONS(560), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(531), - [sym_super] = ACTIONS(531), - [sym_crate] = ACTIONS(531), - [sym_metavariable] = ACTIONS(563), - [sym__raw_string_literal_start] = ACTIONS(566), - [sym_float_literal] = ACTIONS(554), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_QMARK] = ACTIONS(385), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_CARET] = ACTIONS(387), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(385), + [anon_sym_PIPE_PIPE] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_GT_GT] = ACTIONS(387), + [anon_sym_PLUS_EQ] = ACTIONS(385), + [anon_sym_DASH_EQ] = ACTIONS(385), + [anon_sym_STAR_EQ] = ACTIONS(385), + [anon_sym_SLASH_EQ] = ACTIONS(385), + [anon_sym_PERCENT_EQ] = ACTIONS(385), + [anon_sym_CARET_EQ] = ACTIONS(385), + [anon_sym_AMP_EQ] = ACTIONS(385), + [anon_sym_PIPE_EQ] = ACTIONS(385), + [anon_sym_LT_LT_EQ] = ACTIONS(385), + [anon_sym_GT_GT_EQ] = ACTIONS(385), + [anon_sym_EQ] = ACTIONS(387), + [anon_sym_EQ_EQ] = ACTIONS(385), + [anon_sym_BANG_EQ] = ACTIONS(385), + [anon_sym_GT] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(387), + [anon_sym_as] = ACTIONS(387), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [STATE(68)] = { - [sym_token_tree] = STATE(187), - [sym_token_repetition] = STATE(187), - [sym__literal] = STATE(187), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(298), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1712), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(68), [sym_block_comment] = STATE(68), - [aux_sym_token_tree_repeat1] = STATE(68), - [aux_sym__non_special_token_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(569), - [anon_sym_SEMI] = ACTIONS(572), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_RPAREN] = ACTIONS(578), - [anon_sym_LBRACK] = ACTIONS(580), - [anon_sym_RBRACK] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_RBRACE] = ACTIONS(578), - [anon_sym_EQ_GT] = ACTIONS(572), - [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(572), - [anon_sym_u8] = ACTIONS(569), - [anon_sym_i8] = ACTIONS(569), - [anon_sym_u16] = ACTIONS(569), - [anon_sym_i16] = ACTIONS(569), - [anon_sym_u32] = ACTIONS(569), - [anon_sym_i32] = ACTIONS(569), - [anon_sym_u64] = ACTIONS(569), - [anon_sym_i64] = ACTIONS(569), - [anon_sym_u128] = ACTIONS(569), - [anon_sym_i128] = ACTIONS(569), - [anon_sym_isize] = ACTIONS(569), - [anon_sym_usize] = ACTIONS(569), - [anon_sym_f32] = ACTIONS(569), - [anon_sym_f64] = ACTIONS(569), - [anon_sym_bool] = ACTIONS(569), - [anon_sym_str] = ACTIONS(569), - [anon_sym_char] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(572), - [anon_sym_PIPE_PIPE] = ACTIONS(572), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(572), - [anon_sym_DASH_EQ] = ACTIONS(572), - [anon_sym_STAR_EQ] = ACTIONS(572), - [anon_sym_SLASH_EQ] = ACTIONS(572), - [anon_sym_PERCENT_EQ] = ACTIONS(572), - [anon_sym_CARET_EQ] = ACTIONS(572), - [anon_sym_AMP_EQ] = ACTIONS(572), - [anon_sym_PIPE_EQ] = ACTIONS(572), - [anon_sym_LT_LT_EQ] = ACTIONS(572), - [anon_sym_GT_GT_EQ] = ACTIONS(572), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(572), - [anon_sym_BANG_EQ] = ACTIONS(572), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(572), - [anon_sym_LT_EQ] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(572), - [anon_sym__] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(572), - [anon_sym_DOT_DOT_EQ] = ACTIONS(572), - [anon_sym_COMMA] = ACTIONS(572), - [anon_sym_COLON_COLON] = ACTIONS(572), - [anon_sym_DASH_GT] = ACTIONS(572), - [anon_sym_POUND] = ACTIONS(572), - [anon_sym_SQUOTE] = ACTIONS(569), - [anon_sym_as] = ACTIONS(569), - [anon_sym_async] = ACTIONS(569), - [anon_sym_await] = ACTIONS(569), - [anon_sym_break] = ACTIONS(569), - [anon_sym_const] = ACTIONS(569), - [anon_sym_continue] = ACTIONS(569), - [anon_sym_default] = ACTIONS(569), - [anon_sym_enum] = ACTIONS(569), - [anon_sym_fn] = ACTIONS(569), - [anon_sym_for] = ACTIONS(569), - [anon_sym_gen] = ACTIONS(569), - [anon_sym_if] = ACTIONS(569), - [anon_sym_impl] = ACTIONS(569), - [anon_sym_let] = ACTIONS(569), - [anon_sym_loop] = ACTIONS(569), - [anon_sym_match] = ACTIONS(569), - [anon_sym_mod] = ACTIONS(569), - [anon_sym_pub] = ACTIONS(569), - [anon_sym_return] = ACTIONS(569), - [anon_sym_static] = ACTIONS(569), - [anon_sym_struct] = ACTIONS(569), - [anon_sym_trait] = ACTIONS(569), - [anon_sym_type] = ACTIONS(569), - [anon_sym_union] = ACTIONS(569), - [anon_sym_unsafe] = ACTIONS(569), - [anon_sym_use] = ACTIONS(569), - [anon_sym_where] = ACTIONS(569), - [anon_sym_while] = ACTIONS(569), - [sym_mutable_specifier] = ACTIONS(569), - [sym_integer_literal] = ACTIONS(592), - [aux_sym_string_literal_token1] = ACTIONS(595), - [sym_char_literal] = ACTIONS(592), - [anon_sym_true] = ACTIONS(598), - [anon_sym_false] = ACTIONS(598), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(569), - [sym_super] = ACTIONS(569), - [sym_crate] = ACTIONS(569), - [sym_metavariable] = ACTIONS(601), - [sym__raw_string_literal_start] = ACTIONS(604), - [sym_float_literal] = ACTIONS(592), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_QMARK] = ACTIONS(391), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(481), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(537), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_AMP_AMP] = ACTIONS(391), + [anon_sym_PIPE_PIPE] = ACTIONS(391), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(393), + [anon_sym_PLUS_EQ] = ACTIONS(391), + [anon_sym_DASH_EQ] = ACTIONS(391), + [anon_sym_STAR_EQ] = ACTIONS(391), + [anon_sym_SLASH_EQ] = ACTIONS(391), + [anon_sym_PERCENT_EQ] = ACTIONS(391), + [anon_sym_CARET_EQ] = ACTIONS(391), + [anon_sym_AMP_EQ] = ACTIONS(391), + [anon_sym_PIPE_EQ] = ACTIONS(391), + [anon_sym_LT_LT_EQ] = ACTIONS(391), + [anon_sym_GT_GT_EQ] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(393), + [anon_sym_EQ_EQ] = ACTIONS(391), + [anon_sym_BANG_EQ] = ACTIONS(391), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT_EQ] = ACTIONS(391), + [anon_sym_LT_EQ] = ACTIONS(391), + [anon_sym_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT] = ACTIONS(539), + [anon_sym_DOT_DOT_DOT] = ACTIONS(391), + [anon_sym_DOT_DOT_EQ] = ACTIONS(391), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(393), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [STATE(69)] = { - [sym__token_pattern] = STATE(156), - [sym_token_tree_pattern] = STATE(154), - [sym_token_binding_pattern] = STATE(154), - [sym_token_repetition_pattern] = STATE(154), - [sym__literal] = STATE(154), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(298), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1713), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(69), [sym_block_comment] = STATE(69), - [aux_sym_token_tree_pattern_repeat1] = STATE(71), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_RPAREN] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(607), - [anon_sym_i8] = ACTIONS(607), - [anon_sym_u16] = ACTIONS(607), - [anon_sym_i16] = ACTIONS(607), - [anon_sym_u32] = ACTIONS(607), - [anon_sym_i32] = ACTIONS(607), - [anon_sym_u64] = ACTIONS(607), - [anon_sym_i64] = ACTIONS(607), - [anon_sym_u128] = ACTIONS(607), - [anon_sym_i128] = ACTIONS(607), - [anon_sym_isize] = ACTIONS(607), - [anon_sym_usize] = ACTIONS(607), - [anon_sym_f32] = ACTIONS(607), - [anon_sym_f64] = ACTIONS(607), - [anon_sym_bool] = ACTIONS(607), - [anon_sym_str] = ACTIONS(607), - [anon_sym_char] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_async] = ACTIONS(607), - [anon_sym_await] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_const] = ACTIONS(607), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_default] = ACTIONS(607), - [anon_sym_enum] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(607), - [anon_sym_for] = ACTIONS(607), - [anon_sym_gen] = ACTIONS(607), - [anon_sym_if] = ACTIONS(607), - [anon_sym_impl] = ACTIONS(607), - [anon_sym_let] = ACTIONS(607), - [anon_sym_loop] = ACTIONS(607), - [anon_sym_match] = ACTIONS(607), - [anon_sym_mod] = ACTIONS(607), - [anon_sym_pub] = ACTIONS(607), - [anon_sym_return] = ACTIONS(607), - [anon_sym_static] = ACTIONS(607), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_trait] = ACTIONS(607), - [anon_sym_type] = ACTIONS(607), - [anon_sym_union] = ACTIONS(607), - [anon_sym_unsafe] = ACTIONS(607), - [anon_sym_use] = ACTIONS(607), - [anon_sym_where] = ACTIONS(607), - [anon_sym_while] = ACTIONS(607), - [sym_mutable_specifier] = ACTIONS(607), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(607), - [sym_super] = ACTIONS(607), - [sym_crate] = ACTIONS(607), - [sym_metavariable] = ACTIONS(629), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_PLUS] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_QMARK] = ACTIONS(411), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(481), + [anon_sym_SLASH] = ACTIONS(413), + [anon_sym_PERCENT] = ACTIONS(413), + [anon_sym_CARET] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(537), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_AMP_AMP] = ACTIONS(411), + [anon_sym_PIPE_PIPE] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(413), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_PLUS_EQ] = ACTIONS(411), + [anon_sym_DASH_EQ] = ACTIONS(411), + [anon_sym_STAR_EQ] = ACTIONS(411), + [anon_sym_SLASH_EQ] = ACTIONS(411), + [anon_sym_PERCENT_EQ] = ACTIONS(411), + [anon_sym_CARET_EQ] = ACTIONS(411), + [anon_sym_AMP_EQ] = ACTIONS(411), + [anon_sym_PIPE_EQ] = ACTIONS(411), + [anon_sym_LT_LT_EQ] = ACTIONS(411), + [anon_sym_GT_GT_EQ] = ACTIONS(411), + [anon_sym_EQ] = ACTIONS(413), + [anon_sym_EQ_EQ] = ACTIONS(411), + [anon_sym_BANG_EQ] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT_EQ] = ACTIONS(411), + [anon_sym_LT_EQ] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(413), + [anon_sym_DOT_DOT] = ACTIONS(539), + [anon_sym_DOT_DOT_DOT] = ACTIONS(411), + [anon_sym_DOT_DOT_EQ] = ACTIONS(411), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(413), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [STATE(70)] = { - [sym__token_pattern] = STATE(156), - [sym_token_tree_pattern] = STATE(154), - [sym_token_binding_pattern] = STATE(154), - [sym_token_repetition_pattern] = STATE(154), - [sym__literal] = STATE(154), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym__token_pattern] = STATE(351), + [sym_token_tree_pattern] = STATE(377), + [sym_token_binding_pattern] = STATE(377), + [sym_token_repetition_pattern] = STATE(377), + [sym__literal] = STATE(377), + [sym_string_literal] = STATE(365), + [sym_raw_string_literal] = STATE(365), + [sym_boolean_literal] = STATE(365), [sym_line_comment] = STATE(70), [sym_block_comment] = STATE(70), - [aux_sym_token_tree_pattern_repeat1] = STATE(81), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_RBRACK] = ACTIONS(633), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(607), - [anon_sym_i8] = ACTIONS(607), - [anon_sym_u16] = ACTIONS(607), - [anon_sym_i16] = ACTIONS(607), - [anon_sym_u32] = ACTIONS(607), - [anon_sym_i32] = ACTIONS(607), - [anon_sym_u64] = ACTIONS(607), - [anon_sym_i64] = ACTIONS(607), - [anon_sym_u128] = ACTIONS(607), - [anon_sym_i128] = ACTIONS(607), - [anon_sym_isize] = ACTIONS(607), - [anon_sym_usize] = ACTIONS(607), - [anon_sym_f32] = ACTIONS(607), - [anon_sym_f64] = ACTIONS(607), - [anon_sym_bool] = ACTIONS(607), - [anon_sym_str] = ACTIONS(607), - [anon_sym_char] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_async] = ACTIONS(607), - [anon_sym_await] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_const] = ACTIONS(607), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_default] = ACTIONS(607), - [anon_sym_enum] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(607), - [anon_sym_for] = ACTIONS(607), - [anon_sym_gen] = ACTIONS(607), - [anon_sym_if] = ACTIONS(607), - [anon_sym_impl] = ACTIONS(607), - [anon_sym_let] = ACTIONS(607), - [anon_sym_loop] = ACTIONS(607), - [anon_sym_match] = ACTIONS(607), - [anon_sym_mod] = ACTIONS(607), - [anon_sym_pub] = ACTIONS(607), - [anon_sym_return] = ACTIONS(607), - [anon_sym_static] = ACTIONS(607), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_trait] = ACTIONS(607), - [anon_sym_type] = ACTIONS(607), - [anon_sym_union] = ACTIONS(607), - [anon_sym_unsafe] = ACTIONS(607), - [anon_sym_use] = ACTIONS(607), - [anon_sym_where] = ACTIONS(607), - [anon_sym_while] = ACTIONS(607), - [sym_mutable_specifier] = ACTIONS(607), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(607), - [sym_super] = ACTIONS(607), - [sym_crate] = ACTIONS(607), - [sym_metavariable] = ACTIONS(629), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym_token_tree_pattern_repeat1] = STATE(70), + [aux_sym__non_special_token_repeat1] = STATE(347), + [sym_identifier] = ACTIONS(541), + [anon_sym_SEMI] = ACTIONS(544), + [anon_sym_LPAREN] = ACTIONS(547), + [anon_sym_RPAREN] = ACTIONS(550), + [anon_sym_LBRACK] = ACTIONS(552), + [anon_sym_RBRACK] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_RBRACE] = ACTIONS(550), + [anon_sym_EQ_GT] = ACTIONS(544), + [anon_sym_COLON] = ACTIONS(558), + [anon_sym_DOLLAR] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(558), + [anon_sym_STAR] = ACTIONS(558), + [anon_sym_QMARK] = ACTIONS(544), + [anon_sym_u8] = ACTIONS(541), + [anon_sym_i8] = ACTIONS(541), + [anon_sym_u16] = ACTIONS(541), + [anon_sym_i16] = ACTIONS(541), + [anon_sym_u32] = ACTIONS(541), + [anon_sym_i32] = ACTIONS(541), + [anon_sym_u64] = ACTIONS(541), + [anon_sym_i64] = ACTIONS(541), + [anon_sym_u128] = ACTIONS(541), + [anon_sym_i128] = ACTIONS(541), + [anon_sym_isize] = ACTIONS(541), + [anon_sym_usize] = ACTIONS(541), + [anon_sym_f32] = ACTIONS(541), + [anon_sym_f64] = ACTIONS(541), + [anon_sym_bool] = ACTIONS(541), + [anon_sym_str] = ACTIONS(541), + [anon_sym_char] = ACTIONS(541), + [anon_sym_DASH] = ACTIONS(558), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_PERCENT] = ACTIONS(558), + [anon_sym_CARET] = ACTIONS(558), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_PIPE] = ACTIONS(558), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_LT_LT] = ACTIONS(558), + [anon_sym_GT_GT] = ACTIONS(558), + [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_CARET_EQ] = ACTIONS(544), + [anon_sym_AMP_EQ] = ACTIONS(544), + [anon_sym_PIPE_EQ] = ACTIONS(544), + [anon_sym_LT_LT_EQ] = ACTIONS(544), + [anon_sym_GT_GT_EQ] = ACTIONS(544), + [anon_sym_EQ] = ACTIONS(558), + [anon_sym_EQ_EQ] = ACTIONS(544), + [anon_sym_BANG_EQ] = ACTIONS(544), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_GT_EQ] = ACTIONS(544), + [anon_sym_LT_EQ] = ACTIONS(544), + [anon_sym_AT] = ACTIONS(544), + [anon_sym__] = ACTIONS(558), + [anon_sym_DOT] = ACTIONS(558), + [anon_sym_DOT_DOT] = ACTIONS(558), + [anon_sym_DOT_DOT_DOT] = ACTIONS(544), + [anon_sym_DOT_DOT_EQ] = ACTIONS(544), + [anon_sym_COMMA] = ACTIONS(544), + [anon_sym_COLON_COLON] = ACTIONS(544), + [anon_sym_DASH_GT] = ACTIONS(544), + [anon_sym_POUND] = ACTIONS(544), + [anon_sym_SQUOTE] = ACTIONS(541), + [anon_sym_as] = ACTIONS(541), + [anon_sym_async] = ACTIONS(541), + [anon_sym_await] = ACTIONS(541), + [anon_sym_break] = ACTIONS(541), + [anon_sym_const] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(541), + [anon_sym_default] = ACTIONS(541), + [anon_sym_enum] = ACTIONS(541), + [anon_sym_fn] = ACTIONS(541), + [anon_sym_for] = ACTIONS(541), + [anon_sym_gen] = ACTIONS(541), + [anon_sym_if] = ACTIONS(541), + [anon_sym_impl] = ACTIONS(541), + [anon_sym_let] = ACTIONS(541), + [anon_sym_loop] = ACTIONS(541), + [anon_sym_match] = ACTIONS(541), + [anon_sym_mod] = ACTIONS(541), + [anon_sym_pub] = ACTIONS(541), + [anon_sym_return] = ACTIONS(541), + [anon_sym_static] = ACTIONS(541), + [anon_sym_struct] = ACTIONS(541), + [anon_sym_trait] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_union] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(541), + [anon_sym_use] = ACTIONS(541), + [anon_sym_where] = ACTIONS(541), + [anon_sym_while] = ACTIONS(541), + [sym_mutable_specifier] = ACTIONS(541), + [sym_integer_literal] = ACTIONS(564), + [aux_sym_string_literal_token1] = ACTIONS(567), + [sym_char_literal] = ACTIONS(564), + [anon_sym_true] = ACTIONS(570), + [anon_sym_false] = ACTIONS(570), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(541), + [sym_super] = ACTIONS(541), + [sym_crate] = ACTIONS(541), + [sym_metavariable] = ACTIONS(573), + [sym__raw_string_literal_start] = ACTIONS(576), + [sym_float_literal] = ACTIONS(564), }, [STATE(71)] = { - [sym__token_pattern] = STATE(156), - [sym_token_tree_pattern] = STATE(154), - [sym_token_binding_pattern] = STATE(154), - [sym_token_repetition_pattern] = STATE(154), - [sym__literal] = STATE(154), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym_delim_token_tree] = STATE(385), + [sym__delim_tokens] = STATE(386), + [sym__non_delim_token] = STATE(385), + [sym__literal] = STATE(384), + [sym_string_literal] = STATE(397), + [sym_raw_string_literal] = STATE(397), + [sym_boolean_literal] = STATE(397), [sym_line_comment] = STATE(71), [sym_block_comment] = STATE(71), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_RPAREN] = ACTIONS(635), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(607), - [anon_sym_i8] = ACTIONS(607), - [anon_sym_u16] = ACTIONS(607), - [anon_sym_i16] = ACTIONS(607), - [anon_sym_u32] = ACTIONS(607), - [anon_sym_i32] = ACTIONS(607), - [anon_sym_u64] = ACTIONS(607), - [anon_sym_i64] = ACTIONS(607), - [anon_sym_u128] = ACTIONS(607), - [anon_sym_i128] = ACTIONS(607), - [anon_sym_isize] = ACTIONS(607), - [anon_sym_usize] = ACTIONS(607), - [anon_sym_f32] = ACTIONS(607), - [anon_sym_f64] = ACTIONS(607), - [anon_sym_bool] = ACTIONS(607), - [anon_sym_str] = ACTIONS(607), - [anon_sym_char] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_async] = ACTIONS(607), - [anon_sym_await] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_const] = ACTIONS(607), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_default] = ACTIONS(607), - [anon_sym_enum] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(607), - [anon_sym_for] = ACTIONS(607), - [anon_sym_gen] = ACTIONS(607), - [anon_sym_if] = ACTIONS(607), - [anon_sym_impl] = ACTIONS(607), - [anon_sym_let] = ACTIONS(607), - [anon_sym_loop] = ACTIONS(607), - [anon_sym_match] = ACTIONS(607), - [anon_sym_mod] = ACTIONS(607), - [anon_sym_pub] = ACTIONS(607), - [anon_sym_return] = ACTIONS(607), - [anon_sym_static] = ACTIONS(607), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_trait] = ACTIONS(607), - [anon_sym_type] = ACTIONS(607), - [anon_sym_union] = ACTIONS(607), - [anon_sym_unsafe] = ACTIONS(607), - [anon_sym_use] = ACTIONS(607), - [anon_sym_where] = ACTIONS(607), - [anon_sym_while] = ACTIONS(607), - [sym_mutable_specifier] = ACTIONS(607), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(607), - [sym_super] = ACTIONS(607), - [sym_crate] = ACTIONS(607), - [sym_metavariable] = ACTIONS(629), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym__non_special_token_repeat1] = STATE(373), + [aux_sym_delim_token_tree_repeat1] = STATE(71), + [sym_identifier] = ACTIONS(579), + [anon_sym_SEMI] = ACTIONS(582), + [anon_sym_LPAREN] = ACTIONS(585), + [anon_sym_RPAREN] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_RBRACK] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(593), + [anon_sym_RBRACE] = ACTIONS(588), + [anon_sym_EQ_GT] = ACTIONS(582), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(582), + [anon_sym_u8] = ACTIONS(579), + [anon_sym_i8] = ACTIONS(579), + [anon_sym_u16] = ACTIONS(579), + [anon_sym_i16] = ACTIONS(579), + [anon_sym_u32] = ACTIONS(579), + [anon_sym_i32] = ACTIONS(579), + [anon_sym_u64] = ACTIONS(579), + [anon_sym_i64] = ACTIONS(579), + [anon_sym_u128] = ACTIONS(579), + [anon_sym_i128] = ACTIONS(579), + [anon_sym_isize] = ACTIONS(579), + [anon_sym_usize] = ACTIONS(579), + [anon_sym_f32] = ACTIONS(579), + [anon_sym_f64] = ACTIONS(579), + [anon_sym_bool] = ACTIONS(579), + [anon_sym_str] = ACTIONS(579), + [anon_sym_char] = ACTIONS(579), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(582), + [anon_sym_PIPE_PIPE] = ACTIONS(582), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_PLUS_EQ] = ACTIONS(582), + [anon_sym_DASH_EQ] = ACTIONS(582), + [anon_sym_STAR_EQ] = ACTIONS(582), + [anon_sym_SLASH_EQ] = ACTIONS(582), + [anon_sym_PERCENT_EQ] = ACTIONS(582), + [anon_sym_CARET_EQ] = ACTIONS(582), + [anon_sym_AMP_EQ] = ACTIONS(582), + [anon_sym_PIPE_EQ] = ACTIONS(582), + [anon_sym_LT_LT_EQ] = ACTIONS(582), + [anon_sym_GT_GT_EQ] = ACTIONS(582), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(582), + [anon_sym_BANG_EQ] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(582), + [anon_sym_AT] = ACTIONS(582), + [anon_sym__] = ACTIONS(596), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT_EQ] = ACTIONS(582), + [anon_sym_COMMA] = ACTIONS(582), + [anon_sym_COLON_COLON] = ACTIONS(582), + [anon_sym_DASH_GT] = ACTIONS(582), + [anon_sym_POUND] = ACTIONS(582), + [anon_sym_SQUOTE] = ACTIONS(579), + [anon_sym_as] = ACTIONS(579), + [anon_sym_async] = ACTIONS(579), + [anon_sym_await] = ACTIONS(579), + [anon_sym_break] = ACTIONS(579), + [anon_sym_const] = ACTIONS(579), + [anon_sym_continue] = ACTIONS(579), + [anon_sym_default] = ACTIONS(579), + [anon_sym_enum] = ACTIONS(579), + [anon_sym_fn] = ACTIONS(579), + [anon_sym_for] = ACTIONS(579), + [anon_sym_gen] = ACTIONS(579), + [anon_sym_if] = ACTIONS(579), + [anon_sym_impl] = ACTIONS(579), + [anon_sym_let] = ACTIONS(579), + [anon_sym_loop] = ACTIONS(579), + [anon_sym_match] = ACTIONS(579), + [anon_sym_mod] = ACTIONS(579), + [anon_sym_pub] = ACTIONS(579), + [anon_sym_return] = ACTIONS(579), + [anon_sym_static] = ACTIONS(579), + [anon_sym_struct] = ACTIONS(579), + [anon_sym_trait] = ACTIONS(579), + [anon_sym_type] = ACTIONS(579), + [anon_sym_union] = ACTIONS(579), + [anon_sym_unsafe] = ACTIONS(579), + [anon_sym_use] = ACTIONS(579), + [anon_sym_where] = ACTIONS(579), + [anon_sym_while] = ACTIONS(579), + [sym_mutable_specifier] = ACTIONS(579), + [sym_integer_literal] = ACTIONS(602), + [aux_sym_string_literal_token1] = ACTIONS(605), + [sym_char_literal] = ACTIONS(602), + [anon_sym_true] = ACTIONS(608), + [anon_sym_false] = ACTIONS(608), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(579), + [sym_super] = ACTIONS(579), + [sym_crate] = ACTIONS(579), + [sym__raw_string_literal_start] = ACTIONS(611), + [sym_float_literal] = ACTIONS(602), }, [STATE(72)] = { - [sym__token_pattern] = STATE(156), - [sym_token_tree_pattern] = STATE(154), - [sym_token_binding_pattern] = STATE(154), - [sym_token_repetition_pattern] = STATE(154), - [sym__literal] = STATE(154), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym__token_pattern] = STATE(351), + [sym_token_tree_pattern] = STATE(377), + [sym_token_binding_pattern] = STATE(377), + [sym_token_repetition_pattern] = STATE(377), + [sym__literal] = STATE(377), + [sym_string_literal] = STATE(365), + [sym_raw_string_literal] = STATE(365), + [sym_boolean_literal] = STATE(365), [sym_line_comment] = STATE(72), [sym_block_comment] = STATE(72), - [aux_sym_token_tree_pattern_repeat1] = STATE(76), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_RPAREN] = ACTIONS(637), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(607), - [anon_sym_i8] = ACTIONS(607), - [anon_sym_u16] = ACTIONS(607), - [anon_sym_i16] = ACTIONS(607), - [anon_sym_u32] = ACTIONS(607), - [anon_sym_i32] = ACTIONS(607), - [anon_sym_u64] = ACTIONS(607), - [anon_sym_i64] = ACTIONS(607), - [anon_sym_u128] = ACTIONS(607), - [anon_sym_i128] = ACTIONS(607), - [anon_sym_isize] = ACTIONS(607), - [anon_sym_usize] = ACTIONS(607), - [anon_sym_f32] = ACTIONS(607), - [anon_sym_f64] = ACTIONS(607), - [anon_sym_bool] = ACTIONS(607), - [anon_sym_str] = ACTIONS(607), - [anon_sym_char] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_async] = ACTIONS(607), - [anon_sym_await] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_const] = ACTIONS(607), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_default] = ACTIONS(607), - [anon_sym_enum] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(607), - [anon_sym_for] = ACTIONS(607), - [anon_sym_gen] = ACTIONS(607), - [anon_sym_if] = ACTIONS(607), - [anon_sym_impl] = ACTIONS(607), - [anon_sym_let] = ACTIONS(607), - [anon_sym_loop] = ACTIONS(607), - [anon_sym_match] = ACTIONS(607), - [anon_sym_mod] = ACTIONS(607), - [anon_sym_pub] = ACTIONS(607), - [anon_sym_return] = ACTIONS(607), - [anon_sym_static] = ACTIONS(607), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_trait] = ACTIONS(607), - [anon_sym_type] = ACTIONS(607), - [anon_sym_union] = ACTIONS(607), - [anon_sym_unsafe] = ACTIONS(607), - [anon_sym_use] = ACTIONS(607), - [anon_sym_where] = ACTIONS(607), - [anon_sym_while] = ACTIONS(607), - [sym_mutable_specifier] = ACTIONS(607), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(607), - [sym_super] = ACTIONS(607), - [sym_crate] = ACTIONS(607), - [sym_metavariable] = ACTIONS(629), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym_token_tree_pattern_repeat1] = STATE(74), + [aux_sym__non_special_token_repeat1] = STATE(347), + [sym_identifier] = ACTIONS(614), + [anon_sym_SEMI] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(618), + [anon_sym_RPAREN] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(622), + [anon_sym_LBRACE] = ACTIONS(624), + [anon_sym_EQ_GT] = ACTIONS(616), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(628), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_u8] = ACTIONS(614), + [anon_sym_i8] = ACTIONS(614), + [anon_sym_u16] = ACTIONS(614), + [anon_sym_i16] = ACTIONS(614), + [anon_sym_u32] = ACTIONS(614), + [anon_sym_i32] = ACTIONS(614), + [anon_sym_u64] = ACTIONS(614), + [anon_sym_i64] = ACTIONS(614), + [anon_sym_u128] = ACTIONS(614), + [anon_sym_i128] = ACTIONS(614), + [anon_sym_isize] = ACTIONS(614), + [anon_sym_usize] = ACTIONS(614), + [anon_sym_f32] = ACTIONS(614), + [anon_sym_f64] = ACTIONS(614), + [anon_sym_bool] = ACTIONS(614), + [anon_sym_str] = ACTIONS(614), + [anon_sym_char] = ACTIONS(614), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_BANG] = ACTIONS(626), + [anon_sym_AMP] = ACTIONS(626), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(616), + [anon_sym_PIPE_PIPE] = ACTIONS(616), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_PLUS_EQ] = ACTIONS(616), + [anon_sym_DASH_EQ] = ACTIONS(616), + [anon_sym_STAR_EQ] = ACTIONS(616), + [anon_sym_SLASH_EQ] = ACTIONS(616), + [anon_sym_PERCENT_EQ] = ACTIONS(616), + [anon_sym_CARET_EQ] = ACTIONS(616), + [anon_sym_AMP_EQ] = ACTIONS(616), + [anon_sym_PIPE_EQ] = ACTIONS(616), + [anon_sym_LT_LT_EQ] = ACTIONS(616), + [anon_sym_GT_GT_EQ] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(616), + [anon_sym_BANG_EQ] = ACTIONS(616), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT_EQ] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(616), + [anon_sym_AT] = ACTIONS(616), + [anon_sym__] = ACTIONS(626), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + [anon_sym_DOT_DOT_EQ] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(616), + [anon_sym_COLON_COLON] = ACTIONS(616), + [anon_sym_DASH_GT] = ACTIONS(616), + [anon_sym_POUND] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(614), + [anon_sym_as] = ACTIONS(614), + [anon_sym_async] = ACTIONS(614), + [anon_sym_await] = ACTIONS(614), + [anon_sym_break] = ACTIONS(614), + [anon_sym_const] = ACTIONS(614), + [anon_sym_continue] = ACTIONS(614), + [anon_sym_default] = ACTIONS(614), + [anon_sym_enum] = ACTIONS(614), + [anon_sym_fn] = ACTIONS(614), + [anon_sym_for] = ACTIONS(614), + [anon_sym_gen] = ACTIONS(614), + [anon_sym_if] = ACTIONS(614), + [anon_sym_impl] = ACTIONS(614), + [anon_sym_let] = ACTIONS(614), + [anon_sym_loop] = ACTIONS(614), + [anon_sym_match] = ACTIONS(614), + [anon_sym_mod] = ACTIONS(614), + [anon_sym_pub] = ACTIONS(614), + [anon_sym_return] = ACTIONS(614), + [anon_sym_static] = ACTIONS(614), + [anon_sym_struct] = ACTIONS(614), + [anon_sym_trait] = ACTIONS(614), + [anon_sym_type] = ACTIONS(614), + [anon_sym_union] = ACTIONS(614), + [anon_sym_unsafe] = ACTIONS(614), + [anon_sym_use] = ACTIONS(614), + [anon_sym_where] = ACTIONS(614), + [anon_sym_while] = ACTIONS(614), + [sym_mutable_specifier] = ACTIONS(614), + [sym_integer_literal] = ACTIONS(630), + [aux_sym_string_literal_token1] = ACTIONS(632), + [sym_char_literal] = ACTIONS(630), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(614), + [sym_super] = ACTIONS(614), + [sym_crate] = ACTIONS(614), + [sym_metavariable] = ACTIONS(636), + [sym__raw_string_literal_start] = ACTIONS(638), + [sym_float_literal] = ACTIONS(630), }, [STATE(73)] = { - [sym__token_pattern] = STATE(156), - [sym_token_tree_pattern] = STATE(154), - [sym_token_binding_pattern] = STATE(154), - [sym_token_repetition_pattern] = STATE(154), - [sym__literal] = STATE(154), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym__token_pattern] = STATE(351), + [sym_token_tree_pattern] = STATE(377), + [sym_token_binding_pattern] = STATE(377), + [sym_token_repetition_pattern] = STATE(377), + [sym__literal] = STATE(377), + [sym_string_literal] = STATE(365), + [sym_raw_string_literal] = STATE(365), + [sym_boolean_literal] = STATE(365), [sym_line_comment] = STATE(73), [sym_block_comment] = STATE(73), - [aux_sym_token_tree_pattern_repeat1] = STATE(77), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_RBRACK] = ACTIONS(637), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(607), - [anon_sym_i8] = ACTIONS(607), - [anon_sym_u16] = ACTIONS(607), - [anon_sym_i16] = ACTIONS(607), - [anon_sym_u32] = ACTIONS(607), - [anon_sym_i32] = ACTIONS(607), - [anon_sym_u64] = ACTIONS(607), - [anon_sym_i64] = ACTIONS(607), - [anon_sym_u128] = ACTIONS(607), - [anon_sym_i128] = ACTIONS(607), - [anon_sym_isize] = ACTIONS(607), - [anon_sym_usize] = ACTIONS(607), - [anon_sym_f32] = ACTIONS(607), - [anon_sym_f64] = ACTIONS(607), - [anon_sym_bool] = ACTIONS(607), - [anon_sym_str] = ACTIONS(607), - [anon_sym_char] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_async] = ACTIONS(607), - [anon_sym_await] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_const] = ACTIONS(607), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_default] = ACTIONS(607), - [anon_sym_enum] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(607), - [anon_sym_for] = ACTIONS(607), - [anon_sym_gen] = ACTIONS(607), - [anon_sym_if] = ACTIONS(607), - [anon_sym_impl] = ACTIONS(607), - [anon_sym_let] = ACTIONS(607), - [anon_sym_loop] = ACTIONS(607), - [anon_sym_match] = ACTIONS(607), - [anon_sym_mod] = ACTIONS(607), - [anon_sym_pub] = ACTIONS(607), - [anon_sym_return] = ACTIONS(607), - [anon_sym_static] = ACTIONS(607), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_trait] = ACTIONS(607), - [anon_sym_type] = ACTIONS(607), - [anon_sym_union] = ACTIONS(607), - [anon_sym_unsafe] = ACTIONS(607), - [anon_sym_use] = ACTIONS(607), - [anon_sym_where] = ACTIONS(607), - [anon_sym_while] = ACTIONS(607), - [sym_mutable_specifier] = ACTIONS(607), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(607), - [sym_super] = ACTIONS(607), - [sym_crate] = ACTIONS(607), - [sym_metavariable] = ACTIONS(629), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym_token_tree_pattern_repeat1] = STATE(70), + [aux_sym__non_special_token_repeat1] = STATE(347), + [sym_identifier] = ACTIONS(614), + [anon_sym_SEMI] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(618), + [anon_sym_LBRACK] = ACTIONS(622), + [anon_sym_RBRACK] = ACTIONS(640), + [anon_sym_LBRACE] = ACTIONS(624), + [anon_sym_EQ_GT] = ACTIONS(616), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(628), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_u8] = ACTIONS(614), + [anon_sym_i8] = ACTIONS(614), + [anon_sym_u16] = ACTIONS(614), + [anon_sym_i16] = ACTIONS(614), + [anon_sym_u32] = ACTIONS(614), + [anon_sym_i32] = ACTIONS(614), + [anon_sym_u64] = ACTIONS(614), + [anon_sym_i64] = ACTIONS(614), + [anon_sym_u128] = ACTIONS(614), + [anon_sym_i128] = ACTIONS(614), + [anon_sym_isize] = ACTIONS(614), + [anon_sym_usize] = ACTIONS(614), + [anon_sym_f32] = ACTIONS(614), + [anon_sym_f64] = ACTIONS(614), + [anon_sym_bool] = ACTIONS(614), + [anon_sym_str] = ACTIONS(614), + [anon_sym_char] = ACTIONS(614), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_BANG] = ACTIONS(626), + [anon_sym_AMP] = ACTIONS(626), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(616), + [anon_sym_PIPE_PIPE] = ACTIONS(616), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_PLUS_EQ] = ACTIONS(616), + [anon_sym_DASH_EQ] = ACTIONS(616), + [anon_sym_STAR_EQ] = ACTIONS(616), + [anon_sym_SLASH_EQ] = ACTIONS(616), + [anon_sym_PERCENT_EQ] = ACTIONS(616), + [anon_sym_CARET_EQ] = ACTIONS(616), + [anon_sym_AMP_EQ] = ACTIONS(616), + [anon_sym_PIPE_EQ] = ACTIONS(616), + [anon_sym_LT_LT_EQ] = ACTIONS(616), + [anon_sym_GT_GT_EQ] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(616), + [anon_sym_BANG_EQ] = ACTIONS(616), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT_EQ] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(616), + [anon_sym_AT] = ACTIONS(616), + [anon_sym__] = ACTIONS(626), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + [anon_sym_DOT_DOT_EQ] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(616), + [anon_sym_COLON_COLON] = ACTIONS(616), + [anon_sym_DASH_GT] = ACTIONS(616), + [anon_sym_POUND] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(614), + [anon_sym_as] = ACTIONS(614), + [anon_sym_async] = ACTIONS(614), + [anon_sym_await] = ACTIONS(614), + [anon_sym_break] = ACTIONS(614), + [anon_sym_const] = ACTIONS(614), + [anon_sym_continue] = ACTIONS(614), + [anon_sym_default] = ACTIONS(614), + [anon_sym_enum] = ACTIONS(614), + [anon_sym_fn] = ACTIONS(614), + [anon_sym_for] = ACTIONS(614), + [anon_sym_gen] = ACTIONS(614), + [anon_sym_if] = ACTIONS(614), + [anon_sym_impl] = ACTIONS(614), + [anon_sym_let] = ACTIONS(614), + [anon_sym_loop] = ACTIONS(614), + [anon_sym_match] = ACTIONS(614), + [anon_sym_mod] = ACTIONS(614), + [anon_sym_pub] = ACTIONS(614), + [anon_sym_return] = ACTIONS(614), + [anon_sym_static] = ACTIONS(614), + [anon_sym_struct] = ACTIONS(614), + [anon_sym_trait] = ACTIONS(614), + [anon_sym_type] = ACTIONS(614), + [anon_sym_union] = ACTIONS(614), + [anon_sym_unsafe] = ACTIONS(614), + [anon_sym_use] = ACTIONS(614), + [anon_sym_where] = ACTIONS(614), + [anon_sym_while] = ACTIONS(614), + [sym_mutable_specifier] = ACTIONS(614), + [sym_integer_literal] = ACTIONS(630), + [aux_sym_string_literal_token1] = ACTIONS(632), + [sym_char_literal] = ACTIONS(630), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(614), + [sym_super] = ACTIONS(614), + [sym_crate] = ACTIONS(614), + [sym_metavariable] = ACTIONS(636), + [sym__raw_string_literal_start] = ACTIONS(638), + [sym_float_literal] = ACTIONS(630), }, [STATE(74)] = { - [sym__token_pattern] = STATE(156), - [sym_token_tree_pattern] = STATE(154), - [sym_token_binding_pattern] = STATE(154), - [sym_token_repetition_pattern] = STATE(154), - [sym__literal] = STATE(154), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym__token_pattern] = STATE(351), + [sym_token_tree_pattern] = STATE(377), + [sym_token_binding_pattern] = STATE(377), + [sym_token_repetition_pattern] = STATE(377), + [sym__literal] = STATE(377), + [sym_string_literal] = STATE(365), + [sym_raw_string_literal] = STATE(365), + [sym_boolean_literal] = STATE(365), [sym_line_comment] = STATE(74), [sym_block_comment] = STATE(74), - [aux_sym_token_tree_pattern_repeat1] = STATE(78), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_RBRACE] = ACTIONS(637), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(607), - [anon_sym_i8] = ACTIONS(607), - [anon_sym_u16] = ACTIONS(607), - [anon_sym_i16] = ACTIONS(607), - [anon_sym_u32] = ACTIONS(607), - [anon_sym_i32] = ACTIONS(607), - [anon_sym_u64] = ACTIONS(607), - [anon_sym_i64] = ACTIONS(607), - [anon_sym_u128] = ACTIONS(607), - [anon_sym_i128] = ACTIONS(607), - [anon_sym_isize] = ACTIONS(607), - [anon_sym_usize] = ACTIONS(607), - [anon_sym_f32] = ACTIONS(607), - [anon_sym_f64] = ACTIONS(607), - [anon_sym_bool] = ACTIONS(607), - [anon_sym_str] = ACTIONS(607), - [anon_sym_char] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_async] = ACTIONS(607), - [anon_sym_await] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_const] = ACTIONS(607), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_default] = ACTIONS(607), - [anon_sym_enum] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(607), - [anon_sym_for] = ACTIONS(607), - [anon_sym_gen] = ACTIONS(607), - [anon_sym_if] = ACTIONS(607), - [anon_sym_impl] = ACTIONS(607), - [anon_sym_let] = ACTIONS(607), - [anon_sym_loop] = ACTIONS(607), - [anon_sym_match] = ACTIONS(607), - [anon_sym_mod] = ACTIONS(607), - [anon_sym_pub] = ACTIONS(607), - [anon_sym_return] = ACTIONS(607), - [anon_sym_static] = ACTIONS(607), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_trait] = ACTIONS(607), - [anon_sym_type] = ACTIONS(607), - [anon_sym_union] = ACTIONS(607), - [anon_sym_unsafe] = ACTIONS(607), - [anon_sym_use] = ACTIONS(607), - [anon_sym_where] = ACTIONS(607), - [anon_sym_while] = ACTIONS(607), - [sym_mutable_specifier] = ACTIONS(607), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(607), - [sym_super] = ACTIONS(607), - [sym_crate] = ACTIONS(607), - [sym_metavariable] = ACTIONS(629), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym_token_tree_pattern_repeat1] = STATE(70), + [aux_sym__non_special_token_repeat1] = STATE(347), + [sym_identifier] = ACTIONS(614), + [anon_sym_SEMI] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(618), + [anon_sym_RPAREN] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(622), + [anon_sym_LBRACE] = ACTIONS(624), + [anon_sym_EQ_GT] = ACTIONS(616), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(628), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_u8] = ACTIONS(614), + [anon_sym_i8] = ACTIONS(614), + [anon_sym_u16] = ACTIONS(614), + [anon_sym_i16] = ACTIONS(614), + [anon_sym_u32] = ACTIONS(614), + [anon_sym_i32] = ACTIONS(614), + [anon_sym_u64] = ACTIONS(614), + [anon_sym_i64] = ACTIONS(614), + [anon_sym_u128] = ACTIONS(614), + [anon_sym_i128] = ACTIONS(614), + [anon_sym_isize] = ACTIONS(614), + [anon_sym_usize] = ACTIONS(614), + [anon_sym_f32] = ACTIONS(614), + [anon_sym_f64] = ACTIONS(614), + [anon_sym_bool] = ACTIONS(614), + [anon_sym_str] = ACTIONS(614), + [anon_sym_char] = ACTIONS(614), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_BANG] = ACTIONS(626), + [anon_sym_AMP] = ACTIONS(626), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(616), + [anon_sym_PIPE_PIPE] = ACTIONS(616), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_PLUS_EQ] = ACTIONS(616), + [anon_sym_DASH_EQ] = ACTIONS(616), + [anon_sym_STAR_EQ] = ACTIONS(616), + [anon_sym_SLASH_EQ] = ACTIONS(616), + [anon_sym_PERCENT_EQ] = ACTIONS(616), + [anon_sym_CARET_EQ] = ACTIONS(616), + [anon_sym_AMP_EQ] = ACTIONS(616), + [anon_sym_PIPE_EQ] = ACTIONS(616), + [anon_sym_LT_LT_EQ] = ACTIONS(616), + [anon_sym_GT_GT_EQ] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(616), + [anon_sym_BANG_EQ] = ACTIONS(616), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT_EQ] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(616), + [anon_sym_AT] = ACTIONS(616), + [anon_sym__] = ACTIONS(626), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + [anon_sym_DOT_DOT_EQ] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(616), + [anon_sym_COLON_COLON] = ACTIONS(616), + [anon_sym_DASH_GT] = ACTIONS(616), + [anon_sym_POUND] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(614), + [anon_sym_as] = ACTIONS(614), + [anon_sym_async] = ACTIONS(614), + [anon_sym_await] = ACTIONS(614), + [anon_sym_break] = ACTIONS(614), + [anon_sym_const] = ACTIONS(614), + [anon_sym_continue] = ACTIONS(614), + [anon_sym_default] = ACTIONS(614), + [anon_sym_enum] = ACTIONS(614), + [anon_sym_fn] = ACTIONS(614), + [anon_sym_for] = ACTIONS(614), + [anon_sym_gen] = ACTIONS(614), + [anon_sym_if] = ACTIONS(614), + [anon_sym_impl] = ACTIONS(614), + [anon_sym_let] = ACTIONS(614), + [anon_sym_loop] = ACTIONS(614), + [anon_sym_match] = ACTIONS(614), + [anon_sym_mod] = ACTIONS(614), + [anon_sym_pub] = ACTIONS(614), + [anon_sym_return] = ACTIONS(614), + [anon_sym_static] = ACTIONS(614), + [anon_sym_struct] = ACTIONS(614), + [anon_sym_trait] = ACTIONS(614), + [anon_sym_type] = ACTIONS(614), + [anon_sym_union] = ACTIONS(614), + [anon_sym_unsafe] = ACTIONS(614), + [anon_sym_use] = ACTIONS(614), + [anon_sym_where] = ACTIONS(614), + [anon_sym_while] = ACTIONS(614), + [sym_mutable_specifier] = ACTIONS(614), + [sym_integer_literal] = ACTIONS(630), + [aux_sym_string_literal_token1] = ACTIONS(632), + [sym_char_literal] = ACTIONS(630), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(614), + [sym_super] = ACTIONS(614), + [sym_crate] = ACTIONS(614), + [sym_metavariable] = ACTIONS(636), + [sym__raw_string_literal_start] = ACTIONS(638), + [sym_float_literal] = ACTIONS(630), }, [STATE(75)] = { - [sym__token_pattern] = STATE(156), - [sym_token_tree_pattern] = STATE(154), - [sym_token_binding_pattern] = STATE(154), - [sym_token_repetition_pattern] = STATE(154), - [sym__literal] = STATE(154), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym_token_tree] = STATE(361), + [sym_token_repetition] = STATE(361), + [sym__literal] = STATE(361), + [sym_string_literal] = STATE(365), + [sym_raw_string_literal] = STATE(365), + [sym_boolean_literal] = STATE(365), [sym_line_comment] = STATE(75), [sym_block_comment] = STATE(75), - [aux_sym_token_tree_pattern_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_RBRACE] = ACTIONS(633), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(607), - [anon_sym_i8] = ACTIONS(607), - [anon_sym_u16] = ACTIONS(607), - [anon_sym_i16] = ACTIONS(607), - [anon_sym_u32] = ACTIONS(607), - [anon_sym_i32] = ACTIONS(607), - [anon_sym_u64] = ACTIONS(607), - [anon_sym_i64] = ACTIONS(607), - [anon_sym_u128] = ACTIONS(607), - [anon_sym_i128] = ACTIONS(607), - [anon_sym_isize] = ACTIONS(607), - [anon_sym_usize] = ACTIONS(607), - [anon_sym_f32] = ACTIONS(607), - [anon_sym_f64] = ACTIONS(607), - [anon_sym_bool] = ACTIONS(607), - [anon_sym_str] = ACTIONS(607), - [anon_sym_char] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_async] = ACTIONS(607), - [anon_sym_await] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_const] = ACTIONS(607), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_default] = ACTIONS(607), - [anon_sym_enum] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(607), - [anon_sym_for] = ACTIONS(607), - [anon_sym_gen] = ACTIONS(607), - [anon_sym_if] = ACTIONS(607), - [anon_sym_impl] = ACTIONS(607), - [anon_sym_let] = ACTIONS(607), - [anon_sym_loop] = ACTIONS(607), - [anon_sym_match] = ACTIONS(607), - [anon_sym_mod] = ACTIONS(607), - [anon_sym_pub] = ACTIONS(607), - [anon_sym_return] = ACTIONS(607), - [anon_sym_static] = ACTIONS(607), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_trait] = ACTIONS(607), - [anon_sym_type] = ACTIONS(607), - [anon_sym_union] = ACTIONS(607), - [anon_sym_unsafe] = ACTIONS(607), - [anon_sym_use] = ACTIONS(607), - [anon_sym_where] = ACTIONS(607), - [anon_sym_while] = ACTIONS(607), - [sym_mutable_specifier] = ACTIONS(607), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(607), - [sym_super] = ACTIONS(607), - [sym_crate] = ACTIONS(607), - [sym_metavariable] = ACTIONS(629), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym_token_tree_repeat1] = STATE(75), + [aux_sym__non_special_token_repeat1] = STATE(348), + [sym_identifier] = ACTIONS(644), + [anon_sym_SEMI] = ACTIONS(647), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_RPAREN] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_RBRACK] = ACTIONS(653), + [anon_sym_LBRACE] = ACTIONS(658), + [anon_sym_RBRACE] = ACTIONS(653), + [anon_sym_EQ_GT] = ACTIONS(647), + [anon_sym_COLON] = ACTIONS(661), + [anon_sym_DOLLAR] = ACTIONS(664), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_STAR] = ACTIONS(661), + [anon_sym_QMARK] = ACTIONS(647), + [anon_sym_u8] = ACTIONS(644), + [anon_sym_i8] = ACTIONS(644), + [anon_sym_u16] = ACTIONS(644), + [anon_sym_i16] = ACTIONS(644), + [anon_sym_u32] = ACTIONS(644), + [anon_sym_i32] = ACTIONS(644), + [anon_sym_u64] = ACTIONS(644), + [anon_sym_i64] = ACTIONS(644), + [anon_sym_u128] = ACTIONS(644), + [anon_sym_i128] = ACTIONS(644), + [anon_sym_isize] = ACTIONS(644), + [anon_sym_usize] = ACTIONS(644), + [anon_sym_f32] = ACTIONS(644), + [anon_sym_f64] = ACTIONS(644), + [anon_sym_bool] = ACTIONS(644), + [anon_sym_str] = ACTIONS(644), + [anon_sym_char] = ACTIONS(644), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(661), + [anon_sym_PERCENT] = ACTIONS(661), + [anon_sym_CARET] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(661), + [anon_sym_AMP_AMP] = ACTIONS(647), + [anon_sym_PIPE_PIPE] = ACTIONS(647), + [anon_sym_LT_LT] = ACTIONS(661), + [anon_sym_GT_GT] = ACTIONS(661), + [anon_sym_PLUS_EQ] = ACTIONS(647), + [anon_sym_DASH_EQ] = ACTIONS(647), + [anon_sym_STAR_EQ] = ACTIONS(647), + [anon_sym_SLASH_EQ] = ACTIONS(647), + [anon_sym_PERCENT_EQ] = ACTIONS(647), + [anon_sym_CARET_EQ] = ACTIONS(647), + [anon_sym_AMP_EQ] = ACTIONS(647), + [anon_sym_PIPE_EQ] = ACTIONS(647), + [anon_sym_LT_LT_EQ] = ACTIONS(647), + [anon_sym_GT_GT_EQ] = ACTIONS(647), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_EQ_EQ] = ACTIONS(647), + [anon_sym_BANG_EQ] = ACTIONS(647), + [anon_sym_GT] = ACTIONS(661), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_GT_EQ] = ACTIONS(647), + [anon_sym_LT_EQ] = ACTIONS(647), + [anon_sym_AT] = ACTIONS(647), + [anon_sym__] = ACTIONS(661), + [anon_sym_DOT] = ACTIONS(661), + [anon_sym_DOT_DOT] = ACTIONS(661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(647), + [anon_sym_DOT_DOT_EQ] = ACTIONS(647), + [anon_sym_COMMA] = ACTIONS(647), + [anon_sym_COLON_COLON] = ACTIONS(647), + [anon_sym_DASH_GT] = ACTIONS(647), + [anon_sym_POUND] = ACTIONS(647), + [anon_sym_SQUOTE] = ACTIONS(644), + [anon_sym_as] = ACTIONS(644), + [anon_sym_async] = ACTIONS(644), + [anon_sym_await] = ACTIONS(644), + [anon_sym_break] = ACTIONS(644), + [anon_sym_const] = ACTIONS(644), + [anon_sym_continue] = ACTIONS(644), + [anon_sym_default] = ACTIONS(644), + [anon_sym_enum] = ACTIONS(644), + [anon_sym_fn] = ACTIONS(644), + [anon_sym_for] = ACTIONS(644), + [anon_sym_gen] = ACTIONS(644), + [anon_sym_if] = ACTIONS(644), + [anon_sym_impl] = ACTIONS(644), + [anon_sym_let] = ACTIONS(644), + [anon_sym_loop] = ACTIONS(644), + [anon_sym_match] = ACTIONS(644), + [anon_sym_mod] = ACTIONS(644), + [anon_sym_pub] = ACTIONS(644), + [anon_sym_return] = ACTIONS(644), + [anon_sym_static] = ACTIONS(644), + [anon_sym_struct] = ACTIONS(644), + [anon_sym_trait] = ACTIONS(644), + [anon_sym_type] = ACTIONS(644), + [anon_sym_union] = ACTIONS(644), + [anon_sym_unsafe] = ACTIONS(644), + [anon_sym_use] = ACTIONS(644), + [anon_sym_where] = ACTIONS(644), + [anon_sym_while] = ACTIONS(644), + [sym_mutable_specifier] = ACTIONS(644), + [sym_integer_literal] = ACTIONS(667), + [aux_sym_string_literal_token1] = ACTIONS(670), + [sym_char_literal] = ACTIONS(667), + [anon_sym_true] = ACTIONS(673), + [anon_sym_false] = ACTIONS(673), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(644), + [sym_super] = ACTIONS(644), + [sym_crate] = ACTIONS(644), + [sym_metavariable] = ACTIONS(676), + [sym__raw_string_literal_start] = ACTIONS(679), + [sym_float_literal] = ACTIONS(667), }, [STATE(76)] = { - [sym__token_pattern] = STATE(156), - [sym_token_tree_pattern] = STATE(154), - [sym_token_binding_pattern] = STATE(154), - [sym_token_repetition_pattern] = STATE(154), - [sym__literal] = STATE(154), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym__token_pattern] = STATE(351), + [sym_token_tree_pattern] = STATE(377), + [sym_token_binding_pattern] = STATE(377), + [sym_token_repetition_pattern] = STATE(377), + [sym__literal] = STATE(377), + [sym_string_literal] = STATE(365), + [sym_raw_string_literal] = STATE(365), + [sym_boolean_literal] = STATE(365), [sym_line_comment] = STATE(76), [sym_block_comment] = STATE(76), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_RPAREN] = ACTIONS(639), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(607), - [anon_sym_i8] = ACTIONS(607), - [anon_sym_u16] = ACTIONS(607), - [anon_sym_i16] = ACTIONS(607), - [anon_sym_u32] = ACTIONS(607), - [anon_sym_i32] = ACTIONS(607), - [anon_sym_u64] = ACTIONS(607), - [anon_sym_i64] = ACTIONS(607), - [anon_sym_u128] = ACTIONS(607), - [anon_sym_i128] = ACTIONS(607), - [anon_sym_isize] = ACTIONS(607), - [anon_sym_usize] = ACTIONS(607), - [anon_sym_f32] = ACTIONS(607), - [anon_sym_f64] = ACTIONS(607), - [anon_sym_bool] = ACTIONS(607), - [anon_sym_str] = ACTIONS(607), - [anon_sym_char] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_async] = ACTIONS(607), - [anon_sym_await] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_const] = ACTIONS(607), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_default] = ACTIONS(607), - [anon_sym_enum] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(607), - [anon_sym_for] = ACTIONS(607), - [anon_sym_gen] = ACTIONS(607), - [anon_sym_if] = ACTIONS(607), - [anon_sym_impl] = ACTIONS(607), - [anon_sym_let] = ACTIONS(607), - [anon_sym_loop] = ACTIONS(607), - [anon_sym_match] = ACTIONS(607), - [anon_sym_mod] = ACTIONS(607), - [anon_sym_pub] = ACTIONS(607), - [anon_sym_return] = ACTIONS(607), - [anon_sym_static] = ACTIONS(607), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_trait] = ACTIONS(607), - [anon_sym_type] = ACTIONS(607), - [anon_sym_union] = ACTIONS(607), - [anon_sym_unsafe] = ACTIONS(607), - [anon_sym_use] = ACTIONS(607), - [anon_sym_where] = ACTIONS(607), - [anon_sym_while] = ACTIONS(607), - [sym_mutable_specifier] = ACTIONS(607), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(607), - [sym_super] = ACTIONS(607), - [sym_crate] = ACTIONS(607), - [sym_metavariable] = ACTIONS(629), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym_token_tree_pattern_repeat1] = STATE(70), + [aux_sym__non_special_token_repeat1] = STATE(347), + [sym_identifier] = ACTIONS(614), + [anon_sym_SEMI] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(618), + [anon_sym_LBRACK] = ACTIONS(622), + [anon_sym_LBRACE] = ACTIONS(624), + [anon_sym_RBRACE] = ACTIONS(640), + [anon_sym_EQ_GT] = ACTIONS(616), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(628), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_u8] = ACTIONS(614), + [anon_sym_i8] = ACTIONS(614), + [anon_sym_u16] = ACTIONS(614), + [anon_sym_i16] = ACTIONS(614), + [anon_sym_u32] = ACTIONS(614), + [anon_sym_i32] = ACTIONS(614), + [anon_sym_u64] = ACTIONS(614), + [anon_sym_i64] = ACTIONS(614), + [anon_sym_u128] = ACTIONS(614), + [anon_sym_i128] = ACTIONS(614), + [anon_sym_isize] = ACTIONS(614), + [anon_sym_usize] = ACTIONS(614), + [anon_sym_f32] = ACTIONS(614), + [anon_sym_f64] = ACTIONS(614), + [anon_sym_bool] = ACTIONS(614), + [anon_sym_str] = ACTIONS(614), + [anon_sym_char] = ACTIONS(614), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_BANG] = ACTIONS(626), + [anon_sym_AMP] = ACTIONS(626), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(616), + [anon_sym_PIPE_PIPE] = ACTIONS(616), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_PLUS_EQ] = ACTIONS(616), + [anon_sym_DASH_EQ] = ACTIONS(616), + [anon_sym_STAR_EQ] = ACTIONS(616), + [anon_sym_SLASH_EQ] = ACTIONS(616), + [anon_sym_PERCENT_EQ] = ACTIONS(616), + [anon_sym_CARET_EQ] = ACTIONS(616), + [anon_sym_AMP_EQ] = ACTIONS(616), + [anon_sym_PIPE_EQ] = ACTIONS(616), + [anon_sym_LT_LT_EQ] = ACTIONS(616), + [anon_sym_GT_GT_EQ] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(616), + [anon_sym_BANG_EQ] = ACTIONS(616), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT_EQ] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(616), + [anon_sym_AT] = ACTIONS(616), + [anon_sym__] = ACTIONS(626), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + [anon_sym_DOT_DOT_EQ] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(616), + [anon_sym_COLON_COLON] = ACTIONS(616), + [anon_sym_DASH_GT] = ACTIONS(616), + [anon_sym_POUND] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(614), + [anon_sym_as] = ACTIONS(614), + [anon_sym_async] = ACTIONS(614), + [anon_sym_await] = ACTIONS(614), + [anon_sym_break] = ACTIONS(614), + [anon_sym_const] = ACTIONS(614), + [anon_sym_continue] = ACTIONS(614), + [anon_sym_default] = ACTIONS(614), + [anon_sym_enum] = ACTIONS(614), + [anon_sym_fn] = ACTIONS(614), + [anon_sym_for] = ACTIONS(614), + [anon_sym_gen] = ACTIONS(614), + [anon_sym_if] = ACTIONS(614), + [anon_sym_impl] = ACTIONS(614), + [anon_sym_let] = ACTIONS(614), + [anon_sym_loop] = ACTIONS(614), + [anon_sym_match] = ACTIONS(614), + [anon_sym_mod] = ACTIONS(614), + [anon_sym_pub] = ACTIONS(614), + [anon_sym_return] = ACTIONS(614), + [anon_sym_static] = ACTIONS(614), + [anon_sym_struct] = ACTIONS(614), + [anon_sym_trait] = ACTIONS(614), + [anon_sym_type] = ACTIONS(614), + [anon_sym_union] = ACTIONS(614), + [anon_sym_unsafe] = ACTIONS(614), + [anon_sym_use] = ACTIONS(614), + [anon_sym_where] = ACTIONS(614), + [anon_sym_while] = ACTIONS(614), + [sym_mutable_specifier] = ACTIONS(614), + [sym_integer_literal] = ACTIONS(630), + [aux_sym_string_literal_token1] = ACTIONS(632), + [sym_char_literal] = ACTIONS(630), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(614), + [sym_super] = ACTIONS(614), + [sym_crate] = ACTIONS(614), + [sym_metavariable] = ACTIONS(636), + [sym__raw_string_literal_start] = ACTIONS(638), + [sym_float_literal] = ACTIONS(630), }, [STATE(77)] = { - [sym__token_pattern] = STATE(156), - [sym_token_tree_pattern] = STATE(154), - [sym_token_binding_pattern] = STATE(154), - [sym_token_repetition_pattern] = STATE(154), - [sym__literal] = STATE(154), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym__token_pattern] = STATE(351), + [sym_token_tree_pattern] = STATE(377), + [sym_token_binding_pattern] = STATE(377), + [sym_token_repetition_pattern] = STATE(377), + [sym__literal] = STATE(377), + [sym_string_literal] = STATE(365), + [sym_raw_string_literal] = STATE(365), + [sym_boolean_literal] = STATE(365), [sym_line_comment] = STATE(77), [sym_block_comment] = STATE(77), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_RBRACK] = ACTIONS(639), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(607), - [anon_sym_i8] = ACTIONS(607), - [anon_sym_u16] = ACTIONS(607), - [anon_sym_i16] = ACTIONS(607), - [anon_sym_u32] = ACTIONS(607), - [anon_sym_i32] = ACTIONS(607), - [anon_sym_u64] = ACTIONS(607), - [anon_sym_i64] = ACTIONS(607), - [anon_sym_u128] = ACTIONS(607), - [anon_sym_i128] = ACTIONS(607), - [anon_sym_isize] = ACTIONS(607), - [anon_sym_usize] = ACTIONS(607), - [anon_sym_f32] = ACTIONS(607), - [anon_sym_f64] = ACTIONS(607), - [anon_sym_bool] = ACTIONS(607), - [anon_sym_str] = ACTIONS(607), - [anon_sym_char] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_async] = ACTIONS(607), - [anon_sym_await] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_const] = ACTIONS(607), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_default] = ACTIONS(607), - [anon_sym_enum] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(607), - [anon_sym_for] = ACTIONS(607), - [anon_sym_gen] = ACTIONS(607), - [anon_sym_if] = ACTIONS(607), - [anon_sym_impl] = ACTIONS(607), - [anon_sym_let] = ACTIONS(607), - [anon_sym_loop] = ACTIONS(607), - [anon_sym_match] = ACTIONS(607), - [anon_sym_mod] = ACTIONS(607), - [anon_sym_pub] = ACTIONS(607), - [anon_sym_return] = ACTIONS(607), - [anon_sym_static] = ACTIONS(607), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_trait] = ACTIONS(607), - [anon_sym_type] = ACTIONS(607), - [anon_sym_union] = ACTIONS(607), - [anon_sym_unsafe] = ACTIONS(607), - [anon_sym_use] = ACTIONS(607), - [anon_sym_where] = ACTIONS(607), - [anon_sym_while] = ACTIONS(607), - [sym_mutable_specifier] = ACTIONS(607), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(607), - [sym_super] = ACTIONS(607), - [sym_crate] = ACTIONS(607), - [sym_metavariable] = ACTIONS(629), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym_token_tree_pattern_repeat1] = STATE(80), + [aux_sym__non_special_token_repeat1] = STATE(347), + [sym_identifier] = ACTIONS(614), + [anon_sym_SEMI] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(618), + [anon_sym_RPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(622), + [anon_sym_LBRACE] = ACTIONS(624), + [anon_sym_EQ_GT] = ACTIONS(616), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(628), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_u8] = ACTIONS(614), + [anon_sym_i8] = ACTIONS(614), + [anon_sym_u16] = ACTIONS(614), + [anon_sym_i16] = ACTIONS(614), + [anon_sym_u32] = ACTIONS(614), + [anon_sym_i32] = ACTIONS(614), + [anon_sym_u64] = ACTIONS(614), + [anon_sym_i64] = ACTIONS(614), + [anon_sym_u128] = ACTIONS(614), + [anon_sym_i128] = ACTIONS(614), + [anon_sym_isize] = ACTIONS(614), + [anon_sym_usize] = ACTIONS(614), + [anon_sym_f32] = ACTIONS(614), + [anon_sym_f64] = ACTIONS(614), + [anon_sym_bool] = ACTIONS(614), + [anon_sym_str] = ACTIONS(614), + [anon_sym_char] = ACTIONS(614), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_BANG] = ACTIONS(626), + [anon_sym_AMP] = ACTIONS(626), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(616), + [anon_sym_PIPE_PIPE] = ACTIONS(616), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_PLUS_EQ] = ACTIONS(616), + [anon_sym_DASH_EQ] = ACTIONS(616), + [anon_sym_STAR_EQ] = ACTIONS(616), + [anon_sym_SLASH_EQ] = ACTIONS(616), + [anon_sym_PERCENT_EQ] = ACTIONS(616), + [anon_sym_CARET_EQ] = ACTIONS(616), + [anon_sym_AMP_EQ] = ACTIONS(616), + [anon_sym_PIPE_EQ] = ACTIONS(616), + [anon_sym_LT_LT_EQ] = ACTIONS(616), + [anon_sym_GT_GT_EQ] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(616), + [anon_sym_BANG_EQ] = ACTIONS(616), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT_EQ] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(616), + [anon_sym_AT] = ACTIONS(616), + [anon_sym__] = ACTIONS(626), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + [anon_sym_DOT_DOT_EQ] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(616), + [anon_sym_COLON_COLON] = ACTIONS(616), + [anon_sym_DASH_GT] = ACTIONS(616), + [anon_sym_POUND] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(614), + [anon_sym_as] = ACTIONS(614), + [anon_sym_async] = ACTIONS(614), + [anon_sym_await] = ACTIONS(614), + [anon_sym_break] = ACTIONS(614), + [anon_sym_const] = ACTIONS(614), + [anon_sym_continue] = ACTIONS(614), + [anon_sym_default] = ACTIONS(614), + [anon_sym_enum] = ACTIONS(614), + [anon_sym_fn] = ACTIONS(614), + [anon_sym_for] = ACTIONS(614), + [anon_sym_gen] = ACTIONS(614), + [anon_sym_if] = ACTIONS(614), + [anon_sym_impl] = ACTIONS(614), + [anon_sym_let] = ACTIONS(614), + [anon_sym_loop] = ACTIONS(614), + [anon_sym_match] = ACTIONS(614), + [anon_sym_mod] = ACTIONS(614), + [anon_sym_pub] = ACTIONS(614), + [anon_sym_return] = ACTIONS(614), + [anon_sym_static] = ACTIONS(614), + [anon_sym_struct] = ACTIONS(614), + [anon_sym_trait] = ACTIONS(614), + [anon_sym_type] = ACTIONS(614), + [anon_sym_union] = ACTIONS(614), + [anon_sym_unsafe] = ACTIONS(614), + [anon_sym_use] = ACTIONS(614), + [anon_sym_where] = ACTIONS(614), + [anon_sym_while] = ACTIONS(614), + [sym_mutable_specifier] = ACTIONS(614), + [sym_integer_literal] = ACTIONS(630), + [aux_sym_string_literal_token1] = ACTIONS(632), + [sym_char_literal] = ACTIONS(630), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(614), + [sym_super] = ACTIONS(614), + [sym_crate] = ACTIONS(614), + [sym_metavariable] = ACTIONS(636), + [sym__raw_string_literal_start] = ACTIONS(638), + [sym_float_literal] = ACTIONS(630), }, [STATE(78)] = { - [sym__token_pattern] = STATE(156), - [sym_token_tree_pattern] = STATE(154), - [sym_token_binding_pattern] = STATE(154), - [sym_token_repetition_pattern] = STATE(154), - [sym__literal] = STATE(154), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym__token_pattern] = STATE(351), + [sym_token_tree_pattern] = STATE(377), + [sym_token_binding_pattern] = STATE(377), + [sym_token_repetition_pattern] = STATE(377), + [sym__literal] = STATE(377), + [sym_string_literal] = STATE(365), + [sym_raw_string_literal] = STATE(365), + [sym_boolean_literal] = STATE(365), [sym_line_comment] = STATE(78), [sym_block_comment] = STATE(78), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_RBRACE] = ACTIONS(639), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(607), - [anon_sym_i8] = ACTIONS(607), - [anon_sym_u16] = ACTIONS(607), - [anon_sym_i16] = ACTIONS(607), - [anon_sym_u32] = ACTIONS(607), - [anon_sym_i32] = ACTIONS(607), - [anon_sym_u64] = ACTIONS(607), - [anon_sym_i64] = ACTIONS(607), - [anon_sym_u128] = ACTIONS(607), - [anon_sym_i128] = ACTIONS(607), - [anon_sym_isize] = ACTIONS(607), - [anon_sym_usize] = ACTIONS(607), - [anon_sym_f32] = ACTIONS(607), - [anon_sym_f64] = ACTIONS(607), - [anon_sym_bool] = ACTIONS(607), - [anon_sym_str] = ACTIONS(607), - [anon_sym_char] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_async] = ACTIONS(607), - [anon_sym_await] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_const] = ACTIONS(607), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_default] = ACTIONS(607), - [anon_sym_enum] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(607), - [anon_sym_for] = ACTIONS(607), - [anon_sym_gen] = ACTIONS(607), - [anon_sym_if] = ACTIONS(607), - [anon_sym_impl] = ACTIONS(607), - [anon_sym_let] = ACTIONS(607), - [anon_sym_loop] = ACTIONS(607), - [anon_sym_match] = ACTIONS(607), - [anon_sym_mod] = ACTIONS(607), - [anon_sym_pub] = ACTIONS(607), - [anon_sym_return] = ACTIONS(607), - [anon_sym_static] = ACTIONS(607), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_trait] = ACTIONS(607), - [anon_sym_type] = ACTIONS(607), - [anon_sym_union] = ACTIONS(607), - [anon_sym_unsafe] = ACTIONS(607), - [anon_sym_use] = ACTIONS(607), - [anon_sym_where] = ACTIONS(607), - [anon_sym_while] = ACTIONS(607), - [sym_mutable_specifier] = ACTIONS(607), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(607), - [sym_super] = ACTIONS(607), - [sym_crate] = ACTIONS(607), - [sym_metavariable] = ACTIONS(629), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym_token_tree_pattern_repeat1] = STATE(81), + [aux_sym__non_special_token_repeat1] = STATE(347), + [sym_identifier] = ACTIONS(614), + [anon_sym_SEMI] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(618), + [anon_sym_LBRACK] = ACTIONS(622), + [anon_sym_RBRACK] = ACTIONS(682), + [anon_sym_LBRACE] = ACTIONS(624), + [anon_sym_EQ_GT] = ACTIONS(616), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(628), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_u8] = ACTIONS(614), + [anon_sym_i8] = ACTIONS(614), + [anon_sym_u16] = ACTIONS(614), + [anon_sym_i16] = ACTIONS(614), + [anon_sym_u32] = ACTIONS(614), + [anon_sym_i32] = ACTIONS(614), + [anon_sym_u64] = ACTIONS(614), + [anon_sym_i64] = ACTIONS(614), + [anon_sym_u128] = ACTIONS(614), + [anon_sym_i128] = ACTIONS(614), + [anon_sym_isize] = ACTIONS(614), + [anon_sym_usize] = ACTIONS(614), + [anon_sym_f32] = ACTIONS(614), + [anon_sym_f64] = ACTIONS(614), + [anon_sym_bool] = ACTIONS(614), + [anon_sym_str] = ACTIONS(614), + [anon_sym_char] = ACTIONS(614), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_BANG] = ACTIONS(626), + [anon_sym_AMP] = ACTIONS(626), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(616), + [anon_sym_PIPE_PIPE] = ACTIONS(616), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_PLUS_EQ] = ACTIONS(616), + [anon_sym_DASH_EQ] = ACTIONS(616), + [anon_sym_STAR_EQ] = ACTIONS(616), + [anon_sym_SLASH_EQ] = ACTIONS(616), + [anon_sym_PERCENT_EQ] = ACTIONS(616), + [anon_sym_CARET_EQ] = ACTIONS(616), + [anon_sym_AMP_EQ] = ACTIONS(616), + [anon_sym_PIPE_EQ] = ACTIONS(616), + [anon_sym_LT_LT_EQ] = ACTIONS(616), + [anon_sym_GT_GT_EQ] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(616), + [anon_sym_BANG_EQ] = ACTIONS(616), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT_EQ] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(616), + [anon_sym_AT] = ACTIONS(616), + [anon_sym__] = ACTIONS(626), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + [anon_sym_DOT_DOT_EQ] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(616), + [anon_sym_COLON_COLON] = ACTIONS(616), + [anon_sym_DASH_GT] = ACTIONS(616), + [anon_sym_POUND] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(614), + [anon_sym_as] = ACTIONS(614), + [anon_sym_async] = ACTIONS(614), + [anon_sym_await] = ACTIONS(614), + [anon_sym_break] = ACTIONS(614), + [anon_sym_const] = ACTIONS(614), + [anon_sym_continue] = ACTIONS(614), + [anon_sym_default] = ACTIONS(614), + [anon_sym_enum] = ACTIONS(614), + [anon_sym_fn] = ACTIONS(614), + [anon_sym_for] = ACTIONS(614), + [anon_sym_gen] = ACTIONS(614), + [anon_sym_if] = ACTIONS(614), + [anon_sym_impl] = ACTIONS(614), + [anon_sym_let] = ACTIONS(614), + [anon_sym_loop] = ACTIONS(614), + [anon_sym_match] = ACTIONS(614), + [anon_sym_mod] = ACTIONS(614), + [anon_sym_pub] = ACTIONS(614), + [anon_sym_return] = ACTIONS(614), + [anon_sym_static] = ACTIONS(614), + [anon_sym_struct] = ACTIONS(614), + [anon_sym_trait] = ACTIONS(614), + [anon_sym_type] = ACTIONS(614), + [anon_sym_union] = ACTIONS(614), + [anon_sym_unsafe] = ACTIONS(614), + [anon_sym_use] = ACTIONS(614), + [anon_sym_where] = ACTIONS(614), + [anon_sym_while] = ACTIONS(614), + [sym_mutable_specifier] = ACTIONS(614), + [sym_integer_literal] = ACTIONS(630), + [aux_sym_string_literal_token1] = ACTIONS(632), + [sym_char_literal] = ACTIONS(630), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(614), + [sym_super] = ACTIONS(614), + [sym_crate] = ACTIONS(614), + [sym_metavariable] = ACTIONS(636), + [sym__raw_string_literal_start] = ACTIONS(638), + [sym_float_literal] = ACTIONS(630), }, [STATE(79)] = { - [sym__token_pattern] = STATE(156), - [sym_token_tree_pattern] = STATE(154), - [sym_token_binding_pattern] = STATE(154), - [sym_token_repetition_pattern] = STATE(154), - [sym__literal] = STATE(154), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym__token_pattern] = STATE(351), + [sym_token_tree_pattern] = STATE(377), + [sym_token_binding_pattern] = STATE(377), + [sym_token_repetition_pattern] = STATE(377), + [sym__literal] = STATE(377), + [sym_string_literal] = STATE(365), + [sym_raw_string_literal] = STATE(365), + [sym_boolean_literal] = STATE(365), [sym_line_comment] = STATE(79), [sym_block_comment] = STATE(79), - [aux_sym_token_tree_pattern_repeat1] = STATE(80), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_RPAREN] = ACTIONS(633), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(607), - [anon_sym_i8] = ACTIONS(607), - [anon_sym_u16] = ACTIONS(607), - [anon_sym_i16] = ACTIONS(607), - [anon_sym_u32] = ACTIONS(607), - [anon_sym_i32] = ACTIONS(607), - [anon_sym_u64] = ACTIONS(607), - [anon_sym_i64] = ACTIONS(607), - [anon_sym_u128] = ACTIONS(607), - [anon_sym_i128] = ACTIONS(607), - [anon_sym_isize] = ACTIONS(607), - [anon_sym_usize] = ACTIONS(607), - [anon_sym_f32] = ACTIONS(607), - [anon_sym_f64] = ACTIONS(607), - [anon_sym_bool] = ACTIONS(607), - [anon_sym_str] = ACTIONS(607), - [anon_sym_char] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_async] = ACTIONS(607), - [anon_sym_await] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_const] = ACTIONS(607), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_default] = ACTIONS(607), - [anon_sym_enum] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(607), - [anon_sym_for] = ACTIONS(607), - [anon_sym_gen] = ACTIONS(607), - [anon_sym_if] = ACTIONS(607), - [anon_sym_impl] = ACTIONS(607), - [anon_sym_let] = ACTIONS(607), - [anon_sym_loop] = ACTIONS(607), - [anon_sym_match] = ACTIONS(607), - [anon_sym_mod] = ACTIONS(607), - [anon_sym_pub] = ACTIONS(607), - [anon_sym_return] = ACTIONS(607), - [anon_sym_static] = ACTIONS(607), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_trait] = ACTIONS(607), - [anon_sym_type] = ACTIONS(607), - [anon_sym_union] = ACTIONS(607), - [anon_sym_unsafe] = ACTIONS(607), - [anon_sym_use] = ACTIONS(607), - [anon_sym_where] = ACTIONS(607), - [anon_sym_while] = ACTIONS(607), - [sym_mutable_specifier] = ACTIONS(607), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(607), - [sym_super] = ACTIONS(607), - [sym_crate] = ACTIONS(607), - [sym_metavariable] = ACTIONS(629), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym_token_tree_pattern_repeat1] = STATE(82), + [aux_sym__non_special_token_repeat1] = STATE(347), + [sym_identifier] = ACTIONS(614), + [anon_sym_SEMI] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(618), + [anon_sym_LBRACK] = ACTIONS(622), + [anon_sym_LBRACE] = ACTIONS(624), + [anon_sym_RBRACE] = ACTIONS(682), + [anon_sym_EQ_GT] = ACTIONS(616), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(628), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_u8] = ACTIONS(614), + [anon_sym_i8] = ACTIONS(614), + [anon_sym_u16] = ACTIONS(614), + [anon_sym_i16] = ACTIONS(614), + [anon_sym_u32] = ACTIONS(614), + [anon_sym_i32] = ACTIONS(614), + [anon_sym_u64] = ACTIONS(614), + [anon_sym_i64] = ACTIONS(614), + [anon_sym_u128] = ACTIONS(614), + [anon_sym_i128] = ACTIONS(614), + [anon_sym_isize] = ACTIONS(614), + [anon_sym_usize] = ACTIONS(614), + [anon_sym_f32] = ACTIONS(614), + [anon_sym_f64] = ACTIONS(614), + [anon_sym_bool] = ACTIONS(614), + [anon_sym_str] = ACTIONS(614), + [anon_sym_char] = ACTIONS(614), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_BANG] = ACTIONS(626), + [anon_sym_AMP] = ACTIONS(626), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(616), + [anon_sym_PIPE_PIPE] = ACTIONS(616), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_PLUS_EQ] = ACTIONS(616), + [anon_sym_DASH_EQ] = ACTIONS(616), + [anon_sym_STAR_EQ] = ACTIONS(616), + [anon_sym_SLASH_EQ] = ACTIONS(616), + [anon_sym_PERCENT_EQ] = ACTIONS(616), + [anon_sym_CARET_EQ] = ACTIONS(616), + [anon_sym_AMP_EQ] = ACTIONS(616), + [anon_sym_PIPE_EQ] = ACTIONS(616), + [anon_sym_LT_LT_EQ] = ACTIONS(616), + [anon_sym_GT_GT_EQ] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(616), + [anon_sym_BANG_EQ] = ACTIONS(616), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT_EQ] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(616), + [anon_sym_AT] = ACTIONS(616), + [anon_sym__] = ACTIONS(626), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + [anon_sym_DOT_DOT_EQ] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(616), + [anon_sym_COLON_COLON] = ACTIONS(616), + [anon_sym_DASH_GT] = ACTIONS(616), + [anon_sym_POUND] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(614), + [anon_sym_as] = ACTIONS(614), + [anon_sym_async] = ACTIONS(614), + [anon_sym_await] = ACTIONS(614), + [anon_sym_break] = ACTIONS(614), + [anon_sym_const] = ACTIONS(614), + [anon_sym_continue] = ACTIONS(614), + [anon_sym_default] = ACTIONS(614), + [anon_sym_enum] = ACTIONS(614), + [anon_sym_fn] = ACTIONS(614), + [anon_sym_for] = ACTIONS(614), + [anon_sym_gen] = ACTIONS(614), + [anon_sym_if] = ACTIONS(614), + [anon_sym_impl] = ACTIONS(614), + [anon_sym_let] = ACTIONS(614), + [anon_sym_loop] = ACTIONS(614), + [anon_sym_match] = ACTIONS(614), + [anon_sym_mod] = ACTIONS(614), + [anon_sym_pub] = ACTIONS(614), + [anon_sym_return] = ACTIONS(614), + [anon_sym_static] = ACTIONS(614), + [anon_sym_struct] = ACTIONS(614), + [anon_sym_trait] = ACTIONS(614), + [anon_sym_type] = ACTIONS(614), + [anon_sym_union] = ACTIONS(614), + [anon_sym_unsafe] = ACTIONS(614), + [anon_sym_use] = ACTIONS(614), + [anon_sym_where] = ACTIONS(614), + [anon_sym_while] = ACTIONS(614), + [sym_mutable_specifier] = ACTIONS(614), + [sym_integer_literal] = ACTIONS(630), + [aux_sym_string_literal_token1] = ACTIONS(632), + [sym_char_literal] = ACTIONS(630), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(614), + [sym_super] = ACTIONS(614), + [sym_crate] = ACTIONS(614), + [sym_metavariable] = ACTIONS(636), + [sym__raw_string_literal_start] = ACTIONS(638), + [sym_float_literal] = ACTIONS(630), }, [STATE(80)] = { - [sym__token_pattern] = STATE(156), - [sym_token_tree_pattern] = STATE(154), - [sym_token_binding_pattern] = STATE(154), - [sym_token_repetition_pattern] = STATE(154), - [sym__literal] = STATE(154), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym__token_pattern] = STATE(351), + [sym_token_tree_pattern] = STATE(377), + [sym_token_binding_pattern] = STATE(377), + [sym_token_repetition_pattern] = STATE(377), + [sym__literal] = STATE(377), + [sym_string_literal] = STATE(365), + [sym_raw_string_literal] = STATE(365), + [sym_boolean_literal] = STATE(365), [sym_line_comment] = STATE(80), [sym_block_comment] = STATE(80), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_RPAREN] = ACTIONS(641), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(607), - [anon_sym_i8] = ACTIONS(607), - [anon_sym_u16] = ACTIONS(607), - [anon_sym_i16] = ACTIONS(607), - [anon_sym_u32] = ACTIONS(607), - [anon_sym_i32] = ACTIONS(607), - [anon_sym_u64] = ACTIONS(607), - [anon_sym_i64] = ACTIONS(607), - [anon_sym_u128] = ACTIONS(607), - [anon_sym_i128] = ACTIONS(607), - [anon_sym_isize] = ACTIONS(607), - [anon_sym_usize] = ACTIONS(607), - [anon_sym_f32] = ACTIONS(607), - [anon_sym_f64] = ACTIONS(607), - [anon_sym_bool] = ACTIONS(607), - [anon_sym_str] = ACTIONS(607), - [anon_sym_char] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_async] = ACTIONS(607), - [anon_sym_await] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_const] = ACTIONS(607), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_default] = ACTIONS(607), - [anon_sym_enum] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(607), - [anon_sym_for] = ACTIONS(607), - [anon_sym_gen] = ACTIONS(607), - [anon_sym_if] = ACTIONS(607), - [anon_sym_impl] = ACTIONS(607), - [anon_sym_let] = ACTIONS(607), - [anon_sym_loop] = ACTIONS(607), - [anon_sym_match] = ACTIONS(607), - [anon_sym_mod] = ACTIONS(607), - [anon_sym_pub] = ACTIONS(607), - [anon_sym_return] = ACTIONS(607), - [anon_sym_static] = ACTIONS(607), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_trait] = ACTIONS(607), - [anon_sym_type] = ACTIONS(607), - [anon_sym_union] = ACTIONS(607), - [anon_sym_unsafe] = ACTIONS(607), - [anon_sym_use] = ACTIONS(607), - [anon_sym_where] = ACTIONS(607), - [anon_sym_while] = ACTIONS(607), - [sym_mutable_specifier] = ACTIONS(607), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(607), - [sym_super] = ACTIONS(607), - [sym_crate] = ACTIONS(607), - [sym_metavariable] = ACTIONS(629), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym_token_tree_pattern_repeat1] = STATE(70), + [aux_sym__non_special_token_repeat1] = STATE(347), + [sym_identifier] = ACTIONS(614), + [anon_sym_SEMI] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(618), + [anon_sym_RPAREN] = ACTIONS(684), + [anon_sym_LBRACK] = ACTIONS(622), + [anon_sym_LBRACE] = ACTIONS(624), + [anon_sym_EQ_GT] = ACTIONS(616), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(628), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_u8] = ACTIONS(614), + [anon_sym_i8] = ACTIONS(614), + [anon_sym_u16] = ACTIONS(614), + [anon_sym_i16] = ACTIONS(614), + [anon_sym_u32] = ACTIONS(614), + [anon_sym_i32] = ACTIONS(614), + [anon_sym_u64] = ACTIONS(614), + [anon_sym_i64] = ACTIONS(614), + [anon_sym_u128] = ACTIONS(614), + [anon_sym_i128] = ACTIONS(614), + [anon_sym_isize] = ACTIONS(614), + [anon_sym_usize] = ACTIONS(614), + [anon_sym_f32] = ACTIONS(614), + [anon_sym_f64] = ACTIONS(614), + [anon_sym_bool] = ACTIONS(614), + [anon_sym_str] = ACTIONS(614), + [anon_sym_char] = ACTIONS(614), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_BANG] = ACTIONS(626), + [anon_sym_AMP] = ACTIONS(626), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(616), + [anon_sym_PIPE_PIPE] = ACTIONS(616), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_PLUS_EQ] = ACTIONS(616), + [anon_sym_DASH_EQ] = ACTIONS(616), + [anon_sym_STAR_EQ] = ACTIONS(616), + [anon_sym_SLASH_EQ] = ACTIONS(616), + [anon_sym_PERCENT_EQ] = ACTIONS(616), + [anon_sym_CARET_EQ] = ACTIONS(616), + [anon_sym_AMP_EQ] = ACTIONS(616), + [anon_sym_PIPE_EQ] = ACTIONS(616), + [anon_sym_LT_LT_EQ] = ACTIONS(616), + [anon_sym_GT_GT_EQ] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(616), + [anon_sym_BANG_EQ] = ACTIONS(616), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT_EQ] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(616), + [anon_sym_AT] = ACTIONS(616), + [anon_sym__] = ACTIONS(626), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + [anon_sym_DOT_DOT_EQ] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(616), + [anon_sym_COLON_COLON] = ACTIONS(616), + [anon_sym_DASH_GT] = ACTIONS(616), + [anon_sym_POUND] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(614), + [anon_sym_as] = ACTIONS(614), + [anon_sym_async] = ACTIONS(614), + [anon_sym_await] = ACTIONS(614), + [anon_sym_break] = ACTIONS(614), + [anon_sym_const] = ACTIONS(614), + [anon_sym_continue] = ACTIONS(614), + [anon_sym_default] = ACTIONS(614), + [anon_sym_enum] = ACTIONS(614), + [anon_sym_fn] = ACTIONS(614), + [anon_sym_for] = ACTIONS(614), + [anon_sym_gen] = ACTIONS(614), + [anon_sym_if] = ACTIONS(614), + [anon_sym_impl] = ACTIONS(614), + [anon_sym_let] = ACTIONS(614), + [anon_sym_loop] = ACTIONS(614), + [anon_sym_match] = ACTIONS(614), + [anon_sym_mod] = ACTIONS(614), + [anon_sym_pub] = ACTIONS(614), + [anon_sym_return] = ACTIONS(614), + [anon_sym_static] = ACTIONS(614), + [anon_sym_struct] = ACTIONS(614), + [anon_sym_trait] = ACTIONS(614), + [anon_sym_type] = ACTIONS(614), + [anon_sym_union] = ACTIONS(614), + [anon_sym_unsafe] = ACTIONS(614), + [anon_sym_use] = ACTIONS(614), + [anon_sym_where] = ACTIONS(614), + [anon_sym_while] = ACTIONS(614), + [sym_mutable_specifier] = ACTIONS(614), + [sym_integer_literal] = ACTIONS(630), + [aux_sym_string_literal_token1] = ACTIONS(632), + [sym_char_literal] = ACTIONS(630), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(614), + [sym_super] = ACTIONS(614), + [sym_crate] = ACTIONS(614), + [sym_metavariable] = ACTIONS(636), + [sym__raw_string_literal_start] = ACTIONS(638), + [sym_float_literal] = ACTIONS(630), }, [STATE(81)] = { - [sym__token_pattern] = STATE(156), - [sym_token_tree_pattern] = STATE(154), - [sym_token_binding_pattern] = STATE(154), - [sym_token_repetition_pattern] = STATE(154), - [sym__literal] = STATE(154), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym__token_pattern] = STATE(351), + [sym_token_tree_pattern] = STATE(377), + [sym_token_binding_pattern] = STATE(377), + [sym_token_repetition_pattern] = STATE(377), + [sym__literal] = STATE(377), + [sym_string_literal] = STATE(365), + [sym_raw_string_literal] = STATE(365), + [sym_boolean_literal] = STATE(365), [sym_line_comment] = STATE(81), [sym_block_comment] = STATE(81), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_RBRACK] = ACTIONS(641), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(607), - [anon_sym_i8] = ACTIONS(607), - [anon_sym_u16] = ACTIONS(607), - [anon_sym_i16] = ACTIONS(607), - [anon_sym_u32] = ACTIONS(607), - [anon_sym_i32] = ACTIONS(607), - [anon_sym_u64] = ACTIONS(607), - [anon_sym_i64] = ACTIONS(607), - [anon_sym_u128] = ACTIONS(607), - [anon_sym_i128] = ACTIONS(607), - [anon_sym_isize] = ACTIONS(607), - [anon_sym_usize] = ACTIONS(607), - [anon_sym_f32] = ACTIONS(607), - [anon_sym_f64] = ACTIONS(607), - [anon_sym_bool] = ACTIONS(607), - [anon_sym_str] = ACTIONS(607), - [anon_sym_char] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_async] = ACTIONS(607), - [anon_sym_await] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_const] = ACTIONS(607), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_default] = ACTIONS(607), - [anon_sym_enum] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(607), - [anon_sym_for] = ACTIONS(607), - [anon_sym_gen] = ACTIONS(607), - [anon_sym_if] = ACTIONS(607), - [anon_sym_impl] = ACTIONS(607), - [anon_sym_let] = ACTIONS(607), - [anon_sym_loop] = ACTIONS(607), - [anon_sym_match] = ACTIONS(607), - [anon_sym_mod] = ACTIONS(607), - [anon_sym_pub] = ACTIONS(607), - [anon_sym_return] = ACTIONS(607), - [anon_sym_static] = ACTIONS(607), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_trait] = ACTIONS(607), - [anon_sym_type] = ACTIONS(607), - [anon_sym_union] = ACTIONS(607), - [anon_sym_unsafe] = ACTIONS(607), - [anon_sym_use] = ACTIONS(607), - [anon_sym_where] = ACTIONS(607), - [anon_sym_while] = ACTIONS(607), - [sym_mutable_specifier] = ACTIONS(607), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(607), - [sym_super] = ACTIONS(607), - [sym_crate] = ACTIONS(607), - [sym_metavariable] = ACTIONS(629), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym_token_tree_pattern_repeat1] = STATE(70), + [aux_sym__non_special_token_repeat1] = STATE(347), + [sym_identifier] = ACTIONS(614), + [anon_sym_SEMI] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(618), + [anon_sym_LBRACK] = ACTIONS(622), + [anon_sym_RBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(624), + [anon_sym_EQ_GT] = ACTIONS(616), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(628), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_u8] = ACTIONS(614), + [anon_sym_i8] = ACTIONS(614), + [anon_sym_u16] = ACTIONS(614), + [anon_sym_i16] = ACTIONS(614), + [anon_sym_u32] = ACTIONS(614), + [anon_sym_i32] = ACTIONS(614), + [anon_sym_u64] = ACTIONS(614), + [anon_sym_i64] = ACTIONS(614), + [anon_sym_u128] = ACTIONS(614), + [anon_sym_i128] = ACTIONS(614), + [anon_sym_isize] = ACTIONS(614), + [anon_sym_usize] = ACTIONS(614), + [anon_sym_f32] = ACTIONS(614), + [anon_sym_f64] = ACTIONS(614), + [anon_sym_bool] = ACTIONS(614), + [anon_sym_str] = ACTIONS(614), + [anon_sym_char] = ACTIONS(614), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_BANG] = ACTIONS(626), + [anon_sym_AMP] = ACTIONS(626), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(616), + [anon_sym_PIPE_PIPE] = ACTIONS(616), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_PLUS_EQ] = ACTIONS(616), + [anon_sym_DASH_EQ] = ACTIONS(616), + [anon_sym_STAR_EQ] = ACTIONS(616), + [anon_sym_SLASH_EQ] = ACTIONS(616), + [anon_sym_PERCENT_EQ] = ACTIONS(616), + [anon_sym_CARET_EQ] = ACTIONS(616), + [anon_sym_AMP_EQ] = ACTIONS(616), + [anon_sym_PIPE_EQ] = ACTIONS(616), + [anon_sym_LT_LT_EQ] = ACTIONS(616), + [anon_sym_GT_GT_EQ] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(616), + [anon_sym_BANG_EQ] = ACTIONS(616), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT_EQ] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(616), + [anon_sym_AT] = ACTIONS(616), + [anon_sym__] = ACTIONS(626), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + [anon_sym_DOT_DOT_EQ] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(616), + [anon_sym_COLON_COLON] = ACTIONS(616), + [anon_sym_DASH_GT] = ACTIONS(616), + [anon_sym_POUND] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(614), + [anon_sym_as] = ACTIONS(614), + [anon_sym_async] = ACTIONS(614), + [anon_sym_await] = ACTIONS(614), + [anon_sym_break] = ACTIONS(614), + [anon_sym_const] = ACTIONS(614), + [anon_sym_continue] = ACTIONS(614), + [anon_sym_default] = ACTIONS(614), + [anon_sym_enum] = ACTIONS(614), + [anon_sym_fn] = ACTIONS(614), + [anon_sym_for] = ACTIONS(614), + [anon_sym_gen] = ACTIONS(614), + [anon_sym_if] = ACTIONS(614), + [anon_sym_impl] = ACTIONS(614), + [anon_sym_let] = ACTIONS(614), + [anon_sym_loop] = ACTIONS(614), + [anon_sym_match] = ACTIONS(614), + [anon_sym_mod] = ACTIONS(614), + [anon_sym_pub] = ACTIONS(614), + [anon_sym_return] = ACTIONS(614), + [anon_sym_static] = ACTIONS(614), + [anon_sym_struct] = ACTIONS(614), + [anon_sym_trait] = ACTIONS(614), + [anon_sym_type] = ACTIONS(614), + [anon_sym_union] = ACTIONS(614), + [anon_sym_unsafe] = ACTIONS(614), + [anon_sym_use] = ACTIONS(614), + [anon_sym_where] = ACTIONS(614), + [anon_sym_while] = ACTIONS(614), + [sym_mutable_specifier] = ACTIONS(614), + [sym_integer_literal] = ACTIONS(630), + [aux_sym_string_literal_token1] = ACTIONS(632), + [sym_char_literal] = ACTIONS(630), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(614), + [sym_super] = ACTIONS(614), + [sym_crate] = ACTIONS(614), + [sym_metavariable] = ACTIONS(636), + [sym__raw_string_literal_start] = ACTIONS(638), + [sym_float_literal] = ACTIONS(630), }, [STATE(82)] = { - [sym__token_pattern] = STATE(156), - [sym_token_tree_pattern] = STATE(154), - [sym_token_binding_pattern] = STATE(154), - [sym_token_repetition_pattern] = STATE(154), - [sym__literal] = STATE(154), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym__token_pattern] = STATE(351), + [sym_token_tree_pattern] = STATE(377), + [sym_token_binding_pattern] = STATE(377), + [sym_token_repetition_pattern] = STATE(377), + [sym__literal] = STATE(377), + [sym_string_literal] = STATE(365), + [sym_raw_string_literal] = STATE(365), + [sym_boolean_literal] = STATE(365), [sym_line_comment] = STATE(82), [sym_block_comment] = STATE(82), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_RBRACE] = ACTIONS(641), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(607), - [anon_sym_i8] = ACTIONS(607), - [anon_sym_u16] = ACTIONS(607), - [anon_sym_i16] = ACTIONS(607), - [anon_sym_u32] = ACTIONS(607), - [anon_sym_i32] = ACTIONS(607), - [anon_sym_u64] = ACTIONS(607), - [anon_sym_i64] = ACTIONS(607), - [anon_sym_u128] = ACTIONS(607), - [anon_sym_i128] = ACTIONS(607), - [anon_sym_isize] = ACTIONS(607), - [anon_sym_usize] = ACTIONS(607), - [anon_sym_f32] = ACTIONS(607), - [anon_sym_f64] = ACTIONS(607), - [anon_sym_bool] = ACTIONS(607), - [anon_sym_str] = ACTIONS(607), - [anon_sym_char] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_async] = ACTIONS(607), - [anon_sym_await] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_const] = ACTIONS(607), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_default] = ACTIONS(607), - [anon_sym_enum] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(607), - [anon_sym_for] = ACTIONS(607), - [anon_sym_gen] = ACTIONS(607), - [anon_sym_if] = ACTIONS(607), - [anon_sym_impl] = ACTIONS(607), - [anon_sym_let] = ACTIONS(607), - [anon_sym_loop] = ACTIONS(607), - [anon_sym_match] = ACTIONS(607), - [anon_sym_mod] = ACTIONS(607), - [anon_sym_pub] = ACTIONS(607), - [anon_sym_return] = ACTIONS(607), - [anon_sym_static] = ACTIONS(607), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_trait] = ACTIONS(607), - [anon_sym_type] = ACTIONS(607), - [anon_sym_union] = ACTIONS(607), - [anon_sym_unsafe] = ACTIONS(607), - [anon_sym_use] = ACTIONS(607), - [anon_sym_where] = ACTIONS(607), - [anon_sym_while] = ACTIONS(607), - [sym_mutable_specifier] = ACTIONS(607), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(607), - [sym_super] = ACTIONS(607), - [sym_crate] = ACTIONS(607), - [sym_metavariable] = ACTIONS(629), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym_token_tree_pattern_repeat1] = STATE(70), + [aux_sym__non_special_token_repeat1] = STATE(347), + [sym_identifier] = ACTIONS(614), + [anon_sym_SEMI] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(618), + [anon_sym_LBRACK] = ACTIONS(622), + [anon_sym_LBRACE] = ACTIONS(624), + [anon_sym_RBRACE] = ACTIONS(684), + [anon_sym_EQ_GT] = ACTIONS(616), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(628), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_u8] = ACTIONS(614), + [anon_sym_i8] = ACTIONS(614), + [anon_sym_u16] = ACTIONS(614), + [anon_sym_i16] = ACTIONS(614), + [anon_sym_u32] = ACTIONS(614), + [anon_sym_i32] = ACTIONS(614), + [anon_sym_u64] = ACTIONS(614), + [anon_sym_i64] = ACTIONS(614), + [anon_sym_u128] = ACTIONS(614), + [anon_sym_i128] = ACTIONS(614), + [anon_sym_isize] = ACTIONS(614), + [anon_sym_usize] = ACTIONS(614), + [anon_sym_f32] = ACTIONS(614), + [anon_sym_f64] = ACTIONS(614), + [anon_sym_bool] = ACTIONS(614), + [anon_sym_str] = ACTIONS(614), + [anon_sym_char] = ACTIONS(614), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_BANG] = ACTIONS(626), + [anon_sym_AMP] = ACTIONS(626), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(616), + [anon_sym_PIPE_PIPE] = ACTIONS(616), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_PLUS_EQ] = ACTIONS(616), + [anon_sym_DASH_EQ] = ACTIONS(616), + [anon_sym_STAR_EQ] = ACTIONS(616), + [anon_sym_SLASH_EQ] = ACTIONS(616), + [anon_sym_PERCENT_EQ] = ACTIONS(616), + [anon_sym_CARET_EQ] = ACTIONS(616), + [anon_sym_AMP_EQ] = ACTIONS(616), + [anon_sym_PIPE_EQ] = ACTIONS(616), + [anon_sym_LT_LT_EQ] = ACTIONS(616), + [anon_sym_GT_GT_EQ] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(616), + [anon_sym_BANG_EQ] = ACTIONS(616), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT_EQ] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(616), + [anon_sym_AT] = ACTIONS(616), + [anon_sym__] = ACTIONS(626), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + [anon_sym_DOT_DOT_EQ] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(616), + [anon_sym_COLON_COLON] = ACTIONS(616), + [anon_sym_DASH_GT] = ACTIONS(616), + [anon_sym_POUND] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(614), + [anon_sym_as] = ACTIONS(614), + [anon_sym_async] = ACTIONS(614), + [anon_sym_await] = ACTIONS(614), + [anon_sym_break] = ACTIONS(614), + [anon_sym_const] = ACTIONS(614), + [anon_sym_continue] = ACTIONS(614), + [anon_sym_default] = ACTIONS(614), + [anon_sym_enum] = ACTIONS(614), + [anon_sym_fn] = ACTIONS(614), + [anon_sym_for] = ACTIONS(614), + [anon_sym_gen] = ACTIONS(614), + [anon_sym_if] = ACTIONS(614), + [anon_sym_impl] = ACTIONS(614), + [anon_sym_let] = ACTIONS(614), + [anon_sym_loop] = ACTIONS(614), + [anon_sym_match] = ACTIONS(614), + [anon_sym_mod] = ACTIONS(614), + [anon_sym_pub] = ACTIONS(614), + [anon_sym_return] = ACTIONS(614), + [anon_sym_static] = ACTIONS(614), + [anon_sym_struct] = ACTIONS(614), + [anon_sym_trait] = ACTIONS(614), + [anon_sym_type] = ACTIONS(614), + [anon_sym_union] = ACTIONS(614), + [anon_sym_unsafe] = ACTIONS(614), + [anon_sym_use] = ACTIONS(614), + [anon_sym_where] = ACTIONS(614), + [anon_sym_while] = ACTIONS(614), + [sym_mutable_specifier] = ACTIONS(614), + [sym_integer_literal] = ACTIONS(630), + [aux_sym_string_literal_token1] = ACTIONS(632), + [sym_char_literal] = ACTIONS(630), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(614), + [sym_super] = ACTIONS(614), + [sym_crate] = ACTIONS(614), + [sym_metavariable] = ACTIONS(636), + [sym__raw_string_literal_start] = ACTIONS(638), + [sym_float_literal] = ACTIONS(630), }, [STATE(83)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym__token_pattern] = STATE(351), + [sym_token_tree_pattern] = STATE(377), + [sym_token_binding_pattern] = STATE(377), + [sym_token_repetition_pattern] = STATE(377), + [sym__literal] = STATE(377), + [sym_string_literal] = STATE(365), + [sym_raw_string_literal] = STATE(365), + [sym_boolean_literal] = STATE(365), [sym_line_comment] = STATE(83), [sym_block_comment] = STATE(83), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(643), - [anon_sym_SEMI] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(649), - [anon_sym_RPAREN] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_RBRACK] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(657), - [anon_sym_RBRACE] = ACTIONS(652), - [anon_sym_EQ_GT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(660), - [anon_sym_DOLLAR] = ACTIONS(663), - [anon_sym_PLUS] = ACTIONS(660), - [anon_sym_STAR] = ACTIONS(660), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_u8] = ACTIONS(643), - [anon_sym_i8] = ACTIONS(643), - [anon_sym_u16] = ACTIONS(643), - [anon_sym_i16] = ACTIONS(643), - [anon_sym_u32] = ACTIONS(643), - [anon_sym_i32] = ACTIONS(643), - [anon_sym_u64] = ACTIONS(643), - [anon_sym_i64] = ACTIONS(643), - [anon_sym_u128] = ACTIONS(643), - [anon_sym_i128] = ACTIONS(643), - [anon_sym_isize] = ACTIONS(643), - [anon_sym_usize] = ACTIONS(643), - [anon_sym_f32] = ACTIONS(643), - [anon_sym_f64] = ACTIONS(643), - [anon_sym_bool] = ACTIONS(643), - [anon_sym_str] = ACTIONS(643), - [anon_sym_char] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(660), - [anon_sym_SLASH] = ACTIONS(660), - [anon_sym_PERCENT] = ACTIONS(660), - [anon_sym_CARET] = ACTIONS(660), - [anon_sym_BANG] = ACTIONS(660), - [anon_sym_AMP] = ACTIONS(660), - [anon_sym_PIPE] = ACTIONS(660), - [anon_sym_AMP_AMP] = ACTIONS(646), - [anon_sym_PIPE_PIPE] = ACTIONS(646), - [anon_sym_LT_LT] = ACTIONS(660), - [anon_sym_GT_GT] = ACTIONS(660), - [anon_sym_PLUS_EQ] = ACTIONS(646), - [anon_sym_DASH_EQ] = ACTIONS(646), - [anon_sym_STAR_EQ] = ACTIONS(646), - [anon_sym_SLASH_EQ] = ACTIONS(646), - [anon_sym_PERCENT_EQ] = ACTIONS(646), - [anon_sym_CARET_EQ] = ACTIONS(646), - [anon_sym_AMP_EQ] = ACTIONS(646), - [anon_sym_PIPE_EQ] = ACTIONS(646), - [anon_sym_LT_LT_EQ] = ACTIONS(646), - [anon_sym_GT_GT_EQ] = ACTIONS(646), - [anon_sym_EQ] = ACTIONS(660), - [anon_sym_EQ_EQ] = ACTIONS(646), - [anon_sym_BANG_EQ] = ACTIONS(646), - [anon_sym_GT] = ACTIONS(660), - [anon_sym_LT] = ACTIONS(660), - [anon_sym_GT_EQ] = ACTIONS(646), - [anon_sym_LT_EQ] = ACTIONS(646), - [anon_sym_AT] = ACTIONS(646), - [anon_sym__] = ACTIONS(660), - [anon_sym_DOT] = ACTIONS(660), - [anon_sym_DOT_DOT] = ACTIONS(660), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_DOT_DOT_EQ] = ACTIONS(646), - [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_COLON_COLON] = ACTIONS(646), - [anon_sym_DASH_GT] = ACTIONS(646), - [anon_sym_POUND] = ACTIONS(646), - [anon_sym_SQUOTE] = ACTIONS(643), - [anon_sym_as] = ACTIONS(643), - [anon_sym_async] = ACTIONS(643), - [anon_sym_await] = ACTIONS(643), - [anon_sym_break] = ACTIONS(643), - [anon_sym_const] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(643), - [anon_sym_default] = ACTIONS(643), - [anon_sym_enum] = ACTIONS(643), - [anon_sym_fn] = ACTIONS(643), - [anon_sym_for] = ACTIONS(643), - [anon_sym_gen] = ACTIONS(643), - [anon_sym_if] = ACTIONS(643), - [anon_sym_impl] = ACTIONS(643), - [anon_sym_let] = ACTIONS(643), - [anon_sym_loop] = ACTIONS(643), - [anon_sym_match] = ACTIONS(643), - [anon_sym_mod] = ACTIONS(643), - [anon_sym_pub] = ACTIONS(643), - [anon_sym_return] = ACTIONS(643), - [anon_sym_static] = ACTIONS(643), - [anon_sym_struct] = ACTIONS(643), - [anon_sym_trait] = ACTIONS(643), - [anon_sym_type] = ACTIONS(643), - [anon_sym_union] = ACTIONS(643), - [anon_sym_unsafe] = ACTIONS(643), - [anon_sym_use] = ACTIONS(643), - [anon_sym_where] = ACTIONS(643), - [anon_sym_while] = ACTIONS(643), - [sym_mutable_specifier] = ACTIONS(643), - [sym_integer_literal] = ACTIONS(666), - [aux_sym_string_literal_token1] = ACTIONS(669), - [sym_char_literal] = ACTIONS(666), - [anon_sym_true] = ACTIONS(672), - [anon_sym_false] = ACTIONS(672), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(643), - [sym_super] = ACTIONS(643), - [sym_crate] = ACTIONS(643), - [sym__raw_string_literal_start] = ACTIONS(675), - [sym_float_literal] = ACTIONS(666), + [aux_sym_token_tree_pattern_repeat1] = STATE(86), + [aux_sym__non_special_token_repeat1] = STATE(347), + [sym_identifier] = ACTIONS(614), + [anon_sym_SEMI] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(618), + [anon_sym_RPAREN] = ACTIONS(686), + [anon_sym_LBRACK] = ACTIONS(622), + [anon_sym_LBRACE] = ACTIONS(624), + [anon_sym_EQ_GT] = ACTIONS(616), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(628), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_u8] = ACTIONS(614), + [anon_sym_i8] = ACTIONS(614), + [anon_sym_u16] = ACTIONS(614), + [anon_sym_i16] = ACTIONS(614), + [anon_sym_u32] = ACTIONS(614), + [anon_sym_i32] = ACTIONS(614), + [anon_sym_u64] = ACTIONS(614), + [anon_sym_i64] = ACTIONS(614), + [anon_sym_u128] = ACTIONS(614), + [anon_sym_i128] = ACTIONS(614), + [anon_sym_isize] = ACTIONS(614), + [anon_sym_usize] = ACTIONS(614), + [anon_sym_f32] = ACTIONS(614), + [anon_sym_f64] = ACTIONS(614), + [anon_sym_bool] = ACTIONS(614), + [anon_sym_str] = ACTIONS(614), + [anon_sym_char] = ACTIONS(614), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_BANG] = ACTIONS(626), + [anon_sym_AMP] = ACTIONS(626), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(616), + [anon_sym_PIPE_PIPE] = ACTIONS(616), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_PLUS_EQ] = ACTIONS(616), + [anon_sym_DASH_EQ] = ACTIONS(616), + [anon_sym_STAR_EQ] = ACTIONS(616), + [anon_sym_SLASH_EQ] = ACTIONS(616), + [anon_sym_PERCENT_EQ] = ACTIONS(616), + [anon_sym_CARET_EQ] = ACTIONS(616), + [anon_sym_AMP_EQ] = ACTIONS(616), + [anon_sym_PIPE_EQ] = ACTIONS(616), + [anon_sym_LT_LT_EQ] = ACTIONS(616), + [anon_sym_GT_GT_EQ] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(616), + [anon_sym_BANG_EQ] = ACTIONS(616), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT_EQ] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(616), + [anon_sym_AT] = ACTIONS(616), + [anon_sym__] = ACTIONS(626), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + [anon_sym_DOT_DOT_EQ] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(616), + [anon_sym_COLON_COLON] = ACTIONS(616), + [anon_sym_DASH_GT] = ACTIONS(616), + [anon_sym_POUND] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(614), + [anon_sym_as] = ACTIONS(614), + [anon_sym_async] = ACTIONS(614), + [anon_sym_await] = ACTIONS(614), + [anon_sym_break] = ACTIONS(614), + [anon_sym_const] = ACTIONS(614), + [anon_sym_continue] = ACTIONS(614), + [anon_sym_default] = ACTIONS(614), + [anon_sym_enum] = ACTIONS(614), + [anon_sym_fn] = ACTIONS(614), + [anon_sym_for] = ACTIONS(614), + [anon_sym_gen] = ACTIONS(614), + [anon_sym_if] = ACTIONS(614), + [anon_sym_impl] = ACTIONS(614), + [anon_sym_let] = ACTIONS(614), + [anon_sym_loop] = ACTIONS(614), + [anon_sym_match] = ACTIONS(614), + [anon_sym_mod] = ACTIONS(614), + [anon_sym_pub] = ACTIONS(614), + [anon_sym_return] = ACTIONS(614), + [anon_sym_static] = ACTIONS(614), + [anon_sym_struct] = ACTIONS(614), + [anon_sym_trait] = ACTIONS(614), + [anon_sym_type] = ACTIONS(614), + [anon_sym_union] = ACTIONS(614), + [anon_sym_unsafe] = ACTIONS(614), + [anon_sym_use] = ACTIONS(614), + [anon_sym_where] = ACTIONS(614), + [anon_sym_while] = ACTIONS(614), + [sym_mutable_specifier] = ACTIONS(614), + [sym_integer_literal] = ACTIONS(630), + [aux_sym_string_literal_token1] = ACTIONS(632), + [sym_char_literal] = ACTIONS(630), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(614), + [sym_super] = ACTIONS(614), + [sym_crate] = ACTIONS(614), + [sym_metavariable] = ACTIONS(636), + [sym__raw_string_literal_start] = ACTIONS(638), + [sym_float_literal] = ACTIONS(630), }, [STATE(84)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym__token_pattern] = STATE(351), + [sym_token_tree_pattern] = STATE(377), + [sym_token_binding_pattern] = STATE(377), + [sym_token_repetition_pattern] = STATE(377), + [sym__literal] = STATE(377), + [sym_string_literal] = STATE(365), + [sym_raw_string_literal] = STATE(365), + [sym_boolean_literal] = STATE(365), [sym_line_comment] = STATE(84), [sym_block_comment] = STATE(84), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), + [aux_sym_token_tree_pattern_repeat1] = STATE(73), + [aux_sym__non_special_token_repeat1] = STATE(347), + [sym_identifier] = ACTIONS(614), + [anon_sym_SEMI] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(618), + [anon_sym_LBRACK] = ACTIONS(622), [anon_sym_RBRACK] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(624), + [anon_sym_EQ_GT] = ACTIONS(616), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(628), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_u8] = ACTIONS(614), + [anon_sym_i8] = ACTIONS(614), + [anon_sym_u16] = ACTIONS(614), + [anon_sym_i16] = ACTIONS(614), + [anon_sym_u32] = ACTIONS(614), + [anon_sym_i32] = ACTIONS(614), + [anon_sym_u64] = ACTIONS(614), + [anon_sym_i64] = ACTIONS(614), + [anon_sym_u128] = ACTIONS(614), + [anon_sym_i128] = ACTIONS(614), + [anon_sym_isize] = ACTIONS(614), + [anon_sym_usize] = ACTIONS(614), + [anon_sym_f32] = ACTIONS(614), + [anon_sym_f64] = ACTIONS(614), + [anon_sym_bool] = ACTIONS(614), + [anon_sym_str] = ACTIONS(614), + [anon_sym_char] = ACTIONS(614), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_BANG] = ACTIONS(626), + [anon_sym_AMP] = ACTIONS(626), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(616), + [anon_sym_PIPE_PIPE] = ACTIONS(616), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_PLUS_EQ] = ACTIONS(616), + [anon_sym_DASH_EQ] = ACTIONS(616), + [anon_sym_STAR_EQ] = ACTIONS(616), + [anon_sym_SLASH_EQ] = ACTIONS(616), + [anon_sym_PERCENT_EQ] = ACTIONS(616), + [anon_sym_CARET_EQ] = ACTIONS(616), + [anon_sym_AMP_EQ] = ACTIONS(616), + [anon_sym_PIPE_EQ] = ACTIONS(616), + [anon_sym_LT_LT_EQ] = ACTIONS(616), + [anon_sym_GT_GT_EQ] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(616), + [anon_sym_BANG_EQ] = ACTIONS(616), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT_EQ] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(616), + [anon_sym_AT] = ACTIONS(616), + [anon_sym__] = ACTIONS(626), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + [anon_sym_DOT_DOT_EQ] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(616), + [anon_sym_COLON_COLON] = ACTIONS(616), + [anon_sym_DASH_GT] = ACTIONS(616), + [anon_sym_POUND] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(614), + [anon_sym_as] = ACTIONS(614), + [anon_sym_async] = ACTIONS(614), + [anon_sym_await] = ACTIONS(614), + [anon_sym_break] = ACTIONS(614), + [anon_sym_const] = ACTIONS(614), + [anon_sym_continue] = ACTIONS(614), + [anon_sym_default] = ACTIONS(614), + [anon_sym_enum] = ACTIONS(614), + [anon_sym_fn] = ACTIONS(614), + [anon_sym_for] = ACTIONS(614), + [anon_sym_gen] = ACTIONS(614), + [anon_sym_if] = ACTIONS(614), + [anon_sym_impl] = ACTIONS(614), + [anon_sym_let] = ACTIONS(614), + [anon_sym_loop] = ACTIONS(614), + [anon_sym_match] = ACTIONS(614), + [anon_sym_mod] = ACTIONS(614), + [anon_sym_pub] = ACTIONS(614), + [anon_sym_return] = ACTIONS(614), + [anon_sym_static] = ACTIONS(614), + [anon_sym_struct] = ACTIONS(614), + [anon_sym_trait] = ACTIONS(614), + [anon_sym_type] = ACTIONS(614), + [anon_sym_union] = ACTIONS(614), + [anon_sym_unsafe] = ACTIONS(614), + [anon_sym_use] = ACTIONS(614), + [anon_sym_where] = ACTIONS(614), + [anon_sym_while] = ACTIONS(614), + [sym_mutable_specifier] = ACTIONS(614), + [sym_integer_literal] = ACTIONS(630), + [aux_sym_string_literal_token1] = ACTIONS(632), + [sym_char_literal] = ACTIONS(630), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(614), + [sym_super] = ACTIONS(614), + [sym_crate] = ACTIONS(614), + [sym_metavariable] = ACTIONS(636), + [sym__raw_string_literal_start] = ACTIONS(638), + [sym_float_literal] = ACTIONS(630), }, [STATE(85)] = { - [sym_token_tree] = STATE(187), - [sym_token_repetition] = STATE(187), - [sym__literal] = STATE(187), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym__token_pattern] = STATE(351), + [sym_token_tree_pattern] = STATE(377), + [sym_token_binding_pattern] = STATE(377), + [sym_token_repetition_pattern] = STATE(377), + [sym__literal] = STATE(377), + [sym_string_literal] = STATE(365), + [sym_raw_string_literal] = STATE(365), + [sym_boolean_literal] = STATE(365), [sym_line_comment] = STATE(85), [sym_block_comment] = STATE(85), - [aux_sym_token_tree_repeat1] = STATE(86), - [aux_sym__non_special_token_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(702), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(704), - [anon_sym_RPAREN] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(708), - [anon_sym_LBRACE] = ACTIONS(710), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(712), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(702), - [anon_sym_i8] = ACTIONS(702), - [anon_sym_u16] = ACTIONS(702), - [anon_sym_i16] = ACTIONS(702), - [anon_sym_u32] = ACTIONS(702), - [anon_sym_i32] = ACTIONS(702), - [anon_sym_u64] = ACTIONS(702), - [anon_sym_i64] = ACTIONS(702), - [anon_sym_u128] = ACTIONS(702), - [anon_sym_i128] = ACTIONS(702), - [anon_sym_isize] = ACTIONS(702), - [anon_sym_usize] = ACTIONS(702), - [anon_sym_f32] = ACTIONS(702), - [anon_sym_f64] = ACTIONS(702), - [anon_sym_bool] = ACTIONS(702), - [anon_sym_str] = ACTIONS(702), - [anon_sym_char] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(702), - [anon_sym_as] = ACTIONS(702), - [anon_sym_async] = ACTIONS(702), - [anon_sym_await] = ACTIONS(702), - [anon_sym_break] = ACTIONS(702), - [anon_sym_const] = ACTIONS(702), - [anon_sym_continue] = ACTIONS(702), - [anon_sym_default] = ACTIONS(702), - [anon_sym_enum] = ACTIONS(702), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_for] = ACTIONS(702), - [anon_sym_gen] = ACTIONS(702), - [anon_sym_if] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(702), - [anon_sym_let] = ACTIONS(702), - [anon_sym_loop] = ACTIONS(702), - [anon_sym_match] = ACTIONS(702), - [anon_sym_mod] = ACTIONS(702), - [anon_sym_pub] = ACTIONS(702), - [anon_sym_return] = ACTIONS(702), - [anon_sym_static] = ACTIONS(702), - [anon_sym_struct] = ACTIONS(702), - [anon_sym_trait] = ACTIONS(702), - [anon_sym_type] = ACTIONS(702), - [anon_sym_union] = ACTIONS(702), - [anon_sym_unsafe] = ACTIONS(702), - [anon_sym_use] = ACTIONS(702), - [anon_sym_where] = ACTIONS(702), - [anon_sym_while] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(702), - [sym_super] = ACTIONS(702), - [sym_crate] = ACTIONS(702), - [sym_metavariable] = ACTIONS(714), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym_token_tree_pattern_repeat1] = STATE(76), + [aux_sym__non_special_token_repeat1] = STATE(347), + [sym_identifier] = ACTIONS(614), + [anon_sym_SEMI] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(618), + [anon_sym_LBRACK] = ACTIONS(622), + [anon_sym_LBRACE] = ACTIONS(624), + [anon_sym_RBRACE] = ACTIONS(686), + [anon_sym_EQ_GT] = ACTIONS(616), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(628), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_u8] = ACTIONS(614), + [anon_sym_i8] = ACTIONS(614), + [anon_sym_u16] = ACTIONS(614), + [anon_sym_i16] = ACTIONS(614), + [anon_sym_u32] = ACTIONS(614), + [anon_sym_i32] = ACTIONS(614), + [anon_sym_u64] = ACTIONS(614), + [anon_sym_i64] = ACTIONS(614), + [anon_sym_u128] = ACTIONS(614), + [anon_sym_i128] = ACTIONS(614), + [anon_sym_isize] = ACTIONS(614), + [anon_sym_usize] = ACTIONS(614), + [anon_sym_f32] = ACTIONS(614), + [anon_sym_f64] = ACTIONS(614), + [anon_sym_bool] = ACTIONS(614), + [anon_sym_str] = ACTIONS(614), + [anon_sym_char] = ACTIONS(614), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_BANG] = ACTIONS(626), + [anon_sym_AMP] = ACTIONS(626), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(616), + [anon_sym_PIPE_PIPE] = ACTIONS(616), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_PLUS_EQ] = ACTIONS(616), + [anon_sym_DASH_EQ] = ACTIONS(616), + [anon_sym_STAR_EQ] = ACTIONS(616), + [anon_sym_SLASH_EQ] = ACTIONS(616), + [anon_sym_PERCENT_EQ] = ACTIONS(616), + [anon_sym_CARET_EQ] = ACTIONS(616), + [anon_sym_AMP_EQ] = ACTIONS(616), + [anon_sym_PIPE_EQ] = ACTIONS(616), + [anon_sym_LT_LT_EQ] = ACTIONS(616), + [anon_sym_GT_GT_EQ] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(616), + [anon_sym_BANG_EQ] = ACTIONS(616), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT_EQ] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(616), + [anon_sym_AT] = ACTIONS(616), + [anon_sym__] = ACTIONS(626), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + [anon_sym_DOT_DOT_EQ] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(616), + [anon_sym_COLON_COLON] = ACTIONS(616), + [anon_sym_DASH_GT] = ACTIONS(616), + [anon_sym_POUND] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(614), + [anon_sym_as] = ACTIONS(614), + [anon_sym_async] = ACTIONS(614), + [anon_sym_await] = ACTIONS(614), + [anon_sym_break] = ACTIONS(614), + [anon_sym_const] = ACTIONS(614), + [anon_sym_continue] = ACTIONS(614), + [anon_sym_default] = ACTIONS(614), + [anon_sym_enum] = ACTIONS(614), + [anon_sym_fn] = ACTIONS(614), + [anon_sym_for] = ACTIONS(614), + [anon_sym_gen] = ACTIONS(614), + [anon_sym_if] = ACTIONS(614), + [anon_sym_impl] = ACTIONS(614), + [anon_sym_let] = ACTIONS(614), + [anon_sym_loop] = ACTIONS(614), + [anon_sym_match] = ACTIONS(614), + [anon_sym_mod] = ACTIONS(614), + [anon_sym_pub] = ACTIONS(614), + [anon_sym_return] = ACTIONS(614), + [anon_sym_static] = ACTIONS(614), + [anon_sym_struct] = ACTIONS(614), + [anon_sym_trait] = ACTIONS(614), + [anon_sym_type] = ACTIONS(614), + [anon_sym_union] = ACTIONS(614), + [anon_sym_unsafe] = ACTIONS(614), + [anon_sym_use] = ACTIONS(614), + [anon_sym_where] = ACTIONS(614), + [anon_sym_while] = ACTIONS(614), + [sym_mutable_specifier] = ACTIONS(614), + [sym_integer_literal] = ACTIONS(630), + [aux_sym_string_literal_token1] = ACTIONS(632), + [sym_char_literal] = ACTIONS(630), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(614), + [sym_super] = ACTIONS(614), + [sym_crate] = ACTIONS(614), + [sym_metavariable] = ACTIONS(636), + [sym__raw_string_literal_start] = ACTIONS(638), + [sym_float_literal] = ACTIONS(630), }, [STATE(86)] = { - [sym_token_tree] = STATE(187), - [sym_token_repetition] = STATE(187), - [sym__literal] = STATE(187), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym__token_pattern] = STATE(351), + [sym_token_tree_pattern] = STATE(377), + [sym_token_binding_pattern] = STATE(377), + [sym_token_repetition_pattern] = STATE(377), + [sym__literal] = STATE(377), + [sym_string_literal] = STATE(365), + [sym_raw_string_literal] = STATE(365), + [sym_boolean_literal] = STATE(365), [sym_line_comment] = STATE(86), [sym_block_comment] = STATE(86), - [aux_sym_token_tree_repeat1] = STATE(68), - [aux_sym__non_special_token_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(702), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(704), - [anon_sym_RPAREN] = ACTIONS(716), - [anon_sym_LBRACK] = ACTIONS(708), - [anon_sym_LBRACE] = ACTIONS(710), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(712), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(702), - [anon_sym_i8] = ACTIONS(702), - [anon_sym_u16] = ACTIONS(702), - [anon_sym_i16] = ACTIONS(702), - [anon_sym_u32] = ACTIONS(702), - [anon_sym_i32] = ACTIONS(702), - [anon_sym_u64] = ACTIONS(702), - [anon_sym_i64] = ACTIONS(702), - [anon_sym_u128] = ACTIONS(702), - [anon_sym_i128] = ACTIONS(702), - [anon_sym_isize] = ACTIONS(702), - [anon_sym_usize] = ACTIONS(702), - [anon_sym_f32] = ACTIONS(702), - [anon_sym_f64] = ACTIONS(702), - [anon_sym_bool] = ACTIONS(702), - [anon_sym_str] = ACTIONS(702), - [anon_sym_char] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(702), - [anon_sym_as] = ACTIONS(702), - [anon_sym_async] = ACTIONS(702), - [anon_sym_await] = ACTIONS(702), - [anon_sym_break] = ACTIONS(702), - [anon_sym_const] = ACTIONS(702), - [anon_sym_continue] = ACTIONS(702), - [anon_sym_default] = ACTIONS(702), - [anon_sym_enum] = ACTIONS(702), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_for] = ACTIONS(702), - [anon_sym_gen] = ACTIONS(702), - [anon_sym_if] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(702), - [anon_sym_let] = ACTIONS(702), - [anon_sym_loop] = ACTIONS(702), - [anon_sym_match] = ACTIONS(702), - [anon_sym_mod] = ACTIONS(702), - [anon_sym_pub] = ACTIONS(702), - [anon_sym_return] = ACTIONS(702), - [anon_sym_static] = ACTIONS(702), - [anon_sym_struct] = ACTIONS(702), - [anon_sym_trait] = ACTIONS(702), - [anon_sym_type] = ACTIONS(702), - [anon_sym_union] = ACTIONS(702), - [anon_sym_unsafe] = ACTIONS(702), - [anon_sym_use] = ACTIONS(702), - [anon_sym_where] = ACTIONS(702), - [anon_sym_while] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(702), - [sym_super] = ACTIONS(702), - [sym_crate] = ACTIONS(702), - [sym_metavariable] = ACTIONS(714), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym_token_tree_pattern_repeat1] = STATE(70), + [aux_sym__non_special_token_repeat1] = STATE(347), + [sym_identifier] = ACTIONS(614), + [anon_sym_SEMI] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(618), + [anon_sym_RPAREN] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(622), + [anon_sym_LBRACE] = ACTIONS(624), + [anon_sym_EQ_GT] = ACTIONS(616), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(628), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_u8] = ACTIONS(614), + [anon_sym_i8] = ACTIONS(614), + [anon_sym_u16] = ACTIONS(614), + [anon_sym_i16] = ACTIONS(614), + [anon_sym_u32] = ACTIONS(614), + [anon_sym_i32] = ACTIONS(614), + [anon_sym_u64] = ACTIONS(614), + [anon_sym_i64] = ACTIONS(614), + [anon_sym_u128] = ACTIONS(614), + [anon_sym_i128] = ACTIONS(614), + [anon_sym_isize] = ACTIONS(614), + [anon_sym_usize] = ACTIONS(614), + [anon_sym_f32] = ACTIONS(614), + [anon_sym_f64] = ACTIONS(614), + [anon_sym_bool] = ACTIONS(614), + [anon_sym_str] = ACTIONS(614), + [anon_sym_char] = ACTIONS(614), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_BANG] = ACTIONS(626), + [anon_sym_AMP] = ACTIONS(626), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(616), + [anon_sym_PIPE_PIPE] = ACTIONS(616), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_PLUS_EQ] = ACTIONS(616), + [anon_sym_DASH_EQ] = ACTIONS(616), + [anon_sym_STAR_EQ] = ACTIONS(616), + [anon_sym_SLASH_EQ] = ACTIONS(616), + [anon_sym_PERCENT_EQ] = ACTIONS(616), + [anon_sym_CARET_EQ] = ACTIONS(616), + [anon_sym_AMP_EQ] = ACTIONS(616), + [anon_sym_PIPE_EQ] = ACTIONS(616), + [anon_sym_LT_LT_EQ] = ACTIONS(616), + [anon_sym_GT_GT_EQ] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(616), + [anon_sym_BANG_EQ] = ACTIONS(616), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT_EQ] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(616), + [anon_sym_AT] = ACTIONS(616), + [anon_sym__] = ACTIONS(626), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + [anon_sym_DOT_DOT_EQ] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(616), + [anon_sym_COLON_COLON] = ACTIONS(616), + [anon_sym_DASH_GT] = ACTIONS(616), + [anon_sym_POUND] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(614), + [anon_sym_as] = ACTIONS(614), + [anon_sym_async] = ACTIONS(614), + [anon_sym_await] = ACTIONS(614), + [anon_sym_break] = ACTIONS(614), + [anon_sym_const] = ACTIONS(614), + [anon_sym_continue] = ACTIONS(614), + [anon_sym_default] = ACTIONS(614), + [anon_sym_enum] = ACTIONS(614), + [anon_sym_fn] = ACTIONS(614), + [anon_sym_for] = ACTIONS(614), + [anon_sym_gen] = ACTIONS(614), + [anon_sym_if] = ACTIONS(614), + [anon_sym_impl] = ACTIONS(614), + [anon_sym_let] = ACTIONS(614), + [anon_sym_loop] = ACTIONS(614), + [anon_sym_match] = ACTIONS(614), + [anon_sym_mod] = ACTIONS(614), + [anon_sym_pub] = ACTIONS(614), + [anon_sym_return] = ACTIONS(614), + [anon_sym_static] = ACTIONS(614), + [anon_sym_struct] = ACTIONS(614), + [anon_sym_trait] = ACTIONS(614), + [anon_sym_type] = ACTIONS(614), + [anon_sym_union] = ACTIONS(614), + [anon_sym_unsafe] = ACTIONS(614), + [anon_sym_use] = ACTIONS(614), + [anon_sym_where] = ACTIONS(614), + [anon_sym_while] = ACTIONS(614), + [sym_mutable_specifier] = ACTIONS(614), + [sym_integer_literal] = ACTIONS(630), + [aux_sym_string_literal_token1] = ACTIONS(632), + [sym_char_literal] = ACTIONS(630), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(614), + [sym_super] = ACTIONS(614), + [sym_crate] = ACTIONS(614), + [sym_metavariable] = ACTIONS(636), + [sym__raw_string_literal_start] = ACTIONS(638), + [sym_float_literal] = ACTIONS(630), }, [STATE(87)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(385), + [sym__delim_tokens] = STATE(386), + [sym__non_delim_token] = STATE(385), + [sym__literal] = STATE(384), + [sym_string_literal] = STATE(397), + [sym_raw_string_literal] = STATE(397), + [sym_boolean_literal] = STATE(397), [sym_line_comment] = STATE(87), [sym_block_comment] = STATE(87), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(90), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(718), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym__non_special_token_repeat1] = STATE(373), + [aux_sym_delim_token_tree_repeat1] = STATE(71), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_RBRACE] = ACTIONS(698), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(88)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_token_tree] = STATE(361), + [sym_token_repetition] = STATE(361), + [sym__literal] = STATE(361), + [sym_string_literal] = STATE(365), + [sym_raw_string_literal] = STATE(365), + [sym_boolean_literal] = STATE(365), [sym_line_comment] = STATE(88), [sym_block_comment] = STATE(88), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(91), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_RBRACK] = ACTIONS(718), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym_token_tree_repeat1] = STATE(91), + [aux_sym__non_special_token_repeat1] = STATE(348), + [sym_identifier] = ACTIONS(712), + [anon_sym_SEMI] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(714), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_RBRACE] = ACTIONS(720), + [anon_sym_EQ_GT] = ACTIONS(616), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_u8] = ACTIONS(712), + [anon_sym_i8] = ACTIONS(712), + [anon_sym_u16] = ACTIONS(712), + [anon_sym_i16] = ACTIONS(712), + [anon_sym_u32] = ACTIONS(712), + [anon_sym_i32] = ACTIONS(712), + [anon_sym_u64] = ACTIONS(712), + [anon_sym_i64] = ACTIONS(712), + [anon_sym_u128] = ACTIONS(712), + [anon_sym_i128] = ACTIONS(712), + [anon_sym_isize] = ACTIONS(712), + [anon_sym_usize] = ACTIONS(712), + [anon_sym_f32] = ACTIONS(712), + [anon_sym_f64] = ACTIONS(712), + [anon_sym_bool] = ACTIONS(712), + [anon_sym_str] = ACTIONS(712), + [anon_sym_char] = ACTIONS(712), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_BANG] = ACTIONS(626), + [anon_sym_AMP] = ACTIONS(626), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(616), + [anon_sym_PIPE_PIPE] = ACTIONS(616), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_PLUS_EQ] = ACTIONS(616), + [anon_sym_DASH_EQ] = ACTIONS(616), + [anon_sym_STAR_EQ] = ACTIONS(616), + [anon_sym_SLASH_EQ] = ACTIONS(616), + [anon_sym_PERCENT_EQ] = ACTIONS(616), + [anon_sym_CARET_EQ] = ACTIONS(616), + [anon_sym_AMP_EQ] = ACTIONS(616), + [anon_sym_PIPE_EQ] = ACTIONS(616), + [anon_sym_LT_LT_EQ] = ACTIONS(616), + [anon_sym_GT_GT_EQ] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(616), + [anon_sym_BANG_EQ] = ACTIONS(616), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT_EQ] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(616), + [anon_sym_AT] = ACTIONS(616), + [anon_sym__] = ACTIONS(626), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + [anon_sym_DOT_DOT_EQ] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(616), + [anon_sym_COLON_COLON] = ACTIONS(616), + [anon_sym_DASH_GT] = ACTIONS(616), + [anon_sym_POUND] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_as] = ACTIONS(712), + [anon_sym_async] = ACTIONS(712), + [anon_sym_await] = ACTIONS(712), + [anon_sym_break] = ACTIONS(712), + [anon_sym_const] = ACTIONS(712), + [anon_sym_continue] = ACTIONS(712), + [anon_sym_default] = ACTIONS(712), + [anon_sym_enum] = ACTIONS(712), + [anon_sym_fn] = ACTIONS(712), + [anon_sym_for] = ACTIONS(712), + [anon_sym_gen] = ACTIONS(712), + [anon_sym_if] = ACTIONS(712), + [anon_sym_impl] = ACTIONS(712), + [anon_sym_let] = ACTIONS(712), + [anon_sym_loop] = ACTIONS(712), + [anon_sym_match] = ACTIONS(712), + [anon_sym_mod] = ACTIONS(712), + [anon_sym_pub] = ACTIONS(712), + [anon_sym_return] = ACTIONS(712), + [anon_sym_static] = ACTIONS(712), + [anon_sym_struct] = ACTIONS(712), + [anon_sym_trait] = ACTIONS(712), + [anon_sym_type] = ACTIONS(712), + [anon_sym_union] = ACTIONS(712), + [anon_sym_unsafe] = ACTIONS(712), + [anon_sym_use] = ACTIONS(712), + [anon_sym_where] = ACTIONS(712), + [anon_sym_while] = ACTIONS(712), + [sym_mutable_specifier] = ACTIONS(712), + [sym_integer_literal] = ACTIONS(630), + [aux_sym_string_literal_token1] = ACTIONS(632), + [sym_char_literal] = ACTIONS(630), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(712), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(724), + [sym__raw_string_literal_start] = ACTIONS(638), + [sym_float_literal] = ACTIONS(630), }, [STATE(89)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_token_tree] = STATE(361), + [sym_token_repetition] = STATE(361), + [sym__literal] = STATE(361), + [sym_string_literal] = STATE(365), + [sym_raw_string_literal] = STATE(365), + [sym_boolean_literal] = STATE(365), [sym_line_comment] = STATE(89), [sym_block_comment] = STATE(89), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(92), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_RBRACE] = ACTIONS(718), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym_token_tree_repeat1] = STATE(75), + [aux_sym__non_special_token_repeat1] = STATE(348), + [sym_identifier] = ACTIONS(712), + [anon_sym_SEMI] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(714), + [anon_sym_RPAREN] = ACTIONS(726), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_EQ_GT] = ACTIONS(616), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_u8] = ACTIONS(712), + [anon_sym_i8] = ACTIONS(712), + [anon_sym_u16] = ACTIONS(712), + [anon_sym_i16] = ACTIONS(712), + [anon_sym_u32] = ACTIONS(712), + [anon_sym_i32] = ACTIONS(712), + [anon_sym_u64] = ACTIONS(712), + [anon_sym_i64] = ACTIONS(712), + [anon_sym_u128] = ACTIONS(712), + [anon_sym_i128] = ACTIONS(712), + [anon_sym_isize] = ACTIONS(712), + [anon_sym_usize] = ACTIONS(712), + [anon_sym_f32] = ACTIONS(712), + [anon_sym_f64] = ACTIONS(712), + [anon_sym_bool] = ACTIONS(712), + [anon_sym_str] = ACTIONS(712), + [anon_sym_char] = ACTIONS(712), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_BANG] = ACTIONS(626), + [anon_sym_AMP] = ACTIONS(626), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(616), + [anon_sym_PIPE_PIPE] = ACTIONS(616), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_PLUS_EQ] = ACTIONS(616), + [anon_sym_DASH_EQ] = ACTIONS(616), + [anon_sym_STAR_EQ] = ACTIONS(616), + [anon_sym_SLASH_EQ] = ACTIONS(616), + [anon_sym_PERCENT_EQ] = ACTIONS(616), + [anon_sym_CARET_EQ] = ACTIONS(616), + [anon_sym_AMP_EQ] = ACTIONS(616), + [anon_sym_PIPE_EQ] = ACTIONS(616), + [anon_sym_LT_LT_EQ] = ACTIONS(616), + [anon_sym_GT_GT_EQ] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(616), + [anon_sym_BANG_EQ] = ACTIONS(616), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT_EQ] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(616), + [anon_sym_AT] = ACTIONS(616), + [anon_sym__] = ACTIONS(626), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + [anon_sym_DOT_DOT_EQ] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(616), + [anon_sym_COLON_COLON] = ACTIONS(616), + [anon_sym_DASH_GT] = ACTIONS(616), + [anon_sym_POUND] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_as] = ACTIONS(712), + [anon_sym_async] = ACTIONS(712), + [anon_sym_await] = ACTIONS(712), + [anon_sym_break] = ACTIONS(712), + [anon_sym_const] = ACTIONS(712), + [anon_sym_continue] = ACTIONS(712), + [anon_sym_default] = ACTIONS(712), + [anon_sym_enum] = ACTIONS(712), + [anon_sym_fn] = ACTIONS(712), + [anon_sym_for] = ACTIONS(712), + [anon_sym_gen] = ACTIONS(712), + [anon_sym_if] = ACTIONS(712), + [anon_sym_impl] = ACTIONS(712), + [anon_sym_let] = ACTIONS(712), + [anon_sym_loop] = ACTIONS(712), + [anon_sym_match] = ACTIONS(712), + [anon_sym_mod] = ACTIONS(712), + [anon_sym_pub] = ACTIONS(712), + [anon_sym_return] = ACTIONS(712), + [anon_sym_static] = ACTIONS(712), + [anon_sym_struct] = ACTIONS(712), + [anon_sym_trait] = ACTIONS(712), + [anon_sym_type] = ACTIONS(712), + [anon_sym_union] = ACTIONS(712), + [anon_sym_unsafe] = ACTIONS(712), + [anon_sym_use] = ACTIONS(712), + [anon_sym_where] = ACTIONS(712), + [anon_sym_while] = ACTIONS(712), + [sym_mutable_specifier] = ACTIONS(712), + [sym_integer_literal] = ACTIONS(630), + [aux_sym_string_literal_token1] = ACTIONS(632), + [sym_char_literal] = ACTIONS(630), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(712), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(724), + [sym__raw_string_literal_start] = ACTIONS(638), + [sym_float_literal] = ACTIONS(630), }, [STATE(90)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_token_tree] = STATE(361), + [sym_token_repetition] = STATE(361), + [sym__literal] = STATE(361), + [sym_string_literal] = STATE(365), + [sym_raw_string_literal] = STATE(365), + [sym_boolean_literal] = STATE(365), [sym_line_comment] = STATE(90), [sym_block_comment] = STATE(90), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(720), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym_token_tree_repeat1] = STATE(75), + [aux_sym__non_special_token_repeat1] = STATE(348), + [sym_identifier] = ACTIONS(712), + [anon_sym_SEMI] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(714), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_RBRACK] = ACTIONS(726), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_EQ_GT] = ACTIONS(616), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_u8] = ACTIONS(712), + [anon_sym_i8] = ACTIONS(712), + [anon_sym_u16] = ACTIONS(712), + [anon_sym_i16] = ACTIONS(712), + [anon_sym_u32] = ACTIONS(712), + [anon_sym_i32] = ACTIONS(712), + [anon_sym_u64] = ACTIONS(712), + [anon_sym_i64] = ACTIONS(712), + [anon_sym_u128] = ACTIONS(712), + [anon_sym_i128] = ACTIONS(712), + [anon_sym_isize] = ACTIONS(712), + [anon_sym_usize] = ACTIONS(712), + [anon_sym_f32] = ACTIONS(712), + [anon_sym_f64] = ACTIONS(712), + [anon_sym_bool] = ACTIONS(712), + [anon_sym_str] = ACTIONS(712), + [anon_sym_char] = ACTIONS(712), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_BANG] = ACTIONS(626), + [anon_sym_AMP] = ACTIONS(626), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(616), + [anon_sym_PIPE_PIPE] = ACTIONS(616), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_PLUS_EQ] = ACTIONS(616), + [anon_sym_DASH_EQ] = ACTIONS(616), + [anon_sym_STAR_EQ] = ACTIONS(616), + [anon_sym_SLASH_EQ] = ACTIONS(616), + [anon_sym_PERCENT_EQ] = ACTIONS(616), + [anon_sym_CARET_EQ] = ACTIONS(616), + [anon_sym_AMP_EQ] = ACTIONS(616), + [anon_sym_PIPE_EQ] = ACTIONS(616), + [anon_sym_LT_LT_EQ] = ACTIONS(616), + [anon_sym_GT_GT_EQ] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(616), + [anon_sym_BANG_EQ] = ACTIONS(616), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT_EQ] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(616), + [anon_sym_AT] = ACTIONS(616), + [anon_sym__] = ACTIONS(626), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + [anon_sym_DOT_DOT_EQ] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(616), + [anon_sym_COLON_COLON] = ACTIONS(616), + [anon_sym_DASH_GT] = ACTIONS(616), + [anon_sym_POUND] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_as] = ACTIONS(712), + [anon_sym_async] = ACTIONS(712), + [anon_sym_await] = ACTIONS(712), + [anon_sym_break] = ACTIONS(712), + [anon_sym_const] = ACTIONS(712), + [anon_sym_continue] = ACTIONS(712), + [anon_sym_default] = ACTIONS(712), + [anon_sym_enum] = ACTIONS(712), + [anon_sym_fn] = ACTIONS(712), + [anon_sym_for] = ACTIONS(712), + [anon_sym_gen] = ACTIONS(712), + [anon_sym_if] = ACTIONS(712), + [anon_sym_impl] = ACTIONS(712), + [anon_sym_let] = ACTIONS(712), + [anon_sym_loop] = ACTIONS(712), + [anon_sym_match] = ACTIONS(712), + [anon_sym_mod] = ACTIONS(712), + [anon_sym_pub] = ACTIONS(712), + [anon_sym_return] = ACTIONS(712), + [anon_sym_static] = ACTIONS(712), + [anon_sym_struct] = ACTIONS(712), + [anon_sym_trait] = ACTIONS(712), + [anon_sym_type] = ACTIONS(712), + [anon_sym_union] = ACTIONS(712), + [anon_sym_unsafe] = ACTIONS(712), + [anon_sym_use] = ACTIONS(712), + [anon_sym_where] = ACTIONS(712), + [anon_sym_while] = ACTIONS(712), + [sym_mutable_specifier] = ACTIONS(712), + [sym_integer_literal] = ACTIONS(630), + [aux_sym_string_literal_token1] = ACTIONS(632), + [sym_char_literal] = ACTIONS(630), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(712), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(724), + [sym__raw_string_literal_start] = ACTIONS(638), + [sym_float_literal] = ACTIONS(630), }, [STATE(91)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_token_tree] = STATE(361), + [sym_token_repetition] = STATE(361), + [sym__literal] = STATE(361), + [sym_string_literal] = STATE(365), + [sym_raw_string_literal] = STATE(365), + [sym_boolean_literal] = STATE(365), [sym_line_comment] = STATE(91), [sym_block_comment] = STATE(91), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_RBRACK] = ACTIONS(720), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym_token_tree_repeat1] = STATE(75), + [aux_sym__non_special_token_repeat1] = STATE(348), + [sym_identifier] = ACTIONS(712), + [anon_sym_SEMI] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(714), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_RBRACE] = ACTIONS(726), + [anon_sym_EQ_GT] = ACTIONS(616), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_u8] = ACTIONS(712), + [anon_sym_i8] = ACTIONS(712), + [anon_sym_u16] = ACTIONS(712), + [anon_sym_i16] = ACTIONS(712), + [anon_sym_u32] = ACTIONS(712), + [anon_sym_i32] = ACTIONS(712), + [anon_sym_u64] = ACTIONS(712), + [anon_sym_i64] = ACTIONS(712), + [anon_sym_u128] = ACTIONS(712), + [anon_sym_i128] = ACTIONS(712), + [anon_sym_isize] = ACTIONS(712), + [anon_sym_usize] = ACTIONS(712), + [anon_sym_f32] = ACTIONS(712), + [anon_sym_f64] = ACTIONS(712), + [anon_sym_bool] = ACTIONS(712), + [anon_sym_str] = ACTIONS(712), + [anon_sym_char] = ACTIONS(712), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_BANG] = ACTIONS(626), + [anon_sym_AMP] = ACTIONS(626), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(616), + [anon_sym_PIPE_PIPE] = ACTIONS(616), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_PLUS_EQ] = ACTIONS(616), + [anon_sym_DASH_EQ] = ACTIONS(616), + [anon_sym_STAR_EQ] = ACTIONS(616), + [anon_sym_SLASH_EQ] = ACTIONS(616), + [anon_sym_PERCENT_EQ] = ACTIONS(616), + [anon_sym_CARET_EQ] = ACTIONS(616), + [anon_sym_AMP_EQ] = ACTIONS(616), + [anon_sym_PIPE_EQ] = ACTIONS(616), + [anon_sym_LT_LT_EQ] = ACTIONS(616), + [anon_sym_GT_GT_EQ] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(616), + [anon_sym_BANG_EQ] = ACTIONS(616), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT_EQ] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(616), + [anon_sym_AT] = ACTIONS(616), + [anon_sym__] = ACTIONS(626), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + [anon_sym_DOT_DOT_EQ] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(616), + [anon_sym_COLON_COLON] = ACTIONS(616), + [anon_sym_DASH_GT] = ACTIONS(616), + [anon_sym_POUND] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_as] = ACTIONS(712), + [anon_sym_async] = ACTIONS(712), + [anon_sym_await] = ACTIONS(712), + [anon_sym_break] = ACTIONS(712), + [anon_sym_const] = ACTIONS(712), + [anon_sym_continue] = ACTIONS(712), + [anon_sym_default] = ACTIONS(712), + [anon_sym_enum] = ACTIONS(712), + [anon_sym_fn] = ACTIONS(712), + [anon_sym_for] = ACTIONS(712), + [anon_sym_gen] = ACTIONS(712), + [anon_sym_if] = ACTIONS(712), + [anon_sym_impl] = ACTIONS(712), + [anon_sym_let] = ACTIONS(712), + [anon_sym_loop] = ACTIONS(712), + [anon_sym_match] = ACTIONS(712), + [anon_sym_mod] = ACTIONS(712), + [anon_sym_pub] = ACTIONS(712), + [anon_sym_return] = ACTIONS(712), + [anon_sym_static] = ACTIONS(712), + [anon_sym_struct] = ACTIONS(712), + [anon_sym_trait] = ACTIONS(712), + [anon_sym_type] = ACTIONS(712), + [anon_sym_union] = ACTIONS(712), + [anon_sym_unsafe] = ACTIONS(712), + [anon_sym_use] = ACTIONS(712), + [anon_sym_where] = ACTIONS(712), + [anon_sym_while] = ACTIONS(712), + [sym_mutable_specifier] = ACTIONS(712), + [sym_integer_literal] = ACTIONS(630), + [aux_sym_string_literal_token1] = ACTIONS(632), + [sym_char_literal] = ACTIONS(630), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(712), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(724), + [sym__raw_string_literal_start] = ACTIONS(638), + [sym_float_literal] = ACTIONS(630), }, [STATE(92)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_token_tree] = STATE(361), + [sym_token_repetition] = STATE(361), + [sym__literal] = STATE(361), + [sym_string_literal] = STATE(365), + [sym_raw_string_literal] = STATE(365), + [sym_boolean_literal] = STATE(365), [sym_line_comment] = STATE(92), [sym_block_comment] = STATE(92), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_RBRACE] = ACTIONS(720), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym_token_tree_repeat1] = STATE(93), + [aux_sym__non_special_token_repeat1] = STATE(348), + [sym_identifier] = ACTIONS(712), + [anon_sym_SEMI] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(714), + [anon_sym_RPAREN] = ACTIONS(728), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_EQ_GT] = ACTIONS(616), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_u8] = ACTIONS(712), + [anon_sym_i8] = ACTIONS(712), + [anon_sym_u16] = ACTIONS(712), + [anon_sym_i16] = ACTIONS(712), + [anon_sym_u32] = ACTIONS(712), + [anon_sym_i32] = ACTIONS(712), + [anon_sym_u64] = ACTIONS(712), + [anon_sym_i64] = ACTIONS(712), + [anon_sym_u128] = ACTIONS(712), + [anon_sym_i128] = ACTIONS(712), + [anon_sym_isize] = ACTIONS(712), + [anon_sym_usize] = ACTIONS(712), + [anon_sym_f32] = ACTIONS(712), + [anon_sym_f64] = ACTIONS(712), + [anon_sym_bool] = ACTIONS(712), + [anon_sym_str] = ACTIONS(712), + [anon_sym_char] = ACTIONS(712), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_BANG] = ACTIONS(626), + [anon_sym_AMP] = ACTIONS(626), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(616), + [anon_sym_PIPE_PIPE] = ACTIONS(616), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_PLUS_EQ] = ACTIONS(616), + [anon_sym_DASH_EQ] = ACTIONS(616), + [anon_sym_STAR_EQ] = ACTIONS(616), + [anon_sym_SLASH_EQ] = ACTIONS(616), + [anon_sym_PERCENT_EQ] = ACTIONS(616), + [anon_sym_CARET_EQ] = ACTIONS(616), + [anon_sym_AMP_EQ] = ACTIONS(616), + [anon_sym_PIPE_EQ] = ACTIONS(616), + [anon_sym_LT_LT_EQ] = ACTIONS(616), + [anon_sym_GT_GT_EQ] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(616), + [anon_sym_BANG_EQ] = ACTIONS(616), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT_EQ] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(616), + [anon_sym_AT] = ACTIONS(616), + [anon_sym__] = ACTIONS(626), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + [anon_sym_DOT_DOT_EQ] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(616), + [anon_sym_COLON_COLON] = ACTIONS(616), + [anon_sym_DASH_GT] = ACTIONS(616), + [anon_sym_POUND] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_as] = ACTIONS(712), + [anon_sym_async] = ACTIONS(712), + [anon_sym_await] = ACTIONS(712), + [anon_sym_break] = ACTIONS(712), + [anon_sym_const] = ACTIONS(712), + [anon_sym_continue] = ACTIONS(712), + [anon_sym_default] = ACTIONS(712), + [anon_sym_enum] = ACTIONS(712), + [anon_sym_fn] = ACTIONS(712), + [anon_sym_for] = ACTIONS(712), + [anon_sym_gen] = ACTIONS(712), + [anon_sym_if] = ACTIONS(712), + [anon_sym_impl] = ACTIONS(712), + [anon_sym_let] = ACTIONS(712), + [anon_sym_loop] = ACTIONS(712), + [anon_sym_match] = ACTIONS(712), + [anon_sym_mod] = ACTIONS(712), + [anon_sym_pub] = ACTIONS(712), + [anon_sym_return] = ACTIONS(712), + [anon_sym_static] = ACTIONS(712), + [anon_sym_struct] = ACTIONS(712), + [anon_sym_trait] = ACTIONS(712), + [anon_sym_type] = ACTIONS(712), + [anon_sym_union] = ACTIONS(712), + [anon_sym_unsafe] = ACTIONS(712), + [anon_sym_use] = ACTIONS(712), + [anon_sym_where] = ACTIONS(712), + [anon_sym_while] = ACTIONS(712), + [sym_mutable_specifier] = ACTIONS(712), + [sym_integer_literal] = ACTIONS(630), + [aux_sym_string_literal_token1] = ACTIONS(632), + [sym_char_literal] = ACTIONS(630), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(712), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(724), + [sym__raw_string_literal_start] = ACTIONS(638), + [sym_float_literal] = ACTIONS(630), }, [STATE(93)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_token_tree] = STATE(361), + [sym_token_repetition] = STATE(361), + [sym__literal] = STATE(361), + [sym_string_literal] = STATE(365), + [sym_raw_string_literal] = STATE(365), + [sym_boolean_literal] = STATE(365), [sym_line_comment] = STATE(93), [sym_block_comment] = STATE(93), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(96), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(722), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym_token_tree_repeat1] = STATE(75), + [aux_sym__non_special_token_repeat1] = STATE(348), + [sym_identifier] = ACTIONS(712), + [anon_sym_SEMI] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(714), + [anon_sym_RPAREN] = ACTIONS(730), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_EQ_GT] = ACTIONS(616), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_u8] = ACTIONS(712), + [anon_sym_i8] = ACTIONS(712), + [anon_sym_u16] = ACTIONS(712), + [anon_sym_i16] = ACTIONS(712), + [anon_sym_u32] = ACTIONS(712), + [anon_sym_i32] = ACTIONS(712), + [anon_sym_u64] = ACTIONS(712), + [anon_sym_i64] = ACTIONS(712), + [anon_sym_u128] = ACTIONS(712), + [anon_sym_i128] = ACTIONS(712), + [anon_sym_isize] = ACTIONS(712), + [anon_sym_usize] = ACTIONS(712), + [anon_sym_f32] = ACTIONS(712), + [anon_sym_f64] = ACTIONS(712), + [anon_sym_bool] = ACTIONS(712), + [anon_sym_str] = ACTIONS(712), + [anon_sym_char] = ACTIONS(712), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_BANG] = ACTIONS(626), + [anon_sym_AMP] = ACTIONS(626), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(616), + [anon_sym_PIPE_PIPE] = ACTIONS(616), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_PLUS_EQ] = ACTIONS(616), + [anon_sym_DASH_EQ] = ACTIONS(616), + [anon_sym_STAR_EQ] = ACTIONS(616), + [anon_sym_SLASH_EQ] = ACTIONS(616), + [anon_sym_PERCENT_EQ] = ACTIONS(616), + [anon_sym_CARET_EQ] = ACTIONS(616), + [anon_sym_AMP_EQ] = ACTIONS(616), + [anon_sym_PIPE_EQ] = ACTIONS(616), + [anon_sym_LT_LT_EQ] = ACTIONS(616), + [anon_sym_GT_GT_EQ] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(616), + [anon_sym_BANG_EQ] = ACTIONS(616), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT_EQ] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(616), + [anon_sym_AT] = ACTIONS(616), + [anon_sym__] = ACTIONS(626), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + [anon_sym_DOT_DOT_EQ] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(616), + [anon_sym_COLON_COLON] = ACTIONS(616), + [anon_sym_DASH_GT] = ACTIONS(616), + [anon_sym_POUND] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_as] = ACTIONS(712), + [anon_sym_async] = ACTIONS(712), + [anon_sym_await] = ACTIONS(712), + [anon_sym_break] = ACTIONS(712), + [anon_sym_const] = ACTIONS(712), + [anon_sym_continue] = ACTIONS(712), + [anon_sym_default] = ACTIONS(712), + [anon_sym_enum] = ACTIONS(712), + [anon_sym_fn] = ACTIONS(712), + [anon_sym_for] = ACTIONS(712), + [anon_sym_gen] = ACTIONS(712), + [anon_sym_if] = ACTIONS(712), + [anon_sym_impl] = ACTIONS(712), + [anon_sym_let] = ACTIONS(712), + [anon_sym_loop] = ACTIONS(712), + [anon_sym_match] = ACTIONS(712), + [anon_sym_mod] = ACTIONS(712), + [anon_sym_pub] = ACTIONS(712), + [anon_sym_return] = ACTIONS(712), + [anon_sym_static] = ACTIONS(712), + [anon_sym_struct] = ACTIONS(712), + [anon_sym_trait] = ACTIONS(712), + [anon_sym_type] = ACTIONS(712), + [anon_sym_union] = ACTIONS(712), + [anon_sym_unsafe] = ACTIONS(712), + [anon_sym_use] = ACTIONS(712), + [anon_sym_where] = ACTIONS(712), + [anon_sym_while] = ACTIONS(712), + [sym_mutable_specifier] = ACTIONS(712), + [sym_integer_literal] = ACTIONS(630), + [aux_sym_string_literal_token1] = ACTIONS(632), + [sym_char_literal] = ACTIONS(630), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(712), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(724), + [sym__raw_string_literal_start] = ACTIONS(638), + [sym_float_literal] = ACTIONS(630), }, [STATE(94)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(267), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1765), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_let_condition] = STATE(3039), + [sym__let_chain] = STATE(3042), + [sym__condition] = STATE(2810), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(94), [sym_block_comment] = STATE(94), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(97), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_RBRACK] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(736), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_let] = ACTIONS(738), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [STATE(95)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(303), + [sym_bracketed_type] = STATE(3726), + [sym_generic_function] = STATE(1934), + [sym_generic_type_with_turbofish] = STATE(3067), + [sym__expression_except_range] = STATE(1755), + [sym__expression] = STATE(2008), + [sym_expression_with_attribute] = STATE(1958), + [sym__expression_without_attribute] = STATE(1958), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(1673), + [sym_scoped_type_identifier_in_expression_position] = STATE(3301), + [sym_range_expression] = STATE(1801), + [sym_unary_expression] = STATE(1934), + [sym_try_expression] = STATE(1934), + [sym_reference_expression] = STATE(1934), + [sym_binary_expression] = STATE(1934), + [sym_assignment_expression] = STATE(1934), + [sym_compound_assignment_expr] = STATE(1934), + [sym_type_cast_expression] = STATE(1934), + [sym_return_expression] = STATE(1934), + [sym_yield_expression] = STATE(1934), + [sym_call_expression] = STATE(1934), + [sym_array_expression] = STATE(1934), + [sym_parenthesized_expression] = STATE(1934), + [sym_tuple_expression] = STATE(1934), + [sym_unit_expression] = STATE(1934), + [sym_struct_expression] = STATE(1934), + [sym_if_expression] = STATE(1934), + [sym_let_condition] = STATE(3356), + [sym__let_chain] = STATE(3357), + [sym__condition] = STATE(3861), + [sym_match_expression] = STATE(1934), + [sym_while_expression] = STATE(1934), + [sym_loop_expression] = STATE(1934), + [sym_for_expression] = STATE(1934), + [sym_const_block] = STATE(1934), + [sym_closure_expression] = STATE(1934), + [sym_closure_parameters] = STATE(154), + [sym_label] = STATE(3832), + [sym_break_expression] = STATE(1934), + [sym_continue_expression] = STATE(1934), + [sym_index_expression] = STATE(1934), + [sym_await_expression] = STATE(1934), + [sym_field_expression] = STATE(1707), + [sym_unsafe_block] = STATE(1934), + [sym_async_block] = STATE(1934), + [sym_gen_block] = STATE(1934), + [sym_try_block] = STATE(1934), + [sym_block] = STATE(1934), + [sym__literal] = STATE(1934), + [sym_string_literal] = STATE(1949), + [sym_raw_string_literal] = STATE(1949), + [sym_boolean_literal] = STATE(1949), [sym_line_comment] = STATE(95), [sym_block_comment] = STATE(95), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(98), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_RBRACE] = ACTIONS(722), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(740), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(744), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(427), + [anon_sym_break] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_default] = ACTIONS(435), + [anon_sym_for] = ACTIONS(437), + [anon_sym_gen] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_let] = ACTIONS(746), + [anon_sym_loop] = ACTIONS(443), + [anon_sym_match] = ACTIONS(445), + [anon_sym_return] = ACTIONS(447), + [anon_sym_static] = ACTIONS(449), + [anon_sym_union] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(451), + [anon_sym_while] = ACTIONS(453), + [anon_sym_yield] = ACTIONS(455), + [anon_sym_move] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [aux_sym_string_literal_token1] = ACTIONS(463), + [sym_char_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(467), + [sym_super] = ACTIONS(469), + [sym_crate] = ACTIONS(469), + [sym_metavariable] = ACTIONS(471), + [sym__raw_string_literal_start] = ACTIONS(473), + [sym_float_literal] = ACTIONS(461), }, [STATE(96)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(385), + [sym__delim_tokens] = STATE(386), + [sym__non_delim_token] = STATE(385), + [sym__literal] = STATE(384), + [sym_string_literal] = STATE(397), + [sym_raw_string_literal] = STATE(397), + [sym_boolean_literal] = STATE(397), [sym_line_comment] = STATE(96), [sym_block_comment] = STATE(96), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(724), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym__non_special_token_repeat1] = STATE(373), + [aux_sym_delim_token_tree_repeat1] = STATE(99), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_RPAREN] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(97)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(385), + [sym__delim_tokens] = STATE(386), + [sym__non_delim_token] = STATE(385), + [sym__literal] = STATE(384), + [sym_string_literal] = STATE(397), + [sym_raw_string_literal] = STATE(397), + [sym_boolean_literal] = STATE(397), [sym_line_comment] = STATE(97), [sym_block_comment] = STATE(97), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_RBRACK] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym__non_special_token_repeat1] = STATE(373), + [aux_sym_delim_token_tree_repeat1] = STATE(100), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_RBRACK] = ACTIONS(748), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(98)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(385), + [sym__delim_tokens] = STATE(386), + [sym__non_delim_token] = STATE(385), + [sym__literal] = STATE(384), + [sym_string_literal] = STATE(397), + [sym_raw_string_literal] = STATE(397), + [sym_boolean_literal] = STATE(397), [sym_line_comment] = STATE(98), [sym_block_comment] = STATE(98), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_RBRACE] = ACTIONS(724), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym__non_special_token_repeat1] = STATE(373), + [aux_sym_delim_token_tree_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_RBRACE] = ACTIONS(748), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(99)] = { - [sym_token_tree] = STATE(187), - [sym_token_repetition] = STATE(187), - [sym__literal] = STATE(187), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym_delim_token_tree] = STATE(385), + [sym__delim_tokens] = STATE(386), + [sym__non_delim_token] = STATE(385), + [sym__literal] = STATE(384), + [sym_string_literal] = STATE(397), + [sym_raw_string_literal] = STATE(397), + [sym_boolean_literal] = STATE(397), [sym_line_comment] = STATE(99), [sym_block_comment] = STATE(99), - [aux_sym_token_tree_repeat1] = STATE(102), - [aux_sym__non_special_token_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(702), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(704), - [anon_sym_RPAREN] = ACTIONS(726), - [anon_sym_LBRACK] = ACTIONS(708), - [anon_sym_LBRACE] = ACTIONS(710), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(712), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(702), - [anon_sym_i8] = ACTIONS(702), - [anon_sym_u16] = ACTIONS(702), - [anon_sym_i16] = ACTIONS(702), - [anon_sym_u32] = ACTIONS(702), - [anon_sym_i32] = ACTIONS(702), - [anon_sym_u64] = ACTIONS(702), - [anon_sym_i64] = ACTIONS(702), - [anon_sym_u128] = ACTIONS(702), - [anon_sym_i128] = ACTIONS(702), - [anon_sym_isize] = ACTIONS(702), - [anon_sym_usize] = ACTIONS(702), - [anon_sym_f32] = ACTIONS(702), - [anon_sym_f64] = ACTIONS(702), - [anon_sym_bool] = ACTIONS(702), - [anon_sym_str] = ACTIONS(702), - [anon_sym_char] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(702), - [anon_sym_as] = ACTIONS(702), - [anon_sym_async] = ACTIONS(702), - [anon_sym_await] = ACTIONS(702), - [anon_sym_break] = ACTIONS(702), - [anon_sym_const] = ACTIONS(702), - [anon_sym_continue] = ACTIONS(702), - [anon_sym_default] = ACTIONS(702), - [anon_sym_enum] = ACTIONS(702), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_for] = ACTIONS(702), - [anon_sym_gen] = ACTIONS(702), - [anon_sym_if] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(702), - [anon_sym_let] = ACTIONS(702), - [anon_sym_loop] = ACTIONS(702), - [anon_sym_match] = ACTIONS(702), - [anon_sym_mod] = ACTIONS(702), - [anon_sym_pub] = ACTIONS(702), - [anon_sym_return] = ACTIONS(702), - [anon_sym_static] = ACTIONS(702), - [anon_sym_struct] = ACTIONS(702), - [anon_sym_trait] = ACTIONS(702), - [anon_sym_type] = ACTIONS(702), - [anon_sym_union] = ACTIONS(702), - [anon_sym_unsafe] = ACTIONS(702), - [anon_sym_use] = ACTIONS(702), - [anon_sym_where] = ACTIONS(702), - [anon_sym_while] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(702), - [sym_super] = ACTIONS(702), - [sym_crate] = ACTIONS(702), - [sym_metavariable] = ACTIONS(714), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym__non_special_token_repeat1] = STATE(373), + [aux_sym_delim_token_tree_repeat1] = STATE(71), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_RPAREN] = ACTIONS(698), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(100)] = { - [sym_token_tree] = STATE(187), - [sym_token_repetition] = STATE(187), - [sym__literal] = STATE(187), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym_delim_token_tree] = STATE(385), + [sym__delim_tokens] = STATE(386), + [sym__non_delim_token] = STATE(385), + [sym__literal] = STATE(384), + [sym_string_literal] = STATE(397), + [sym_raw_string_literal] = STATE(397), + [sym_boolean_literal] = STATE(397), [sym_line_comment] = STATE(100), [sym_block_comment] = STATE(100), - [aux_sym_token_tree_repeat1] = STATE(103), - [aux_sym__non_special_token_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(702), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(708), - [anon_sym_RBRACK] = ACTIONS(726), - [anon_sym_LBRACE] = ACTIONS(710), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(712), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(702), - [anon_sym_i8] = ACTIONS(702), - [anon_sym_u16] = ACTIONS(702), - [anon_sym_i16] = ACTIONS(702), - [anon_sym_u32] = ACTIONS(702), - [anon_sym_i32] = ACTIONS(702), - [anon_sym_u64] = ACTIONS(702), - [anon_sym_i64] = ACTIONS(702), - [anon_sym_u128] = ACTIONS(702), - [anon_sym_i128] = ACTIONS(702), - [anon_sym_isize] = ACTIONS(702), - [anon_sym_usize] = ACTIONS(702), - [anon_sym_f32] = ACTIONS(702), - [anon_sym_f64] = ACTIONS(702), - [anon_sym_bool] = ACTIONS(702), - [anon_sym_str] = ACTIONS(702), - [anon_sym_char] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(702), - [anon_sym_as] = ACTIONS(702), - [anon_sym_async] = ACTIONS(702), - [anon_sym_await] = ACTIONS(702), - [anon_sym_break] = ACTIONS(702), - [anon_sym_const] = ACTIONS(702), - [anon_sym_continue] = ACTIONS(702), - [anon_sym_default] = ACTIONS(702), - [anon_sym_enum] = ACTIONS(702), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_for] = ACTIONS(702), - [anon_sym_gen] = ACTIONS(702), - [anon_sym_if] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(702), - [anon_sym_let] = ACTIONS(702), - [anon_sym_loop] = ACTIONS(702), - [anon_sym_match] = ACTIONS(702), - [anon_sym_mod] = ACTIONS(702), - [anon_sym_pub] = ACTIONS(702), - [anon_sym_return] = ACTIONS(702), - [anon_sym_static] = ACTIONS(702), - [anon_sym_struct] = ACTIONS(702), - [anon_sym_trait] = ACTIONS(702), - [anon_sym_type] = ACTIONS(702), - [anon_sym_union] = ACTIONS(702), - [anon_sym_unsafe] = ACTIONS(702), - [anon_sym_use] = ACTIONS(702), - [anon_sym_where] = ACTIONS(702), - [anon_sym_while] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(702), - [sym_super] = ACTIONS(702), - [sym_crate] = ACTIONS(702), - [sym_metavariable] = ACTIONS(714), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym__non_special_token_repeat1] = STATE(373), + [aux_sym_delim_token_tree_repeat1] = STATE(71), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_RBRACK] = ACTIONS(698), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(101)] = { - [sym_token_tree] = STATE(187), - [sym_token_repetition] = STATE(187), - [sym__literal] = STATE(187), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(267), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1765), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_let_condition] = STATE(3039), + [sym__let_chain] = STATE(3042), + [sym__condition] = STATE(2832), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(101), [sym_block_comment] = STATE(101), - [aux_sym_token_tree_repeat1] = STATE(104), - [aux_sym__non_special_token_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(702), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(708), - [anon_sym_LBRACE] = ACTIONS(710), - [anon_sym_RBRACE] = ACTIONS(726), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(712), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(702), - [anon_sym_i8] = ACTIONS(702), - [anon_sym_u16] = ACTIONS(702), - [anon_sym_i16] = ACTIONS(702), - [anon_sym_u32] = ACTIONS(702), - [anon_sym_i32] = ACTIONS(702), - [anon_sym_u64] = ACTIONS(702), - [anon_sym_i64] = ACTIONS(702), - [anon_sym_u128] = ACTIONS(702), - [anon_sym_i128] = ACTIONS(702), - [anon_sym_isize] = ACTIONS(702), - [anon_sym_usize] = ACTIONS(702), - [anon_sym_f32] = ACTIONS(702), - [anon_sym_f64] = ACTIONS(702), - [anon_sym_bool] = ACTIONS(702), - [anon_sym_str] = ACTIONS(702), - [anon_sym_char] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(702), - [anon_sym_as] = ACTIONS(702), - [anon_sym_async] = ACTIONS(702), - [anon_sym_await] = ACTIONS(702), - [anon_sym_break] = ACTIONS(702), - [anon_sym_const] = ACTIONS(702), - [anon_sym_continue] = ACTIONS(702), - [anon_sym_default] = ACTIONS(702), - [anon_sym_enum] = ACTIONS(702), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_for] = ACTIONS(702), - [anon_sym_gen] = ACTIONS(702), - [anon_sym_if] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(702), - [anon_sym_let] = ACTIONS(702), - [anon_sym_loop] = ACTIONS(702), - [anon_sym_match] = ACTIONS(702), - [anon_sym_mod] = ACTIONS(702), - [anon_sym_pub] = ACTIONS(702), - [anon_sym_return] = ACTIONS(702), - [anon_sym_static] = ACTIONS(702), - [anon_sym_struct] = ACTIONS(702), - [anon_sym_trait] = ACTIONS(702), - [anon_sym_type] = ACTIONS(702), - [anon_sym_union] = ACTIONS(702), - [anon_sym_unsafe] = ACTIONS(702), - [anon_sym_use] = ACTIONS(702), - [anon_sym_where] = ACTIONS(702), - [anon_sym_while] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(702), - [sym_super] = ACTIONS(702), - [sym_crate] = ACTIONS(702), - [sym_metavariable] = ACTIONS(714), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(736), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_let] = ACTIONS(738), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [STATE(102)] = { - [sym_token_tree] = STATE(187), - [sym_token_repetition] = STATE(187), - [sym__literal] = STATE(187), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym_token_tree] = STATE(361), + [sym_token_repetition] = STATE(361), + [sym__literal] = STATE(361), + [sym_string_literal] = STATE(365), + [sym_raw_string_literal] = STATE(365), + [sym_boolean_literal] = STATE(365), [sym_line_comment] = STATE(102), [sym_block_comment] = STATE(102), - [aux_sym_token_tree_repeat1] = STATE(68), - [aux_sym__non_special_token_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(702), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(704), - [anon_sym_RPAREN] = ACTIONS(728), - [anon_sym_LBRACK] = ACTIONS(708), - [anon_sym_LBRACE] = ACTIONS(710), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(712), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(702), - [anon_sym_i8] = ACTIONS(702), - [anon_sym_u16] = ACTIONS(702), - [anon_sym_i16] = ACTIONS(702), - [anon_sym_u32] = ACTIONS(702), - [anon_sym_i32] = ACTIONS(702), - [anon_sym_u64] = ACTIONS(702), - [anon_sym_i64] = ACTIONS(702), - [anon_sym_u128] = ACTIONS(702), - [anon_sym_i128] = ACTIONS(702), - [anon_sym_isize] = ACTIONS(702), - [anon_sym_usize] = ACTIONS(702), - [anon_sym_f32] = ACTIONS(702), - [anon_sym_f64] = ACTIONS(702), - [anon_sym_bool] = ACTIONS(702), - [anon_sym_str] = ACTIONS(702), - [anon_sym_char] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(702), - [anon_sym_as] = ACTIONS(702), - [anon_sym_async] = ACTIONS(702), - [anon_sym_await] = ACTIONS(702), - [anon_sym_break] = ACTIONS(702), - [anon_sym_const] = ACTIONS(702), - [anon_sym_continue] = ACTIONS(702), - [anon_sym_default] = ACTIONS(702), - [anon_sym_enum] = ACTIONS(702), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_for] = ACTIONS(702), - [anon_sym_gen] = ACTIONS(702), - [anon_sym_if] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(702), - [anon_sym_let] = ACTIONS(702), - [anon_sym_loop] = ACTIONS(702), - [anon_sym_match] = ACTIONS(702), - [anon_sym_mod] = ACTIONS(702), - [anon_sym_pub] = ACTIONS(702), - [anon_sym_return] = ACTIONS(702), - [anon_sym_static] = ACTIONS(702), - [anon_sym_struct] = ACTIONS(702), - [anon_sym_trait] = ACTIONS(702), - [anon_sym_type] = ACTIONS(702), - [anon_sym_union] = ACTIONS(702), - [anon_sym_unsafe] = ACTIONS(702), - [anon_sym_use] = ACTIONS(702), - [anon_sym_where] = ACTIONS(702), - [anon_sym_while] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(702), - [sym_super] = ACTIONS(702), - [sym_crate] = ACTIONS(702), - [sym_metavariable] = ACTIONS(714), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym_token_tree_repeat1] = STATE(105), + [aux_sym__non_special_token_repeat1] = STATE(348), + [sym_identifier] = ACTIONS(712), + [anon_sym_SEMI] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(714), + [anon_sym_RPAREN] = ACTIONS(750), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_EQ_GT] = ACTIONS(616), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_u8] = ACTIONS(712), + [anon_sym_i8] = ACTIONS(712), + [anon_sym_u16] = ACTIONS(712), + [anon_sym_i16] = ACTIONS(712), + [anon_sym_u32] = ACTIONS(712), + [anon_sym_i32] = ACTIONS(712), + [anon_sym_u64] = ACTIONS(712), + [anon_sym_i64] = ACTIONS(712), + [anon_sym_u128] = ACTIONS(712), + [anon_sym_i128] = ACTIONS(712), + [anon_sym_isize] = ACTIONS(712), + [anon_sym_usize] = ACTIONS(712), + [anon_sym_f32] = ACTIONS(712), + [anon_sym_f64] = ACTIONS(712), + [anon_sym_bool] = ACTIONS(712), + [anon_sym_str] = ACTIONS(712), + [anon_sym_char] = ACTIONS(712), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_BANG] = ACTIONS(626), + [anon_sym_AMP] = ACTIONS(626), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(616), + [anon_sym_PIPE_PIPE] = ACTIONS(616), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_PLUS_EQ] = ACTIONS(616), + [anon_sym_DASH_EQ] = ACTIONS(616), + [anon_sym_STAR_EQ] = ACTIONS(616), + [anon_sym_SLASH_EQ] = ACTIONS(616), + [anon_sym_PERCENT_EQ] = ACTIONS(616), + [anon_sym_CARET_EQ] = ACTIONS(616), + [anon_sym_AMP_EQ] = ACTIONS(616), + [anon_sym_PIPE_EQ] = ACTIONS(616), + [anon_sym_LT_LT_EQ] = ACTIONS(616), + [anon_sym_GT_GT_EQ] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(616), + [anon_sym_BANG_EQ] = ACTIONS(616), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT_EQ] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(616), + [anon_sym_AT] = ACTIONS(616), + [anon_sym__] = ACTIONS(626), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + [anon_sym_DOT_DOT_EQ] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(616), + [anon_sym_COLON_COLON] = ACTIONS(616), + [anon_sym_DASH_GT] = ACTIONS(616), + [anon_sym_POUND] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_as] = ACTIONS(712), + [anon_sym_async] = ACTIONS(712), + [anon_sym_await] = ACTIONS(712), + [anon_sym_break] = ACTIONS(712), + [anon_sym_const] = ACTIONS(712), + [anon_sym_continue] = ACTIONS(712), + [anon_sym_default] = ACTIONS(712), + [anon_sym_enum] = ACTIONS(712), + [anon_sym_fn] = ACTIONS(712), + [anon_sym_for] = ACTIONS(712), + [anon_sym_gen] = ACTIONS(712), + [anon_sym_if] = ACTIONS(712), + [anon_sym_impl] = ACTIONS(712), + [anon_sym_let] = ACTIONS(712), + [anon_sym_loop] = ACTIONS(712), + [anon_sym_match] = ACTIONS(712), + [anon_sym_mod] = ACTIONS(712), + [anon_sym_pub] = ACTIONS(712), + [anon_sym_return] = ACTIONS(712), + [anon_sym_static] = ACTIONS(712), + [anon_sym_struct] = ACTIONS(712), + [anon_sym_trait] = ACTIONS(712), + [anon_sym_type] = ACTIONS(712), + [anon_sym_union] = ACTIONS(712), + [anon_sym_unsafe] = ACTIONS(712), + [anon_sym_use] = ACTIONS(712), + [anon_sym_where] = ACTIONS(712), + [anon_sym_while] = ACTIONS(712), + [sym_mutable_specifier] = ACTIONS(712), + [sym_integer_literal] = ACTIONS(630), + [aux_sym_string_literal_token1] = ACTIONS(632), + [sym_char_literal] = ACTIONS(630), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(712), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(724), + [sym__raw_string_literal_start] = ACTIONS(638), + [sym_float_literal] = ACTIONS(630), }, [STATE(103)] = { - [sym_token_tree] = STATE(187), - [sym_token_repetition] = STATE(187), - [sym__literal] = STATE(187), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym_token_tree] = STATE(361), + [sym_token_repetition] = STATE(361), + [sym__literal] = STATE(361), + [sym_string_literal] = STATE(365), + [sym_raw_string_literal] = STATE(365), + [sym_boolean_literal] = STATE(365), [sym_line_comment] = STATE(103), [sym_block_comment] = STATE(103), - [aux_sym_token_tree_repeat1] = STATE(68), - [aux_sym__non_special_token_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(702), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(708), - [anon_sym_RBRACK] = ACTIONS(728), - [anon_sym_LBRACE] = ACTIONS(710), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(712), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(702), - [anon_sym_i8] = ACTIONS(702), - [anon_sym_u16] = ACTIONS(702), - [anon_sym_i16] = ACTIONS(702), - [anon_sym_u32] = ACTIONS(702), - [anon_sym_i32] = ACTIONS(702), - [anon_sym_u64] = ACTIONS(702), - [anon_sym_i64] = ACTIONS(702), - [anon_sym_u128] = ACTIONS(702), - [anon_sym_i128] = ACTIONS(702), - [anon_sym_isize] = ACTIONS(702), - [anon_sym_usize] = ACTIONS(702), - [anon_sym_f32] = ACTIONS(702), - [anon_sym_f64] = ACTIONS(702), - [anon_sym_bool] = ACTIONS(702), - [anon_sym_str] = ACTIONS(702), - [anon_sym_char] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(702), - [anon_sym_as] = ACTIONS(702), - [anon_sym_async] = ACTIONS(702), - [anon_sym_await] = ACTIONS(702), - [anon_sym_break] = ACTIONS(702), - [anon_sym_const] = ACTIONS(702), - [anon_sym_continue] = ACTIONS(702), - [anon_sym_default] = ACTIONS(702), - [anon_sym_enum] = ACTIONS(702), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_for] = ACTIONS(702), - [anon_sym_gen] = ACTIONS(702), - [anon_sym_if] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(702), - [anon_sym_let] = ACTIONS(702), - [anon_sym_loop] = ACTIONS(702), - [anon_sym_match] = ACTIONS(702), - [anon_sym_mod] = ACTIONS(702), - [anon_sym_pub] = ACTIONS(702), - [anon_sym_return] = ACTIONS(702), - [anon_sym_static] = ACTIONS(702), - [anon_sym_struct] = ACTIONS(702), - [anon_sym_trait] = ACTIONS(702), - [anon_sym_type] = ACTIONS(702), - [anon_sym_union] = ACTIONS(702), - [anon_sym_unsafe] = ACTIONS(702), - [anon_sym_use] = ACTIONS(702), - [anon_sym_where] = ACTIONS(702), - [anon_sym_while] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(702), - [sym_super] = ACTIONS(702), - [sym_crate] = ACTIONS(702), - [sym_metavariable] = ACTIONS(714), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym_token_tree_repeat1] = STATE(90), + [aux_sym__non_special_token_repeat1] = STATE(348), + [sym_identifier] = ACTIONS(712), + [anon_sym_SEMI] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(714), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_RBRACK] = ACTIONS(720), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_EQ_GT] = ACTIONS(616), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_u8] = ACTIONS(712), + [anon_sym_i8] = ACTIONS(712), + [anon_sym_u16] = ACTIONS(712), + [anon_sym_i16] = ACTIONS(712), + [anon_sym_u32] = ACTIONS(712), + [anon_sym_i32] = ACTIONS(712), + [anon_sym_u64] = ACTIONS(712), + [anon_sym_i64] = ACTIONS(712), + [anon_sym_u128] = ACTIONS(712), + [anon_sym_i128] = ACTIONS(712), + [anon_sym_isize] = ACTIONS(712), + [anon_sym_usize] = ACTIONS(712), + [anon_sym_f32] = ACTIONS(712), + [anon_sym_f64] = ACTIONS(712), + [anon_sym_bool] = ACTIONS(712), + [anon_sym_str] = ACTIONS(712), + [anon_sym_char] = ACTIONS(712), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_BANG] = ACTIONS(626), + [anon_sym_AMP] = ACTIONS(626), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(616), + [anon_sym_PIPE_PIPE] = ACTIONS(616), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_PLUS_EQ] = ACTIONS(616), + [anon_sym_DASH_EQ] = ACTIONS(616), + [anon_sym_STAR_EQ] = ACTIONS(616), + [anon_sym_SLASH_EQ] = ACTIONS(616), + [anon_sym_PERCENT_EQ] = ACTIONS(616), + [anon_sym_CARET_EQ] = ACTIONS(616), + [anon_sym_AMP_EQ] = ACTIONS(616), + [anon_sym_PIPE_EQ] = ACTIONS(616), + [anon_sym_LT_LT_EQ] = ACTIONS(616), + [anon_sym_GT_GT_EQ] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(616), + [anon_sym_BANG_EQ] = ACTIONS(616), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT_EQ] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(616), + [anon_sym_AT] = ACTIONS(616), + [anon_sym__] = ACTIONS(626), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + [anon_sym_DOT_DOT_EQ] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(616), + [anon_sym_COLON_COLON] = ACTIONS(616), + [anon_sym_DASH_GT] = ACTIONS(616), + [anon_sym_POUND] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_as] = ACTIONS(712), + [anon_sym_async] = ACTIONS(712), + [anon_sym_await] = ACTIONS(712), + [anon_sym_break] = ACTIONS(712), + [anon_sym_const] = ACTIONS(712), + [anon_sym_continue] = ACTIONS(712), + [anon_sym_default] = ACTIONS(712), + [anon_sym_enum] = ACTIONS(712), + [anon_sym_fn] = ACTIONS(712), + [anon_sym_for] = ACTIONS(712), + [anon_sym_gen] = ACTIONS(712), + [anon_sym_if] = ACTIONS(712), + [anon_sym_impl] = ACTIONS(712), + [anon_sym_let] = ACTIONS(712), + [anon_sym_loop] = ACTIONS(712), + [anon_sym_match] = ACTIONS(712), + [anon_sym_mod] = ACTIONS(712), + [anon_sym_pub] = ACTIONS(712), + [anon_sym_return] = ACTIONS(712), + [anon_sym_static] = ACTIONS(712), + [anon_sym_struct] = ACTIONS(712), + [anon_sym_trait] = ACTIONS(712), + [anon_sym_type] = ACTIONS(712), + [anon_sym_union] = ACTIONS(712), + [anon_sym_unsafe] = ACTIONS(712), + [anon_sym_use] = ACTIONS(712), + [anon_sym_where] = ACTIONS(712), + [anon_sym_while] = ACTIONS(712), + [sym_mutable_specifier] = ACTIONS(712), + [sym_integer_literal] = ACTIONS(630), + [aux_sym_string_literal_token1] = ACTIONS(632), + [sym_char_literal] = ACTIONS(630), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(712), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(724), + [sym__raw_string_literal_start] = ACTIONS(638), + [sym_float_literal] = ACTIONS(630), }, [STATE(104)] = { - [sym_token_tree] = STATE(187), - [sym_token_repetition] = STATE(187), - [sym__literal] = STATE(187), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym_token_tree] = STATE(361), + [sym_token_repetition] = STATE(361), + [sym__literal] = STATE(361), + [sym_string_literal] = STATE(365), + [sym_raw_string_literal] = STATE(365), + [sym_boolean_literal] = STATE(365), [sym_line_comment] = STATE(104), [sym_block_comment] = STATE(104), - [aux_sym_token_tree_repeat1] = STATE(68), - [aux_sym__non_special_token_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(702), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(708), - [anon_sym_LBRACE] = ACTIONS(710), - [anon_sym_RBRACE] = ACTIONS(728), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(712), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(702), - [anon_sym_i8] = ACTIONS(702), - [anon_sym_u16] = ACTIONS(702), - [anon_sym_i16] = ACTIONS(702), - [anon_sym_u32] = ACTIONS(702), - [anon_sym_i32] = ACTIONS(702), - [anon_sym_u64] = ACTIONS(702), - [anon_sym_i64] = ACTIONS(702), - [anon_sym_u128] = ACTIONS(702), - [anon_sym_i128] = ACTIONS(702), - [anon_sym_isize] = ACTIONS(702), - [anon_sym_usize] = ACTIONS(702), - [anon_sym_f32] = ACTIONS(702), - [anon_sym_f64] = ACTIONS(702), - [anon_sym_bool] = ACTIONS(702), - [anon_sym_str] = ACTIONS(702), - [anon_sym_char] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(702), - [anon_sym_as] = ACTIONS(702), - [anon_sym_async] = ACTIONS(702), - [anon_sym_await] = ACTIONS(702), - [anon_sym_break] = ACTIONS(702), - [anon_sym_const] = ACTIONS(702), - [anon_sym_continue] = ACTIONS(702), - [anon_sym_default] = ACTIONS(702), - [anon_sym_enum] = ACTIONS(702), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_for] = ACTIONS(702), - [anon_sym_gen] = ACTIONS(702), - [anon_sym_if] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(702), - [anon_sym_let] = ACTIONS(702), - [anon_sym_loop] = ACTIONS(702), - [anon_sym_match] = ACTIONS(702), - [anon_sym_mod] = ACTIONS(702), - [anon_sym_pub] = ACTIONS(702), - [anon_sym_return] = ACTIONS(702), - [anon_sym_static] = ACTIONS(702), - [anon_sym_struct] = ACTIONS(702), - [anon_sym_trait] = ACTIONS(702), - [anon_sym_type] = ACTIONS(702), - [anon_sym_union] = ACTIONS(702), - [anon_sym_unsafe] = ACTIONS(702), - [anon_sym_use] = ACTIONS(702), - [anon_sym_where] = ACTIONS(702), - [anon_sym_while] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(702), - [sym_super] = ACTIONS(702), - [sym_crate] = ACTIONS(702), - [sym_metavariable] = ACTIONS(714), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym_token_tree_repeat1] = STATE(107), + [aux_sym__non_special_token_repeat1] = STATE(348), + [sym_identifier] = ACTIONS(712), + [anon_sym_SEMI] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(714), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_RBRACE] = ACTIONS(750), + [anon_sym_EQ_GT] = ACTIONS(616), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_u8] = ACTIONS(712), + [anon_sym_i8] = ACTIONS(712), + [anon_sym_u16] = ACTIONS(712), + [anon_sym_i16] = ACTIONS(712), + [anon_sym_u32] = ACTIONS(712), + [anon_sym_i32] = ACTIONS(712), + [anon_sym_u64] = ACTIONS(712), + [anon_sym_i64] = ACTIONS(712), + [anon_sym_u128] = ACTIONS(712), + [anon_sym_i128] = ACTIONS(712), + [anon_sym_isize] = ACTIONS(712), + [anon_sym_usize] = ACTIONS(712), + [anon_sym_f32] = ACTIONS(712), + [anon_sym_f64] = ACTIONS(712), + [anon_sym_bool] = ACTIONS(712), + [anon_sym_str] = ACTIONS(712), + [anon_sym_char] = ACTIONS(712), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_BANG] = ACTIONS(626), + [anon_sym_AMP] = ACTIONS(626), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(616), + [anon_sym_PIPE_PIPE] = ACTIONS(616), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_PLUS_EQ] = ACTIONS(616), + [anon_sym_DASH_EQ] = ACTIONS(616), + [anon_sym_STAR_EQ] = ACTIONS(616), + [anon_sym_SLASH_EQ] = ACTIONS(616), + [anon_sym_PERCENT_EQ] = ACTIONS(616), + [anon_sym_CARET_EQ] = ACTIONS(616), + [anon_sym_AMP_EQ] = ACTIONS(616), + [anon_sym_PIPE_EQ] = ACTIONS(616), + [anon_sym_LT_LT_EQ] = ACTIONS(616), + [anon_sym_GT_GT_EQ] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(616), + [anon_sym_BANG_EQ] = ACTIONS(616), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT_EQ] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(616), + [anon_sym_AT] = ACTIONS(616), + [anon_sym__] = ACTIONS(626), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + [anon_sym_DOT_DOT_EQ] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(616), + [anon_sym_COLON_COLON] = ACTIONS(616), + [anon_sym_DASH_GT] = ACTIONS(616), + [anon_sym_POUND] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_as] = ACTIONS(712), + [anon_sym_async] = ACTIONS(712), + [anon_sym_await] = ACTIONS(712), + [anon_sym_break] = ACTIONS(712), + [anon_sym_const] = ACTIONS(712), + [anon_sym_continue] = ACTIONS(712), + [anon_sym_default] = ACTIONS(712), + [anon_sym_enum] = ACTIONS(712), + [anon_sym_fn] = ACTIONS(712), + [anon_sym_for] = ACTIONS(712), + [anon_sym_gen] = ACTIONS(712), + [anon_sym_if] = ACTIONS(712), + [anon_sym_impl] = ACTIONS(712), + [anon_sym_let] = ACTIONS(712), + [anon_sym_loop] = ACTIONS(712), + [anon_sym_match] = ACTIONS(712), + [anon_sym_mod] = ACTIONS(712), + [anon_sym_pub] = ACTIONS(712), + [anon_sym_return] = ACTIONS(712), + [anon_sym_static] = ACTIONS(712), + [anon_sym_struct] = ACTIONS(712), + [anon_sym_trait] = ACTIONS(712), + [anon_sym_type] = ACTIONS(712), + [anon_sym_union] = ACTIONS(712), + [anon_sym_unsafe] = ACTIONS(712), + [anon_sym_use] = ACTIONS(712), + [anon_sym_where] = ACTIONS(712), + [anon_sym_while] = ACTIONS(712), + [sym_mutable_specifier] = ACTIONS(712), + [sym_integer_literal] = ACTIONS(630), + [aux_sym_string_literal_token1] = ACTIONS(632), + [sym_char_literal] = ACTIONS(630), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(712), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(724), + [sym__raw_string_literal_start] = ACTIONS(638), + [sym_float_literal] = ACTIONS(630), }, [STATE(105)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_token_tree] = STATE(361), + [sym_token_repetition] = STATE(361), + [sym__literal] = STATE(361), + [sym_string_literal] = STATE(365), + [sym_raw_string_literal] = STATE(365), + [sym_boolean_literal] = STATE(365), [sym_line_comment] = STATE(105), [sym_block_comment] = STATE(105), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(730), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym_token_tree_repeat1] = STATE(75), + [aux_sym__non_special_token_repeat1] = STATE(348), + [sym_identifier] = ACTIONS(712), + [anon_sym_SEMI] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(714), + [anon_sym_RPAREN] = ACTIONS(752), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_EQ_GT] = ACTIONS(616), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_u8] = ACTIONS(712), + [anon_sym_i8] = ACTIONS(712), + [anon_sym_u16] = ACTIONS(712), + [anon_sym_i16] = ACTIONS(712), + [anon_sym_u32] = ACTIONS(712), + [anon_sym_i32] = ACTIONS(712), + [anon_sym_u64] = ACTIONS(712), + [anon_sym_i64] = ACTIONS(712), + [anon_sym_u128] = ACTIONS(712), + [anon_sym_i128] = ACTIONS(712), + [anon_sym_isize] = ACTIONS(712), + [anon_sym_usize] = ACTIONS(712), + [anon_sym_f32] = ACTIONS(712), + [anon_sym_f64] = ACTIONS(712), + [anon_sym_bool] = ACTIONS(712), + [anon_sym_str] = ACTIONS(712), + [anon_sym_char] = ACTIONS(712), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_BANG] = ACTIONS(626), + [anon_sym_AMP] = ACTIONS(626), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(616), + [anon_sym_PIPE_PIPE] = ACTIONS(616), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_PLUS_EQ] = ACTIONS(616), + [anon_sym_DASH_EQ] = ACTIONS(616), + [anon_sym_STAR_EQ] = ACTIONS(616), + [anon_sym_SLASH_EQ] = ACTIONS(616), + [anon_sym_PERCENT_EQ] = ACTIONS(616), + [anon_sym_CARET_EQ] = ACTIONS(616), + [anon_sym_AMP_EQ] = ACTIONS(616), + [anon_sym_PIPE_EQ] = ACTIONS(616), + [anon_sym_LT_LT_EQ] = ACTIONS(616), + [anon_sym_GT_GT_EQ] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(616), + [anon_sym_BANG_EQ] = ACTIONS(616), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT_EQ] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(616), + [anon_sym_AT] = ACTIONS(616), + [anon_sym__] = ACTIONS(626), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + [anon_sym_DOT_DOT_EQ] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(616), + [anon_sym_COLON_COLON] = ACTIONS(616), + [anon_sym_DASH_GT] = ACTIONS(616), + [anon_sym_POUND] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_as] = ACTIONS(712), + [anon_sym_async] = ACTIONS(712), + [anon_sym_await] = ACTIONS(712), + [anon_sym_break] = ACTIONS(712), + [anon_sym_const] = ACTIONS(712), + [anon_sym_continue] = ACTIONS(712), + [anon_sym_default] = ACTIONS(712), + [anon_sym_enum] = ACTIONS(712), + [anon_sym_fn] = ACTIONS(712), + [anon_sym_for] = ACTIONS(712), + [anon_sym_gen] = ACTIONS(712), + [anon_sym_if] = ACTIONS(712), + [anon_sym_impl] = ACTIONS(712), + [anon_sym_let] = ACTIONS(712), + [anon_sym_loop] = ACTIONS(712), + [anon_sym_match] = ACTIONS(712), + [anon_sym_mod] = ACTIONS(712), + [anon_sym_pub] = ACTIONS(712), + [anon_sym_return] = ACTIONS(712), + [anon_sym_static] = ACTIONS(712), + [anon_sym_struct] = ACTIONS(712), + [anon_sym_trait] = ACTIONS(712), + [anon_sym_type] = ACTIONS(712), + [anon_sym_union] = ACTIONS(712), + [anon_sym_unsafe] = ACTIONS(712), + [anon_sym_use] = ACTIONS(712), + [anon_sym_where] = ACTIONS(712), + [anon_sym_while] = ACTIONS(712), + [sym_mutable_specifier] = ACTIONS(712), + [sym_integer_literal] = ACTIONS(630), + [aux_sym_string_literal_token1] = ACTIONS(632), + [sym_char_literal] = ACTIONS(630), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(712), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(724), + [sym__raw_string_literal_start] = ACTIONS(638), + [sym_float_literal] = ACTIONS(630), }, [STATE(106)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_token_tree] = STATE(361), + [sym_token_repetition] = STATE(361), + [sym__literal] = STATE(361), + [sym_string_literal] = STATE(365), + [sym_raw_string_literal] = STATE(365), + [sym_boolean_literal] = STATE(365), [sym_line_comment] = STATE(106), [sym_block_comment] = STATE(106), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(109), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_RBRACK] = ACTIONS(730), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym_token_tree_repeat1] = STATE(75), + [aux_sym__non_special_token_repeat1] = STATE(348), + [sym_identifier] = ACTIONS(712), + [anon_sym_SEMI] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(714), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_RBRACK] = ACTIONS(752), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_EQ_GT] = ACTIONS(616), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_u8] = ACTIONS(712), + [anon_sym_i8] = ACTIONS(712), + [anon_sym_u16] = ACTIONS(712), + [anon_sym_i16] = ACTIONS(712), + [anon_sym_u32] = ACTIONS(712), + [anon_sym_i32] = ACTIONS(712), + [anon_sym_u64] = ACTIONS(712), + [anon_sym_i64] = ACTIONS(712), + [anon_sym_u128] = ACTIONS(712), + [anon_sym_i128] = ACTIONS(712), + [anon_sym_isize] = ACTIONS(712), + [anon_sym_usize] = ACTIONS(712), + [anon_sym_f32] = ACTIONS(712), + [anon_sym_f64] = ACTIONS(712), + [anon_sym_bool] = ACTIONS(712), + [anon_sym_str] = ACTIONS(712), + [anon_sym_char] = ACTIONS(712), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_BANG] = ACTIONS(626), + [anon_sym_AMP] = ACTIONS(626), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(616), + [anon_sym_PIPE_PIPE] = ACTIONS(616), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_PLUS_EQ] = ACTIONS(616), + [anon_sym_DASH_EQ] = ACTIONS(616), + [anon_sym_STAR_EQ] = ACTIONS(616), + [anon_sym_SLASH_EQ] = ACTIONS(616), + [anon_sym_PERCENT_EQ] = ACTIONS(616), + [anon_sym_CARET_EQ] = ACTIONS(616), + [anon_sym_AMP_EQ] = ACTIONS(616), + [anon_sym_PIPE_EQ] = ACTIONS(616), + [anon_sym_LT_LT_EQ] = ACTIONS(616), + [anon_sym_GT_GT_EQ] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(616), + [anon_sym_BANG_EQ] = ACTIONS(616), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT_EQ] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(616), + [anon_sym_AT] = ACTIONS(616), + [anon_sym__] = ACTIONS(626), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + [anon_sym_DOT_DOT_EQ] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(616), + [anon_sym_COLON_COLON] = ACTIONS(616), + [anon_sym_DASH_GT] = ACTIONS(616), + [anon_sym_POUND] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_as] = ACTIONS(712), + [anon_sym_async] = ACTIONS(712), + [anon_sym_await] = ACTIONS(712), + [anon_sym_break] = ACTIONS(712), + [anon_sym_const] = ACTIONS(712), + [anon_sym_continue] = ACTIONS(712), + [anon_sym_default] = ACTIONS(712), + [anon_sym_enum] = ACTIONS(712), + [anon_sym_fn] = ACTIONS(712), + [anon_sym_for] = ACTIONS(712), + [anon_sym_gen] = ACTIONS(712), + [anon_sym_if] = ACTIONS(712), + [anon_sym_impl] = ACTIONS(712), + [anon_sym_let] = ACTIONS(712), + [anon_sym_loop] = ACTIONS(712), + [anon_sym_match] = ACTIONS(712), + [anon_sym_mod] = ACTIONS(712), + [anon_sym_pub] = ACTIONS(712), + [anon_sym_return] = ACTIONS(712), + [anon_sym_static] = ACTIONS(712), + [anon_sym_struct] = ACTIONS(712), + [anon_sym_trait] = ACTIONS(712), + [anon_sym_type] = ACTIONS(712), + [anon_sym_union] = ACTIONS(712), + [anon_sym_unsafe] = ACTIONS(712), + [anon_sym_use] = ACTIONS(712), + [anon_sym_where] = ACTIONS(712), + [anon_sym_while] = ACTIONS(712), + [sym_mutable_specifier] = ACTIONS(712), + [sym_integer_literal] = ACTIONS(630), + [aux_sym_string_literal_token1] = ACTIONS(632), + [sym_char_literal] = ACTIONS(630), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(712), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(724), + [sym__raw_string_literal_start] = ACTIONS(638), + [sym_float_literal] = ACTIONS(630), }, [STATE(107)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_token_tree] = STATE(361), + [sym_token_repetition] = STATE(361), + [sym__literal] = STATE(361), + [sym_string_literal] = STATE(365), + [sym_raw_string_literal] = STATE(365), + [sym_boolean_literal] = STATE(365), [sym_line_comment] = STATE(107), [sym_block_comment] = STATE(107), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(110), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_RBRACE] = ACTIONS(730), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym_token_tree_repeat1] = STATE(75), + [aux_sym__non_special_token_repeat1] = STATE(348), + [sym_identifier] = ACTIONS(712), + [anon_sym_SEMI] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(714), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_RBRACE] = ACTIONS(752), + [anon_sym_EQ_GT] = ACTIONS(616), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_u8] = ACTIONS(712), + [anon_sym_i8] = ACTIONS(712), + [anon_sym_u16] = ACTIONS(712), + [anon_sym_i16] = ACTIONS(712), + [anon_sym_u32] = ACTIONS(712), + [anon_sym_i32] = ACTIONS(712), + [anon_sym_u64] = ACTIONS(712), + [anon_sym_i64] = ACTIONS(712), + [anon_sym_u128] = ACTIONS(712), + [anon_sym_i128] = ACTIONS(712), + [anon_sym_isize] = ACTIONS(712), + [anon_sym_usize] = ACTIONS(712), + [anon_sym_f32] = ACTIONS(712), + [anon_sym_f64] = ACTIONS(712), + [anon_sym_bool] = ACTIONS(712), + [anon_sym_str] = ACTIONS(712), + [anon_sym_char] = ACTIONS(712), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_BANG] = ACTIONS(626), + [anon_sym_AMP] = ACTIONS(626), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(616), + [anon_sym_PIPE_PIPE] = ACTIONS(616), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_PLUS_EQ] = ACTIONS(616), + [anon_sym_DASH_EQ] = ACTIONS(616), + [anon_sym_STAR_EQ] = ACTIONS(616), + [anon_sym_SLASH_EQ] = ACTIONS(616), + [anon_sym_PERCENT_EQ] = ACTIONS(616), + [anon_sym_CARET_EQ] = ACTIONS(616), + [anon_sym_AMP_EQ] = ACTIONS(616), + [anon_sym_PIPE_EQ] = ACTIONS(616), + [anon_sym_LT_LT_EQ] = ACTIONS(616), + [anon_sym_GT_GT_EQ] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(616), + [anon_sym_BANG_EQ] = ACTIONS(616), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT_EQ] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(616), + [anon_sym_AT] = ACTIONS(616), + [anon_sym__] = ACTIONS(626), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + [anon_sym_DOT_DOT_EQ] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(616), + [anon_sym_COLON_COLON] = ACTIONS(616), + [anon_sym_DASH_GT] = ACTIONS(616), + [anon_sym_POUND] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_as] = ACTIONS(712), + [anon_sym_async] = ACTIONS(712), + [anon_sym_await] = ACTIONS(712), + [anon_sym_break] = ACTIONS(712), + [anon_sym_const] = ACTIONS(712), + [anon_sym_continue] = ACTIONS(712), + [anon_sym_default] = ACTIONS(712), + [anon_sym_enum] = ACTIONS(712), + [anon_sym_fn] = ACTIONS(712), + [anon_sym_for] = ACTIONS(712), + [anon_sym_gen] = ACTIONS(712), + [anon_sym_if] = ACTIONS(712), + [anon_sym_impl] = ACTIONS(712), + [anon_sym_let] = ACTIONS(712), + [anon_sym_loop] = ACTIONS(712), + [anon_sym_match] = ACTIONS(712), + [anon_sym_mod] = ACTIONS(712), + [anon_sym_pub] = ACTIONS(712), + [anon_sym_return] = ACTIONS(712), + [anon_sym_static] = ACTIONS(712), + [anon_sym_struct] = ACTIONS(712), + [anon_sym_trait] = ACTIONS(712), + [anon_sym_type] = ACTIONS(712), + [anon_sym_union] = ACTIONS(712), + [anon_sym_unsafe] = ACTIONS(712), + [anon_sym_use] = ACTIONS(712), + [anon_sym_where] = ACTIONS(712), + [anon_sym_while] = ACTIONS(712), + [sym_mutable_specifier] = ACTIONS(712), + [sym_integer_literal] = ACTIONS(630), + [aux_sym_string_literal_token1] = ACTIONS(632), + [sym_char_literal] = ACTIONS(630), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(712), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(724), + [sym__raw_string_literal_start] = ACTIONS(638), + [sym_float_literal] = ACTIONS(630), }, [STATE(108)] = { - [sym_token_tree] = STATE(187), - [sym_token_repetition] = STATE(187), - [sym__literal] = STATE(187), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym_delim_token_tree] = STATE(385), + [sym__delim_tokens] = STATE(386), + [sym__non_delim_token] = STATE(385), + [sym__literal] = STATE(384), + [sym_string_literal] = STATE(397), + [sym_raw_string_literal] = STATE(397), + [sym_boolean_literal] = STATE(397), [sym_line_comment] = STATE(108), [sym_block_comment] = STATE(108), - [aux_sym_token_tree_repeat1] = STATE(68), - [aux_sym__non_special_token_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(702), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(708), - [anon_sym_LBRACE] = ACTIONS(710), - [anon_sym_RBRACE] = ACTIONS(732), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(712), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(702), - [anon_sym_i8] = ACTIONS(702), - [anon_sym_u16] = ACTIONS(702), - [anon_sym_i16] = ACTIONS(702), - [anon_sym_u32] = ACTIONS(702), - [anon_sym_i32] = ACTIONS(702), - [anon_sym_u64] = ACTIONS(702), - [anon_sym_i64] = ACTIONS(702), - [anon_sym_u128] = ACTIONS(702), - [anon_sym_i128] = ACTIONS(702), - [anon_sym_isize] = ACTIONS(702), - [anon_sym_usize] = ACTIONS(702), - [anon_sym_f32] = ACTIONS(702), - [anon_sym_f64] = ACTIONS(702), - [anon_sym_bool] = ACTIONS(702), - [anon_sym_str] = ACTIONS(702), - [anon_sym_char] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(702), - [anon_sym_as] = ACTIONS(702), - [anon_sym_async] = ACTIONS(702), - [anon_sym_await] = ACTIONS(702), - [anon_sym_break] = ACTIONS(702), - [anon_sym_const] = ACTIONS(702), - [anon_sym_continue] = ACTIONS(702), - [anon_sym_default] = ACTIONS(702), - [anon_sym_enum] = ACTIONS(702), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_for] = ACTIONS(702), - [anon_sym_gen] = ACTIONS(702), - [anon_sym_if] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(702), - [anon_sym_let] = ACTIONS(702), - [anon_sym_loop] = ACTIONS(702), - [anon_sym_match] = ACTIONS(702), - [anon_sym_mod] = ACTIONS(702), - [anon_sym_pub] = ACTIONS(702), - [anon_sym_return] = ACTIONS(702), - [anon_sym_static] = ACTIONS(702), - [anon_sym_struct] = ACTIONS(702), - [anon_sym_trait] = ACTIONS(702), - [anon_sym_type] = ACTIONS(702), - [anon_sym_union] = ACTIONS(702), - [anon_sym_unsafe] = ACTIONS(702), - [anon_sym_use] = ACTIONS(702), - [anon_sym_where] = ACTIONS(702), - [anon_sym_while] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(702), - [sym_super] = ACTIONS(702), - [sym_crate] = ACTIONS(702), - [sym_metavariable] = ACTIONS(714), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym__non_special_token_repeat1] = STATE(373), + [aux_sym_delim_token_tree_repeat1] = STATE(131), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_RPAREN] = ACTIONS(754), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(109)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(385), + [sym__delim_tokens] = STATE(386), + [sym__non_delim_token] = STATE(385), + [sym__literal] = STATE(384), + [sym_string_literal] = STATE(397), + [sym_raw_string_literal] = STATE(397), + [sym_boolean_literal] = STATE(397), [sym_line_comment] = STATE(109), [sym_block_comment] = STATE(109), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_RBRACK] = ACTIONS(734), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym__non_special_token_repeat1] = STATE(373), + [aux_sym_delim_token_tree_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_RBRACK] = ACTIONS(754), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(110)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(385), + [sym__delim_tokens] = STATE(386), + [sym__non_delim_token] = STATE(385), + [sym__literal] = STATE(384), + [sym_string_literal] = STATE(397), + [sym_raw_string_literal] = STATE(397), + [sym_boolean_literal] = STATE(397), [sym_line_comment] = STATE(110), [sym_block_comment] = STATE(110), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_RBRACE] = ACTIONS(734), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym__non_special_token_repeat1] = STATE(373), + [aux_sym_delim_token_tree_repeat1] = STATE(114), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_RPAREN] = ACTIONS(756), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(111)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(385), + [sym__delim_tokens] = STATE(386), + [sym__non_delim_token] = STATE(385), + [sym__literal] = STATE(384), + [sym_string_literal] = STATE(397), + [sym_raw_string_literal] = STATE(397), + [sym_boolean_literal] = STATE(397), [sym_line_comment] = STATE(111), [sym_block_comment] = STATE(111), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(114), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(736), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym__non_special_token_repeat1] = STATE(373), + [aux_sym_delim_token_tree_repeat1] = STATE(115), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_RBRACK] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(112)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(385), + [sym__delim_tokens] = STATE(386), + [sym__non_delim_token] = STATE(385), + [sym__literal] = STATE(384), + [sym_string_literal] = STATE(397), + [sym_raw_string_literal] = STATE(397), + [sym_boolean_literal] = STATE(397), [sym_line_comment] = STATE(112), [sym_block_comment] = STATE(112), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(115), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_RBRACK] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym__non_special_token_repeat1] = STATE(373), + [aux_sym_delim_token_tree_repeat1] = STATE(116), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_RBRACE] = ACTIONS(756), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(113)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(385), + [sym__delim_tokens] = STATE(386), + [sym__non_delim_token] = STATE(385), + [sym__literal] = STATE(384), + [sym_string_literal] = STATE(397), + [sym_raw_string_literal] = STATE(397), + [sym_boolean_literal] = STATE(397), [sym_line_comment] = STATE(113), [sym_block_comment] = STATE(113), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(116), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_RBRACE] = ACTIONS(736), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym__non_special_token_repeat1] = STATE(373), + [aux_sym_delim_token_tree_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_RBRACE] = ACTIONS(754), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(114)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(385), + [sym__delim_tokens] = STATE(386), + [sym__non_delim_token] = STATE(385), + [sym__literal] = STATE(384), + [sym_string_literal] = STATE(397), + [sym_raw_string_literal] = STATE(397), + [sym_boolean_literal] = STATE(397), [sym_line_comment] = STATE(114), [sym_block_comment] = STATE(114), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym__non_special_token_repeat1] = STATE(373), + [aux_sym_delim_token_tree_repeat1] = STATE(71), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(115)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(385), + [sym__delim_tokens] = STATE(386), + [sym__non_delim_token] = STATE(385), + [sym__literal] = STATE(384), + [sym_string_literal] = STATE(397), + [sym_raw_string_literal] = STATE(397), + [sym_boolean_literal] = STATE(397), [sym_line_comment] = STATE(115), [sym_block_comment] = STATE(115), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_RBRACK] = ACTIONS(738), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym__non_special_token_repeat1] = STATE(373), + [aux_sym_delim_token_tree_repeat1] = STATE(71), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_RBRACK] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(116)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(385), + [sym__delim_tokens] = STATE(386), + [sym__non_delim_token] = STATE(385), + [sym__literal] = STATE(384), + [sym_string_literal] = STATE(397), + [sym_raw_string_literal] = STATE(397), + [sym_boolean_literal] = STATE(397), [sym_line_comment] = STATE(116), [sym_block_comment] = STATE(116), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_RBRACE] = ACTIONS(738), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym__non_special_token_repeat1] = STATE(373), + [aux_sym_delim_token_tree_repeat1] = STATE(71), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_RBRACE] = ACTIONS(758), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(117)] = { - [sym_token_tree] = STATE(187), - [sym_token_repetition] = STATE(187), - [sym__literal] = STATE(187), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(267), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1765), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_let_condition] = STATE(3039), + [sym__let_chain] = STATE(3042), + [sym__condition] = STATE(2831), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(117), [sym_block_comment] = STATE(117), - [aux_sym_token_tree_repeat1] = STATE(131), - [aux_sym__non_special_token_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(702), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(704), - [anon_sym_RPAREN] = ACTIONS(740), - [anon_sym_LBRACK] = ACTIONS(708), - [anon_sym_LBRACE] = ACTIONS(710), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(712), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(702), - [anon_sym_i8] = ACTIONS(702), - [anon_sym_u16] = ACTIONS(702), - [anon_sym_i16] = ACTIONS(702), - [anon_sym_u32] = ACTIONS(702), - [anon_sym_i32] = ACTIONS(702), - [anon_sym_u64] = ACTIONS(702), - [anon_sym_i64] = ACTIONS(702), - [anon_sym_u128] = ACTIONS(702), - [anon_sym_i128] = ACTIONS(702), - [anon_sym_isize] = ACTIONS(702), - [anon_sym_usize] = ACTIONS(702), - [anon_sym_f32] = ACTIONS(702), - [anon_sym_f64] = ACTIONS(702), - [anon_sym_bool] = ACTIONS(702), - [anon_sym_str] = ACTIONS(702), - [anon_sym_char] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(702), - [anon_sym_as] = ACTIONS(702), - [anon_sym_async] = ACTIONS(702), - [anon_sym_await] = ACTIONS(702), - [anon_sym_break] = ACTIONS(702), - [anon_sym_const] = ACTIONS(702), - [anon_sym_continue] = ACTIONS(702), - [anon_sym_default] = ACTIONS(702), - [anon_sym_enum] = ACTIONS(702), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_for] = ACTIONS(702), - [anon_sym_gen] = ACTIONS(702), - [anon_sym_if] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(702), - [anon_sym_let] = ACTIONS(702), - [anon_sym_loop] = ACTIONS(702), - [anon_sym_match] = ACTIONS(702), - [anon_sym_mod] = ACTIONS(702), - [anon_sym_pub] = ACTIONS(702), - [anon_sym_return] = ACTIONS(702), - [anon_sym_static] = ACTIONS(702), - [anon_sym_struct] = ACTIONS(702), - [anon_sym_trait] = ACTIONS(702), - [anon_sym_type] = ACTIONS(702), - [anon_sym_union] = ACTIONS(702), - [anon_sym_unsafe] = ACTIONS(702), - [anon_sym_use] = ACTIONS(702), - [anon_sym_where] = ACTIONS(702), - [anon_sym_while] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(702), - [sym_super] = ACTIONS(702), - [sym_crate] = ACTIONS(702), - [sym_metavariable] = ACTIONS(714), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(736), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_let] = ACTIONS(738), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [STATE(118)] = { - [sym_token_tree] = STATE(187), - [sym_token_repetition] = STATE(187), - [sym__literal] = STATE(187), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym_delim_token_tree] = STATE(385), + [sym__delim_tokens] = STATE(386), + [sym__non_delim_token] = STATE(385), + [sym__literal] = STATE(384), + [sym_string_literal] = STATE(397), + [sym_raw_string_literal] = STATE(397), + [sym_boolean_literal] = STATE(397), [sym_line_comment] = STATE(118), [sym_block_comment] = STATE(118), - [aux_sym_token_tree_repeat1] = STATE(132), - [aux_sym__non_special_token_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(702), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(708), - [anon_sym_RBRACK] = ACTIONS(740), - [anon_sym_LBRACE] = ACTIONS(710), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(712), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(702), - [anon_sym_i8] = ACTIONS(702), - [anon_sym_u16] = ACTIONS(702), - [anon_sym_i16] = ACTIONS(702), - [anon_sym_u32] = ACTIONS(702), - [anon_sym_i32] = ACTIONS(702), - [anon_sym_u64] = ACTIONS(702), - [anon_sym_i64] = ACTIONS(702), - [anon_sym_u128] = ACTIONS(702), - [anon_sym_i128] = ACTIONS(702), - [anon_sym_isize] = ACTIONS(702), - [anon_sym_usize] = ACTIONS(702), - [anon_sym_f32] = ACTIONS(702), - [anon_sym_f64] = ACTIONS(702), - [anon_sym_bool] = ACTIONS(702), - [anon_sym_str] = ACTIONS(702), - [anon_sym_char] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(702), - [anon_sym_as] = ACTIONS(702), - [anon_sym_async] = ACTIONS(702), - [anon_sym_await] = ACTIONS(702), - [anon_sym_break] = ACTIONS(702), - [anon_sym_const] = ACTIONS(702), - [anon_sym_continue] = ACTIONS(702), - [anon_sym_default] = ACTIONS(702), - [anon_sym_enum] = ACTIONS(702), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_for] = ACTIONS(702), - [anon_sym_gen] = ACTIONS(702), - [anon_sym_if] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(702), - [anon_sym_let] = ACTIONS(702), - [anon_sym_loop] = ACTIONS(702), - [anon_sym_match] = ACTIONS(702), - [anon_sym_mod] = ACTIONS(702), - [anon_sym_pub] = ACTIONS(702), - [anon_sym_return] = ACTIONS(702), - [anon_sym_static] = ACTIONS(702), - [anon_sym_struct] = ACTIONS(702), - [anon_sym_trait] = ACTIONS(702), - [anon_sym_type] = ACTIONS(702), - [anon_sym_union] = ACTIONS(702), - [anon_sym_unsafe] = ACTIONS(702), - [anon_sym_use] = ACTIONS(702), - [anon_sym_where] = ACTIONS(702), - [anon_sym_while] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(702), - [sym_super] = ACTIONS(702), - [sym_crate] = ACTIONS(702), - [sym_metavariable] = ACTIONS(714), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym__non_special_token_repeat1] = STATE(373), + [aux_sym_delim_token_tree_repeat1] = STATE(122), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_RPAREN] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(119)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(385), + [sym__delim_tokens] = STATE(386), + [sym__non_delim_token] = STATE(385), + [sym__literal] = STATE(384), + [sym_string_literal] = STATE(397), + [sym_raw_string_literal] = STATE(397), + [sym_boolean_literal] = STATE(397), [sym_line_comment] = STATE(119), [sym_block_comment] = STATE(119), - [aux_sym__non_special_token_repeat1] = STATE(147), + [aux_sym__non_special_token_repeat1] = STATE(373), [aux_sym_delim_token_tree_repeat1] = STATE(123), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(742), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_RBRACK] = ACTIONS(760), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(120)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(385), + [sym__delim_tokens] = STATE(386), + [sym__non_delim_token] = STATE(385), + [sym__literal] = STATE(384), + [sym_string_literal] = STATE(397), + [sym_raw_string_literal] = STATE(397), + [sym_boolean_literal] = STATE(397), [sym_line_comment] = STATE(120), [sym_block_comment] = STATE(120), - [aux_sym__non_special_token_repeat1] = STATE(147), + [aux_sym__non_special_token_repeat1] = STATE(373), [aux_sym_delim_token_tree_repeat1] = STATE(124), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_RBRACK] = ACTIONS(742), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_RBRACE] = ACTIONS(760), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(121)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(267), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1765), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_let_condition] = STATE(3039), + [sym__let_chain] = STATE(3042), + [sym__condition] = STATE(2727), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(121), [sym_block_comment] = STATE(121), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(125), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(736), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_let] = ACTIONS(738), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [STATE(122)] = { - [sym_token_tree] = STATE(187), - [sym_token_repetition] = STATE(187), - [sym__literal] = STATE(187), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym_delim_token_tree] = STATE(385), + [sym__delim_tokens] = STATE(386), + [sym__non_delim_token] = STATE(385), + [sym__literal] = STATE(384), + [sym_string_literal] = STATE(397), + [sym_raw_string_literal] = STATE(397), + [sym_boolean_literal] = STATE(397), [sym_line_comment] = STATE(122), [sym_block_comment] = STATE(122), - [aux_sym_token_tree_repeat1] = STATE(108), - [aux_sym__non_special_token_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(702), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(708), - [anon_sym_LBRACE] = ACTIONS(710), - [anon_sym_RBRACE] = ACTIONS(740), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(712), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(702), - [anon_sym_i8] = ACTIONS(702), - [anon_sym_u16] = ACTIONS(702), - [anon_sym_i16] = ACTIONS(702), - [anon_sym_u32] = ACTIONS(702), - [anon_sym_i32] = ACTIONS(702), - [anon_sym_u64] = ACTIONS(702), - [anon_sym_i64] = ACTIONS(702), - [anon_sym_u128] = ACTIONS(702), - [anon_sym_i128] = ACTIONS(702), - [anon_sym_isize] = ACTIONS(702), - [anon_sym_usize] = ACTIONS(702), - [anon_sym_f32] = ACTIONS(702), - [anon_sym_f64] = ACTIONS(702), - [anon_sym_bool] = ACTIONS(702), - [anon_sym_str] = ACTIONS(702), - [anon_sym_char] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(702), - [anon_sym_as] = ACTIONS(702), - [anon_sym_async] = ACTIONS(702), - [anon_sym_await] = ACTIONS(702), - [anon_sym_break] = ACTIONS(702), - [anon_sym_const] = ACTIONS(702), - [anon_sym_continue] = ACTIONS(702), - [anon_sym_default] = ACTIONS(702), - [anon_sym_enum] = ACTIONS(702), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_for] = ACTIONS(702), - [anon_sym_gen] = ACTIONS(702), - [anon_sym_if] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(702), - [anon_sym_let] = ACTIONS(702), - [anon_sym_loop] = ACTIONS(702), - [anon_sym_match] = ACTIONS(702), - [anon_sym_mod] = ACTIONS(702), - [anon_sym_pub] = ACTIONS(702), - [anon_sym_return] = ACTIONS(702), - [anon_sym_static] = ACTIONS(702), - [anon_sym_struct] = ACTIONS(702), - [anon_sym_trait] = ACTIONS(702), - [anon_sym_type] = ACTIONS(702), - [anon_sym_union] = ACTIONS(702), - [anon_sym_unsafe] = ACTIONS(702), - [anon_sym_use] = ACTIONS(702), - [anon_sym_where] = ACTIONS(702), - [anon_sym_while] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(702), - [sym_super] = ACTIONS(702), - [sym_crate] = ACTIONS(702), - [sym_metavariable] = ACTIONS(714), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym__non_special_token_repeat1] = STATE(373), + [aux_sym_delim_token_tree_repeat1] = STATE(71), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_RPAREN] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(123)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(385), + [sym__delim_tokens] = STATE(386), + [sym__non_delim_token] = STATE(385), + [sym__literal] = STATE(384), + [sym_string_literal] = STATE(397), + [sym_raw_string_literal] = STATE(397), + [sym_boolean_literal] = STATE(397), [sym_line_comment] = STATE(123), [sym_block_comment] = STATE(123), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(744), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym__non_special_token_repeat1] = STATE(373), + [aux_sym_delim_token_tree_repeat1] = STATE(71), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_RBRACK] = ACTIONS(762), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(124)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(385), + [sym__delim_tokens] = STATE(386), + [sym__non_delim_token] = STATE(385), + [sym__literal] = STATE(384), + [sym_string_literal] = STATE(397), + [sym_raw_string_literal] = STATE(397), + [sym_boolean_literal] = STATE(397), [sym_line_comment] = STATE(124), [sym_block_comment] = STATE(124), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_RBRACK] = ACTIONS(744), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym__non_special_token_repeat1] = STATE(373), + [aux_sym_delim_token_tree_repeat1] = STATE(71), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_RBRACE] = ACTIONS(762), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(125)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(385), + [sym__delim_tokens] = STATE(386), + [sym__non_delim_token] = STATE(385), + [sym__literal] = STATE(384), + [sym_string_literal] = STATE(397), + [sym_raw_string_literal] = STATE(397), + [sym_boolean_literal] = STATE(397), [sym_line_comment] = STATE(125), [sym_block_comment] = STATE(125), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_RBRACE] = ACTIONS(744), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym__non_special_token_repeat1] = STATE(373), + [aux_sym_delim_token_tree_repeat1] = STATE(128), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_RPAREN] = ACTIONS(764), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(126)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(385), + [sym__delim_tokens] = STATE(386), + [sym__non_delim_token] = STATE(385), + [sym__literal] = STATE(384), + [sym_string_literal] = STATE(397), + [sym_raw_string_literal] = STATE(397), + [sym_boolean_literal] = STATE(397), [sym_line_comment] = STATE(126), [sym_block_comment] = STATE(126), - [aux_sym__non_special_token_repeat1] = STATE(147), + [aux_sym__non_special_token_repeat1] = STATE(373), [aux_sym_delim_token_tree_repeat1] = STATE(129), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(746), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_RBRACK] = ACTIONS(764), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(127)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(385), + [sym__delim_tokens] = STATE(386), + [sym__non_delim_token] = STATE(385), + [sym__literal] = STATE(384), + [sym_string_literal] = STATE(397), + [sym_raw_string_literal] = STATE(397), + [sym_boolean_literal] = STATE(397), [sym_line_comment] = STATE(127), [sym_block_comment] = STATE(127), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(84), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_RBRACK] = ACTIONS(746), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym__non_special_token_repeat1] = STATE(373), + [aux_sym_delim_token_tree_repeat1] = STATE(130), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_RBRACE] = ACTIONS(764), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(128)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(385), + [sym__delim_tokens] = STATE(386), + [sym__non_delim_token] = STATE(385), + [sym__literal] = STATE(384), + [sym_string_literal] = STATE(397), + [sym_raw_string_literal] = STATE(397), + [sym_boolean_literal] = STATE(397), [sym_line_comment] = STATE(128), [sym_block_comment] = STATE(128), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(130), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_RBRACE] = ACTIONS(746), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym__non_special_token_repeat1] = STATE(373), + [aux_sym_delim_token_tree_repeat1] = STATE(71), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_RPAREN] = ACTIONS(766), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(129)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(385), + [sym__delim_tokens] = STATE(386), + [sym__non_delim_token] = STATE(385), + [sym__literal] = STATE(384), + [sym_string_literal] = STATE(397), + [sym_raw_string_literal] = STATE(397), + [sym_boolean_literal] = STATE(397), [sym_line_comment] = STATE(129), [sym_block_comment] = STATE(129), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(686), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym__non_special_token_repeat1] = STATE(373), + [aux_sym_delim_token_tree_repeat1] = STATE(71), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_RBRACK] = ACTIONS(766), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(130)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(385), + [sym__delim_tokens] = STATE(386), + [sym__non_delim_token] = STATE(385), + [sym__literal] = STATE(384), + [sym_string_literal] = STATE(397), + [sym_raw_string_literal] = STATE(397), + [sym_boolean_literal] = STATE(397), [sym_line_comment] = STATE(130), [sym_block_comment] = STATE(130), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_RBRACE] = ACTIONS(686), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym__non_special_token_repeat1] = STATE(373), + [aux_sym_delim_token_tree_repeat1] = STATE(71), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_RBRACE] = ACTIONS(766), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(131)] = { - [sym_token_tree] = STATE(187), - [sym_token_repetition] = STATE(187), - [sym__literal] = STATE(187), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym_delim_token_tree] = STATE(385), + [sym__delim_tokens] = STATE(386), + [sym__non_delim_token] = STATE(385), + [sym__literal] = STATE(384), + [sym_string_literal] = STATE(397), + [sym_raw_string_literal] = STATE(397), + [sym_boolean_literal] = STATE(397), [sym_line_comment] = STATE(131), [sym_block_comment] = STATE(131), - [aux_sym_token_tree_repeat1] = STATE(68), - [aux_sym__non_special_token_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(702), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(704), - [anon_sym_RPAREN] = ACTIONS(732), - [anon_sym_LBRACK] = ACTIONS(708), - [anon_sym_LBRACE] = ACTIONS(710), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(712), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(702), - [anon_sym_i8] = ACTIONS(702), - [anon_sym_u16] = ACTIONS(702), - [anon_sym_i16] = ACTIONS(702), - [anon_sym_u32] = ACTIONS(702), - [anon_sym_i32] = ACTIONS(702), - [anon_sym_u64] = ACTIONS(702), - [anon_sym_i64] = ACTIONS(702), - [anon_sym_u128] = ACTIONS(702), - [anon_sym_i128] = ACTIONS(702), - [anon_sym_isize] = ACTIONS(702), - [anon_sym_usize] = ACTIONS(702), - [anon_sym_f32] = ACTIONS(702), - [anon_sym_f64] = ACTIONS(702), - [anon_sym_bool] = ACTIONS(702), - [anon_sym_str] = ACTIONS(702), - [anon_sym_char] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(702), - [anon_sym_as] = ACTIONS(702), - [anon_sym_async] = ACTIONS(702), - [anon_sym_await] = ACTIONS(702), - [anon_sym_break] = ACTIONS(702), - [anon_sym_const] = ACTIONS(702), - [anon_sym_continue] = ACTIONS(702), - [anon_sym_default] = ACTIONS(702), - [anon_sym_enum] = ACTIONS(702), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_for] = ACTIONS(702), - [anon_sym_gen] = ACTIONS(702), - [anon_sym_if] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(702), - [anon_sym_let] = ACTIONS(702), - [anon_sym_loop] = ACTIONS(702), - [anon_sym_match] = ACTIONS(702), - [anon_sym_mod] = ACTIONS(702), - [anon_sym_pub] = ACTIONS(702), - [anon_sym_return] = ACTIONS(702), - [anon_sym_static] = ACTIONS(702), - [anon_sym_struct] = ACTIONS(702), - [anon_sym_trait] = ACTIONS(702), - [anon_sym_type] = ACTIONS(702), - [anon_sym_union] = ACTIONS(702), - [anon_sym_unsafe] = ACTIONS(702), - [anon_sym_use] = ACTIONS(702), - [anon_sym_where] = ACTIONS(702), - [anon_sym_while] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(702), - [sym_super] = ACTIONS(702), - [sym_crate] = ACTIONS(702), - [sym_metavariable] = ACTIONS(714), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym__non_special_token_repeat1] = STATE(373), + [aux_sym_delim_token_tree_repeat1] = STATE(71), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_RPAREN] = ACTIONS(768), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(132)] = { - [sym_token_tree] = STATE(187), - [sym_token_repetition] = STATE(187), - [sym__literal] = STATE(187), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym_delim_token_tree] = STATE(385), + [sym__delim_tokens] = STATE(386), + [sym__non_delim_token] = STATE(385), + [sym__literal] = STATE(384), + [sym_string_literal] = STATE(397), + [sym_raw_string_literal] = STATE(397), + [sym_boolean_literal] = STATE(397), [sym_line_comment] = STATE(132), [sym_block_comment] = STATE(132), - [aux_sym_token_tree_repeat1] = STATE(68), - [aux_sym__non_special_token_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(702), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(708), - [anon_sym_RBRACK] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(710), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(712), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(702), - [anon_sym_i8] = ACTIONS(702), - [anon_sym_u16] = ACTIONS(702), - [anon_sym_i16] = ACTIONS(702), - [anon_sym_u32] = ACTIONS(702), - [anon_sym_i32] = ACTIONS(702), - [anon_sym_u64] = ACTIONS(702), - [anon_sym_i64] = ACTIONS(702), - [anon_sym_u128] = ACTIONS(702), - [anon_sym_i128] = ACTIONS(702), - [anon_sym_isize] = ACTIONS(702), - [anon_sym_usize] = ACTIONS(702), - [anon_sym_f32] = ACTIONS(702), - [anon_sym_f64] = ACTIONS(702), - [anon_sym_bool] = ACTIONS(702), - [anon_sym_str] = ACTIONS(702), - [anon_sym_char] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(702), - [anon_sym_as] = ACTIONS(702), - [anon_sym_async] = ACTIONS(702), - [anon_sym_await] = ACTIONS(702), - [anon_sym_break] = ACTIONS(702), - [anon_sym_const] = ACTIONS(702), - [anon_sym_continue] = ACTIONS(702), - [anon_sym_default] = ACTIONS(702), - [anon_sym_enum] = ACTIONS(702), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_for] = ACTIONS(702), - [anon_sym_gen] = ACTIONS(702), - [anon_sym_if] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(702), - [anon_sym_let] = ACTIONS(702), - [anon_sym_loop] = ACTIONS(702), - [anon_sym_match] = ACTIONS(702), - [anon_sym_mod] = ACTIONS(702), - [anon_sym_pub] = ACTIONS(702), - [anon_sym_return] = ACTIONS(702), - [anon_sym_static] = ACTIONS(702), - [anon_sym_struct] = ACTIONS(702), - [anon_sym_trait] = ACTIONS(702), - [anon_sym_type] = ACTIONS(702), - [anon_sym_union] = ACTIONS(702), - [anon_sym_unsafe] = ACTIONS(702), - [anon_sym_use] = ACTIONS(702), - [anon_sym_where] = ACTIONS(702), - [anon_sym_while] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(702), - [sym_super] = ACTIONS(702), - [sym_crate] = ACTIONS(702), - [sym_metavariable] = ACTIONS(714), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym__non_special_token_repeat1] = STATE(373), + [aux_sym_delim_token_tree_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_RPAREN] = ACTIONS(770), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(133)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(385), + [sym__delim_tokens] = STATE(386), + [sym__non_delim_token] = STATE(385), + [sym__literal] = STATE(384), + [sym_string_literal] = STATE(397), + [sym_raw_string_literal] = STATE(397), + [sym_boolean_literal] = STATE(397), [sym_line_comment] = STATE(133), [sym_block_comment] = STATE(133), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym__non_special_token_repeat1] = STATE(373), + [aux_sym_delim_token_tree_repeat1] = STATE(137), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_RBRACK] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(134)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1619), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_delim_token_tree] = STATE(385), + [sym__delim_tokens] = STATE(386), + [sym__non_delim_token] = STATE(385), + [sym__literal] = STATE(384), + [sym_string_literal] = STATE(397), + [sym_raw_string_literal] = STATE(397), + [sym_boolean_literal] = STATE(397), [sym_line_comment] = STATE(134), [sym_block_comment] = STATE(134), - [aux_sym_enum_variant_list_repeat1] = STATE(141), - [sym_identifier] = ACTIONS(339), + [aux_sym__non_special_token_repeat1] = STATE(373), + [aux_sym_delim_token_tree_repeat1] = STATE(138), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_RBRACE] = ACTIONS(770), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), + }, + [STATE(135)] = { + [sym_delim_token_tree] = STATE(385), + [sym__delim_tokens] = STATE(386), + [sym__non_delim_token] = STATE(385), + [sym__literal] = STATE(384), + [sym_string_literal] = STATE(397), + [sym_raw_string_literal] = STATE(397), + [sym_boolean_literal] = STATE(397), + [sym_line_comment] = STATE(135), + [sym_block_comment] = STATE(135), + [aux_sym__non_special_token_repeat1] = STATE(373), + [aux_sym_delim_token_tree_repeat1] = STATE(71), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_RBRACK] = ACTIONS(768), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), + }, + [STATE(136)] = { + [sym_delim_token_tree] = STATE(385), + [sym__delim_tokens] = STATE(386), + [sym__non_delim_token] = STATE(385), + [sym__literal] = STATE(384), + [sym_string_literal] = STATE(397), + [sym_raw_string_literal] = STATE(397), + [sym_boolean_literal] = STATE(397), + [sym_line_comment] = STATE(136), + [sym_block_comment] = STATE(136), + [aux_sym__non_special_token_repeat1] = STATE(373), + [aux_sym_delim_token_tree_repeat1] = STATE(71), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_RPAREN] = ACTIONS(772), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), + }, + [STATE(137)] = { + [sym_delim_token_tree] = STATE(385), + [sym__delim_tokens] = STATE(386), + [sym__non_delim_token] = STATE(385), + [sym__literal] = STATE(384), + [sym_string_literal] = STATE(397), + [sym_raw_string_literal] = STATE(397), + [sym_boolean_literal] = STATE(397), + [sym_line_comment] = STATE(137), + [sym_block_comment] = STATE(137), + [aux_sym__non_special_token_repeat1] = STATE(373), + [aux_sym_delim_token_tree_repeat1] = STATE(71), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_RBRACK] = ACTIONS(772), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), + }, + [STATE(138)] = { + [sym_delim_token_tree] = STATE(385), + [sym__delim_tokens] = STATE(386), + [sym__non_delim_token] = STATE(385), + [sym__literal] = STATE(384), + [sym_string_literal] = STATE(397), + [sym_raw_string_literal] = STATE(397), + [sym_boolean_literal] = STATE(397), + [sym_line_comment] = STATE(138), + [sym_block_comment] = STATE(138), + [aux_sym__non_special_token_repeat1] = STATE(373), + [aux_sym_delim_token_tree_repeat1] = STATE(71), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_RBRACE] = ACTIONS(772), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), + }, + [STATE(139)] = { + [sym_delim_token_tree] = STATE(385), + [sym__delim_tokens] = STATE(386), + [sym__non_delim_token] = STATE(385), + [sym__literal] = STATE(384), + [sym_string_literal] = STATE(397), + [sym_raw_string_literal] = STATE(397), + [sym_boolean_literal] = STATE(397), + [sym_line_comment] = STATE(139), + [sym_block_comment] = STATE(139), + [aux_sym__non_special_token_repeat1] = STATE(373), + [aux_sym_delim_token_tree_repeat1] = STATE(71), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_RBRACE] = ACTIONS(768), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), + }, + [STATE(140)] = { + [sym_token_tree] = STATE(361), + [sym_token_repetition] = STATE(361), + [sym__literal] = STATE(361), + [sym_string_literal] = STATE(365), + [sym_raw_string_literal] = STATE(365), + [sym_boolean_literal] = STATE(365), + [sym_line_comment] = STATE(140), + [sym_block_comment] = STATE(140), + [aux_sym_token_tree_repeat1] = STATE(89), + [aux_sym__non_special_token_repeat1] = STATE(348), + [sym_identifier] = ACTIONS(712), + [anon_sym_SEMI] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(714), + [anon_sym_RPAREN] = ACTIONS(720), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_EQ_GT] = ACTIONS(616), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_u8] = ACTIONS(712), + [anon_sym_i8] = ACTIONS(712), + [anon_sym_u16] = ACTIONS(712), + [anon_sym_i16] = ACTIONS(712), + [anon_sym_u32] = ACTIONS(712), + [anon_sym_i32] = ACTIONS(712), + [anon_sym_u64] = ACTIONS(712), + [anon_sym_i64] = ACTIONS(712), + [anon_sym_u128] = ACTIONS(712), + [anon_sym_i128] = ACTIONS(712), + [anon_sym_isize] = ACTIONS(712), + [anon_sym_usize] = ACTIONS(712), + [anon_sym_f32] = ACTIONS(712), + [anon_sym_f64] = ACTIONS(712), + [anon_sym_bool] = ACTIONS(712), + [anon_sym_str] = ACTIONS(712), + [anon_sym_char] = ACTIONS(712), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_BANG] = ACTIONS(626), + [anon_sym_AMP] = ACTIONS(626), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(616), + [anon_sym_PIPE_PIPE] = ACTIONS(616), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_PLUS_EQ] = ACTIONS(616), + [anon_sym_DASH_EQ] = ACTIONS(616), + [anon_sym_STAR_EQ] = ACTIONS(616), + [anon_sym_SLASH_EQ] = ACTIONS(616), + [anon_sym_PERCENT_EQ] = ACTIONS(616), + [anon_sym_CARET_EQ] = ACTIONS(616), + [anon_sym_AMP_EQ] = ACTIONS(616), + [anon_sym_PIPE_EQ] = ACTIONS(616), + [anon_sym_LT_LT_EQ] = ACTIONS(616), + [anon_sym_GT_GT_EQ] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(616), + [anon_sym_BANG_EQ] = ACTIONS(616), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT_EQ] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(616), + [anon_sym_AT] = ACTIONS(616), + [anon_sym__] = ACTIONS(626), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + [anon_sym_DOT_DOT_EQ] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(616), + [anon_sym_COLON_COLON] = ACTIONS(616), + [anon_sym_DASH_GT] = ACTIONS(616), + [anon_sym_POUND] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_as] = ACTIONS(712), + [anon_sym_async] = ACTIONS(712), + [anon_sym_await] = ACTIONS(712), + [anon_sym_break] = ACTIONS(712), + [anon_sym_const] = ACTIONS(712), + [anon_sym_continue] = ACTIONS(712), + [anon_sym_default] = ACTIONS(712), + [anon_sym_enum] = ACTIONS(712), + [anon_sym_fn] = ACTIONS(712), + [anon_sym_for] = ACTIONS(712), + [anon_sym_gen] = ACTIONS(712), + [anon_sym_if] = ACTIONS(712), + [anon_sym_impl] = ACTIONS(712), + [anon_sym_let] = ACTIONS(712), + [anon_sym_loop] = ACTIONS(712), + [anon_sym_match] = ACTIONS(712), + [anon_sym_mod] = ACTIONS(712), + [anon_sym_pub] = ACTIONS(712), + [anon_sym_return] = ACTIONS(712), + [anon_sym_static] = ACTIONS(712), + [anon_sym_struct] = ACTIONS(712), + [anon_sym_trait] = ACTIONS(712), + [anon_sym_type] = ACTIONS(712), + [anon_sym_union] = ACTIONS(712), + [anon_sym_unsafe] = ACTIONS(712), + [anon_sym_use] = ACTIONS(712), + [anon_sym_where] = ACTIONS(712), + [anon_sym_while] = ACTIONS(712), + [sym_mutable_specifier] = ACTIONS(712), + [sym_integer_literal] = ACTIONS(630), + [aux_sym_string_literal_token1] = ACTIONS(632), + [sym_char_literal] = ACTIONS(630), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(712), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(724), + [sym__raw_string_literal_start] = ACTIONS(638), + [sym_float_literal] = ACTIONS(630), + }, + [STATE(141)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(267), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1765), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_let_condition] = STATE(3039), + [sym__let_chain] = STATE(3042), + [sym__condition] = STATE(2868), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(141), + [sym_block_comment] = STATE(141), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(748), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(750), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(752), + [anon_sym_DOT_DOT] = ACTIONS(736), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_let] = ACTIONS(738), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -32595,233 +34270,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(135)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(135), - [sym_block_comment] = STATE(135), - [aux_sym_enum_variant_list_repeat1] = STATE(1058), - [sym_identifier] = ACTIONS(754), - [anon_sym_LPAREN] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(760), - [anon_sym_RBRACK] = ACTIONS(763), - [anon_sym_LBRACE] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(768), - [anon_sym_u8] = ACTIONS(771), - [anon_sym_i8] = ACTIONS(771), - [anon_sym_u16] = ACTIONS(771), - [anon_sym_i16] = ACTIONS(771), - [anon_sym_u32] = ACTIONS(771), - [anon_sym_i32] = ACTIONS(771), - [anon_sym_u64] = ACTIONS(771), - [anon_sym_i64] = ACTIONS(771), - [anon_sym_u128] = ACTIONS(771), - [anon_sym_i128] = ACTIONS(771), - [anon_sym_isize] = ACTIONS(771), - [anon_sym_usize] = ACTIONS(771), - [anon_sym_f32] = ACTIONS(771), - [anon_sym_f64] = ACTIONS(771), - [anon_sym_bool] = ACTIONS(771), - [anon_sym_str] = ACTIONS(771), - [anon_sym_char] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_BANG] = ACTIONS(768), - [anon_sym_AMP] = ACTIONS(774), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(780), - [anon_sym_DOT_DOT] = ACTIONS(783), - [anon_sym_COMMA] = ACTIONS(763), - [anon_sym_COLON_COLON] = ACTIONS(786), - [anon_sym_POUND] = ACTIONS(789), - [anon_sym_SQUOTE] = ACTIONS(792), - [anon_sym_async] = ACTIONS(795), - [anon_sym_break] = ACTIONS(798), - [anon_sym_const] = ACTIONS(801), - [anon_sym_continue] = ACTIONS(804), - [anon_sym_default] = ACTIONS(807), - [anon_sym_for] = ACTIONS(810), - [anon_sym_gen] = ACTIONS(813), - [anon_sym_if] = ACTIONS(816), - [anon_sym_loop] = ACTIONS(819), - [anon_sym_match] = ACTIONS(822), - [anon_sym_return] = ACTIONS(825), - [anon_sym_static] = ACTIONS(828), - [anon_sym_union] = ACTIONS(807), - [anon_sym_unsafe] = ACTIONS(831), - [anon_sym_while] = ACTIONS(834), - [anon_sym_yield] = ACTIONS(837), - [anon_sym_move] = ACTIONS(840), - [anon_sym_try] = ACTIONS(843), - [sym_integer_literal] = ACTIONS(846), - [aux_sym_string_literal_token1] = ACTIONS(849), - [sym_char_literal] = ACTIONS(846), - [anon_sym_true] = ACTIONS(852), - [anon_sym_false] = ACTIONS(852), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(855), - [sym_super] = ACTIONS(858), - [sym_crate] = ACTIONS(858), - [sym_metavariable] = ACTIONS(861), - [sym__raw_string_literal_start] = ACTIONS(864), - [sym_float_literal] = ACTIONS(846), - }, - [STATE(136)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1636), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(136), - [sym_block_comment] = STATE(136), - [aux_sym_enum_variant_list_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(339), + [STATE(142)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(267), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1765), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_let_condition] = STATE(3039), + [sym__let_chain] = STATE(3042), + [sym__condition] = STATE(2873), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(142), + [sym_block_comment] = STATE(142), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(867), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(869), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(752), + [anon_sym_DOT_DOT] = ACTIONS(736), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_let] = ACTIONS(738), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -32829,70 +34392,1048 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(137)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1637), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(137), - [sym_block_comment] = STATE(137), - [aux_sym_enum_variant_list_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(339), + [STATE(143)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(267), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1765), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_let_condition] = STATE(3039), + [sym__let_chain] = STATE(3042), + [sym__condition] = STATE(2708), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(143), + [sym_block_comment] = STATE(143), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(736), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_let] = ACTIONS(738), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(144)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(267), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1765), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_let_condition] = STATE(3039), + [sym__let_chain] = STATE(3042), + [sym__condition] = STATE(2761), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(144), + [sym_block_comment] = STATE(144), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(736), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_let] = ACTIONS(738), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(145)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(267), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1765), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_let_condition] = STATE(3039), + [sym__let_chain] = STATE(3042), + [sym__condition] = STATE(2762), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(145), + [sym_block_comment] = STATE(145), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(736), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_let] = ACTIONS(738), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(146)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(267), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1765), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_let_condition] = STATE(3039), + [sym__let_chain] = STATE(3042), + [sym__condition] = STATE(2781), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(146), + [sym_block_comment] = STATE(146), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(736), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_let] = ACTIONS(738), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(147)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(267), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1765), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_let_condition] = STATE(3039), + [sym__let_chain] = STATE(3042), + [sym__condition] = STATE(2796), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(147), + [sym_block_comment] = STATE(147), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(736), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_let] = ACTIONS(738), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(148)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(267), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1765), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_let_condition] = STATE(3039), + [sym__let_chain] = STATE(3042), + [sym__condition] = STATE(2797), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(148), + [sym_block_comment] = STATE(148), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(736), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_let] = ACTIONS(738), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(149)] = { + [sym_token_tree] = STATE(361), + [sym_token_repetition] = STATE(361), + [sym__literal] = STATE(361), + [sym_string_literal] = STATE(365), + [sym_raw_string_literal] = STATE(365), + [sym_boolean_literal] = STATE(365), + [sym_line_comment] = STATE(149), + [sym_block_comment] = STATE(149), + [aux_sym_token_tree_repeat1] = STATE(106), + [aux_sym__non_special_token_repeat1] = STATE(348), + [sym_identifier] = ACTIONS(712), + [anon_sym_SEMI] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(714), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_RBRACK] = ACTIONS(750), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_EQ_GT] = ACTIONS(616), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_u8] = ACTIONS(712), + [anon_sym_i8] = ACTIONS(712), + [anon_sym_u16] = ACTIONS(712), + [anon_sym_i16] = ACTIONS(712), + [anon_sym_u32] = ACTIONS(712), + [anon_sym_i32] = ACTIONS(712), + [anon_sym_u64] = ACTIONS(712), + [anon_sym_i64] = ACTIONS(712), + [anon_sym_u128] = ACTIONS(712), + [anon_sym_i128] = ACTIONS(712), + [anon_sym_isize] = ACTIONS(712), + [anon_sym_usize] = ACTIONS(712), + [anon_sym_f32] = ACTIONS(712), + [anon_sym_f64] = ACTIONS(712), + [anon_sym_bool] = ACTIONS(712), + [anon_sym_str] = ACTIONS(712), + [anon_sym_char] = ACTIONS(712), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_BANG] = ACTIONS(626), + [anon_sym_AMP] = ACTIONS(626), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(616), + [anon_sym_PIPE_PIPE] = ACTIONS(616), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_PLUS_EQ] = ACTIONS(616), + [anon_sym_DASH_EQ] = ACTIONS(616), + [anon_sym_STAR_EQ] = ACTIONS(616), + [anon_sym_SLASH_EQ] = ACTIONS(616), + [anon_sym_PERCENT_EQ] = ACTIONS(616), + [anon_sym_CARET_EQ] = ACTIONS(616), + [anon_sym_AMP_EQ] = ACTIONS(616), + [anon_sym_PIPE_EQ] = ACTIONS(616), + [anon_sym_LT_LT_EQ] = ACTIONS(616), + [anon_sym_GT_GT_EQ] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(616), + [anon_sym_BANG_EQ] = ACTIONS(616), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT_EQ] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(616), + [anon_sym_AT] = ACTIONS(616), + [anon_sym__] = ACTIONS(626), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + [anon_sym_DOT_DOT_EQ] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(616), + [anon_sym_COLON_COLON] = ACTIONS(616), + [anon_sym_DASH_GT] = ACTIONS(616), + [anon_sym_POUND] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_as] = ACTIONS(712), + [anon_sym_async] = ACTIONS(712), + [anon_sym_await] = ACTIONS(712), + [anon_sym_break] = ACTIONS(712), + [anon_sym_const] = ACTIONS(712), + [anon_sym_continue] = ACTIONS(712), + [anon_sym_default] = ACTIONS(712), + [anon_sym_enum] = ACTIONS(712), + [anon_sym_fn] = ACTIONS(712), + [anon_sym_for] = ACTIONS(712), + [anon_sym_gen] = ACTIONS(712), + [anon_sym_if] = ACTIONS(712), + [anon_sym_impl] = ACTIONS(712), + [anon_sym_let] = ACTIONS(712), + [anon_sym_loop] = ACTIONS(712), + [anon_sym_match] = ACTIONS(712), + [anon_sym_mod] = ACTIONS(712), + [anon_sym_pub] = ACTIONS(712), + [anon_sym_return] = ACTIONS(712), + [anon_sym_static] = ACTIONS(712), + [anon_sym_struct] = ACTIONS(712), + [anon_sym_trait] = ACTIONS(712), + [anon_sym_type] = ACTIONS(712), + [anon_sym_union] = ACTIONS(712), + [anon_sym_unsafe] = ACTIONS(712), + [anon_sym_use] = ACTIONS(712), + [anon_sym_where] = ACTIONS(712), + [anon_sym_while] = ACTIONS(712), + [sym_mutable_specifier] = ACTIONS(712), + [sym_integer_literal] = ACTIONS(630), + [aux_sym_string_literal_token1] = ACTIONS(632), + [sym_char_literal] = ACTIONS(630), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(712), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(724), + [sym__raw_string_literal_start] = ACTIONS(638), + [sym_float_literal] = ACTIONS(630), + }, + [STATE(150)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(305), + [sym_bracketed_type] = STATE(3726), + [sym_generic_function] = STATE(1934), + [sym_generic_type_with_turbofish] = STATE(3067), + [sym__expression_except_range] = STATE(1755), + [sym__expression] = STATE(1898), + [sym_expression_with_attribute] = STATE(1958), + [sym__expression_without_attribute] = STATE(1958), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(1673), + [sym_scoped_type_identifier_in_expression_position] = STATE(3301), + [sym_range_expression] = STATE(1801), + [sym_unary_expression] = STATE(1934), + [sym_try_expression] = STATE(1934), + [sym_reference_expression] = STATE(1934), + [sym_binary_expression] = STATE(1934), + [sym_assignment_expression] = STATE(1934), + [sym_compound_assignment_expr] = STATE(1934), + [sym_type_cast_expression] = STATE(1934), + [sym_return_expression] = STATE(1934), + [sym_yield_expression] = STATE(1934), + [sym_call_expression] = STATE(1934), + [sym_array_expression] = STATE(1934), + [sym_parenthesized_expression] = STATE(1934), + [sym_tuple_expression] = STATE(1934), + [sym_unit_expression] = STATE(1934), + [sym_struct_expression] = STATE(1934), + [sym_if_expression] = STATE(1934), + [sym_let_condition] = STATE(2879), + [sym_match_expression] = STATE(1934), + [sym_while_expression] = STATE(1934), + [sym_loop_expression] = STATE(1934), + [sym_for_expression] = STATE(1934), + [sym_const_block] = STATE(1934), + [sym_closure_expression] = STATE(1934), + [sym_closure_parameters] = STATE(154), + [sym_label] = STATE(3832), + [sym_break_expression] = STATE(1934), + [sym_continue_expression] = STATE(1934), + [sym_index_expression] = STATE(1934), + [sym_await_expression] = STATE(1934), + [sym_field_expression] = STATE(1707), + [sym_unsafe_block] = STATE(1934), + [sym_async_block] = STATE(1934), + [sym_gen_block] = STATE(1934), + [sym_try_block] = STATE(1934), + [sym_block] = STATE(1934), + [sym__literal] = STATE(1934), + [sym_string_literal] = STATE(1949), + [sym_raw_string_literal] = STATE(1949), + [sym_boolean_literal] = STATE(1949), + [sym_line_comment] = STATE(150), + [sym_block_comment] = STATE(150), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(740), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(774), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(427), + [anon_sym_break] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_default] = ACTIONS(435), + [anon_sym_for] = ACTIONS(437), + [anon_sym_gen] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_let] = ACTIONS(746), + [anon_sym_loop] = ACTIONS(443), + [anon_sym_match] = ACTIONS(445), + [anon_sym_return] = ACTIONS(447), + [anon_sym_static] = ACTIONS(449), + [anon_sym_union] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(451), + [anon_sym_while] = ACTIONS(453), + [anon_sym_yield] = ACTIONS(455), + [anon_sym_move] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [aux_sym_string_literal_token1] = ACTIONS(463), + [sym_char_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(467), + [sym_super] = ACTIONS(469), + [sym_crate] = ACTIONS(469), + [sym_metavariable] = ACTIONS(471), + [sym__raw_string_literal_start] = ACTIONS(473), + [sym_float_literal] = ACTIONS(461), + }, + [STATE(151)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1792), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(151), + [sym_block_comment] = STATE(151), + [aux_sym_attributes_repeat1] = STATE(1090), + [aux_sym_tuple_expression_repeat1] = STATE(181), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(776), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(871), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -32917,28 +35458,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(873), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(752), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -32953,63 +35493,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(138)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1684), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(138), - [sym_block_comment] = STATE(138), - [aux_sym_enum_variant_list_repeat1] = STATE(214), - [sym_identifier] = ACTIONS(339), + [STATE(152)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1926), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(152), + [sym_block_comment] = STATE(152), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(875), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -33028,34 +35570,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(369), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(778), [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(877), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(752), + [anon_sym_DASH_GT] = ACTIONS(780), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -33070,63 +35613,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(139)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1700), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(139), - [sym_block_comment] = STATE(139), - [aux_sym_enum_variant_list_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(339), + [STATE(153)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1943), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1487), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(153), + [sym_block_comment] = STATE(153), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(879), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -33145,34 +35690,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(369), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(782), [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(881), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(752), + [anon_sym_DASH_GT] = ACTIONS(784), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -33187,180 +35733,667 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(140)] = { - [sym_line_comment] = STATE(140), - [sym_block_comment] = STATE(140), - [aux_sym__non_special_token_repeat1] = STATE(142), - [sym_identifier] = ACTIONS(883), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(885), - [anon_sym_LBRACK] = ACTIONS(885), - [anon_sym_RBRACK] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(885), - [anon_sym_RBRACE] = ACTIONS(885), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(883), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(883), - [anon_sym_i8] = ACTIONS(883), - [anon_sym_u16] = ACTIONS(883), - [anon_sym_i16] = ACTIONS(883), - [anon_sym_u32] = ACTIONS(883), - [anon_sym_i32] = ACTIONS(883), - [anon_sym_u64] = ACTIONS(883), - [anon_sym_i64] = ACTIONS(883), - [anon_sym_u128] = ACTIONS(883), - [anon_sym_i128] = ACTIONS(883), - [anon_sym_isize] = ACTIONS(883), - [anon_sym_usize] = ACTIONS(883), - [anon_sym_f32] = ACTIONS(883), - [anon_sym_f64] = ACTIONS(883), - [anon_sym_bool] = ACTIONS(883), - [anon_sym_str] = ACTIONS(883), - [anon_sym_char] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(883), - [anon_sym_as] = ACTIONS(883), - [anon_sym_async] = ACTIONS(883), - [anon_sym_await] = ACTIONS(883), - [anon_sym_break] = ACTIONS(883), - [anon_sym_const] = ACTIONS(883), - [anon_sym_continue] = ACTIONS(883), - [anon_sym_default] = ACTIONS(883), - [anon_sym_enum] = ACTIONS(883), - [anon_sym_fn] = ACTIONS(883), - [anon_sym_for] = ACTIONS(883), - [anon_sym_gen] = ACTIONS(883), - [anon_sym_if] = ACTIONS(883), - [anon_sym_impl] = ACTIONS(883), - [anon_sym_let] = ACTIONS(883), - [anon_sym_loop] = ACTIONS(883), - [anon_sym_match] = ACTIONS(883), - [anon_sym_mod] = ACTIONS(883), - [anon_sym_pub] = ACTIONS(883), - [anon_sym_return] = ACTIONS(883), - [anon_sym_static] = ACTIONS(883), - [anon_sym_struct] = ACTIONS(883), - [anon_sym_trait] = ACTIONS(883), - [anon_sym_type] = ACTIONS(883), - [anon_sym_union] = ACTIONS(883), - [anon_sym_unsafe] = ACTIONS(883), - [anon_sym_use] = ACTIONS(883), - [anon_sym_where] = ACTIONS(883), - [anon_sym_while] = ACTIONS(883), - [sym_mutable_specifier] = ACTIONS(883), - [sym_integer_literal] = ACTIONS(885), - [aux_sym_string_literal_token1] = ACTIONS(885), - [sym_char_literal] = ACTIONS(885), - [anon_sym_true] = ACTIONS(883), - [anon_sym_false] = ACTIONS(883), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(883), - [sym_super] = ACTIONS(883), - [sym_crate] = ACTIONS(883), - [sym_metavariable] = ACTIONS(885), - [sym__raw_string_literal_start] = ACTIONS(885), - [sym_float_literal] = ACTIONS(885), + [STATE(154)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(305), + [sym_bracketed_type] = STATE(3726), + [sym_generic_function] = STATE(1934), + [sym_generic_type_with_turbofish] = STATE(3067), + [sym__expression_except_range] = STATE(1755), + [sym__expression] = STATE(1965), + [sym_expression_with_attribute] = STATE(1958), + [sym__expression_without_attribute] = STATE(1958), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(1673), + [sym_scoped_type_identifier_in_expression_position] = STATE(3301), + [sym_range_expression] = STATE(1801), + [sym_unary_expression] = STATE(1934), + [sym_try_expression] = STATE(1934), + [sym_reference_expression] = STATE(1934), + [sym_binary_expression] = STATE(1934), + [sym_assignment_expression] = STATE(1934), + [sym_compound_assignment_expr] = STATE(1934), + [sym_type_cast_expression] = STATE(1934), + [sym_return_expression] = STATE(1934), + [sym_yield_expression] = STATE(1934), + [sym_call_expression] = STATE(1934), + [sym_array_expression] = STATE(1934), + [sym_parenthesized_expression] = STATE(1934), + [sym_tuple_expression] = STATE(1934), + [sym_unit_expression] = STATE(1934), + [sym_struct_expression] = STATE(1934), + [sym_if_expression] = STATE(1934), + [sym_match_expression] = STATE(1934), + [sym_while_expression] = STATE(1934), + [sym_loop_expression] = STATE(1934), + [sym_for_expression] = STATE(1934), + [sym_const_block] = STATE(1934), + [sym_closure_expression] = STATE(1934), + [sym_closure_parameters] = STATE(154), + [sym_label] = STATE(3832), + [sym_break_expression] = STATE(1934), + [sym_continue_expression] = STATE(1934), + [sym_index_expression] = STATE(1934), + [sym_await_expression] = STATE(1934), + [sym_field_expression] = STATE(1707), + [sym_unsafe_block] = STATE(1934), + [sym_async_block] = STATE(1934), + [sym_gen_block] = STATE(1934), + [sym_try_block] = STATE(1934), + [sym_block] = STATE(1954), + [sym__literal] = STATE(1934), + [sym_string_literal] = STATE(1949), + [sym_raw_string_literal] = STATE(1949), + [sym_boolean_literal] = STATE(1949), + [sym_line_comment] = STATE(154), + [sym_block_comment] = STATE(154), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(740), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(423), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(774), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_DASH_GT] = ACTIONS(788), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(427), + [anon_sym_break] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_default] = ACTIONS(435), + [anon_sym_for] = ACTIONS(437), + [anon_sym_gen] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_loop] = ACTIONS(443), + [anon_sym_match] = ACTIONS(445), + [anon_sym_return] = ACTIONS(447), + [anon_sym_static] = ACTIONS(449), + [anon_sym_union] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(451), + [anon_sym_while] = ACTIONS(453), + [anon_sym_yield] = ACTIONS(455), + [anon_sym_move] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [aux_sym_string_literal_token1] = ACTIONS(463), + [sym_char_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(467), + [sym_super] = ACTIONS(469), + [sym_crate] = ACTIONS(469), + [sym_metavariable] = ACTIONS(471), + [sym__raw_string_literal_start] = ACTIONS(473), + [sym_float_literal] = ACTIONS(461), }, - [STATE(141)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1649), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(141), - [sym_block_comment] = STATE(141), - [aux_sym_enum_variant_list_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(339), + [STATE(155)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(305), + [sym_bracketed_type] = STATE(3726), + [sym_generic_function] = STATE(1934), + [sym_generic_type_with_turbofish] = STATE(3067), + [sym__expression_except_range] = STATE(1755), + [sym__expression] = STATE(1970), + [sym_expression_with_attribute] = STATE(1958), + [sym__expression_without_attribute] = STATE(1958), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(1673), + [sym_scoped_type_identifier_in_expression_position] = STATE(3301), + [sym_range_expression] = STATE(1801), + [sym_unary_expression] = STATE(1934), + [sym_try_expression] = STATE(1934), + [sym_reference_expression] = STATE(1934), + [sym_binary_expression] = STATE(1934), + [sym_assignment_expression] = STATE(1934), + [sym_compound_assignment_expr] = STATE(1934), + [sym_type_cast_expression] = STATE(1934), + [sym_return_expression] = STATE(1934), + [sym_yield_expression] = STATE(1934), + [sym_call_expression] = STATE(1934), + [sym_array_expression] = STATE(1934), + [sym_parenthesized_expression] = STATE(1934), + [sym_tuple_expression] = STATE(1934), + [sym_unit_expression] = STATE(1934), + [sym_struct_expression] = STATE(1934), + [sym_if_expression] = STATE(1934), + [sym_match_expression] = STATE(1934), + [sym_while_expression] = STATE(1934), + [sym_loop_expression] = STATE(1934), + [sym_for_expression] = STATE(1934), + [sym_const_block] = STATE(1934), + [sym_closure_expression] = STATE(1934), + [sym_closure_parameters] = STATE(154), + [sym_label] = STATE(3832), + [sym_break_expression] = STATE(1934), + [sym_continue_expression] = STATE(1934), + [sym_index_expression] = STATE(1934), + [sym_await_expression] = STATE(1934), + [sym_field_expression] = STATE(1707), + [sym_unsafe_block] = STATE(1934), + [sym_async_block] = STATE(1934), + [sym_gen_block] = STATE(1934), + [sym_try_block] = STATE(1934), + [sym_block] = STATE(1811), + [sym__literal] = STATE(1934), + [sym_string_literal] = STATE(1949), + [sym_raw_string_literal] = STATE(1949), + [sym_boolean_literal] = STATE(1949), + [sym_line_comment] = STATE(155), + [sym_block_comment] = STATE(155), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(740), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(423), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(790), + [anon_sym_DOT_DOT] = ACTIONS(774), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_DASH_GT] = ACTIONS(792), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(427), + [anon_sym_break] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_default] = ACTIONS(435), + [anon_sym_for] = ACTIONS(437), + [anon_sym_gen] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_loop] = ACTIONS(443), + [anon_sym_match] = ACTIONS(445), + [anon_sym_return] = ACTIONS(447), + [anon_sym_static] = ACTIONS(449), + [anon_sym_union] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(451), + [anon_sym_while] = ACTIONS(453), + [anon_sym_yield] = ACTIONS(455), + [anon_sym_move] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [aux_sym_string_literal_token1] = ACTIONS(463), + [sym_char_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(467), + [sym_super] = ACTIONS(469), + [sym_crate] = ACTIONS(469), + [sym_metavariable] = ACTIONS(471), + [sym__raw_string_literal_start] = ACTIONS(473), + [sym_float_literal] = ACTIONS(461), + }, + [STATE(156)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(301), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1494), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(178), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(156), + [sym_block_comment] = STATE(156), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(794), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(794), + [anon_sym_BANG] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(796), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(511), + [anon_sym_break] = ACTIONS(513), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(515), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(517), + [anon_sym_static] = ACTIONS(519), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [sym_mutable_specifier] = ACTIONS(800), + [anon_sym_raw] = ACTIONS(802), + [anon_sym_yield] = ACTIONS(521), + [anon_sym_move] = ACTIONS(523), + [anon_sym_try] = ACTIONS(359), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(157)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(305), + [sym_bracketed_type] = STATE(3726), + [sym_generic_function] = STATE(1934), + [sym_generic_type_with_turbofish] = STATE(3067), + [sym__expression_except_range] = STATE(1755), + [sym__expression] = STATE(1975), + [sym_expression_with_attribute] = STATE(1958), + [sym__expression_without_attribute] = STATE(1958), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(1673), + [sym_scoped_type_identifier_in_expression_position] = STATE(3301), + [sym_range_expression] = STATE(1801), + [sym_unary_expression] = STATE(1934), + [sym_try_expression] = STATE(1934), + [sym_reference_expression] = STATE(1934), + [sym_binary_expression] = STATE(1934), + [sym_assignment_expression] = STATE(1934), + [sym_compound_assignment_expr] = STATE(1934), + [sym_type_cast_expression] = STATE(1934), + [sym_return_expression] = STATE(1934), + [sym_yield_expression] = STATE(1934), + [sym_call_expression] = STATE(1934), + [sym_array_expression] = STATE(1934), + [sym_parenthesized_expression] = STATE(1934), + [sym_tuple_expression] = STATE(1934), + [sym_unit_expression] = STATE(1934), + [sym_struct_expression] = STATE(1934), + [sym_if_expression] = STATE(1934), + [sym_match_expression] = STATE(1934), + [sym_while_expression] = STATE(1934), + [sym_loop_expression] = STATE(1934), + [sym_for_expression] = STATE(1934), + [sym_const_block] = STATE(1934), + [sym_closure_expression] = STATE(1934), + [sym_closure_parameters] = STATE(154), + [sym_label] = STATE(3832), + [sym_break_expression] = STATE(1934), + [sym_continue_expression] = STATE(1934), + [sym_index_expression] = STATE(1934), + [sym_await_expression] = STATE(1934), + [sym_field_expression] = STATE(1707), + [sym_unsafe_block] = STATE(1934), + [sym_async_block] = STATE(1934), + [sym_gen_block] = STATE(1934), + [sym_try_block] = STATE(1934), + [sym_block] = STATE(1955), + [sym__literal] = STATE(1934), + [sym_string_literal] = STATE(1949), + [sym_raw_string_literal] = STATE(1949), + [sym_boolean_literal] = STATE(1949), + [sym_line_comment] = STATE(157), + [sym_block_comment] = STATE(157), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(740), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(423), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(774), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_DASH_GT] = ACTIONS(806), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(427), + [anon_sym_break] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_default] = ACTIONS(435), + [anon_sym_for] = ACTIONS(437), + [anon_sym_gen] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_loop] = ACTIONS(443), + [anon_sym_match] = ACTIONS(445), + [anon_sym_return] = ACTIONS(447), + [anon_sym_static] = ACTIONS(449), + [anon_sym_union] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(451), + [anon_sym_while] = ACTIONS(453), + [anon_sym_yield] = ACTIONS(455), + [anon_sym_move] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [aux_sym_string_literal_token1] = ACTIONS(463), + [sym_char_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(467), + [sym_super] = ACTIONS(469), + [sym_crate] = ACTIONS(469), + [sym_metavariable] = ACTIONS(471), + [sym__raw_string_literal_start] = ACTIONS(473), + [sym_float_literal] = ACTIONS(461), + }, + [STATE(158)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(305), + [sym_bracketed_type] = STATE(3726), + [sym_generic_function] = STATE(1934), + [sym_generic_type_with_turbofish] = STATE(3067), + [sym__expression_except_range] = STATE(1755), + [sym__expression] = STATE(1981), + [sym_expression_with_attribute] = STATE(1958), + [sym__expression_without_attribute] = STATE(1958), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(1673), + [sym_scoped_type_identifier_in_expression_position] = STATE(3301), + [sym_range_expression] = STATE(1801), + [sym_unary_expression] = STATE(1934), + [sym_try_expression] = STATE(1934), + [sym_reference_expression] = STATE(1934), + [sym_binary_expression] = STATE(1934), + [sym_assignment_expression] = STATE(1934), + [sym_compound_assignment_expr] = STATE(1934), + [sym_type_cast_expression] = STATE(1934), + [sym_return_expression] = STATE(1934), + [sym_yield_expression] = STATE(1934), + [sym_call_expression] = STATE(1934), + [sym_array_expression] = STATE(1934), + [sym_parenthesized_expression] = STATE(1934), + [sym_tuple_expression] = STATE(1934), + [sym_unit_expression] = STATE(1934), + [sym_struct_expression] = STATE(1934), + [sym_if_expression] = STATE(1934), + [sym_match_expression] = STATE(1934), + [sym_while_expression] = STATE(1934), + [sym_loop_expression] = STATE(1934), + [sym_for_expression] = STATE(1934), + [sym_const_block] = STATE(1934), + [sym_closure_expression] = STATE(1934), + [sym_closure_parameters] = STATE(154), + [sym_label] = STATE(3832), + [sym_break_expression] = STATE(1934), + [sym_continue_expression] = STATE(1934), + [sym_index_expression] = STATE(1934), + [sym_await_expression] = STATE(1934), + [sym_field_expression] = STATE(1707), + [sym_unsafe_block] = STATE(1934), + [sym_async_block] = STATE(1934), + [sym_gen_block] = STATE(1934), + [sym_try_block] = STATE(1934), + [sym_block] = STATE(1774), + [sym__literal] = STATE(1934), + [sym_string_literal] = STATE(1949), + [sym_raw_string_literal] = STATE(1949), + [sym_boolean_literal] = STATE(1949), + [sym_line_comment] = STATE(158), + [sym_block_comment] = STATE(158), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(740), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(423), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(808), + [anon_sym_DOT_DOT] = ACTIONS(774), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_DASH_GT] = ACTIONS(810), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(427), + [anon_sym_break] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_default] = ACTIONS(435), + [anon_sym_for] = ACTIONS(437), + [anon_sym_gen] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_loop] = ACTIONS(443), + [anon_sym_match] = ACTIONS(445), + [anon_sym_return] = ACTIONS(447), + [anon_sym_static] = ACTIONS(449), + [anon_sym_union] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(451), + [anon_sym_while] = ACTIONS(453), + [anon_sym_yield] = ACTIONS(455), + [anon_sym_move] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [aux_sym_string_literal_token1] = ACTIONS(463), + [sym_char_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(467), + [sym_super] = ACTIONS(469), + [sym_crate] = ACTIONS(469), + [sym_metavariable] = ACTIONS(471), + [sym__raw_string_literal_start] = ACTIONS(473), + [sym_float_literal] = ACTIONS(461), + }, + [STATE(159)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1763), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(159), + [sym_block_comment] = STATE(159), + [aux_sym_attributes_repeat1] = STATE(1090), + [aux_sym_tuple_expression_repeat1] = STATE(181), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(812), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(887), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -33385,28 +36418,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(889), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(752), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -33421,414 +36453,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(142)] = { - [sym_line_comment] = STATE(142), - [sym_block_comment] = STATE(142), - [aux_sym__non_special_token_repeat1] = STATE(142), - [sym_identifier] = ACTIONS(891), - [anon_sym_SEMI] = ACTIONS(893), - [anon_sym_LPAREN] = ACTIONS(896), - [anon_sym_RPAREN] = ACTIONS(896), - [anon_sym_LBRACK] = ACTIONS(896), - [anon_sym_RBRACK] = ACTIONS(896), - [anon_sym_LBRACE] = ACTIONS(896), - [anon_sym_RBRACE] = ACTIONS(896), - [anon_sym_EQ_GT] = ACTIONS(893), - [anon_sym_COLON] = ACTIONS(898), - [anon_sym_DOLLAR] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(898), - [anon_sym_STAR] = ACTIONS(898), - [anon_sym_QMARK] = ACTIONS(893), - [anon_sym_u8] = ACTIONS(891), - [anon_sym_i8] = ACTIONS(891), - [anon_sym_u16] = ACTIONS(891), - [anon_sym_i16] = ACTIONS(891), - [anon_sym_u32] = ACTIONS(891), - [anon_sym_i32] = ACTIONS(891), - [anon_sym_u64] = ACTIONS(891), - [anon_sym_i64] = ACTIONS(891), - [anon_sym_u128] = ACTIONS(891), - [anon_sym_i128] = ACTIONS(891), - [anon_sym_isize] = ACTIONS(891), - [anon_sym_usize] = ACTIONS(891), - [anon_sym_f32] = ACTIONS(891), - [anon_sym_f64] = ACTIONS(891), - [anon_sym_bool] = ACTIONS(891), - [anon_sym_str] = ACTIONS(891), - [anon_sym_char] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(898), - [anon_sym_SLASH] = ACTIONS(898), - [anon_sym_PERCENT] = ACTIONS(898), - [anon_sym_CARET] = ACTIONS(898), - [anon_sym_BANG] = ACTIONS(898), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_PIPE] = ACTIONS(898), - [anon_sym_AMP_AMP] = ACTIONS(893), - [anon_sym_PIPE_PIPE] = ACTIONS(893), - [anon_sym_LT_LT] = ACTIONS(898), - [anon_sym_GT_GT] = ACTIONS(898), - [anon_sym_PLUS_EQ] = ACTIONS(893), - [anon_sym_DASH_EQ] = ACTIONS(893), - [anon_sym_STAR_EQ] = ACTIONS(893), - [anon_sym_SLASH_EQ] = ACTIONS(893), - [anon_sym_PERCENT_EQ] = ACTIONS(893), - [anon_sym_CARET_EQ] = ACTIONS(893), - [anon_sym_AMP_EQ] = ACTIONS(893), - [anon_sym_PIPE_EQ] = ACTIONS(893), - [anon_sym_LT_LT_EQ] = ACTIONS(893), - [anon_sym_GT_GT_EQ] = ACTIONS(893), - [anon_sym_EQ] = ACTIONS(898), - [anon_sym_EQ_EQ] = ACTIONS(893), - [anon_sym_BANG_EQ] = ACTIONS(893), - [anon_sym_GT] = ACTIONS(898), - [anon_sym_LT] = ACTIONS(898), - [anon_sym_GT_EQ] = ACTIONS(893), - [anon_sym_LT_EQ] = ACTIONS(893), - [anon_sym_AT] = ACTIONS(893), - [anon_sym__] = ACTIONS(898), - [anon_sym_DOT] = ACTIONS(898), - [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_DOT_DOT_DOT] = ACTIONS(893), - [anon_sym_DOT_DOT_EQ] = ACTIONS(893), - [anon_sym_COMMA] = ACTIONS(893), - [anon_sym_COLON_COLON] = ACTIONS(893), - [anon_sym_DASH_GT] = ACTIONS(893), - [anon_sym_POUND] = ACTIONS(893), - [anon_sym_SQUOTE] = ACTIONS(891), - [anon_sym_as] = ACTIONS(891), - [anon_sym_async] = ACTIONS(891), - [anon_sym_await] = ACTIONS(891), - [anon_sym_break] = ACTIONS(891), - [anon_sym_const] = ACTIONS(891), - [anon_sym_continue] = ACTIONS(891), - [anon_sym_default] = ACTIONS(891), - [anon_sym_enum] = ACTIONS(891), - [anon_sym_fn] = ACTIONS(891), - [anon_sym_for] = ACTIONS(891), - [anon_sym_gen] = ACTIONS(891), - [anon_sym_if] = ACTIONS(891), - [anon_sym_impl] = ACTIONS(891), - [anon_sym_let] = ACTIONS(891), - [anon_sym_loop] = ACTIONS(891), - [anon_sym_match] = ACTIONS(891), - [anon_sym_mod] = ACTIONS(891), - [anon_sym_pub] = ACTIONS(891), - [anon_sym_return] = ACTIONS(891), - [anon_sym_static] = ACTIONS(891), - [anon_sym_struct] = ACTIONS(891), - [anon_sym_trait] = ACTIONS(891), - [anon_sym_type] = ACTIONS(891), - [anon_sym_union] = ACTIONS(891), - [anon_sym_unsafe] = ACTIONS(891), - [anon_sym_use] = ACTIONS(891), - [anon_sym_where] = ACTIONS(891), - [anon_sym_while] = ACTIONS(891), - [sym_mutable_specifier] = ACTIONS(891), - [sym_integer_literal] = ACTIONS(896), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(896), - [anon_sym_true] = ACTIONS(891), - [anon_sym_false] = ACTIONS(891), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(891), - [sym_super] = ACTIONS(891), - [sym_crate] = ACTIONS(891), - [sym_metavariable] = ACTIONS(896), - [sym__raw_string_literal_start] = ACTIONS(896), - [sym_float_literal] = ACTIONS(896), - }, - [STATE(143)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1703), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(143), - [sym_block_comment] = STATE(143), - [aux_sym_enum_variant_list_repeat1] = STATE(1058), - [sym_identifier] = ACTIONS(754), - [anon_sym_LPAREN] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(760), - [anon_sym_RBRACK] = ACTIONS(763), - [anon_sym_LBRACE] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(768), - [anon_sym_u8] = ACTIONS(771), - [anon_sym_i8] = ACTIONS(771), - [anon_sym_u16] = ACTIONS(771), - [anon_sym_i16] = ACTIONS(771), - [anon_sym_u32] = ACTIONS(771), - [anon_sym_i32] = ACTIONS(771), - [anon_sym_u64] = ACTIONS(771), - [anon_sym_i64] = ACTIONS(771), - [anon_sym_u128] = ACTIONS(771), - [anon_sym_i128] = ACTIONS(771), - [anon_sym_isize] = ACTIONS(771), - [anon_sym_usize] = ACTIONS(771), - [anon_sym_f32] = ACTIONS(771), - [anon_sym_f64] = ACTIONS(771), - [anon_sym_bool] = ACTIONS(771), - [anon_sym_str] = ACTIONS(771), - [anon_sym_char] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_BANG] = ACTIONS(768), - [anon_sym_AMP] = ACTIONS(774), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(780), - [anon_sym_DOT_DOT] = ACTIONS(783), - [anon_sym_COMMA] = ACTIONS(763), - [anon_sym_COLON_COLON] = ACTIONS(786), - [anon_sym_POUND] = ACTIONS(789), - [anon_sym_SQUOTE] = ACTIONS(792), - [anon_sym_async] = ACTIONS(795), - [anon_sym_break] = ACTIONS(798), - [anon_sym_const] = ACTIONS(801), - [anon_sym_continue] = ACTIONS(804), - [anon_sym_default] = ACTIONS(807), - [anon_sym_for] = ACTIONS(810), - [anon_sym_gen] = ACTIONS(813), - [anon_sym_if] = ACTIONS(816), - [anon_sym_loop] = ACTIONS(819), - [anon_sym_match] = ACTIONS(822), - [anon_sym_return] = ACTIONS(825), - [anon_sym_static] = ACTIONS(828), - [anon_sym_union] = ACTIONS(807), - [anon_sym_unsafe] = ACTIONS(831), - [anon_sym_while] = ACTIONS(834), - [anon_sym_yield] = ACTIONS(837), - [anon_sym_move] = ACTIONS(840), - [anon_sym_try] = ACTIONS(843), - [sym_integer_literal] = ACTIONS(846), - [aux_sym_string_literal_token1] = ACTIONS(849), - [sym_char_literal] = ACTIONS(846), - [anon_sym_true] = ACTIONS(852), - [anon_sym_false] = ACTIONS(852), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(855), - [sym_super] = ACTIONS(858), - [sym_crate] = ACTIONS(858), - [sym_metavariable] = ACTIONS(861), - [sym__raw_string_literal_start] = ACTIONS(864), - [sym_float_literal] = ACTIONS(846), - }, - [STATE(144)] = { - [sym_line_comment] = STATE(144), - [sym_block_comment] = STATE(144), - [aux_sym__non_special_token_repeat1] = STATE(142), - [sym_identifier] = ACTIONS(901), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(903), - [anon_sym_RPAREN] = ACTIONS(903), - [anon_sym_LBRACK] = ACTIONS(903), - [anon_sym_RBRACK] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(903), - [anon_sym_RBRACE] = ACTIONS(903), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(901), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(901), - [anon_sym_i8] = ACTIONS(901), - [anon_sym_u16] = ACTIONS(901), - [anon_sym_i16] = ACTIONS(901), - [anon_sym_u32] = ACTIONS(901), - [anon_sym_i32] = ACTIONS(901), - [anon_sym_u64] = ACTIONS(901), - [anon_sym_i64] = ACTIONS(901), - [anon_sym_u128] = ACTIONS(901), - [anon_sym_i128] = ACTIONS(901), - [anon_sym_isize] = ACTIONS(901), - [anon_sym_usize] = ACTIONS(901), - [anon_sym_f32] = ACTIONS(901), - [anon_sym_f64] = ACTIONS(901), - [anon_sym_bool] = ACTIONS(901), - [anon_sym_str] = ACTIONS(901), - [anon_sym_char] = ACTIONS(901), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(901), - [anon_sym_as] = ACTIONS(901), - [anon_sym_async] = ACTIONS(901), - [anon_sym_await] = ACTIONS(901), - [anon_sym_break] = ACTIONS(901), - [anon_sym_const] = ACTIONS(901), - [anon_sym_continue] = ACTIONS(901), - [anon_sym_default] = ACTIONS(901), - [anon_sym_enum] = ACTIONS(901), - [anon_sym_fn] = ACTIONS(901), - [anon_sym_for] = ACTIONS(901), - [anon_sym_gen] = ACTIONS(901), - [anon_sym_if] = ACTIONS(901), - [anon_sym_impl] = ACTIONS(901), - [anon_sym_let] = ACTIONS(901), - [anon_sym_loop] = ACTIONS(901), - [anon_sym_match] = ACTIONS(901), - [anon_sym_mod] = ACTIONS(901), - [anon_sym_pub] = ACTIONS(901), - [anon_sym_return] = ACTIONS(901), - [anon_sym_static] = ACTIONS(901), - [anon_sym_struct] = ACTIONS(901), - [anon_sym_trait] = ACTIONS(901), - [anon_sym_type] = ACTIONS(901), - [anon_sym_union] = ACTIONS(901), - [anon_sym_unsafe] = ACTIONS(901), - [anon_sym_use] = ACTIONS(901), - [anon_sym_where] = ACTIONS(901), - [anon_sym_while] = ACTIONS(901), - [sym_mutable_specifier] = ACTIONS(901), - [sym_integer_literal] = ACTIONS(903), - [aux_sym_string_literal_token1] = ACTIONS(903), - [sym_char_literal] = ACTIONS(903), - [anon_sym_true] = ACTIONS(901), - [anon_sym_false] = ACTIONS(901), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(901), - [sym_super] = ACTIONS(901), - [sym_crate] = ACTIONS(901), - [sym_metavariable] = ACTIONS(903), - [sym__raw_string_literal_start] = ACTIONS(903), - [sym_float_literal] = ACTIONS(903), + [STATE(160)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(305), + [sym_bracketed_type] = STATE(3726), + [sym_generic_function] = STATE(1934), + [sym_generic_type_with_turbofish] = STATE(3067), + [sym__expression_except_range] = STATE(1755), + [sym__expression] = STATE(1787), + [sym_expression_with_attribute] = STATE(1958), + [sym__expression_without_attribute] = STATE(1958), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(1673), + [sym_scoped_type_identifier_in_expression_position] = STATE(3301), + [sym_range_expression] = STATE(1801), + [sym_unary_expression] = STATE(1934), + [sym_try_expression] = STATE(1934), + [sym_reference_expression] = STATE(1934), + [sym_binary_expression] = STATE(1934), + [sym_assignment_expression] = STATE(1934), + [sym_compound_assignment_expr] = STATE(1934), + [sym_type_cast_expression] = STATE(1934), + [sym_return_expression] = STATE(1934), + [sym_yield_expression] = STATE(1934), + [sym_call_expression] = STATE(1934), + [sym_array_expression] = STATE(1934), + [sym_parenthesized_expression] = STATE(1934), + [sym_tuple_expression] = STATE(1934), + [sym_unit_expression] = STATE(1934), + [sym_struct_expression] = STATE(1934), + [sym_if_expression] = STATE(1934), + [sym_match_expression] = STATE(1934), + [sym_while_expression] = STATE(1934), + [sym_loop_expression] = STATE(1934), + [sym_for_expression] = STATE(1934), + [sym_const_block] = STATE(1934), + [sym_closure_expression] = STATE(1934), + [sym_closure_parameters] = STATE(154), + [sym_label] = STATE(3832), + [sym_break_expression] = STATE(1934), + [sym_continue_expression] = STATE(1934), + [sym_index_expression] = STATE(1934), + [sym_await_expression] = STATE(1934), + [sym_field_expression] = STATE(1707), + [sym_unsafe_block] = STATE(1934), + [sym_async_block] = STATE(1934), + [sym_gen_block] = STATE(1934), + [sym_try_block] = STATE(1934), + [sym_block] = STATE(1934), + [sym__literal] = STATE(1934), + [sym_string_literal] = STATE(1949), + [sym_raw_string_literal] = STATE(1949), + [sym_boolean_literal] = STATE(1949), + [sym_line_comment] = STATE(160), + [sym_block_comment] = STATE(160), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(740), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(774), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(427), + [anon_sym_break] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_default] = ACTIONS(435), + [anon_sym_for] = ACTIONS(437), + [anon_sym_gen] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_loop] = ACTIONS(443), + [anon_sym_match] = ACTIONS(445), + [anon_sym_return] = ACTIONS(447), + [anon_sym_static] = ACTIONS(449), + [anon_sym_union] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(451), + [anon_sym_while] = ACTIONS(453), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_raw] = ACTIONS(816), + [anon_sym_yield] = ACTIONS(455), + [anon_sym_move] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [aux_sym_string_literal_token1] = ACTIONS(463), + [sym_char_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(467), + [sym_super] = ACTIONS(469), + [sym_crate] = ACTIONS(469), + [sym_metavariable] = ACTIONS(471), + [sym__raw_string_literal_start] = ACTIONS(473), + [sym_float_literal] = ACTIONS(461), }, - [STATE(145)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1673), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(145), - [sym_block_comment] = STATE(145), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(339), + [STATE(161)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(263), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1618), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1535), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(161), + [sym_block_comment] = STATE(161), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(905), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -33847,33 +36650,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(369), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym__] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(752), + [anon_sym_DASH_GT] = ACTIONS(822), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -33888,108 +36693,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(146)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1907), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_let_condition] = STATE(3091), - [sym__let_chain] = STATE(3103), - [sym__condition] = STATE(2645), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(146), - [sym_block_comment] = STATE(146), - [sym_identifier] = ACTIONS(475), + [STATE(162)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(301), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1957), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(178), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(162), + [sym_block_comment] = STATE(162), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(794), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(509), + [anon_sym_BANG] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(796), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym__] = ACTIONS(778), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_DASH_GT] = ACTIONS(780), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(913), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(511), + [anon_sym_break] = ACTIONS(513), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(515), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(517), + [anon_sym_static] = ACTIONS(519), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(521), + [anon_sym_move] = ACTIONS(523), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -33997,579 +36806,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(147)] = { - [sym_line_comment] = STATE(147), - [sym_block_comment] = STATE(147), - [aux_sym__non_special_token_repeat1] = STATE(170), - [sym_identifier] = ACTIONS(915), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(917), - [anon_sym_RPAREN] = ACTIONS(917), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_RBRACK] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(917), - [anon_sym_RBRACE] = ACTIONS(917), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(917), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(915), - [anon_sym_i8] = ACTIONS(915), - [anon_sym_u16] = ACTIONS(915), - [anon_sym_i16] = ACTIONS(915), - [anon_sym_u32] = ACTIONS(915), - [anon_sym_i32] = ACTIONS(915), - [anon_sym_u64] = ACTIONS(915), - [anon_sym_i64] = ACTIONS(915), - [anon_sym_u128] = ACTIONS(915), - [anon_sym_i128] = ACTIONS(915), - [anon_sym_isize] = ACTIONS(915), - [anon_sym_usize] = ACTIONS(915), - [anon_sym_f32] = ACTIONS(915), - [anon_sym_f64] = ACTIONS(915), - [anon_sym_bool] = ACTIONS(915), - [anon_sym_str] = ACTIONS(915), - [anon_sym_char] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(915), - [anon_sym_as] = ACTIONS(915), - [anon_sym_async] = ACTIONS(915), - [anon_sym_await] = ACTIONS(915), - [anon_sym_break] = ACTIONS(915), - [anon_sym_const] = ACTIONS(915), - [anon_sym_continue] = ACTIONS(915), - [anon_sym_default] = ACTIONS(915), - [anon_sym_enum] = ACTIONS(915), - [anon_sym_fn] = ACTIONS(915), - [anon_sym_for] = ACTIONS(915), - [anon_sym_gen] = ACTIONS(915), - [anon_sym_if] = ACTIONS(915), - [anon_sym_impl] = ACTIONS(915), - [anon_sym_let] = ACTIONS(915), - [anon_sym_loop] = ACTIONS(915), - [anon_sym_match] = ACTIONS(915), - [anon_sym_mod] = ACTIONS(915), - [anon_sym_pub] = ACTIONS(915), - [anon_sym_return] = ACTIONS(915), - [anon_sym_static] = ACTIONS(915), - [anon_sym_struct] = ACTIONS(915), - [anon_sym_trait] = ACTIONS(915), - [anon_sym_type] = ACTIONS(915), - [anon_sym_union] = ACTIONS(915), - [anon_sym_unsafe] = ACTIONS(915), - [anon_sym_use] = ACTIONS(915), - [anon_sym_where] = ACTIONS(915), - [anon_sym_while] = ACTIONS(915), - [sym_mutable_specifier] = ACTIONS(915), - [sym_integer_literal] = ACTIONS(917), - [aux_sym_string_literal_token1] = ACTIONS(917), - [sym_char_literal] = ACTIONS(917), - [anon_sym_true] = ACTIONS(915), - [anon_sym_false] = ACTIONS(915), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(915), - [sym_super] = ACTIONS(915), - [sym_crate] = ACTIONS(915), - [sym__raw_string_literal_start] = ACTIONS(917), - [sym_float_literal] = ACTIONS(917), - }, - [STATE(148)] = { - [sym_line_comment] = STATE(148), - [sym_block_comment] = STATE(148), - [sym_identifier] = ACTIONS(919), - [anon_sym_SEMI] = ACTIONS(921), - [anon_sym_LPAREN] = ACTIONS(921), - [anon_sym_RPAREN] = ACTIONS(921), - [anon_sym_LBRACK] = ACTIONS(921), - [anon_sym_RBRACK] = ACTIONS(921), - [anon_sym_LBRACE] = ACTIONS(921), - [anon_sym_RBRACE] = ACTIONS(921), - [anon_sym_EQ_GT] = ACTIONS(921), - [anon_sym_COLON] = ACTIONS(919), - [anon_sym_DOLLAR] = ACTIONS(919), - [anon_sym_PLUS] = ACTIONS(919), - [anon_sym_STAR] = ACTIONS(919), - [anon_sym_QMARK] = ACTIONS(921), - [anon_sym_u8] = ACTIONS(919), - [anon_sym_i8] = ACTIONS(919), - [anon_sym_u16] = ACTIONS(919), - [anon_sym_i16] = ACTIONS(919), - [anon_sym_u32] = ACTIONS(919), - [anon_sym_i32] = ACTIONS(919), - [anon_sym_u64] = ACTIONS(919), - [anon_sym_i64] = ACTIONS(919), - [anon_sym_u128] = ACTIONS(919), - [anon_sym_i128] = ACTIONS(919), - [anon_sym_isize] = ACTIONS(919), - [anon_sym_usize] = ACTIONS(919), - [anon_sym_f32] = ACTIONS(919), - [anon_sym_f64] = ACTIONS(919), - [anon_sym_bool] = ACTIONS(919), - [anon_sym_str] = ACTIONS(919), - [anon_sym_char] = ACTIONS(919), - [anon_sym_DASH] = ACTIONS(919), - [anon_sym_SLASH] = ACTIONS(919), - [anon_sym_PERCENT] = ACTIONS(919), - [anon_sym_CARET] = ACTIONS(919), - [anon_sym_BANG] = ACTIONS(919), - [anon_sym_AMP] = ACTIONS(919), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_AMP_AMP] = ACTIONS(921), - [anon_sym_PIPE_PIPE] = ACTIONS(921), - [anon_sym_LT_LT] = ACTIONS(919), - [anon_sym_GT_GT] = ACTIONS(919), - [anon_sym_PLUS_EQ] = ACTIONS(921), - [anon_sym_DASH_EQ] = ACTIONS(921), - [anon_sym_STAR_EQ] = ACTIONS(921), - [anon_sym_SLASH_EQ] = ACTIONS(921), - [anon_sym_PERCENT_EQ] = ACTIONS(921), - [anon_sym_CARET_EQ] = ACTIONS(921), - [anon_sym_AMP_EQ] = ACTIONS(921), - [anon_sym_PIPE_EQ] = ACTIONS(921), - [anon_sym_LT_LT_EQ] = ACTIONS(921), - [anon_sym_GT_GT_EQ] = ACTIONS(921), - [anon_sym_EQ] = ACTIONS(919), - [anon_sym_EQ_EQ] = ACTIONS(921), - [anon_sym_BANG_EQ] = ACTIONS(921), - [anon_sym_GT] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(919), - [anon_sym_GT_EQ] = ACTIONS(921), - [anon_sym_LT_EQ] = ACTIONS(921), - [anon_sym_AT] = ACTIONS(921), - [anon_sym__] = ACTIONS(919), - [anon_sym_DOT] = ACTIONS(919), - [anon_sym_DOT_DOT] = ACTIONS(919), - [anon_sym_DOT_DOT_DOT] = ACTIONS(921), - [anon_sym_DOT_DOT_EQ] = ACTIONS(921), - [anon_sym_COMMA] = ACTIONS(921), - [anon_sym_COLON_COLON] = ACTIONS(921), - [anon_sym_DASH_GT] = ACTIONS(921), - [anon_sym_POUND] = ACTIONS(921), - [anon_sym_SQUOTE] = ACTIONS(919), - [anon_sym_as] = ACTIONS(919), - [anon_sym_async] = ACTIONS(919), - [anon_sym_await] = ACTIONS(919), - [anon_sym_break] = ACTIONS(919), - [anon_sym_const] = ACTIONS(919), - [anon_sym_continue] = ACTIONS(919), - [anon_sym_default] = ACTIONS(919), - [anon_sym_enum] = ACTIONS(919), - [anon_sym_fn] = ACTIONS(919), - [anon_sym_for] = ACTIONS(919), - [anon_sym_gen] = ACTIONS(919), - [anon_sym_if] = ACTIONS(919), - [anon_sym_impl] = ACTIONS(919), - [anon_sym_let] = ACTIONS(919), - [anon_sym_loop] = ACTIONS(919), - [anon_sym_match] = ACTIONS(919), - [anon_sym_mod] = ACTIONS(919), - [anon_sym_pub] = ACTIONS(919), - [anon_sym_return] = ACTIONS(919), - [anon_sym_static] = ACTIONS(919), - [anon_sym_struct] = ACTIONS(919), - [anon_sym_trait] = ACTIONS(919), - [anon_sym_type] = ACTIONS(919), - [anon_sym_union] = ACTIONS(919), - [anon_sym_unsafe] = ACTIONS(919), - [anon_sym_use] = ACTIONS(919), - [anon_sym_where] = ACTIONS(919), - [anon_sym_while] = ACTIONS(919), - [sym_mutable_specifier] = ACTIONS(919), - [sym_integer_literal] = ACTIONS(921), - [aux_sym_string_literal_token1] = ACTIONS(921), - [sym_char_literal] = ACTIONS(921), - [anon_sym_true] = ACTIONS(919), - [anon_sym_false] = ACTIONS(919), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(919), - [sym_super] = ACTIONS(919), - [sym_crate] = ACTIONS(919), - [sym_metavariable] = ACTIONS(921), - [sym__raw_string_literal_start] = ACTIONS(921), - [sym_float_literal] = ACTIONS(921), - }, - [STATE(149)] = { - [sym_line_comment] = STATE(149), - [sym_block_comment] = STATE(149), - [sym_identifier] = ACTIONS(923), - [anon_sym_SEMI] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(925), - [anon_sym_RPAREN] = ACTIONS(925), - [anon_sym_LBRACK] = ACTIONS(925), - [anon_sym_RBRACK] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_RBRACE] = ACTIONS(925), - [anon_sym_EQ_GT] = ACTIONS(925), - [anon_sym_COLON] = ACTIONS(923), - [anon_sym_DOLLAR] = ACTIONS(923), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_QMARK] = ACTIONS(925), - [anon_sym_u8] = ACTIONS(923), - [anon_sym_i8] = ACTIONS(923), - [anon_sym_u16] = ACTIONS(923), - [anon_sym_i16] = ACTIONS(923), - [anon_sym_u32] = ACTIONS(923), - [anon_sym_i32] = ACTIONS(923), - [anon_sym_u64] = ACTIONS(923), - [anon_sym_i64] = ACTIONS(923), - [anon_sym_u128] = ACTIONS(923), - [anon_sym_i128] = ACTIONS(923), - [anon_sym_isize] = ACTIONS(923), - [anon_sym_usize] = ACTIONS(923), - [anon_sym_f32] = ACTIONS(923), - [anon_sym_f64] = ACTIONS(923), - [anon_sym_bool] = ACTIONS(923), - [anon_sym_str] = ACTIONS(923), - [anon_sym_char] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_PERCENT] = ACTIONS(923), - [anon_sym_CARET] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(923), - [anon_sym_PIPE] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT_LT] = ACTIONS(923), - [anon_sym_GT_GT] = ACTIONS(923), - [anon_sym_PLUS_EQ] = ACTIONS(925), - [anon_sym_DASH_EQ] = ACTIONS(925), - [anon_sym_STAR_EQ] = ACTIONS(925), - [anon_sym_SLASH_EQ] = ACTIONS(925), - [anon_sym_PERCENT_EQ] = ACTIONS(925), - [anon_sym_CARET_EQ] = ACTIONS(925), - [anon_sym_AMP_EQ] = ACTIONS(925), - [anon_sym_PIPE_EQ] = ACTIONS(925), - [anon_sym_LT_LT_EQ] = ACTIONS(925), - [anon_sym_GT_GT_EQ] = ACTIONS(925), - [anon_sym_EQ] = ACTIONS(923), - [anon_sym_EQ_EQ] = ACTIONS(925), - [anon_sym_BANG_EQ] = ACTIONS(925), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_LT] = ACTIONS(923), - [anon_sym_GT_EQ] = ACTIONS(925), - [anon_sym_LT_EQ] = ACTIONS(925), - [anon_sym_AT] = ACTIONS(925), - [anon_sym__] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(923), - [anon_sym_DOT_DOT] = ACTIONS(923), - [anon_sym_DOT_DOT_DOT] = ACTIONS(925), - [anon_sym_DOT_DOT_EQ] = ACTIONS(925), - [anon_sym_COMMA] = ACTIONS(925), - [anon_sym_COLON_COLON] = ACTIONS(925), - [anon_sym_DASH_GT] = ACTIONS(925), - [anon_sym_POUND] = ACTIONS(925), - [anon_sym_SQUOTE] = ACTIONS(923), - [anon_sym_as] = ACTIONS(923), - [anon_sym_async] = ACTIONS(923), - [anon_sym_await] = ACTIONS(923), - [anon_sym_break] = ACTIONS(923), - [anon_sym_const] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(923), - [anon_sym_default] = ACTIONS(923), - [anon_sym_enum] = ACTIONS(923), - [anon_sym_fn] = ACTIONS(923), - [anon_sym_for] = ACTIONS(923), - [anon_sym_gen] = ACTIONS(923), - [anon_sym_if] = ACTIONS(923), - [anon_sym_impl] = ACTIONS(923), - [anon_sym_let] = ACTIONS(923), - [anon_sym_loop] = ACTIONS(923), - [anon_sym_match] = ACTIONS(923), - [anon_sym_mod] = ACTIONS(923), - [anon_sym_pub] = ACTIONS(923), - [anon_sym_return] = ACTIONS(923), - [anon_sym_static] = ACTIONS(923), - [anon_sym_struct] = ACTIONS(923), - [anon_sym_trait] = ACTIONS(923), - [anon_sym_type] = ACTIONS(923), - [anon_sym_union] = ACTIONS(923), - [anon_sym_unsafe] = ACTIONS(923), - [anon_sym_use] = ACTIONS(923), - [anon_sym_where] = ACTIONS(923), - [anon_sym_while] = ACTIONS(923), - [sym_mutable_specifier] = ACTIONS(923), - [sym_integer_literal] = ACTIONS(925), - [aux_sym_string_literal_token1] = ACTIONS(925), - [sym_char_literal] = ACTIONS(925), - [anon_sym_true] = ACTIONS(923), - [anon_sym_false] = ACTIONS(923), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(923), - [sym_super] = ACTIONS(923), - [sym_crate] = ACTIONS(923), - [sym_metavariable] = ACTIONS(925), - [sym__raw_string_literal_start] = ACTIONS(925), - [sym_float_literal] = ACTIONS(925), - }, - [STATE(150)] = { - [sym_line_comment] = STATE(150), - [sym_block_comment] = STATE(150), - [sym_identifier] = ACTIONS(927), - [anon_sym_SEMI] = ACTIONS(929), - [anon_sym_LPAREN] = ACTIONS(929), - [anon_sym_RPAREN] = ACTIONS(929), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_RBRACK] = ACTIONS(929), - [anon_sym_LBRACE] = ACTIONS(929), - [anon_sym_RBRACE] = ACTIONS(929), - [anon_sym_EQ_GT] = ACTIONS(929), - [anon_sym_COLON] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(927), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_QMARK] = ACTIONS(929), - [anon_sym_u8] = ACTIONS(927), - [anon_sym_i8] = ACTIONS(927), - [anon_sym_u16] = ACTIONS(927), - [anon_sym_i16] = ACTIONS(927), - [anon_sym_u32] = ACTIONS(927), - [anon_sym_i32] = ACTIONS(927), - [anon_sym_u64] = ACTIONS(927), - [anon_sym_i64] = ACTIONS(927), - [anon_sym_u128] = ACTIONS(927), - [anon_sym_i128] = ACTIONS(927), - [anon_sym_isize] = ACTIONS(927), - [anon_sym_usize] = ACTIONS(927), - [anon_sym_f32] = ACTIONS(927), - [anon_sym_f64] = ACTIONS(927), - [anon_sym_bool] = ACTIONS(927), - [anon_sym_str] = ACTIONS(927), - [anon_sym_char] = ACTIONS(927), - [anon_sym_DASH] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_AMP] = ACTIONS(927), - [anon_sym_PIPE] = ACTIONS(927), - [anon_sym_AMP_AMP] = ACTIONS(929), - [anon_sym_PIPE_PIPE] = ACTIONS(929), - [anon_sym_LT_LT] = ACTIONS(927), - [anon_sym_GT_GT] = ACTIONS(927), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_CARET_EQ] = ACTIONS(929), - [anon_sym_AMP_EQ] = ACTIONS(929), - [anon_sym_PIPE_EQ] = ACTIONS(929), - [anon_sym_LT_LT_EQ] = ACTIONS(929), - [anon_sym_GT_GT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_EQ_EQ] = ACTIONS(929), - [anon_sym_BANG_EQ] = ACTIONS(929), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(929), - [anon_sym__] = ACTIONS(927), - [anon_sym_DOT] = ACTIONS(927), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_DOT_DOT_DOT] = ACTIONS(929), - [anon_sym_DOT_DOT_EQ] = ACTIONS(929), - [anon_sym_COMMA] = ACTIONS(929), - [anon_sym_COLON_COLON] = ACTIONS(929), - [anon_sym_DASH_GT] = ACTIONS(929), - [anon_sym_POUND] = ACTIONS(929), - [anon_sym_SQUOTE] = ACTIONS(927), - [anon_sym_as] = ACTIONS(927), - [anon_sym_async] = ACTIONS(927), - [anon_sym_await] = ACTIONS(927), - [anon_sym_break] = ACTIONS(927), - [anon_sym_const] = ACTIONS(927), - [anon_sym_continue] = ACTIONS(927), - [anon_sym_default] = ACTIONS(927), - [anon_sym_enum] = ACTIONS(927), - [anon_sym_fn] = ACTIONS(927), - [anon_sym_for] = ACTIONS(927), - [anon_sym_gen] = ACTIONS(927), - [anon_sym_if] = ACTIONS(927), - [anon_sym_impl] = ACTIONS(927), - [anon_sym_let] = ACTIONS(927), - [anon_sym_loop] = ACTIONS(927), - [anon_sym_match] = ACTIONS(927), - [anon_sym_mod] = ACTIONS(927), - [anon_sym_pub] = ACTIONS(927), - [anon_sym_return] = ACTIONS(927), - [anon_sym_static] = ACTIONS(927), - [anon_sym_struct] = ACTIONS(927), - [anon_sym_trait] = ACTIONS(927), - [anon_sym_type] = ACTIONS(927), - [anon_sym_union] = ACTIONS(927), - [anon_sym_unsafe] = ACTIONS(927), - [anon_sym_use] = ACTIONS(927), - [anon_sym_where] = ACTIONS(927), - [anon_sym_while] = ACTIONS(927), - [sym_mutable_specifier] = ACTIONS(927), - [sym_integer_literal] = ACTIONS(929), - [aux_sym_string_literal_token1] = ACTIONS(929), - [sym_char_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(927), - [anon_sym_false] = ACTIONS(927), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(927), - [sym_super] = ACTIONS(927), - [sym_crate] = ACTIONS(927), - [sym_metavariable] = ACTIONS(929), - [sym__raw_string_literal_start] = ACTIONS(929), - [sym_float_literal] = ACTIONS(929), - }, - [STATE(151)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1673), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(151), - [sym_block_comment] = STATE(151), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(339), + [STATE(163)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(301), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1795), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(178), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1487), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(163), + [sym_block_comment] = STATE(163), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(931), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(794), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(509), + [anon_sym_BANG] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(796), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(752), + [anon_sym__] = ACTIONS(782), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_DASH_GT] = ACTIONS(784), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_async] = ACTIONS(511), + [anon_sym_break] = ACTIONS(513), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(515), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(517), + [anon_sym_static] = ACTIONS(519), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(521), + [anon_sym_move] = ACTIONS(523), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -34577,115 +36926,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(152)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1907), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_let_condition] = STATE(3091), - [sym__let_chain] = STATE(3103), - [sym__condition] = STATE(2771), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(152), - [sym_block_comment] = STATE(152), - [sym_identifier] = ACTIONS(475), + [STATE(164)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(298), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1745), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_let_condition] = STATE(2879), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(164), + [sym_block_comment] = STATE(164), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(824), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(913), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_let] = ACTIONS(738), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -34693,70 +37046,193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(153)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1868), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(153), - [sym_block_comment] = STATE(153), - [aux_sym_enum_variant_list_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(339), + [STATE(165)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(267), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1980), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_let_condition] = STATE(2879), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(165), + [sym_block_comment] = STATE(165), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(736), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_let] = ACTIONS(738), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(166)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(170), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1692), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(166), + [sym_block_comment] = STATE(166), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(933), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACK] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -34781,27 +37257,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COMMA] = ACTIONS(828), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(752), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -34816,411 +37293,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(154)] = { - [sym_line_comment] = STATE(154), - [sym_block_comment] = STATE(154), - [sym_identifier] = ACTIONS(883), - [anon_sym_SEMI] = ACTIONS(885), - [anon_sym_LPAREN] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(885), - [anon_sym_LBRACK] = ACTIONS(885), - [anon_sym_RBRACK] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(885), - [anon_sym_RBRACE] = ACTIONS(885), - [anon_sym_EQ_GT] = ACTIONS(885), - [anon_sym_COLON] = ACTIONS(883), - [anon_sym_DOLLAR] = ACTIONS(883), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_STAR] = ACTIONS(883), - [anon_sym_QMARK] = ACTIONS(885), - [anon_sym_u8] = ACTIONS(883), - [anon_sym_i8] = ACTIONS(883), - [anon_sym_u16] = ACTIONS(883), - [anon_sym_i16] = ACTIONS(883), - [anon_sym_u32] = ACTIONS(883), - [anon_sym_i32] = ACTIONS(883), - [anon_sym_u64] = ACTIONS(883), - [anon_sym_i64] = ACTIONS(883), - [anon_sym_u128] = ACTIONS(883), - [anon_sym_i128] = ACTIONS(883), - [anon_sym_isize] = ACTIONS(883), - [anon_sym_usize] = ACTIONS(883), - [anon_sym_f32] = ACTIONS(883), - [anon_sym_f64] = ACTIONS(883), - [anon_sym_bool] = ACTIONS(883), - [anon_sym_str] = ACTIONS(883), - [anon_sym_char] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(883), - [anon_sym_PERCENT] = ACTIONS(883), - [anon_sym_CARET] = ACTIONS(883), - [anon_sym_BANG] = ACTIONS(883), - [anon_sym_AMP] = ACTIONS(883), - [anon_sym_PIPE] = ACTIONS(883), - [anon_sym_AMP_AMP] = ACTIONS(885), - [anon_sym_PIPE_PIPE] = ACTIONS(885), - [anon_sym_LT_LT] = ACTIONS(883), - [anon_sym_GT_GT] = ACTIONS(883), - [anon_sym_PLUS_EQ] = ACTIONS(885), - [anon_sym_DASH_EQ] = ACTIONS(885), - [anon_sym_STAR_EQ] = ACTIONS(885), - [anon_sym_SLASH_EQ] = ACTIONS(885), - [anon_sym_PERCENT_EQ] = ACTIONS(885), - [anon_sym_CARET_EQ] = ACTIONS(885), - [anon_sym_AMP_EQ] = ACTIONS(885), - [anon_sym_PIPE_EQ] = ACTIONS(885), - [anon_sym_LT_LT_EQ] = ACTIONS(885), - [anon_sym_GT_GT_EQ] = ACTIONS(885), - [anon_sym_EQ] = ACTIONS(883), - [anon_sym_EQ_EQ] = ACTIONS(885), - [anon_sym_BANG_EQ] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(883), - [anon_sym_GT_EQ] = ACTIONS(885), - [anon_sym_LT_EQ] = ACTIONS(885), - [anon_sym_AT] = ACTIONS(885), - [anon_sym__] = ACTIONS(883), - [anon_sym_DOT] = ACTIONS(883), - [anon_sym_DOT_DOT] = ACTIONS(883), - [anon_sym_DOT_DOT_DOT] = ACTIONS(885), - [anon_sym_DOT_DOT_EQ] = ACTIONS(885), - [anon_sym_COMMA] = ACTIONS(885), - [anon_sym_COLON_COLON] = ACTIONS(885), - [anon_sym_DASH_GT] = ACTIONS(885), - [anon_sym_POUND] = ACTIONS(885), - [anon_sym_SQUOTE] = ACTIONS(883), - [anon_sym_as] = ACTIONS(883), - [anon_sym_async] = ACTIONS(883), - [anon_sym_await] = ACTIONS(883), - [anon_sym_break] = ACTIONS(883), - [anon_sym_const] = ACTIONS(883), - [anon_sym_continue] = ACTIONS(883), - [anon_sym_default] = ACTIONS(883), - [anon_sym_enum] = ACTIONS(883), - [anon_sym_fn] = ACTIONS(883), - [anon_sym_for] = ACTIONS(883), - [anon_sym_gen] = ACTIONS(883), - [anon_sym_if] = ACTIONS(883), - [anon_sym_impl] = ACTIONS(883), - [anon_sym_let] = ACTIONS(883), - [anon_sym_loop] = ACTIONS(883), - [anon_sym_match] = ACTIONS(883), - [anon_sym_mod] = ACTIONS(883), - [anon_sym_pub] = ACTIONS(883), - [anon_sym_return] = ACTIONS(883), - [anon_sym_static] = ACTIONS(883), - [anon_sym_struct] = ACTIONS(883), - [anon_sym_trait] = ACTIONS(883), - [anon_sym_type] = ACTIONS(883), - [anon_sym_union] = ACTIONS(883), - [anon_sym_unsafe] = ACTIONS(883), - [anon_sym_use] = ACTIONS(883), - [anon_sym_where] = ACTIONS(883), - [anon_sym_while] = ACTIONS(883), - [sym_mutable_specifier] = ACTIONS(883), - [sym_integer_literal] = ACTIONS(885), - [aux_sym_string_literal_token1] = ACTIONS(885), - [sym_char_literal] = ACTIONS(885), - [anon_sym_true] = ACTIONS(883), - [anon_sym_false] = ACTIONS(883), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(883), - [sym_super] = ACTIONS(883), - [sym_crate] = ACTIONS(883), - [sym_metavariable] = ACTIONS(885), - [sym__raw_string_literal_start] = ACTIONS(885), - [sym_float_literal] = ACTIONS(885), - }, - [STATE(155)] = { - [sym_line_comment] = STATE(155), - [sym_block_comment] = STATE(155), - [sym_identifier] = ACTIONS(883), - [anon_sym_SEMI] = ACTIONS(885), - [anon_sym_LPAREN] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(885), - [anon_sym_LBRACK] = ACTIONS(885), - [anon_sym_RBRACK] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(885), - [anon_sym_RBRACE] = ACTIONS(885), - [anon_sym_EQ_GT] = ACTIONS(885), - [anon_sym_COLON] = ACTIONS(935), - [anon_sym_DOLLAR] = ACTIONS(883), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_STAR] = ACTIONS(883), - [anon_sym_QMARK] = ACTIONS(885), - [anon_sym_u8] = ACTIONS(883), - [anon_sym_i8] = ACTIONS(883), - [anon_sym_u16] = ACTIONS(883), - [anon_sym_i16] = ACTIONS(883), - [anon_sym_u32] = ACTIONS(883), - [anon_sym_i32] = ACTIONS(883), - [anon_sym_u64] = ACTIONS(883), - [anon_sym_i64] = ACTIONS(883), - [anon_sym_u128] = ACTIONS(883), - [anon_sym_i128] = ACTIONS(883), - [anon_sym_isize] = ACTIONS(883), - [anon_sym_usize] = ACTIONS(883), - [anon_sym_f32] = ACTIONS(883), - [anon_sym_f64] = ACTIONS(883), - [anon_sym_bool] = ACTIONS(883), - [anon_sym_str] = ACTIONS(883), - [anon_sym_char] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(883), - [anon_sym_PERCENT] = ACTIONS(883), - [anon_sym_CARET] = ACTIONS(883), - [anon_sym_BANG] = ACTIONS(883), - [anon_sym_AMP] = ACTIONS(883), - [anon_sym_PIPE] = ACTIONS(883), - [anon_sym_AMP_AMP] = ACTIONS(885), - [anon_sym_PIPE_PIPE] = ACTIONS(885), - [anon_sym_LT_LT] = ACTIONS(883), - [anon_sym_GT_GT] = ACTIONS(883), - [anon_sym_PLUS_EQ] = ACTIONS(885), - [anon_sym_DASH_EQ] = ACTIONS(885), - [anon_sym_STAR_EQ] = ACTIONS(885), - [anon_sym_SLASH_EQ] = ACTIONS(885), - [anon_sym_PERCENT_EQ] = ACTIONS(885), - [anon_sym_CARET_EQ] = ACTIONS(885), - [anon_sym_AMP_EQ] = ACTIONS(885), - [anon_sym_PIPE_EQ] = ACTIONS(885), - [anon_sym_LT_LT_EQ] = ACTIONS(885), - [anon_sym_GT_GT_EQ] = ACTIONS(885), - [anon_sym_EQ] = ACTIONS(883), - [anon_sym_EQ_EQ] = ACTIONS(885), - [anon_sym_BANG_EQ] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(883), - [anon_sym_GT_EQ] = ACTIONS(885), - [anon_sym_LT_EQ] = ACTIONS(885), - [anon_sym_AT] = ACTIONS(885), - [anon_sym__] = ACTIONS(883), - [anon_sym_DOT] = ACTIONS(883), - [anon_sym_DOT_DOT] = ACTIONS(883), - [anon_sym_DOT_DOT_DOT] = ACTIONS(885), - [anon_sym_DOT_DOT_EQ] = ACTIONS(885), - [anon_sym_COMMA] = ACTIONS(885), - [anon_sym_COLON_COLON] = ACTIONS(885), - [anon_sym_DASH_GT] = ACTIONS(885), - [anon_sym_POUND] = ACTIONS(885), - [anon_sym_SQUOTE] = ACTIONS(883), - [anon_sym_as] = ACTIONS(883), - [anon_sym_async] = ACTIONS(883), - [anon_sym_await] = ACTIONS(883), - [anon_sym_break] = ACTIONS(883), - [anon_sym_const] = ACTIONS(883), - [anon_sym_continue] = ACTIONS(883), - [anon_sym_default] = ACTIONS(883), - [anon_sym_enum] = ACTIONS(883), - [anon_sym_fn] = ACTIONS(883), - [anon_sym_for] = ACTIONS(883), - [anon_sym_gen] = ACTIONS(883), - [anon_sym_if] = ACTIONS(883), - [anon_sym_impl] = ACTIONS(883), - [anon_sym_let] = ACTIONS(883), - [anon_sym_loop] = ACTIONS(883), - [anon_sym_match] = ACTIONS(883), - [anon_sym_mod] = ACTIONS(883), - [anon_sym_pub] = ACTIONS(883), - [anon_sym_return] = ACTIONS(883), - [anon_sym_static] = ACTIONS(883), - [anon_sym_struct] = ACTIONS(883), - [anon_sym_trait] = ACTIONS(883), - [anon_sym_type] = ACTIONS(883), - [anon_sym_union] = ACTIONS(883), - [anon_sym_unsafe] = ACTIONS(883), - [anon_sym_use] = ACTIONS(883), - [anon_sym_where] = ACTIONS(883), - [anon_sym_while] = ACTIONS(883), - [sym_mutable_specifier] = ACTIONS(883), - [sym_integer_literal] = ACTIONS(885), - [aux_sym_string_literal_token1] = ACTIONS(885), - [sym_char_literal] = ACTIONS(885), - [anon_sym_true] = ACTIONS(883), - [anon_sym_false] = ACTIONS(883), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(883), - [sym_super] = ACTIONS(883), - [sym_crate] = ACTIONS(883), - [sym_metavariable] = ACTIONS(885), - [sym__raw_string_literal_start] = ACTIONS(885), - [sym_float_literal] = ACTIONS(885), - }, - [STATE(156)] = { - [sym_line_comment] = STATE(156), - [sym_block_comment] = STATE(156), - [sym_identifier] = ACTIONS(937), - [anon_sym_SEMI] = ACTIONS(939), - [anon_sym_LPAREN] = ACTIONS(939), - [anon_sym_RPAREN] = ACTIONS(939), - [anon_sym_LBRACK] = ACTIONS(939), - [anon_sym_RBRACK] = ACTIONS(939), - [anon_sym_LBRACE] = ACTIONS(939), - [anon_sym_RBRACE] = ACTIONS(939), - [anon_sym_EQ_GT] = ACTIONS(939), - [anon_sym_COLON] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(937), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_STAR] = ACTIONS(937), - [anon_sym_QMARK] = ACTIONS(939), - [anon_sym_u8] = ACTIONS(937), - [anon_sym_i8] = ACTIONS(937), - [anon_sym_u16] = ACTIONS(937), - [anon_sym_i16] = ACTIONS(937), - [anon_sym_u32] = ACTIONS(937), - [anon_sym_i32] = ACTIONS(937), - [anon_sym_u64] = ACTIONS(937), - [anon_sym_i64] = ACTIONS(937), - [anon_sym_u128] = ACTIONS(937), - [anon_sym_i128] = ACTIONS(937), - [anon_sym_isize] = ACTIONS(937), - [anon_sym_usize] = ACTIONS(937), - [anon_sym_f32] = ACTIONS(937), - [anon_sym_f64] = ACTIONS(937), - [anon_sym_bool] = ACTIONS(937), - [anon_sym_str] = ACTIONS(937), - [anon_sym_char] = ACTIONS(937), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_SLASH] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(937), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(937), - [anon_sym_AMP] = ACTIONS(937), - [anon_sym_PIPE] = ACTIONS(937), - [anon_sym_AMP_AMP] = ACTIONS(939), - [anon_sym_PIPE_PIPE] = ACTIONS(939), - [anon_sym_LT_LT] = ACTIONS(937), - [anon_sym_GT_GT] = ACTIONS(937), - [anon_sym_PLUS_EQ] = ACTIONS(939), - [anon_sym_DASH_EQ] = ACTIONS(939), - [anon_sym_STAR_EQ] = ACTIONS(939), - [anon_sym_SLASH_EQ] = ACTIONS(939), - [anon_sym_PERCENT_EQ] = ACTIONS(939), - [anon_sym_CARET_EQ] = ACTIONS(939), - [anon_sym_AMP_EQ] = ACTIONS(939), - [anon_sym_PIPE_EQ] = ACTIONS(939), - [anon_sym_LT_LT_EQ] = ACTIONS(939), - [anon_sym_GT_GT_EQ] = ACTIONS(939), - [anon_sym_EQ] = ACTIONS(937), - [anon_sym_EQ_EQ] = ACTIONS(939), - [anon_sym_BANG_EQ] = ACTIONS(939), - [anon_sym_GT] = ACTIONS(937), - [anon_sym_LT] = ACTIONS(937), - [anon_sym_GT_EQ] = ACTIONS(939), - [anon_sym_LT_EQ] = ACTIONS(939), - [anon_sym_AT] = ACTIONS(939), - [anon_sym__] = ACTIONS(937), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_DOT_DOT] = ACTIONS(937), - [anon_sym_DOT_DOT_DOT] = ACTIONS(939), - [anon_sym_DOT_DOT_EQ] = ACTIONS(939), - [anon_sym_COMMA] = ACTIONS(939), - [anon_sym_COLON_COLON] = ACTIONS(939), - [anon_sym_DASH_GT] = ACTIONS(939), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_SQUOTE] = ACTIONS(937), - [anon_sym_as] = ACTIONS(937), - [anon_sym_async] = ACTIONS(937), - [anon_sym_await] = ACTIONS(937), - [anon_sym_break] = ACTIONS(937), - [anon_sym_const] = ACTIONS(937), - [anon_sym_continue] = ACTIONS(937), - [anon_sym_default] = ACTIONS(937), - [anon_sym_enum] = ACTIONS(937), - [anon_sym_fn] = ACTIONS(937), - [anon_sym_for] = ACTIONS(937), - [anon_sym_gen] = ACTIONS(937), - [anon_sym_if] = ACTIONS(937), - [anon_sym_impl] = ACTIONS(937), - [anon_sym_let] = ACTIONS(937), - [anon_sym_loop] = ACTIONS(937), - [anon_sym_match] = ACTIONS(937), - [anon_sym_mod] = ACTIONS(937), - [anon_sym_pub] = ACTIONS(937), - [anon_sym_return] = ACTIONS(937), - [anon_sym_static] = ACTIONS(937), - [anon_sym_struct] = ACTIONS(937), - [anon_sym_trait] = ACTIONS(937), - [anon_sym_type] = ACTIONS(937), - [anon_sym_union] = ACTIONS(937), - [anon_sym_unsafe] = ACTIONS(937), - [anon_sym_use] = ACTIONS(937), - [anon_sym_where] = ACTIONS(937), - [anon_sym_while] = ACTIONS(937), - [sym_mutable_specifier] = ACTIONS(937), - [sym_integer_literal] = ACTIONS(939), - [aux_sym_string_literal_token1] = ACTIONS(939), - [sym_char_literal] = ACTIONS(939), - [anon_sym_true] = ACTIONS(937), - [anon_sym_false] = ACTIONS(937), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(937), - [sym_super] = ACTIONS(937), - [sym_crate] = ACTIONS(937), - [sym_metavariable] = ACTIONS(939), - [sym__raw_string_literal_start] = ACTIONS(939), - [sym_float_literal] = ACTIONS(939), - }, - [STATE(157)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1673), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(157), - [sym_block_comment] = STATE(157), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(339), + [STATE(167)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(243), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1694), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1571), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(167), + [sym_block_comment] = STATE(167), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(941), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACK] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -35245,27 +37377,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COMMA] = ACTIONS(832), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(752), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -35280,527 +37413,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(158)] = { - [sym_line_comment] = STATE(158), - [sym_block_comment] = STATE(158), - [sym_identifier] = ACTIONS(943), - [anon_sym_SEMI] = ACTIONS(945), - [anon_sym_LPAREN] = ACTIONS(945), - [anon_sym_RPAREN] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(945), - [anon_sym_RBRACK] = ACTIONS(945), - [anon_sym_LBRACE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(945), - [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_COLON] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(943), - [anon_sym_PLUS] = ACTIONS(943), - [anon_sym_STAR] = ACTIONS(943), - [anon_sym_QMARK] = ACTIONS(945), - [anon_sym_u8] = ACTIONS(943), - [anon_sym_i8] = ACTIONS(943), - [anon_sym_u16] = ACTIONS(943), - [anon_sym_i16] = ACTIONS(943), - [anon_sym_u32] = ACTIONS(943), - [anon_sym_i32] = ACTIONS(943), - [anon_sym_u64] = ACTIONS(943), - [anon_sym_i64] = ACTIONS(943), - [anon_sym_u128] = ACTIONS(943), - [anon_sym_i128] = ACTIONS(943), - [anon_sym_isize] = ACTIONS(943), - [anon_sym_usize] = ACTIONS(943), - [anon_sym_f32] = ACTIONS(943), - [anon_sym_f64] = ACTIONS(943), - [anon_sym_bool] = ACTIONS(943), - [anon_sym_str] = ACTIONS(943), - [anon_sym_char] = ACTIONS(943), - [anon_sym_DASH] = ACTIONS(943), - [anon_sym_SLASH] = ACTIONS(943), - [anon_sym_PERCENT] = ACTIONS(943), - [anon_sym_CARET] = ACTIONS(943), - [anon_sym_BANG] = ACTIONS(943), - [anon_sym_AMP] = ACTIONS(943), - [anon_sym_PIPE] = ACTIONS(943), - [anon_sym_AMP_AMP] = ACTIONS(945), - [anon_sym_PIPE_PIPE] = ACTIONS(945), - [anon_sym_LT_LT] = ACTIONS(943), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_PLUS_EQ] = ACTIONS(945), - [anon_sym_DASH_EQ] = ACTIONS(945), - [anon_sym_STAR_EQ] = ACTIONS(945), - [anon_sym_SLASH_EQ] = ACTIONS(945), - [anon_sym_PERCENT_EQ] = ACTIONS(945), - [anon_sym_CARET_EQ] = ACTIONS(945), - [anon_sym_AMP_EQ] = ACTIONS(945), - [anon_sym_PIPE_EQ] = ACTIONS(945), - [anon_sym_LT_LT_EQ] = ACTIONS(945), - [anon_sym_GT_GT_EQ] = ACTIONS(945), - [anon_sym_EQ] = ACTIONS(943), - [anon_sym_EQ_EQ] = ACTIONS(945), - [anon_sym_BANG_EQ] = ACTIONS(945), - [anon_sym_GT] = ACTIONS(943), - [anon_sym_LT] = ACTIONS(943), - [anon_sym_GT_EQ] = ACTIONS(945), - [anon_sym_LT_EQ] = ACTIONS(945), - [anon_sym_AT] = ACTIONS(945), - [anon_sym__] = ACTIONS(943), - [anon_sym_DOT] = ACTIONS(943), - [anon_sym_DOT_DOT] = ACTIONS(943), - [anon_sym_DOT_DOT_DOT] = ACTIONS(945), - [anon_sym_DOT_DOT_EQ] = ACTIONS(945), - [anon_sym_COMMA] = ACTIONS(945), - [anon_sym_COLON_COLON] = ACTIONS(945), - [anon_sym_DASH_GT] = ACTIONS(945), - [anon_sym_POUND] = ACTIONS(945), - [anon_sym_SQUOTE] = ACTIONS(943), - [anon_sym_as] = ACTIONS(943), - [anon_sym_async] = ACTIONS(943), - [anon_sym_await] = ACTIONS(943), - [anon_sym_break] = ACTIONS(943), - [anon_sym_const] = ACTIONS(943), - [anon_sym_continue] = ACTIONS(943), - [anon_sym_default] = ACTIONS(943), - [anon_sym_enum] = ACTIONS(943), - [anon_sym_fn] = ACTIONS(943), - [anon_sym_for] = ACTIONS(943), - [anon_sym_gen] = ACTIONS(943), - [anon_sym_if] = ACTIONS(943), - [anon_sym_impl] = ACTIONS(943), - [anon_sym_let] = ACTIONS(943), - [anon_sym_loop] = ACTIONS(943), - [anon_sym_match] = ACTIONS(943), - [anon_sym_mod] = ACTIONS(943), - [anon_sym_pub] = ACTIONS(943), - [anon_sym_return] = ACTIONS(943), - [anon_sym_static] = ACTIONS(943), - [anon_sym_struct] = ACTIONS(943), - [anon_sym_trait] = ACTIONS(943), - [anon_sym_type] = ACTIONS(943), - [anon_sym_union] = ACTIONS(943), - [anon_sym_unsafe] = ACTIONS(943), - [anon_sym_use] = ACTIONS(943), - [anon_sym_where] = ACTIONS(943), - [anon_sym_while] = ACTIONS(943), - [sym_mutable_specifier] = ACTIONS(943), - [sym_integer_literal] = ACTIONS(945), - [aux_sym_string_literal_token1] = ACTIONS(945), - [sym_char_literal] = ACTIONS(945), - [anon_sym_true] = ACTIONS(943), - [anon_sym_false] = ACTIONS(943), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(943), - [sym_super] = ACTIONS(943), - [sym_crate] = ACTIONS(943), - [sym_metavariable] = ACTIONS(945), - [sym__raw_string_literal_start] = ACTIONS(945), - [sym_float_literal] = ACTIONS(945), - }, - [STATE(159)] = { - [sym_line_comment] = STATE(159), - [sym_block_comment] = STATE(159), - [sym_identifier] = ACTIONS(947), - [anon_sym_SEMI] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(949), - [anon_sym_RPAREN] = ACTIONS(949), - [anon_sym_LBRACK] = ACTIONS(949), - [anon_sym_RBRACK] = ACTIONS(949), - [anon_sym_LBRACE] = ACTIONS(949), - [anon_sym_RBRACE] = ACTIONS(949), - [anon_sym_EQ_GT] = ACTIONS(949), - [anon_sym_COLON] = ACTIONS(947), - [anon_sym_DOLLAR] = ACTIONS(947), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_STAR] = ACTIONS(947), - [anon_sym_QMARK] = ACTIONS(949), - [anon_sym_u8] = ACTIONS(947), - [anon_sym_i8] = ACTIONS(947), - [anon_sym_u16] = ACTIONS(947), - [anon_sym_i16] = ACTIONS(947), - [anon_sym_u32] = ACTIONS(947), - [anon_sym_i32] = ACTIONS(947), - [anon_sym_u64] = ACTIONS(947), - [anon_sym_i64] = ACTIONS(947), - [anon_sym_u128] = ACTIONS(947), - [anon_sym_i128] = ACTIONS(947), - [anon_sym_isize] = ACTIONS(947), - [anon_sym_usize] = ACTIONS(947), - [anon_sym_f32] = ACTIONS(947), - [anon_sym_f64] = ACTIONS(947), - [anon_sym_bool] = ACTIONS(947), - [anon_sym_str] = ACTIONS(947), - [anon_sym_char] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_SLASH] = ACTIONS(947), - [anon_sym_PERCENT] = ACTIONS(947), - [anon_sym_CARET] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_AMP] = ACTIONS(947), - [anon_sym_PIPE] = ACTIONS(947), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_PIPE_PIPE] = ACTIONS(949), - [anon_sym_LT_LT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(947), - [anon_sym_PLUS_EQ] = ACTIONS(949), - [anon_sym_DASH_EQ] = ACTIONS(949), - [anon_sym_STAR_EQ] = ACTIONS(949), - [anon_sym_SLASH_EQ] = ACTIONS(949), - [anon_sym_PERCENT_EQ] = ACTIONS(949), - [anon_sym_CARET_EQ] = ACTIONS(949), - [anon_sym_AMP_EQ] = ACTIONS(949), - [anon_sym_PIPE_EQ] = ACTIONS(949), - [anon_sym_LT_LT_EQ] = ACTIONS(949), - [anon_sym_GT_GT_EQ] = ACTIONS(949), - [anon_sym_EQ] = ACTIONS(947), - [anon_sym_EQ_EQ] = ACTIONS(949), - [anon_sym_BANG_EQ] = ACTIONS(949), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT_EQ] = ACTIONS(949), - [anon_sym_LT_EQ] = ACTIONS(949), - [anon_sym_AT] = ACTIONS(949), - [anon_sym__] = ACTIONS(947), - [anon_sym_DOT] = ACTIONS(947), - [anon_sym_DOT_DOT] = ACTIONS(947), - [anon_sym_DOT_DOT_DOT] = ACTIONS(949), - [anon_sym_DOT_DOT_EQ] = ACTIONS(949), - [anon_sym_COMMA] = ACTIONS(949), - [anon_sym_COLON_COLON] = ACTIONS(949), - [anon_sym_DASH_GT] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(949), - [anon_sym_SQUOTE] = ACTIONS(947), - [anon_sym_as] = ACTIONS(947), - [anon_sym_async] = ACTIONS(947), - [anon_sym_await] = ACTIONS(947), - [anon_sym_break] = ACTIONS(947), - [anon_sym_const] = ACTIONS(947), - [anon_sym_continue] = ACTIONS(947), - [anon_sym_default] = ACTIONS(947), - [anon_sym_enum] = ACTIONS(947), - [anon_sym_fn] = ACTIONS(947), - [anon_sym_for] = ACTIONS(947), - [anon_sym_gen] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_impl] = ACTIONS(947), - [anon_sym_let] = ACTIONS(947), - [anon_sym_loop] = ACTIONS(947), - [anon_sym_match] = ACTIONS(947), - [anon_sym_mod] = ACTIONS(947), - [anon_sym_pub] = ACTIONS(947), - [anon_sym_return] = ACTIONS(947), - [anon_sym_static] = ACTIONS(947), - [anon_sym_struct] = ACTIONS(947), - [anon_sym_trait] = ACTIONS(947), - [anon_sym_type] = ACTIONS(947), - [anon_sym_union] = ACTIONS(947), - [anon_sym_unsafe] = ACTIONS(947), - [anon_sym_use] = ACTIONS(947), - [anon_sym_where] = ACTIONS(947), - [anon_sym_while] = ACTIONS(947), - [sym_mutable_specifier] = ACTIONS(947), - [sym_integer_literal] = ACTIONS(949), - [aux_sym_string_literal_token1] = ACTIONS(949), - [sym_char_literal] = ACTIONS(949), - [anon_sym_true] = ACTIONS(947), - [anon_sym_false] = ACTIONS(947), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(947), - [sym_super] = ACTIONS(947), - [sym_crate] = ACTIONS(947), - [sym_metavariable] = ACTIONS(949), - [sym__raw_string_literal_start] = ACTIONS(949), - [sym_float_literal] = ACTIONS(949), - }, - [STATE(160)] = { - [sym_line_comment] = STATE(160), - [sym_block_comment] = STATE(160), - [sym_identifier] = ACTIONS(951), - [anon_sym_SEMI] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_RPAREN] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(953), - [anon_sym_RBRACK] = ACTIONS(953), - [anon_sym_LBRACE] = ACTIONS(953), - [anon_sym_RBRACE] = ACTIONS(953), - [anon_sym_EQ_GT] = ACTIONS(953), - [anon_sym_COLON] = ACTIONS(951), - [anon_sym_DOLLAR] = ACTIONS(951), - [anon_sym_PLUS] = ACTIONS(951), - [anon_sym_STAR] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(953), - [anon_sym_u8] = ACTIONS(951), - [anon_sym_i8] = ACTIONS(951), - [anon_sym_u16] = ACTIONS(951), - [anon_sym_i16] = ACTIONS(951), - [anon_sym_u32] = ACTIONS(951), - [anon_sym_i32] = ACTIONS(951), - [anon_sym_u64] = ACTIONS(951), - [anon_sym_i64] = ACTIONS(951), - [anon_sym_u128] = ACTIONS(951), - [anon_sym_i128] = ACTIONS(951), - [anon_sym_isize] = ACTIONS(951), - [anon_sym_usize] = ACTIONS(951), - [anon_sym_f32] = ACTIONS(951), - [anon_sym_f64] = ACTIONS(951), - [anon_sym_bool] = ACTIONS(951), - [anon_sym_str] = ACTIONS(951), - [anon_sym_char] = ACTIONS(951), - [anon_sym_DASH] = ACTIONS(951), - [anon_sym_SLASH] = ACTIONS(951), - [anon_sym_PERCENT] = ACTIONS(951), - [anon_sym_CARET] = ACTIONS(951), - [anon_sym_BANG] = ACTIONS(951), - [anon_sym_AMP] = ACTIONS(951), - [anon_sym_PIPE] = ACTIONS(951), - [anon_sym_AMP_AMP] = ACTIONS(953), - [anon_sym_PIPE_PIPE] = ACTIONS(953), - [anon_sym_LT_LT] = ACTIONS(951), - [anon_sym_GT_GT] = ACTIONS(951), - [anon_sym_PLUS_EQ] = ACTIONS(953), - [anon_sym_DASH_EQ] = ACTIONS(953), - [anon_sym_STAR_EQ] = ACTIONS(953), - [anon_sym_SLASH_EQ] = ACTIONS(953), - [anon_sym_PERCENT_EQ] = ACTIONS(953), - [anon_sym_CARET_EQ] = ACTIONS(953), - [anon_sym_AMP_EQ] = ACTIONS(953), - [anon_sym_PIPE_EQ] = ACTIONS(953), - [anon_sym_LT_LT_EQ] = ACTIONS(953), - [anon_sym_GT_GT_EQ] = ACTIONS(953), - [anon_sym_EQ] = ACTIONS(951), - [anon_sym_EQ_EQ] = ACTIONS(953), - [anon_sym_BANG_EQ] = ACTIONS(953), - [anon_sym_GT] = ACTIONS(951), - [anon_sym_LT] = ACTIONS(951), - [anon_sym_GT_EQ] = ACTIONS(953), - [anon_sym_LT_EQ] = ACTIONS(953), - [anon_sym_AT] = ACTIONS(953), - [anon_sym__] = ACTIONS(951), - [anon_sym_DOT] = ACTIONS(951), - [anon_sym_DOT_DOT] = ACTIONS(951), - [anon_sym_DOT_DOT_DOT] = ACTIONS(953), - [anon_sym_DOT_DOT_EQ] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(953), - [anon_sym_COLON_COLON] = ACTIONS(953), - [anon_sym_DASH_GT] = ACTIONS(953), - [anon_sym_POUND] = ACTIONS(953), - [anon_sym_SQUOTE] = ACTIONS(951), - [anon_sym_as] = ACTIONS(951), - [anon_sym_async] = ACTIONS(951), - [anon_sym_await] = ACTIONS(951), - [anon_sym_break] = ACTIONS(951), - [anon_sym_const] = ACTIONS(951), - [anon_sym_continue] = ACTIONS(951), - [anon_sym_default] = ACTIONS(951), - [anon_sym_enum] = ACTIONS(951), - [anon_sym_fn] = ACTIONS(951), - [anon_sym_for] = ACTIONS(951), - [anon_sym_gen] = ACTIONS(951), - [anon_sym_if] = ACTIONS(951), - [anon_sym_impl] = ACTIONS(951), - [anon_sym_let] = ACTIONS(951), - [anon_sym_loop] = ACTIONS(951), - [anon_sym_match] = ACTIONS(951), - [anon_sym_mod] = ACTIONS(951), - [anon_sym_pub] = ACTIONS(951), - [anon_sym_return] = ACTIONS(951), - [anon_sym_static] = ACTIONS(951), - [anon_sym_struct] = ACTIONS(951), - [anon_sym_trait] = ACTIONS(951), - [anon_sym_type] = ACTIONS(951), - [anon_sym_union] = ACTIONS(951), - [anon_sym_unsafe] = ACTIONS(951), - [anon_sym_use] = ACTIONS(951), - [anon_sym_where] = ACTIONS(951), - [anon_sym_while] = ACTIONS(951), - [sym_mutable_specifier] = ACTIONS(951), - [sym_integer_literal] = ACTIONS(953), - [aux_sym_string_literal_token1] = ACTIONS(953), - [sym_char_literal] = ACTIONS(953), - [anon_sym_true] = ACTIONS(951), - [anon_sym_false] = ACTIONS(951), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(951), - [sym_super] = ACTIONS(951), - [sym_crate] = ACTIONS(951), - [sym_metavariable] = ACTIONS(953), - [sym__raw_string_literal_start] = ACTIONS(953), - [sym_float_literal] = ACTIONS(953), - }, - [STATE(161)] = { - [sym_line_comment] = STATE(161), - [sym_block_comment] = STATE(161), - [sym_identifier] = ACTIONS(955), - [anon_sym_SEMI] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(957), - [anon_sym_RPAREN] = ACTIONS(957), - [anon_sym_LBRACK] = ACTIONS(957), - [anon_sym_RBRACK] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_RBRACE] = ACTIONS(957), - [anon_sym_EQ_GT] = ACTIONS(957), - [anon_sym_COLON] = ACTIONS(955), - [anon_sym_DOLLAR] = ACTIONS(955), - [anon_sym_PLUS] = ACTIONS(955), - [anon_sym_STAR] = ACTIONS(955), - [anon_sym_QMARK] = ACTIONS(957), - [anon_sym_u8] = ACTIONS(955), - [anon_sym_i8] = ACTIONS(955), - [anon_sym_u16] = ACTIONS(955), - [anon_sym_i16] = ACTIONS(955), - [anon_sym_u32] = ACTIONS(955), - [anon_sym_i32] = ACTIONS(955), - [anon_sym_u64] = ACTIONS(955), - [anon_sym_i64] = ACTIONS(955), - [anon_sym_u128] = ACTIONS(955), - [anon_sym_i128] = ACTIONS(955), - [anon_sym_isize] = ACTIONS(955), - [anon_sym_usize] = ACTIONS(955), - [anon_sym_f32] = ACTIONS(955), - [anon_sym_f64] = ACTIONS(955), - [anon_sym_bool] = ACTIONS(955), - [anon_sym_str] = ACTIONS(955), - [anon_sym_char] = ACTIONS(955), - [anon_sym_DASH] = ACTIONS(955), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), - [anon_sym_CARET] = ACTIONS(955), - [anon_sym_BANG] = ACTIONS(955), - [anon_sym_AMP] = ACTIONS(955), - [anon_sym_PIPE] = ACTIONS(955), - [anon_sym_AMP_AMP] = ACTIONS(957), - [anon_sym_PIPE_PIPE] = ACTIONS(957), - [anon_sym_LT_LT] = ACTIONS(955), - [anon_sym_GT_GT] = ACTIONS(955), - [anon_sym_PLUS_EQ] = ACTIONS(957), - [anon_sym_DASH_EQ] = ACTIONS(957), - [anon_sym_STAR_EQ] = ACTIONS(957), - [anon_sym_SLASH_EQ] = ACTIONS(957), - [anon_sym_PERCENT_EQ] = ACTIONS(957), - [anon_sym_CARET_EQ] = ACTIONS(957), - [anon_sym_AMP_EQ] = ACTIONS(957), - [anon_sym_PIPE_EQ] = ACTIONS(957), - [anon_sym_LT_LT_EQ] = ACTIONS(957), - [anon_sym_GT_GT_EQ] = ACTIONS(957), - [anon_sym_EQ] = ACTIONS(955), - [anon_sym_EQ_EQ] = ACTIONS(957), - [anon_sym_BANG_EQ] = ACTIONS(957), - [anon_sym_GT] = ACTIONS(955), - [anon_sym_LT] = ACTIONS(955), - [anon_sym_GT_EQ] = ACTIONS(957), - [anon_sym_LT_EQ] = ACTIONS(957), - [anon_sym_AT] = ACTIONS(957), - [anon_sym__] = ACTIONS(955), - [anon_sym_DOT] = ACTIONS(955), - [anon_sym_DOT_DOT] = ACTIONS(955), - [anon_sym_DOT_DOT_DOT] = ACTIONS(957), - [anon_sym_DOT_DOT_EQ] = ACTIONS(957), - [anon_sym_COMMA] = ACTIONS(957), - [anon_sym_COLON_COLON] = ACTIONS(957), - [anon_sym_DASH_GT] = ACTIONS(957), - [anon_sym_POUND] = ACTIONS(957), - [anon_sym_SQUOTE] = ACTIONS(955), - [anon_sym_as] = ACTIONS(955), - [anon_sym_async] = ACTIONS(955), - [anon_sym_await] = ACTIONS(955), - [anon_sym_break] = ACTIONS(955), - [anon_sym_const] = ACTIONS(955), - [anon_sym_continue] = ACTIONS(955), - [anon_sym_default] = ACTIONS(955), - [anon_sym_enum] = ACTIONS(955), - [anon_sym_fn] = ACTIONS(955), - [anon_sym_for] = ACTIONS(955), - [anon_sym_gen] = ACTIONS(955), - [anon_sym_if] = ACTIONS(955), - [anon_sym_impl] = ACTIONS(955), - [anon_sym_let] = ACTIONS(955), - [anon_sym_loop] = ACTIONS(955), - [anon_sym_match] = ACTIONS(955), - [anon_sym_mod] = ACTIONS(955), - [anon_sym_pub] = ACTIONS(955), - [anon_sym_return] = ACTIONS(955), - [anon_sym_static] = ACTIONS(955), - [anon_sym_struct] = ACTIONS(955), - [anon_sym_trait] = ACTIONS(955), - [anon_sym_type] = ACTIONS(955), - [anon_sym_union] = ACTIONS(955), - [anon_sym_unsafe] = ACTIONS(955), - [anon_sym_use] = ACTIONS(955), - [anon_sym_where] = ACTIONS(955), - [anon_sym_while] = ACTIONS(955), - [sym_mutable_specifier] = ACTIONS(955), - [sym_integer_literal] = ACTIONS(957), - [aux_sym_string_literal_token1] = ACTIONS(957), - [sym_char_literal] = ACTIONS(957), - [anon_sym_true] = ACTIONS(955), - [anon_sym_false] = ACTIONS(955), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(955), - [sym_super] = ACTIONS(955), - [sym_crate] = ACTIONS(955), - [sym_metavariable] = ACTIONS(957), - [sym__raw_string_literal_start] = ACTIONS(957), - [sym_float_literal] = ACTIONS(957), + [STATE(168)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(298), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1494), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(168), + [sym_block_comment] = STATE(168), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(824), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [sym_mutable_specifier] = ACTIONS(834), + [anon_sym_raw] = ACTIONS(836), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [STATE(162)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1673), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(162), - [sym_block_comment] = STATE(162), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(339), + [STATE(169)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(263), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1494), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(169), + [sym_block_comment] = STATE(169), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -35824,28 +37615,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(752), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [sym_mutable_specifier] = ACTIONS(838), + [anon_sym_raw] = ACTIONS(840), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -35860,179 +37653,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(163)] = { - [sym_line_comment] = STATE(163), - [sym_block_comment] = STATE(163), - [sym_identifier] = ACTIONS(961), - [anon_sym_SEMI] = ACTIONS(963), - [anon_sym_LPAREN] = ACTIONS(963), - [anon_sym_RPAREN] = ACTIONS(963), - [anon_sym_LBRACK] = ACTIONS(963), - [anon_sym_RBRACK] = ACTIONS(963), - [anon_sym_LBRACE] = ACTIONS(963), - [anon_sym_RBRACE] = ACTIONS(963), - [anon_sym_EQ_GT] = ACTIONS(963), - [anon_sym_COLON] = ACTIONS(961), - [anon_sym_DOLLAR] = ACTIONS(961), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_STAR] = ACTIONS(961), - [anon_sym_QMARK] = ACTIONS(963), - [anon_sym_u8] = ACTIONS(961), - [anon_sym_i8] = ACTIONS(961), - [anon_sym_u16] = ACTIONS(961), - [anon_sym_i16] = ACTIONS(961), - [anon_sym_u32] = ACTIONS(961), - [anon_sym_i32] = ACTIONS(961), - [anon_sym_u64] = ACTIONS(961), - [anon_sym_i64] = ACTIONS(961), - [anon_sym_u128] = ACTIONS(961), - [anon_sym_i128] = ACTIONS(961), - [anon_sym_isize] = ACTIONS(961), - [anon_sym_usize] = ACTIONS(961), - [anon_sym_f32] = ACTIONS(961), - [anon_sym_f64] = ACTIONS(961), - [anon_sym_bool] = ACTIONS(961), - [anon_sym_str] = ACTIONS(961), - [anon_sym_char] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_SLASH] = ACTIONS(961), - [anon_sym_PERCENT] = ACTIONS(961), - [anon_sym_CARET] = ACTIONS(961), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(961), - [anon_sym_AMP_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(963), - [anon_sym_LT_LT] = ACTIONS(961), - [anon_sym_GT_GT] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(963), - [anon_sym_DASH_EQ] = ACTIONS(963), - [anon_sym_STAR_EQ] = ACTIONS(963), - [anon_sym_SLASH_EQ] = ACTIONS(963), - [anon_sym_PERCENT_EQ] = ACTIONS(963), - [anon_sym_CARET_EQ] = ACTIONS(963), - [anon_sym_AMP_EQ] = ACTIONS(963), - [anon_sym_PIPE_EQ] = ACTIONS(963), - [anon_sym_LT_LT_EQ] = ACTIONS(963), - [anon_sym_GT_GT_EQ] = ACTIONS(963), - [anon_sym_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(963), - [anon_sym_BANG_EQ] = ACTIONS(963), - [anon_sym_GT] = ACTIONS(961), - [anon_sym_LT] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(963), - [anon_sym_LT_EQ] = ACTIONS(963), - [anon_sym_AT] = ACTIONS(963), - [anon_sym__] = ACTIONS(961), - [anon_sym_DOT] = ACTIONS(961), - [anon_sym_DOT_DOT] = ACTIONS(961), - [anon_sym_DOT_DOT_DOT] = ACTIONS(963), - [anon_sym_DOT_DOT_EQ] = ACTIONS(963), - [anon_sym_COMMA] = ACTIONS(963), - [anon_sym_COLON_COLON] = ACTIONS(963), - [anon_sym_DASH_GT] = ACTIONS(963), - [anon_sym_POUND] = ACTIONS(963), - [anon_sym_SQUOTE] = ACTIONS(961), - [anon_sym_as] = ACTIONS(961), - [anon_sym_async] = ACTIONS(961), - [anon_sym_await] = ACTIONS(961), - [anon_sym_break] = ACTIONS(961), - [anon_sym_const] = ACTIONS(961), - [anon_sym_continue] = ACTIONS(961), - [anon_sym_default] = ACTIONS(961), - [anon_sym_enum] = ACTIONS(961), - [anon_sym_fn] = ACTIONS(961), - [anon_sym_for] = ACTIONS(961), - [anon_sym_gen] = ACTIONS(961), - [anon_sym_if] = ACTIONS(961), - [anon_sym_impl] = ACTIONS(961), - [anon_sym_let] = ACTIONS(961), - [anon_sym_loop] = ACTIONS(961), - [anon_sym_match] = ACTIONS(961), - [anon_sym_mod] = ACTIONS(961), - [anon_sym_pub] = ACTIONS(961), - [anon_sym_return] = ACTIONS(961), - [anon_sym_static] = ACTIONS(961), - [anon_sym_struct] = ACTIONS(961), - [anon_sym_trait] = ACTIONS(961), - [anon_sym_type] = ACTIONS(961), - [anon_sym_union] = ACTIONS(961), - [anon_sym_unsafe] = ACTIONS(961), - [anon_sym_use] = ACTIONS(961), - [anon_sym_where] = ACTIONS(961), - [anon_sym_while] = ACTIONS(961), - [sym_mutable_specifier] = ACTIONS(961), - [sym_integer_literal] = ACTIONS(963), - [aux_sym_string_literal_token1] = ACTIONS(963), - [sym_char_literal] = ACTIONS(963), - [anon_sym_true] = ACTIONS(961), - [anon_sym_false] = ACTIONS(961), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(961), - [sym_super] = ACTIONS(961), - [sym_crate] = ACTIONS(961), - [sym_metavariable] = ACTIONS(963), - [sym__raw_string_literal_start] = ACTIONS(963), - [sym_float_literal] = ACTIONS(963), - }, - [STATE(164)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1673), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(164), - [sym_block_comment] = STATE(164), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(339), + [STATE(170)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(321), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1670), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1571), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(170), + [sym_block_comment] = STATE(170), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(965), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACK] = ACTIONS(842), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -36057,27 +37737,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COMMA] = ACTIONS(844), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(752), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -36092,63 +37773,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(165)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1673), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(165), - [sym_block_comment] = STATE(165), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(339), + [STATE(171)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(263), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1640), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1600), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(171), + [sym_block_comment] = STATE(171), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(967), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -36167,33 +37850,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(369), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym__] = ACTIONS(846), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(752), + [anon_sym_DASH_GT] = ACTIONS(848), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -36208,63 +37893,306 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(166)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1673), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(166), - [sym_block_comment] = STATE(166), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(339), + [STATE(172)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(303), + [sym_bracketed_type] = STATE(3726), + [sym_generic_function] = STATE(1934), + [sym_generic_type_with_turbofish] = STATE(3067), + [sym__expression_except_range] = STATE(1755), + [sym__expression] = STATE(2001), + [sym_expression_with_attribute] = STATE(1958), + [sym__expression_without_attribute] = STATE(1958), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(1673), + [sym_scoped_type_identifier_in_expression_position] = STATE(3301), + [sym_range_expression] = STATE(1801), + [sym_unary_expression] = STATE(1934), + [sym_try_expression] = STATE(1934), + [sym_reference_expression] = STATE(1934), + [sym_binary_expression] = STATE(1934), + [sym_assignment_expression] = STATE(1934), + [sym_compound_assignment_expr] = STATE(1934), + [sym_type_cast_expression] = STATE(1934), + [sym_return_expression] = STATE(1934), + [sym_yield_expression] = STATE(1934), + [sym_call_expression] = STATE(1934), + [sym_array_expression] = STATE(1934), + [sym_parenthesized_expression] = STATE(1934), + [sym_tuple_expression] = STATE(1934), + [sym_unit_expression] = STATE(1934), + [sym_struct_expression] = STATE(1934), + [sym_if_expression] = STATE(1934), + [sym_let_condition] = STATE(2879), + [sym_match_expression] = STATE(1934), + [sym_while_expression] = STATE(1934), + [sym_loop_expression] = STATE(1934), + [sym_for_expression] = STATE(1934), + [sym_const_block] = STATE(1934), + [sym_closure_expression] = STATE(1934), + [sym_closure_parameters] = STATE(154), + [sym_label] = STATE(3832), + [sym_break_expression] = STATE(1934), + [sym_continue_expression] = STATE(1934), + [sym_index_expression] = STATE(1934), + [sym_await_expression] = STATE(1934), + [sym_field_expression] = STATE(1707), + [sym_unsafe_block] = STATE(1934), + [sym_async_block] = STATE(1934), + [sym_gen_block] = STATE(1934), + [sym_try_block] = STATE(1934), + [sym_block] = STATE(1934), + [sym__literal] = STATE(1934), + [sym_string_literal] = STATE(1949), + [sym_raw_string_literal] = STATE(1949), + [sym_boolean_literal] = STATE(1949), + [sym_line_comment] = STATE(172), + [sym_block_comment] = STATE(172), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(740), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(744), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(427), + [anon_sym_break] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_default] = ACTIONS(435), + [anon_sym_for] = ACTIONS(437), + [anon_sym_gen] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_let] = ACTIONS(746), + [anon_sym_loop] = ACTIONS(443), + [anon_sym_match] = ACTIONS(445), + [anon_sym_return] = ACTIONS(447), + [anon_sym_static] = ACTIONS(449), + [anon_sym_union] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(451), + [anon_sym_while] = ACTIONS(453), + [anon_sym_yield] = ACTIONS(455), + [anon_sym_move] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [aux_sym_string_literal_token1] = ACTIONS(463), + [sym_char_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(467), + [sym_super] = ACTIONS(469), + [sym_crate] = ACTIONS(469), + [sym_metavariable] = ACTIONS(471), + [sym__raw_string_literal_start] = ACTIONS(473), + [sym_float_literal] = ACTIONS(461), + }, + [STATE(173)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(298), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1718), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1487), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(173), + [sym_block_comment] = STATE(173), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(481), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(782), + [anon_sym_DOT_DOT] = ACTIONS(824), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_DASH_GT] = ACTIONS(784), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(174)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1720), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(174), + [sym_block_comment] = STATE(174), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(850), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(969), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -36289,27 +38217,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COMMA] = ACTIONS(852), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(752), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -36324,63 +38253,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(167)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1673), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(167), - [sym_block_comment] = STATE(167), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(339), + [STATE(175)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1860), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(175), + [sym_block_comment] = STATE(175), + [aux_sym_attributes_repeat1] = STATE(1090), + [aux_sym_tuple_expression_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(971), + [anon_sym_RPAREN] = ACTIONS(854), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -36406,26 +38339,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(752), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -36440,63 +38373,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(168)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1673), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(168), - [sym_block_comment] = STATE(168), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(339), + [STATE(176)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1770), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(176), + [sym_block_comment] = STATE(176), + [aux_sym_attributes_repeat1] = STATE(1090), + [aux_sym_tuple_expression_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(856), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(973), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -36522,26 +38459,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(752), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -36556,527 +38493,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(169)] = { - [sym_line_comment] = STATE(169), - [sym_block_comment] = STATE(169), - [sym_identifier] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(977), - [anon_sym_RPAREN] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(977), - [anon_sym_RBRACK] = ACTIONS(977), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(977), - [anon_sym_EQ_GT] = ACTIONS(977), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(977), - [anon_sym_u8] = ACTIONS(975), - [anon_sym_i8] = ACTIONS(975), - [anon_sym_u16] = ACTIONS(975), - [anon_sym_i16] = ACTIONS(975), - [anon_sym_u32] = ACTIONS(975), - [anon_sym_i32] = ACTIONS(975), - [anon_sym_u64] = ACTIONS(975), - [anon_sym_i64] = ACTIONS(975), - [anon_sym_u128] = ACTIONS(975), - [anon_sym_i128] = ACTIONS(975), - [anon_sym_isize] = ACTIONS(975), - [anon_sym_usize] = ACTIONS(975), - [anon_sym_f32] = ACTIONS(975), - [anon_sym_f64] = ACTIONS(975), - [anon_sym_bool] = ACTIONS(975), - [anon_sym_str] = ACTIONS(975), - [anon_sym_char] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_CARET] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_AMP_AMP] = ACTIONS(977), - [anon_sym_PIPE_PIPE] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_GT_GT] = ACTIONS(975), - [anon_sym_PLUS_EQ] = ACTIONS(977), - [anon_sym_DASH_EQ] = ACTIONS(977), - [anon_sym_STAR_EQ] = ACTIONS(977), - [anon_sym_SLASH_EQ] = ACTIONS(977), - [anon_sym_PERCENT_EQ] = ACTIONS(977), - [anon_sym_CARET_EQ] = ACTIONS(977), - [anon_sym_AMP_EQ] = ACTIONS(977), - [anon_sym_PIPE_EQ] = ACTIONS(977), - [anon_sym_LT_LT_EQ] = ACTIONS(977), - [anon_sym_GT_GT_EQ] = ACTIONS(977), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_EQ_EQ] = ACTIONS(977), - [anon_sym_BANG_EQ] = ACTIONS(977), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_AT] = ACTIONS(977), - [anon_sym__] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_DOT_DOT] = ACTIONS(975), - [anon_sym_DOT_DOT_DOT] = ACTIONS(977), - [anon_sym_DOT_DOT_EQ] = ACTIONS(977), - [anon_sym_COMMA] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(977), - [anon_sym_DASH_GT] = ACTIONS(977), - [anon_sym_POUND] = ACTIONS(977), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_as] = ACTIONS(975), - [anon_sym_async] = ACTIONS(975), - [anon_sym_await] = ACTIONS(975), - [anon_sym_break] = ACTIONS(975), - [anon_sym_const] = ACTIONS(975), - [anon_sym_continue] = ACTIONS(975), - [anon_sym_default] = ACTIONS(975), - [anon_sym_enum] = ACTIONS(975), - [anon_sym_fn] = ACTIONS(975), - [anon_sym_for] = ACTIONS(975), - [anon_sym_gen] = ACTIONS(975), - [anon_sym_if] = ACTIONS(975), - [anon_sym_impl] = ACTIONS(975), - [anon_sym_let] = ACTIONS(975), - [anon_sym_loop] = ACTIONS(975), - [anon_sym_match] = ACTIONS(975), - [anon_sym_mod] = ACTIONS(975), - [anon_sym_pub] = ACTIONS(975), - [anon_sym_return] = ACTIONS(975), - [anon_sym_static] = ACTIONS(975), - [anon_sym_struct] = ACTIONS(975), - [anon_sym_trait] = ACTIONS(975), - [anon_sym_type] = ACTIONS(975), - [anon_sym_union] = ACTIONS(975), - [anon_sym_unsafe] = ACTIONS(975), - [anon_sym_use] = ACTIONS(975), - [anon_sym_where] = ACTIONS(975), - [anon_sym_while] = ACTIONS(975), - [sym_mutable_specifier] = ACTIONS(975), - [sym_integer_literal] = ACTIONS(977), - [aux_sym_string_literal_token1] = ACTIONS(977), - [sym_char_literal] = ACTIONS(977), - [anon_sym_true] = ACTIONS(975), - [anon_sym_false] = ACTIONS(975), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(975), - [sym_super] = ACTIONS(975), - [sym_crate] = ACTIONS(975), - [sym_metavariable] = ACTIONS(977), - [sym__raw_string_literal_start] = ACTIONS(977), - [sym_float_literal] = ACTIONS(977), - }, - [STATE(170)] = { - [sym_line_comment] = STATE(170), - [sym_block_comment] = STATE(170), - [aux_sym__non_special_token_repeat1] = STATE(170), - [sym_identifier] = ACTIONS(891), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(896), - [anon_sym_RPAREN] = ACTIONS(896), - [anon_sym_LBRACK] = ACTIONS(896), - [anon_sym_RBRACK] = ACTIONS(896), - [anon_sym_LBRACE] = ACTIONS(896), - [anon_sym_RBRACE] = ACTIONS(896), - [anon_sym_EQ_GT] = ACTIONS(979), - [anon_sym_COLON] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(896), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_STAR] = ACTIONS(982), - [anon_sym_QMARK] = ACTIONS(979), - [anon_sym_u8] = ACTIONS(891), - [anon_sym_i8] = ACTIONS(891), - [anon_sym_u16] = ACTIONS(891), - [anon_sym_i16] = ACTIONS(891), - [anon_sym_u32] = ACTIONS(891), - [anon_sym_i32] = ACTIONS(891), - [anon_sym_u64] = ACTIONS(891), - [anon_sym_i64] = ACTIONS(891), - [anon_sym_u128] = ACTIONS(891), - [anon_sym_i128] = ACTIONS(891), - [anon_sym_isize] = ACTIONS(891), - [anon_sym_usize] = ACTIONS(891), - [anon_sym_f32] = ACTIONS(891), - [anon_sym_f64] = ACTIONS(891), - [anon_sym_bool] = ACTIONS(891), - [anon_sym_str] = ACTIONS(891), - [anon_sym_char] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_SLASH] = ACTIONS(982), - [anon_sym_PERCENT] = ACTIONS(982), - [anon_sym_CARET] = ACTIONS(982), - [anon_sym_BANG] = ACTIONS(982), - [anon_sym_AMP] = ACTIONS(982), - [anon_sym_PIPE] = ACTIONS(982), - [anon_sym_AMP_AMP] = ACTIONS(979), - [anon_sym_PIPE_PIPE] = ACTIONS(979), - [anon_sym_LT_LT] = ACTIONS(982), - [anon_sym_GT_GT] = ACTIONS(982), - [anon_sym_PLUS_EQ] = ACTIONS(979), - [anon_sym_DASH_EQ] = ACTIONS(979), - [anon_sym_STAR_EQ] = ACTIONS(979), - [anon_sym_SLASH_EQ] = ACTIONS(979), - [anon_sym_PERCENT_EQ] = ACTIONS(979), - [anon_sym_CARET_EQ] = ACTIONS(979), - [anon_sym_AMP_EQ] = ACTIONS(979), - [anon_sym_PIPE_EQ] = ACTIONS(979), - [anon_sym_LT_LT_EQ] = ACTIONS(979), - [anon_sym_GT_GT_EQ] = ACTIONS(979), - [anon_sym_EQ] = ACTIONS(982), - [anon_sym_EQ_EQ] = ACTIONS(979), - [anon_sym_BANG_EQ] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(982), - [anon_sym_GT_EQ] = ACTIONS(979), - [anon_sym_LT_EQ] = ACTIONS(979), - [anon_sym_AT] = ACTIONS(979), - [anon_sym__] = ACTIONS(982), - [anon_sym_DOT] = ACTIONS(982), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(979), - [anon_sym_DOT_DOT_EQ] = ACTIONS(979), - [anon_sym_COMMA] = ACTIONS(979), - [anon_sym_COLON_COLON] = ACTIONS(979), - [anon_sym_DASH_GT] = ACTIONS(979), - [anon_sym_POUND] = ACTIONS(979), - [anon_sym_SQUOTE] = ACTIONS(891), - [anon_sym_as] = ACTIONS(891), - [anon_sym_async] = ACTIONS(891), - [anon_sym_await] = ACTIONS(891), - [anon_sym_break] = ACTIONS(891), - [anon_sym_const] = ACTIONS(891), - [anon_sym_continue] = ACTIONS(891), - [anon_sym_default] = ACTIONS(891), - [anon_sym_enum] = ACTIONS(891), - [anon_sym_fn] = ACTIONS(891), - [anon_sym_for] = ACTIONS(891), - [anon_sym_gen] = ACTIONS(891), - [anon_sym_if] = ACTIONS(891), - [anon_sym_impl] = ACTIONS(891), - [anon_sym_let] = ACTIONS(891), - [anon_sym_loop] = ACTIONS(891), - [anon_sym_match] = ACTIONS(891), - [anon_sym_mod] = ACTIONS(891), - [anon_sym_pub] = ACTIONS(891), - [anon_sym_return] = ACTIONS(891), - [anon_sym_static] = ACTIONS(891), - [anon_sym_struct] = ACTIONS(891), - [anon_sym_trait] = ACTIONS(891), - [anon_sym_type] = ACTIONS(891), - [anon_sym_union] = ACTIONS(891), - [anon_sym_unsafe] = ACTIONS(891), - [anon_sym_use] = ACTIONS(891), - [anon_sym_where] = ACTIONS(891), - [anon_sym_while] = ACTIONS(891), - [sym_mutable_specifier] = ACTIONS(891), - [sym_integer_literal] = ACTIONS(896), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(896), - [anon_sym_true] = ACTIONS(891), - [anon_sym_false] = ACTIONS(891), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(891), - [sym_super] = ACTIONS(891), - [sym_crate] = ACTIONS(891), - [sym__raw_string_literal_start] = ACTIONS(896), - [sym_float_literal] = ACTIONS(896), - }, - [STATE(171)] = { - [sym_line_comment] = STATE(171), - [sym_block_comment] = STATE(171), - [sym_identifier] = ACTIONS(985), - [anon_sym_SEMI] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_RPAREN] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(987), - [anon_sym_RBRACK] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_RBRACE] = ACTIONS(987), - [anon_sym_EQ_GT] = ACTIONS(987), - [anon_sym_COLON] = ACTIONS(985), - [anon_sym_DOLLAR] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_QMARK] = ACTIONS(987), - [anon_sym_u8] = ACTIONS(985), - [anon_sym_i8] = ACTIONS(985), - [anon_sym_u16] = ACTIONS(985), - [anon_sym_i16] = ACTIONS(985), - [anon_sym_u32] = ACTIONS(985), - [anon_sym_i32] = ACTIONS(985), - [anon_sym_u64] = ACTIONS(985), - [anon_sym_i64] = ACTIONS(985), - [anon_sym_u128] = ACTIONS(985), - [anon_sym_i128] = ACTIONS(985), - [anon_sym_isize] = ACTIONS(985), - [anon_sym_usize] = ACTIONS(985), - [anon_sym_f32] = ACTIONS(985), - [anon_sym_f64] = ACTIONS(985), - [anon_sym_bool] = ACTIONS(985), - [anon_sym_str] = ACTIONS(985), - [anon_sym_char] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(985), - [anon_sym_SLASH] = ACTIONS(985), - [anon_sym_PERCENT] = ACTIONS(985), - [anon_sym_CARET] = ACTIONS(985), - [anon_sym_BANG] = ACTIONS(985), - [anon_sym_AMP] = ACTIONS(985), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_AMP_AMP] = ACTIONS(987), - [anon_sym_PIPE_PIPE] = ACTIONS(987), - [anon_sym_LT_LT] = ACTIONS(985), - [anon_sym_GT_GT] = ACTIONS(985), - [anon_sym_PLUS_EQ] = ACTIONS(987), - [anon_sym_DASH_EQ] = ACTIONS(987), - [anon_sym_STAR_EQ] = ACTIONS(987), - [anon_sym_SLASH_EQ] = ACTIONS(987), - [anon_sym_PERCENT_EQ] = ACTIONS(987), - [anon_sym_CARET_EQ] = ACTIONS(987), - [anon_sym_AMP_EQ] = ACTIONS(987), - [anon_sym_PIPE_EQ] = ACTIONS(987), - [anon_sym_LT_LT_EQ] = ACTIONS(987), - [anon_sym_GT_GT_EQ] = ACTIONS(987), - [anon_sym_EQ] = ACTIONS(985), - [anon_sym_EQ_EQ] = ACTIONS(987), - [anon_sym_BANG_EQ] = ACTIONS(987), - [anon_sym_GT] = ACTIONS(985), - [anon_sym_LT] = ACTIONS(985), - [anon_sym_GT_EQ] = ACTIONS(987), - [anon_sym_LT_EQ] = ACTIONS(987), - [anon_sym_AT] = ACTIONS(987), - [anon_sym__] = ACTIONS(985), - [anon_sym_DOT] = ACTIONS(985), - [anon_sym_DOT_DOT] = ACTIONS(985), - [anon_sym_DOT_DOT_DOT] = ACTIONS(987), - [anon_sym_DOT_DOT_EQ] = ACTIONS(987), - [anon_sym_COMMA] = ACTIONS(987), - [anon_sym_COLON_COLON] = ACTIONS(987), - [anon_sym_DASH_GT] = ACTIONS(987), - [anon_sym_POUND] = ACTIONS(987), - [anon_sym_SQUOTE] = ACTIONS(985), - [anon_sym_as] = ACTIONS(985), - [anon_sym_async] = ACTIONS(985), - [anon_sym_await] = ACTIONS(985), - [anon_sym_break] = ACTIONS(985), - [anon_sym_const] = ACTIONS(985), - [anon_sym_continue] = ACTIONS(985), - [anon_sym_default] = ACTIONS(985), - [anon_sym_enum] = ACTIONS(985), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_for] = ACTIONS(985), - [anon_sym_gen] = ACTIONS(985), - [anon_sym_if] = ACTIONS(985), - [anon_sym_impl] = ACTIONS(985), - [anon_sym_let] = ACTIONS(985), - [anon_sym_loop] = ACTIONS(985), - [anon_sym_match] = ACTIONS(985), - [anon_sym_mod] = ACTIONS(985), - [anon_sym_pub] = ACTIONS(985), - [anon_sym_return] = ACTIONS(985), - [anon_sym_static] = ACTIONS(985), - [anon_sym_struct] = ACTIONS(985), - [anon_sym_trait] = ACTIONS(985), - [anon_sym_type] = ACTIONS(985), - [anon_sym_union] = ACTIONS(985), - [anon_sym_unsafe] = ACTIONS(985), - [anon_sym_use] = ACTIONS(985), - [anon_sym_where] = ACTIONS(985), - [anon_sym_while] = ACTIONS(985), - [sym_mutable_specifier] = ACTIONS(985), - [sym_integer_literal] = ACTIONS(987), - [aux_sym_string_literal_token1] = ACTIONS(987), - [sym_char_literal] = ACTIONS(987), - [anon_sym_true] = ACTIONS(985), - [anon_sym_false] = ACTIONS(985), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(985), - [sym_super] = ACTIONS(985), - [sym_crate] = ACTIONS(985), - [sym_metavariable] = ACTIONS(987), - [sym__raw_string_literal_start] = ACTIONS(987), - [sym_float_literal] = ACTIONS(987), - }, - [STATE(172)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1957), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_let_condition] = STATE(3361), - [sym__let_chain] = STATE(3362), - [sym__condition] = STATE(3526), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), - [sym_line_comment] = STATE(172), - [sym_block_comment] = STATE(172), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(993), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_let] = ACTIONS(995), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(173)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1673), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(173), - [sym_block_comment] = STATE(173), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(339), + [STATE(177)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1833), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(177), + [sym_block_comment] = STATE(177), + [aux_sym_attributes_repeat1] = STATE(1090), + [aux_sym_tuple_expression_repeat1] = STATE(159), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(997), + [anon_sym_RPAREN] = ACTIONS(858), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -37102,26 +38579,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(752), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -37136,411 +38613,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(174)] = { - [sym_line_comment] = STATE(174), - [sym_block_comment] = STATE(174), - [sym_identifier] = ACTIONS(999), - [anon_sym_SEMI] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1001), - [anon_sym_RPAREN] = ACTIONS(1001), - [anon_sym_LBRACK] = ACTIONS(1001), - [anon_sym_RBRACK] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(1001), - [anon_sym_RBRACE] = ACTIONS(1001), - [anon_sym_EQ_GT] = ACTIONS(1001), - [anon_sym_COLON] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1001), - [anon_sym_u8] = ACTIONS(999), - [anon_sym_i8] = ACTIONS(999), - [anon_sym_u16] = ACTIONS(999), - [anon_sym_i16] = ACTIONS(999), - [anon_sym_u32] = ACTIONS(999), - [anon_sym_i32] = ACTIONS(999), - [anon_sym_u64] = ACTIONS(999), - [anon_sym_i64] = ACTIONS(999), - [anon_sym_u128] = ACTIONS(999), - [anon_sym_i128] = ACTIONS(999), - [anon_sym_isize] = ACTIONS(999), - [anon_sym_usize] = ACTIONS(999), - [anon_sym_f32] = ACTIONS(999), - [anon_sym_f64] = ACTIONS(999), - [anon_sym_bool] = ACTIONS(999), - [anon_sym_str] = ACTIONS(999), - [anon_sym_char] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(999), - [anon_sym_PERCENT] = ACTIONS(999), - [anon_sym_CARET] = ACTIONS(999), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(999), - [anon_sym_AMP_AMP] = ACTIONS(1001), - [anon_sym_PIPE_PIPE] = ACTIONS(1001), - [anon_sym_LT_LT] = ACTIONS(999), - [anon_sym_GT_GT] = ACTIONS(999), - [anon_sym_PLUS_EQ] = ACTIONS(1001), - [anon_sym_DASH_EQ] = ACTIONS(1001), - [anon_sym_STAR_EQ] = ACTIONS(1001), - [anon_sym_SLASH_EQ] = ACTIONS(1001), - [anon_sym_PERCENT_EQ] = ACTIONS(1001), - [anon_sym_CARET_EQ] = ACTIONS(1001), - [anon_sym_AMP_EQ] = ACTIONS(1001), - [anon_sym_PIPE_EQ] = ACTIONS(1001), - [anon_sym_LT_LT_EQ] = ACTIONS(1001), - [anon_sym_GT_GT_EQ] = ACTIONS(1001), - [anon_sym_EQ] = ACTIONS(999), - [anon_sym_EQ_EQ] = ACTIONS(1001), - [anon_sym_BANG_EQ] = ACTIONS(1001), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_LT] = ACTIONS(999), - [anon_sym_GT_EQ] = ACTIONS(1001), - [anon_sym_LT_EQ] = ACTIONS(1001), - [anon_sym_AT] = ACTIONS(1001), - [anon_sym__] = ACTIONS(999), - [anon_sym_DOT] = ACTIONS(999), - [anon_sym_DOT_DOT] = ACTIONS(999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1001), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1001), - [anon_sym_COMMA] = ACTIONS(1001), - [anon_sym_COLON_COLON] = ACTIONS(1001), - [anon_sym_DASH_GT] = ACTIONS(1001), - [anon_sym_POUND] = ACTIONS(1001), - [anon_sym_SQUOTE] = ACTIONS(999), - [anon_sym_as] = ACTIONS(999), - [anon_sym_async] = ACTIONS(999), - [anon_sym_await] = ACTIONS(999), - [anon_sym_break] = ACTIONS(999), - [anon_sym_const] = ACTIONS(999), - [anon_sym_continue] = ACTIONS(999), - [anon_sym_default] = ACTIONS(999), - [anon_sym_enum] = ACTIONS(999), - [anon_sym_fn] = ACTIONS(999), - [anon_sym_for] = ACTIONS(999), - [anon_sym_gen] = ACTIONS(999), - [anon_sym_if] = ACTIONS(999), - [anon_sym_impl] = ACTIONS(999), - [anon_sym_let] = ACTIONS(999), - [anon_sym_loop] = ACTIONS(999), - [anon_sym_match] = ACTIONS(999), - [anon_sym_mod] = ACTIONS(999), - [anon_sym_pub] = ACTIONS(999), - [anon_sym_return] = ACTIONS(999), - [anon_sym_static] = ACTIONS(999), - [anon_sym_struct] = ACTIONS(999), - [anon_sym_trait] = ACTIONS(999), - [anon_sym_type] = ACTIONS(999), - [anon_sym_union] = ACTIONS(999), - [anon_sym_unsafe] = ACTIONS(999), - [anon_sym_use] = ACTIONS(999), - [anon_sym_where] = ACTIONS(999), - [anon_sym_while] = ACTIONS(999), - [sym_mutable_specifier] = ACTIONS(999), - [sym_integer_literal] = ACTIONS(1001), - [aux_sym_string_literal_token1] = ACTIONS(1001), - [sym_char_literal] = ACTIONS(1001), - [anon_sym_true] = ACTIONS(999), - [anon_sym_false] = ACTIONS(999), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(999), - [sym_super] = ACTIONS(999), - [sym_crate] = ACTIONS(999), - [sym_metavariable] = ACTIONS(1001), - [sym__raw_string_literal_start] = ACTIONS(1001), - [sym_float_literal] = ACTIONS(1001), - }, - [STATE(175)] = { - [sym_line_comment] = STATE(175), - [sym_block_comment] = STATE(175), - [sym_identifier] = ACTIONS(1003), - [anon_sym_SEMI] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1005), - [anon_sym_RPAREN] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1005), - [anon_sym_RBRACK] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1005), - [anon_sym_RBRACE] = ACTIONS(1005), - [anon_sym_EQ_GT] = ACTIONS(1005), - [anon_sym_COLON] = ACTIONS(1003), - [anon_sym_DOLLAR] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_STAR] = ACTIONS(1003), - [anon_sym_QMARK] = ACTIONS(1005), - [anon_sym_u8] = ACTIONS(1003), - [anon_sym_i8] = ACTIONS(1003), - [anon_sym_u16] = ACTIONS(1003), - [anon_sym_i16] = ACTIONS(1003), - [anon_sym_u32] = ACTIONS(1003), - [anon_sym_i32] = ACTIONS(1003), - [anon_sym_u64] = ACTIONS(1003), - [anon_sym_i64] = ACTIONS(1003), - [anon_sym_u128] = ACTIONS(1003), - [anon_sym_i128] = ACTIONS(1003), - [anon_sym_isize] = ACTIONS(1003), - [anon_sym_usize] = ACTIONS(1003), - [anon_sym_f32] = ACTIONS(1003), - [anon_sym_f64] = ACTIONS(1003), - [anon_sym_bool] = ACTIONS(1003), - [anon_sym_str] = ACTIONS(1003), - [anon_sym_char] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_SLASH] = ACTIONS(1003), - [anon_sym_PERCENT] = ACTIONS(1003), - [anon_sym_CARET] = ACTIONS(1003), - [anon_sym_BANG] = ACTIONS(1003), - [anon_sym_AMP] = ACTIONS(1003), - [anon_sym_PIPE] = ACTIONS(1003), - [anon_sym_AMP_AMP] = ACTIONS(1005), - [anon_sym_PIPE_PIPE] = ACTIONS(1005), - [anon_sym_LT_LT] = ACTIONS(1003), - [anon_sym_GT_GT] = ACTIONS(1003), - [anon_sym_PLUS_EQ] = ACTIONS(1005), - [anon_sym_DASH_EQ] = ACTIONS(1005), - [anon_sym_STAR_EQ] = ACTIONS(1005), - [anon_sym_SLASH_EQ] = ACTIONS(1005), - [anon_sym_PERCENT_EQ] = ACTIONS(1005), - [anon_sym_CARET_EQ] = ACTIONS(1005), - [anon_sym_AMP_EQ] = ACTIONS(1005), - [anon_sym_PIPE_EQ] = ACTIONS(1005), - [anon_sym_LT_LT_EQ] = ACTIONS(1005), - [anon_sym_GT_GT_EQ] = ACTIONS(1005), - [anon_sym_EQ] = ACTIONS(1003), - [anon_sym_EQ_EQ] = ACTIONS(1005), - [anon_sym_BANG_EQ] = ACTIONS(1005), - [anon_sym_GT] = ACTIONS(1003), - [anon_sym_LT] = ACTIONS(1003), - [anon_sym_GT_EQ] = ACTIONS(1005), - [anon_sym_LT_EQ] = ACTIONS(1005), - [anon_sym_AT] = ACTIONS(1005), - [anon_sym__] = ACTIONS(1003), - [anon_sym_DOT] = ACTIONS(1003), - [anon_sym_DOT_DOT] = ACTIONS(1003), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1005), - [anon_sym_COMMA] = ACTIONS(1005), - [anon_sym_COLON_COLON] = ACTIONS(1005), - [anon_sym_DASH_GT] = ACTIONS(1005), - [anon_sym_POUND] = ACTIONS(1005), - [anon_sym_SQUOTE] = ACTIONS(1003), - [anon_sym_as] = ACTIONS(1003), - [anon_sym_async] = ACTIONS(1003), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_break] = ACTIONS(1003), - [anon_sym_const] = ACTIONS(1003), - [anon_sym_continue] = ACTIONS(1003), - [anon_sym_default] = ACTIONS(1003), - [anon_sym_enum] = ACTIONS(1003), - [anon_sym_fn] = ACTIONS(1003), - [anon_sym_for] = ACTIONS(1003), - [anon_sym_gen] = ACTIONS(1003), - [anon_sym_if] = ACTIONS(1003), - [anon_sym_impl] = ACTIONS(1003), - [anon_sym_let] = ACTIONS(1003), - [anon_sym_loop] = ACTIONS(1003), - [anon_sym_match] = ACTIONS(1003), - [anon_sym_mod] = ACTIONS(1003), - [anon_sym_pub] = ACTIONS(1003), - [anon_sym_return] = ACTIONS(1003), - [anon_sym_static] = ACTIONS(1003), - [anon_sym_struct] = ACTIONS(1003), - [anon_sym_trait] = ACTIONS(1003), - [anon_sym_type] = ACTIONS(1003), - [anon_sym_union] = ACTIONS(1003), - [anon_sym_unsafe] = ACTIONS(1003), - [anon_sym_use] = ACTIONS(1003), - [anon_sym_where] = ACTIONS(1003), - [anon_sym_while] = ACTIONS(1003), - [sym_mutable_specifier] = ACTIONS(1003), - [sym_integer_literal] = ACTIONS(1005), - [aux_sym_string_literal_token1] = ACTIONS(1005), - [sym_char_literal] = ACTIONS(1005), - [anon_sym_true] = ACTIONS(1003), - [anon_sym_false] = ACTIONS(1003), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1003), - [sym_super] = ACTIONS(1003), - [sym_crate] = ACTIONS(1003), - [sym_metavariable] = ACTIONS(1005), - [sym__raw_string_literal_start] = ACTIONS(1005), - [sym_float_literal] = ACTIONS(1005), - }, - [STATE(176)] = { - [sym_line_comment] = STATE(176), - [sym_block_comment] = STATE(176), - [sym_identifier] = ACTIONS(1007), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_LPAREN] = ACTIONS(1009), - [anon_sym_RPAREN] = ACTIONS(1009), - [anon_sym_LBRACK] = ACTIONS(1009), - [anon_sym_RBRACK] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1009), - [anon_sym_EQ_GT] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(1007), - [anon_sym_DOLLAR] = ACTIONS(1007), - [anon_sym_PLUS] = ACTIONS(1007), - [anon_sym_STAR] = ACTIONS(1007), - [anon_sym_QMARK] = ACTIONS(1009), - [anon_sym_u8] = ACTIONS(1007), - [anon_sym_i8] = ACTIONS(1007), - [anon_sym_u16] = ACTIONS(1007), - [anon_sym_i16] = ACTIONS(1007), - [anon_sym_u32] = ACTIONS(1007), - [anon_sym_i32] = ACTIONS(1007), - [anon_sym_u64] = ACTIONS(1007), - [anon_sym_i64] = ACTIONS(1007), - [anon_sym_u128] = ACTIONS(1007), - [anon_sym_i128] = ACTIONS(1007), - [anon_sym_isize] = ACTIONS(1007), - [anon_sym_usize] = ACTIONS(1007), - [anon_sym_f32] = ACTIONS(1007), - [anon_sym_f64] = ACTIONS(1007), - [anon_sym_bool] = ACTIONS(1007), - [anon_sym_str] = ACTIONS(1007), - [anon_sym_char] = ACTIONS(1007), - [anon_sym_DASH] = ACTIONS(1007), - [anon_sym_SLASH] = ACTIONS(1007), - [anon_sym_PERCENT] = ACTIONS(1007), - [anon_sym_CARET] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1007), - [anon_sym_AMP] = ACTIONS(1007), - [anon_sym_PIPE] = ACTIONS(1007), - [anon_sym_AMP_AMP] = ACTIONS(1009), - [anon_sym_PIPE_PIPE] = ACTIONS(1009), - [anon_sym_LT_LT] = ACTIONS(1007), - [anon_sym_GT_GT] = ACTIONS(1007), - [anon_sym_PLUS_EQ] = ACTIONS(1009), - [anon_sym_DASH_EQ] = ACTIONS(1009), - [anon_sym_STAR_EQ] = ACTIONS(1009), - [anon_sym_SLASH_EQ] = ACTIONS(1009), - [anon_sym_PERCENT_EQ] = ACTIONS(1009), - [anon_sym_CARET_EQ] = ACTIONS(1009), - [anon_sym_AMP_EQ] = ACTIONS(1009), - [anon_sym_PIPE_EQ] = ACTIONS(1009), - [anon_sym_LT_LT_EQ] = ACTIONS(1009), - [anon_sym_GT_GT_EQ] = ACTIONS(1009), - [anon_sym_EQ] = ACTIONS(1007), - [anon_sym_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(1009), - [anon_sym_GT] = ACTIONS(1007), - [anon_sym_LT] = ACTIONS(1007), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_AT] = ACTIONS(1009), - [anon_sym__] = ACTIONS(1007), - [anon_sym_DOT] = ACTIONS(1007), - [anon_sym_DOT_DOT] = ACTIONS(1007), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1009), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1009), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_COLON_COLON] = ACTIONS(1009), - [anon_sym_DASH_GT] = ACTIONS(1009), - [anon_sym_POUND] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1007), - [anon_sym_as] = ACTIONS(1007), - [anon_sym_async] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1007), - [anon_sym_break] = ACTIONS(1007), - [anon_sym_const] = ACTIONS(1007), - [anon_sym_continue] = ACTIONS(1007), - [anon_sym_default] = ACTIONS(1007), - [anon_sym_enum] = ACTIONS(1007), - [anon_sym_fn] = ACTIONS(1007), - [anon_sym_for] = ACTIONS(1007), - [anon_sym_gen] = ACTIONS(1007), - [anon_sym_if] = ACTIONS(1007), - [anon_sym_impl] = ACTIONS(1007), - [anon_sym_let] = ACTIONS(1007), - [anon_sym_loop] = ACTIONS(1007), - [anon_sym_match] = ACTIONS(1007), - [anon_sym_mod] = ACTIONS(1007), - [anon_sym_pub] = ACTIONS(1007), - [anon_sym_return] = ACTIONS(1007), - [anon_sym_static] = ACTIONS(1007), - [anon_sym_struct] = ACTIONS(1007), - [anon_sym_trait] = ACTIONS(1007), - [anon_sym_type] = ACTIONS(1007), - [anon_sym_union] = ACTIONS(1007), - [anon_sym_unsafe] = ACTIONS(1007), - [anon_sym_use] = ACTIONS(1007), - [anon_sym_where] = ACTIONS(1007), - [anon_sym_while] = ACTIONS(1007), - [sym_mutable_specifier] = ACTIONS(1007), - [sym_integer_literal] = ACTIONS(1009), - [aux_sym_string_literal_token1] = ACTIONS(1009), - [sym_char_literal] = ACTIONS(1009), - [anon_sym_true] = ACTIONS(1007), - [anon_sym_false] = ACTIONS(1007), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1007), - [sym_super] = ACTIONS(1007), - [sym_crate] = ACTIONS(1007), - [sym_metavariable] = ACTIONS(1009), - [sym__raw_string_literal_start] = ACTIONS(1009), - [sym_float_literal] = ACTIONS(1009), + [STATE(178)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(301), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1794), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(178), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1535), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(178), + [sym_block_comment] = STATE(178), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(794), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(509), + [anon_sym_BANG] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(796), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_DASH_GT] = ACTIONS(822), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(511), + [anon_sym_break] = ACTIONS(513), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(515), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(517), + [anon_sym_static] = ACTIONS(519), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(521), + [anon_sym_move] = ACTIONS(523), + [anon_sym_try] = ACTIONS(359), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [STATE(177)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1673), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(177), - [sym_block_comment] = STATE(177), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(339), + [STATE(179)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1833), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(179), + [sym_block_comment] = STATE(179), + [aux_sym_attributes_repeat1] = STATE(1090), + [aux_sym_tuple_expression_repeat1] = STATE(181), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(858), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1011), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -37566,26 +38819,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(752), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -37600,108 +38853,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(178)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1907), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_let_condition] = STATE(3091), - [sym__let_chain] = STATE(3103), - [sym__condition] = STATE(2699), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(178), - [sym_block_comment] = STATE(178), - [sym_identifier] = ACTIONS(475), + [STATE(180)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(301), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1938), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(178), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1600), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(180), + [sym_block_comment] = STATE(180), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(794), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(509), + [anon_sym_BANG] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(796), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym__] = ACTIONS(846), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_DASH_GT] = ACTIONS(848), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(913), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(511), + [anon_sym_break] = ACTIONS(513), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(515), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(517), + [anon_sym_static] = ACTIONS(519), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(521), + [anon_sym_move] = ACTIONS(523), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -37709,115 +38966,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(179)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1907), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_let_condition] = STATE(3091), - [sym__let_chain] = STATE(3103), - [sym__condition] = STATE(2819), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(179), - [sym_block_comment] = STATE(179), - [sym_identifier] = ACTIONS(475), + [STATE(181)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(2020), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(181), + [sym_block_comment] = STATE(181), + [aux_sym_attributes_repeat1] = STATE(1090), + [aux_sym_tuple_expression_repeat1] = STATE(181), + [sym_identifier] = ACTIONS(860), + [anon_sym_LPAREN] = ACTIONS(863), + [anon_sym_RPAREN] = ACTIONS(866), + [anon_sym_LBRACK] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(871), + [anon_sym_STAR] = ACTIONS(874), + [anon_sym_u8] = ACTIONS(877), + [anon_sym_i8] = ACTIONS(877), + [anon_sym_u16] = ACTIONS(877), + [anon_sym_i16] = ACTIONS(877), + [anon_sym_u32] = ACTIONS(877), + [anon_sym_i32] = ACTIONS(877), + [anon_sym_u64] = ACTIONS(877), + [anon_sym_i64] = ACTIONS(877), + [anon_sym_u128] = ACTIONS(877), + [anon_sym_i128] = ACTIONS(877), + [anon_sym_isize] = ACTIONS(877), + [anon_sym_usize] = ACTIONS(877), + [anon_sym_f32] = ACTIONS(877), + [anon_sym_f64] = ACTIONS(877), + [anon_sym_bool] = ACTIONS(877), + [anon_sym_str] = ACTIONS(877), + [anon_sym_char] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(874), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_AMP] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(883), + [anon_sym_LT] = ACTIONS(886), + [anon_sym_DOT_DOT] = ACTIONS(889), + [anon_sym_COLON_COLON] = ACTIONS(892), + [anon_sym_POUND] = ACTIONS(895), + [anon_sym_SQUOTE] = ACTIONS(898), + [anon_sym_async] = ACTIONS(901), + [anon_sym_break] = ACTIONS(904), + [anon_sym_const] = ACTIONS(907), + [anon_sym_continue] = ACTIONS(910), + [anon_sym_default] = ACTIONS(913), + [anon_sym_for] = ACTIONS(916), + [anon_sym_gen] = ACTIONS(919), + [anon_sym_if] = ACTIONS(922), + [anon_sym_loop] = ACTIONS(925), + [anon_sym_match] = ACTIONS(928), + [anon_sym_return] = ACTIONS(931), + [anon_sym_static] = ACTIONS(934), + [anon_sym_union] = ACTIONS(913), + [anon_sym_unsafe] = ACTIONS(937), + [anon_sym_while] = ACTIONS(940), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_move] = ACTIONS(946), + [anon_sym_try] = ACTIONS(949), + [sym_integer_literal] = ACTIONS(952), + [aux_sym_string_literal_token1] = ACTIONS(955), + [sym_char_literal] = ACTIONS(952), + [anon_sym_true] = ACTIONS(958), + [anon_sym_false] = ACTIONS(958), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(961), + [sym_super] = ACTIONS(964), + [sym_crate] = ACTIONS(964), + [sym_metavariable] = ACTIONS(967), + [sym__raw_string_literal_start] = ACTIONS(970), + [sym_float_literal] = ACTIONS(952), + }, + [STATE(182)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(298), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1705), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1535), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(182), + [sym_block_comment] = STATE(182), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(481), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym__] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(824), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_DASH_GT] = ACTIONS(822), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(913), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -37825,186 +39206,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(180)] = { - [sym_line_comment] = STATE(180), - [sym_block_comment] = STATE(180), - [sym_identifier] = ACTIONS(1013), - [anon_sym_SEMI] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_RPAREN] = ACTIONS(1015), - [anon_sym_LBRACK] = ACTIONS(1015), - [anon_sym_RBRACK] = ACTIONS(1015), - [anon_sym_LBRACE] = ACTIONS(1015), - [anon_sym_RBRACE] = ACTIONS(1015), - [anon_sym_EQ_GT] = ACTIONS(1015), - [anon_sym_COLON] = ACTIONS(1013), - [anon_sym_DOLLAR] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_STAR] = ACTIONS(1013), - [anon_sym_QMARK] = ACTIONS(1015), - [anon_sym_u8] = ACTIONS(1013), - [anon_sym_i8] = ACTIONS(1013), - [anon_sym_u16] = ACTIONS(1013), - [anon_sym_i16] = ACTIONS(1013), - [anon_sym_u32] = ACTIONS(1013), - [anon_sym_i32] = ACTIONS(1013), - [anon_sym_u64] = ACTIONS(1013), - [anon_sym_i64] = ACTIONS(1013), - [anon_sym_u128] = ACTIONS(1013), - [anon_sym_i128] = ACTIONS(1013), - [anon_sym_isize] = ACTIONS(1013), - [anon_sym_usize] = ACTIONS(1013), - [anon_sym_f32] = ACTIONS(1013), - [anon_sym_f64] = ACTIONS(1013), - [anon_sym_bool] = ACTIONS(1013), - [anon_sym_str] = ACTIONS(1013), - [anon_sym_char] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_SLASH] = ACTIONS(1013), - [anon_sym_PERCENT] = ACTIONS(1013), - [anon_sym_CARET] = ACTIONS(1013), - [anon_sym_BANG] = ACTIONS(1013), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1013), - [anon_sym_AMP_AMP] = ACTIONS(1015), - [anon_sym_PIPE_PIPE] = ACTIONS(1015), - [anon_sym_LT_LT] = ACTIONS(1013), - [anon_sym_GT_GT] = ACTIONS(1013), - [anon_sym_PLUS_EQ] = ACTIONS(1015), - [anon_sym_DASH_EQ] = ACTIONS(1015), - [anon_sym_STAR_EQ] = ACTIONS(1015), - [anon_sym_SLASH_EQ] = ACTIONS(1015), - [anon_sym_PERCENT_EQ] = ACTIONS(1015), - [anon_sym_CARET_EQ] = ACTIONS(1015), - [anon_sym_AMP_EQ] = ACTIONS(1015), - [anon_sym_PIPE_EQ] = ACTIONS(1015), - [anon_sym_LT_LT_EQ] = ACTIONS(1015), - [anon_sym_GT_GT_EQ] = ACTIONS(1015), - [anon_sym_EQ] = ACTIONS(1013), - [anon_sym_EQ_EQ] = ACTIONS(1015), - [anon_sym_BANG_EQ] = ACTIONS(1015), - [anon_sym_GT] = ACTIONS(1013), - [anon_sym_LT] = ACTIONS(1013), - [anon_sym_GT_EQ] = ACTIONS(1015), - [anon_sym_LT_EQ] = ACTIONS(1015), - [anon_sym_AT] = ACTIONS(1015), - [anon_sym__] = ACTIONS(1013), - [anon_sym_DOT] = ACTIONS(1013), - [anon_sym_DOT_DOT] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1015), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1015), - [anon_sym_COMMA] = ACTIONS(1015), - [anon_sym_COLON_COLON] = ACTIONS(1015), - [anon_sym_DASH_GT] = ACTIONS(1015), - [anon_sym_POUND] = ACTIONS(1015), - [anon_sym_SQUOTE] = ACTIONS(1013), - [anon_sym_as] = ACTIONS(1013), - [anon_sym_async] = ACTIONS(1013), - [anon_sym_await] = ACTIONS(1013), - [anon_sym_break] = ACTIONS(1013), - [anon_sym_const] = ACTIONS(1013), - [anon_sym_continue] = ACTIONS(1013), - [anon_sym_default] = ACTIONS(1013), - [anon_sym_enum] = ACTIONS(1013), - [anon_sym_fn] = ACTIONS(1013), - [anon_sym_for] = ACTIONS(1013), - [anon_sym_gen] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1013), - [anon_sym_impl] = ACTIONS(1013), - [anon_sym_let] = ACTIONS(1013), - [anon_sym_loop] = ACTIONS(1013), - [anon_sym_match] = ACTIONS(1013), - [anon_sym_mod] = ACTIONS(1013), - [anon_sym_pub] = ACTIONS(1013), - [anon_sym_return] = ACTIONS(1013), - [anon_sym_static] = ACTIONS(1013), - [anon_sym_struct] = ACTIONS(1013), - [anon_sym_trait] = ACTIONS(1013), - [anon_sym_type] = ACTIONS(1013), - [anon_sym_union] = ACTIONS(1013), - [anon_sym_unsafe] = ACTIONS(1013), - [anon_sym_use] = ACTIONS(1013), - [anon_sym_where] = ACTIONS(1013), - [anon_sym_while] = ACTIONS(1013), - [sym_mutable_specifier] = ACTIONS(1013), - [sym_integer_literal] = ACTIONS(1015), - [aux_sym_string_literal_token1] = ACTIONS(1015), - [sym_char_literal] = ACTIONS(1015), - [anon_sym_true] = ACTIONS(1013), - [anon_sym_false] = ACTIONS(1013), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1013), - [sym_super] = ACTIONS(1013), - [sym_crate] = ACTIONS(1013), - [sym_metavariable] = ACTIONS(1015), - [sym__raw_string_literal_start] = ACTIONS(1015), - [sym_float_literal] = ACTIONS(1015), + [STATE(183)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(298), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1727), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1600), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(183), + [sym_block_comment] = STATE(183), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(481), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(846), + [anon_sym_DOT_DOT] = ACTIONS(824), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_DASH_GT] = ACTIONS(848), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [STATE(181)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1673), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(181), - [sym_block_comment] = STATE(181), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(339), + [STATE(184)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1783), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(184), + [sym_block_comment] = STATE(184), + [aux_sym_attributes_repeat1] = STATE(1090), + [aux_sym_tuple_expression_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(973), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1017), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -38030,26 +39419,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(752), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -38064,63 +39453,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(182)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1673), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(182), - [sym_block_comment] = STATE(182), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(339), + [STATE(185)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1783), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(185), + [sym_block_comment] = STATE(185), + [aux_sym_attributes_repeat1] = STATE(1090), + [aux_sym_tuple_expression_repeat1] = STATE(181), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1019), + [anon_sym_RPAREN] = ACTIONS(973), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -38146,26 +39539,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(752), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -38180,179 +39573,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(183)] = { - [sym_line_comment] = STATE(183), - [sym_block_comment] = STATE(183), - [sym_identifier] = ACTIONS(1021), - [anon_sym_SEMI] = ACTIONS(1023), - [anon_sym_LPAREN] = ACTIONS(1023), - [anon_sym_RPAREN] = ACTIONS(1023), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_RBRACK] = ACTIONS(1023), - [anon_sym_LBRACE] = ACTIONS(1023), - [anon_sym_RBRACE] = ACTIONS(1023), - [anon_sym_EQ_GT] = ACTIONS(1023), - [anon_sym_COLON] = ACTIONS(1021), - [anon_sym_DOLLAR] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_QMARK] = ACTIONS(1023), - [anon_sym_u8] = ACTIONS(1021), - [anon_sym_i8] = ACTIONS(1021), - [anon_sym_u16] = ACTIONS(1021), - [anon_sym_i16] = ACTIONS(1021), - [anon_sym_u32] = ACTIONS(1021), - [anon_sym_i32] = ACTIONS(1021), - [anon_sym_u64] = ACTIONS(1021), - [anon_sym_i64] = ACTIONS(1021), - [anon_sym_u128] = ACTIONS(1021), - [anon_sym_i128] = ACTIONS(1021), - [anon_sym_isize] = ACTIONS(1021), - [anon_sym_usize] = ACTIONS(1021), - [anon_sym_f32] = ACTIONS(1021), - [anon_sym_f64] = ACTIONS(1021), - [anon_sym_bool] = ACTIONS(1021), - [anon_sym_str] = ACTIONS(1021), - [anon_sym_char] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_PERCENT] = ACTIONS(1021), - [anon_sym_CARET] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1021), - [anon_sym_PIPE] = ACTIONS(1021), - [anon_sym_AMP_AMP] = ACTIONS(1023), - [anon_sym_PIPE_PIPE] = ACTIONS(1023), - [anon_sym_LT_LT] = ACTIONS(1021), - [anon_sym_GT_GT] = ACTIONS(1021), - [anon_sym_PLUS_EQ] = ACTIONS(1023), - [anon_sym_DASH_EQ] = ACTIONS(1023), - [anon_sym_STAR_EQ] = ACTIONS(1023), - [anon_sym_SLASH_EQ] = ACTIONS(1023), - [anon_sym_PERCENT_EQ] = ACTIONS(1023), - [anon_sym_CARET_EQ] = ACTIONS(1023), - [anon_sym_AMP_EQ] = ACTIONS(1023), - [anon_sym_PIPE_EQ] = ACTIONS(1023), - [anon_sym_LT_LT_EQ] = ACTIONS(1023), - [anon_sym_GT_GT_EQ] = ACTIONS(1023), - [anon_sym_EQ] = ACTIONS(1021), - [anon_sym_EQ_EQ] = ACTIONS(1023), - [anon_sym_BANG_EQ] = ACTIONS(1023), - [anon_sym_GT] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(1021), - [anon_sym_GT_EQ] = ACTIONS(1023), - [anon_sym_LT_EQ] = ACTIONS(1023), - [anon_sym_AT] = ACTIONS(1023), - [anon_sym__] = ACTIONS(1021), - [anon_sym_DOT] = ACTIONS(1021), - [anon_sym_DOT_DOT] = ACTIONS(1021), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1023), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1023), - [anon_sym_COMMA] = ACTIONS(1023), - [anon_sym_COLON_COLON] = ACTIONS(1023), - [anon_sym_DASH_GT] = ACTIONS(1023), - [anon_sym_POUND] = ACTIONS(1023), - [anon_sym_SQUOTE] = ACTIONS(1021), - [anon_sym_as] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1021), - [anon_sym_break] = ACTIONS(1021), - [anon_sym_const] = ACTIONS(1021), - [anon_sym_continue] = ACTIONS(1021), - [anon_sym_default] = ACTIONS(1021), - [anon_sym_enum] = ACTIONS(1021), - [anon_sym_fn] = ACTIONS(1021), - [anon_sym_for] = ACTIONS(1021), - [anon_sym_gen] = ACTIONS(1021), - [anon_sym_if] = ACTIONS(1021), - [anon_sym_impl] = ACTIONS(1021), - [anon_sym_let] = ACTIONS(1021), - [anon_sym_loop] = ACTIONS(1021), - [anon_sym_match] = ACTIONS(1021), - [anon_sym_mod] = ACTIONS(1021), - [anon_sym_pub] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1021), - [anon_sym_static] = ACTIONS(1021), - [anon_sym_struct] = ACTIONS(1021), - [anon_sym_trait] = ACTIONS(1021), - [anon_sym_type] = ACTIONS(1021), - [anon_sym_union] = ACTIONS(1021), - [anon_sym_unsafe] = ACTIONS(1021), - [anon_sym_use] = ACTIONS(1021), - [anon_sym_where] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1021), - [sym_mutable_specifier] = ACTIONS(1021), - [sym_integer_literal] = ACTIONS(1023), - [aux_sym_string_literal_token1] = ACTIONS(1023), - [sym_char_literal] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1021), - [anon_sym_false] = ACTIONS(1021), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1021), - [sym_super] = ACTIONS(1021), - [sym_crate] = ACTIONS(1021), - [sym_metavariable] = ACTIONS(1023), - [sym__raw_string_literal_start] = ACTIONS(1023), - [sym_float_literal] = ACTIONS(1023), - }, - [STATE(184)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1789), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(184), - [sym_block_comment] = STATE(184), - [aux_sym_enum_variant_list_repeat1] = STATE(201), - [sym_identifier] = ACTIONS(339), + [STATE(186)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(263), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1622), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1487), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(186), + [sym_block_comment] = STATE(186), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1025), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -38371,33 +39650,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(369), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym__] = ACTIONS(782), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(752), + [anon_sym_DASH_GT] = ACTIONS(784), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -38412,456 +39693,232 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(185)] = { - [sym_line_comment] = STATE(185), - [sym_block_comment] = STATE(185), - [sym_identifier] = ACTIONS(1027), - [anon_sym_SEMI] = ACTIONS(1029), - [anon_sym_LPAREN] = ACTIONS(1029), - [anon_sym_RPAREN] = ACTIONS(1029), - [anon_sym_LBRACK] = ACTIONS(1029), - [anon_sym_RBRACK] = ACTIONS(1029), - [anon_sym_LBRACE] = ACTIONS(1029), - [anon_sym_RBRACE] = ACTIONS(1029), - [anon_sym_EQ_GT] = ACTIONS(1029), - [anon_sym_COLON] = ACTIONS(1027), - [anon_sym_DOLLAR] = ACTIONS(1027), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_STAR] = ACTIONS(1027), - [anon_sym_QMARK] = ACTIONS(1029), - [anon_sym_u8] = ACTIONS(1027), - [anon_sym_i8] = ACTIONS(1027), - [anon_sym_u16] = ACTIONS(1027), - [anon_sym_i16] = ACTIONS(1027), - [anon_sym_u32] = ACTIONS(1027), - [anon_sym_i32] = ACTIONS(1027), - [anon_sym_u64] = ACTIONS(1027), - [anon_sym_i64] = ACTIONS(1027), - [anon_sym_u128] = ACTIONS(1027), - [anon_sym_i128] = ACTIONS(1027), - [anon_sym_isize] = ACTIONS(1027), - [anon_sym_usize] = ACTIONS(1027), - [anon_sym_f32] = ACTIONS(1027), - [anon_sym_f64] = ACTIONS(1027), - [anon_sym_bool] = ACTIONS(1027), - [anon_sym_str] = ACTIONS(1027), - [anon_sym_char] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_SLASH] = ACTIONS(1027), - [anon_sym_PERCENT] = ACTIONS(1027), - [anon_sym_CARET] = ACTIONS(1027), - [anon_sym_BANG] = ACTIONS(1027), - [anon_sym_AMP] = ACTIONS(1027), - [anon_sym_PIPE] = ACTIONS(1027), - [anon_sym_AMP_AMP] = ACTIONS(1029), - [anon_sym_PIPE_PIPE] = ACTIONS(1029), - [anon_sym_LT_LT] = ACTIONS(1027), - [anon_sym_GT_GT] = ACTIONS(1027), - [anon_sym_PLUS_EQ] = ACTIONS(1029), - [anon_sym_DASH_EQ] = ACTIONS(1029), - [anon_sym_STAR_EQ] = ACTIONS(1029), - [anon_sym_SLASH_EQ] = ACTIONS(1029), - [anon_sym_PERCENT_EQ] = ACTIONS(1029), - [anon_sym_CARET_EQ] = ACTIONS(1029), - [anon_sym_AMP_EQ] = ACTIONS(1029), - [anon_sym_PIPE_EQ] = ACTIONS(1029), - [anon_sym_LT_LT_EQ] = ACTIONS(1029), - [anon_sym_GT_GT_EQ] = ACTIONS(1029), - [anon_sym_EQ] = ACTIONS(1027), - [anon_sym_EQ_EQ] = ACTIONS(1029), - [anon_sym_BANG_EQ] = ACTIONS(1029), - [anon_sym_GT] = ACTIONS(1027), - [anon_sym_LT] = ACTIONS(1027), - [anon_sym_GT_EQ] = ACTIONS(1029), - [anon_sym_LT_EQ] = ACTIONS(1029), - [anon_sym_AT] = ACTIONS(1029), - [anon_sym__] = ACTIONS(1027), - [anon_sym_DOT] = ACTIONS(1027), - [anon_sym_DOT_DOT] = ACTIONS(1027), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1029), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1029), - [anon_sym_COMMA] = ACTIONS(1029), - [anon_sym_COLON_COLON] = ACTIONS(1029), - [anon_sym_DASH_GT] = ACTIONS(1029), - [anon_sym_POUND] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1027), - [anon_sym_as] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1027), - [anon_sym_await] = ACTIONS(1027), - [anon_sym_break] = ACTIONS(1027), - [anon_sym_const] = ACTIONS(1027), - [anon_sym_continue] = ACTIONS(1027), - [anon_sym_default] = ACTIONS(1027), - [anon_sym_enum] = ACTIONS(1027), - [anon_sym_fn] = ACTIONS(1027), - [anon_sym_for] = ACTIONS(1027), - [anon_sym_gen] = ACTIONS(1027), - [anon_sym_if] = ACTIONS(1027), - [anon_sym_impl] = ACTIONS(1027), - [anon_sym_let] = ACTIONS(1027), - [anon_sym_loop] = ACTIONS(1027), - [anon_sym_match] = ACTIONS(1027), - [anon_sym_mod] = ACTIONS(1027), - [anon_sym_pub] = ACTIONS(1027), - [anon_sym_return] = ACTIONS(1027), - [anon_sym_static] = ACTIONS(1027), - [anon_sym_struct] = ACTIONS(1027), - [anon_sym_trait] = ACTIONS(1027), - [anon_sym_type] = ACTIONS(1027), - [anon_sym_union] = ACTIONS(1027), - [anon_sym_unsafe] = ACTIONS(1027), - [anon_sym_use] = ACTIONS(1027), - [anon_sym_where] = ACTIONS(1027), - [anon_sym_while] = ACTIONS(1027), - [sym_mutable_specifier] = ACTIONS(1027), - [sym_integer_literal] = ACTIONS(1029), - [aux_sym_string_literal_token1] = ACTIONS(1029), - [sym_char_literal] = ACTIONS(1029), - [anon_sym_true] = ACTIONS(1027), - [anon_sym_false] = ACTIONS(1027), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1027), - [sym_super] = ACTIONS(1027), - [sym_crate] = ACTIONS(1027), - [sym_metavariable] = ACTIONS(1029), - [sym__raw_string_literal_start] = ACTIONS(1029), - [sym_float_literal] = ACTIONS(1029), - }, - [STATE(186)] = { - [sym_line_comment] = STATE(186), - [sym_block_comment] = STATE(186), - [sym_identifier] = ACTIONS(1031), - [anon_sym_SEMI] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1033), - [anon_sym_RPAREN] = ACTIONS(1033), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_RBRACK] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(1033), - [anon_sym_RBRACE] = ACTIONS(1033), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_COLON] = ACTIONS(1031), - [anon_sym_DOLLAR] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1031), - [anon_sym_STAR] = ACTIONS(1031), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_u8] = ACTIONS(1031), - [anon_sym_i8] = ACTIONS(1031), - [anon_sym_u16] = ACTIONS(1031), - [anon_sym_i16] = ACTIONS(1031), - [anon_sym_u32] = ACTIONS(1031), - [anon_sym_i32] = ACTIONS(1031), - [anon_sym_u64] = ACTIONS(1031), - [anon_sym_i64] = ACTIONS(1031), - [anon_sym_u128] = ACTIONS(1031), - [anon_sym_i128] = ACTIONS(1031), - [anon_sym_isize] = ACTIONS(1031), - [anon_sym_usize] = ACTIONS(1031), - [anon_sym_f32] = ACTIONS(1031), - [anon_sym_f64] = ACTIONS(1031), - [anon_sym_bool] = ACTIONS(1031), - [anon_sym_str] = ACTIONS(1031), - [anon_sym_char] = ACTIONS(1031), - [anon_sym_DASH] = ACTIONS(1031), - [anon_sym_SLASH] = ACTIONS(1031), - [anon_sym_PERCENT] = ACTIONS(1031), - [anon_sym_CARET] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_AMP] = ACTIONS(1031), - [anon_sym_PIPE] = ACTIONS(1031), - [anon_sym_AMP_AMP] = ACTIONS(1033), - [anon_sym_PIPE_PIPE] = ACTIONS(1033), - [anon_sym_LT_LT] = ACTIONS(1031), - [anon_sym_GT_GT] = ACTIONS(1031), - [anon_sym_PLUS_EQ] = ACTIONS(1033), - [anon_sym_DASH_EQ] = ACTIONS(1033), - [anon_sym_STAR_EQ] = ACTIONS(1033), - [anon_sym_SLASH_EQ] = ACTIONS(1033), - [anon_sym_PERCENT_EQ] = ACTIONS(1033), - [anon_sym_CARET_EQ] = ACTIONS(1033), - [anon_sym_AMP_EQ] = ACTIONS(1033), - [anon_sym_PIPE_EQ] = ACTIONS(1033), - [anon_sym_LT_LT_EQ] = ACTIONS(1033), - [anon_sym_GT_GT_EQ] = ACTIONS(1033), - [anon_sym_EQ] = ACTIONS(1031), - [anon_sym_EQ_EQ] = ACTIONS(1033), - [anon_sym_BANG_EQ] = ACTIONS(1033), - [anon_sym_GT] = ACTIONS(1031), - [anon_sym_LT] = ACTIONS(1031), - [anon_sym_GT_EQ] = ACTIONS(1033), - [anon_sym_LT_EQ] = ACTIONS(1033), - [anon_sym_AT] = ACTIONS(1033), - [anon_sym__] = ACTIONS(1031), - [anon_sym_DOT] = ACTIONS(1031), - [anon_sym_DOT_DOT] = ACTIONS(1031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1033), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1033), - [anon_sym_COMMA] = ACTIONS(1033), - [anon_sym_COLON_COLON] = ACTIONS(1033), - [anon_sym_DASH_GT] = ACTIONS(1033), - [anon_sym_POUND] = ACTIONS(1033), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_as] = ACTIONS(1031), - [anon_sym_async] = ACTIONS(1031), - [anon_sym_await] = ACTIONS(1031), - [anon_sym_break] = ACTIONS(1031), - [anon_sym_const] = ACTIONS(1031), - [anon_sym_continue] = ACTIONS(1031), - [anon_sym_default] = ACTIONS(1031), - [anon_sym_enum] = ACTIONS(1031), - [anon_sym_fn] = ACTIONS(1031), - [anon_sym_for] = ACTIONS(1031), - [anon_sym_gen] = ACTIONS(1031), - [anon_sym_if] = ACTIONS(1031), - [anon_sym_impl] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1031), - [anon_sym_loop] = ACTIONS(1031), - [anon_sym_match] = ACTIONS(1031), - [anon_sym_mod] = ACTIONS(1031), - [anon_sym_pub] = ACTIONS(1031), - [anon_sym_return] = ACTIONS(1031), - [anon_sym_static] = ACTIONS(1031), - [anon_sym_struct] = ACTIONS(1031), - [anon_sym_trait] = ACTIONS(1031), - [anon_sym_type] = ACTIONS(1031), - [anon_sym_union] = ACTIONS(1031), - [anon_sym_unsafe] = ACTIONS(1031), - [anon_sym_use] = ACTIONS(1031), - [anon_sym_where] = ACTIONS(1031), - [anon_sym_while] = ACTIONS(1031), - [sym_mutable_specifier] = ACTIONS(1031), - [sym_integer_literal] = ACTIONS(1033), - [aux_sym_string_literal_token1] = ACTIONS(1033), - [sym_char_literal] = ACTIONS(1033), - [anon_sym_true] = ACTIONS(1031), - [anon_sym_false] = ACTIONS(1031), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1031), - [sym_super] = ACTIONS(1031), - [sym_crate] = ACTIONS(1031), - [sym_metavariable] = ACTIONS(1033), - [sym__raw_string_literal_start] = ACTIONS(1033), - [sym_float_literal] = ACTIONS(1033), - }, [STATE(187)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(167), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1667), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(187), [sym_block_comment] = STATE(187), - [sym_identifier] = ACTIONS(901), - [anon_sym_SEMI] = ACTIONS(903), - [anon_sym_LPAREN] = ACTIONS(903), - [anon_sym_RPAREN] = ACTIONS(903), - [anon_sym_LBRACK] = ACTIONS(903), - [anon_sym_RBRACK] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(903), - [anon_sym_RBRACE] = ACTIONS(903), - [anon_sym_EQ_GT] = ACTIONS(903), - [anon_sym_COLON] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(901), - [anon_sym_PLUS] = ACTIONS(901), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_QMARK] = ACTIONS(903), - [anon_sym_u8] = ACTIONS(901), - [anon_sym_i8] = ACTIONS(901), - [anon_sym_u16] = ACTIONS(901), - [anon_sym_i16] = ACTIONS(901), - [anon_sym_u32] = ACTIONS(901), - [anon_sym_i32] = ACTIONS(901), - [anon_sym_u64] = ACTIONS(901), - [anon_sym_i64] = ACTIONS(901), - [anon_sym_u128] = ACTIONS(901), - [anon_sym_i128] = ACTIONS(901), - [anon_sym_isize] = ACTIONS(901), - [anon_sym_usize] = ACTIONS(901), - [anon_sym_f32] = ACTIONS(901), - [anon_sym_f64] = ACTIONS(901), - [anon_sym_bool] = ACTIONS(901), - [anon_sym_str] = ACTIONS(901), - [anon_sym_char] = ACTIONS(901), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_SLASH] = ACTIONS(901), - [anon_sym_PERCENT] = ACTIONS(901), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(901), - [anon_sym_PIPE] = ACTIONS(901), - [anon_sym_AMP_AMP] = ACTIONS(903), - [anon_sym_PIPE_PIPE] = ACTIONS(903), - [anon_sym_LT_LT] = ACTIONS(901), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_PLUS_EQ] = ACTIONS(903), - [anon_sym_DASH_EQ] = ACTIONS(903), - [anon_sym_STAR_EQ] = ACTIONS(903), - [anon_sym_SLASH_EQ] = ACTIONS(903), - [anon_sym_PERCENT_EQ] = ACTIONS(903), - [anon_sym_CARET_EQ] = ACTIONS(903), - [anon_sym_AMP_EQ] = ACTIONS(903), - [anon_sym_PIPE_EQ] = ACTIONS(903), - [anon_sym_LT_LT_EQ] = ACTIONS(903), - [anon_sym_GT_GT_EQ] = ACTIONS(903), - [anon_sym_EQ] = ACTIONS(901), - [anon_sym_EQ_EQ] = ACTIONS(903), - [anon_sym_BANG_EQ] = ACTIONS(903), - [anon_sym_GT] = ACTIONS(901), - [anon_sym_LT] = ACTIONS(901), - [anon_sym_GT_EQ] = ACTIONS(903), - [anon_sym_LT_EQ] = ACTIONS(903), - [anon_sym_AT] = ACTIONS(903), - [anon_sym__] = ACTIONS(901), - [anon_sym_DOT] = ACTIONS(901), - [anon_sym_DOT_DOT] = ACTIONS(901), - [anon_sym_DOT_DOT_DOT] = ACTIONS(903), - [anon_sym_DOT_DOT_EQ] = ACTIONS(903), - [anon_sym_COMMA] = ACTIONS(903), - [anon_sym_COLON_COLON] = ACTIONS(903), - [anon_sym_DASH_GT] = ACTIONS(903), - [anon_sym_POUND] = ACTIONS(903), - [anon_sym_SQUOTE] = ACTIONS(901), - [anon_sym_as] = ACTIONS(901), - [anon_sym_async] = ACTIONS(901), - [anon_sym_await] = ACTIONS(901), - [anon_sym_break] = ACTIONS(901), - [anon_sym_const] = ACTIONS(901), - [anon_sym_continue] = ACTIONS(901), - [anon_sym_default] = ACTIONS(901), - [anon_sym_enum] = ACTIONS(901), - [anon_sym_fn] = ACTIONS(901), - [anon_sym_for] = ACTIONS(901), - [anon_sym_gen] = ACTIONS(901), - [anon_sym_if] = ACTIONS(901), - [anon_sym_impl] = ACTIONS(901), - [anon_sym_let] = ACTIONS(901), - [anon_sym_loop] = ACTIONS(901), - [anon_sym_match] = ACTIONS(901), - [anon_sym_mod] = ACTIONS(901), - [anon_sym_pub] = ACTIONS(901), - [anon_sym_return] = ACTIONS(901), - [anon_sym_static] = ACTIONS(901), - [anon_sym_struct] = ACTIONS(901), - [anon_sym_trait] = ACTIONS(901), - [anon_sym_type] = ACTIONS(901), - [anon_sym_union] = ACTIONS(901), - [anon_sym_unsafe] = ACTIONS(901), - [anon_sym_use] = ACTIONS(901), - [anon_sym_where] = ACTIONS(901), - [anon_sym_while] = ACTIONS(901), - [sym_mutable_specifier] = ACTIONS(901), - [sym_integer_literal] = ACTIONS(903), - [aux_sym_string_literal_token1] = ACTIONS(903), - [sym_char_literal] = ACTIONS(903), - [anon_sym_true] = ACTIONS(901), - [anon_sym_false] = ACTIONS(901), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(901), - [sym_super] = ACTIONS(901), - [sym_crate] = ACTIONS(901), - [sym_metavariable] = ACTIONS(903), - [sym__raw_string_literal_start] = ACTIONS(903), - [sym_float_literal] = ACTIONS(903), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COMMA] = ACTIONS(977), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(373), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(359), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [STATE(188)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1907), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_let_condition] = STATE(3091), - [sym__let_chain] = STATE(3103), - [sym__condition] = STATE(2855), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1864), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1535), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(188), [sym_block_comment] = STATE(188), - [sym_identifier] = ACTIONS(475), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym__] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(822), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(913), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -38869,115 +39926,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(189)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1907), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_let_condition] = STATE(3091), - [sym__let_chain] = STATE(3103), - [sym__condition] = STATE(2869), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(263), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1641), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(189), [sym_block_comment] = STATE(189), - [sym_identifier] = ACTIONS(475), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym__] = ACTIONS(778), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(780), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(913), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -38985,115 +40046,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(190)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1907), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_let_condition] = STATE(3091), - [sym__let_chain] = STATE(3103), - [sym__condition] = STATE(2754), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1876), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1600), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(190), [sym_block_comment] = STATE(190), - [sym_identifier] = ACTIONS(475), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym__] = ACTIONS(846), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(848), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(913), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -39101,115 +40166,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(191)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1907), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_let_condition] = STATE(3091), - [sym__let_chain] = STATE(3103), - [sym__condition] = STATE(2703), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(298), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1754), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1507), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(191), [sym_block_comment] = STATE(191), - [sym_identifier] = ACTIONS(475), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(481), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym__] = ACTIONS(778), + [anon_sym_DOT_DOT] = ACTIONS(824), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_DASH_GT] = ACTIONS(780), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(913), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -39217,115 +40286,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(192)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1907), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_let_condition] = STATE(3091), - [sym__let_chain] = STATE(3103), - [sym__condition] = STATE(2716), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1725), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(192), [sym_block_comment] = STATE(192), - [sym_identifier] = ACTIONS(475), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(979), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COMMA] = ACTIONS(981), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(913), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -39333,70 +40406,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(193)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1673), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(233), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1984), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_block_expression_with_attribute] = STATE(1391), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(528), + [sym_match_expression] = STATE(528), + [sym_while_expression] = STATE(528), + [sym_loop_expression] = STATE(528), + [sym_for_expression] = STATE(528), + [sym_const_block] = STATE(528), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3826), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(528), + [sym_async_block] = STATE(528), + [sym_gen_block] = STATE(528), + [sym_try_block] = STATE(528), + [sym_block] = STATE(528), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(193), [sym_block_comment] = STATE(193), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(339), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1035), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(983), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -39422,26 +40498,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(752), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(985), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(987), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(989), + [anon_sym_gen] = ACTIONS(991), + [anon_sym_if] = ACTIONS(993), + [anon_sym_loop] = ACTIONS(995), + [anon_sym_match] = ACTIONS(997), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(999), + [anon_sym_while] = ACTIONS(1001), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(1003), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -39457,107 +40533,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(194)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1907), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_let_condition] = STATE(3091), - [sym__let_chain] = STATE(3103), - [sym__condition] = STATE(2835), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1812), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(194), [sym_block_comment] = STATE(194), - [sym_identifier] = ACTIONS(475), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(913), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -39565,115 +40644,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(195)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1907), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_let_condition] = STATE(3091), - [sym__let_chain] = STATE(3103), - [sym__condition] = STATE(2625), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(310), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1872), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(195), [sym_block_comment] = STATE(195), - [sym_identifier] = ACTIONS(475), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [anon_sym_RBRACK] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(913), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -39681,115 +40763,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(196)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1907), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_let_condition] = STATE(3091), - [sym__let_chain] = STATE(3103), - [sym__condition] = STATE(2627), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(310), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1872), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(196), [sym_block_comment] = STATE(196), - [sym_identifier] = ACTIONS(475), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [anon_sym_RBRACK] = ACTIONS(1009), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(913), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -39797,300 +40882,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(197)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(310), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1872), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), [sym_line_comment] = STATE(197), [sym_block_comment] = STATE(197), - [sym_identifier] = ACTIONS(1037), - [anon_sym_SEMI] = ACTIONS(1039), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_RPAREN] = ACTIONS(1039), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_RBRACK] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(1039), - [anon_sym_RBRACE] = ACTIONS(1039), - [anon_sym_EQ_GT] = ACTIONS(1039), - [anon_sym_COLON] = ACTIONS(1037), - [anon_sym_DOLLAR] = ACTIONS(1037), - [anon_sym_PLUS] = ACTIONS(1037), - [anon_sym_STAR] = ACTIONS(1037), - [anon_sym_QMARK] = ACTIONS(1039), - [anon_sym_u8] = ACTIONS(1037), - [anon_sym_i8] = ACTIONS(1037), - [anon_sym_u16] = ACTIONS(1037), - [anon_sym_i16] = ACTIONS(1037), - [anon_sym_u32] = ACTIONS(1037), - [anon_sym_i32] = ACTIONS(1037), - [anon_sym_u64] = ACTIONS(1037), - [anon_sym_i64] = ACTIONS(1037), - [anon_sym_u128] = ACTIONS(1037), - [anon_sym_i128] = ACTIONS(1037), - [anon_sym_isize] = ACTIONS(1037), - [anon_sym_usize] = ACTIONS(1037), - [anon_sym_f32] = ACTIONS(1037), - [anon_sym_f64] = ACTIONS(1037), - [anon_sym_bool] = ACTIONS(1037), - [anon_sym_str] = ACTIONS(1037), - [anon_sym_char] = ACTIONS(1037), - [anon_sym_DASH] = ACTIONS(1037), - [anon_sym_SLASH] = ACTIONS(1037), - [anon_sym_PERCENT] = ACTIONS(1037), - [anon_sym_CARET] = ACTIONS(1037), - [anon_sym_BANG] = ACTIONS(1037), - [anon_sym_AMP] = ACTIONS(1037), - [anon_sym_PIPE] = ACTIONS(1037), - [anon_sym_AMP_AMP] = ACTIONS(1039), - [anon_sym_PIPE_PIPE] = ACTIONS(1039), - [anon_sym_LT_LT] = ACTIONS(1037), - [anon_sym_GT_GT] = ACTIONS(1037), - [anon_sym_PLUS_EQ] = ACTIONS(1039), - [anon_sym_DASH_EQ] = ACTIONS(1039), - [anon_sym_STAR_EQ] = ACTIONS(1039), - [anon_sym_SLASH_EQ] = ACTIONS(1039), - [anon_sym_PERCENT_EQ] = ACTIONS(1039), - [anon_sym_CARET_EQ] = ACTIONS(1039), - [anon_sym_AMP_EQ] = ACTIONS(1039), - [anon_sym_PIPE_EQ] = ACTIONS(1039), - [anon_sym_LT_LT_EQ] = ACTIONS(1039), - [anon_sym_GT_GT_EQ] = ACTIONS(1039), - [anon_sym_EQ] = ACTIONS(1037), - [anon_sym_EQ_EQ] = ACTIONS(1039), - [anon_sym_BANG_EQ] = ACTIONS(1039), - [anon_sym_GT] = ACTIONS(1037), - [anon_sym_LT] = ACTIONS(1037), - [anon_sym_GT_EQ] = ACTIONS(1039), - [anon_sym_LT_EQ] = ACTIONS(1039), - [anon_sym_AT] = ACTIONS(1039), - [anon_sym__] = ACTIONS(1037), - [anon_sym_DOT] = ACTIONS(1037), - [anon_sym_DOT_DOT] = ACTIONS(1037), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1039), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1039), - [anon_sym_COMMA] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(1039), - [anon_sym_DASH_GT] = ACTIONS(1039), - [anon_sym_POUND] = ACTIONS(1039), - [anon_sym_SQUOTE] = ACTIONS(1037), - [anon_sym_as] = ACTIONS(1037), - [anon_sym_async] = ACTIONS(1037), - [anon_sym_await] = ACTIONS(1037), - [anon_sym_break] = ACTIONS(1037), - [anon_sym_const] = ACTIONS(1037), - [anon_sym_continue] = ACTIONS(1037), - [anon_sym_default] = ACTIONS(1037), - [anon_sym_enum] = ACTIONS(1037), - [anon_sym_fn] = ACTIONS(1037), - [anon_sym_for] = ACTIONS(1037), - [anon_sym_gen] = ACTIONS(1037), - [anon_sym_if] = ACTIONS(1037), - [anon_sym_impl] = ACTIONS(1037), - [anon_sym_let] = ACTIONS(1037), - [anon_sym_loop] = ACTIONS(1037), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_mod] = ACTIONS(1037), - [anon_sym_pub] = ACTIONS(1037), - [anon_sym_return] = ACTIONS(1037), - [anon_sym_static] = ACTIONS(1037), - [anon_sym_struct] = ACTIONS(1037), - [anon_sym_trait] = ACTIONS(1037), - [anon_sym_type] = ACTIONS(1037), - [anon_sym_union] = ACTIONS(1037), - [anon_sym_unsafe] = ACTIONS(1037), - [anon_sym_use] = ACTIONS(1037), - [anon_sym_where] = ACTIONS(1037), - [anon_sym_while] = ACTIONS(1037), - [sym_mutable_specifier] = ACTIONS(1037), - [sym_integer_literal] = ACTIONS(1039), - [aux_sym_string_literal_token1] = ACTIONS(1039), - [sym_char_literal] = ACTIONS(1039), - [anon_sym_true] = ACTIONS(1037), - [anon_sym_false] = ACTIONS(1037), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1037), - [sym_super] = ACTIONS(1037), - [sym_crate] = ACTIONS(1037), - [sym_metavariable] = ACTIONS(1039), - [sym__raw_string_literal_start] = ACTIONS(1039), - [sym_float_literal] = ACTIONS(1039), - }, - [STATE(198)] = { - [sym_line_comment] = STATE(198), - [sym_block_comment] = STATE(198), - [sym_identifier] = ACTIONS(1037), - [anon_sym_SEMI] = ACTIONS(1039), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_RPAREN] = ACTIONS(1039), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_RBRACK] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(1039), - [anon_sym_RBRACE] = ACTIONS(1039), - [anon_sym_EQ_GT] = ACTIONS(1039), - [anon_sym_COLON] = ACTIONS(1037), - [anon_sym_DOLLAR] = ACTIONS(1039), - [anon_sym_PLUS] = ACTIONS(1037), - [anon_sym_STAR] = ACTIONS(1037), - [anon_sym_QMARK] = ACTIONS(1039), - [anon_sym_u8] = ACTIONS(1037), - [anon_sym_i8] = ACTIONS(1037), - [anon_sym_u16] = ACTIONS(1037), - [anon_sym_i16] = ACTIONS(1037), - [anon_sym_u32] = ACTIONS(1037), - [anon_sym_i32] = ACTIONS(1037), - [anon_sym_u64] = ACTIONS(1037), - [anon_sym_i64] = ACTIONS(1037), - [anon_sym_u128] = ACTIONS(1037), - [anon_sym_i128] = ACTIONS(1037), - [anon_sym_isize] = ACTIONS(1037), - [anon_sym_usize] = ACTIONS(1037), - [anon_sym_f32] = ACTIONS(1037), - [anon_sym_f64] = ACTIONS(1037), - [anon_sym_bool] = ACTIONS(1037), - [anon_sym_str] = ACTIONS(1037), - [anon_sym_char] = ACTIONS(1037), - [anon_sym_DASH] = ACTIONS(1037), - [anon_sym_SLASH] = ACTIONS(1037), - [anon_sym_PERCENT] = ACTIONS(1037), - [anon_sym_CARET] = ACTIONS(1037), - [anon_sym_BANG] = ACTIONS(1037), - [anon_sym_AMP] = ACTIONS(1037), - [anon_sym_PIPE] = ACTIONS(1037), - [anon_sym_AMP_AMP] = ACTIONS(1039), - [anon_sym_PIPE_PIPE] = ACTIONS(1039), - [anon_sym_LT_LT] = ACTIONS(1037), - [anon_sym_GT_GT] = ACTIONS(1037), - [anon_sym_PLUS_EQ] = ACTIONS(1039), - [anon_sym_DASH_EQ] = ACTIONS(1039), - [anon_sym_STAR_EQ] = ACTIONS(1039), - [anon_sym_SLASH_EQ] = ACTIONS(1039), - [anon_sym_PERCENT_EQ] = ACTIONS(1039), - [anon_sym_CARET_EQ] = ACTIONS(1039), - [anon_sym_AMP_EQ] = ACTIONS(1039), - [anon_sym_PIPE_EQ] = ACTIONS(1039), - [anon_sym_LT_LT_EQ] = ACTIONS(1039), - [anon_sym_GT_GT_EQ] = ACTIONS(1039), - [anon_sym_EQ] = ACTIONS(1037), - [anon_sym_EQ_EQ] = ACTIONS(1039), - [anon_sym_BANG_EQ] = ACTIONS(1039), - [anon_sym_GT] = ACTIONS(1037), - [anon_sym_LT] = ACTIONS(1037), - [anon_sym_GT_EQ] = ACTIONS(1039), - [anon_sym_LT_EQ] = ACTIONS(1039), - [anon_sym_AT] = ACTIONS(1039), - [anon_sym__] = ACTIONS(1037), - [anon_sym_DOT] = ACTIONS(1037), - [anon_sym_DOT_DOT] = ACTIONS(1037), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1039), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1039), - [anon_sym_COMMA] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(1039), - [anon_sym_DASH_GT] = ACTIONS(1039), - [anon_sym_POUND] = ACTIONS(1039), - [anon_sym_SQUOTE] = ACTIONS(1037), - [anon_sym_as] = ACTIONS(1037), - [anon_sym_async] = ACTIONS(1037), - [anon_sym_await] = ACTIONS(1037), - [anon_sym_break] = ACTIONS(1037), - [anon_sym_const] = ACTIONS(1037), - [anon_sym_continue] = ACTIONS(1037), - [anon_sym_default] = ACTIONS(1037), - [anon_sym_enum] = ACTIONS(1037), - [anon_sym_fn] = ACTIONS(1037), - [anon_sym_for] = ACTIONS(1037), - [anon_sym_gen] = ACTIONS(1037), - [anon_sym_if] = ACTIONS(1037), - [anon_sym_impl] = ACTIONS(1037), - [anon_sym_let] = ACTIONS(1037), - [anon_sym_loop] = ACTIONS(1037), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_mod] = ACTIONS(1037), - [anon_sym_pub] = ACTIONS(1037), - [anon_sym_return] = ACTIONS(1037), - [anon_sym_static] = ACTIONS(1037), - [anon_sym_struct] = ACTIONS(1037), - [anon_sym_trait] = ACTIONS(1037), - [anon_sym_type] = ACTIONS(1037), - [anon_sym_union] = ACTIONS(1037), - [anon_sym_unsafe] = ACTIONS(1037), - [anon_sym_use] = ACTIONS(1037), - [anon_sym_where] = ACTIONS(1037), - [anon_sym_while] = ACTIONS(1037), - [sym_mutable_specifier] = ACTIONS(1037), - [sym_integer_literal] = ACTIONS(1039), - [aux_sym_string_literal_token1] = ACTIONS(1039), - [sym_char_literal] = ACTIONS(1039), - [anon_sym_true] = ACTIONS(1037), - [anon_sym_false] = ACTIONS(1037), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1037), - [sym_super] = ACTIONS(1037), - [sym_crate] = ACTIONS(1037), - [sym__raw_string_literal_start] = ACTIONS(1039), - [sym_float_literal] = ACTIONS(1039), - }, - [STATE(199)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(199), - [sym_block_comment] = STATE(199), - [aux_sym_enum_variant_list_repeat1] = STATE(1058), - [sym_identifier] = ACTIONS(339), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACK] = ACTIONS(1011), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -40116,26 +40974,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(752), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -40150,177 +41008,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(200)] = { - [sym_line_comment] = STATE(200), - [sym_block_comment] = STATE(200), - [sym_identifier] = ACTIONS(1041), - [anon_sym_SEMI] = ACTIONS(1043), - [anon_sym_LPAREN] = ACTIONS(1043), - [anon_sym_RPAREN] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1043), - [anon_sym_RBRACK] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1043), - [anon_sym_RBRACE] = ACTIONS(1043), - [anon_sym_EQ_GT] = ACTIONS(1043), - [anon_sym_COLON] = ACTIONS(1041), - [anon_sym_DOLLAR] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1041), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1043), - [anon_sym_u8] = ACTIONS(1041), - [anon_sym_i8] = ACTIONS(1041), - [anon_sym_u16] = ACTIONS(1041), - [anon_sym_i16] = ACTIONS(1041), - [anon_sym_u32] = ACTIONS(1041), - [anon_sym_i32] = ACTIONS(1041), - [anon_sym_u64] = ACTIONS(1041), - [anon_sym_i64] = ACTIONS(1041), - [anon_sym_u128] = ACTIONS(1041), - [anon_sym_i128] = ACTIONS(1041), - [anon_sym_isize] = ACTIONS(1041), - [anon_sym_usize] = ACTIONS(1041), - [anon_sym_f32] = ACTIONS(1041), - [anon_sym_f64] = ACTIONS(1041), - [anon_sym_bool] = ACTIONS(1041), - [anon_sym_str] = ACTIONS(1041), - [anon_sym_char] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_PERCENT] = ACTIONS(1041), - [anon_sym_CARET] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1041), - [anon_sym_PIPE] = ACTIONS(1041), - [anon_sym_AMP_AMP] = ACTIONS(1043), - [anon_sym_PIPE_PIPE] = ACTIONS(1043), - [anon_sym_LT_LT] = ACTIONS(1041), - [anon_sym_GT_GT] = ACTIONS(1041), - [anon_sym_PLUS_EQ] = ACTIONS(1043), - [anon_sym_DASH_EQ] = ACTIONS(1043), - [anon_sym_STAR_EQ] = ACTIONS(1043), - [anon_sym_SLASH_EQ] = ACTIONS(1043), - [anon_sym_PERCENT_EQ] = ACTIONS(1043), - [anon_sym_CARET_EQ] = ACTIONS(1043), - [anon_sym_AMP_EQ] = ACTIONS(1043), - [anon_sym_PIPE_EQ] = ACTIONS(1043), - [anon_sym_LT_LT_EQ] = ACTIONS(1043), - [anon_sym_GT_GT_EQ] = ACTIONS(1043), - [anon_sym_EQ] = ACTIONS(1041), - [anon_sym_EQ_EQ] = ACTIONS(1043), - [anon_sym_BANG_EQ] = ACTIONS(1043), - [anon_sym_GT] = ACTIONS(1041), - [anon_sym_LT] = ACTIONS(1041), - [anon_sym_GT_EQ] = ACTIONS(1043), - [anon_sym_LT_EQ] = ACTIONS(1043), - [anon_sym_AT] = ACTIONS(1043), - [anon_sym__] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1041), - [anon_sym_DOT_DOT] = ACTIONS(1041), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1043), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1043), - [anon_sym_COMMA] = ACTIONS(1043), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym_DASH_GT] = ACTIONS(1043), - [anon_sym_POUND] = ACTIONS(1043), - [anon_sym_SQUOTE] = ACTIONS(1041), - [anon_sym_as] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_await] = ACTIONS(1041), - [anon_sym_break] = ACTIONS(1041), - [anon_sym_const] = ACTIONS(1041), - [anon_sym_continue] = ACTIONS(1041), - [anon_sym_default] = ACTIONS(1041), - [anon_sym_enum] = ACTIONS(1041), - [anon_sym_fn] = ACTIONS(1041), - [anon_sym_for] = ACTIONS(1041), - [anon_sym_gen] = ACTIONS(1041), - [anon_sym_if] = ACTIONS(1041), - [anon_sym_impl] = ACTIONS(1041), - [anon_sym_let] = ACTIONS(1041), - [anon_sym_loop] = ACTIONS(1041), - [anon_sym_match] = ACTIONS(1041), - [anon_sym_mod] = ACTIONS(1041), - [anon_sym_pub] = ACTIONS(1041), - [anon_sym_return] = ACTIONS(1041), - [anon_sym_static] = ACTIONS(1041), - [anon_sym_struct] = ACTIONS(1041), - [anon_sym_trait] = ACTIONS(1041), - [anon_sym_type] = ACTIONS(1041), - [anon_sym_union] = ACTIONS(1041), - [anon_sym_unsafe] = ACTIONS(1041), - [anon_sym_use] = ACTIONS(1041), - [anon_sym_where] = ACTIONS(1041), - [anon_sym_while] = ACTIONS(1041), - [sym_mutable_specifier] = ACTIONS(1041), - [sym_integer_literal] = ACTIONS(1043), - [aux_sym_string_literal_token1] = ACTIONS(1043), - [sym_char_literal] = ACTIONS(1043), - [anon_sym_true] = ACTIONS(1041), - [anon_sym_false] = ACTIONS(1041), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1041), - [sym_super] = ACTIONS(1041), - [sym_crate] = ACTIONS(1041), - [sym__raw_string_literal_start] = ACTIONS(1043), - [sym_float_literal] = ACTIONS(1043), - }, - [STATE(201)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1969), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(201), - [sym_block_comment] = STATE(201), - [aux_sym_enum_variant_list_repeat1] = STATE(1058), - [sym_identifier] = ACTIONS(339), + [STATE(198)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(233), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(2012), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_block_expression_with_attribute] = STATE(1431), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(524), + [sym_match_expression] = STATE(524), + [sym_while_expression] = STATE(524), + [sym_loop_expression] = STATE(524), + [sym_for_expression] = STATE(524), + [sym_const_block] = STATE(524), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3826), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(524), + [sym_async_block] = STATE(524), + [sym_gen_block] = STATE(524), + [sym_try_block] = STATE(524), + [sym_block] = STATE(524), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(198), + [sym_block_comment] = STATE(198), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(983), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -40346,26 +41093,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(752), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(985), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(987), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(989), + [anon_sym_gen] = ACTIONS(991), + [anon_sym_if] = ACTIONS(993), + [anon_sym_loop] = ACTIONS(995), + [anon_sym_match] = ACTIONS(997), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(999), + [anon_sym_while] = ACTIONS(1001), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(1003), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -40380,867 +41127,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(202)] = { - [sym_line_comment] = STATE(202), - [sym_block_comment] = STATE(202), - [sym_identifier] = ACTIONS(1021), - [anon_sym_SEMI] = ACTIONS(1023), - [anon_sym_LPAREN] = ACTIONS(1023), - [anon_sym_RPAREN] = ACTIONS(1023), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_RBRACK] = ACTIONS(1023), - [anon_sym_LBRACE] = ACTIONS(1023), - [anon_sym_RBRACE] = ACTIONS(1023), - [anon_sym_EQ_GT] = ACTIONS(1023), - [anon_sym_COLON] = ACTIONS(1021), - [anon_sym_DOLLAR] = ACTIONS(1023), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_QMARK] = ACTIONS(1023), - [anon_sym_u8] = ACTIONS(1021), - [anon_sym_i8] = ACTIONS(1021), - [anon_sym_u16] = ACTIONS(1021), - [anon_sym_i16] = ACTIONS(1021), - [anon_sym_u32] = ACTIONS(1021), - [anon_sym_i32] = ACTIONS(1021), - [anon_sym_u64] = ACTIONS(1021), - [anon_sym_i64] = ACTIONS(1021), - [anon_sym_u128] = ACTIONS(1021), - [anon_sym_i128] = ACTIONS(1021), - [anon_sym_isize] = ACTIONS(1021), - [anon_sym_usize] = ACTIONS(1021), - [anon_sym_f32] = ACTIONS(1021), - [anon_sym_f64] = ACTIONS(1021), - [anon_sym_bool] = ACTIONS(1021), - [anon_sym_str] = ACTIONS(1021), - [anon_sym_char] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_PERCENT] = ACTIONS(1021), - [anon_sym_CARET] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1021), - [anon_sym_PIPE] = ACTIONS(1021), - [anon_sym_AMP_AMP] = ACTIONS(1023), - [anon_sym_PIPE_PIPE] = ACTIONS(1023), - [anon_sym_LT_LT] = ACTIONS(1021), - [anon_sym_GT_GT] = ACTIONS(1021), - [anon_sym_PLUS_EQ] = ACTIONS(1023), - [anon_sym_DASH_EQ] = ACTIONS(1023), - [anon_sym_STAR_EQ] = ACTIONS(1023), - [anon_sym_SLASH_EQ] = ACTIONS(1023), - [anon_sym_PERCENT_EQ] = ACTIONS(1023), - [anon_sym_CARET_EQ] = ACTIONS(1023), - [anon_sym_AMP_EQ] = ACTIONS(1023), - [anon_sym_PIPE_EQ] = ACTIONS(1023), - [anon_sym_LT_LT_EQ] = ACTIONS(1023), - [anon_sym_GT_GT_EQ] = ACTIONS(1023), - [anon_sym_EQ] = ACTIONS(1021), - [anon_sym_EQ_EQ] = ACTIONS(1023), - [anon_sym_BANG_EQ] = ACTIONS(1023), - [anon_sym_GT] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(1021), - [anon_sym_GT_EQ] = ACTIONS(1023), - [anon_sym_LT_EQ] = ACTIONS(1023), - [anon_sym_AT] = ACTIONS(1023), - [anon_sym__] = ACTIONS(1021), - [anon_sym_DOT] = ACTIONS(1021), - [anon_sym_DOT_DOT] = ACTIONS(1021), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1023), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1023), - [anon_sym_COMMA] = ACTIONS(1023), - [anon_sym_COLON_COLON] = ACTIONS(1023), - [anon_sym_DASH_GT] = ACTIONS(1023), - [anon_sym_POUND] = ACTIONS(1023), - [anon_sym_SQUOTE] = ACTIONS(1021), - [anon_sym_as] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1021), - [anon_sym_break] = ACTIONS(1021), - [anon_sym_const] = ACTIONS(1021), - [anon_sym_continue] = ACTIONS(1021), - [anon_sym_default] = ACTIONS(1021), - [anon_sym_enum] = ACTIONS(1021), - [anon_sym_fn] = ACTIONS(1021), - [anon_sym_for] = ACTIONS(1021), - [anon_sym_gen] = ACTIONS(1021), - [anon_sym_if] = ACTIONS(1021), - [anon_sym_impl] = ACTIONS(1021), - [anon_sym_let] = ACTIONS(1021), - [anon_sym_loop] = ACTIONS(1021), - [anon_sym_match] = ACTIONS(1021), - [anon_sym_mod] = ACTIONS(1021), - [anon_sym_pub] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1021), - [anon_sym_static] = ACTIONS(1021), - [anon_sym_struct] = ACTIONS(1021), - [anon_sym_trait] = ACTIONS(1021), - [anon_sym_type] = ACTIONS(1021), - [anon_sym_union] = ACTIONS(1021), - [anon_sym_unsafe] = ACTIONS(1021), - [anon_sym_use] = ACTIONS(1021), - [anon_sym_where] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1021), - [sym_mutable_specifier] = ACTIONS(1021), - [sym_integer_literal] = ACTIONS(1023), - [aux_sym_string_literal_token1] = ACTIONS(1023), - [sym_char_literal] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1021), - [anon_sym_false] = ACTIONS(1021), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1021), - [sym_super] = ACTIONS(1021), - [sym_crate] = ACTIONS(1021), - [sym__raw_string_literal_start] = ACTIONS(1023), - [sym_float_literal] = ACTIONS(1023), - }, - [STATE(203)] = { - [sym_line_comment] = STATE(203), - [sym_block_comment] = STATE(203), - [sym_identifier] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(977), - [anon_sym_RPAREN] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(977), - [anon_sym_RBRACK] = ACTIONS(977), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(977), - [anon_sym_EQ_GT] = ACTIONS(977), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(977), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(977), - [anon_sym_u8] = ACTIONS(975), - [anon_sym_i8] = ACTIONS(975), - [anon_sym_u16] = ACTIONS(975), - [anon_sym_i16] = ACTIONS(975), - [anon_sym_u32] = ACTIONS(975), - [anon_sym_i32] = ACTIONS(975), - [anon_sym_u64] = ACTIONS(975), - [anon_sym_i64] = ACTIONS(975), - [anon_sym_u128] = ACTIONS(975), - [anon_sym_i128] = ACTIONS(975), - [anon_sym_isize] = ACTIONS(975), - [anon_sym_usize] = ACTIONS(975), - [anon_sym_f32] = ACTIONS(975), - [anon_sym_f64] = ACTIONS(975), - [anon_sym_bool] = ACTIONS(975), - [anon_sym_str] = ACTIONS(975), - [anon_sym_char] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_CARET] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_AMP_AMP] = ACTIONS(977), - [anon_sym_PIPE_PIPE] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_GT_GT] = ACTIONS(975), - [anon_sym_PLUS_EQ] = ACTIONS(977), - [anon_sym_DASH_EQ] = ACTIONS(977), - [anon_sym_STAR_EQ] = ACTIONS(977), - [anon_sym_SLASH_EQ] = ACTIONS(977), - [anon_sym_PERCENT_EQ] = ACTIONS(977), - [anon_sym_CARET_EQ] = ACTIONS(977), - [anon_sym_AMP_EQ] = ACTIONS(977), - [anon_sym_PIPE_EQ] = ACTIONS(977), - [anon_sym_LT_LT_EQ] = ACTIONS(977), - [anon_sym_GT_GT_EQ] = ACTIONS(977), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_EQ_EQ] = ACTIONS(977), - [anon_sym_BANG_EQ] = ACTIONS(977), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_AT] = ACTIONS(977), - [anon_sym__] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_DOT_DOT] = ACTIONS(975), - [anon_sym_DOT_DOT_DOT] = ACTIONS(977), - [anon_sym_DOT_DOT_EQ] = ACTIONS(977), - [anon_sym_COMMA] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(977), - [anon_sym_DASH_GT] = ACTIONS(977), - [anon_sym_POUND] = ACTIONS(977), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_as] = ACTIONS(975), - [anon_sym_async] = ACTIONS(975), - [anon_sym_await] = ACTIONS(975), - [anon_sym_break] = ACTIONS(975), - [anon_sym_const] = ACTIONS(975), - [anon_sym_continue] = ACTIONS(975), - [anon_sym_default] = ACTIONS(975), - [anon_sym_enum] = ACTIONS(975), - [anon_sym_fn] = ACTIONS(975), - [anon_sym_for] = ACTIONS(975), - [anon_sym_gen] = ACTIONS(975), - [anon_sym_if] = ACTIONS(975), - [anon_sym_impl] = ACTIONS(975), - [anon_sym_let] = ACTIONS(975), - [anon_sym_loop] = ACTIONS(975), - [anon_sym_match] = ACTIONS(975), - [anon_sym_mod] = ACTIONS(975), - [anon_sym_pub] = ACTIONS(975), - [anon_sym_return] = ACTIONS(975), - [anon_sym_static] = ACTIONS(975), - [anon_sym_struct] = ACTIONS(975), - [anon_sym_trait] = ACTIONS(975), - [anon_sym_type] = ACTIONS(975), - [anon_sym_union] = ACTIONS(975), - [anon_sym_unsafe] = ACTIONS(975), - [anon_sym_use] = ACTIONS(975), - [anon_sym_where] = ACTIONS(975), - [anon_sym_while] = ACTIONS(975), - [sym_mutable_specifier] = ACTIONS(975), - [sym_integer_literal] = ACTIONS(977), - [aux_sym_string_literal_token1] = ACTIONS(977), - [sym_char_literal] = ACTIONS(977), - [anon_sym_true] = ACTIONS(975), - [anon_sym_false] = ACTIONS(975), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(975), - [sym_super] = ACTIONS(975), - [sym_crate] = ACTIONS(975), - [sym__raw_string_literal_start] = ACTIONS(977), - [sym_float_literal] = ACTIONS(977), - }, - [STATE(204)] = { - [sym_line_comment] = STATE(204), - [sym_block_comment] = STATE(204), - [sym_identifier] = ACTIONS(1045), - [anon_sym_SEMI] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1047), - [anon_sym_RPAREN] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_RBRACK] = ACTIONS(1047), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_RBRACE] = ACTIONS(1047), - [anon_sym_EQ_GT] = ACTIONS(1047), - [anon_sym_COLON] = ACTIONS(1045), - [anon_sym_DOLLAR] = ACTIONS(1047), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_QMARK] = ACTIONS(1047), - [anon_sym_u8] = ACTIONS(1045), - [anon_sym_i8] = ACTIONS(1045), - [anon_sym_u16] = ACTIONS(1045), - [anon_sym_i16] = ACTIONS(1045), - [anon_sym_u32] = ACTIONS(1045), - [anon_sym_i32] = ACTIONS(1045), - [anon_sym_u64] = ACTIONS(1045), - [anon_sym_i64] = ACTIONS(1045), - [anon_sym_u128] = ACTIONS(1045), - [anon_sym_i128] = ACTIONS(1045), - [anon_sym_isize] = ACTIONS(1045), - [anon_sym_usize] = ACTIONS(1045), - [anon_sym_f32] = ACTIONS(1045), - [anon_sym_f64] = ACTIONS(1045), - [anon_sym_bool] = ACTIONS(1045), - [anon_sym_str] = ACTIONS(1045), - [anon_sym_char] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_SLASH] = ACTIONS(1045), - [anon_sym_PERCENT] = ACTIONS(1045), - [anon_sym_CARET] = ACTIONS(1045), - [anon_sym_BANG] = ACTIONS(1045), - [anon_sym_AMP] = ACTIONS(1045), - [anon_sym_PIPE] = ACTIONS(1045), - [anon_sym_AMP_AMP] = ACTIONS(1047), - [anon_sym_PIPE_PIPE] = ACTIONS(1047), - [anon_sym_LT_LT] = ACTIONS(1045), - [anon_sym_GT_GT] = ACTIONS(1045), - [anon_sym_PLUS_EQ] = ACTIONS(1047), - [anon_sym_DASH_EQ] = ACTIONS(1047), - [anon_sym_STAR_EQ] = ACTIONS(1047), - [anon_sym_SLASH_EQ] = ACTIONS(1047), - [anon_sym_PERCENT_EQ] = ACTIONS(1047), - [anon_sym_CARET_EQ] = ACTIONS(1047), - [anon_sym_AMP_EQ] = ACTIONS(1047), - [anon_sym_PIPE_EQ] = ACTIONS(1047), - [anon_sym_LT_LT_EQ] = ACTIONS(1047), - [anon_sym_GT_GT_EQ] = ACTIONS(1047), - [anon_sym_EQ] = ACTIONS(1045), - [anon_sym_EQ_EQ] = ACTIONS(1047), - [anon_sym_BANG_EQ] = ACTIONS(1047), - [anon_sym_GT] = ACTIONS(1045), - [anon_sym_LT] = ACTIONS(1045), - [anon_sym_GT_EQ] = ACTIONS(1047), - [anon_sym_LT_EQ] = ACTIONS(1047), - [anon_sym_AT] = ACTIONS(1047), - [anon_sym__] = ACTIONS(1045), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_DOT_DOT] = ACTIONS(1045), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1047), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1047), - [anon_sym_COMMA] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1047), - [anon_sym_DASH_GT] = ACTIONS(1047), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_SQUOTE] = ACTIONS(1045), - [anon_sym_as] = ACTIONS(1045), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_await] = ACTIONS(1045), - [anon_sym_break] = ACTIONS(1045), - [anon_sym_const] = ACTIONS(1045), - [anon_sym_continue] = ACTIONS(1045), - [anon_sym_default] = ACTIONS(1045), - [anon_sym_enum] = ACTIONS(1045), - [anon_sym_fn] = ACTIONS(1045), - [anon_sym_for] = ACTIONS(1045), - [anon_sym_gen] = ACTIONS(1045), - [anon_sym_if] = ACTIONS(1045), - [anon_sym_impl] = ACTIONS(1045), - [anon_sym_let] = ACTIONS(1045), - [anon_sym_loop] = ACTIONS(1045), - [anon_sym_match] = ACTIONS(1045), - [anon_sym_mod] = ACTIONS(1045), - [anon_sym_pub] = ACTIONS(1045), - [anon_sym_return] = ACTIONS(1045), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_struct] = ACTIONS(1045), - [anon_sym_trait] = ACTIONS(1045), - [anon_sym_type] = ACTIONS(1045), - [anon_sym_union] = ACTIONS(1045), - [anon_sym_unsafe] = ACTIONS(1045), - [anon_sym_use] = ACTIONS(1045), - [anon_sym_where] = ACTIONS(1045), - [anon_sym_while] = ACTIONS(1045), - [sym_mutable_specifier] = ACTIONS(1045), - [sym_integer_literal] = ACTIONS(1047), - [aux_sym_string_literal_token1] = ACTIONS(1047), - [sym_char_literal] = ACTIONS(1047), - [anon_sym_true] = ACTIONS(1045), - [anon_sym_false] = ACTIONS(1045), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1045), - [sym_super] = ACTIONS(1045), - [sym_crate] = ACTIONS(1045), - [sym__raw_string_literal_start] = ACTIONS(1047), - [sym_float_literal] = ACTIONS(1047), - }, - [STATE(205)] = { - [sym_line_comment] = STATE(205), - [sym_block_comment] = STATE(205), - [sym_identifier] = ACTIONS(951), - [anon_sym_SEMI] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_RPAREN] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(953), - [anon_sym_RBRACK] = ACTIONS(953), - [anon_sym_LBRACE] = ACTIONS(953), - [anon_sym_RBRACE] = ACTIONS(953), - [anon_sym_EQ_GT] = ACTIONS(953), - [anon_sym_COLON] = ACTIONS(951), - [anon_sym_DOLLAR] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(951), - [anon_sym_STAR] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(953), - [anon_sym_u8] = ACTIONS(951), - [anon_sym_i8] = ACTIONS(951), - [anon_sym_u16] = ACTIONS(951), - [anon_sym_i16] = ACTIONS(951), - [anon_sym_u32] = ACTIONS(951), - [anon_sym_i32] = ACTIONS(951), - [anon_sym_u64] = ACTIONS(951), - [anon_sym_i64] = ACTIONS(951), - [anon_sym_u128] = ACTIONS(951), - [anon_sym_i128] = ACTIONS(951), - [anon_sym_isize] = ACTIONS(951), - [anon_sym_usize] = ACTIONS(951), - [anon_sym_f32] = ACTIONS(951), - [anon_sym_f64] = ACTIONS(951), - [anon_sym_bool] = ACTIONS(951), - [anon_sym_str] = ACTIONS(951), - [anon_sym_char] = ACTIONS(951), - [anon_sym_DASH] = ACTIONS(951), - [anon_sym_SLASH] = ACTIONS(951), - [anon_sym_PERCENT] = ACTIONS(951), - [anon_sym_CARET] = ACTIONS(951), - [anon_sym_BANG] = ACTIONS(951), - [anon_sym_AMP] = ACTIONS(951), - [anon_sym_PIPE] = ACTIONS(951), - [anon_sym_AMP_AMP] = ACTIONS(953), - [anon_sym_PIPE_PIPE] = ACTIONS(953), - [anon_sym_LT_LT] = ACTIONS(951), - [anon_sym_GT_GT] = ACTIONS(951), - [anon_sym_PLUS_EQ] = ACTIONS(953), - [anon_sym_DASH_EQ] = ACTIONS(953), - [anon_sym_STAR_EQ] = ACTIONS(953), - [anon_sym_SLASH_EQ] = ACTIONS(953), - [anon_sym_PERCENT_EQ] = ACTIONS(953), - [anon_sym_CARET_EQ] = ACTIONS(953), - [anon_sym_AMP_EQ] = ACTIONS(953), - [anon_sym_PIPE_EQ] = ACTIONS(953), - [anon_sym_LT_LT_EQ] = ACTIONS(953), - [anon_sym_GT_GT_EQ] = ACTIONS(953), - [anon_sym_EQ] = ACTIONS(951), - [anon_sym_EQ_EQ] = ACTIONS(953), - [anon_sym_BANG_EQ] = ACTIONS(953), - [anon_sym_GT] = ACTIONS(951), - [anon_sym_LT] = ACTIONS(951), - [anon_sym_GT_EQ] = ACTIONS(953), - [anon_sym_LT_EQ] = ACTIONS(953), - [anon_sym_AT] = ACTIONS(953), - [anon_sym__] = ACTIONS(951), - [anon_sym_DOT] = ACTIONS(951), - [anon_sym_DOT_DOT] = ACTIONS(951), - [anon_sym_DOT_DOT_DOT] = ACTIONS(953), - [anon_sym_DOT_DOT_EQ] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(953), - [anon_sym_COLON_COLON] = ACTIONS(953), - [anon_sym_DASH_GT] = ACTIONS(953), - [anon_sym_POUND] = ACTIONS(953), - [anon_sym_SQUOTE] = ACTIONS(951), - [anon_sym_as] = ACTIONS(951), - [anon_sym_async] = ACTIONS(951), - [anon_sym_await] = ACTIONS(951), - [anon_sym_break] = ACTIONS(951), - [anon_sym_const] = ACTIONS(951), - [anon_sym_continue] = ACTIONS(951), - [anon_sym_default] = ACTIONS(951), - [anon_sym_enum] = ACTIONS(951), - [anon_sym_fn] = ACTIONS(951), - [anon_sym_for] = ACTIONS(951), - [anon_sym_gen] = ACTIONS(951), - [anon_sym_if] = ACTIONS(951), - [anon_sym_impl] = ACTIONS(951), - [anon_sym_let] = ACTIONS(951), - [anon_sym_loop] = ACTIONS(951), - [anon_sym_match] = ACTIONS(951), - [anon_sym_mod] = ACTIONS(951), - [anon_sym_pub] = ACTIONS(951), - [anon_sym_return] = ACTIONS(951), - [anon_sym_static] = ACTIONS(951), - [anon_sym_struct] = ACTIONS(951), - [anon_sym_trait] = ACTIONS(951), - [anon_sym_type] = ACTIONS(951), - [anon_sym_union] = ACTIONS(951), - [anon_sym_unsafe] = ACTIONS(951), - [anon_sym_use] = ACTIONS(951), - [anon_sym_where] = ACTIONS(951), - [anon_sym_while] = ACTIONS(951), - [sym_mutable_specifier] = ACTIONS(951), - [sym_integer_literal] = ACTIONS(953), - [aux_sym_string_literal_token1] = ACTIONS(953), - [sym_char_literal] = ACTIONS(953), - [anon_sym_true] = ACTIONS(951), - [anon_sym_false] = ACTIONS(951), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(951), - [sym_super] = ACTIONS(951), - [sym_crate] = ACTIONS(951), - [sym__raw_string_literal_start] = ACTIONS(953), - [sym_float_literal] = ACTIONS(953), - }, - [STATE(206)] = { - [sym_line_comment] = STATE(206), - [sym_block_comment] = STATE(206), - [sym_identifier] = ACTIONS(955), - [anon_sym_SEMI] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(957), - [anon_sym_RPAREN] = ACTIONS(957), - [anon_sym_LBRACK] = ACTIONS(957), - [anon_sym_RBRACK] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_RBRACE] = ACTIONS(957), - [anon_sym_EQ_GT] = ACTIONS(957), - [anon_sym_COLON] = ACTIONS(955), - [anon_sym_DOLLAR] = ACTIONS(957), - [anon_sym_PLUS] = ACTIONS(955), - [anon_sym_STAR] = ACTIONS(955), - [anon_sym_QMARK] = ACTIONS(957), - [anon_sym_u8] = ACTIONS(955), - [anon_sym_i8] = ACTIONS(955), - [anon_sym_u16] = ACTIONS(955), - [anon_sym_i16] = ACTIONS(955), - [anon_sym_u32] = ACTIONS(955), - [anon_sym_i32] = ACTIONS(955), - [anon_sym_u64] = ACTIONS(955), - [anon_sym_i64] = ACTIONS(955), - [anon_sym_u128] = ACTIONS(955), - [anon_sym_i128] = ACTIONS(955), - [anon_sym_isize] = ACTIONS(955), - [anon_sym_usize] = ACTIONS(955), - [anon_sym_f32] = ACTIONS(955), - [anon_sym_f64] = ACTIONS(955), - [anon_sym_bool] = ACTIONS(955), - [anon_sym_str] = ACTIONS(955), - [anon_sym_char] = ACTIONS(955), - [anon_sym_DASH] = ACTIONS(955), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), - [anon_sym_CARET] = ACTIONS(955), - [anon_sym_BANG] = ACTIONS(955), - [anon_sym_AMP] = ACTIONS(955), - [anon_sym_PIPE] = ACTIONS(955), - [anon_sym_AMP_AMP] = ACTIONS(957), - [anon_sym_PIPE_PIPE] = ACTIONS(957), - [anon_sym_LT_LT] = ACTIONS(955), - [anon_sym_GT_GT] = ACTIONS(955), - [anon_sym_PLUS_EQ] = ACTIONS(957), - [anon_sym_DASH_EQ] = ACTIONS(957), - [anon_sym_STAR_EQ] = ACTIONS(957), - [anon_sym_SLASH_EQ] = ACTIONS(957), - [anon_sym_PERCENT_EQ] = ACTIONS(957), - [anon_sym_CARET_EQ] = ACTIONS(957), - [anon_sym_AMP_EQ] = ACTIONS(957), - [anon_sym_PIPE_EQ] = ACTIONS(957), - [anon_sym_LT_LT_EQ] = ACTIONS(957), - [anon_sym_GT_GT_EQ] = ACTIONS(957), - [anon_sym_EQ] = ACTIONS(955), - [anon_sym_EQ_EQ] = ACTIONS(957), - [anon_sym_BANG_EQ] = ACTIONS(957), - [anon_sym_GT] = ACTIONS(955), - [anon_sym_LT] = ACTIONS(955), - [anon_sym_GT_EQ] = ACTIONS(957), - [anon_sym_LT_EQ] = ACTIONS(957), - [anon_sym_AT] = ACTIONS(957), - [anon_sym__] = ACTIONS(955), - [anon_sym_DOT] = ACTIONS(955), - [anon_sym_DOT_DOT] = ACTIONS(955), - [anon_sym_DOT_DOT_DOT] = ACTIONS(957), - [anon_sym_DOT_DOT_EQ] = ACTIONS(957), - [anon_sym_COMMA] = ACTIONS(957), - [anon_sym_COLON_COLON] = ACTIONS(957), - [anon_sym_DASH_GT] = ACTIONS(957), - [anon_sym_POUND] = ACTIONS(957), - [anon_sym_SQUOTE] = ACTIONS(955), - [anon_sym_as] = ACTIONS(955), - [anon_sym_async] = ACTIONS(955), - [anon_sym_await] = ACTIONS(955), - [anon_sym_break] = ACTIONS(955), - [anon_sym_const] = ACTIONS(955), - [anon_sym_continue] = ACTIONS(955), - [anon_sym_default] = ACTIONS(955), - [anon_sym_enum] = ACTIONS(955), - [anon_sym_fn] = ACTIONS(955), - [anon_sym_for] = ACTIONS(955), - [anon_sym_gen] = ACTIONS(955), - [anon_sym_if] = ACTIONS(955), - [anon_sym_impl] = ACTIONS(955), - [anon_sym_let] = ACTIONS(955), - [anon_sym_loop] = ACTIONS(955), - [anon_sym_match] = ACTIONS(955), - [anon_sym_mod] = ACTIONS(955), - [anon_sym_pub] = ACTIONS(955), - [anon_sym_return] = ACTIONS(955), - [anon_sym_static] = ACTIONS(955), - [anon_sym_struct] = ACTIONS(955), - [anon_sym_trait] = ACTIONS(955), - [anon_sym_type] = ACTIONS(955), - [anon_sym_union] = ACTIONS(955), - [anon_sym_unsafe] = ACTIONS(955), - [anon_sym_use] = ACTIONS(955), - [anon_sym_where] = ACTIONS(955), - [anon_sym_while] = ACTIONS(955), - [sym_mutable_specifier] = ACTIONS(955), - [sym_integer_literal] = ACTIONS(957), - [aux_sym_string_literal_token1] = ACTIONS(957), - [sym_char_literal] = ACTIONS(957), - [anon_sym_true] = ACTIONS(955), - [anon_sym_false] = ACTIONS(955), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(955), - [sym_super] = ACTIONS(955), - [sym_crate] = ACTIONS(955), - [sym__raw_string_literal_start] = ACTIONS(957), - [sym_float_literal] = ACTIONS(957), - }, - [STATE(207)] = { - [sym_line_comment] = STATE(207), - [sym_block_comment] = STATE(207), - [sym_identifier] = ACTIONS(1013), - [anon_sym_SEMI] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_RPAREN] = ACTIONS(1015), - [anon_sym_LBRACK] = ACTIONS(1015), - [anon_sym_RBRACK] = ACTIONS(1015), - [anon_sym_LBRACE] = ACTIONS(1015), - [anon_sym_RBRACE] = ACTIONS(1015), - [anon_sym_EQ_GT] = ACTIONS(1015), - [anon_sym_COLON] = ACTIONS(1013), - [anon_sym_DOLLAR] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_STAR] = ACTIONS(1013), - [anon_sym_QMARK] = ACTIONS(1015), - [anon_sym_u8] = ACTIONS(1013), - [anon_sym_i8] = ACTIONS(1013), - [anon_sym_u16] = ACTIONS(1013), - [anon_sym_i16] = ACTIONS(1013), - [anon_sym_u32] = ACTIONS(1013), - [anon_sym_i32] = ACTIONS(1013), - [anon_sym_u64] = ACTIONS(1013), - [anon_sym_i64] = ACTIONS(1013), - [anon_sym_u128] = ACTIONS(1013), - [anon_sym_i128] = ACTIONS(1013), - [anon_sym_isize] = ACTIONS(1013), - [anon_sym_usize] = ACTIONS(1013), - [anon_sym_f32] = ACTIONS(1013), - [anon_sym_f64] = ACTIONS(1013), - [anon_sym_bool] = ACTIONS(1013), - [anon_sym_str] = ACTIONS(1013), - [anon_sym_char] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_SLASH] = ACTIONS(1013), - [anon_sym_PERCENT] = ACTIONS(1013), - [anon_sym_CARET] = ACTIONS(1013), - [anon_sym_BANG] = ACTIONS(1013), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1013), - [anon_sym_AMP_AMP] = ACTIONS(1015), - [anon_sym_PIPE_PIPE] = ACTIONS(1015), - [anon_sym_LT_LT] = ACTIONS(1013), - [anon_sym_GT_GT] = ACTIONS(1013), - [anon_sym_PLUS_EQ] = ACTIONS(1015), - [anon_sym_DASH_EQ] = ACTIONS(1015), - [anon_sym_STAR_EQ] = ACTIONS(1015), - [anon_sym_SLASH_EQ] = ACTIONS(1015), - [anon_sym_PERCENT_EQ] = ACTIONS(1015), - [anon_sym_CARET_EQ] = ACTIONS(1015), - [anon_sym_AMP_EQ] = ACTIONS(1015), - [anon_sym_PIPE_EQ] = ACTIONS(1015), - [anon_sym_LT_LT_EQ] = ACTIONS(1015), - [anon_sym_GT_GT_EQ] = ACTIONS(1015), - [anon_sym_EQ] = ACTIONS(1013), - [anon_sym_EQ_EQ] = ACTIONS(1015), - [anon_sym_BANG_EQ] = ACTIONS(1015), - [anon_sym_GT] = ACTIONS(1013), - [anon_sym_LT] = ACTIONS(1013), - [anon_sym_GT_EQ] = ACTIONS(1015), - [anon_sym_LT_EQ] = ACTIONS(1015), - [anon_sym_AT] = ACTIONS(1015), - [anon_sym__] = ACTIONS(1013), - [anon_sym_DOT] = ACTIONS(1013), - [anon_sym_DOT_DOT] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1015), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1015), - [anon_sym_COMMA] = ACTIONS(1015), - [anon_sym_COLON_COLON] = ACTIONS(1015), - [anon_sym_DASH_GT] = ACTIONS(1015), - [anon_sym_POUND] = ACTIONS(1015), - [anon_sym_SQUOTE] = ACTIONS(1013), - [anon_sym_as] = ACTIONS(1013), - [anon_sym_async] = ACTIONS(1013), - [anon_sym_await] = ACTIONS(1013), - [anon_sym_break] = ACTIONS(1013), - [anon_sym_const] = ACTIONS(1013), - [anon_sym_continue] = ACTIONS(1013), - [anon_sym_default] = ACTIONS(1013), - [anon_sym_enum] = ACTIONS(1013), - [anon_sym_fn] = ACTIONS(1013), - [anon_sym_for] = ACTIONS(1013), - [anon_sym_gen] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1013), - [anon_sym_impl] = ACTIONS(1013), - [anon_sym_let] = ACTIONS(1013), - [anon_sym_loop] = ACTIONS(1013), - [anon_sym_match] = ACTIONS(1013), - [anon_sym_mod] = ACTIONS(1013), - [anon_sym_pub] = ACTIONS(1013), - [anon_sym_return] = ACTIONS(1013), - [anon_sym_static] = ACTIONS(1013), - [anon_sym_struct] = ACTIONS(1013), - [anon_sym_trait] = ACTIONS(1013), - [anon_sym_type] = ACTIONS(1013), - [anon_sym_union] = ACTIONS(1013), - [anon_sym_unsafe] = ACTIONS(1013), - [anon_sym_use] = ACTIONS(1013), - [anon_sym_where] = ACTIONS(1013), - [anon_sym_while] = ACTIONS(1013), - [sym_mutable_specifier] = ACTIONS(1013), - [sym_integer_literal] = ACTIONS(1015), - [aux_sym_string_literal_token1] = ACTIONS(1015), - [sym_char_literal] = ACTIONS(1015), - [anon_sym_true] = ACTIONS(1013), - [anon_sym_false] = ACTIONS(1013), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1013), - [sym_super] = ACTIONS(1013), - [sym_crate] = ACTIONS(1013), - [sym__raw_string_literal_start] = ACTIONS(1015), - [sym_float_literal] = ACTIONS(1015), - }, - [STATE(208)] = { - [sym_line_comment] = STATE(208), - [sym_block_comment] = STATE(208), - [sym_identifier] = ACTIONS(1049), - [anon_sym_SEMI] = ACTIONS(1051), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_RPAREN] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1051), - [anon_sym_RBRACK] = ACTIONS(1051), - [anon_sym_LBRACE] = ACTIONS(1051), - [anon_sym_RBRACE] = ACTIONS(1051), - [anon_sym_EQ_GT] = ACTIONS(1051), - [anon_sym_COLON] = ACTIONS(1049), - [anon_sym_DOLLAR] = ACTIONS(1051), - [anon_sym_PLUS] = ACTIONS(1049), - [anon_sym_STAR] = ACTIONS(1049), - [anon_sym_QMARK] = ACTIONS(1051), - [anon_sym_u8] = ACTIONS(1049), - [anon_sym_i8] = ACTIONS(1049), - [anon_sym_u16] = ACTIONS(1049), - [anon_sym_i16] = ACTIONS(1049), - [anon_sym_u32] = ACTIONS(1049), - [anon_sym_i32] = ACTIONS(1049), - [anon_sym_u64] = ACTIONS(1049), - [anon_sym_i64] = ACTIONS(1049), - [anon_sym_u128] = ACTIONS(1049), - [anon_sym_i128] = ACTIONS(1049), - [anon_sym_isize] = ACTIONS(1049), - [anon_sym_usize] = ACTIONS(1049), - [anon_sym_f32] = ACTIONS(1049), - [anon_sym_f64] = ACTIONS(1049), - [anon_sym_bool] = ACTIONS(1049), - [anon_sym_str] = ACTIONS(1049), - [anon_sym_char] = ACTIONS(1049), - [anon_sym_DASH] = ACTIONS(1049), - [anon_sym_SLASH] = ACTIONS(1049), - [anon_sym_PERCENT] = ACTIONS(1049), - [anon_sym_CARET] = ACTIONS(1049), - [anon_sym_BANG] = ACTIONS(1049), - [anon_sym_AMP] = ACTIONS(1049), - [anon_sym_PIPE] = ACTIONS(1049), - [anon_sym_AMP_AMP] = ACTIONS(1051), - [anon_sym_PIPE_PIPE] = ACTIONS(1051), - [anon_sym_LT_LT] = ACTIONS(1049), - [anon_sym_GT_GT] = ACTIONS(1049), - [anon_sym_PLUS_EQ] = ACTIONS(1051), - [anon_sym_DASH_EQ] = ACTIONS(1051), - [anon_sym_STAR_EQ] = ACTIONS(1051), - [anon_sym_SLASH_EQ] = ACTIONS(1051), - [anon_sym_PERCENT_EQ] = ACTIONS(1051), - [anon_sym_CARET_EQ] = ACTIONS(1051), - [anon_sym_AMP_EQ] = ACTIONS(1051), - [anon_sym_PIPE_EQ] = ACTIONS(1051), - [anon_sym_LT_LT_EQ] = ACTIONS(1051), - [anon_sym_GT_GT_EQ] = ACTIONS(1051), - [anon_sym_EQ] = ACTIONS(1049), - [anon_sym_EQ_EQ] = ACTIONS(1051), - [anon_sym_BANG_EQ] = ACTIONS(1051), - [anon_sym_GT] = ACTIONS(1049), - [anon_sym_LT] = ACTIONS(1049), - [anon_sym_GT_EQ] = ACTIONS(1051), - [anon_sym_LT_EQ] = ACTIONS(1051), - [anon_sym_AT] = ACTIONS(1051), - [anon_sym__] = ACTIONS(1049), - [anon_sym_DOT] = ACTIONS(1049), - [anon_sym_DOT_DOT] = ACTIONS(1049), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1051), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1051), - [anon_sym_COMMA] = ACTIONS(1051), - [anon_sym_COLON_COLON] = ACTIONS(1051), - [anon_sym_DASH_GT] = ACTIONS(1051), - [anon_sym_POUND] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1049), - [anon_sym_as] = ACTIONS(1049), - [anon_sym_async] = ACTIONS(1049), - [anon_sym_await] = ACTIONS(1049), - [anon_sym_break] = ACTIONS(1049), - [anon_sym_const] = ACTIONS(1049), - [anon_sym_continue] = ACTIONS(1049), - [anon_sym_default] = ACTIONS(1049), - [anon_sym_enum] = ACTIONS(1049), - [anon_sym_fn] = ACTIONS(1049), - [anon_sym_for] = ACTIONS(1049), - [anon_sym_gen] = ACTIONS(1049), - [anon_sym_if] = ACTIONS(1049), - [anon_sym_impl] = ACTIONS(1049), - [anon_sym_let] = ACTIONS(1049), - [anon_sym_loop] = ACTIONS(1049), - [anon_sym_match] = ACTIONS(1049), - [anon_sym_mod] = ACTIONS(1049), - [anon_sym_pub] = ACTIONS(1049), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_static] = ACTIONS(1049), - [anon_sym_struct] = ACTIONS(1049), - [anon_sym_trait] = ACTIONS(1049), - [anon_sym_type] = ACTIONS(1049), - [anon_sym_union] = ACTIONS(1049), - [anon_sym_unsafe] = ACTIONS(1049), - [anon_sym_use] = ACTIONS(1049), - [anon_sym_where] = ACTIONS(1049), - [anon_sym_while] = ACTIONS(1049), - [sym_mutable_specifier] = ACTIONS(1049), - [sym_integer_literal] = ACTIONS(1051), - [aux_sym_string_literal_token1] = ACTIONS(1051), - [sym_char_literal] = ACTIONS(1051), - [anon_sym_true] = ACTIONS(1049), - [anon_sym_false] = ACTIONS(1049), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1049), - [sym_super] = ACTIONS(1049), - [sym_crate] = ACTIONS(1049), - [sym__raw_string_literal_start] = ACTIONS(1051), - [sym_float_literal] = ACTIONS(1051), - }, - [STATE(209)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1673), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(209), - [sym_block_comment] = STATE(209), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(339), + [STATE(199)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(310), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1872), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(199), + [sym_block_comment] = STATE(199), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACK] = ACTIONS(1013), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -41266,26 +41212,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(752), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -41300,177 +41246,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(210)] = { - [sym_line_comment] = STATE(210), - [sym_block_comment] = STATE(210), - [sym_identifier] = ACTIONS(915), - [anon_sym_SEMI] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(917), - [anon_sym_RPAREN] = ACTIONS(917), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_RBRACK] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(917), - [anon_sym_RBRACE] = ACTIONS(917), - [anon_sym_EQ_GT] = ACTIONS(917), - [anon_sym_COLON] = ACTIONS(915), - [anon_sym_DOLLAR] = ACTIONS(917), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_STAR] = ACTIONS(915), - [anon_sym_QMARK] = ACTIONS(917), - [anon_sym_u8] = ACTIONS(915), - [anon_sym_i8] = ACTIONS(915), - [anon_sym_u16] = ACTIONS(915), - [anon_sym_i16] = ACTIONS(915), - [anon_sym_u32] = ACTIONS(915), - [anon_sym_i32] = ACTIONS(915), - [anon_sym_u64] = ACTIONS(915), - [anon_sym_i64] = ACTIONS(915), - [anon_sym_u128] = ACTIONS(915), - [anon_sym_i128] = ACTIONS(915), - [anon_sym_isize] = ACTIONS(915), - [anon_sym_usize] = ACTIONS(915), - [anon_sym_f32] = ACTIONS(915), - [anon_sym_f64] = ACTIONS(915), - [anon_sym_bool] = ACTIONS(915), - [anon_sym_str] = ACTIONS(915), - [anon_sym_char] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_SLASH] = ACTIONS(915), - [anon_sym_PERCENT] = ACTIONS(915), - [anon_sym_CARET] = ACTIONS(915), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_AMP] = ACTIONS(915), - [anon_sym_PIPE] = ACTIONS(915), - [anon_sym_AMP_AMP] = ACTIONS(917), - [anon_sym_PIPE_PIPE] = ACTIONS(917), - [anon_sym_LT_LT] = ACTIONS(915), - [anon_sym_GT_GT] = ACTIONS(915), - [anon_sym_PLUS_EQ] = ACTIONS(917), - [anon_sym_DASH_EQ] = ACTIONS(917), - [anon_sym_STAR_EQ] = ACTIONS(917), - [anon_sym_SLASH_EQ] = ACTIONS(917), - [anon_sym_PERCENT_EQ] = ACTIONS(917), - [anon_sym_CARET_EQ] = ACTIONS(917), - [anon_sym_AMP_EQ] = ACTIONS(917), - [anon_sym_PIPE_EQ] = ACTIONS(917), - [anon_sym_LT_LT_EQ] = ACTIONS(917), - [anon_sym_GT_GT_EQ] = ACTIONS(917), - [anon_sym_EQ] = ACTIONS(915), - [anon_sym_EQ_EQ] = ACTIONS(917), - [anon_sym_BANG_EQ] = ACTIONS(917), - [anon_sym_GT] = ACTIONS(915), - [anon_sym_LT] = ACTIONS(915), - [anon_sym_GT_EQ] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(917), - [anon_sym_AT] = ACTIONS(917), - [anon_sym__] = ACTIONS(915), - [anon_sym_DOT] = ACTIONS(915), - [anon_sym_DOT_DOT] = ACTIONS(915), - [anon_sym_DOT_DOT_DOT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ] = ACTIONS(917), - [anon_sym_COMMA] = ACTIONS(917), - [anon_sym_COLON_COLON] = ACTIONS(917), - [anon_sym_DASH_GT] = ACTIONS(917), - [anon_sym_POUND] = ACTIONS(917), - [anon_sym_SQUOTE] = ACTIONS(915), - [anon_sym_as] = ACTIONS(915), - [anon_sym_async] = ACTIONS(915), - [anon_sym_await] = ACTIONS(915), - [anon_sym_break] = ACTIONS(915), - [anon_sym_const] = ACTIONS(915), - [anon_sym_continue] = ACTIONS(915), - [anon_sym_default] = ACTIONS(915), - [anon_sym_enum] = ACTIONS(915), - [anon_sym_fn] = ACTIONS(915), - [anon_sym_for] = ACTIONS(915), - [anon_sym_gen] = ACTIONS(915), - [anon_sym_if] = ACTIONS(915), - [anon_sym_impl] = ACTIONS(915), - [anon_sym_let] = ACTIONS(915), - [anon_sym_loop] = ACTIONS(915), - [anon_sym_match] = ACTIONS(915), - [anon_sym_mod] = ACTIONS(915), - [anon_sym_pub] = ACTIONS(915), - [anon_sym_return] = ACTIONS(915), - [anon_sym_static] = ACTIONS(915), - [anon_sym_struct] = ACTIONS(915), - [anon_sym_trait] = ACTIONS(915), - [anon_sym_type] = ACTIONS(915), - [anon_sym_union] = ACTIONS(915), - [anon_sym_unsafe] = ACTIONS(915), - [anon_sym_use] = ACTIONS(915), - [anon_sym_where] = ACTIONS(915), - [anon_sym_while] = ACTIONS(915), - [sym_mutable_specifier] = ACTIONS(915), - [sym_integer_literal] = ACTIONS(917), - [aux_sym_string_literal_token1] = ACTIONS(917), - [sym_char_literal] = ACTIONS(917), - [anon_sym_true] = ACTIONS(915), - [anon_sym_false] = ACTIONS(915), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(915), - [sym_super] = ACTIONS(915), - [sym_crate] = ACTIONS(915), - [sym__raw_string_literal_start] = ACTIONS(917), - [sym_float_literal] = ACTIONS(917), - }, - [STATE(211)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1709), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(211), - [sym_block_comment] = STATE(211), - [aux_sym_enum_variant_list_repeat1] = STATE(1058), - [sym_identifier] = ACTIONS(339), + [STATE(200)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1812), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(200), + [sym_block_comment] = STATE(200), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1015), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -41496,26 +41331,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(752), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -41530,177 +41365,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(212)] = { - [sym_line_comment] = STATE(212), - [sym_block_comment] = STATE(212), - [sym_identifier] = ACTIONS(1053), - [anon_sym_SEMI] = ACTIONS(1055), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_RPAREN] = ACTIONS(1055), - [anon_sym_LBRACK] = ACTIONS(1055), - [anon_sym_RBRACK] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_RBRACE] = ACTIONS(1055), - [anon_sym_EQ_GT] = ACTIONS(1055), - [anon_sym_COLON] = ACTIONS(1053), - [anon_sym_DOLLAR] = ACTIONS(1055), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_STAR] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_u8] = ACTIONS(1053), - [anon_sym_i8] = ACTIONS(1053), - [anon_sym_u16] = ACTIONS(1053), - [anon_sym_i16] = ACTIONS(1053), - [anon_sym_u32] = ACTIONS(1053), - [anon_sym_i32] = ACTIONS(1053), - [anon_sym_u64] = ACTIONS(1053), - [anon_sym_i64] = ACTIONS(1053), - [anon_sym_u128] = ACTIONS(1053), - [anon_sym_i128] = ACTIONS(1053), - [anon_sym_isize] = ACTIONS(1053), - [anon_sym_usize] = ACTIONS(1053), - [anon_sym_f32] = ACTIONS(1053), - [anon_sym_f64] = ACTIONS(1053), - [anon_sym_bool] = ACTIONS(1053), - [anon_sym_str] = ACTIONS(1053), - [anon_sym_char] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_SLASH] = ACTIONS(1053), - [anon_sym_PERCENT] = ACTIONS(1053), - [anon_sym_CARET] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(1053), - [anon_sym_AMP] = ACTIONS(1053), - [anon_sym_PIPE] = ACTIONS(1053), - [anon_sym_AMP_AMP] = ACTIONS(1055), - [anon_sym_PIPE_PIPE] = ACTIONS(1055), - [anon_sym_LT_LT] = ACTIONS(1053), - [anon_sym_GT_GT] = ACTIONS(1053), - [anon_sym_PLUS_EQ] = ACTIONS(1055), - [anon_sym_DASH_EQ] = ACTIONS(1055), - [anon_sym_STAR_EQ] = ACTIONS(1055), - [anon_sym_SLASH_EQ] = ACTIONS(1055), - [anon_sym_PERCENT_EQ] = ACTIONS(1055), - [anon_sym_CARET_EQ] = ACTIONS(1055), - [anon_sym_AMP_EQ] = ACTIONS(1055), - [anon_sym_PIPE_EQ] = ACTIONS(1055), - [anon_sym_LT_LT_EQ] = ACTIONS(1055), - [anon_sym_GT_GT_EQ] = ACTIONS(1055), - [anon_sym_EQ] = ACTIONS(1053), - [anon_sym_EQ_EQ] = ACTIONS(1055), - [anon_sym_BANG_EQ] = ACTIONS(1055), - [anon_sym_GT] = ACTIONS(1053), - [anon_sym_LT] = ACTIONS(1053), - [anon_sym_GT_EQ] = ACTIONS(1055), - [anon_sym_LT_EQ] = ACTIONS(1055), - [anon_sym_AT] = ACTIONS(1055), - [anon_sym__] = ACTIONS(1053), - [anon_sym_DOT] = ACTIONS(1053), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1055), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1055), - [anon_sym_COMMA] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(1055), - [anon_sym_DASH_GT] = ACTIONS(1055), - [anon_sym_POUND] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_as] = ACTIONS(1053), - [anon_sym_async] = ACTIONS(1053), - [anon_sym_await] = ACTIONS(1053), - [anon_sym_break] = ACTIONS(1053), - [anon_sym_const] = ACTIONS(1053), - [anon_sym_continue] = ACTIONS(1053), - [anon_sym_default] = ACTIONS(1053), - [anon_sym_enum] = ACTIONS(1053), - [anon_sym_fn] = ACTIONS(1053), - [anon_sym_for] = ACTIONS(1053), - [anon_sym_gen] = ACTIONS(1053), - [anon_sym_if] = ACTIONS(1053), - [anon_sym_impl] = ACTIONS(1053), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_loop] = ACTIONS(1053), - [anon_sym_match] = ACTIONS(1053), - [anon_sym_mod] = ACTIONS(1053), - [anon_sym_pub] = ACTIONS(1053), - [anon_sym_return] = ACTIONS(1053), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_struct] = ACTIONS(1053), - [anon_sym_trait] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_union] = ACTIONS(1053), - [anon_sym_unsafe] = ACTIONS(1053), - [anon_sym_use] = ACTIONS(1053), - [anon_sym_where] = ACTIONS(1053), - [anon_sym_while] = ACTIONS(1053), - [sym_mutable_specifier] = ACTIONS(1053), - [sym_integer_literal] = ACTIONS(1055), - [aux_sym_string_literal_token1] = ACTIONS(1055), - [sym_char_literal] = ACTIONS(1055), - [anon_sym_true] = ACTIONS(1053), - [anon_sym_false] = ACTIONS(1053), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1053), - [sym_super] = ACTIONS(1053), - [sym_crate] = ACTIONS(1053), - [sym__raw_string_literal_start] = ACTIONS(1055), - [sym_float_literal] = ACTIONS(1055), - }, - [STATE(213)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1973), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(213), - [sym_block_comment] = STATE(213), - [aux_sym_enum_variant_list_repeat1] = STATE(1058), - [sym_identifier] = ACTIONS(339), + [STATE(201)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(233), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1999), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_block_expression_with_attribute] = STATE(1391), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(528), + [sym_match_expression] = STATE(528), + [sym_while_expression] = STATE(528), + [sym_loop_expression] = STATE(528), + [sym_for_expression] = STATE(528), + [sym_const_block] = STATE(528), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3826), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(528), + [sym_async_block] = STATE(528), + [sym_gen_block] = STATE(528), + [sym_try_block] = STATE(528), + [sym_block] = STATE(528), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(201), + [sym_block_comment] = STATE(201), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(983), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -41726,26 +41450,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(752), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(985), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(987), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(989), + [anon_sym_gen] = ACTIONS(991), + [anon_sym_if] = ACTIONS(993), + [anon_sym_loop] = ACTIONS(995), + [anon_sym_match] = ACTIONS(997), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(999), + [anon_sym_while] = ACTIONS(1001), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(1003), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -41760,62 +41484,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(214)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1689), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(214), - [sym_block_comment] = STATE(214), - [aux_sym_enum_variant_list_repeat1] = STATE(1058), - [sym_identifier] = ACTIONS(339), + [STATE(202)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(310), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1872), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(202), + [sym_block_comment] = STATE(202), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACK] = ACTIONS(1017), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -41841,26 +41569,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(752), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -41875,288 +41603,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(215)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1766), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1480), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(215), - [sym_block_comment] = STATE(215), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1061), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_DASH_GT] = ACTIONS(1065), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(216)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1734), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), - [sym_line_comment] = STATE(216), - [sym_block_comment] = STATE(216), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [sym_mutable_specifier] = ACTIONS(1069), - [anon_sym_raw] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(217)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1817), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1514), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(217), - [sym_block_comment] = STATE(217), - [sym_identifier] = ACTIONS(339), + [STATE(203)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(239), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1942), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(203), + [sym_block_comment] = STATE(203), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1019), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -42175,34 +41681,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1073), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1075), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -42217,404 +41722,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(218)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1781), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_let_condition] = STATE(2860), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(218), - [sym_block_comment] = STATE(218), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(913), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(219)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1686), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1539), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(219), - [sym_block_comment] = STATE(219), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_DASH_GT] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(220)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1858), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1787), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), - [sym_line_comment] = STATE(220), - [sym_block_comment] = STATE(220), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(413), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_DASH_GT] = ACTIONS(1085), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(221)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1882), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(221), - [sym_block_comment] = STATE(221), - [aux_sym_tuple_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(339), + [STATE(204)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1812), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(204), + [sym_block_comment] = STATE(204), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1087), + [anon_sym_RPAREN] = ACTIONS(1021), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -42640,25 +41807,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -42673,62 +41841,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(222)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1882), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(222), - [sym_block_comment] = STATE(222), - [aux_sym_tuple_expression_repeat1] = STATE(246), - [sym_identifier] = ACTIONS(339), + [STATE(205)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1812), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(205), + [sym_block_comment] = STATE(205), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1087), + [anon_sym_RPAREN] = ACTIONS(1023), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -42754,25 +41926,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -42787,174 +41960,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(223)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1477), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(223), - [sym_block_comment] = STATE(223), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [sym_mutable_specifier] = ACTIONS(1089), - [anon_sym_raw] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(224)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1577), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1480), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(224), - [sym_block_comment] = STATE(224), - [sym_identifier] = ACTIONS(339), + [STATE(206)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(310), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1872), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(206), + [sym_block_comment] = STATE(206), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACK] = ACTIONS(1025), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -42973,34 +42038,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1061), - [anon_sym_DOT_DOT] = ACTIONS(1093), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -43015,60 +42079,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(225)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1477), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(225), - [sym_block_comment] = STATE(225), - [sym_identifier] = ACTIONS(339), + [STATE(207)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(310), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1872), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(207), + [sym_block_comment] = STATE(207), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACK] = ACTIONS(1027), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -43092,29 +42162,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1093), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [sym_mutable_specifier] = ACTIONS(1095), - [anon_sym_raw] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -43129,288 +42198,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(226)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1750), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1514), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(226), - [sym_block_comment] = STATE(226), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1073), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_DASH_GT] = ACTIONS(1075), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(227)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1477), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(227), - [sym_block_comment] = STATE(227), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [sym_mutable_specifier] = ACTIONS(1099), - [anon_sym_raw] = ACTIONS(1101), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(228)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1567), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1514), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(228), - [sym_block_comment] = STATE(228), - [sym_identifier] = ACTIONS(339), + [STATE(208)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(345), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1829), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(208), + [sym_block_comment] = STATE(208), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1029), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -43429,34 +42276,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1073), - [anon_sym_DOT_DOT] = ACTIONS(1093), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1075), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -43471,176 +42317,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(229)] = { - [sym_attribute_item] = STATE(400), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_self_parameter] = STATE(2994), - [sym_variadic_parameter] = STATE(2994), - [sym_parameter] = STATE(2994), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2670), - [sym_bracketed_type] = STATE(3699), - [sym_lifetime] = STATE(3008), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3431), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2528), - [sym_scoped_identifier] = STATE(2224), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2596), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), - [sym_line_comment] = STATE(229), - [sym_block_comment] = STATE(229), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1105), - [anon_sym_RPAREN] = ACTIONS(1107), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1115), - [anon_sym_i8] = ACTIONS(1115), - [anon_sym_u16] = ACTIONS(1115), - [anon_sym_i16] = ACTIONS(1115), - [anon_sym_u32] = ACTIONS(1115), - [anon_sym_i32] = ACTIONS(1115), - [anon_sym_u64] = ACTIONS(1115), - [anon_sym_i64] = ACTIONS(1115), - [anon_sym_u128] = ACTIONS(1115), - [anon_sym_i128] = ACTIONS(1115), - [anon_sym_isize] = ACTIONS(1115), - [anon_sym_usize] = ACTIONS(1115), - [anon_sym_f32] = ACTIONS(1115), - [anon_sym_f64] = ACTIONS(1115), - [anon_sym_bool] = ACTIONS(1115), - [anon_sym_str] = ACTIONS(1115), - [anon_sym_char] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1125), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COMMA] = ACTIONS(1133), - [anon_sym_COLON_COLON] = ACTIONS(1135), - [anon_sym_POUND] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1145), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1151), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1151), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1163), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1171), - [sym_super] = ACTIONS(1173), - [sym_crate] = ACTIONS(1173), - [sym_metavariable] = ACTIONS(1175), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), - }, - [STATE(230)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1727), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(230), - [sym_block_comment] = STATE(230), - [aux_sym_tuple_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(339), + [STATE(209)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(233), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1841), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_block_expression_with_attribute] = STATE(1431), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(524), + [sym_match_expression] = STATE(524), + [sym_while_expression] = STATE(524), + [sym_loop_expression] = STATE(524), + [sym_for_expression] = STATE(524), + [sym_const_block] = STATE(524), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3826), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(524), + [sym_async_block] = STATE(524), + [sym_gen_block] = STATE(524), + [sym_try_block] = STATE(524), + [sym_block] = STATE(524), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(209), + [sym_block_comment] = STATE(209), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1179), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(983), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -43666,25 +42402,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(985), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(987), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(989), + [anon_sym_gen] = ACTIONS(991), + [anon_sym_if] = ACTIONS(993), + [anon_sym_loop] = ACTIONS(995), + [anon_sym_match] = ACTIONS(997), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(999), + [anon_sym_while] = ACTIONS(1001), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(1003), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -43699,174 +42436,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(231)] = { - [sym_attribute_item] = STATE(426), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_self_parameter] = STATE(3032), - [sym_variadic_parameter] = STATE(3032), - [sym_parameter] = STATE(3032), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2793), - [sym_bracketed_type] = STATE(3691), - [sym_lifetime] = STATE(3008), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3333), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2540), - [sym_scoped_identifier] = STATE(2311), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3210), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), - [sym_line_comment] = STATE(231), - [sym_block_comment] = STATE(231), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_RPAREN] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u128] = ACTIONS(1187), - [anon_sym_i128] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_str] = ACTIONS(1187), - [anon_sym_char] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1191), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COMMA] = ACTIONS(1193), - [anon_sym_COLON_COLON] = ACTIONS(1195), - [anon_sym_POUND] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1163), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1201), - [sym_super] = ACTIONS(1203), - [sym_crate] = ACTIONS(1203), - [sym_metavariable] = ACTIONS(1205), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), - }, - [STATE(232)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1563), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1539), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(232), - [sym_block_comment] = STATE(232), - [sym_identifier] = ACTIONS(339), + [STATE(210)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(310), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1872), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(210), + [sym_block_comment] = STATE(210), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACK] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -43885,34 +42514,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(1093), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1081), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -43927,60 +42555,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(233)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1820), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1480), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(233), - [sym_block_comment] = STATE(233), - [sym_identifier] = ACTIONS(339), + [STATE(211)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(263), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1607), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(211), + [sym_block_comment] = STATE(211), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -43999,34 +42632,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1061), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -44041,746 +42673,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(234)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1788), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1539), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(234), - [sym_block_comment] = STATE(234), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_DASH_GT] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(235)] = { - [sym_attribute_item] = STATE(400), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_self_parameter] = STATE(2994), - [sym_variadic_parameter] = STATE(2994), - [sym_parameter] = STATE(2994), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2670), - [sym_bracketed_type] = STATE(3699), - [sym_lifetime] = STATE(3008), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3431), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2528), - [sym_scoped_identifier] = STATE(2224), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2596), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), - [sym_line_comment] = STATE(235), - [sym_block_comment] = STATE(235), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1105), - [anon_sym_RPAREN] = ACTIONS(1207), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1115), - [anon_sym_i8] = ACTIONS(1115), - [anon_sym_u16] = ACTIONS(1115), - [anon_sym_i16] = ACTIONS(1115), - [anon_sym_u32] = ACTIONS(1115), - [anon_sym_i32] = ACTIONS(1115), - [anon_sym_u64] = ACTIONS(1115), - [anon_sym_i64] = ACTIONS(1115), - [anon_sym_u128] = ACTIONS(1115), - [anon_sym_i128] = ACTIONS(1115), - [anon_sym_isize] = ACTIONS(1115), - [anon_sym_usize] = ACTIONS(1115), - [anon_sym_f32] = ACTIONS(1115), - [anon_sym_f64] = ACTIONS(1115), - [anon_sym_bool] = ACTIONS(1115), - [anon_sym_str] = ACTIONS(1115), - [anon_sym_char] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1125), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COMMA] = ACTIONS(1209), - [anon_sym_COLON_COLON] = ACTIONS(1135), - [anon_sym_POUND] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1145), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1151), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1151), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1163), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1171), - [sym_super] = ACTIONS(1173), - [sym_crate] = ACTIONS(1173), - [sym_metavariable] = ACTIONS(1175), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), - }, - [STATE(236)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1798), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1509), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(236), - [sym_block_comment] = STATE(236), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1211), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_DASH_GT] = ACTIONS(1213), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(237)] = { - [sym_attribute_item] = STATE(400), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_self_parameter] = STATE(2994), - [sym_variadic_parameter] = STATE(2994), - [sym_parameter] = STATE(2994), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2670), - [sym_bracketed_type] = STATE(3691), - [sym_lifetime] = STATE(3008), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3333), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2540), - [sym_scoped_identifier] = STATE(2311), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3210), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), - [sym_line_comment] = STATE(237), - [sym_block_comment] = STATE(237), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_RPAREN] = ACTIONS(1215), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u128] = ACTIONS(1187), - [anon_sym_i128] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_str] = ACTIONS(1187), - [anon_sym_char] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1217), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COMMA] = ACTIONS(1219), - [anon_sym_COLON_COLON] = ACTIONS(1195), - [anon_sym_POUND] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1163), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1201), - [sym_super] = ACTIONS(1203), - [sym_crate] = ACTIONS(1203), - [sym_metavariable] = ACTIONS(1205), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), - }, - [STATE(238)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1955), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_let_condition] = STATE(2860), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), - [sym_line_comment] = STATE(238), - [sym_block_comment] = STATE(238), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(993), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_let] = ACTIONS(995), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(239)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1967), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(239), - [sym_block_comment] = STATE(239), - [aux_sym_tuple_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1221), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_RPAREN] = ACTIONS(1227), - [anon_sym_LBRACK] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(1232), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_u8] = ACTIONS(1238), - [anon_sym_i8] = ACTIONS(1238), - [anon_sym_u16] = ACTIONS(1238), - [anon_sym_i16] = ACTIONS(1238), - [anon_sym_u32] = ACTIONS(1238), - [anon_sym_i32] = ACTIONS(1238), - [anon_sym_u64] = ACTIONS(1238), - [anon_sym_i64] = ACTIONS(1238), - [anon_sym_u128] = ACTIONS(1238), - [anon_sym_i128] = ACTIONS(1238), - [anon_sym_isize] = ACTIONS(1238), - [anon_sym_usize] = ACTIONS(1238), - [anon_sym_f32] = ACTIONS(1238), - [anon_sym_f64] = ACTIONS(1238), - [anon_sym_bool] = ACTIONS(1238), - [anon_sym_str] = ACTIONS(1238), - [anon_sym_char] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1235), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(1241), - [anon_sym_PIPE] = ACTIONS(1244), - [anon_sym_LT] = ACTIONS(1247), - [anon_sym_DOT_DOT] = ACTIONS(1250), - [anon_sym_COLON_COLON] = ACTIONS(1253), - [anon_sym_SQUOTE] = ACTIONS(1256), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_break] = ACTIONS(1262), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_continue] = ACTIONS(1268), - [anon_sym_default] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1274), - [anon_sym_gen] = ACTIONS(1277), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_loop] = ACTIONS(1283), - [anon_sym_match] = ACTIONS(1286), - [anon_sym_return] = ACTIONS(1289), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_union] = ACTIONS(1271), - [anon_sym_unsafe] = ACTIONS(1295), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_yield] = ACTIONS(1301), - [anon_sym_move] = ACTIONS(1304), - [anon_sym_try] = ACTIONS(1307), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1313), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1316), - [anon_sym_false] = ACTIONS(1316), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1319), - [sym_super] = ACTIONS(1322), - [sym_crate] = ACTIONS(1322), - [sym_metavariable] = ACTIONS(1325), - [sym__raw_string_literal_start] = ACTIONS(1328), - [sym_float_literal] = ACTIONS(1310), - }, - [STATE(240)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1727), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(240), - [sym_block_comment] = STATE(240), - [aux_sym_tuple_expression_repeat1] = STATE(241), - [sym_identifier] = ACTIONS(339), + [STATE(212)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(310), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1872), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(212), + [sym_block_comment] = STATE(212), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1179), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -44806,25 +42757,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -44839,62 +42791,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(241)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1825), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(241), - [sym_block_comment] = STATE(241), - [aux_sym_tuple_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(339), + [STATE(213)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1989), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(213), + [sym_block_comment] = STATE(213), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1331), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -44920,25 +42875,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -44953,518 +42909,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(242)] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_self_parameter] = STATE(2884), - [sym_variadic_parameter] = STATE(2884), - [sym_parameter] = STATE(2884), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2717), - [sym_bracketed_type] = STATE(3691), - [sym_lifetime] = STATE(3008), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3333), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2540), - [sym_scoped_identifier] = STATE(2311), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3210), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), - [sym_line_comment] = STATE(242), - [sym_block_comment] = STATE(242), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_RPAREN] = ACTIONS(1333), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u128] = ACTIONS(1187), - [anon_sym_i128] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_str] = ACTIONS(1187), - [anon_sym_char] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1335), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COMMA] = ACTIONS(1337), - [anon_sym_COLON_COLON] = ACTIONS(1195), - [anon_sym_POUND] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1163), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1201), - [sym_super] = ACTIONS(1203), - [sym_crate] = ACTIONS(1203), - [sym_metavariable] = ACTIONS(1205), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), - }, - [STATE(243)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1863), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1721), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), - [sym_line_comment] = STATE(243), - [sym_block_comment] = STATE(243), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(413), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1339), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_DASH_GT] = ACTIONS(1341), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(244)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1705), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1509), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(244), - [sym_block_comment] = STATE(244), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1211), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_DASH_GT] = ACTIONS(1213), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(245)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1856), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1760), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), - [sym_line_comment] = STATE(245), - [sym_block_comment] = STATE(245), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(413), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1343), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_DASH_GT] = ACTIONS(1345), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(246)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1885), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(246), - [sym_block_comment] = STATE(246), - [aux_sym_tuple_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(339), + [STATE(214)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1992), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(214), + [sym_block_comment] = STATE(214), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1347), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -45490,25 +42993,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -45523,60 +43027,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(247)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1594), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1509), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(247), - [sym_block_comment] = STATE(247), - [sym_identifier] = ACTIONS(339), + [STATE(215)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1791), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(215), + [sym_block_comment] = STATE(215), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -45595,34 +43104,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1211), - [anon_sym_DOT_DOT] = ACTIONS(1093), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1213), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -45637,60 +43145,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(248)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1839), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1539), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(248), - [sym_block_comment] = STATE(248), - [sym_identifier] = ACTIONS(339), + [STATE(216)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1837), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(216), + [sym_block_comment] = STATE(216), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -45709,34 +43222,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1077), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1081), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -45751,60 +43263,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(249)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1848), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1509), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(249), - [sym_block_comment] = STATE(249), - [sym_identifier] = ACTIONS(339), + [STATE(217)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(263), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1546), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(217), + [sym_block_comment] = STATE(217), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -45823,34 +43340,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1211), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1213), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -45865,62 +43381,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(250)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1867), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(250), - [sym_block_comment] = STATE(250), - [aux_sym_tuple_expression_repeat1] = STATE(230), - [sym_identifier] = ACTIONS(339), + [STATE(218)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(2006), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(218), + [sym_block_comment] = STATE(218), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -45946,25 +43465,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -45979,176 +43499,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(251)] = { - [sym_attribute_item] = STATE(400), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_self_parameter] = STATE(2994), - [sym_variadic_parameter] = STATE(2994), - [sym_parameter] = STATE(2994), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2670), - [sym_bracketed_type] = STATE(3699), - [sym_lifetime] = STATE(3008), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3431), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2528), - [sym_scoped_identifier] = STATE(2224), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2596), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), - [sym_line_comment] = STATE(251), - [sym_block_comment] = STATE(251), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1105), - [anon_sym_RPAREN] = ACTIONS(1351), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1115), - [anon_sym_i8] = ACTIONS(1115), - [anon_sym_u16] = ACTIONS(1115), - [anon_sym_i16] = ACTIONS(1115), - [anon_sym_u32] = ACTIONS(1115), - [anon_sym_i32] = ACTIONS(1115), - [anon_sym_u64] = ACTIONS(1115), - [anon_sym_i64] = ACTIONS(1115), - [anon_sym_u128] = ACTIONS(1115), - [anon_sym_i128] = ACTIONS(1115), - [anon_sym_isize] = ACTIONS(1115), - [anon_sym_usize] = ACTIONS(1115), - [anon_sym_f32] = ACTIONS(1115), - [anon_sym_f64] = ACTIONS(1115), - [anon_sym_bool] = ACTIONS(1115), - [anon_sym_str] = ACTIONS(1115), - [anon_sym_char] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1125), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COMMA] = ACTIONS(1353), - [anon_sym_COLON_COLON] = ACTIONS(1135), - [anon_sym_POUND] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1145), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1151), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1151), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1163), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1171), - [sym_super] = ACTIONS(1173), - [sym_crate] = ACTIONS(1173), - [sym_metavariable] = ACTIONS(1175), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), - }, - [STATE(252)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1876), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(252), - [sym_block_comment] = STATE(252), - [aux_sym_tuple_expression_repeat1] = STATE(221), - [sym_identifier] = ACTIONS(339), + [STATE(219)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1879), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(219), + [sym_block_comment] = STATE(219), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1355), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -46174,25 +43583,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -46207,1647 +43617,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(253)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1678), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_let_condition] = STATE(2860), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(253), - [sym_block_comment] = STATE(253), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(913), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(254)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1701), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1514), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(254), - [sym_block_comment] = STATE(254), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1073), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_DASH_GT] = ACTIONS(1075), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(255)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1710), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1480), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(255), - [sym_block_comment] = STATE(255), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1061), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_DASH_GT] = ACTIONS(1065), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(256)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1862), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1922), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), - [sym_line_comment] = STATE(256), - [sym_block_comment] = STATE(256), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(413), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1357), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_DASH_GT] = ACTIONS(1359), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(257)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1830), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_let_condition] = STATE(2860), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), - [sym_line_comment] = STATE(257), - [sym_block_comment] = STATE(257), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_let] = ACTIONS(995), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(258)] = { - [sym_attribute_item] = STATE(405), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_self_parameter] = STATE(3296), - [sym_variadic_parameter] = STATE(3296), - [sym_parameter] = STATE(3296), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3097), - [sym_bracketed_type] = STATE(3691), - [sym_lifetime] = STATE(3008), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3333), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2540), - [sym_scoped_identifier] = STATE(2311), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3210), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), - [sym_line_comment] = STATE(258), - [sym_block_comment] = STATE(258), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_RPAREN] = ACTIONS(1361), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u128] = ACTIONS(1187), - [anon_sym_i128] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_str] = ACTIONS(1187), - [anon_sym_char] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1195), - [anon_sym_POUND] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1163), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1201), - [sym_super] = ACTIONS(1203), - [sym_crate] = ACTIONS(1203), - [sym_metavariable] = ACTIONS(1205), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), - }, - [STATE(259)] = { - [sym_attribute_item] = STATE(405), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_self_parameter] = STATE(3296), - [sym_variadic_parameter] = STATE(3296), - [sym_parameter] = STATE(3296), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3097), - [sym_bracketed_type] = STATE(3691), - [sym_lifetime] = STATE(3008), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3333), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2540), - [sym_scoped_identifier] = STATE(2311), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3210), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), - [sym_line_comment] = STATE(259), - [sym_block_comment] = STATE(259), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_RPAREN] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u128] = ACTIONS(1187), - [anon_sym_i128] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_str] = ACTIONS(1187), - [anon_sym_char] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1195), - [anon_sym_POUND] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1163), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1201), - [sym_super] = ACTIONS(1203), - [sym_crate] = ACTIONS(1203), - [sym_metavariable] = ACTIONS(1205), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), - }, - [STATE(260)] = { - [sym_attribute_item] = STATE(405), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_self_parameter] = STATE(3296), - [sym_variadic_parameter] = STATE(3296), - [sym_parameter] = STATE(3296), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3097), - [sym_bracketed_type] = STATE(3691), - [sym_lifetime] = STATE(3008), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3333), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2540), - [sym_scoped_identifier] = STATE(2311), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3210), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), - [sym_line_comment] = STATE(260), - [sym_block_comment] = STATE(260), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_RPAREN] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u128] = ACTIONS(1187), - [anon_sym_i128] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_str] = ACTIONS(1187), - [anon_sym_char] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1195), - [anon_sym_POUND] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1163), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1201), - [sym_super] = ACTIONS(1203), - [sym_crate] = ACTIONS(1203), - [sym_metavariable] = ACTIONS(1205), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), - }, - [STATE(261)] = { - [sym_attribute_item] = STATE(405), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_self_parameter] = STATE(3296), - [sym_variadic_parameter] = STATE(3296), - [sym_parameter] = STATE(3296), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3097), - [sym_bracketed_type] = STATE(3691), - [sym_lifetime] = STATE(3008), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3333), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2540), - [sym_scoped_identifier] = STATE(2311), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3210), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), - [sym_line_comment] = STATE(261), - [sym_block_comment] = STATE(261), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_RPAREN] = ACTIONS(1369), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u128] = ACTIONS(1187), - [anon_sym_i128] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_str] = ACTIONS(1187), - [anon_sym_char] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1195), - [anon_sym_POUND] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1163), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1201), - [sym_super] = ACTIONS(1203), - [sym_crate] = ACTIONS(1203), - [sym_metavariable] = ACTIONS(1205), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), - }, - [STATE(262)] = { - [sym_attribute_item] = STATE(405), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_self_parameter] = STATE(3296), - [sym_variadic_parameter] = STATE(3296), - [sym_parameter] = STATE(3296), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3097), - [sym_bracketed_type] = STATE(3691), - [sym_lifetime] = STATE(3008), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3333), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2540), - [sym_scoped_identifier] = STATE(2311), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3210), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), - [sym_line_comment] = STATE(262), - [sym_block_comment] = STATE(262), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_RPAREN] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u128] = ACTIONS(1187), - [anon_sym_i128] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_str] = ACTIONS(1187), - [anon_sym_char] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1195), - [anon_sym_POUND] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1163), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1201), - [sym_super] = ACTIONS(1203), - [sym_crate] = ACTIONS(1203), - [sym_metavariable] = ACTIONS(1205), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), - }, - [STATE(263)] = { - [sym_attribute_item] = STATE(405), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_self_parameter] = STATE(3296), - [sym_variadic_parameter] = STATE(3296), - [sym_parameter] = STATE(3296), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3097), - [sym_bracketed_type] = STATE(3691), - [sym_lifetime] = STATE(3008), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3333), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2540), - [sym_scoped_identifier] = STATE(2311), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3210), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), - [sym_line_comment] = STATE(263), - [sym_block_comment] = STATE(263), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_RPAREN] = ACTIONS(1373), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u128] = ACTIONS(1187), - [anon_sym_i128] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_str] = ACTIONS(1187), - [anon_sym_char] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1195), - [anon_sym_POUND] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1163), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1201), - [sym_super] = ACTIONS(1203), - [sym_crate] = ACTIONS(1203), - [sym_metavariable] = ACTIONS(1205), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), - }, - [STATE(264)] = { - [sym_attribute_item] = STATE(405), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_self_parameter] = STATE(3296), - [sym_variadic_parameter] = STATE(3296), - [sym_parameter] = STATE(3296), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3097), - [sym_bracketed_type] = STATE(3691), - [sym_lifetime] = STATE(3008), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3333), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2540), - [sym_scoped_identifier] = STATE(2311), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3210), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), - [sym_line_comment] = STATE(264), - [sym_block_comment] = STATE(264), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_RPAREN] = ACTIONS(1375), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u128] = ACTIONS(1187), - [anon_sym_i128] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_str] = ACTIONS(1187), - [anon_sym_char] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1195), - [anon_sym_POUND] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1163), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1201), - [sym_super] = ACTIONS(1203), - [sym_crate] = ACTIONS(1203), - [sym_metavariable] = ACTIONS(1205), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), - }, - [STATE(265)] = { - [sym_attribute_item] = STATE(405), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_self_parameter] = STATE(3296), - [sym_variadic_parameter] = STATE(3296), - [sym_parameter] = STATE(3296), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3097), - [sym_bracketed_type] = STATE(3691), - [sym_lifetime] = STATE(3008), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3333), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2540), - [sym_scoped_identifier] = STATE(2311), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3210), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), - [sym_line_comment] = STATE(265), - [sym_block_comment] = STATE(265), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_RPAREN] = ACTIONS(1377), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u128] = ACTIONS(1187), - [anon_sym_i128] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_str] = ACTIONS(1187), - [anon_sym_char] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1195), - [anon_sym_POUND] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1163), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1201), - [sym_super] = ACTIONS(1203), - [sym_crate] = ACTIONS(1203), - [sym_metavariable] = ACTIONS(1205), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), - }, - [STATE(266)] = { - [sym_attribute_item] = STATE(405), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_self_parameter] = STATE(3296), - [sym_variadic_parameter] = STATE(3296), - [sym_parameter] = STATE(3296), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3097), - [sym_bracketed_type] = STATE(3691), - [sym_lifetime] = STATE(3008), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3333), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2540), - [sym_scoped_identifier] = STATE(2311), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3210), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), - [sym_line_comment] = STATE(266), - [sym_block_comment] = STATE(266), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_RPAREN] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u128] = ACTIONS(1187), - [anon_sym_i128] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_str] = ACTIONS(1187), - [anon_sym_char] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1195), - [anon_sym_POUND] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1163), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1201), - [sym_super] = ACTIONS(1203), - [sym_crate] = ACTIONS(1203), - [sym_metavariable] = ACTIONS(1205), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), - }, - [STATE(267)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1947), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(267), - [sym_block_comment] = STATE(267), - [sym_identifier] = ACTIONS(339), + [STATE(220)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1880), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(220), + [sym_block_comment] = STATE(220), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -47873,25 +43701,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -47906,104 +43735,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(268)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1779), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(268), - [sym_block_comment] = STATE(268), - [sym_identifier] = ACTIONS(475), + [STATE(221)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(263), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1624), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(221), + [sym_block_comment] = STATE(221), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), + [anon_sym_async] = ACTIONS(373), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -48011,111 +43846,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(269)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1675), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(269), - [sym_block_comment] = STATE(269), - [sym_identifier] = ACTIONS(475), + [STATE(222)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(267), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1681), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(222), + [sym_block_comment] = STATE(222), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(736), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -48123,223 +43964,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(270)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1449), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(270), - [sym_block_comment] = STATE(270), - [sym_identifier] = ACTIONS(475), + [STATE(223)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(263), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1625), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(223), + [sym_block_comment] = STATE(223), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), + [anon_sym_async] = ACTIONS(373), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(271)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1650), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(271), - [sym_block_comment] = STATE(271), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -48347,67 +44082,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(272)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1940), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(272), - [sym_block_comment] = STATE(272), - [sym_identifier] = ACTIONS(339), + [STATE(224)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(263), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1626), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(224), + [sym_block_comment] = STATE(224), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -48431,27 +44171,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -48466,60 +44207,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(273)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1874), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(273), - [sym_block_comment] = STATE(273), - [sym_identifier] = ACTIONS(339), + [STATE(225)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(263), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1627), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(225), + [sym_block_comment] = STATE(225), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -48543,27 +44289,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -48578,172 +44325,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(274)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1765), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), - [sym_line_comment] = STATE(274), - [sym_block_comment] = STATE(274), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(275)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1887), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(275), - [sym_block_comment] = STATE(275), - [sym_identifier] = ACTIONS(339), + [STATE(226)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(263), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1631), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(226), + [sym_block_comment] = STATE(226), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -48767,27 +44407,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -48802,1404 +44443,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(276)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1827), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), - [sym_line_comment] = STATE(276), - [sym_block_comment] = STATE(276), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(277)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1864), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), - [sym_line_comment] = STATE(277), - [sym_block_comment] = STATE(277), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(278)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1828), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), - [sym_line_comment] = STATE(278), - [sym_block_comment] = STATE(278), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(279)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1715), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), - [sym_line_comment] = STATE(279), - [sym_block_comment] = STATE(279), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(280)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1829), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), - [sym_line_comment] = STATE(280), - [sym_block_comment] = STATE(280), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(281)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1830), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), - [sym_line_comment] = STATE(281), - [sym_block_comment] = STATE(281), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(282)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1831), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), - [sym_line_comment] = STATE(282), - [sym_block_comment] = STATE(282), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(283)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1832), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), - [sym_line_comment] = STATE(283), - [sym_block_comment] = STATE(283), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(284)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1833), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), - [sym_line_comment] = STATE(284), - [sym_block_comment] = STATE(284), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(285)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1834), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), - [sym_line_comment] = STATE(285), - [sym_block_comment] = STATE(285), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(286)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1835), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), - [sym_line_comment] = STATE(286), - [sym_block_comment] = STATE(286), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(287)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1780), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(287), - [sym_block_comment] = STATE(287), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1381), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(288)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1888), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(481), - [sym_match_expression] = STATE(481), - [sym_while_expression] = STATE(481), - [sym_loop_expression] = STATE(481), - [sym_for_expression] = STATE(481), - [sym_const_block] = STATE(481), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), + [STATE(227)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(263), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1632), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), [sym_label] = STATE(3767), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(481), - [sym_async_block] = STATE(481), - [sym_gen_block] = STATE(481), - [sym_try_block] = STATE(481), - [sym_block] = STATE(481), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(288), - [sym_block_comment] = STATE(288), - [sym_identifier] = ACTIONS(339), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(227), + [sym_block_comment] = STATE(227), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -50223,27 +44525,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1385), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1389), - [anon_sym_gen] = ACTIONS(1391), - [anon_sym_if] = ACTIONS(1393), - [anon_sym_loop] = ACTIONS(1395), - [anon_sym_match] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(1399), - [anon_sym_while] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1403), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -50258,284 +44561,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(289)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1879), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), - [sym_line_comment] = STATE(289), - [sym_block_comment] = STATE(289), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(290)] = { - [sym_else_clause] = STATE(407), - [sym_line_comment] = STATE(290), - [sym_block_comment] = STATE(290), - [ts_builtin_sym_end] = ACTIONS(1405), - [sym_identifier] = ACTIONS(1407), - [anon_sym_SEMI] = ACTIONS(1405), - [anon_sym_macro_rules_BANG] = ACTIONS(1405), - [anon_sym_LPAREN] = ACTIONS(1405), - [anon_sym_LBRACK] = ACTIONS(1405), - [anon_sym_LBRACE] = ACTIONS(1405), - [anon_sym_RBRACE] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1407), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_QMARK] = ACTIONS(1405), - [anon_sym_u8] = ACTIONS(1407), - [anon_sym_i8] = ACTIONS(1407), - [anon_sym_u16] = ACTIONS(1407), - [anon_sym_i16] = ACTIONS(1407), - [anon_sym_u32] = ACTIONS(1407), - [anon_sym_i32] = ACTIONS(1407), - [anon_sym_u64] = ACTIONS(1407), - [anon_sym_i64] = ACTIONS(1407), - [anon_sym_u128] = ACTIONS(1407), - [anon_sym_i128] = ACTIONS(1407), - [anon_sym_isize] = ACTIONS(1407), - [anon_sym_usize] = ACTIONS(1407), - [anon_sym_f32] = ACTIONS(1407), - [anon_sym_f64] = ACTIONS(1407), - [anon_sym_bool] = ACTIONS(1407), - [anon_sym_str] = ACTIONS(1407), - [anon_sym_char] = ACTIONS(1407), - [anon_sym_DASH] = ACTIONS(1407), - [anon_sym_SLASH] = ACTIONS(1407), - [anon_sym_PERCENT] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_PIPE] = ACTIONS(1407), - [anon_sym_AMP_AMP] = ACTIONS(1405), - [anon_sym_PIPE_PIPE] = ACTIONS(1405), - [anon_sym_LT_LT] = ACTIONS(1407), - [anon_sym_GT_GT] = ACTIONS(1407), - [anon_sym_PLUS_EQ] = ACTIONS(1405), - [anon_sym_DASH_EQ] = ACTIONS(1405), - [anon_sym_STAR_EQ] = ACTIONS(1405), - [anon_sym_SLASH_EQ] = ACTIONS(1405), - [anon_sym_PERCENT_EQ] = ACTIONS(1405), - [anon_sym_CARET_EQ] = ACTIONS(1405), - [anon_sym_AMP_EQ] = ACTIONS(1405), - [anon_sym_PIPE_EQ] = ACTIONS(1405), - [anon_sym_LT_LT_EQ] = ACTIONS(1405), - [anon_sym_GT_GT_EQ] = ACTIONS(1405), - [anon_sym_EQ] = ACTIONS(1407), - [anon_sym_EQ_EQ] = ACTIONS(1405), - [anon_sym_BANG_EQ] = ACTIONS(1405), - [anon_sym_GT] = ACTIONS(1407), - [anon_sym_LT] = ACTIONS(1407), - [anon_sym_GT_EQ] = ACTIONS(1405), - [anon_sym_LT_EQ] = ACTIONS(1405), - [anon_sym_DOT] = ACTIONS(1407), - [anon_sym_DOT_DOT] = ACTIONS(1407), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1405), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1405), - [anon_sym_COLON_COLON] = ACTIONS(1405), - [anon_sym_POUND] = ACTIONS(1405), - [anon_sym_SQUOTE] = ACTIONS(1407), - [anon_sym_as] = ACTIONS(1407), - [anon_sym_async] = ACTIONS(1407), - [anon_sym_break] = ACTIONS(1407), - [anon_sym_const] = ACTIONS(1407), - [anon_sym_continue] = ACTIONS(1407), - [anon_sym_default] = ACTIONS(1407), - [anon_sym_enum] = ACTIONS(1407), - [anon_sym_fn] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(1407), - [anon_sym_gen] = ACTIONS(1407), - [anon_sym_if] = ACTIONS(1407), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_loop] = ACTIONS(1407), - [anon_sym_match] = ACTIONS(1407), - [anon_sym_mod] = ACTIONS(1407), - [anon_sym_pub] = ACTIONS(1407), - [anon_sym_return] = ACTIONS(1407), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_struct] = ACTIONS(1407), - [anon_sym_trait] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1407), - [anon_sym_unsafe] = ACTIONS(1407), - [anon_sym_use] = ACTIONS(1407), - [anon_sym_while] = ACTIONS(1407), - [anon_sym_extern] = ACTIONS(1407), - [anon_sym_else] = ACTIONS(1409), - [anon_sym_yield] = ACTIONS(1407), - [anon_sym_move] = ACTIONS(1407), - [anon_sym_try] = ACTIONS(1407), - [sym_integer_literal] = ACTIONS(1405), - [aux_sym_string_literal_token1] = ACTIONS(1405), - [sym_char_literal] = ACTIONS(1405), - [anon_sym_true] = ACTIONS(1407), - [anon_sym_false] = ACTIONS(1407), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1407), - [sym_super] = ACTIONS(1407), - [sym_crate] = ACTIONS(1407), - [sym_metavariable] = ACTIONS(1405), - [sym__raw_string_literal_start] = ACTIONS(1405), - [sym_float_literal] = ACTIONS(1405), - }, - [STATE(291)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1946), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(291), - [sym_block_comment] = STATE(291), - [sym_identifier] = ACTIONS(339), + [STATE(228)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(263), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1633), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(228), + [sym_block_comment] = STATE(228), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -50559,27 +44643,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -50594,60 +44679,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(292)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1912), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(292), - [sym_block_comment] = STATE(292), - [sym_identifier] = ACTIONS(339), + [STATE(229)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1978), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(229), + [sym_block_comment] = STATE(229), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -50673,25 +44763,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -50706,60 +44797,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(293)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1913), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(293), - [sym_block_comment] = STATE(293), - [sym_identifier] = ACTIONS(339), + [STATE(230)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1836), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(230), + [sym_block_comment] = STATE(230), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -50785,25 +44881,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -50818,60 +44915,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(294)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1793), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(294), - [sym_block_comment] = STATE(294), - [sym_identifier] = ACTIONS(339), + [STATE(231)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1961), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(231), + [sym_block_comment] = STATE(231), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -50897,25 +44999,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -50930,284 +45033,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(295)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1648), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(295), - [sym_block_comment] = STATE(295), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(296)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1675), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(296), - [sym_block_comment] = STATE(296), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(297)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1934), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(297), - [sym_block_comment] = STATE(297), - [sym_identifier] = ACTIONS(339), + [STATE(232)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(263), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1634), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(232), + [sym_block_comment] = STATE(232), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -51231,27 +45115,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -51266,396 +45151,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(298)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1780), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(298), - [sym_block_comment] = STATE(298), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(299)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1836), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), - [sym_line_comment] = STATE(299), - [sym_block_comment] = STATE(299), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(993), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(300)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1836), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), - [sym_line_comment] = STATE(300), - [sym_block_comment] = STATE(300), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(301)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1467), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(301), - [sym_block_comment] = STATE(301), - [sym_identifier] = ACTIONS(339), + [STATE(233)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(2031), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1571), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(504), + [sym_match_expression] = STATE(504), + [sym_while_expression] = STATE(504), + [sym_loop_expression] = STATE(504), + [sym_for_expression] = STATE(504), + [sym_const_block] = STATE(504), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3826), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(504), + [sym_async_block] = STATE(504), + [sym_gen_block] = STATE(504), + [sym_try_block] = STATE(504), + [sym_block] = STATE(504), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(233), + [sym_block_comment] = STATE(233), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(983), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -51679,27 +45233,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1093), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(985), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(987), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(989), + [anon_sym_gen] = ACTIONS(991), + [anon_sym_if] = ACTIONS(993), + [anon_sym_loop] = ACTIONS(995), + [anon_sym_match] = ACTIONS(997), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(999), + [anon_sym_while] = ACTIONS(1001), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(1003), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -51714,60 +45269,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(302)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1929), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(302), - [sym_block_comment] = STATE(302), - [sym_identifier] = ACTIONS(339), + [STATE(234)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(2002), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(234), + [sym_block_comment] = STATE(234), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -51793,25 +45353,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -51826,172 +45387,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(303)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1467), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(303), - [sym_block_comment] = STATE(303), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(304)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1931), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(304), - [sym_block_comment] = STATE(304), - [sym_identifier] = ACTIONS(339), + [STATE(235)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(2005), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(235), + [sym_block_comment] = STATE(235), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -52017,25 +45471,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -52050,60 +45505,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(305)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1935), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(305), - [sym_block_comment] = STATE(305), - [sym_identifier] = ACTIONS(339), + [STATE(236)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1812), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(236), + [sym_block_comment] = STATE(236), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -52129,25 +45589,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -52162,60 +45623,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(306)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1716), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(479), - [sym_match_expression] = STATE(479), - [sym_while_expression] = STATE(479), - [sym_loop_expression] = STATE(479), - [sym_for_expression] = STATE(479), - [sym_const_block] = STATE(479), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), + [STATE(237)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(263), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1635), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), [sym_label] = STATE(3767), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(479), - [sym_async_block] = STATE(479), - [sym_gen_block] = STATE(479), - [sym_try_block] = STATE(479), - [sym_block] = STATE(479), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(306), - [sym_block_comment] = STATE(306), - [sym_identifier] = ACTIONS(339), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(237), + [sym_block_comment] = STATE(237), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -52239,27 +45705,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1385), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1389), - [anon_sym_gen] = ACTIONS(1391), - [anon_sym_if] = ACTIONS(1393), - [anon_sym_loop] = ACTIONS(1395), - [anon_sym_match] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(1399), - [anon_sym_while] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1403), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -52274,60 +45741,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(307)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1972), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(307), - [sym_block_comment] = STATE(307), - [sym_identifier] = ACTIONS(339), + [STATE(238)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1639), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(238), + [sym_block_comment] = STATE(238), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -52353,25 +45825,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -52386,60 +45859,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(308)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1970), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(308), - [sym_block_comment] = STATE(308), - [sym_identifier] = ACTIONS(339), + [STATE(239)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(2015), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1571), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(239), + [sym_block_comment] = STATE(239), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -52465,25 +45943,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -52498,60 +45977,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(309)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1956), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(309), - [sym_block_comment] = STATE(309), - [sym_identifier] = ACTIONS(339), + [STATE(240)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1977), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(240), + [sym_block_comment] = STATE(240), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -52577,25 +46061,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -52610,60 +46095,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(310)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1583), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(310), - [sym_block_comment] = STATE(310), - [sym_identifier] = ACTIONS(339), + [STATE(241)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1866), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(241), + [sym_block_comment] = STATE(241), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -52687,27 +46177,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1093), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -52722,60 +46213,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(311)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1455), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(311), - [sym_block_comment] = STATE(311), - [sym_identifier] = ACTIONS(339), + [STATE(242)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(2014), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(242), + [sym_block_comment] = STATE(242), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -52799,27 +46295,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1093), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -52834,60 +46331,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(312)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1584), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(312), - [sym_block_comment] = STATE(312), - [sym_identifier] = ACTIONS(339), + [STATE(243)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1738), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1571), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(243), + [sym_block_comment] = STATE(243), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -52911,27 +46413,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1093), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -52946,60 +46449,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(313)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1585), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(313), - [sym_block_comment] = STATE(313), - [sym_identifier] = ACTIONS(339), + [STATE(244)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1790), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(244), + [sym_block_comment] = STATE(244), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -53023,27 +46531,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1093), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -53058,60 +46567,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(314)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1586), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(314), - [sym_block_comment] = STATE(314), - [sym_identifier] = ACTIONS(339), + [STATE(245)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(2011), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(245), + [sym_block_comment] = STATE(245), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -53135,27 +46649,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1093), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -53170,60 +46685,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(315)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1587), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(315), - [sym_block_comment] = STATE(315), - [sym_identifier] = ACTIONS(339), + [STATE(246)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(2004), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(246), + [sym_block_comment] = STATE(246), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -53247,27 +46767,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1093), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -53282,60 +46803,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(316)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1588), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(316), - [sym_block_comment] = STATE(316), - [sym_identifier] = ACTIONS(339), + [STATE(247)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(305), + [sym_bracketed_type] = STATE(3726), + [sym_generic_function] = STATE(1934), + [sym_generic_type_with_turbofish] = STATE(3067), + [sym__expression_except_range] = STATE(1755), + [sym__expression] = STATE(1782), + [sym_expression_with_attribute] = STATE(1958), + [sym__expression_without_attribute] = STATE(1958), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(1673), + [sym_scoped_type_identifier_in_expression_position] = STATE(3301), + [sym_range_expression] = STATE(1801), + [sym_unary_expression] = STATE(1934), + [sym_try_expression] = STATE(1934), + [sym_reference_expression] = STATE(1934), + [sym_binary_expression] = STATE(1934), + [sym_assignment_expression] = STATE(1934), + [sym_compound_assignment_expr] = STATE(1934), + [sym_type_cast_expression] = STATE(1934), + [sym_return_expression] = STATE(1934), + [sym_yield_expression] = STATE(1934), + [sym_call_expression] = STATE(1934), + [sym_array_expression] = STATE(1934), + [sym_parenthesized_expression] = STATE(1934), + [sym_tuple_expression] = STATE(1934), + [sym_unit_expression] = STATE(1934), + [sym_struct_expression] = STATE(1934), + [sym_if_expression] = STATE(1934), + [sym_match_expression] = STATE(1934), + [sym_while_expression] = STATE(1934), + [sym_loop_expression] = STATE(1934), + [sym_for_expression] = STATE(1934), + [sym_const_block] = STATE(1934), + [sym_closure_expression] = STATE(1934), + [sym_closure_parameters] = STATE(154), + [sym_label] = STATE(3832), + [sym_break_expression] = STATE(1934), + [sym_continue_expression] = STATE(1934), + [sym_index_expression] = STATE(1934), + [sym_await_expression] = STATE(1934), + [sym_field_expression] = STATE(1707), + [sym_unsafe_block] = STATE(1934), + [sym_async_block] = STATE(1934), + [sym_gen_block] = STATE(1934), + [sym_try_block] = STATE(1934), + [sym_block] = STATE(1934), + [sym__literal] = STATE(1934), + [sym_string_literal] = STATE(1949), + [sym_raw_string_literal] = STATE(1949), + [sym_boolean_literal] = STATE(1949), + [sym_line_comment] = STATE(247), + [sym_block_comment] = STATE(247), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(740), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(774), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(427), + [anon_sym_break] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_default] = ACTIONS(435), + [anon_sym_for] = ACTIONS(437), + [anon_sym_gen] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_loop] = ACTIONS(443), + [anon_sym_match] = ACTIONS(445), + [anon_sym_return] = ACTIONS(447), + [anon_sym_static] = ACTIONS(449), + [anon_sym_union] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(451), + [anon_sym_while] = ACTIONS(453), + [anon_sym_yield] = ACTIONS(455), + [anon_sym_move] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [aux_sym_string_literal_token1] = ACTIONS(463), + [sym_char_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(467), + [sym_super] = ACTIONS(469), + [sym_crate] = ACTIONS(469), + [sym_metavariable] = ACTIONS(471), + [sym__raw_string_literal_start] = ACTIONS(473), + [sym_float_literal] = ACTIONS(461), + }, + [STATE(248)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(263), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1566), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(248), + [sym_block_comment] = STATE(248), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -53359,27 +47003,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1093), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -53394,60 +47039,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(317)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1950), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(317), - [sym_block_comment] = STATE(317), - [sym_identifier] = ACTIONS(339), + [STATE(249)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(2031), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1571), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(249), + [sym_block_comment] = STATE(249), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -53473,25 +47123,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -53506,328 +47157,346 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(318)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2680), - [sym_bracketed_type] = STATE(3699), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3431), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2528), - [sym_scoped_identifier] = STATE(2224), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym_closure_expression] = STATE(2901), - [sym_closure_parameters] = STATE(217), - [sym__pattern] = STATE(2824), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), - [sym_line_comment] = STATE(318), - [sym_block_comment] = STATE(318), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1105), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1115), - [anon_sym_i8] = ACTIONS(1115), - [anon_sym_u16] = ACTIONS(1115), - [anon_sym_i16] = ACTIONS(1115), - [anon_sym_u32] = ACTIONS(1115), - [anon_sym_i32] = ACTIONS(1115), - [anon_sym_u64] = ACTIONS(1115), - [anon_sym_i64] = ACTIONS(1115), - [anon_sym_u128] = ACTIONS(1115), - [anon_sym_i128] = ACTIONS(1115), - [anon_sym_isize] = ACTIONS(1115), - [anon_sym_usize] = ACTIONS(1115), - [anon_sym_f32] = ACTIONS(1115), - [anon_sym_f64] = ACTIONS(1115), - [anon_sym_bool] = ACTIONS(1115), - [anon_sym_str] = ACTIONS(1115), - [anon_sym_char] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1415), + [STATE(250)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(298), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1590), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(250), + [sym_block_comment] = STATE(250), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COMMA] = ACTIONS(1419), - [anon_sym_COLON_COLON] = ACTIONS(1135), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1421), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1145), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1151), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_static] = ACTIONS(1423), - [anon_sym_union] = ACTIONS(1151), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1425), - [anon_sym_move] = ACTIONS(1427), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), + [anon_sym_DOT_DOT] = ACTIONS(824), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1173), - [sym_super] = ACTIONS(1173), - [sym_crate] = ACTIONS(1173), - [sym_metavariable] = ACTIONS(1175), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [STATE(319)] = { - [sym_attribute_item] = STATE(405), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_self_parameter] = STATE(3296), - [sym_variadic_parameter] = STATE(3296), - [sym_parameter] = STATE(3296), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3097), - [sym_bracketed_type] = STATE(3691), - [sym_lifetime] = STATE(3008), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3333), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2540), - [sym_scoped_identifier] = STATE(2311), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3210), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), - [sym_line_comment] = STATE(319), - [sym_block_comment] = STATE(319), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u128] = ACTIONS(1187), - [anon_sym_i128] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_str] = ACTIONS(1187), - [anon_sym_char] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_PIPE] = ACTIONS(1123), + [STATE(251)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(298), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1741), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(251), + [sym_block_comment] = STATE(251), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1195), - [anon_sym_POUND] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1163), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1201), - [sym_super] = ACTIONS(1203), - [sym_crate] = ACTIONS(1203), - [sym_metavariable] = ACTIONS(1205), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [anon_sym_DOT_DOT] = ACTIONS(824), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [STATE(320)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), + [STATE(252)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(298), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), [sym__expression] = STATE(1742), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(320), - [sym_block_comment] = STATE(320), - [sym_identifier] = ACTIONS(339), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(252), + [sym_block_comment] = STATE(252), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(824), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -53835,111 +47504,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(321)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1966), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(481), - [sym_match_expression] = STATE(481), - [sym_while_expression] = STATE(481), - [sym_loop_expression] = STATE(481), - [sym_for_expression] = STATE(481), - [sym_const_block] = STATE(481), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), + [STATE(253)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(298), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1743), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), [sym_label] = STATE(3767), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(481), - [sym_async_block] = STATE(481), - [sym_gen_block] = STATE(481), - [sym_try_block] = STATE(481), - [sym_block] = STATE(481), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(321), - [sym_block_comment] = STATE(321), - [sym_identifier] = ACTIONS(339), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(253), + [sym_block_comment] = STATE(253), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(824), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1385), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1387), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1389), - [anon_sym_gen] = ACTIONS(1391), - [anon_sym_if] = ACTIONS(1393), - [anon_sym_loop] = ACTIONS(1395), - [anon_sym_match] = ACTIONS(1397), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(1399), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -53947,111 +47622,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(322)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1948), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(322), - [sym_block_comment] = STATE(322), - [sym_identifier] = ACTIONS(339), + [STATE(254)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(298), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1744), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(254), + [sym_block_comment] = STATE(254), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(824), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -54059,111 +47740,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(323)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1939), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(323), - [sym_block_comment] = STATE(323), - [sym_identifier] = ACTIONS(339), + [STATE(255)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(301), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1917), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(178), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(255), + [sym_block_comment] = STATE(255), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(794), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(794), + [anon_sym_BANG] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(796), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_async] = ACTIONS(511), + [anon_sym_break] = ACTIONS(513), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(515), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(517), + [anon_sym_static] = ACTIONS(519), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(521), + [anon_sym_move] = ACTIONS(523), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -54171,223 +47858,235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(324)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2680), - [sym_bracketed_type] = STATE(3699), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3431), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2528), - [sym_scoped_identifier] = STATE(2224), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym_closure_expression] = STATE(2901), - [sym_closure_parameters] = STATE(217), - [sym__pattern] = STATE(2824), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), - [sym_line_comment] = STATE(324), - [sym_block_comment] = STATE(324), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1105), - [anon_sym_RPAREN] = ACTIONS(1429), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1115), - [anon_sym_i8] = ACTIONS(1115), - [anon_sym_u16] = ACTIONS(1115), - [anon_sym_i16] = ACTIONS(1115), - [anon_sym_u32] = ACTIONS(1115), - [anon_sym_i32] = ACTIONS(1115), - [anon_sym_u64] = ACTIONS(1115), - [anon_sym_i64] = ACTIONS(1115), - [anon_sym_u128] = ACTIONS(1115), - [anon_sym_i128] = ACTIONS(1115), - [anon_sym_isize] = ACTIONS(1115), - [anon_sym_usize] = ACTIONS(1115), - [anon_sym_f32] = ACTIONS(1115), - [anon_sym_f64] = ACTIONS(1115), - [anon_sym_bool] = ACTIONS(1115), - [anon_sym_str] = ACTIONS(1115), - [anon_sym_char] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1415), + [STATE(256)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(298), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1746), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(256), + [sym_block_comment] = STATE(256), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COMMA] = ACTIONS(1419), - [anon_sym_COLON_COLON] = ACTIONS(1135), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1421), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1145), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1151), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_static] = ACTIONS(1423), - [anon_sym_union] = ACTIONS(1151), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1425), - [anon_sym_move] = ACTIONS(1427), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), + [anon_sym_DOT_DOT] = ACTIONS(824), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1173), - [sym_super] = ACTIONS(1173), - [sym_crate] = ACTIONS(1173), - [sym_metavariable] = ACTIONS(1175), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [STATE(325)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1778), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(325), - [sym_block_comment] = STATE(325), - [sym_identifier] = ACTIONS(475), + [STATE(257)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(298), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1747), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(257), + [sym_block_comment] = STATE(257), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(824), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -54395,111 +48094,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(326)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1958), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(326), - [sym_block_comment] = STATE(326), - [sym_identifier] = ACTIONS(339), + [STATE(258)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(298), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1748), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(258), + [sym_block_comment] = STATE(258), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(824), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -54507,111 +48212,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(327)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1965), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(327), - [sym_block_comment] = STATE(327), - [sym_identifier] = ACTIONS(339), + [STATE(259)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(298), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1749), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(259), + [sym_block_comment] = STATE(259), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(824), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -54619,111 +48330,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(328)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1938), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(328), - [sym_block_comment] = STATE(328), - [sym_identifier] = ACTIONS(339), + [STATE(260)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(298), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1750), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(260), + [sym_block_comment] = STATE(260), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(824), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -54731,67 +48448,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(329)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1589), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(329), - [sym_block_comment] = STATE(329), - [sym_identifier] = ACTIONS(339), + [STATE(261)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(263), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1639), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(261), + [sym_block_comment] = STATE(261), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -54815,27 +48537,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1093), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -54850,216 +48573,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(330)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1731), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), - [sym_line_comment] = STATE(330), - [sym_block_comment] = STATE(330), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(331)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1590), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(331), - [sym_block_comment] = STATE(331), - [sym_identifier] = ACTIONS(339), + [STATE(262)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(298), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1566), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(262), + [sym_block_comment] = STATE(262), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1093), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(824), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -55067,67 +48684,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(332)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1591), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(332), - [sym_block_comment] = STATE(332), - [sym_identifier] = ACTIONS(339), + [STATE(263)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(2035), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1571), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(263), + [sym_block_comment] = STATE(263), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -55151,27 +48773,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1093), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -55186,60 +48809,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(333)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1592), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(333), - [sym_block_comment] = STATE(333), - [sym_identifier] = ACTIONS(339), + [STATE(264)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(303), + [sym_bracketed_type] = STATE(3726), + [sym_generic_function] = STATE(1934), + [sym_generic_type_with_turbofish] = STATE(3067), + [sym__expression_except_range] = STATE(1755), + [sym__expression] = STATE(1998), + [sym_expression_with_attribute] = STATE(1958), + [sym__expression_without_attribute] = STATE(1958), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(1673), + [sym_scoped_type_identifier_in_expression_position] = STATE(3301), + [sym_range_expression] = STATE(1801), + [sym_unary_expression] = STATE(1934), + [sym_try_expression] = STATE(1934), + [sym_reference_expression] = STATE(1934), + [sym_binary_expression] = STATE(1934), + [sym_assignment_expression] = STATE(1934), + [sym_compound_assignment_expr] = STATE(1934), + [sym_type_cast_expression] = STATE(1934), + [sym_return_expression] = STATE(1934), + [sym_yield_expression] = STATE(1934), + [sym_call_expression] = STATE(1934), + [sym_array_expression] = STATE(1934), + [sym_parenthesized_expression] = STATE(1934), + [sym_tuple_expression] = STATE(1934), + [sym_unit_expression] = STATE(1934), + [sym_struct_expression] = STATE(1934), + [sym_if_expression] = STATE(1934), + [sym_match_expression] = STATE(1934), + [sym_while_expression] = STATE(1934), + [sym_loop_expression] = STATE(1934), + [sym_for_expression] = STATE(1934), + [sym_const_block] = STATE(1934), + [sym_closure_expression] = STATE(1934), + [sym_closure_parameters] = STATE(154), + [sym_label] = STATE(3832), + [sym_break_expression] = STATE(1934), + [sym_continue_expression] = STATE(1934), + [sym_index_expression] = STATE(1934), + [sym_await_expression] = STATE(1934), + [sym_field_expression] = STATE(1707), + [sym_unsafe_block] = STATE(1934), + [sym_async_block] = STATE(1934), + [sym_gen_block] = STATE(1934), + [sym_try_block] = STATE(1934), + [sym_block] = STATE(1934), + [sym__literal] = STATE(1934), + [sym_string_literal] = STATE(1949), + [sym_raw_string_literal] = STATE(1949), + [sym_boolean_literal] = STATE(1949), + [sym_line_comment] = STATE(264), + [sym_block_comment] = STATE(264), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(740), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(744), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(427), + [anon_sym_break] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_default] = ACTIONS(435), + [anon_sym_for] = ACTIONS(437), + [anon_sym_gen] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_loop] = ACTIONS(443), + [anon_sym_match] = ACTIONS(445), + [anon_sym_return] = ACTIONS(447), + [anon_sym_static] = ACTIONS(449), + [anon_sym_union] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(451), + [anon_sym_while] = ACTIONS(453), + [anon_sym_yield] = ACTIONS(455), + [anon_sym_move] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [aux_sym_string_literal_token1] = ACTIONS(463), + [sym_char_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(467), + [sym_super] = ACTIONS(469), + [sym_crate] = ACTIONS(469), + [sym_metavariable] = ACTIONS(471), + [sym__raw_string_literal_start] = ACTIONS(473), + [sym_float_literal] = ACTIONS(461), + }, + [STATE(265)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(263), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1590), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(265), + [sym_block_comment] = STATE(265), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -55263,27 +49009,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1093), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -55298,104 +49045,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(334)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1467), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(334), - [sym_block_comment] = STATE(334), - [sym_identifier] = ACTIONS(475), + [STATE(266)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(267), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1669), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(266), + [sym_block_comment] = STATE(266), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(736), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -55403,111 +49156,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(335)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1502), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(335), - [sym_block_comment] = STATE(335), - [sym_identifier] = ACTIONS(339), + [STATE(267)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(2026), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1571), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(267), + [sym_block_comment] = STATE(267), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1093), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(736), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -55515,111 +49274,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(336)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1593), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(336), - [sym_block_comment] = STATE(336), - [sym_identifier] = ACTIONS(339), + [STATE(268)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(301), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1590), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(178), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(268), + [sym_block_comment] = STATE(268), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(794), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(794), + [anon_sym_BANG] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(796), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_async] = ACTIONS(511), + [anon_sym_break] = ACTIONS(513), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(515), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(517), + [anon_sym_static] = ACTIONS(519), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(521), + [anon_sym_move] = ACTIONS(523), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -55627,111 +49392,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(337)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1502), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(337), - [sym_block_comment] = STATE(337), - [sym_identifier] = ACTIONS(475), + [STATE(269)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(301), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1920), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(178), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(269), + [sym_block_comment] = STATE(269), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(794), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(794), + [anon_sym_BANG] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(796), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(511), + [anon_sym_break] = ACTIONS(513), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(515), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(517), + [anon_sym_static] = ACTIONS(519), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(521), + [anon_sym_move] = ACTIONS(523), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -55739,223 +49510,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(338)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2680), - [sym_bracketed_type] = STATE(3699), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3431), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2528), - [sym_scoped_identifier] = STATE(2224), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym_closure_expression] = STATE(2901), - [sym_closure_parameters] = STATE(217), - [sym__pattern] = STATE(2824), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), - [sym_line_comment] = STATE(338), - [sym_block_comment] = STATE(338), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1105), - [anon_sym_RPAREN] = ACTIONS(1431), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1115), - [anon_sym_i8] = ACTIONS(1115), - [anon_sym_u16] = ACTIONS(1115), - [anon_sym_i16] = ACTIONS(1115), - [anon_sym_u32] = ACTIONS(1115), - [anon_sym_i32] = ACTIONS(1115), - [anon_sym_u64] = ACTIONS(1115), - [anon_sym_i64] = ACTIONS(1115), - [anon_sym_u128] = ACTIONS(1115), - [anon_sym_i128] = ACTIONS(1115), - [anon_sym_isize] = ACTIONS(1115), - [anon_sym_usize] = ACTIONS(1115), - [anon_sym_f32] = ACTIONS(1115), - [anon_sym_f64] = ACTIONS(1115), - [anon_sym_bool] = ACTIONS(1115), - [anon_sym_str] = ACTIONS(1115), - [anon_sym_char] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COMMA] = ACTIONS(1419), - [anon_sym_COLON_COLON] = ACTIONS(1135), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1421), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1145), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1151), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_static] = ACTIONS(1423), - [anon_sym_union] = ACTIONS(1151), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1425), - [anon_sym_move] = ACTIONS(1427), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1173), - [sym_super] = ACTIONS(1173), - [sym_crate] = ACTIONS(1173), - [sym_metavariable] = ACTIONS(1175), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), - }, - [STATE(339)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1695), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(339), - [sym_block_comment] = STATE(339), - [sym_identifier] = ACTIONS(475), + [STATE(270)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(301), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1546), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(178), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(270), + [sym_block_comment] = STATE(270), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(794), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(794), + [anon_sym_BANG] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(796), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(511), + [anon_sym_break] = ACTIONS(513), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(515), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(517), + [anon_sym_static] = ACTIONS(519), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(521), + [anon_sym_move] = ACTIONS(523), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -55963,111 +49628,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(340)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1455), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(340), - [sym_block_comment] = STATE(340), - [sym_identifier] = ACTIONS(475), + [STATE(271)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(301), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1913), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(178), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(271), + [sym_block_comment] = STATE(271), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(794), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(794), + [anon_sym_BANG] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(796), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(511), + [anon_sym_break] = ACTIONS(513), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(515), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(517), + [anon_sym_static] = ACTIONS(519), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(521), + [anon_sym_move] = ACTIONS(523), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -56075,111 +49746,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(341)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1696), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(341), - [sym_block_comment] = STATE(341), - [sym_identifier] = ACTIONS(475), + [STATE(272)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(301), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1914), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(178), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(272), + [sym_block_comment] = STATE(272), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(794), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(794), + [anon_sym_BANG] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(796), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(511), + [anon_sym_break] = ACTIONS(513), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(515), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(517), + [anon_sym_static] = ACTIONS(519), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(521), + [anon_sym_move] = ACTIONS(523), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -56187,111 +49864,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(342)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1666), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(342), - [sym_block_comment] = STATE(342), - [sym_identifier] = ACTIONS(475), + [STATE(273)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(301), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1916), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(178), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(273), + [sym_block_comment] = STATE(273), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(794), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(794), + [anon_sym_BANG] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(796), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(511), + [anon_sym_break] = ACTIONS(513), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(515), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(517), + [anon_sym_static] = ACTIONS(519), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(521), + [anon_sym_move] = ACTIONS(523), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -56299,111 +49982,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(343)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1676), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(343), - [sym_block_comment] = STATE(343), - [sym_identifier] = ACTIONS(475), + [STATE(274)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(298), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1745), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(274), + [sym_block_comment] = STATE(274), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(824), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -56411,111 +50100,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(344)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1774), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(344), - [sym_block_comment] = STATE(344), - [sym_identifier] = ACTIONS(475), + [STATE(275)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(301), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1922), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(178), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(275), + [sym_block_comment] = STATE(275), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(794), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(794), + [anon_sym_BANG] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(796), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), + [anon_sym_async] = ACTIONS(511), + [anon_sym_break] = ACTIONS(513), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(515), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(517), + [anon_sym_static] = ACTIONS(519), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(521), + [anon_sym_move] = ACTIONS(523), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -56523,111 +50218,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(345)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1685), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(345), - [sym_block_comment] = STATE(345), - [sym_identifier] = ACTIONS(475), + [STATE(276)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(301), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1762), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(178), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(276), + [sym_block_comment] = STATE(276), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(794), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(794), + [anon_sym_BANG] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(796), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(511), + [anon_sym_break] = ACTIONS(513), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(515), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(517), + [anon_sym_static] = ACTIONS(519), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(521), + [anon_sym_move] = ACTIONS(523), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -56635,111 +50336,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(346)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1691), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(346), - [sym_block_comment] = STATE(346), - [sym_identifier] = ACTIONS(475), + [STATE(277)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(301), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1766), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(178), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(277), + [sym_block_comment] = STATE(277), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(794), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(794), + [anon_sym_BANG] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(796), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(511), + [anon_sym_break] = ACTIONS(513), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(515), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(517), + [anon_sym_static] = ACTIONS(519), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(521), + [anon_sym_move] = ACTIONS(523), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -56747,111 +50454,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(347)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1694), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(347), - [sym_block_comment] = STATE(347), - [sym_identifier] = ACTIONS(475), + [STATE(278)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(301), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1767), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(178), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(278), + [sym_block_comment] = STATE(278), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(794), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(794), + [anon_sym_BANG] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(796), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(511), + [anon_sym_break] = ACTIONS(513), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(515), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(517), + [anon_sym_static] = ACTIONS(519), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(521), + [anon_sym_move] = ACTIONS(523), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -56859,111 +50572,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(348)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1655), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(348), - [sym_block_comment] = STATE(348), - [sym_identifier] = ACTIONS(475), + [STATE(279)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(301), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1771), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(178), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(279), + [sym_block_comment] = STATE(279), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(794), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(794), + [anon_sym_BANG] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(796), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(511), + [anon_sym_break] = ACTIONS(513), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(515), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(517), + [anon_sym_static] = ACTIONS(519), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(521), + [anon_sym_move] = ACTIONS(523), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -56971,111 +50690,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(349)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1657), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(349), - [sym_block_comment] = STATE(349), - [sym_identifier] = ACTIONS(475), + [STATE(280)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(267), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1700), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(280), + [sym_block_comment] = STATE(280), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(736), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -57083,111 +50808,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(350)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1739), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(350), - [sym_block_comment] = STATE(350), - [sym_identifier] = ACTIONS(475), + [STATE(281)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(301), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1566), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(178), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(281), + [sym_block_comment] = STATE(281), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(794), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(794), + [anon_sym_BANG] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(796), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(511), + [anon_sym_break] = ACTIONS(513), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(515), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(517), + [anon_sym_static] = ACTIONS(519), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(521), + [anon_sym_move] = ACTIONS(523), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -57195,67 +50926,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(351)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1593), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(351), - [sym_block_comment] = STATE(351), - [sym_identifier] = ACTIONS(339), + [STATE(282)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1854), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(282), + [sym_block_comment] = STATE(282), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -57279,27 +51015,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1093), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -57314,104 +51051,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(352)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1449), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(352), - [sym_block_comment] = STATE(352), - [sym_identifier] = ACTIONS(475), + [STATE(283)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(2028), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1571), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(178), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(283), + [sym_block_comment] = STATE(283), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(794), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(794), + [anon_sym_BANG] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(796), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(511), + [anon_sym_break] = ACTIONS(513), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(515), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(517), + [anon_sym_static] = ACTIONS(519), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(521), + [anon_sym_move] = ACTIONS(523), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -57419,67 +51162,1960 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(353)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1741), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(353), - [sym_block_comment] = STATE(353), - [sym_identifier] = ACTIONS(339), + [STATE(284)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(305), + [sym_bracketed_type] = STATE(3726), + [sym_generic_function] = STATE(1934), + [sym_generic_type_with_turbofish] = STATE(3067), + [sym__expression_except_range] = STATE(1755), + [sym__expression] = STATE(1821), + [sym_expression_with_attribute] = STATE(1958), + [sym__expression_without_attribute] = STATE(1958), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(1673), + [sym_scoped_type_identifier_in_expression_position] = STATE(3301), + [sym_range_expression] = STATE(1801), + [sym_unary_expression] = STATE(1934), + [sym_try_expression] = STATE(1934), + [sym_reference_expression] = STATE(1934), + [sym_binary_expression] = STATE(1934), + [sym_assignment_expression] = STATE(1934), + [sym_compound_assignment_expr] = STATE(1934), + [sym_type_cast_expression] = STATE(1934), + [sym_return_expression] = STATE(1934), + [sym_yield_expression] = STATE(1934), + [sym_call_expression] = STATE(1934), + [sym_array_expression] = STATE(1934), + [sym_parenthesized_expression] = STATE(1934), + [sym_tuple_expression] = STATE(1934), + [sym_unit_expression] = STATE(1934), + [sym_struct_expression] = STATE(1934), + [sym_if_expression] = STATE(1934), + [sym_match_expression] = STATE(1934), + [sym_while_expression] = STATE(1934), + [sym_loop_expression] = STATE(1934), + [sym_for_expression] = STATE(1934), + [sym_const_block] = STATE(1934), + [sym_closure_expression] = STATE(1934), + [sym_closure_parameters] = STATE(154), + [sym_label] = STATE(3832), + [sym_break_expression] = STATE(1934), + [sym_continue_expression] = STATE(1934), + [sym_index_expression] = STATE(1934), + [sym_await_expression] = STATE(1934), + [sym_field_expression] = STATE(1707), + [sym_unsafe_block] = STATE(1934), + [sym_async_block] = STATE(1934), + [sym_gen_block] = STATE(1934), + [sym_try_block] = STATE(1934), + [sym_block] = STATE(1934), + [sym__literal] = STATE(1934), + [sym_string_literal] = STATE(1949), + [sym_raw_string_literal] = STATE(1949), + [sym_boolean_literal] = STATE(1949), + [sym_line_comment] = STATE(284), + [sym_block_comment] = STATE(284), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(740), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(774), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(427), + [anon_sym_break] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_default] = ACTIONS(435), + [anon_sym_for] = ACTIONS(437), + [anon_sym_gen] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_loop] = ACTIONS(443), + [anon_sym_match] = ACTIONS(445), + [anon_sym_return] = ACTIONS(447), + [anon_sym_static] = ACTIONS(449), + [anon_sym_union] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(451), + [anon_sym_while] = ACTIONS(453), + [anon_sym_yield] = ACTIONS(455), + [anon_sym_move] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [aux_sym_string_literal_token1] = ACTIONS(463), + [sym_char_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(467), + [sym_super] = ACTIONS(469), + [sym_crate] = ACTIONS(469), + [sym_metavariable] = ACTIONS(471), + [sym__raw_string_literal_start] = ACTIONS(473), + [sym_float_literal] = ACTIONS(461), + }, + [STATE(285)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(305), + [sym_bracketed_type] = STATE(3726), + [sym_generic_function] = STATE(1934), + [sym_generic_type_with_turbofish] = STATE(3067), + [sym__expression_except_range] = STATE(1755), + [sym__expression] = STATE(1894), + [sym_expression_with_attribute] = STATE(1958), + [sym__expression_without_attribute] = STATE(1958), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(1673), + [sym_scoped_type_identifier_in_expression_position] = STATE(3301), + [sym_range_expression] = STATE(1801), + [sym_unary_expression] = STATE(1934), + [sym_try_expression] = STATE(1934), + [sym_reference_expression] = STATE(1934), + [sym_binary_expression] = STATE(1934), + [sym_assignment_expression] = STATE(1934), + [sym_compound_assignment_expr] = STATE(1934), + [sym_type_cast_expression] = STATE(1934), + [sym_return_expression] = STATE(1934), + [sym_yield_expression] = STATE(1934), + [sym_call_expression] = STATE(1934), + [sym_array_expression] = STATE(1934), + [sym_parenthesized_expression] = STATE(1934), + [sym_tuple_expression] = STATE(1934), + [sym_unit_expression] = STATE(1934), + [sym_struct_expression] = STATE(1934), + [sym_if_expression] = STATE(1934), + [sym_match_expression] = STATE(1934), + [sym_while_expression] = STATE(1934), + [sym_loop_expression] = STATE(1934), + [sym_for_expression] = STATE(1934), + [sym_const_block] = STATE(1934), + [sym_closure_expression] = STATE(1934), + [sym_closure_parameters] = STATE(154), + [sym_label] = STATE(3832), + [sym_break_expression] = STATE(1934), + [sym_continue_expression] = STATE(1934), + [sym_index_expression] = STATE(1934), + [sym_await_expression] = STATE(1934), + [sym_field_expression] = STATE(1707), + [sym_unsafe_block] = STATE(1934), + [sym_async_block] = STATE(1934), + [sym_gen_block] = STATE(1934), + [sym_try_block] = STATE(1934), + [sym_block] = STATE(1934), + [sym__literal] = STATE(1934), + [sym_string_literal] = STATE(1949), + [sym_raw_string_literal] = STATE(1949), + [sym_boolean_literal] = STATE(1949), + [sym_line_comment] = STATE(285), + [sym_block_comment] = STATE(285), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(740), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(774), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(427), + [anon_sym_break] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_default] = ACTIONS(435), + [anon_sym_for] = ACTIONS(437), + [anon_sym_gen] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_loop] = ACTIONS(443), + [anon_sym_match] = ACTIONS(445), + [anon_sym_return] = ACTIONS(447), + [anon_sym_static] = ACTIONS(449), + [anon_sym_union] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(451), + [anon_sym_while] = ACTIONS(453), + [anon_sym_yield] = ACTIONS(455), + [anon_sym_move] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [aux_sym_string_literal_token1] = ACTIONS(463), + [sym_char_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(467), + [sym_super] = ACTIONS(469), + [sym_crate] = ACTIONS(469), + [sym_metavariable] = ACTIONS(471), + [sym__raw_string_literal_start] = ACTIONS(473), + [sym_float_literal] = ACTIONS(461), + }, + [STATE(286)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(305), + [sym_bracketed_type] = STATE(3726), + [sym_generic_function] = STATE(1934), + [sym_generic_type_with_turbofish] = STATE(3067), + [sym__expression_except_range] = STATE(1755), + [sym__expression] = STATE(1911), + [sym_expression_with_attribute] = STATE(1958), + [sym__expression_without_attribute] = STATE(1958), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(1673), + [sym_scoped_type_identifier_in_expression_position] = STATE(3301), + [sym_range_expression] = STATE(1801), + [sym_unary_expression] = STATE(1934), + [sym_try_expression] = STATE(1934), + [sym_reference_expression] = STATE(1934), + [sym_binary_expression] = STATE(1934), + [sym_assignment_expression] = STATE(1934), + [sym_compound_assignment_expr] = STATE(1934), + [sym_type_cast_expression] = STATE(1934), + [sym_return_expression] = STATE(1934), + [sym_yield_expression] = STATE(1934), + [sym_call_expression] = STATE(1934), + [sym_array_expression] = STATE(1934), + [sym_parenthesized_expression] = STATE(1934), + [sym_tuple_expression] = STATE(1934), + [sym_unit_expression] = STATE(1934), + [sym_struct_expression] = STATE(1934), + [sym_if_expression] = STATE(1934), + [sym_match_expression] = STATE(1934), + [sym_while_expression] = STATE(1934), + [sym_loop_expression] = STATE(1934), + [sym_for_expression] = STATE(1934), + [sym_const_block] = STATE(1934), + [sym_closure_expression] = STATE(1934), + [sym_closure_parameters] = STATE(154), + [sym_label] = STATE(3832), + [sym_break_expression] = STATE(1934), + [sym_continue_expression] = STATE(1934), + [sym_index_expression] = STATE(1934), + [sym_await_expression] = STATE(1934), + [sym_field_expression] = STATE(1707), + [sym_unsafe_block] = STATE(1934), + [sym_async_block] = STATE(1934), + [sym_gen_block] = STATE(1934), + [sym_try_block] = STATE(1934), + [sym_block] = STATE(1934), + [sym__literal] = STATE(1934), + [sym_string_literal] = STATE(1949), + [sym_raw_string_literal] = STATE(1949), + [sym_boolean_literal] = STATE(1949), + [sym_line_comment] = STATE(286), + [sym_block_comment] = STATE(286), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(740), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(774), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(427), + [anon_sym_break] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_default] = ACTIONS(435), + [anon_sym_for] = ACTIONS(437), + [anon_sym_gen] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_loop] = ACTIONS(443), + [anon_sym_match] = ACTIONS(445), + [anon_sym_return] = ACTIONS(447), + [anon_sym_static] = ACTIONS(449), + [anon_sym_union] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(451), + [anon_sym_while] = ACTIONS(453), + [anon_sym_yield] = ACTIONS(455), + [anon_sym_move] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [aux_sym_string_literal_token1] = ACTIONS(463), + [sym_char_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(467), + [sym_super] = ACTIONS(469), + [sym_crate] = ACTIONS(469), + [sym_metavariable] = ACTIONS(471), + [sym__raw_string_literal_start] = ACTIONS(473), + [sym_float_literal] = ACTIONS(461), + }, + [STATE(287)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(305), + [sym_bracketed_type] = STATE(3726), + [sym_generic_function] = STATE(1934), + [sym_generic_type_with_turbofish] = STATE(3067), + [sym__expression_except_range] = STATE(1755), + [sym__expression] = STATE(1895), + [sym_expression_with_attribute] = STATE(1958), + [sym__expression_without_attribute] = STATE(1958), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(1673), + [sym_scoped_type_identifier_in_expression_position] = STATE(3301), + [sym_range_expression] = STATE(1801), + [sym_unary_expression] = STATE(1934), + [sym_try_expression] = STATE(1934), + [sym_reference_expression] = STATE(1934), + [sym_binary_expression] = STATE(1934), + [sym_assignment_expression] = STATE(1934), + [sym_compound_assignment_expr] = STATE(1934), + [sym_type_cast_expression] = STATE(1934), + [sym_return_expression] = STATE(1934), + [sym_yield_expression] = STATE(1934), + [sym_call_expression] = STATE(1934), + [sym_array_expression] = STATE(1934), + [sym_parenthesized_expression] = STATE(1934), + [sym_tuple_expression] = STATE(1934), + [sym_unit_expression] = STATE(1934), + [sym_struct_expression] = STATE(1934), + [sym_if_expression] = STATE(1934), + [sym_match_expression] = STATE(1934), + [sym_while_expression] = STATE(1934), + [sym_loop_expression] = STATE(1934), + [sym_for_expression] = STATE(1934), + [sym_const_block] = STATE(1934), + [sym_closure_expression] = STATE(1934), + [sym_closure_parameters] = STATE(154), + [sym_label] = STATE(3832), + [sym_break_expression] = STATE(1934), + [sym_continue_expression] = STATE(1934), + [sym_index_expression] = STATE(1934), + [sym_await_expression] = STATE(1934), + [sym_field_expression] = STATE(1707), + [sym_unsafe_block] = STATE(1934), + [sym_async_block] = STATE(1934), + [sym_gen_block] = STATE(1934), + [sym_try_block] = STATE(1934), + [sym_block] = STATE(1934), + [sym__literal] = STATE(1934), + [sym_string_literal] = STATE(1949), + [sym_raw_string_literal] = STATE(1949), + [sym_boolean_literal] = STATE(1949), + [sym_line_comment] = STATE(287), + [sym_block_comment] = STATE(287), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(740), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(774), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(427), + [anon_sym_break] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_default] = ACTIONS(435), + [anon_sym_for] = ACTIONS(437), + [anon_sym_gen] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_loop] = ACTIONS(443), + [anon_sym_match] = ACTIONS(445), + [anon_sym_return] = ACTIONS(447), + [anon_sym_static] = ACTIONS(449), + [anon_sym_union] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(451), + [anon_sym_while] = ACTIONS(453), + [anon_sym_yield] = ACTIONS(455), + [anon_sym_move] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [aux_sym_string_literal_token1] = ACTIONS(463), + [sym_char_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(467), + [sym_super] = ACTIONS(469), + [sym_crate] = ACTIONS(469), + [sym_metavariable] = ACTIONS(471), + [sym__raw_string_literal_start] = ACTIONS(473), + [sym_float_literal] = ACTIONS(461), + }, + [STATE(288)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(305), + [sym_bracketed_type] = STATE(3726), + [sym_generic_function] = STATE(1934), + [sym_generic_type_with_turbofish] = STATE(3067), + [sym__expression_except_range] = STATE(1755), + [sym__expression] = STATE(1896), + [sym_expression_with_attribute] = STATE(1958), + [sym__expression_without_attribute] = STATE(1958), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(1673), + [sym_scoped_type_identifier_in_expression_position] = STATE(3301), + [sym_range_expression] = STATE(1801), + [sym_unary_expression] = STATE(1934), + [sym_try_expression] = STATE(1934), + [sym_reference_expression] = STATE(1934), + [sym_binary_expression] = STATE(1934), + [sym_assignment_expression] = STATE(1934), + [sym_compound_assignment_expr] = STATE(1934), + [sym_type_cast_expression] = STATE(1934), + [sym_return_expression] = STATE(1934), + [sym_yield_expression] = STATE(1934), + [sym_call_expression] = STATE(1934), + [sym_array_expression] = STATE(1934), + [sym_parenthesized_expression] = STATE(1934), + [sym_tuple_expression] = STATE(1934), + [sym_unit_expression] = STATE(1934), + [sym_struct_expression] = STATE(1934), + [sym_if_expression] = STATE(1934), + [sym_match_expression] = STATE(1934), + [sym_while_expression] = STATE(1934), + [sym_loop_expression] = STATE(1934), + [sym_for_expression] = STATE(1934), + [sym_const_block] = STATE(1934), + [sym_closure_expression] = STATE(1934), + [sym_closure_parameters] = STATE(154), + [sym_label] = STATE(3832), + [sym_break_expression] = STATE(1934), + [sym_continue_expression] = STATE(1934), + [sym_index_expression] = STATE(1934), + [sym_await_expression] = STATE(1934), + [sym_field_expression] = STATE(1707), + [sym_unsafe_block] = STATE(1934), + [sym_async_block] = STATE(1934), + [sym_gen_block] = STATE(1934), + [sym_try_block] = STATE(1934), + [sym_block] = STATE(1934), + [sym__literal] = STATE(1934), + [sym_string_literal] = STATE(1949), + [sym_raw_string_literal] = STATE(1949), + [sym_boolean_literal] = STATE(1949), + [sym_line_comment] = STATE(288), + [sym_block_comment] = STATE(288), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(740), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(774), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(427), + [anon_sym_break] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_default] = ACTIONS(435), + [anon_sym_for] = ACTIONS(437), + [anon_sym_gen] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_loop] = ACTIONS(443), + [anon_sym_match] = ACTIONS(445), + [anon_sym_return] = ACTIONS(447), + [anon_sym_static] = ACTIONS(449), + [anon_sym_union] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(451), + [anon_sym_while] = ACTIONS(453), + [anon_sym_yield] = ACTIONS(455), + [anon_sym_move] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [aux_sym_string_literal_token1] = ACTIONS(463), + [sym_char_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(467), + [sym_super] = ACTIONS(469), + [sym_crate] = ACTIONS(469), + [sym_metavariable] = ACTIONS(471), + [sym__raw_string_literal_start] = ACTIONS(473), + [sym_float_literal] = ACTIONS(461), + }, + [STATE(289)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(305), + [sym_bracketed_type] = STATE(3726), + [sym_generic_function] = STATE(1934), + [sym_generic_type_with_turbofish] = STATE(3067), + [sym__expression_except_range] = STATE(1755), + [sym__expression] = STATE(1897), + [sym_expression_with_attribute] = STATE(1958), + [sym__expression_without_attribute] = STATE(1958), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(1673), + [sym_scoped_type_identifier_in_expression_position] = STATE(3301), + [sym_range_expression] = STATE(1801), + [sym_unary_expression] = STATE(1934), + [sym_try_expression] = STATE(1934), + [sym_reference_expression] = STATE(1934), + [sym_binary_expression] = STATE(1934), + [sym_assignment_expression] = STATE(1934), + [sym_compound_assignment_expr] = STATE(1934), + [sym_type_cast_expression] = STATE(1934), + [sym_return_expression] = STATE(1934), + [sym_yield_expression] = STATE(1934), + [sym_call_expression] = STATE(1934), + [sym_array_expression] = STATE(1934), + [sym_parenthesized_expression] = STATE(1934), + [sym_tuple_expression] = STATE(1934), + [sym_unit_expression] = STATE(1934), + [sym_struct_expression] = STATE(1934), + [sym_if_expression] = STATE(1934), + [sym_match_expression] = STATE(1934), + [sym_while_expression] = STATE(1934), + [sym_loop_expression] = STATE(1934), + [sym_for_expression] = STATE(1934), + [sym_const_block] = STATE(1934), + [sym_closure_expression] = STATE(1934), + [sym_closure_parameters] = STATE(154), + [sym_label] = STATE(3832), + [sym_break_expression] = STATE(1934), + [sym_continue_expression] = STATE(1934), + [sym_index_expression] = STATE(1934), + [sym_await_expression] = STATE(1934), + [sym_field_expression] = STATE(1707), + [sym_unsafe_block] = STATE(1934), + [sym_async_block] = STATE(1934), + [sym_gen_block] = STATE(1934), + [sym_try_block] = STATE(1934), + [sym_block] = STATE(1934), + [sym__literal] = STATE(1934), + [sym_string_literal] = STATE(1949), + [sym_raw_string_literal] = STATE(1949), + [sym_boolean_literal] = STATE(1949), + [sym_line_comment] = STATE(289), + [sym_block_comment] = STATE(289), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(740), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(774), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(427), + [anon_sym_break] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_default] = ACTIONS(435), + [anon_sym_for] = ACTIONS(437), + [anon_sym_gen] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_loop] = ACTIONS(443), + [anon_sym_match] = ACTIONS(445), + [anon_sym_return] = ACTIONS(447), + [anon_sym_static] = ACTIONS(449), + [anon_sym_union] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(451), + [anon_sym_while] = ACTIONS(453), + [anon_sym_yield] = ACTIONS(455), + [anon_sym_move] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [aux_sym_string_literal_token1] = ACTIONS(463), + [sym_char_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(467), + [sym_super] = ACTIONS(469), + [sym_crate] = ACTIONS(469), + [sym_metavariable] = ACTIONS(471), + [sym__raw_string_literal_start] = ACTIONS(473), + [sym_float_literal] = ACTIONS(461), + }, + [STATE(290)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(305), + [sym_bracketed_type] = STATE(3726), + [sym_generic_function] = STATE(1934), + [sym_generic_type_with_turbofish] = STATE(3067), + [sym__expression_except_range] = STATE(1755), + [sym__expression] = STATE(1898), + [sym_expression_with_attribute] = STATE(1958), + [sym__expression_without_attribute] = STATE(1958), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(1673), + [sym_scoped_type_identifier_in_expression_position] = STATE(3301), + [sym_range_expression] = STATE(1801), + [sym_unary_expression] = STATE(1934), + [sym_try_expression] = STATE(1934), + [sym_reference_expression] = STATE(1934), + [sym_binary_expression] = STATE(1934), + [sym_assignment_expression] = STATE(1934), + [sym_compound_assignment_expr] = STATE(1934), + [sym_type_cast_expression] = STATE(1934), + [sym_return_expression] = STATE(1934), + [sym_yield_expression] = STATE(1934), + [sym_call_expression] = STATE(1934), + [sym_array_expression] = STATE(1934), + [sym_parenthesized_expression] = STATE(1934), + [sym_tuple_expression] = STATE(1934), + [sym_unit_expression] = STATE(1934), + [sym_struct_expression] = STATE(1934), + [sym_if_expression] = STATE(1934), + [sym_match_expression] = STATE(1934), + [sym_while_expression] = STATE(1934), + [sym_loop_expression] = STATE(1934), + [sym_for_expression] = STATE(1934), + [sym_const_block] = STATE(1934), + [sym_closure_expression] = STATE(1934), + [sym_closure_parameters] = STATE(154), + [sym_label] = STATE(3832), + [sym_break_expression] = STATE(1934), + [sym_continue_expression] = STATE(1934), + [sym_index_expression] = STATE(1934), + [sym_await_expression] = STATE(1934), + [sym_field_expression] = STATE(1707), + [sym_unsafe_block] = STATE(1934), + [sym_async_block] = STATE(1934), + [sym_gen_block] = STATE(1934), + [sym_try_block] = STATE(1934), + [sym_block] = STATE(1934), + [sym__literal] = STATE(1934), + [sym_string_literal] = STATE(1949), + [sym_raw_string_literal] = STATE(1949), + [sym_boolean_literal] = STATE(1949), + [sym_line_comment] = STATE(290), + [sym_block_comment] = STATE(290), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(740), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(774), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(427), + [anon_sym_break] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_default] = ACTIONS(435), + [anon_sym_for] = ACTIONS(437), + [anon_sym_gen] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_loop] = ACTIONS(443), + [anon_sym_match] = ACTIONS(445), + [anon_sym_return] = ACTIONS(447), + [anon_sym_static] = ACTIONS(449), + [anon_sym_union] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(451), + [anon_sym_while] = ACTIONS(453), + [anon_sym_yield] = ACTIONS(455), + [anon_sym_move] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [aux_sym_string_literal_token1] = ACTIONS(463), + [sym_char_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(467), + [sym_super] = ACTIONS(469), + [sym_crate] = ACTIONS(469), + [sym_metavariable] = ACTIONS(471), + [sym__raw_string_literal_start] = ACTIONS(473), + [sym_float_literal] = ACTIONS(461), + }, + [STATE(291)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(305), + [sym_bracketed_type] = STATE(3726), + [sym_generic_function] = STATE(1934), + [sym_generic_type_with_turbofish] = STATE(3067), + [sym__expression_except_range] = STATE(1755), + [sym__expression] = STATE(1899), + [sym_expression_with_attribute] = STATE(1958), + [sym__expression_without_attribute] = STATE(1958), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(1673), + [sym_scoped_type_identifier_in_expression_position] = STATE(3301), + [sym_range_expression] = STATE(1801), + [sym_unary_expression] = STATE(1934), + [sym_try_expression] = STATE(1934), + [sym_reference_expression] = STATE(1934), + [sym_binary_expression] = STATE(1934), + [sym_assignment_expression] = STATE(1934), + [sym_compound_assignment_expr] = STATE(1934), + [sym_type_cast_expression] = STATE(1934), + [sym_return_expression] = STATE(1934), + [sym_yield_expression] = STATE(1934), + [sym_call_expression] = STATE(1934), + [sym_array_expression] = STATE(1934), + [sym_parenthesized_expression] = STATE(1934), + [sym_tuple_expression] = STATE(1934), + [sym_unit_expression] = STATE(1934), + [sym_struct_expression] = STATE(1934), + [sym_if_expression] = STATE(1934), + [sym_match_expression] = STATE(1934), + [sym_while_expression] = STATE(1934), + [sym_loop_expression] = STATE(1934), + [sym_for_expression] = STATE(1934), + [sym_const_block] = STATE(1934), + [sym_closure_expression] = STATE(1934), + [sym_closure_parameters] = STATE(154), + [sym_label] = STATE(3832), + [sym_break_expression] = STATE(1934), + [sym_continue_expression] = STATE(1934), + [sym_index_expression] = STATE(1934), + [sym_await_expression] = STATE(1934), + [sym_field_expression] = STATE(1707), + [sym_unsafe_block] = STATE(1934), + [sym_async_block] = STATE(1934), + [sym_gen_block] = STATE(1934), + [sym_try_block] = STATE(1934), + [sym_block] = STATE(1934), + [sym__literal] = STATE(1934), + [sym_string_literal] = STATE(1949), + [sym_raw_string_literal] = STATE(1949), + [sym_boolean_literal] = STATE(1949), + [sym_line_comment] = STATE(291), + [sym_block_comment] = STATE(291), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(740), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(774), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(427), + [anon_sym_break] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_default] = ACTIONS(435), + [anon_sym_for] = ACTIONS(437), + [anon_sym_gen] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_loop] = ACTIONS(443), + [anon_sym_match] = ACTIONS(445), + [anon_sym_return] = ACTIONS(447), + [anon_sym_static] = ACTIONS(449), + [anon_sym_union] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(451), + [anon_sym_while] = ACTIONS(453), + [anon_sym_yield] = ACTIONS(455), + [anon_sym_move] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [aux_sym_string_literal_token1] = ACTIONS(463), + [sym_char_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(467), + [sym_super] = ACTIONS(469), + [sym_crate] = ACTIONS(469), + [sym_metavariable] = ACTIONS(471), + [sym__raw_string_literal_start] = ACTIONS(473), + [sym_float_literal] = ACTIONS(461), + }, + [STATE(292)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(305), + [sym_bracketed_type] = STATE(3726), + [sym_generic_function] = STATE(1934), + [sym_generic_type_with_turbofish] = STATE(3067), + [sym__expression_except_range] = STATE(1755), + [sym__expression] = STATE(1901), + [sym_expression_with_attribute] = STATE(1958), + [sym__expression_without_attribute] = STATE(1958), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(1673), + [sym_scoped_type_identifier_in_expression_position] = STATE(3301), + [sym_range_expression] = STATE(1801), + [sym_unary_expression] = STATE(1934), + [sym_try_expression] = STATE(1934), + [sym_reference_expression] = STATE(1934), + [sym_binary_expression] = STATE(1934), + [sym_assignment_expression] = STATE(1934), + [sym_compound_assignment_expr] = STATE(1934), + [sym_type_cast_expression] = STATE(1934), + [sym_return_expression] = STATE(1934), + [sym_yield_expression] = STATE(1934), + [sym_call_expression] = STATE(1934), + [sym_array_expression] = STATE(1934), + [sym_parenthesized_expression] = STATE(1934), + [sym_tuple_expression] = STATE(1934), + [sym_unit_expression] = STATE(1934), + [sym_struct_expression] = STATE(1934), + [sym_if_expression] = STATE(1934), + [sym_match_expression] = STATE(1934), + [sym_while_expression] = STATE(1934), + [sym_loop_expression] = STATE(1934), + [sym_for_expression] = STATE(1934), + [sym_const_block] = STATE(1934), + [sym_closure_expression] = STATE(1934), + [sym_closure_parameters] = STATE(154), + [sym_label] = STATE(3832), + [sym_break_expression] = STATE(1934), + [sym_continue_expression] = STATE(1934), + [sym_index_expression] = STATE(1934), + [sym_await_expression] = STATE(1934), + [sym_field_expression] = STATE(1707), + [sym_unsafe_block] = STATE(1934), + [sym_async_block] = STATE(1934), + [sym_gen_block] = STATE(1934), + [sym_try_block] = STATE(1934), + [sym_block] = STATE(1934), + [sym__literal] = STATE(1934), + [sym_string_literal] = STATE(1949), + [sym_raw_string_literal] = STATE(1949), + [sym_boolean_literal] = STATE(1949), + [sym_line_comment] = STATE(292), + [sym_block_comment] = STATE(292), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(740), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(774), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(427), + [anon_sym_break] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_default] = ACTIONS(435), + [anon_sym_for] = ACTIONS(437), + [anon_sym_gen] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_loop] = ACTIONS(443), + [anon_sym_match] = ACTIONS(445), + [anon_sym_return] = ACTIONS(447), + [anon_sym_static] = ACTIONS(449), + [anon_sym_union] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(451), + [anon_sym_while] = ACTIONS(453), + [anon_sym_yield] = ACTIONS(455), + [anon_sym_move] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [aux_sym_string_literal_token1] = ACTIONS(463), + [sym_char_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(467), + [sym_super] = ACTIONS(469), + [sym_crate] = ACTIONS(469), + [sym_metavariable] = ACTIONS(471), + [sym__raw_string_literal_start] = ACTIONS(473), + [sym_float_literal] = ACTIONS(461), + }, + [STATE(293)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(305), + [sym_bracketed_type] = STATE(3726), + [sym_generic_function] = STATE(1934), + [sym_generic_type_with_turbofish] = STATE(3067), + [sym__expression_except_range] = STATE(1755), + [sym__expression] = STATE(1902), + [sym_expression_with_attribute] = STATE(1958), + [sym__expression_without_attribute] = STATE(1958), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(1673), + [sym_scoped_type_identifier_in_expression_position] = STATE(3301), + [sym_range_expression] = STATE(1801), + [sym_unary_expression] = STATE(1934), + [sym_try_expression] = STATE(1934), + [sym_reference_expression] = STATE(1934), + [sym_binary_expression] = STATE(1934), + [sym_assignment_expression] = STATE(1934), + [sym_compound_assignment_expr] = STATE(1934), + [sym_type_cast_expression] = STATE(1934), + [sym_return_expression] = STATE(1934), + [sym_yield_expression] = STATE(1934), + [sym_call_expression] = STATE(1934), + [sym_array_expression] = STATE(1934), + [sym_parenthesized_expression] = STATE(1934), + [sym_tuple_expression] = STATE(1934), + [sym_unit_expression] = STATE(1934), + [sym_struct_expression] = STATE(1934), + [sym_if_expression] = STATE(1934), + [sym_match_expression] = STATE(1934), + [sym_while_expression] = STATE(1934), + [sym_loop_expression] = STATE(1934), + [sym_for_expression] = STATE(1934), + [sym_const_block] = STATE(1934), + [sym_closure_expression] = STATE(1934), + [sym_closure_parameters] = STATE(154), + [sym_label] = STATE(3832), + [sym_break_expression] = STATE(1934), + [sym_continue_expression] = STATE(1934), + [sym_index_expression] = STATE(1934), + [sym_await_expression] = STATE(1934), + [sym_field_expression] = STATE(1707), + [sym_unsafe_block] = STATE(1934), + [sym_async_block] = STATE(1934), + [sym_gen_block] = STATE(1934), + [sym_try_block] = STATE(1934), + [sym_block] = STATE(1934), + [sym__literal] = STATE(1934), + [sym_string_literal] = STATE(1949), + [sym_raw_string_literal] = STATE(1949), + [sym_boolean_literal] = STATE(1949), + [sym_line_comment] = STATE(293), + [sym_block_comment] = STATE(293), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(740), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(774), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(427), + [anon_sym_break] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_default] = ACTIONS(435), + [anon_sym_for] = ACTIONS(437), + [anon_sym_gen] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_loop] = ACTIONS(443), + [anon_sym_match] = ACTIONS(445), + [anon_sym_return] = ACTIONS(447), + [anon_sym_static] = ACTIONS(449), + [anon_sym_union] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(451), + [anon_sym_while] = ACTIONS(453), + [anon_sym_yield] = ACTIONS(455), + [anon_sym_move] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [aux_sym_string_literal_token1] = ACTIONS(463), + [sym_char_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(467), + [sym_super] = ACTIONS(469), + [sym_crate] = ACTIONS(469), + [sym_metavariable] = ACTIONS(471), + [sym__raw_string_literal_start] = ACTIONS(473), + [sym_float_literal] = ACTIONS(461), + }, + [STATE(294)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(305), + [sym_bracketed_type] = STATE(3726), + [sym_generic_function] = STATE(1934), + [sym_generic_type_with_turbofish] = STATE(3067), + [sym__expression_except_range] = STATE(1755), + [sym__expression] = STATE(1903), + [sym_expression_with_attribute] = STATE(1958), + [sym__expression_without_attribute] = STATE(1958), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(1673), + [sym_scoped_type_identifier_in_expression_position] = STATE(3301), + [sym_range_expression] = STATE(1801), + [sym_unary_expression] = STATE(1934), + [sym_try_expression] = STATE(1934), + [sym_reference_expression] = STATE(1934), + [sym_binary_expression] = STATE(1934), + [sym_assignment_expression] = STATE(1934), + [sym_compound_assignment_expr] = STATE(1934), + [sym_type_cast_expression] = STATE(1934), + [sym_return_expression] = STATE(1934), + [sym_yield_expression] = STATE(1934), + [sym_call_expression] = STATE(1934), + [sym_array_expression] = STATE(1934), + [sym_parenthesized_expression] = STATE(1934), + [sym_tuple_expression] = STATE(1934), + [sym_unit_expression] = STATE(1934), + [sym_struct_expression] = STATE(1934), + [sym_if_expression] = STATE(1934), + [sym_match_expression] = STATE(1934), + [sym_while_expression] = STATE(1934), + [sym_loop_expression] = STATE(1934), + [sym_for_expression] = STATE(1934), + [sym_const_block] = STATE(1934), + [sym_closure_expression] = STATE(1934), + [sym_closure_parameters] = STATE(154), + [sym_label] = STATE(3832), + [sym_break_expression] = STATE(1934), + [sym_continue_expression] = STATE(1934), + [sym_index_expression] = STATE(1934), + [sym_await_expression] = STATE(1934), + [sym_field_expression] = STATE(1707), + [sym_unsafe_block] = STATE(1934), + [sym_async_block] = STATE(1934), + [sym_gen_block] = STATE(1934), + [sym_try_block] = STATE(1934), + [sym_block] = STATE(1934), + [sym__literal] = STATE(1934), + [sym_string_literal] = STATE(1949), + [sym_raw_string_literal] = STATE(1949), + [sym_boolean_literal] = STATE(1949), + [sym_line_comment] = STATE(294), + [sym_block_comment] = STATE(294), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(740), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(774), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(427), + [anon_sym_break] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_default] = ACTIONS(435), + [anon_sym_for] = ACTIONS(437), + [anon_sym_gen] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_loop] = ACTIONS(443), + [anon_sym_match] = ACTIONS(445), + [anon_sym_return] = ACTIONS(447), + [anon_sym_static] = ACTIONS(449), + [anon_sym_union] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(451), + [anon_sym_while] = ACTIONS(453), + [anon_sym_yield] = ACTIONS(455), + [anon_sym_move] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [aux_sym_string_literal_token1] = ACTIONS(463), + [sym_char_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(467), + [sym_super] = ACTIONS(469), + [sym_crate] = ACTIONS(469), + [sym_metavariable] = ACTIONS(471), + [sym__raw_string_literal_start] = ACTIONS(473), + [sym_float_literal] = ACTIONS(461), + }, + [STATE(295)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(305), + [sym_bracketed_type] = STATE(3726), + [sym_generic_function] = STATE(1934), + [sym_generic_type_with_turbofish] = STATE(3067), + [sym__expression_except_range] = STATE(1755), + [sym__expression] = STATE(1904), + [sym_expression_with_attribute] = STATE(1958), + [sym__expression_without_attribute] = STATE(1958), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(1673), + [sym_scoped_type_identifier_in_expression_position] = STATE(3301), + [sym_range_expression] = STATE(1801), + [sym_unary_expression] = STATE(1934), + [sym_try_expression] = STATE(1934), + [sym_reference_expression] = STATE(1934), + [sym_binary_expression] = STATE(1934), + [sym_assignment_expression] = STATE(1934), + [sym_compound_assignment_expr] = STATE(1934), + [sym_type_cast_expression] = STATE(1934), + [sym_return_expression] = STATE(1934), + [sym_yield_expression] = STATE(1934), + [sym_call_expression] = STATE(1934), + [sym_array_expression] = STATE(1934), + [sym_parenthesized_expression] = STATE(1934), + [sym_tuple_expression] = STATE(1934), + [sym_unit_expression] = STATE(1934), + [sym_struct_expression] = STATE(1934), + [sym_if_expression] = STATE(1934), + [sym_match_expression] = STATE(1934), + [sym_while_expression] = STATE(1934), + [sym_loop_expression] = STATE(1934), + [sym_for_expression] = STATE(1934), + [sym_const_block] = STATE(1934), + [sym_closure_expression] = STATE(1934), + [sym_closure_parameters] = STATE(154), + [sym_label] = STATE(3832), + [sym_break_expression] = STATE(1934), + [sym_continue_expression] = STATE(1934), + [sym_index_expression] = STATE(1934), + [sym_await_expression] = STATE(1934), + [sym_field_expression] = STATE(1707), + [sym_unsafe_block] = STATE(1934), + [sym_async_block] = STATE(1934), + [sym_gen_block] = STATE(1934), + [sym_try_block] = STATE(1934), + [sym_block] = STATE(1934), + [sym__literal] = STATE(1934), + [sym_string_literal] = STATE(1949), + [sym_raw_string_literal] = STATE(1949), + [sym_boolean_literal] = STATE(1949), + [sym_line_comment] = STATE(295), + [sym_block_comment] = STATE(295), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(740), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(774), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(427), + [anon_sym_break] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_default] = ACTIONS(435), + [anon_sym_for] = ACTIONS(437), + [anon_sym_gen] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_loop] = ACTIONS(443), + [anon_sym_match] = ACTIONS(445), + [anon_sym_return] = ACTIONS(447), + [anon_sym_static] = ACTIONS(449), + [anon_sym_union] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(451), + [anon_sym_while] = ACTIONS(453), + [anon_sym_yield] = ACTIONS(455), + [anon_sym_move] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [aux_sym_string_literal_token1] = ACTIONS(463), + [sym_char_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(467), + [sym_super] = ACTIONS(469), + [sym_crate] = ACTIONS(469), + [sym_metavariable] = ACTIONS(471), + [sym__raw_string_literal_start] = ACTIONS(473), + [sym_float_literal] = ACTIONS(461), + }, + [STATE(296)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(283), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1785), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(178), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(296), + [sym_block_comment] = STATE(296), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(794), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(794), + [anon_sym_BANG] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(796), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(511), + [anon_sym_break] = ACTIONS(513), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(515), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(517), + [anon_sym_static] = ACTIONS(519), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(521), + [anon_sym_move] = ACTIONS(523), + [anon_sym_try] = ACTIONS(359), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(297)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(305), + [sym_bracketed_type] = STATE(3726), + [sym_generic_function] = STATE(1934), + [sym_generic_type_with_turbofish] = STATE(3067), + [sym__expression_except_range] = STATE(1755), + [sym__expression] = STATE(1933), + [sym_expression_with_attribute] = STATE(1958), + [sym__expression_without_attribute] = STATE(1958), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(1673), + [sym_scoped_type_identifier_in_expression_position] = STATE(3301), + [sym_range_expression] = STATE(1801), + [sym_unary_expression] = STATE(1934), + [sym_try_expression] = STATE(1934), + [sym_reference_expression] = STATE(1934), + [sym_binary_expression] = STATE(1934), + [sym_assignment_expression] = STATE(1934), + [sym_compound_assignment_expr] = STATE(1934), + [sym_type_cast_expression] = STATE(1934), + [sym_return_expression] = STATE(1934), + [sym_yield_expression] = STATE(1934), + [sym_call_expression] = STATE(1934), + [sym_array_expression] = STATE(1934), + [sym_parenthesized_expression] = STATE(1934), + [sym_tuple_expression] = STATE(1934), + [sym_unit_expression] = STATE(1934), + [sym_struct_expression] = STATE(1934), + [sym_if_expression] = STATE(1934), + [sym_match_expression] = STATE(1934), + [sym_while_expression] = STATE(1934), + [sym_loop_expression] = STATE(1934), + [sym_for_expression] = STATE(1934), + [sym_const_block] = STATE(1934), + [sym_closure_expression] = STATE(1934), + [sym_closure_parameters] = STATE(154), + [sym_label] = STATE(3832), + [sym_break_expression] = STATE(1934), + [sym_continue_expression] = STATE(1934), + [sym_index_expression] = STATE(1934), + [sym_await_expression] = STATE(1934), + [sym_field_expression] = STATE(1707), + [sym_unsafe_block] = STATE(1934), + [sym_async_block] = STATE(1934), + [sym_gen_block] = STATE(1934), + [sym_try_block] = STATE(1934), + [sym_block] = STATE(1934), + [sym__literal] = STATE(1934), + [sym_string_literal] = STATE(1949), + [sym_raw_string_literal] = STATE(1949), + [sym_boolean_literal] = STATE(1949), + [sym_line_comment] = STATE(297), + [sym_block_comment] = STATE(297), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(740), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(774), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(427), + [anon_sym_break] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_default] = ACTIONS(435), + [anon_sym_for] = ACTIONS(437), + [anon_sym_gen] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_loop] = ACTIONS(443), + [anon_sym_match] = ACTIONS(445), + [anon_sym_return] = ACTIONS(447), + [anon_sym_static] = ACTIONS(449), + [anon_sym_union] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(451), + [anon_sym_while] = ACTIONS(453), + [anon_sym_yield] = ACTIONS(455), + [anon_sym_move] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [aux_sym_string_literal_token1] = ACTIONS(463), + [sym_char_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(467), + [sym_super] = ACTIONS(469), + [sym_crate] = ACTIONS(469), + [sym_metavariable] = ACTIONS(471), + [sym__raw_string_literal_start] = ACTIONS(473), + [sym_float_literal] = ACTIONS(461), + }, + [STATE(298)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(2036), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1571), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(298), + [sym_block_comment] = STATE(298), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(824), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(299)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(298), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1700), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(299), + [sym_block_comment] = STATE(299), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(824), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(300)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1796), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(300), + [sym_block_comment] = STATE(300), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -57505,25 +53141,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -57538,172 +53175,773 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(354)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1952), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), - [sym_line_comment] = STATE(354), - [sym_block_comment] = STATE(354), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [STATE(301)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(2027), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1571), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(178), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(301), + [sym_block_comment] = STATE(301), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(794), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(794), + [anon_sym_BANG] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(796), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(511), + [anon_sym_break] = ACTIONS(513), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(515), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(517), + [anon_sym_static] = ACTIONS(519), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(521), + [anon_sym_move] = ACTIONS(523), + [anon_sym_try] = ACTIONS(359), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(302)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(301), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1785), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(178), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(302), + [sym_block_comment] = STATE(302), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(794), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(794), + [anon_sym_BANG] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(796), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(993), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [anon_sym_async] = ACTIONS(511), + [anon_sym_break] = ACTIONS(513), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(515), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(517), + [anon_sym_static] = ACTIONS(519), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(521), + [anon_sym_move] = ACTIONS(523), + [anon_sym_try] = ACTIONS(359), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [STATE(355)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1962), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(355), - [sym_block_comment] = STATE(355), - [sym_identifier] = ACTIONS(339), + [STATE(303)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3726), + [sym_generic_function] = STATE(1934), + [sym_generic_type_with_turbofish] = STATE(3067), + [sym__expression_except_range] = STATE(1755), + [sym__expression] = STATE(2024), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1974), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(1673), + [sym_scoped_type_identifier_in_expression_position] = STATE(3301), + [sym_range_expression] = STATE(1801), + [sym_unary_expression] = STATE(1934), + [sym_try_expression] = STATE(1934), + [sym_reference_expression] = STATE(1934), + [sym_binary_expression] = STATE(1934), + [sym_assignment_expression] = STATE(1934), + [sym_compound_assignment_expr] = STATE(1934), + [sym_type_cast_expression] = STATE(1934), + [sym_return_expression] = STATE(1934), + [sym_yield_expression] = STATE(1934), + [sym_call_expression] = STATE(1934), + [sym_array_expression] = STATE(1934), + [sym_parenthesized_expression] = STATE(1934), + [sym_tuple_expression] = STATE(1934), + [sym_unit_expression] = STATE(1934), + [sym_struct_expression] = STATE(1934), + [sym_if_expression] = STATE(1934), + [sym_match_expression] = STATE(1934), + [sym_while_expression] = STATE(1934), + [sym_loop_expression] = STATE(1934), + [sym_for_expression] = STATE(1934), + [sym_const_block] = STATE(1934), + [sym_closure_expression] = STATE(1934), + [sym_closure_parameters] = STATE(154), + [sym_label] = STATE(3832), + [sym_break_expression] = STATE(1934), + [sym_continue_expression] = STATE(1934), + [sym_index_expression] = STATE(1934), + [sym_await_expression] = STATE(1934), + [sym_field_expression] = STATE(1707), + [sym_unsafe_block] = STATE(1934), + [sym_async_block] = STATE(1934), + [sym_gen_block] = STATE(1934), + [sym_try_block] = STATE(1934), + [sym_block] = STATE(1934), + [sym__literal] = STATE(1934), + [sym_string_literal] = STATE(1949), + [sym_raw_string_literal] = STATE(1949), + [sym_boolean_literal] = STATE(1949), + [sym_line_comment] = STATE(303), + [sym_block_comment] = STATE(303), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(740), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(744), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(427), + [anon_sym_break] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_default] = ACTIONS(435), + [anon_sym_for] = ACTIONS(437), + [anon_sym_gen] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_loop] = ACTIONS(443), + [anon_sym_match] = ACTIONS(445), + [anon_sym_return] = ACTIONS(447), + [anon_sym_static] = ACTIONS(449), + [anon_sym_union] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(451), + [anon_sym_while] = ACTIONS(453), + [anon_sym_yield] = ACTIONS(455), + [anon_sym_move] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [aux_sym_string_literal_token1] = ACTIONS(463), + [sym_char_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(467), + [sym_super] = ACTIONS(469), + [sym_crate] = ACTIONS(469), + [sym_metavariable] = ACTIONS(471), + [sym__raw_string_literal_start] = ACTIONS(473), + [sym_float_literal] = ACTIONS(461), + }, + [STATE(304)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(303), + [sym_bracketed_type] = STATE(3726), + [sym_generic_function] = STATE(1934), + [sym_generic_type_with_turbofish] = STATE(3067), + [sym__expression_except_range] = STATE(1755), + [sym__expression] = STATE(1905), + [sym_expression_with_attribute] = STATE(1958), + [sym__expression_without_attribute] = STATE(1958), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(1673), + [sym_scoped_type_identifier_in_expression_position] = STATE(3301), + [sym_range_expression] = STATE(1801), + [sym_unary_expression] = STATE(1934), + [sym_try_expression] = STATE(1934), + [sym_reference_expression] = STATE(1934), + [sym_binary_expression] = STATE(1934), + [sym_assignment_expression] = STATE(1934), + [sym_compound_assignment_expr] = STATE(1934), + [sym_type_cast_expression] = STATE(1934), + [sym_return_expression] = STATE(1934), + [sym_yield_expression] = STATE(1934), + [sym_call_expression] = STATE(1934), + [sym_array_expression] = STATE(1934), + [sym_parenthesized_expression] = STATE(1934), + [sym_tuple_expression] = STATE(1934), + [sym_unit_expression] = STATE(1934), + [sym_struct_expression] = STATE(1934), + [sym_if_expression] = STATE(1934), + [sym_match_expression] = STATE(1934), + [sym_while_expression] = STATE(1934), + [sym_loop_expression] = STATE(1934), + [sym_for_expression] = STATE(1934), + [sym_const_block] = STATE(1934), + [sym_closure_expression] = STATE(1934), + [sym_closure_parameters] = STATE(154), + [sym_label] = STATE(3832), + [sym_break_expression] = STATE(1934), + [sym_continue_expression] = STATE(1934), + [sym_index_expression] = STATE(1934), + [sym_await_expression] = STATE(1934), + [sym_field_expression] = STATE(1707), + [sym_unsafe_block] = STATE(1934), + [sym_async_block] = STATE(1934), + [sym_gen_block] = STATE(1934), + [sym_try_block] = STATE(1934), + [sym_block] = STATE(1934), + [sym__literal] = STATE(1934), + [sym_string_literal] = STATE(1949), + [sym_raw_string_literal] = STATE(1949), + [sym_boolean_literal] = STATE(1949), + [sym_line_comment] = STATE(304), + [sym_block_comment] = STATE(304), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(740), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(744), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(427), + [anon_sym_break] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_default] = ACTIONS(435), + [anon_sym_for] = ACTIONS(437), + [anon_sym_gen] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_loop] = ACTIONS(443), + [anon_sym_match] = ACTIONS(445), + [anon_sym_return] = ACTIONS(447), + [anon_sym_static] = ACTIONS(449), + [anon_sym_union] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(451), + [anon_sym_while] = ACTIONS(453), + [anon_sym_yield] = ACTIONS(455), + [anon_sym_move] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [aux_sym_string_literal_token1] = ACTIONS(463), + [sym_char_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(467), + [sym_super] = ACTIONS(469), + [sym_crate] = ACTIONS(469), + [sym_metavariable] = ACTIONS(471), + [sym__raw_string_literal_start] = ACTIONS(473), + [sym_float_literal] = ACTIONS(461), + }, + [STATE(305)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3726), + [sym_generic_function] = STATE(1934), + [sym_generic_type_with_turbofish] = STATE(3067), + [sym__expression_except_range] = STATE(1755), + [sym__expression] = STATE(2030), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1974), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(1673), + [sym_scoped_type_identifier_in_expression_position] = STATE(3301), + [sym_range_expression] = STATE(1801), + [sym_unary_expression] = STATE(1934), + [sym_try_expression] = STATE(1934), + [sym_reference_expression] = STATE(1934), + [sym_binary_expression] = STATE(1934), + [sym_assignment_expression] = STATE(1934), + [sym_compound_assignment_expr] = STATE(1934), + [sym_type_cast_expression] = STATE(1934), + [sym_return_expression] = STATE(1934), + [sym_yield_expression] = STATE(1934), + [sym_call_expression] = STATE(1934), + [sym_array_expression] = STATE(1934), + [sym_parenthesized_expression] = STATE(1934), + [sym_tuple_expression] = STATE(1934), + [sym_unit_expression] = STATE(1934), + [sym_struct_expression] = STATE(1934), + [sym_if_expression] = STATE(1934), + [sym_match_expression] = STATE(1934), + [sym_while_expression] = STATE(1934), + [sym_loop_expression] = STATE(1934), + [sym_for_expression] = STATE(1934), + [sym_const_block] = STATE(1934), + [sym_closure_expression] = STATE(1934), + [sym_closure_parameters] = STATE(154), + [sym_label] = STATE(3832), + [sym_break_expression] = STATE(1934), + [sym_continue_expression] = STATE(1934), + [sym_index_expression] = STATE(1934), + [sym_await_expression] = STATE(1934), + [sym_field_expression] = STATE(1707), + [sym_unsafe_block] = STATE(1934), + [sym_async_block] = STATE(1934), + [sym_gen_block] = STATE(1934), + [sym_try_block] = STATE(1934), + [sym_block] = STATE(1934), + [sym__literal] = STATE(1934), + [sym_string_literal] = STATE(1949), + [sym_raw_string_literal] = STATE(1949), + [sym_boolean_literal] = STATE(1949), + [sym_line_comment] = STATE(305), + [sym_block_comment] = STATE(305), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(740), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(774), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(427), + [anon_sym_break] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_default] = ACTIONS(435), + [anon_sym_for] = ACTIONS(437), + [anon_sym_gen] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_loop] = ACTIONS(443), + [anon_sym_match] = ACTIONS(445), + [anon_sym_return] = ACTIONS(447), + [anon_sym_static] = ACTIONS(449), + [anon_sym_union] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(451), + [anon_sym_while] = ACTIONS(453), + [anon_sym_yield] = ACTIONS(455), + [anon_sym_move] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [aux_sym_string_literal_token1] = ACTIONS(463), + [sym_char_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(467), + [sym_super] = ACTIONS(469), + [sym_crate] = ACTIONS(469), + [sym_metavariable] = ACTIONS(471), + [sym__raw_string_literal_start] = ACTIONS(473), + [sym_float_literal] = ACTIONS(461), + }, + [STATE(306)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(305), + [sym_bracketed_type] = STATE(3726), + [sym_generic_function] = STATE(1934), + [sym_generic_type_with_turbofish] = STATE(3067), + [sym__expression_except_range] = STATE(1755), + [sym__expression] = STATE(1905), + [sym_expression_with_attribute] = STATE(1958), + [sym__expression_without_attribute] = STATE(1958), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(1673), + [sym_scoped_type_identifier_in_expression_position] = STATE(3301), + [sym_range_expression] = STATE(1801), + [sym_unary_expression] = STATE(1934), + [sym_try_expression] = STATE(1934), + [sym_reference_expression] = STATE(1934), + [sym_binary_expression] = STATE(1934), + [sym_assignment_expression] = STATE(1934), + [sym_compound_assignment_expr] = STATE(1934), + [sym_type_cast_expression] = STATE(1934), + [sym_return_expression] = STATE(1934), + [sym_yield_expression] = STATE(1934), + [sym_call_expression] = STATE(1934), + [sym_array_expression] = STATE(1934), + [sym_parenthesized_expression] = STATE(1934), + [sym_tuple_expression] = STATE(1934), + [sym_unit_expression] = STATE(1934), + [sym_struct_expression] = STATE(1934), + [sym_if_expression] = STATE(1934), + [sym_match_expression] = STATE(1934), + [sym_while_expression] = STATE(1934), + [sym_loop_expression] = STATE(1934), + [sym_for_expression] = STATE(1934), + [sym_const_block] = STATE(1934), + [sym_closure_expression] = STATE(1934), + [sym_closure_parameters] = STATE(154), + [sym_label] = STATE(3832), + [sym_break_expression] = STATE(1934), + [sym_continue_expression] = STATE(1934), + [sym_index_expression] = STATE(1934), + [sym_await_expression] = STATE(1934), + [sym_field_expression] = STATE(1707), + [sym_unsafe_block] = STATE(1934), + [sym_async_block] = STATE(1934), + [sym_gen_block] = STATE(1934), + [sym_try_block] = STATE(1934), + [sym_block] = STATE(1934), + [sym__literal] = STATE(1934), + [sym_string_literal] = STATE(1949), + [sym_raw_string_literal] = STATE(1949), + [sym_boolean_literal] = STATE(1949), + [sym_line_comment] = STATE(306), + [sym_block_comment] = STATE(306), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(740), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(774), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(427), + [anon_sym_break] = ACTIONS(429), + [anon_sym_const] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_default] = ACTIONS(435), + [anon_sym_for] = ACTIONS(437), + [anon_sym_gen] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_loop] = ACTIONS(443), + [anon_sym_match] = ACTIONS(445), + [anon_sym_return] = ACTIONS(447), + [anon_sym_static] = ACTIONS(449), + [anon_sym_union] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(451), + [anon_sym_while] = ACTIONS(453), + [anon_sym_yield] = ACTIONS(455), + [anon_sym_move] = ACTIONS(457), + [anon_sym_try] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(461), + [aux_sym_string_literal_token1] = ACTIONS(463), + [sym_char_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(465), + [anon_sym_false] = ACTIONS(465), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(467), + [sym_super] = ACTIONS(469), + [sym_crate] = ACTIONS(469), + [sym_metavariable] = ACTIONS(471), + [sym__raw_string_literal_start] = ACTIONS(473), + [sym_float_literal] = ACTIONS(461), + }, + [STATE(307)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(263), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1480), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(307), + [sym_block_comment] = STATE(307), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -57727,27 +53965,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -57762,60 +54001,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(356)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1768), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(356), - [sym_block_comment] = STATE(356), - [sym_identifier] = ACTIONS(339), + [STATE(308)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(298), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1480), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(308), + [sym_block_comment] = STATE(308), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(824), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(309)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(2023), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(309), + [sym_block_comment] = STATE(309), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -57841,25 +54203,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -57874,60 +54237,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(357)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1769), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(357), - [sym_block_comment] = STATE(357), - [sym_identifier] = ACTIONS(339), + [STATE(310)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1869), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1571), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(310), + [sym_block_comment] = STATE(310), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -57953,25 +54321,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -57986,172 +54355,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(358)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1933), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(358), - [sym_block_comment] = STATE(358), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1381), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(359)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1449), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(359), - [sym_block_comment] = STATE(359), - [sym_identifier] = ACTIONS(339), + [STATE(311)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(2007), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(311), + [sym_block_comment] = STATE(311), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -58175,27 +54437,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1093), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -58210,284 +54473,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(360)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1502), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(360), - [sym_block_comment] = STATE(360), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(361)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1871), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(361), - [sym_block_comment] = STATE(361), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1381), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(362)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1954), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(362), - [sym_block_comment] = STATE(362), - [sym_identifier] = ACTIONS(339), + [STATE(312)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(2016), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(312), + [sym_block_comment] = STATE(312), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -58513,25 +54557,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -58546,172 +54591,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(363)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1639), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(363), - [sym_block_comment] = STATE(363), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(364)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1880), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(364), - [sym_block_comment] = STATE(364), - [sym_identifier] = ACTIONS(339), + [STATE(313)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(2017), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(313), + [sym_block_comment] = STATE(313), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -58737,25 +54675,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -58770,104 +54709,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(365)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1770), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(365), - [sym_block_comment] = STATE(365), - [sym_identifier] = ACTIONS(475), + [STATE(314)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(267), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1793), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(314), + [sym_block_comment] = STATE(314), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(736), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -58875,111 +54820,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(366)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1455), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(366), - [sym_block_comment] = STATE(366), - [sym_identifier] = ACTIONS(475), + [STATE(315)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(301), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1480), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(178), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(315), + [sym_block_comment] = STATE(315), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(794), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(794), + [anon_sym_BANG] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(796), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), + [anon_sym_async] = ACTIONS(511), + [anon_sym_break] = ACTIONS(513), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(515), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(517), + [anon_sym_static] = ACTIONS(519), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(521), + [anon_sym_move] = ACTIONS(523), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -58987,67 +54938,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(367)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1963), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(367), - [sym_block_comment] = STATE(367), - [sym_identifier] = ACTIONS(339), + [STATE(316)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1761), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(316), + [sym_block_comment] = STATE(316), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -59073,25 +55029,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -59106,60 +55063,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(368)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), + [STATE(317)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), [sym__expression] = STATE(1964), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(368), - [sym_block_comment] = STATE(368), - [sym_identifier] = ACTIONS(339), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(317), + [sym_block_comment] = STATE(317), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -59185,25 +55147,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -59218,60 +55181,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(369)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1883), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(369), - [sym_block_comment] = STATE(369), - [sym_identifier] = ACTIONS(339), + [STATE(318)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1968), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(318), + [sym_block_comment] = STATE(318), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -59297,25 +55265,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -59330,104 +55299,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(370)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1968), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(370), - [sym_block_comment] = STATE(370), - [sym_identifier] = ACTIONS(339), + [STATE(319)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(283), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1915), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(178), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(319), + [sym_block_comment] = STATE(319), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(794), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(794), + [anon_sym_BANG] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(796), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_async] = ACTIONS(511), + [anon_sym_break] = ACTIONS(513), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(515), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(517), + [anon_sym_static] = ACTIONS(519), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(521), + [anon_sym_move] = ACTIONS(523), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -59435,67 +55410,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(371)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1886), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(371), - [sym_block_comment] = STATE(371), - [sym_identifier] = ACTIONS(339), + [STATE(320)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(2021), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(320), + [sym_block_comment] = STATE(320), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -59521,25 +55501,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -59554,60 +55535,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(372)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1971), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(372), - [sym_block_comment] = STATE(372), - [sym_identifier] = ACTIONS(339), + [STATE(321)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1721), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1571), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(321), + [sym_block_comment] = STATE(321), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -59633,25 +55619,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -59666,172 +55653,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(373)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1640), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(373), - [sym_block_comment] = STATE(373), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(374)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1889), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(374), - [sym_block_comment] = STATE(374), - [sym_identifier] = ACTIONS(339), + [STATE(322)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(2022), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(322), + [sym_block_comment] = STATE(322), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -59857,25 +55737,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -59890,60 +55771,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(375)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1941), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(375), - [sym_block_comment] = STATE(375), - [sym_identifier] = ACTIONS(339), + [STATE(323)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(267), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1689), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(323), + [sym_block_comment] = STATE(323), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(736), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(324)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1779), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(324), + [sym_block_comment] = STATE(324), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -59969,25 +55973,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -60002,60 +56007,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(376)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1942), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(376), - [sym_block_comment] = STATE(376), - [sym_identifier] = ACTIONS(339), + [STATE(325)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(2003), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(325), + [sym_block_comment] = STATE(325), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -60081,25 +56091,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -60114,60 +56125,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(377)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1943), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(377), - [sym_block_comment] = STATE(377), - [sym_identifier] = ACTIONS(339), + [STATE(326)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1988), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(326), + [sym_block_comment] = STATE(326), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -60193,25 +56209,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -60226,60 +56243,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(378)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1944), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(378), - [sym_block_comment] = STATE(378), - [sym_identifier] = ACTIONS(339), + [STATE(327)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1788), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(327), + [sym_block_comment] = STATE(327), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -60305,25 +56327,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -60338,104 +56361,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(379)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1771), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(379), - [sym_block_comment] = STATE(379), - [sym_identifier] = ACTIONS(475), + [STATE(328)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1990), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(328), + [sym_block_comment] = STATE(328), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), + [anon_sym_async] = ACTIONS(373), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -60443,111 +56472,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(380)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1893), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(380), - [sym_block_comment] = STATE(380), - [sym_identifier] = ACTIONS(475), + [STATE(329)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1798), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(329), + [sym_block_comment] = STATE(329), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1381), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), + [anon_sym_async] = ACTIONS(373), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -60555,111 +56590,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(381)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1772), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(381), - [sym_block_comment] = STATE(381), - [sym_identifier] = ACTIONS(475), + [STATE(330)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1991), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(330), + [sym_block_comment] = STATE(330), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), + [anon_sym_async] = ACTIONS(373), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -60667,111 +56708,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(382)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1773), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(382), - [sym_block_comment] = STATE(382), - [sym_identifier] = ACTIONS(475), + [STATE(331)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(267), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1678), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(331), + [sym_block_comment] = STATE(331), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(736), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -60779,111 +56826,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(383)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1641), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(383), - [sym_block_comment] = STATE(383), - [sym_identifier] = ACTIONS(475), + [STATE(332)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1804), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(332), + [sym_block_comment] = STATE(332), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -60891,111 +56944,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(384)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1678), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(384), - [sym_block_comment] = STATE(384), - [sym_identifier] = ACTIONS(475), + [STATE(333)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1994), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(333), + [sym_block_comment] = STATE(333), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -61003,67 +57062,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(385)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1959), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(385), - [sym_block_comment] = STATE(385), - [sym_identifier] = ACTIONS(339), + [STATE(334)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1995), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(334), + [sym_block_comment] = STATE(334), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -61089,25 +57153,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -61122,104 +57187,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(386)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1642), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(386), - [sym_block_comment] = STATE(386), - [sym_identifier] = ACTIONS(475), + [STATE(335)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1996), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(335), + [sym_block_comment] = STATE(335), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -61227,111 +57298,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(387)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1775), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(387), - [sym_block_comment] = STATE(387), - [sym_identifier] = ACTIONS(475), + [STATE(336)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1997), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(336), + [sym_block_comment] = STATE(336), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), + [anon_sym_async] = ACTIONS(373), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -61339,111 +57416,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(388)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1900), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(388), - [sym_block_comment] = STATE(388), - [sym_identifier] = ACTIONS(475), + [STATE(337)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(283), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1816), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(178), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(337), + [sym_block_comment] = STATE(337), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(794), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(794), + [anon_sym_BANG] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(796), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1381), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), + [anon_sym_async] = ACTIONS(511), + [anon_sym_break] = ACTIONS(513), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(515), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(517), + [anon_sym_static] = ACTIONS(519), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(521), + [anon_sym_move] = ACTIONS(523), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -61451,111 +57534,235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(389)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1776), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(389), - [sym_block_comment] = STATE(389), - [sym_identifier] = ACTIONS(475), + [STATE(338)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(267), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1695), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(338), + [sym_block_comment] = STATE(338), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(736), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(339)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(2000), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(339), + [sym_block_comment] = STATE(339), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), + [anon_sym_async] = ACTIONS(373), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -61563,111 +57770,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(390)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1643), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(390), - [sym_block_comment] = STATE(390), - [sym_identifier] = ACTIONS(475), + [STATE(340)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(267), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1687), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(340), + [sym_block_comment] = STATE(340), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(736), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -61675,111 +57888,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(391)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1777), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(391), - [sym_block_comment] = STATE(391), - [sym_identifier] = ACTIONS(475), + [STATE(341)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(283), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1849), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(178), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(341), + [sym_block_comment] = STATE(341), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(794), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(794), + [anon_sym_BANG] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(796), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), + [anon_sym_async] = ACTIONS(511), + [anon_sym_break] = ACTIONS(513), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(515), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(517), + [anon_sym_static] = ACTIONS(519), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(521), + [anon_sym_move] = ACTIONS(523), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -61787,111 +58006,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(392)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1644), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(392), - [sym_block_comment] = STATE(392), - [sym_identifier] = ACTIONS(475), + [STATE(342)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(283), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1848), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(178), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(342), + [sym_block_comment] = STATE(342), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(794), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(794), + [anon_sym_BANG] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(796), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(511), + [anon_sym_break] = ACTIONS(513), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(515), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(517), + [anon_sym_static] = ACTIONS(519), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(521), + [anon_sym_move] = ACTIONS(523), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -61899,67 +58124,308 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(393)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1951), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(479), - [sym_match_expression] = STATE(479), - [sym_while_expression] = STATE(479), - [sym_loop_expression] = STATE(479), - [sym_for_expression] = STATE(479), - [sym_const_block] = STATE(479), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), + [STATE(343)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(267), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1693), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), [sym_label] = STATE(3767), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(479), - [sym_async_block] = STATE(479), - [sym_gen_block] = STATE(479), - [sym_try_block] = STATE(479), - [sym_block] = STATE(479), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(393), - [sym_block_comment] = STATE(393), - [sym_identifier] = ACTIONS(339), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(343), + [sym_block_comment] = STATE(343), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(736), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(344)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(267), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1675), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(344), + [sym_block_comment] = STATE(344), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(736), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(345)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(249), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3007), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(2019), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1571), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1575), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(161), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(345), + [sym_block_comment] = STATE(345), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -61985,25 +58451,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1385), + [anon_sym_async] = ACTIONS(373), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(375), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1389), - [anon_sym_gen] = ACTIONS(1391), - [anon_sym_if] = ACTIONS(1393), - [anon_sym_loop] = ACTIONS(1395), - [anon_sym_match] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(377), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(379), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(1399), - [anon_sym_while] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(381), + [anon_sym_union] = ACTIONS(377), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1403), + [anon_sym_try] = ACTIONS(359), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -62018,7104 +58485,9916 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(394)] = { - [sym_line_comment] = STATE(394), - [sym_block_comment] = STATE(394), - [ts_builtin_sym_end] = ACTIONS(1433), - [sym_identifier] = ACTIONS(1435), - [anon_sym_SEMI] = ACTIONS(1433), - [anon_sym_macro_rules_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(1433), - [anon_sym_LBRACK] = ACTIONS(1433), - [anon_sym_LBRACE] = ACTIONS(1433), - [anon_sym_RBRACE] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_QMARK] = ACTIONS(1433), - [anon_sym_u8] = ACTIONS(1435), - [anon_sym_i8] = ACTIONS(1435), - [anon_sym_u16] = ACTIONS(1435), - [anon_sym_i16] = ACTIONS(1435), - [anon_sym_u32] = ACTIONS(1435), - [anon_sym_i32] = ACTIONS(1435), - [anon_sym_u64] = ACTIONS(1435), - [anon_sym_i64] = ACTIONS(1435), - [anon_sym_u128] = ACTIONS(1435), - [anon_sym_i128] = ACTIONS(1435), - [anon_sym_isize] = ACTIONS(1435), - [anon_sym_usize] = ACTIONS(1435), - [anon_sym_f32] = ACTIONS(1435), - [anon_sym_f64] = ACTIONS(1435), - [anon_sym_bool] = ACTIONS(1435), - [anon_sym_str] = ACTIONS(1435), - [anon_sym_char] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1435), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_BANG] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1433), - [anon_sym_PIPE_PIPE] = ACTIONS(1433), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1435), - [anon_sym_PLUS_EQ] = ACTIONS(1433), - [anon_sym_DASH_EQ] = ACTIONS(1433), - [anon_sym_STAR_EQ] = ACTIONS(1433), - [anon_sym_SLASH_EQ] = ACTIONS(1433), - [anon_sym_PERCENT_EQ] = ACTIONS(1433), - [anon_sym_CARET_EQ] = ACTIONS(1433), - [anon_sym_AMP_EQ] = ACTIONS(1433), - [anon_sym_PIPE_EQ] = ACTIONS(1433), - [anon_sym_LT_LT_EQ] = ACTIONS(1433), - [anon_sym_GT_GT_EQ] = ACTIONS(1433), - [anon_sym_EQ] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1433), - [anon_sym_BANG_EQ] = ACTIONS(1433), - [anon_sym_GT] = ACTIONS(1435), - [anon_sym_LT] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1433), - [anon_sym_LT_EQ] = ACTIONS(1433), - [anon_sym_DOT] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(1435), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1433), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1433), - [anon_sym_COLON_COLON] = ACTIONS(1433), - [anon_sym_POUND] = ACTIONS(1433), - [anon_sym_SQUOTE] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_async] = ACTIONS(1435), - [anon_sym_break] = ACTIONS(1435), - [anon_sym_const] = ACTIONS(1435), - [anon_sym_continue] = ACTIONS(1435), - [anon_sym_default] = ACTIONS(1435), - [anon_sym_enum] = ACTIONS(1435), - [anon_sym_fn] = ACTIONS(1435), - [anon_sym_for] = ACTIONS(1435), - [anon_sym_gen] = ACTIONS(1435), - [anon_sym_if] = ACTIONS(1435), - [anon_sym_impl] = ACTIONS(1435), - [anon_sym_let] = ACTIONS(1435), - [anon_sym_loop] = ACTIONS(1435), - [anon_sym_match] = ACTIONS(1435), - [anon_sym_mod] = ACTIONS(1435), - [anon_sym_pub] = ACTIONS(1435), - [anon_sym_return] = ACTIONS(1435), - [anon_sym_static] = ACTIONS(1435), - [anon_sym_struct] = ACTIONS(1435), - [anon_sym_trait] = ACTIONS(1435), - [anon_sym_type] = ACTIONS(1435), - [anon_sym_union] = ACTIONS(1435), - [anon_sym_unsafe] = ACTIONS(1435), - [anon_sym_use] = ACTIONS(1435), - [anon_sym_while] = ACTIONS(1435), - [anon_sym_extern] = ACTIONS(1435), - [anon_sym_else] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1435), - [anon_sym_move] = ACTIONS(1435), - [anon_sym_try] = ACTIONS(1435), - [sym_integer_literal] = ACTIONS(1433), - [aux_sym_string_literal_token1] = ACTIONS(1433), - [sym_char_literal] = ACTIONS(1433), - [anon_sym_true] = ACTIONS(1435), - [anon_sym_false] = ACTIONS(1435), + [STATE(346)] = { + [sym_attribute_item] = STATE(1094), + [sym_attributes] = STATE(298), + [sym_bracketed_type] = STATE(3612), + [sym_generic_function] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3078), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1546), + [sym_expression_with_attribute] = STATE(1564), + [sym__expression_without_attribute] = STATE(1564), + [sym_macro_invocation] = STATE(1588), + [sym_scoped_identifier] = STATE(1656), + [sym_scoped_type_identifier_in_expression_position] = STATE(3377), + [sym_range_expression] = STATE(1486), + [sym_unary_expression] = STATE(1557), + [sym_try_expression] = STATE(1557), + [sym_reference_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_assignment_expression] = STATE(1557), + [sym_compound_assignment_expr] = STATE(1557), + [sym_type_cast_expression] = STATE(1557), + [sym_return_expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_call_expression] = STATE(1557), + [sym_array_expression] = STATE(1557), + [sym_parenthesized_expression] = STATE(1557), + [sym_tuple_expression] = STATE(1557), + [sym_unit_expression] = STATE(1557), + [sym_struct_expression] = STATE(1557), + [sym_if_expression] = STATE(1557), + [sym_match_expression] = STATE(1557), + [sym_while_expression] = STATE(1557), + [sym_loop_expression] = STATE(1557), + [sym_for_expression] = STATE(1557), + [sym_const_block] = STATE(1557), + [sym_closure_expression] = STATE(1557), + [sym_closure_parameters] = STATE(182), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1557), + [sym_continue_expression] = STATE(1557), + [sym_index_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_field_expression] = STATE(1393), + [sym_unsafe_block] = STATE(1557), + [sym_async_block] = STATE(1557), + [sym_gen_block] = STATE(1557), + [sym_try_block] = STATE(1557), + [sym_block] = STATE(1557), + [sym__literal] = STATE(1557), + [sym_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym_line_comment] = STATE(346), + [sym_block_comment] = STATE(346), + [aux_sym_attributes_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(732), + [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_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_str] = ACTIONS(479), + [anon_sym_char] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(824), + [anon_sym_COLON_COLON] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_const] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_default] = ACTIONS(491), + [anon_sym_for] = ACTIONS(345), + [anon_sym_gen] = ACTIONS(493), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(497), + [anon_sym_union] = ACTIONS(491), + [anon_sym_unsafe] = ACTIONS(383), + [anon_sym_while] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(499), + [anon_sym_move] = ACTIONS(501), + [anon_sym_try] = ACTIONS(359), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1435), - [sym_super] = ACTIONS(1435), - [sym_crate] = ACTIONS(1435), - [sym_metavariable] = ACTIONS(1433), - [sym__raw_string_literal_start] = ACTIONS(1433), - [sym_float_literal] = ACTIONS(1433), + [sym_self] = ACTIONS(503), + [sym_super] = ACTIONS(505), + [sym_crate] = ACTIONS(505), + [sym_metavariable] = ACTIONS(507), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(347)] = { + [sym_line_comment] = STATE(347), + [sym_block_comment] = STATE(347), + [aux_sym__non_special_token_repeat1] = STATE(349), + [sym_identifier] = ACTIONS(1035), + [anon_sym_SEMI] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(1037), + [anon_sym_RPAREN] = ACTIONS(1037), + [anon_sym_LBRACK] = ACTIONS(1037), + [anon_sym_RBRACK] = ACTIONS(1037), + [anon_sym_LBRACE] = ACTIONS(1037), + [anon_sym_RBRACE] = ACTIONS(1037), + [anon_sym_EQ_GT] = ACTIONS(616), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(1035), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_u8] = ACTIONS(1035), + [anon_sym_i8] = ACTIONS(1035), + [anon_sym_u16] = ACTIONS(1035), + [anon_sym_i16] = ACTIONS(1035), + [anon_sym_u32] = ACTIONS(1035), + [anon_sym_i32] = ACTIONS(1035), + [anon_sym_u64] = ACTIONS(1035), + [anon_sym_i64] = ACTIONS(1035), + [anon_sym_u128] = ACTIONS(1035), + [anon_sym_i128] = ACTIONS(1035), + [anon_sym_isize] = ACTIONS(1035), + [anon_sym_usize] = ACTIONS(1035), + [anon_sym_f32] = ACTIONS(1035), + [anon_sym_f64] = ACTIONS(1035), + [anon_sym_bool] = ACTIONS(1035), + [anon_sym_str] = ACTIONS(1035), + [anon_sym_char] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_BANG] = ACTIONS(626), + [anon_sym_AMP] = ACTIONS(626), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(616), + [anon_sym_PIPE_PIPE] = ACTIONS(616), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_PLUS_EQ] = ACTIONS(616), + [anon_sym_DASH_EQ] = ACTIONS(616), + [anon_sym_STAR_EQ] = ACTIONS(616), + [anon_sym_SLASH_EQ] = ACTIONS(616), + [anon_sym_PERCENT_EQ] = ACTIONS(616), + [anon_sym_CARET_EQ] = ACTIONS(616), + [anon_sym_AMP_EQ] = ACTIONS(616), + [anon_sym_PIPE_EQ] = ACTIONS(616), + [anon_sym_LT_LT_EQ] = ACTIONS(616), + [anon_sym_GT_GT_EQ] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(616), + [anon_sym_BANG_EQ] = ACTIONS(616), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT_EQ] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(616), + [anon_sym_AT] = ACTIONS(616), + [anon_sym__] = ACTIONS(626), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + [anon_sym_DOT_DOT_EQ] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(616), + [anon_sym_COLON_COLON] = ACTIONS(616), + [anon_sym_DASH_GT] = ACTIONS(616), + [anon_sym_POUND] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(1035), + [anon_sym_as] = ACTIONS(1035), + [anon_sym_async] = ACTIONS(1035), + [anon_sym_await] = ACTIONS(1035), + [anon_sym_break] = ACTIONS(1035), + [anon_sym_const] = ACTIONS(1035), + [anon_sym_continue] = ACTIONS(1035), + [anon_sym_default] = ACTIONS(1035), + [anon_sym_enum] = ACTIONS(1035), + [anon_sym_fn] = ACTIONS(1035), + [anon_sym_for] = ACTIONS(1035), + [anon_sym_gen] = ACTIONS(1035), + [anon_sym_if] = ACTIONS(1035), + [anon_sym_impl] = ACTIONS(1035), + [anon_sym_let] = ACTIONS(1035), + [anon_sym_loop] = ACTIONS(1035), + [anon_sym_match] = ACTIONS(1035), + [anon_sym_mod] = ACTIONS(1035), + [anon_sym_pub] = ACTIONS(1035), + [anon_sym_return] = ACTIONS(1035), + [anon_sym_static] = ACTIONS(1035), + [anon_sym_struct] = ACTIONS(1035), + [anon_sym_trait] = ACTIONS(1035), + [anon_sym_type] = ACTIONS(1035), + [anon_sym_union] = ACTIONS(1035), + [anon_sym_unsafe] = ACTIONS(1035), + [anon_sym_use] = ACTIONS(1035), + [anon_sym_where] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1035), + [sym_mutable_specifier] = ACTIONS(1035), + [sym_integer_literal] = ACTIONS(1037), + [aux_sym_string_literal_token1] = ACTIONS(1037), + [sym_char_literal] = ACTIONS(1037), + [anon_sym_true] = ACTIONS(1035), + [anon_sym_false] = ACTIONS(1035), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1035), + [sym_super] = ACTIONS(1035), + [sym_crate] = ACTIONS(1035), + [sym_metavariable] = ACTIONS(1037), + [sym__raw_string_literal_start] = ACTIONS(1037), + [sym_float_literal] = ACTIONS(1037), + }, + [STATE(348)] = { + [sym_line_comment] = STATE(348), + [sym_block_comment] = STATE(348), + [aux_sym__non_special_token_repeat1] = STATE(349), + [sym_identifier] = ACTIONS(1039), + [anon_sym_SEMI] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(1041), + [anon_sym_RPAREN] = ACTIONS(1041), + [anon_sym_LBRACK] = ACTIONS(1041), + [anon_sym_RBRACK] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_RBRACE] = ACTIONS(1041), + [anon_sym_EQ_GT] = ACTIONS(616), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(1039), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_u8] = ACTIONS(1039), + [anon_sym_i8] = ACTIONS(1039), + [anon_sym_u16] = ACTIONS(1039), + [anon_sym_i16] = ACTIONS(1039), + [anon_sym_u32] = ACTIONS(1039), + [anon_sym_i32] = ACTIONS(1039), + [anon_sym_u64] = ACTIONS(1039), + [anon_sym_i64] = ACTIONS(1039), + [anon_sym_u128] = ACTIONS(1039), + [anon_sym_i128] = ACTIONS(1039), + [anon_sym_isize] = ACTIONS(1039), + [anon_sym_usize] = ACTIONS(1039), + [anon_sym_f32] = ACTIONS(1039), + [anon_sym_f64] = ACTIONS(1039), + [anon_sym_bool] = ACTIONS(1039), + [anon_sym_str] = ACTIONS(1039), + [anon_sym_char] = ACTIONS(1039), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_BANG] = ACTIONS(626), + [anon_sym_AMP] = ACTIONS(626), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(616), + [anon_sym_PIPE_PIPE] = ACTIONS(616), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_PLUS_EQ] = ACTIONS(616), + [anon_sym_DASH_EQ] = ACTIONS(616), + [anon_sym_STAR_EQ] = ACTIONS(616), + [anon_sym_SLASH_EQ] = ACTIONS(616), + [anon_sym_PERCENT_EQ] = ACTIONS(616), + [anon_sym_CARET_EQ] = ACTIONS(616), + [anon_sym_AMP_EQ] = ACTIONS(616), + [anon_sym_PIPE_EQ] = ACTIONS(616), + [anon_sym_LT_LT_EQ] = ACTIONS(616), + [anon_sym_GT_GT_EQ] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(616), + [anon_sym_BANG_EQ] = ACTIONS(616), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT_EQ] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(616), + [anon_sym_AT] = ACTIONS(616), + [anon_sym__] = ACTIONS(626), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + [anon_sym_DOT_DOT_EQ] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(616), + [anon_sym_COLON_COLON] = ACTIONS(616), + [anon_sym_DASH_GT] = ACTIONS(616), + [anon_sym_POUND] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(1039), + [anon_sym_as] = ACTIONS(1039), + [anon_sym_async] = ACTIONS(1039), + [anon_sym_await] = ACTIONS(1039), + [anon_sym_break] = ACTIONS(1039), + [anon_sym_const] = ACTIONS(1039), + [anon_sym_continue] = ACTIONS(1039), + [anon_sym_default] = ACTIONS(1039), + [anon_sym_enum] = ACTIONS(1039), + [anon_sym_fn] = ACTIONS(1039), + [anon_sym_for] = ACTIONS(1039), + [anon_sym_gen] = ACTIONS(1039), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_impl] = ACTIONS(1039), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_loop] = ACTIONS(1039), + [anon_sym_match] = ACTIONS(1039), + [anon_sym_mod] = ACTIONS(1039), + [anon_sym_pub] = ACTIONS(1039), + [anon_sym_return] = ACTIONS(1039), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_struct] = ACTIONS(1039), + [anon_sym_trait] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_union] = ACTIONS(1039), + [anon_sym_unsafe] = ACTIONS(1039), + [anon_sym_use] = ACTIONS(1039), + [anon_sym_where] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(1039), + [sym_mutable_specifier] = ACTIONS(1039), + [sym_integer_literal] = ACTIONS(1041), + [aux_sym_string_literal_token1] = ACTIONS(1041), + [sym_char_literal] = ACTIONS(1041), + [anon_sym_true] = ACTIONS(1039), + [anon_sym_false] = ACTIONS(1039), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1039), + [sym_super] = ACTIONS(1039), + [sym_crate] = ACTIONS(1039), + [sym_metavariable] = ACTIONS(1041), + [sym__raw_string_literal_start] = ACTIONS(1041), + [sym_float_literal] = ACTIONS(1041), + }, + [STATE(349)] = { + [sym_line_comment] = STATE(349), + [sym_block_comment] = STATE(349), + [aux_sym__non_special_token_repeat1] = STATE(349), + [sym_identifier] = ACTIONS(1043), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_RPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1048), + [anon_sym_RBRACK] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1048), + [anon_sym_RBRACE] = ACTIONS(1048), + [anon_sym_EQ_GT] = ACTIONS(1045), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_DOLLAR] = ACTIONS(1043), + [anon_sym_PLUS] = ACTIONS(1050), + [anon_sym_STAR] = ACTIONS(1050), + [anon_sym_QMARK] = ACTIONS(1045), + [anon_sym_u8] = ACTIONS(1043), + [anon_sym_i8] = ACTIONS(1043), + [anon_sym_u16] = ACTIONS(1043), + [anon_sym_i16] = ACTIONS(1043), + [anon_sym_u32] = ACTIONS(1043), + [anon_sym_i32] = ACTIONS(1043), + [anon_sym_u64] = ACTIONS(1043), + [anon_sym_i64] = ACTIONS(1043), + [anon_sym_u128] = ACTIONS(1043), + [anon_sym_i128] = ACTIONS(1043), + [anon_sym_isize] = ACTIONS(1043), + [anon_sym_usize] = ACTIONS(1043), + [anon_sym_f32] = ACTIONS(1043), + [anon_sym_f64] = ACTIONS(1043), + [anon_sym_bool] = ACTIONS(1043), + [anon_sym_str] = ACTIONS(1043), + [anon_sym_char] = ACTIONS(1043), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_SLASH] = ACTIONS(1050), + [anon_sym_PERCENT] = ACTIONS(1050), + [anon_sym_CARET] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(1050), + [anon_sym_AMP] = ACTIONS(1050), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_AMP_AMP] = ACTIONS(1045), + [anon_sym_PIPE_PIPE] = ACTIONS(1045), + [anon_sym_LT_LT] = ACTIONS(1050), + [anon_sym_GT_GT] = ACTIONS(1050), + [anon_sym_PLUS_EQ] = ACTIONS(1045), + [anon_sym_DASH_EQ] = ACTIONS(1045), + [anon_sym_STAR_EQ] = ACTIONS(1045), + [anon_sym_SLASH_EQ] = ACTIONS(1045), + [anon_sym_PERCENT_EQ] = ACTIONS(1045), + [anon_sym_CARET_EQ] = ACTIONS(1045), + [anon_sym_AMP_EQ] = ACTIONS(1045), + [anon_sym_PIPE_EQ] = ACTIONS(1045), + [anon_sym_LT_LT_EQ] = ACTIONS(1045), + [anon_sym_GT_GT_EQ] = ACTIONS(1045), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_EQ_EQ] = ACTIONS(1045), + [anon_sym_BANG_EQ] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1050), + [anon_sym_LT] = ACTIONS(1050), + [anon_sym_GT_EQ] = ACTIONS(1045), + [anon_sym_LT_EQ] = ACTIONS(1045), + [anon_sym_AT] = ACTIONS(1045), + [anon_sym__] = ACTIONS(1050), + [anon_sym_DOT] = ACTIONS(1050), + [anon_sym_DOT_DOT] = ACTIONS(1050), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1045), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1045), + [anon_sym_COMMA] = ACTIONS(1045), + [anon_sym_COLON_COLON] = ACTIONS(1045), + [anon_sym_DASH_GT] = ACTIONS(1045), + [anon_sym_POUND] = ACTIONS(1045), + [anon_sym_SQUOTE] = ACTIONS(1043), + [anon_sym_as] = ACTIONS(1043), + [anon_sym_async] = ACTIONS(1043), + [anon_sym_await] = ACTIONS(1043), + [anon_sym_break] = ACTIONS(1043), + [anon_sym_const] = ACTIONS(1043), + [anon_sym_continue] = ACTIONS(1043), + [anon_sym_default] = ACTIONS(1043), + [anon_sym_enum] = ACTIONS(1043), + [anon_sym_fn] = ACTIONS(1043), + [anon_sym_for] = ACTIONS(1043), + [anon_sym_gen] = ACTIONS(1043), + [anon_sym_if] = ACTIONS(1043), + [anon_sym_impl] = ACTIONS(1043), + [anon_sym_let] = ACTIONS(1043), + [anon_sym_loop] = ACTIONS(1043), + [anon_sym_match] = ACTIONS(1043), + [anon_sym_mod] = ACTIONS(1043), + [anon_sym_pub] = ACTIONS(1043), + [anon_sym_return] = ACTIONS(1043), + [anon_sym_static] = ACTIONS(1043), + [anon_sym_struct] = ACTIONS(1043), + [anon_sym_trait] = ACTIONS(1043), + [anon_sym_type] = ACTIONS(1043), + [anon_sym_union] = ACTIONS(1043), + [anon_sym_unsafe] = ACTIONS(1043), + [anon_sym_use] = ACTIONS(1043), + [anon_sym_where] = ACTIONS(1043), + [anon_sym_while] = ACTIONS(1043), + [sym_mutable_specifier] = ACTIONS(1043), + [sym_integer_literal] = ACTIONS(1048), + [aux_sym_string_literal_token1] = ACTIONS(1048), + [sym_char_literal] = ACTIONS(1048), + [anon_sym_true] = ACTIONS(1043), + [anon_sym_false] = ACTIONS(1043), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1043), + [sym_super] = ACTIONS(1043), + [sym_crate] = ACTIONS(1043), + [sym_metavariable] = ACTIONS(1048), + [sym__raw_string_literal_start] = ACTIONS(1048), + [sym_float_literal] = ACTIONS(1048), + }, + [STATE(350)] = { + [sym_attribute_item] = STATE(1098), + [sym_attributes] = STATE(419), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_self_parameter] = STATE(2948), + [sym_variadic_parameter] = STATE(2948), + [sym_parameter] = STATE(2948), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2779), + [sym_bracketed_type] = STATE(3759), + [sym_lifetime] = STATE(2953), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3486), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2626), + [sym_scoped_identifier] = STATE(2263), + [sym_scoped_type_identifier] = STATE(2296), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2573), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), + [sym_line_comment] = STATE(350), + [sym_block_comment] = STATE(350), + [aux_sym_attributes_repeat1] = STATE(1097), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1053), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_RPAREN] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1065), + [anon_sym_i8] = ACTIONS(1065), + [anon_sym_u16] = ACTIONS(1065), + [anon_sym_i16] = ACTIONS(1065), + [anon_sym_u32] = ACTIONS(1065), + [anon_sym_i32] = ACTIONS(1065), + [anon_sym_u64] = ACTIONS(1065), + [anon_sym_i64] = ACTIONS(1065), + [anon_sym_u128] = ACTIONS(1065), + [anon_sym_i128] = ACTIONS(1065), + [anon_sym_isize] = ACTIONS(1065), + [anon_sym_usize] = ACTIONS(1065), + [anon_sym_f32] = ACTIONS(1065), + [anon_sym_f64] = ACTIONS(1065), + [anon_sym_bool] = ACTIONS(1065), + [anon_sym_str] = ACTIONS(1065), + [anon_sym_char] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1071), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1075), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1079), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COMMA] = ACTIONS(1083), + [anon_sym_COLON_COLON] = ACTIONS(1085), + [anon_sym_POUND] = ACTIONS(1087), + [anon_sym_SQUOTE] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_default] = ACTIONS(1095), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1101), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1101), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_ref] = ACTIONS(1109), + [anon_sym_dyn] = ACTIONS(1111), + [sym_mutable_specifier] = ACTIONS(1113), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1121), + [sym_super] = ACTIONS(1123), + [sym_crate] = ACTIONS(1123), + [sym_metavariable] = ACTIONS(1125), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), + }, + [STATE(351)] = { + [sym_line_comment] = STATE(351), + [sym_block_comment] = STATE(351), + [sym_identifier] = ACTIONS(1129), + [anon_sym_SEMI] = ACTIONS(1131), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_RPAREN] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(1131), + [anon_sym_RBRACK] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1131), + [anon_sym_RBRACE] = ACTIONS(1131), + [anon_sym_EQ_GT] = ACTIONS(1131), + [anon_sym_COLON] = ACTIONS(1129), + [anon_sym_DOLLAR] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_STAR] = ACTIONS(1129), + [anon_sym_QMARK] = ACTIONS(1131), + [anon_sym_u8] = ACTIONS(1129), + [anon_sym_i8] = ACTIONS(1129), + [anon_sym_u16] = ACTIONS(1129), + [anon_sym_i16] = ACTIONS(1129), + [anon_sym_u32] = ACTIONS(1129), + [anon_sym_i32] = ACTIONS(1129), + [anon_sym_u64] = ACTIONS(1129), + [anon_sym_i64] = ACTIONS(1129), + [anon_sym_u128] = ACTIONS(1129), + [anon_sym_i128] = ACTIONS(1129), + [anon_sym_isize] = ACTIONS(1129), + [anon_sym_usize] = ACTIONS(1129), + [anon_sym_f32] = ACTIONS(1129), + [anon_sym_f64] = ACTIONS(1129), + [anon_sym_bool] = ACTIONS(1129), + [anon_sym_str] = ACTIONS(1129), + [anon_sym_char] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1129), + [anon_sym_PERCENT] = ACTIONS(1129), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_PIPE] = ACTIONS(1129), + [anon_sym_AMP_AMP] = ACTIONS(1131), + [anon_sym_PIPE_PIPE] = ACTIONS(1131), + [anon_sym_LT_LT] = ACTIONS(1129), + [anon_sym_GT_GT] = ACTIONS(1129), + [anon_sym_PLUS_EQ] = ACTIONS(1131), + [anon_sym_DASH_EQ] = ACTIONS(1131), + [anon_sym_STAR_EQ] = ACTIONS(1131), + [anon_sym_SLASH_EQ] = ACTIONS(1131), + [anon_sym_PERCENT_EQ] = ACTIONS(1131), + [anon_sym_CARET_EQ] = ACTIONS(1131), + [anon_sym_AMP_EQ] = ACTIONS(1131), + [anon_sym_PIPE_EQ] = ACTIONS(1131), + [anon_sym_LT_LT_EQ] = ACTIONS(1131), + [anon_sym_GT_GT_EQ] = ACTIONS(1131), + [anon_sym_EQ] = ACTIONS(1129), + [anon_sym_EQ_EQ] = ACTIONS(1131), + [anon_sym_BANG_EQ] = ACTIONS(1131), + [anon_sym_GT] = ACTIONS(1129), + [anon_sym_LT] = ACTIONS(1129), + [anon_sym_GT_EQ] = ACTIONS(1131), + [anon_sym_LT_EQ] = ACTIONS(1131), + [anon_sym_AT] = ACTIONS(1131), + [anon_sym__] = ACTIONS(1129), + [anon_sym_DOT] = ACTIONS(1129), + [anon_sym_DOT_DOT] = ACTIONS(1129), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1131), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1131), + [anon_sym_DASH_GT] = ACTIONS(1131), + [anon_sym_POUND] = ACTIONS(1131), + [anon_sym_SQUOTE] = ACTIONS(1129), + [anon_sym_as] = ACTIONS(1129), + [anon_sym_async] = ACTIONS(1129), + [anon_sym_await] = ACTIONS(1129), + [anon_sym_break] = ACTIONS(1129), + [anon_sym_const] = ACTIONS(1129), + [anon_sym_continue] = ACTIONS(1129), + [anon_sym_default] = ACTIONS(1129), + [anon_sym_enum] = ACTIONS(1129), + [anon_sym_fn] = ACTIONS(1129), + [anon_sym_for] = ACTIONS(1129), + [anon_sym_gen] = ACTIONS(1129), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_impl] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_loop] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1129), + [anon_sym_mod] = ACTIONS(1129), + [anon_sym_pub] = ACTIONS(1129), + [anon_sym_return] = ACTIONS(1129), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_struct] = ACTIONS(1129), + [anon_sym_trait] = ACTIONS(1129), + [anon_sym_type] = ACTIONS(1129), + [anon_sym_union] = ACTIONS(1129), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_use] = ACTIONS(1129), + [anon_sym_where] = ACTIONS(1129), + [anon_sym_while] = ACTIONS(1129), + [sym_mutable_specifier] = ACTIONS(1129), + [sym_integer_literal] = ACTIONS(1131), + [aux_sym_string_literal_token1] = ACTIONS(1131), + [sym_char_literal] = ACTIONS(1131), + [anon_sym_true] = ACTIONS(1129), + [anon_sym_false] = ACTIONS(1129), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1129), + [sym_super] = ACTIONS(1129), + [sym_crate] = ACTIONS(1129), + [sym_metavariable] = ACTIONS(1131), + [sym__raw_string_literal_start] = ACTIONS(1131), + [sym_float_literal] = ACTIONS(1131), + }, + [STATE(352)] = { + [sym_line_comment] = STATE(352), + [sym_block_comment] = STATE(352), + [sym_identifier] = ACTIONS(1133), + [anon_sym_SEMI] = ACTIONS(1135), + [anon_sym_LPAREN] = ACTIONS(1135), + [anon_sym_RPAREN] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1135), + [anon_sym_RBRACK] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1135), + [anon_sym_RBRACE] = ACTIONS(1135), + [anon_sym_EQ_GT] = ACTIONS(1135), + [anon_sym_COLON] = ACTIONS(1133), + [anon_sym_DOLLAR] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(1133), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [anon_sym_u8] = ACTIONS(1133), + [anon_sym_i8] = ACTIONS(1133), + [anon_sym_u16] = ACTIONS(1133), + [anon_sym_i16] = ACTIONS(1133), + [anon_sym_u32] = ACTIONS(1133), + [anon_sym_i32] = ACTIONS(1133), + [anon_sym_u64] = ACTIONS(1133), + [anon_sym_i64] = ACTIONS(1133), + [anon_sym_u128] = ACTIONS(1133), + [anon_sym_i128] = ACTIONS(1133), + [anon_sym_isize] = ACTIONS(1133), + [anon_sym_usize] = ACTIONS(1133), + [anon_sym_f32] = ACTIONS(1133), + [anon_sym_f64] = ACTIONS(1133), + [anon_sym_bool] = ACTIONS(1133), + [anon_sym_str] = ACTIONS(1133), + [anon_sym_char] = ACTIONS(1133), + [anon_sym_DASH] = ACTIONS(1133), + [anon_sym_SLASH] = ACTIONS(1133), + [anon_sym_PERCENT] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1133), + [anon_sym_BANG] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1133), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_AMP_AMP] = ACTIONS(1135), + [anon_sym_PIPE_PIPE] = ACTIONS(1135), + [anon_sym_LT_LT] = ACTIONS(1133), + [anon_sym_GT_GT] = ACTIONS(1133), + [anon_sym_PLUS_EQ] = ACTIONS(1135), + [anon_sym_DASH_EQ] = ACTIONS(1135), + [anon_sym_STAR_EQ] = ACTIONS(1135), + [anon_sym_SLASH_EQ] = ACTIONS(1135), + [anon_sym_PERCENT_EQ] = ACTIONS(1135), + [anon_sym_CARET_EQ] = ACTIONS(1135), + [anon_sym_AMP_EQ] = ACTIONS(1135), + [anon_sym_PIPE_EQ] = ACTIONS(1135), + [anon_sym_LT_LT_EQ] = ACTIONS(1135), + [anon_sym_GT_GT_EQ] = ACTIONS(1135), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_EQ_EQ] = ACTIONS(1135), + [anon_sym_BANG_EQ] = ACTIONS(1135), + [anon_sym_GT] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(1133), + [anon_sym_GT_EQ] = ACTIONS(1135), + [anon_sym_LT_EQ] = ACTIONS(1135), + [anon_sym_AT] = ACTIONS(1135), + [anon_sym__] = ACTIONS(1133), + [anon_sym_DOT] = ACTIONS(1133), + [anon_sym_DOT_DOT] = ACTIONS(1133), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1135), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1135), + [anon_sym_COMMA] = ACTIONS(1135), + [anon_sym_COLON_COLON] = ACTIONS(1135), + [anon_sym_DASH_GT] = ACTIONS(1135), + [anon_sym_POUND] = ACTIONS(1135), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_as] = ACTIONS(1133), + [anon_sym_async] = ACTIONS(1133), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_break] = ACTIONS(1133), + [anon_sym_const] = ACTIONS(1133), + [anon_sym_continue] = ACTIONS(1133), + [anon_sym_default] = ACTIONS(1133), + [anon_sym_enum] = ACTIONS(1133), + [anon_sym_fn] = ACTIONS(1133), + [anon_sym_for] = ACTIONS(1133), + [anon_sym_gen] = ACTIONS(1133), + [anon_sym_if] = ACTIONS(1133), + [anon_sym_impl] = ACTIONS(1133), + [anon_sym_let] = ACTIONS(1133), + [anon_sym_loop] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1133), + [anon_sym_mod] = ACTIONS(1133), + [anon_sym_pub] = ACTIONS(1133), + [anon_sym_return] = ACTIONS(1133), + [anon_sym_static] = ACTIONS(1133), + [anon_sym_struct] = ACTIONS(1133), + [anon_sym_trait] = ACTIONS(1133), + [anon_sym_type] = ACTIONS(1133), + [anon_sym_union] = ACTIONS(1133), + [anon_sym_unsafe] = ACTIONS(1133), + [anon_sym_use] = ACTIONS(1133), + [anon_sym_where] = ACTIONS(1133), + [anon_sym_while] = ACTIONS(1133), + [sym_mutable_specifier] = ACTIONS(1133), + [sym_integer_literal] = ACTIONS(1135), + [aux_sym_string_literal_token1] = ACTIONS(1135), + [sym_char_literal] = ACTIONS(1135), + [anon_sym_true] = ACTIONS(1133), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1133), + [sym_super] = ACTIONS(1133), + [sym_crate] = ACTIONS(1133), + [sym_metavariable] = ACTIONS(1135), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1135), + }, + [STATE(353)] = { + [sym_line_comment] = STATE(353), + [sym_block_comment] = STATE(353), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SEMI] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(1139), + [anon_sym_RPAREN] = ACTIONS(1139), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_RBRACK] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1139), + [anon_sym_RBRACE] = ACTIONS(1139), + [anon_sym_EQ_GT] = ACTIONS(1139), + [anon_sym_COLON] = ACTIONS(1137), + [anon_sym_DOLLAR] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1137), + [anon_sym_STAR] = ACTIONS(1137), + [anon_sym_QMARK] = ACTIONS(1139), + [anon_sym_u8] = ACTIONS(1137), + [anon_sym_i8] = ACTIONS(1137), + [anon_sym_u16] = ACTIONS(1137), + [anon_sym_i16] = ACTIONS(1137), + [anon_sym_u32] = ACTIONS(1137), + [anon_sym_i32] = ACTIONS(1137), + [anon_sym_u64] = ACTIONS(1137), + [anon_sym_i64] = ACTIONS(1137), + [anon_sym_u128] = ACTIONS(1137), + [anon_sym_i128] = ACTIONS(1137), + [anon_sym_isize] = ACTIONS(1137), + [anon_sym_usize] = ACTIONS(1137), + [anon_sym_f32] = ACTIONS(1137), + [anon_sym_f64] = ACTIONS(1137), + [anon_sym_bool] = ACTIONS(1137), + [anon_sym_str] = ACTIONS(1137), + [anon_sym_char] = ACTIONS(1137), + [anon_sym_DASH] = ACTIONS(1137), + [anon_sym_SLASH] = ACTIONS(1137), + [anon_sym_PERCENT] = ACTIONS(1137), + [anon_sym_CARET] = ACTIONS(1137), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1137), + [anon_sym_PIPE] = ACTIONS(1137), + [anon_sym_AMP_AMP] = ACTIONS(1139), + [anon_sym_PIPE_PIPE] = ACTIONS(1139), + [anon_sym_LT_LT] = ACTIONS(1137), + [anon_sym_GT_GT] = ACTIONS(1137), + [anon_sym_PLUS_EQ] = ACTIONS(1139), + [anon_sym_DASH_EQ] = ACTIONS(1139), + [anon_sym_STAR_EQ] = ACTIONS(1139), + [anon_sym_SLASH_EQ] = ACTIONS(1139), + [anon_sym_PERCENT_EQ] = ACTIONS(1139), + [anon_sym_CARET_EQ] = ACTIONS(1139), + [anon_sym_AMP_EQ] = ACTIONS(1139), + [anon_sym_PIPE_EQ] = ACTIONS(1139), + [anon_sym_LT_LT_EQ] = ACTIONS(1139), + [anon_sym_GT_GT_EQ] = ACTIONS(1139), + [anon_sym_EQ] = ACTIONS(1137), + [anon_sym_EQ_EQ] = ACTIONS(1139), + [anon_sym_BANG_EQ] = ACTIONS(1139), + [anon_sym_GT] = ACTIONS(1137), + [anon_sym_LT] = ACTIONS(1137), + [anon_sym_GT_EQ] = ACTIONS(1139), + [anon_sym_LT_EQ] = ACTIONS(1139), + [anon_sym_AT] = ACTIONS(1139), + [anon_sym__] = ACTIONS(1137), + [anon_sym_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1139), + [anon_sym_COMMA] = ACTIONS(1139), + [anon_sym_COLON_COLON] = ACTIONS(1139), + [anon_sym_DASH_GT] = ACTIONS(1139), + [anon_sym_POUND] = ACTIONS(1139), + [anon_sym_SQUOTE] = ACTIONS(1137), + [anon_sym_as] = ACTIONS(1137), + [anon_sym_async] = ACTIONS(1137), + [anon_sym_await] = ACTIONS(1137), + [anon_sym_break] = ACTIONS(1137), + [anon_sym_const] = ACTIONS(1137), + [anon_sym_continue] = ACTIONS(1137), + [anon_sym_default] = ACTIONS(1137), + [anon_sym_enum] = ACTIONS(1137), + [anon_sym_fn] = ACTIONS(1137), + [anon_sym_for] = ACTIONS(1137), + [anon_sym_gen] = ACTIONS(1137), + [anon_sym_if] = ACTIONS(1137), + [anon_sym_impl] = ACTIONS(1137), + [anon_sym_let] = ACTIONS(1137), + [anon_sym_loop] = ACTIONS(1137), + [anon_sym_match] = ACTIONS(1137), + [anon_sym_mod] = ACTIONS(1137), + [anon_sym_pub] = ACTIONS(1137), + [anon_sym_return] = ACTIONS(1137), + [anon_sym_static] = ACTIONS(1137), + [anon_sym_struct] = ACTIONS(1137), + [anon_sym_trait] = ACTIONS(1137), + [anon_sym_type] = ACTIONS(1137), + [anon_sym_union] = ACTIONS(1137), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_use] = ACTIONS(1137), + [anon_sym_where] = ACTIONS(1137), + [anon_sym_while] = ACTIONS(1137), + [sym_mutable_specifier] = ACTIONS(1137), + [sym_integer_literal] = ACTIONS(1139), + [aux_sym_string_literal_token1] = ACTIONS(1139), + [sym_char_literal] = ACTIONS(1139), + [anon_sym_true] = ACTIONS(1137), + [anon_sym_false] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1137), + [sym_super] = ACTIONS(1137), + [sym_crate] = ACTIONS(1137), + [sym_metavariable] = ACTIONS(1139), + [sym__raw_string_literal_start] = ACTIONS(1139), + [sym_float_literal] = ACTIONS(1139), + }, + [STATE(354)] = { + [sym_line_comment] = STATE(354), + [sym_block_comment] = STATE(354), + [sym_identifier] = ACTIONS(1141), + [anon_sym_SEMI] = ACTIONS(1143), + [anon_sym_LPAREN] = ACTIONS(1143), + [anon_sym_RPAREN] = ACTIONS(1143), + [anon_sym_LBRACK] = ACTIONS(1143), + [anon_sym_RBRACK] = ACTIONS(1143), + [anon_sym_LBRACE] = ACTIONS(1143), + [anon_sym_RBRACE] = ACTIONS(1143), + [anon_sym_EQ_GT] = ACTIONS(1143), + [anon_sym_COLON] = ACTIONS(1141), + [anon_sym_DOLLAR] = ACTIONS(1141), + [anon_sym_PLUS] = ACTIONS(1141), + [anon_sym_STAR] = ACTIONS(1141), + [anon_sym_QMARK] = ACTIONS(1143), + [anon_sym_u8] = ACTIONS(1141), + [anon_sym_i8] = ACTIONS(1141), + [anon_sym_u16] = ACTIONS(1141), + [anon_sym_i16] = ACTIONS(1141), + [anon_sym_u32] = ACTIONS(1141), + [anon_sym_i32] = ACTIONS(1141), + [anon_sym_u64] = ACTIONS(1141), + [anon_sym_i64] = ACTIONS(1141), + [anon_sym_u128] = ACTIONS(1141), + [anon_sym_i128] = ACTIONS(1141), + [anon_sym_isize] = ACTIONS(1141), + [anon_sym_usize] = ACTIONS(1141), + [anon_sym_f32] = ACTIONS(1141), + [anon_sym_f64] = ACTIONS(1141), + [anon_sym_bool] = ACTIONS(1141), + [anon_sym_str] = ACTIONS(1141), + [anon_sym_char] = ACTIONS(1141), + [anon_sym_DASH] = ACTIONS(1141), + [anon_sym_SLASH] = ACTIONS(1141), + [anon_sym_PERCENT] = ACTIONS(1141), + [anon_sym_CARET] = ACTIONS(1141), + [anon_sym_BANG] = ACTIONS(1141), + [anon_sym_AMP] = ACTIONS(1141), + [anon_sym_PIPE] = ACTIONS(1141), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [anon_sym_PIPE_PIPE] = ACTIONS(1143), + [anon_sym_LT_LT] = ACTIONS(1141), + [anon_sym_GT_GT] = ACTIONS(1141), + [anon_sym_PLUS_EQ] = ACTIONS(1143), + [anon_sym_DASH_EQ] = ACTIONS(1143), + [anon_sym_STAR_EQ] = ACTIONS(1143), + [anon_sym_SLASH_EQ] = ACTIONS(1143), + [anon_sym_PERCENT_EQ] = ACTIONS(1143), + [anon_sym_CARET_EQ] = ACTIONS(1143), + [anon_sym_AMP_EQ] = ACTIONS(1143), + [anon_sym_PIPE_EQ] = ACTIONS(1143), + [anon_sym_LT_LT_EQ] = ACTIONS(1143), + [anon_sym_GT_GT_EQ] = ACTIONS(1143), + [anon_sym_EQ] = ACTIONS(1141), + [anon_sym_EQ_EQ] = ACTIONS(1143), + [anon_sym_BANG_EQ] = ACTIONS(1143), + [anon_sym_GT] = ACTIONS(1141), + [anon_sym_LT] = ACTIONS(1141), + [anon_sym_GT_EQ] = ACTIONS(1143), + [anon_sym_LT_EQ] = ACTIONS(1143), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym__] = ACTIONS(1141), + [anon_sym_DOT] = ACTIONS(1141), + [anon_sym_DOT_DOT] = ACTIONS(1141), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1143), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1143), + [anon_sym_COMMA] = ACTIONS(1143), + [anon_sym_COLON_COLON] = ACTIONS(1143), + [anon_sym_DASH_GT] = ACTIONS(1143), + [anon_sym_POUND] = ACTIONS(1143), + [anon_sym_SQUOTE] = ACTIONS(1141), + [anon_sym_as] = ACTIONS(1141), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_await] = ACTIONS(1141), + [anon_sym_break] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_continue] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1141), + [anon_sym_enum] = ACTIONS(1141), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1141), + [anon_sym_gen] = ACTIONS(1141), + [anon_sym_if] = ACTIONS(1141), + [anon_sym_impl] = ACTIONS(1141), + [anon_sym_let] = ACTIONS(1141), + [anon_sym_loop] = ACTIONS(1141), + [anon_sym_match] = ACTIONS(1141), + [anon_sym_mod] = ACTIONS(1141), + [anon_sym_pub] = ACTIONS(1141), + [anon_sym_return] = ACTIONS(1141), + [anon_sym_static] = ACTIONS(1141), + [anon_sym_struct] = ACTIONS(1141), + [anon_sym_trait] = ACTIONS(1141), + [anon_sym_type] = ACTIONS(1141), + [anon_sym_union] = ACTIONS(1141), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1141), + [anon_sym_where] = ACTIONS(1141), + [anon_sym_while] = ACTIONS(1141), + [sym_mutable_specifier] = ACTIONS(1141), + [sym_integer_literal] = ACTIONS(1143), + [aux_sym_string_literal_token1] = ACTIONS(1143), + [sym_char_literal] = ACTIONS(1143), + [anon_sym_true] = ACTIONS(1141), + [anon_sym_false] = ACTIONS(1141), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1141), + [sym_super] = ACTIONS(1141), + [sym_crate] = ACTIONS(1141), + [sym_metavariable] = ACTIONS(1143), + [sym__raw_string_literal_start] = ACTIONS(1143), + [sym_float_literal] = ACTIONS(1143), + }, + [STATE(355)] = { + [sym_line_comment] = STATE(355), + [sym_block_comment] = STATE(355), + [sym_identifier] = ACTIONS(1145), + [anon_sym_SEMI] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1147), + [anon_sym_RPAREN] = ACTIONS(1147), + [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_RBRACK] = ACTIONS(1147), + [anon_sym_LBRACE] = ACTIONS(1147), + [anon_sym_RBRACE] = ACTIONS(1147), + [anon_sym_EQ_GT] = ACTIONS(1147), + [anon_sym_COLON] = ACTIONS(1145), + [anon_sym_DOLLAR] = ACTIONS(1145), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_STAR] = ACTIONS(1145), + [anon_sym_QMARK] = ACTIONS(1147), + [anon_sym_u8] = ACTIONS(1145), + [anon_sym_i8] = ACTIONS(1145), + [anon_sym_u16] = ACTIONS(1145), + [anon_sym_i16] = ACTIONS(1145), + [anon_sym_u32] = ACTIONS(1145), + [anon_sym_i32] = ACTIONS(1145), + [anon_sym_u64] = ACTIONS(1145), + [anon_sym_i64] = ACTIONS(1145), + [anon_sym_u128] = ACTIONS(1145), + [anon_sym_i128] = ACTIONS(1145), + [anon_sym_isize] = ACTIONS(1145), + [anon_sym_usize] = ACTIONS(1145), + [anon_sym_f32] = ACTIONS(1145), + [anon_sym_f64] = ACTIONS(1145), + [anon_sym_bool] = ACTIONS(1145), + [anon_sym_str] = ACTIONS(1145), + [anon_sym_char] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_SLASH] = ACTIONS(1145), + [anon_sym_PERCENT] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_AMP] = ACTIONS(1145), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_LT_LT] = ACTIONS(1145), + [anon_sym_GT_GT] = ACTIONS(1145), + [anon_sym_PLUS_EQ] = ACTIONS(1147), + [anon_sym_DASH_EQ] = ACTIONS(1147), + [anon_sym_STAR_EQ] = ACTIONS(1147), + [anon_sym_SLASH_EQ] = ACTIONS(1147), + [anon_sym_PERCENT_EQ] = ACTIONS(1147), + [anon_sym_CARET_EQ] = ACTIONS(1147), + [anon_sym_AMP_EQ] = ACTIONS(1147), + [anon_sym_PIPE_EQ] = ACTIONS(1147), + [anon_sym_LT_LT_EQ] = ACTIONS(1147), + [anon_sym_GT_GT_EQ] = ACTIONS(1147), + [anon_sym_EQ] = ACTIONS(1145), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT] = ACTIONS(1145), + [anon_sym_LT] = ACTIONS(1145), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_AT] = ACTIONS(1147), + [anon_sym__] = ACTIONS(1145), + [anon_sym_DOT] = ACTIONS(1145), + [anon_sym_DOT_DOT] = ACTIONS(1145), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1147), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1147), + [anon_sym_COMMA] = ACTIONS(1147), + [anon_sym_COLON_COLON] = ACTIONS(1147), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_POUND] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1145), + [anon_sym_as] = ACTIONS(1145), + [anon_sym_async] = ACTIONS(1145), + [anon_sym_await] = ACTIONS(1145), + [anon_sym_break] = ACTIONS(1145), + [anon_sym_const] = ACTIONS(1145), + [anon_sym_continue] = ACTIONS(1145), + [anon_sym_default] = ACTIONS(1145), + [anon_sym_enum] = ACTIONS(1145), + [anon_sym_fn] = ACTIONS(1145), + [anon_sym_for] = ACTIONS(1145), + [anon_sym_gen] = ACTIONS(1145), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_impl] = ACTIONS(1145), + [anon_sym_let] = ACTIONS(1145), + [anon_sym_loop] = ACTIONS(1145), + [anon_sym_match] = ACTIONS(1145), + [anon_sym_mod] = ACTIONS(1145), + [anon_sym_pub] = ACTIONS(1145), + [anon_sym_return] = ACTIONS(1145), + [anon_sym_static] = ACTIONS(1145), + [anon_sym_struct] = ACTIONS(1145), + [anon_sym_trait] = ACTIONS(1145), + [anon_sym_type] = ACTIONS(1145), + [anon_sym_union] = ACTIONS(1145), + [anon_sym_unsafe] = ACTIONS(1145), + [anon_sym_use] = ACTIONS(1145), + [anon_sym_where] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(1145), + [sym_mutable_specifier] = ACTIONS(1145), + [sym_integer_literal] = ACTIONS(1147), + [aux_sym_string_literal_token1] = ACTIONS(1147), + [sym_char_literal] = ACTIONS(1147), + [anon_sym_true] = ACTIONS(1145), + [anon_sym_false] = ACTIONS(1145), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1145), + [sym_super] = ACTIONS(1145), + [sym_crate] = ACTIONS(1145), + [sym_metavariable] = ACTIONS(1147), + [sym__raw_string_literal_start] = ACTIONS(1147), + [sym_float_literal] = ACTIONS(1147), + }, + [STATE(356)] = { + [sym_line_comment] = STATE(356), + [sym_block_comment] = STATE(356), + [sym_identifier] = ACTIONS(1149), + [anon_sym_SEMI] = ACTIONS(1151), + [anon_sym_LPAREN] = ACTIONS(1151), + [anon_sym_RPAREN] = ACTIONS(1151), + [anon_sym_LBRACK] = ACTIONS(1151), + [anon_sym_RBRACK] = ACTIONS(1151), + [anon_sym_LBRACE] = ACTIONS(1151), + [anon_sym_RBRACE] = ACTIONS(1151), + [anon_sym_EQ_GT] = ACTIONS(1151), + [anon_sym_COLON] = ACTIONS(1149), + [anon_sym_DOLLAR] = ACTIONS(1149), + [anon_sym_PLUS] = ACTIONS(1149), + [anon_sym_STAR] = ACTIONS(1149), + [anon_sym_QMARK] = ACTIONS(1151), + [anon_sym_u8] = ACTIONS(1149), + [anon_sym_i8] = ACTIONS(1149), + [anon_sym_u16] = ACTIONS(1149), + [anon_sym_i16] = ACTIONS(1149), + [anon_sym_u32] = ACTIONS(1149), + [anon_sym_i32] = ACTIONS(1149), + [anon_sym_u64] = ACTIONS(1149), + [anon_sym_i64] = ACTIONS(1149), + [anon_sym_u128] = ACTIONS(1149), + [anon_sym_i128] = ACTIONS(1149), + [anon_sym_isize] = ACTIONS(1149), + [anon_sym_usize] = ACTIONS(1149), + [anon_sym_f32] = ACTIONS(1149), + [anon_sym_f64] = ACTIONS(1149), + [anon_sym_bool] = ACTIONS(1149), + [anon_sym_str] = ACTIONS(1149), + [anon_sym_char] = ACTIONS(1149), + [anon_sym_DASH] = ACTIONS(1149), + [anon_sym_SLASH] = ACTIONS(1149), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_CARET] = ACTIONS(1149), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1149), + [anon_sym_PIPE] = ACTIONS(1149), + [anon_sym_AMP_AMP] = ACTIONS(1151), + [anon_sym_PIPE_PIPE] = ACTIONS(1151), + [anon_sym_LT_LT] = ACTIONS(1149), + [anon_sym_GT_GT] = ACTIONS(1149), + [anon_sym_PLUS_EQ] = ACTIONS(1151), + [anon_sym_DASH_EQ] = ACTIONS(1151), + [anon_sym_STAR_EQ] = ACTIONS(1151), + [anon_sym_SLASH_EQ] = ACTIONS(1151), + [anon_sym_PERCENT_EQ] = ACTIONS(1151), + [anon_sym_CARET_EQ] = ACTIONS(1151), + [anon_sym_AMP_EQ] = ACTIONS(1151), + [anon_sym_PIPE_EQ] = ACTIONS(1151), + [anon_sym_LT_LT_EQ] = ACTIONS(1151), + [anon_sym_GT_GT_EQ] = ACTIONS(1151), + [anon_sym_EQ] = ACTIONS(1149), + [anon_sym_EQ_EQ] = ACTIONS(1151), + [anon_sym_BANG_EQ] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1149), + [anon_sym_GT_EQ] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1151), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym__] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(1149), + [anon_sym_DOT_DOT] = ACTIONS(1149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1151), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1151), + [anon_sym_COMMA] = ACTIONS(1151), + [anon_sym_COLON_COLON] = ACTIONS(1151), + [anon_sym_DASH_GT] = ACTIONS(1151), + [anon_sym_POUND] = ACTIONS(1151), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_as] = ACTIONS(1149), + [anon_sym_async] = ACTIONS(1149), + [anon_sym_await] = ACTIONS(1149), + [anon_sym_break] = ACTIONS(1149), + [anon_sym_const] = ACTIONS(1149), + [anon_sym_continue] = ACTIONS(1149), + [anon_sym_default] = ACTIONS(1149), + [anon_sym_enum] = ACTIONS(1149), + [anon_sym_fn] = ACTIONS(1149), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1149), + [anon_sym_if] = ACTIONS(1149), + [anon_sym_impl] = ACTIONS(1149), + [anon_sym_let] = ACTIONS(1149), + [anon_sym_loop] = ACTIONS(1149), + [anon_sym_match] = ACTIONS(1149), + [anon_sym_mod] = ACTIONS(1149), + [anon_sym_pub] = ACTIONS(1149), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_static] = ACTIONS(1149), + [anon_sym_struct] = ACTIONS(1149), + [anon_sym_trait] = ACTIONS(1149), + [anon_sym_type] = ACTIONS(1149), + [anon_sym_union] = ACTIONS(1149), + [anon_sym_unsafe] = ACTIONS(1149), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_where] = ACTIONS(1149), + [anon_sym_while] = ACTIONS(1149), + [sym_mutable_specifier] = ACTIONS(1149), + [sym_integer_literal] = ACTIONS(1151), + [aux_sym_string_literal_token1] = ACTIONS(1151), + [sym_char_literal] = ACTIONS(1151), + [anon_sym_true] = ACTIONS(1149), + [anon_sym_false] = ACTIONS(1149), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1149), + [sym_super] = ACTIONS(1149), + [sym_crate] = ACTIONS(1149), + [sym_metavariable] = ACTIONS(1151), + [sym__raw_string_literal_start] = ACTIONS(1151), + [sym_float_literal] = ACTIONS(1151), + }, + [STATE(357)] = { + [sym_line_comment] = STATE(357), + [sym_block_comment] = STATE(357), + [sym_identifier] = ACTIONS(1153), + [anon_sym_SEMI] = ACTIONS(1155), + [anon_sym_LPAREN] = ACTIONS(1155), + [anon_sym_RPAREN] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1155), + [anon_sym_RBRACK] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_RBRACE] = ACTIONS(1155), + [anon_sym_EQ_GT] = ACTIONS(1155), + [anon_sym_COLON] = ACTIONS(1153), + [anon_sym_DOLLAR] = ACTIONS(1153), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_STAR] = ACTIONS(1153), + [anon_sym_QMARK] = ACTIONS(1155), + [anon_sym_u8] = ACTIONS(1153), + [anon_sym_i8] = ACTIONS(1153), + [anon_sym_u16] = ACTIONS(1153), + [anon_sym_i16] = ACTIONS(1153), + [anon_sym_u32] = ACTIONS(1153), + [anon_sym_i32] = ACTIONS(1153), + [anon_sym_u64] = ACTIONS(1153), + [anon_sym_i64] = ACTIONS(1153), + [anon_sym_u128] = ACTIONS(1153), + [anon_sym_i128] = ACTIONS(1153), + [anon_sym_isize] = ACTIONS(1153), + [anon_sym_usize] = ACTIONS(1153), + [anon_sym_f32] = ACTIONS(1153), + [anon_sym_f64] = ACTIONS(1153), + [anon_sym_bool] = ACTIONS(1153), + [anon_sym_str] = ACTIONS(1153), + [anon_sym_char] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_SLASH] = ACTIONS(1153), + [anon_sym_PERCENT] = ACTIONS(1153), + [anon_sym_CARET] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_AMP] = ACTIONS(1153), + [anon_sym_PIPE] = ACTIONS(1153), + [anon_sym_AMP_AMP] = ACTIONS(1155), + [anon_sym_PIPE_PIPE] = ACTIONS(1155), + [anon_sym_LT_LT] = ACTIONS(1153), + [anon_sym_GT_GT] = ACTIONS(1153), + [anon_sym_PLUS_EQ] = ACTIONS(1155), + [anon_sym_DASH_EQ] = ACTIONS(1155), + [anon_sym_STAR_EQ] = ACTIONS(1155), + [anon_sym_SLASH_EQ] = ACTIONS(1155), + [anon_sym_PERCENT_EQ] = ACTIONS(1155), + [anon_sym_CARET_EQ] = ACTIONS(1155), + [anon_sym_AMP_EQ] = ACTIONS(1155), + [anon_sym_PIPE_EQ] = ACTIONS(1155), + [anon_sym_LT_LT_EQ] = ACTIONS(1155), + [anon_sym_GT_GT_EQ] = ACTIONS(1155), + [anon_sym_EQ] = ACTIONS(1153), + [anon_sym_EQ_EQ] = ACTIONS(1155), + [anon_sym_BANG_EQ] = ACTIONS(1155), + [anon_sym_GT] = ACTIONS(1153), + [anon_sym_LT] = ACTIONS(1153), + [anon_sym_GT_EQ] = ACTIONS(1155), + [anon_sym_LT_EQ] = ACTIONS(1155), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym__] = ACTIONS(1153), + [anon_sym_DOT] = ACTIONS(1153), + [anon_sym_DOT_DOT] = ACTIONS(1153), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1155), + [anon_sym_COMMA] = ACTIONS(1155), + [anon_sym_COLON_COLON] = ACTIONS(1155), + [anon_sym_DASH_GT] = ACTIONS(1155), + [anon_sym_POUND] = ACTIONS(1155), + [anon_sym_SQUOTE] = ACTIONS(1153), + [anon_sym_as] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1153), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_break] = ACTIONS(1153), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_continue] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1153), + [anon_sym_enum] = ACTIONS(1153), + [anon_sym_fn] = ACTIONS(1153), + [anon_sym_for] = ACTIONS(1153), + [anon_sym_gen] = ACTIONS(1153), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_let] = ACTIONS(1153), + [anon_sym_loop] = ACTIONS(1153), + [anon_sym_match] = ACTIONS(1153), + [anon_sym_mod] = ACTIONS(1153), + [anon_sym_pub] = ACTIONS(1153), + [anon_sym_return] = ACTIONS(1153), + [anon_sym_static] = ACTIONS(1153), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_trait] = ACTIONS(1153), + [anon_sym_type] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1153), + [anon_sym_unsafe] = ACTIONS(1153), + [anon_sym_use] = ACTIONS(1153), + [anon_sym_where] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1153), + [sym_integer_literal] = ACTIONS(1155), + [aux_sym_string_literal_token1] = ACTIONS(1155), + [sym_char_literal] = ACTIONS(1155), + [anon_sym_true] = ACTIONS(1153), + [anon_sym_false] = ACTIONS(1153), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1153), + [sym_super] = ACTIONS(1153), + [sym_crate] = ACTIONS(1153), + [sym_metavariable] = ACTIONS(1155), + [sym__raw_string_literal_start] = ACTIONS(1155), + [sym_float_literal] = ACTIONS(1155), + }, + [STATE(358)] = { + [sym_attribute_item] = STATE(1098), + [sym_attributes] = STATE(419), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_self_parameter] = STATE(2948), + [sym_variadic_parameter] = STATE(2948), + [sym_parameter] = STATE(2948), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2779), + [sym_bracketed_type] = STATE(3751), + [sym_lifetime] = STATE(2953), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2569), + [sym_scoped_identifier] = STATE(2379), + [sym_scoped_type_identifier] = STATE(2296), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(3286), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), + [sym_line_comment] = STATE(358), + [sym_block_comment] = STATE(358), + [aux_sym_attributes_repeat1] = STATE(1097), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1157), + [anon_sym_LPAREN] = ACTIONS(1159), + [anon_sym_RPAREN] = ACTIONS(1161), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1163), + [anon_sym_i8] = ACTIONS(1163), + [anon_sym_u16] = ACTIONS(1163), + [anon_sym_i16] = ACTIONS(1163), + [anon_sym_u32] = ACTIONS(1163), + [anon_sym_i32] = ACTIONS(1163), + [anon_sym_u64] = ACTIONS(1163), + [anon_sym_i64] = ACTIONS(1163), + [anon_sym_u128] = ACTIONS(1163), + [anon_sym_i128] = ACTIONS(1163), + [anon_sym_isize] = ACTIONS(1163), + [anon_sym_usize] = ACTIONS(1163), + [anon_sym_f32] = ACTIONS(1163), + [anon_sym_f64] = ACTIONS(1163), + [anon_sym_bool] = ACTIONS(1163), + [anon_sym_str] = ACTIONS(1163), + [anon_sym_char] = ACTIONS(1163), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1165), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1167), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1079), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COMMA] = ACTIONS(1169), + [anon_sym_COLON_COLON] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(1087), + [anon_sym_SQUOTE] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_default] = ACTIONS(1173), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1175), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1175), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_ref] = ACTIONS(1109), + [anon_sym_dyn] = ACTIONS(1111), + [sym_mutable_specifier] = ACTIONS(1113), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1177), + [sym_super] = ACTIONS(1179), + [sym_crate] = ACTIONS(1179), + [sym_metavariable] = ACTIONS(1181), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), + }, + [STATE(359)] = { + [sym_line_comment] = STATE(359), + [sym_block_comment] = STATE(359), + [sym_identifier] = ACTIONS(1183), + [anon_sym_SEMI] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_RPAREN] = ACTIONS(1185), + [anon_sym_LBRACK] = ACTIONS(1185), + [anon_sym_RBRACK] = ACTIONS(1185), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_RBRACE] = ACTIONS(1185), + [anon_sym_EQ_GT] = ACTIONS(1185), + [anon_sym_COLON] = ACTIONS(1183), + [anon_sym_DOLLAR] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1183), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_QMARK] = ACTIONS(1185), + [anon_sym_u8] = ACTIONS(1183), + [anon_sym_i8] = ACTIONS(1183), + [anon_sym_u16] = ACTIONS(1183), + [anon_sym_i16] = ACTIONS(1183), + [anon_sym_u32] = ACTIONS(1183), + [anon_sym_i32] = ACTIONS(1183), + [anon_sym_u64] = ACTIONS(1183), + [anon_sym_i64] = ACTIONS(1183), + [anon_sym_u128] = ACTIONS(1183), + [anon_sym_i128] = ACTIONS(1183), + [anon_sym_isize] = ACTIONS(1183), + [anon_sym_usize] = ACTIONS(1183), + [anon_sym_f32] = ACTIONS(1183), + [anon_sym_f64] = ACTIONS(1183), + [anon_sym_bool] = ACTIONS(1183), + [anon_sym_str] = ACTIONS(1183), + [anon_sym_char] = ACTIONS(1183), + [anon_sym_DASH] = ACTIONS(1183), + [anon_sym_SLASH] = ACTIONS(1183), + [anon_sym_PERCENT] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1183), + [anon_sym_BANG] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(1183), + [anon_sym_PIPE] = ACTIONS(1183), + [anon_sym_AMP_AMP] = ACTIONS(1185), + [anon_sym_PIPE_PIPE] = ACTIONS(1185), + [anon_sym_LT_LT] = ACTIONS(1183), + [anon_sym_GT_GT] = ACTIONS(1183), + [anon_sym_PLUS_EQ] = ACTIONS(1185), + [anon_sym_DASH_EQ] = ACTIONS(1185), + [anon_sym_STAR_EQ] = ACTIONS(1185), + [anon_sym_SLASH_EQ] = ACTIONS(1185), + [anon_sym_PERCENT_EQ] = ACTIONS(1185), + [anon_sym_CARET_EQ] = ACTIONS(1185), + [anon_sym_AMP_EQ] = ACTIONS(1185), + [anon_sym_PIPE_EQ] = ACTIONS(1185), + [anon_sym_LT_LT_EQ] = ACTIONS(1185), + [anon_sym_GT_GT_EQ] = ACTIONS(1185), + [anon_sym_EQ] = ACTIONS(1183), + [anon_sym_EQ_EQ] = ACTIONS(1185), + [anon_sym_BANG_EQ] = ACTIONS(1185), + [anon_sym_GT] = ACTIONS(1183), + [anon_sym_LT] = ACTIONS(1183), + [anon_sym_GT_EQ] = ACTIONS(1185), + [anon_sym_LT_EQ] = ACTIONS(1185), + [anon_sym_AT] = ACTIONS(1185), + [anon_sym__] = ACTIONS(1183), + [anon_sym_DOT] = ACTIONS(1183), + [anon_sym_DOT_DOT] = ACTIONS(1183), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1185), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1185), + [anon_sym_COMMA] = ACTIONS(1185), + [anon_sym_COLON_COLON] = ACTIONS(1185), + [anon_sym_DASH_GT] = ACTIONS(1185), + [anon_sym_POUND] = ACTIONS(1185), + [anon_sym_SQUOTE] = ACTIONS(1183), + [anon_sym_as] = ACTIONS(1183), + [anon_sym_async] = ACTIONS(1183), + [anon_sym_await] = ACTIONS(1183), + [anon_sym_break] = ACTIONS(1183), + [anon_sym_const] = ACTIONS(1183), + [anon_sym_continue] = ACTIONS(1183), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_enum] = ACTIONS(1183), + [anon_sym_fn] = ACTIONS(1183), + [anon_sym_for] = ACTIONS(1183), + [anon_sym_gen] = ACTIONS(1183), + [anon_sym_if] = ACTIONS(1183), + [anon_sym_impl] = ACTIONS(1183), + [anon_sym_let] = ACTIONS(1183), + [anon_sym_loop] = ACTIONS(1183), + [anon_sym_match] = ACTIONS(1183), + [anon_sym_mod] = ACTIONS(1183), + [anon_sym_pub] = ACTIONS(1183), + [anon_sym_return] = ACTIONS(1183), + [anon_sym_static] = ACTIONS(1183), + [anon_sym_struct] = ACTIONS(1183), + [anon_sym_trait] = ACTIONS(1183), + [anon_sym_type] = ACTIONS(1183), + [anon_sym_union] = ACTIONS(1183), + [anon_sym_unsafe] = ACTIONS(1183), + [anon_sym_use] = ACTIONS(1183), + [anon_sym_where] = ACTIONS(1183), + [anon_sym_while] = ACTIONS(1183), + [sym_mutable_specifier] = ACTIONS(1183), + [sym_integer_literal] = ACTIONS(1185), + [aux_sym_string_literal_token1] = ACTIONS(1185), + [sym_char_literal] = ACTIONS(1185), + [anon_sym_true] = ACTIONS(1183), + [anon_sym_false] = ACTIONS(1183), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1183), + [sym_super] = ACTIONS(1183), + [sym_crate] = ACTIONS(1183), + [sym_metavariable] = ACTIONS(1185), + [sym__raw_string_literal_start] = ACTIONS(1185), + [sym_float_literal] = ACTIONS(1185), + }, + [STATE(360)] = { + [sym_line_comment] = STATE(360), + [sym_block_comment] = STATE(360), + [sym_identifier] = ACTIONS(1187), + [anon_sym_SEMI] = ACTIONS(1189), + [anon_sym_LPAREN] = ACTIONS(1189), + [anon_sym_RPAREN] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_RBRACK] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_RBRACE] = ACTIONS(1189), + [anon_sym_EQ_GT] = ACTIONS(1189), + [anon_sym_COLON] = ACTIONS(1187), + [anon_sym_DOLLAR] = ACTIONS(1187), + [anon_sym_PLUS] = ACTIONS(1187), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u128] = ACTIONS(1187), + [anon_sym_i128] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_str] = ACTIONS(1187), + [anon_sym_char] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1187), + [anon_sym_SLASH] = ACTIONS(1187), + [anon_sym_PERCENT] = ACTIONS(1187), + [anon_sym_CARET] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_PIPE] = ACTIONS(1187), + [anon_sym_AMP_AMP] = ACTIONS(1189), + [anon_sym_PIPE_PIPE] = ACTIONS(1189), + [anon_sym_LT_LT] = ACTIONS(1187), + [anon_sym_GT_GT] = ACTIONS(1187), + [anon_sym_PLUS_EQ] = ACTIONS(1189), + [anon_sym_DASH_EQ] = ACTIONS(1189), + [anon_sym_STAR_EQ] = ACTIONS(1189), + [anon_sym_SLASH_EQ] = ACTIONS(1189), + [anon_sym_PERCENT_EQ] = ACTIONS(1189), + [anon_sym_CARET_EQ] = ACTIONS(1189), + [anon_sym_AMP_EQ] = ACTIONS(1189), + [anon_sym_PIPE_EQ] = ACTIONS(1189), + [anon_sym_LT_LT_EQ] = ACTIONS(1189), + [anon_sym_GT_GT_EQ] = ACTIONS(1189), + [anon_sym_EQ] = ACTIONS(1187), + [anon_sym_EQ_EQ] = ACTIONS(1189), + [anon_sym_BANG_EQ] = ACTIONS(1189), + [anon_sym_GT] = ACTIONS(1187), + [anon_sym_LT] = ACTIONS(1187), + [anon_sym_GT_EQ] = ACTIONS(1189), + [anon_sym_LT_EQ] = ACTIONS(1189), + [anon_sym_AT] = ACTIONS(1189), + [anon_sym__] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1187), + [anon_sym_DOT_DOT] = ACTIONS(1187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1189), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1189), + [anon_sym_COMMA] = ACTIONS(1189), + [anon_sym_COLON_COLON] = ACTIONS(1189), + [anon_sym_DASH_GT] = ACTIONS(1189), + [anon_sym_POUND] = ACTIONS(1189), + [anon_sym_SQUOTE] = ACTIONS(1187), + [anon_sym_as] = ACTIONS(1187), + [anon_sym_async] = ACTIONS(1187), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_break] = ACTIONS(1187), + [anon_sym_const] = ACTIONS(1187), + [anon_sym_continue] = ACTIONS(1187), + [anon_sym_default] = ACTIONS(1187), + [anon_sym_enum] = ACTIONS(1187), + [anon_sym_fn] = ACTIONS(1187), + [anon_sym_for] = ACTIONS(1187), + [anon_sym_gen] = ACTIONS(1187), + [anon_sym_if] = ACTIONS(1187), + [anon_sym_impl] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1187), + [anon_sym_loop] = ACTIONS(1187), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_mod] = ACTIONS(1187), + [anon_sym_pub] = ACTIONS(1187), + [anon_sym_return] = ACTIONS(1187), + [anon_sym_static] = ACTIONS(1187), + [anon_sym_struct] = ACTIONS(1187), + [anon_sym_trait] = ACTIONS(1187), + [anon_sym_type] = ACTIONS(1187), + [anon_sym_union] = ACTIONS(1187), + [anon_sym_unsafe] = ACTIONS(1187), + [anon_sym_use] = ACTIONS(1187), + [anon_sym_where] = ACTIONS(1187), + [anon_sym_while] = ACTIONS(1187), + [sym_mutable_specifier] = ACTIONS(1187), + [sym_integer_literal] = ACTIONS(1189), + [aux_sym_string_literal_token1] = ACTIONS(1189), + [sym_char_literal] = ACTIONS(1189), + [anon_sym_true] = ACTIONS(1187), + [anon_sym_false] = ACTIONS(1187), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1187), + [sym_super] = ACTIONS(1187), + [sym_crate] = ACTIONS(1187), + [sym_metavariable] = ACTIONS(1189), + [sym__raw_string_literal_start] = ACTIONS(1189), + [sym_float_literal] = ACTIONS(1189), + }, + [STATE(361)] = { + [sym_line_comment] = STATE(361), + [sym_block_comment] = STATE(361), + [sym_identifier] = ACTIONS(1039), + [anon_sym_SEMI] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1041), + [anon_sym_RPAREN] = ACTIONS(1041), + [anon_sym_LBRACK] = ACTIONS(1041), + [anon_sym_RBRACK] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_RBRACE] = ACTIONS(1041), + [anon_sym_EQ_GT] = ACTIONS(1041), + [anon_sym_COLON] = ACTIONS(1039), + [anon_sym_DOLLAR] = ACTIONS(1039), + [anon_sym_PLUS] = ACTIONS(1039), + [anon_sym_STAR] = ACTIONS(1039), + [anon_sym_QMARK] = ACTIONS(1041), + [anon_sym_u8] = ACTIONS(1039), + [anon_sym_i8] = ACTIONS(1039), + [anon_sym_u16] = ACTIONS(1039), + [anon_sym_i16] = ACTIONS(1039), + [anon_sym_u32] = ACTIONS(1039), + [anon_sym_i32] = ACTIONS(1039), + [anon_sym_u64] = ACTIONS(1039), + [anon_sym_i64] = ACTIONS(1039), + [anon_sym_u128] = ACTIONS(1039), + [anon_sym_i128] = ACTIONS(1039), + [anon_sym_isize] = ACTIONS(1039), + [anon_sym_usize] = ACTIONS(1039), + [anon_sym_f32] = ACTIONS(1039), + [anon_sym_f64] = ACTIONS(1039), + [anon_sym_bool] = ACTIONS(1039), + [anon_sym_str] = ACTIONS(1039), + [anon_sym_char] = ACTIONS(1039), + [anon_sym_DASH] = ACTIONS(1039), + [anon_sym_SLASH] = ACTIONS(1039), + [anon_sym_PERCENT] = ACTIONS(1039), + [anon_sym_CARET] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(1039), + [anon_sym_AMP] = ACTIONS(1039), + [anon_sym_PIPE] = ACTIONS(1039), + [anon_sym_AMP_AMP] = ACTIONS(1041), + [anon_sym_PIPE_PIPE] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1039), + [anon_sym_GT_GT] = ACTIONS(1039), + [anon_sym_PLUS_EQ] = ACTIONS(1041), + [anon_sym_DASH_EQ] = ACTIONS(1041), + [anon_sym_STAR_EQ] = ACTIONS(1041), + [anon_sym_SLASH_EQ] = ACTIONS(1041), + [anon_sym_PERCENT_EQ] = ACTIONS(1041), + [anon_sym_CARET_EQ] = ACTIONS(1041), + [anon_sym_AMP_EQ] = ACTIONS(1041), + [anon_sym_PIPE_EQ] = ACTIONS(1041), + [anon_sym_LT_LT_EQ] = ACTIONS(1041), + [anon_sym_GT_GT_EQ] = ACTIONS(1041), + [anon_sym_EQ] = ACTIONS(1039), + [anon_sym_EQ_EQ] = ACTIONS(1041), + [anon_sym_BANG_EQ] = ACTIONS(1041), + [anon_sym_GT] = ACTIONS(1039), + [anon_sym_LT] = ACTIONS(1039), + [anon_sym_GT_EQ] = ACTIONS(1041), + [anon_sym_LT_EQ] = ACTIONS(1041), + [anon_sym_AT] = ACTIONS(1041), + [anon_sym__] = ACTIONS(1039), + [anon_sym_DOT] = ACTIONS(1039), + [anon_sym_DOT_DOT] = ACTIONS(1039), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1041), + [anon_sym_COMMA] = ACTIONS(1041), + [anon_sym_COLON_COLON] = ACTIONS(1041), + [anon_sym_DASH_GT] = ACTIONS(1041), + [anon_sym_POUND] = ACTIONS(1041), + [anon_sym_SQUOTE] = ACTIONS(1039), + [anon_sym_as] = ACTIONS(1039), + [anon_sym_async] = ACTIONS(1039), + [anon_sym_await] = ACTIONS(1039), + [anon_sym_break] = ACTIONS(1039), + [anon_sym_const] = ACTIONS(1039), + [anon_sym_continue] = ACTIONS(1039), + [anon_sym_default] = ACTIONS(1039), + [anon_sym_enum] = ACTIONS(1039), + [anon_sym_fn] = ACTIONS(1039), + [anon_sym_for] = ACTIONS(1039), + [anon_sym_gen] = ACTIONS(1039), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_impl] = ACTIONS(1039), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_loop] = ACTIONS(1039), + [anon_sym_match] = ACTIONS(1039), + [anon_sym_mod] = ACTIONS(1039), + [anon_sym_pub] = ACTIONS(1039), + [anon_sym_return] = ACTIONS(1039), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_struct] = ACTIONS(1039), + [anon_sym_trait] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_union] = ACTIONS(1039), + [anon_sym_unsafe] = ACTIONS(1039), + [anon_sym_use] = ACTIONS(1039), + [anon_sym_where] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(1039), + [sym_mutable_specifier] = ACTIONS(1039), + [sym_integer_literal] = ACTIONS(1041), + [aux_sym_string_literal_token1] = ACTIONS(1041), + [sym_char_literal] = ACTIONS(1041), + [anon_sym_true] = ACTIONS(1039), + [anon_sym_false] = ACTIONS(1039), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1039), + [sym_super] = ACTIONS(1039), + [sym_crate] = ACTIONS(1039), + [sym_metavariable] = ACTIONS(1041), + [sym__raw_string_literal_start] = ACTIONS(1041), + [sym_float_literal] = ACTIONS(1041), + }, + [STATE(362)] = { + [sym_line_comment] = STATE(362), + [sym_block_comment] = STATE(362), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_RPAREN] = ACTIONS(1193), + [anon_sym_LBRACK] = ACTIONS(1193), + [anon_sym_RBRACK] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1193), + [anon_sym_RBRACE] = ACTIONS(1193), + [anon_sym_EQ_GT] = ACTIONS(1193), + [anon_sym_COLON] = ACTIONS(1191), + [anon_sym_DOLLAR] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_u8] = ACTIONS(1191), + [anon_sym_i8] = ACTIONS(1191), + [anon_sym_u16] = ACTIONS(1191), + [anon_sym_i16] = ACTIONS(1191), + [anon_sym_u32] = ACTIONS(1191), + [anon_sym_i32] = ACTIONS(1191), + [anon_sym_u64] = ACTIONS(1191), + [anon_sym_i64] = ACTIONS(1191), + [anon_sym_u128] = ACTIONS(1191), + [anon_sym_i128] = ACTIONS(1191), + [anon_sym_isize] = ACTIONS(1191), + [anon_sym_usize] = ACTIONS(1191), + [anon_sym_f32] = ACTIONS(1191), + [anon_sym_f64] = ACTIONS(1191), + [anon_sym_bool] = ACTIONS(1191), + [anon_sym_str] = ACTIONS(1191), + [anon_sym_char] = ACTIONS(1191), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_SLASH] = ACTIONS(1191), + [anon_sym_PERCENT] = ACTIONS(1191), + [anon_sym_CARET] = ACTIONS(1191), + [anon_sym_BANG] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1191), + [anon_sym_PIPE] = ACTIONS(1191), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1191), + [anon_sym_GT_GT] = ACTIONS(1191), + [anon_sym_PLUS_EQ] = ACTIONS(1193), + [anon_sym_DASH_EQ] = ACTIONS(1193), + [anon_sym_STAR_EQ] = ACTIONS(1193), + [anon_sym_SLASH_EQ] = ACTIONS(1193), + [anon_sym_PERCENT_EQ] = ACTIONS(1193), + [anon_sym_CARET_EQ] = ACTIONS(1193), + [anon_sym_AMP_EQ] = ACTIONS(1193), + [anon_sym_PIPE_EQ] = ACTIONS(1193), + [anon_sym_LT_LT_EQ] = ACTIONS(1193), + [anon_sym_GT_GT_EQ] = ACTIONS(1193), + [anon_sym_EQ] = ACTIONS(1191), + [anon_sym_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_GT] = ACTIONS(1191), + [anon_sym_LT] = ACTIONS(1191), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1193), + [anon_sym_AT] = ACTIONS(1193), + [anon_sym__] = ACTIONS(1191), + [anon_sym_DOT] = ACTIONS(1191), + [anon_sym_DOT_DOT] = ACTIONS(1191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1193), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1193), + [anon_sym_COMMA] = ACTIONS(1193), + [anon_sym_COLON_COLON] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(1193), + [anon_sym_POUND] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(1191), + [anon_sym_as] = ACTIONS(1191), + [anon_sym_async] = ACTIONS(1191), + [anon_sym_await] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_enum] = ACTIONS(1191), + [anon_sym_fn] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_gen] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_impl] = ACTIONS(1191), + [anon_sym_let] = ACTIONS(1191), + [anon_sym_loop] = ACTIONS(1191), + [anon_sym_match] = ACTIONS(1191), + [anon_sym_mod] = ACTIONS(1191), + [anon_sym_pub] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_static] = ACTIONS(1191), + [anon_sym_struct] = ACTIONS(1191), + [anon_sym_trait] = ACTIONS(1191), + [anon_sym_type] = ACTIONS(1191), + [anon_sym_union] = ACTIONS(1191), + [anon_sym_unsafe] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1191), + [anon_sym_where] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [sym_mutable_specifier] = ACTIONS(1191), + [sym_integer_literal] = ACTIONS(1193), + [aux_sym_string_literal_token1] = ACTIONS(1193), + [sym_char_literal] = ACTIONS(1193), + [anon_sym_true] = ACTIONS(1191), + [anon_sym_false] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1191), + [sym_super] = ACTIONS(1191), + [sym_crate] = ACTIONS(1191), + [sym_metavariable] = ACTIONS(1193), + [sym__raw_string_literal_start] = ACTIONS(1193), + [sym_float_literal] = ACTIONS(1193), + }, + [STATE(363)] = { + [sym_line_comment] = STATE(363), + [sym_block_comment] = STATE(363), + [sym_identifier] = ACTIONS(1195), + [anon_sym_SEMI] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_RPAREN] = ACTIONS(1197), + [anon_sym_LBRACK] = ACTIONS(1197), + [anon_sym_RBRACK] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_RBRACE] = ACTIONS(1197), + [anon_sym_EQ_GT] = ACTIONS(1197), + [anon_sym_COLON] = ACTIONS(1195), + [anon_sym_DOLLAR] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_QMARK] = ACTIONS(1197), + [anon_sym_u8] = ACTIONS(1195), + [anon_sym_i8] = ACTIONS(1195), + [anon_sym_u16] = ACTIONS(1195), + [anon_sym_i16] = ACTIONS(1195), + [anon_sym_u32] = ACTIONS(1195), + [anon_sym_i32] = ACTIONS(1195), + [anon_sym_u64] = ACTIONS(1195), + [anon_sym_i64] = ACTIONS(1195), + [anon_sym_u128] = ACTIONS(1195), + [anon_sym_i128] = ACTIONS(1195), + [anon_sym_isize] = ACTIONS(1195), + [anon_sym_usize] = ACTIONS(1195), + [anon_sym_f32] = ACTIONS(1195), + [anon_sym_f64] = ACTIONS(1195), + [anon_sym_bool] = ACTIONS(1195), + [anon_sym_str] = ACTIONS(1195), + [anon_sym_char] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1195), + [anon_sym_SLASH] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_AMP_AMP] = ACTIONS(1197), + [anon_sym_PIPE_PIPE] = ACTIONS(1197), + [anon_sym_LT_LT] = ACTIONS(1195), + [anon_sym_GT_GT] = ACTIONS(1195), + [anon_sym_PLUS_EQ] = ACTIONS(1197), + [anon_sym_DASH_EQ] = ACTIONS(1197), + [anon_sym_STAR_EQ] = ACTIONS(1197), + [anon_sym_SLASH_EQ] = ACTIONS(1197), + [anon_sym_PERCENT_EQ] = ACTIONS(1197), + [anon_sym_CARET_EQ] = ACTIONS(1197), + [anon_sym_AMP_EQ] = ACTIONS(1197), + [anon_sym_PIPE_EQ] = ACTIONS(1197), + [anon_sym_LT_LT_EQ] = ACTIONS(1197), + [anon_sym_GT_GT_EQ] = ACTIONS(1197), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_EQ_EQ] = ACTIONS(1197), + [anon_sym_BANG_EQ] = ACTIONS(1197), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1197), + [anon_sym_LT_EQ] = ACTIONS(1197), + [anon_sym_AT] = ACTIONS(1197), + [anon_sym__] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1197), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1197), + [anon_sym_COMMA] = ACTIONS(1197), + [anon_sym_COLON_COLON] = ACTIONS(1197), + [anon_sym_DASH_GT] = ACTIONS(1197), + [anon_sym_POUND] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1195), + [anon_sym_as] = ACTIONS(1195), + [anon_sym_async] = ACTIONS(1195), + [anon_sym_await] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1195), + [anon_sym_const] = ACTIONS(1195), + [anon_sym_continue] = ACTIONS(1195), + [anon_sym_default] = ACTIONS(1195), + [anon_sym_enum] = ACTIONS(1195), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_for] = ACTIONS(1195), + [anon_sym_gen] = ACTIONS(1195), + [anon_sym_if] = ACTIONS(1195), + [anon_sym_impl] = ACTIONS(1195), + [anon_sym_let] = ACTIONS(1195), + [anon_sym_loop] = ACTIONS(1195), + [anon_sym_match] = ACTIONS(1195), + [anon_sym_mod] = ACTIONS(1195), + [anon_sym_pub] = ACTIONS(1195), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_struct] = ACTIONS(1195), + [anon_sym_trait] = ACTIONS(1195), + [anon_sym_type] = ACTIONS(1195), + [anon_sym_union] = ACTIONS(1195), + [anon_sym_unsafe] = ACTIONS(1195), + [anon_sym_use] = ACTIONS(1195), + [anon_sym_where] = ACTIONS(1195), + [anon_sym_while] = ACTIONS(1195), + [sym_mutable_specifier] = ACTIONS(1195), + [sym_integer_literal] = ACTIONS(1197), + [aux_sym_string_literal_token1] = ACTIONS(1197), + [sym_char_literal] = ACTIONS(1197), + [anon_sym_true] = ACTIONS(1195), + [anon_sym_false] = ACTIONS(1195), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1195), + [sym_super] = ACTIONS(1195), + [sym_crate] = ACTIONS(1195), + [sym_metavariable] = ACTIONS(1197), + [sym__raw_string_literal_start] = ACTIONS(1197), + [sym_float_literal] = ACTIONS(1197), + }, + [STATE(364)] = { + [sym_line_comment] = STATE(364), + [sym_block_comment] = STATE(364), + [sym_identifier] = ACTIONS(1199), + [anon_sym_SEMI] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_RPAREN] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_RBRACK] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1201), + [anon_sym_EQ_GT] = ACTIONS(1201), + [anon_sym_COLON] = ACTIONS(1199), + [anon_sym_DOLLAR] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1199), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_QMARK] = ACTIONS(1201), + [anon_sym_u8] = ACTIONS(1199), + [anon_sym_i8] = ACTIONS(1199), + [anon_sym_u16] = ACTIONS(1199), + [anon_sym_i16] = ACTIONS(1199), + [anon_sym_u32] = ACTIONS(1199), + [anon_sym_i32] = ACTIONS(1199), + [anon_sym_u64] = ACTIONS(1199), + [anon_sym_i64] = ACTIONS(1199), + [anon_sym_u128] = ACTIONS(1199), + [anon_sym_i128] = ACTIONS(1199), + [anon_sym_isize] = ACTIONS(1199), + [anon_sym_usize] = ACTIONS(1199), + [anon_sym_f32] = ACTIONS(1199), + [anon_sym_f64] = ACTIONS(1199), + [anon_sym_bool] = ACTIONS(1199), + [anon_sym_str] = ACTIONS(1199), + [anon_sym_char] = ACTIONS(1199), + [anon_sym_DASH] = ACTIONS(1199), + [anon_sym_SLASH] = ACTIONS(1199), + [anon_sym_PERCENT] = ACTIONS(1199), + [anon_sym_CARET] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1199), + [anon_sym_AMP] = ACTIONS(1199), + [anon_sym_PIPE] = ACTIONS(1199), + [anon_sym_AMP_AMP] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1199), + [anon_sym_GT_GT] = ACTIONS(1199), + [anon_sym_PLUS_EQ] = ACTIONS(1201), + [anon_sym_DASH_EQ] = ACTIONS(1201), + [anon_sym_STAR_EQ] = ACTIONS(1201), + [anon_sym_SLASH_EQ] = ACTIONS(1201), + [anon_sym_PERCENT_EQ] = ACTIONS(1201), + [anon_sym_CARET_EQ] = ACTIONS(1201), + [anon_sym_AMP_EQ] = ACTIONS(1201), + [anon_sym_PIPE_EQ] = ACTIONS(1201), + [anon_sym_LT_LT_EQ] = ACTIONS(1201), + [anon_sym_GT_GT_EQ] = ACTIONS(1201), + [anon_sym_EQ] = ACTIONS(1199), + [anon_sym_EQ_EQ] = ACTIONS(1201), + [anon_sym_BANG_EQ] = ACTIONS(1201), + [anon_sym_GT] = ACTIONS(1199), + [anon_sym_LT] = ACTIONS(1199), + [anon_sym_GT_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ] = ACTIONS(1201), + [anon_sym_AT] = ACTIONS(1201), + [anon_sym__] = ACTIONS(1199), + [anon_sym_DOT] = ACTIONS(1199), + [anon_sym_DOT_DOT] = ACTIONS(1199), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1201), + [anon_sym_COMMA] = ACTIONS(1201), + [anon_sym_COLON_COLON] = ACTIONS(1201), + [anon_sym_DASH_GT] = ACTIONS(1201), + [anon_sym_POUND] = ACTIONS(1201), + [anon_sym_SQUOTE] = ACTIONS(1199), + [anon_sym_as] = ACTIONS(1199), + [anon_sym_async] = ACTIONS(1199), + [anon_sym_await] = ACTIONS(1199), + [anon_sym_break] = ACTIONS(1199), + [anon_sym_const] = ACTIONS(1199), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_default] = ACTIONS(1199), + [anon_sym_enum] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_for] = ACTIONS(1199), + [anon_sym_gen] = ACTIONS(1199), + [anon_sym_if] = ACTIONS(1199), + [anon_sym_impl] = ACTIONS(1199), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_loop] = ACTIONS(1199), + [anon_sym_match] = ACTIONS(1199), + [anon_sym_mod] = ACTIONS(1199), + [anon_sym_pub] = ACTIONS(1199), + [anon_sym_return] = ACTIONS(1199), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1199), + [anon_sym_trait] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1199), + [anon_sym_use] = ACTIONS(1199), + [anon_sym_where] = ACTIONS(1199), + [anon_sym_while] = ACTIONS(1199), + [sym_mutable_specifier] = ACTIONS(1199), + [sym_integer_literal] = ACTIONS(1201), + [aux_sym_string_literal_token1] = ACTIONS(1201), + [sym_char_literal] = ACTIONS(1201), + [anon_sym_true] = ACTIONS(1199), + [anon_sym_false] = ACTIONS(1199), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1199), + [sym_super] = ACTIONS(1199), + [sym_crate] = ACTIONS(1199), + [sym_metavariable] = ACTIONS(1201), + [sym__raw_string_literal_start] = ACTIONS(1201), + [sym_float_literal] = ACTIONS(1201), + }, + [STATE(365)] = { + [sym_line_comment] = STATE(365), + [sym_block_comment] = STATE(365), + [sym_identifier] = ACTIONS(1203), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym_LPAREN] = ACTIONS(1205), + [anon_sym_RPAREN] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1205), + [anon_sym_RBRACK] = ACTIONS(1205), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_RBRACE] = ACTIONS(1205), + [anon_sym_EQ_GT] = ACTIONS(1205), + [anon_sym_COLON] = ACTIONS(1203), + [anon_sym_DOLLAR] = ACTIONS(1203), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1203), + [anon_sym_i8] = ACTIONS(1203), + [anon_sym_u16] = ACTIONS(1203), + [anon_sym_i16] = ACTIONS(1203), + [anon_sym_u32] = ACTIONS(1203), + [anon_sym_i32] = ACTIONS(1203), + [anon_sym_u64] = ACTIONS(1203), + [anon_sym_i64] = ACTIONS(1203), + [anon_sym_u128] = ACTIONS(1203), + [anon_sym_i128] = ACTIONS(1203), + [anon_sym_isize] = ACTIONS(1203), + [anon_sym_usize] = ACTIONS(1203), + [anon_sym_f32] = ACTIONS(1203), + [anon_sym_f64] = ACTIONS(1203), + [anon_sym_bool] = ACTIONS(1203), + [anon_sym_str] = ACTIONS(1203), + [anon_sym_char] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1203), + [anon_sym_PERCENT] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_AMP_AMP] = ACTIONS(1205), + [anon_sym_PIPE_PIPE] = ACTIONS(1205), + [anon_sym_LT_LT] = ACTIONS(1203), + [anon_sym_GT_GT] = ACTIONS(1203), + [anon_sym_PLUS_EQ] = ACTIONS(1205), + [anon_sym_DASH_EQ] = ACTIONS(1205), + [anon_sym_STAR_EQ] = ACTIONS(1205), + [anon_sym_SLASH_EQ] = ACTIONS(1205), + [anon_sym_PERCENT_EQ] = ACTIONS(1205), + [anon_sym_CARET_EQ] = ACTIONS(1205), + [anon_sym_AMP_EQ] = ACTIONS(1205), + [anon_sym_PIPE_EQ] = ACTIONS(1205), + [anon_sym_LT_LT_EQ] = ACTIONS(1205), + [anon_sym_GT_GT_EQ] = ACTIONS(1205), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_EQ_EQ] = ACTIONS(1205), + [anon_sym_BANG_EQ] = ACTIONS(1205), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_GT_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ] = ACTIONS(1205), + [anon_sym_AT] = ACTIONS(1205), + [anon_sym__] = ACTIONS(1203), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_DOT_DOT] = ACTIONS(1203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1205), + [anon_sym_COMMA] = ACTIONS(1205), + [anon_sym_COLON_COLON] = ACTIONS(1205), + [anon_sym_DASH_GT] = ACTIONS(1205), + [anon_sym_POUND] = ACTIONS(1205), + [anon_sym_SQUOTE] = ACTIONS(1203), + [anon_sym_as] = ACTIONS(1203), + [anon_sym_async] = ACTIONS(1203), + [anon_sym_await] = ACTIONS(1203), + [anon_sym_break] = ACTIONS(1203), + [anon_sym_const] = ACTIONS(1203), + [anon_sym_continue] = ACTIONS(1203), + [anon_sym_default] = ACTIONS(1203), + [anon_sym_enum] = ACTIONS(1203), + [anon_sym_fn] = ACTIONS(1203), + [anon_sym_for] = ACTIONS(1203), + [anon_sym_gen] = ACTIONS(1203), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_impl] = ACTIONS(1203), + [anon_sym_let] = ACTIONS(1203), + [anon_sym_loop] = ACTIONS(1203), + [anon_sym_match] = ACTIONS(1203), + [anon_sym_mod] = ACTIONS(1203), + [anon_sym_pub] = ACTIONS(1203), + [anon_sym_return] = ACTIONS(1203), + [anon_sym_static] = ACTIONS(1203), + [anon_sym_struct] = ACTIONS(1203), + [anon_sym_trait] = ACTIONS(1203), + [anon_sym_type] = ACTIONS(1203), + [anon_sym_union] = ACTIONS(1203), + [anon_sym_unsafe] = ACTIONS(1203), + [anon_sym_use] = ACTIONS(1203), + [anon_sym_where] = ACTIONS(1203), + [anon_sym_while] = ACTIONS(1203), + [sym_mutable_specifier] = ACTIONS(1203), + [sym_integer_literal] = ACTIONS(1205), + [aux_sym_string_literal_token1] = ACTIONS(1205), + [sym_char_literal] = ACTIONS(1205), + [anon_sym_true] = ACTIONS(1203), + [anon_sym_false] = ACTIONS(1203), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1203), + [sym_super] = ACTIONS(1203), + [sym_crate] = ACTIONS(1203), + [sym_metavariable] = ACTIONS(1205), + [sym__raw_string_literal_start] = ACTIONS(1205), + [sym_float_literal] = ACTIONS(1205), + }, + [STATE(366)] = { + [sym_line_comment] = STATE(366), + [sym_block_comment] = STATE(366), + [sym_identifier] = ACTIONS(1207), + [anon_sym_SEMI] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_RPAREN] = ACTIONS(1209), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_RBRACK] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_EQ_GT] = ACTIONS(1209), + [anon_sym_COLON] = ACTIONS(1207), + [anon_sym_DOLLAR] = ACTIONS(1207), + [anon_sym_PLUS] = ACTIONS(1207), + [anon_sym_STAR] = ACTIONS(1207), + [anon_sym_QMARK] = ACTIONS(1209), + [anon_sym_u8] = ACTIONS(1207), + [anon_sym_i8] = ACTIONS(1207), + [anon_sym_u16] = ACTIONS(1207), + [anon_sym_i16] = ACTIONS(1207), + [anon_sym_u32] = ACTIONS(1207), + [anon_sym_i32] = ACTIONS(1207), + [anon_sym_u64] = ACTIONS(1207), + [anon_sym_i64] = ACTIONS(1207), + [anon_sym_u128] = ACTIONS(1207), + [anon_sym_i128] = ACTIONS(1207), + [anon_sym_isize] = ACTIONS(1207), + [anon_sym_usize] = ACTIONS(1207), + [anon_sym_f32] = ACTIONS(1207), + [anon_sym_f64] = ACTIONS(1207), + [anon_sym_bool] = ACTIONS(1207), + [anon_sym_str] = ACTIONS(1207), + [anon_sym_char] = ACTIONS(1207), + [anon_sym_DASH] = ACTIONS(1207), + [anon_sym_SLASH] = ACTIONS(1207), + [anon_sym_PERCENT] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_AMP] = ACTIONS(1207), + [anon_sym_PIPE] = ACTIONS(1207), + [anon_sym_AMP_AMP] = ACTIONS(1209), + [anon_sym_PIPE_PIPE] = ACTIONS(1209), + [anon_sym_LT_LT] = ACTIONS(1207), + [anon_sym_GT_GT] = ACTIONS(1207), + [anon_sym_PLUS_EQ] = ACTIONS(1209), + [anon_sym_DASH_EQ] = ACTIONS(1209), + [anon_sym_STAR_EQ] = ACTIONS(1209), + [anon_sym_SLASH_EQ] = ACTIONS(1209), + [anon_sym_PERCENT_EQ] = ACTIONS(1209), + [anon_sym_CARET_EQ] = ACTIONS(1209), + [anon_sym_AMP_EQ] = ACTIONS(1209), + [anon_sym_PIPE_EQ] = ACTIONS(1209), + [anon_sym_LT_LT_EQ] = ACTIONS(1209), + [anon_sym_GT_GT_EQ] = ACTIONS(1209), + [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_EQ_EQ] = ACTIONS(1209), + [anon_sym_BANG_EQ] = ACTIONS(1209), + [anon_sym_GT] = ACTIONS(1207), + [anon_sym_LT] = ACTIONS(1207), + [anon_sym_GT_EQ] = ACTIONS(1209), + [anon_sym_LT_EQ] = ACTIONS(1209), + [anon_sym_AT] = ACTIONS(1209), + [anon_sym__] = ACTIONS(1207), + [anon_sym_DOT] = ACTIONS(1207), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1209), + [anon_sym_COMMA] = ACTIONS(1209), + [anon_sym_COLON_COLON] = ACTIONS(1209), + [anon_sym_DASH_GT] = ACTIONS(1209), + [anon_sym_POUND] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1207), + [anon_sym_as] = ACTIONS(1207), + [anon_sym_async] = ACTIONS(1207), + [anon_sym_await] = ACTIONS(1207), + [anon_sym_break] = ACTIONS(1207), + [anon_sym_const] = ACTIONS(1207), + [anon_sym_continue] = ACTIONS(1207), + [anon_sym_default] = ACTIONS(1207), + [anon_sym_enum] = ACTIONS(1207), + [anon_sym_fn] = ACTIONS(1207), + [anon_sym_for] = ACTIONS(1207), + [anon_sym_gen] = ACTIONS(1207), + [anon_sym_if] = ACTIONS(1207), + [anon_sym_impl] = ACTIONS(1207), + [anon_sym_let] = ACTIONS(1207), + [anon_sym_loop] = ACTIONS(1207), + [anon_sym_match] = ACTIONS(1207), + [anon_sym_mod] = ACTIONS(1207), + [anon_sym_pub] = ACTIONS(1207), + [anon_sym_return] = ACTIONS(1207), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_trait] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1207), + [anon_sym_union] = ACTIONS(1207), + [anon_sym_unsafe] = ACTIONS(1207), + [anon_sym_use] = ACTIONS(1207), + [anon_sym_where] = ACTIONS(1207), + [anon_sym_while] = ACTIONS(1207), + [sym_mutable_specifier] = ACTIONS(1207), + [sym_integer_literal] = ACTIONS(1209), + [aux_sym_string_literal_token1] = ACTIONS(1209), + [sym_char_literal] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1207), + [anon_sym_false] = ACTIONS(1207), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1207), + [sym_super] = ACTIONS(1207), + [sym_crate] = ACTIONS(1207), + [sym_metavariable] = ACTIONS(1209), + [sym__raw_string_literal_start] = ACTIONS(1209), + [sym_float_literal] = ACTIONS(1209), + }, + [STATE(367)] = { + [sym_line_comment] = STATE(367), + [sym_block_comment] = STATE(367), + [sym_identifier] = ACTIONS(1211), + [anon_sym_SEMI] = ACTIONS(1213), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_RPAREN] = ACTIONS(1213), + [anon_sym_LBRACK] = ACTIONS(1213), + [anon_sym_RBRACK] = ACTIONS(1213), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_RBRACE] = ACTIONS(1213), + [anon_sym_EQ_GT] = ACTIONS(1213), + [anon_sym_COLON] = ACTIONS(1211), + [anon_sym_DOLLAR] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1211), + [anon_sym_STAR] = ACTIONS(1211), + [anon_sym_QMARK] = ACTIONS(1213), + [anon_sym_u8] = ACTIONS(1211), + [anon_sym_i8] = ACTIONS(1211), + [anon_sym_u16] = ACTIONS(1211), + [anon_sym_i16] = ACTIONS(1211), + [anon_sym_u32] = ACTIONS(1211), + [anon_sym_i32] = ACTIONS(1211), + [anon_sym_u64] = ACTIONS(1211), + [anon_sym_i64] = ACTIONS(1211), + [anon_sym_u128] = ACTIONS(1211), + [anon_sym_i128] = ACTIONS(1211), + [anon_sym_isize] = ACTIONS(1211), + [anon_sym_usize] = ACTIONS(1211), + [anon_sym_f32] = ACTIONS(1211), + [anon_sym_f64] = ACTIONS(1211), + [anon_sym_bool] = ACTIONS(1211), + [anon_sym_str] = ACTIONS(1211), + [anon_sym_char] = ACTIONS(1211), + [anon_sym_DASH] = ACTIONS(1211), + [anon_sym_SLASH] = ACTIONS(1211), + [anon_sym_PERCENT] = ACTIONS(1211), + [anon_sym_CARET] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1211), + [anon_sym_PIPE] = ACTIONS(1211), + [anon_sym_AMP_AMP] = ACTIONS(1213), + [anon_sym_PIPE_PIPE] = ACTIONS(1213), + [anon_sym_LT_LT] = ACTIONS(1211), + [anon_sym_GT_GT] = ACTIONS(1211), + [anon_sym_PLUS_EQ] = ACTIONS(1213), + [anon_sym_DASH_EQ] = ACTIONS(1213), + [anon_sym_STAR_EQ] = ACTIONS(1213), + [anon_sym_SLASH_EQ] = ACTIONS(1213), + [anon_sym_PERCENT_EQ] = ACTIONS(1213), + [anon_sym_CARET_EQ] = ACTIONS(1213), + [anon_sym_AMP_EQ] = ACTIONS(1213), + [anon_sym_PIPE_EQ] = ACTIONS(1213), + [anon_sym_LT_LT_EQ] = ACTIONS(1213), + [anon_sym_GT_GT_EQ] = ACTIONS(1213), + [anon_sym_EQ] = ACTIONS(1211), + [anon_sym_EQ_EQ] = ACTIONS(1213), + [anon_sym_BANG_EQ] = ACTIONS(1213), + [anon_sym_GT] = ACTIONS(1211), + [anon_sym_LT] = ACTIONS(1211), + [anon_sym_GT_EQ] = ACTIONS(1213), + [anon_sym_LT_EQ] = ACTIONS(1213), + [anon_sym_AT] = ACTIONS(1213), + [anon_sym__] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1211), + [anon_sym_DOT_DOT] = ACTIONS(1211), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1213), + [anon_sym_COMMA] = ACTIONS(1213), + [anon_sym_COLON_COLON] = ACTIONS(1213), + [anon_sym_DASH_GT] = ACTIONS(1213), + [anon_sym_POUND] = ACTIONS(1213), + [anon_sym_SQUOTE] = ACTIONS(1211), + [anon_sym_as] = ACTIONS(1211), + [anon_sym_async] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1211), + [anon_sym_break] = ACTIONS(1211), + [anon_sym_const] = ACTIONS(1211), + [anon_sym_continue] = ACTIONS(1211), + [anon_sym_default] = ACTIONS(1211), + [anon_sym_enum] = ACTIONS(1211), + [anon_sym_fn] = ACTIONS(1211), + [anon_sym_for] = ACTIONS(1211), + [anon_sym_gen] = ACTIONS(1211), + [anon_sym_if] = ACTIONS(1211), + [anon_sym_impl] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(1211), + [anon_sym_loop] = ACTIONS(1211), + [anon_sym_match] = ACTIONS(1211), + [anon_sym_mod] = ACTIONS(1211), + [anon_sym_pub] = ACTIONS(1211), + [anon_sym_return] = ACTIONS(1211), + [anon_sym_static] = ACTIONS(1211), + [anon_sym_struct] = ACTIONS(1211), + [anon_sym_trait] = ACTIONS(1211), + [anon_sym_type] = ACTIONS(1211), + [anon_sym_union] = ACTIONS(1211), + [anon_sym_unsafe] = ACTIONS(1211), + [anon_sym_use] = ACTIONS(1211), + [anon_sym_where] = ACTIONS(1211), + [anon_sym_while] = ACTIONS(1211), + [sym_mutable_specifier] = ACTIONS(1211), + [sym_integer_literal] = ACTIONS(1213), + [aux_sym_string_literal_token1] = ACTIONS(1213), + [sym_char_literal] = ACTIONS(1213), + [anon_sym_true] = ACTIONS(1211), + [anon_sym_false] = ACTIONS(1211), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1211), + [sym_super] = ACTIONS(1211), + [sym_crate] = ACTIONS(1211), + [sym_metavariable] = ACTIONS(1213), + [sym__raw_string_literal_start] = ACTIONS(1213), + [sym_float_literal] = ACTIONS(1213), + }, + [STATE(368)] = { + [sym_attribute_item] = STATE(1098), + [sym_attributes] = STATE(419), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_self_parameter] = STATE(2948), + [sym_variadic_parameter] = STATE(2948), + [sym_parameter] = STATE(2948), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2779), + [sym_bracketed_type] = STATE(3759), + [sym_lifetime] = STATE(2953), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3486), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2626), + [sym_scoped_identifier] = STATE(2263), + [sym_scoped_type_identifier] = STATE(2296), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2573), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), + [sym_line_comment] = STATE(368), + [sym_block_comment] = STATE(368), + [aux_sym_attributes_repeat1] = STATE(1097), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1053), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_RPAREN] = ACTIONS(1215), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1065), + [anon_sym_i8] = ACTIONS(1065), + [anon_sym_u16] = ACTIONS(1065), + [anon_sym_i16] = ACTIONS(1065), + [anon_sym_u32] = ACTIONS(1065), + [anon_sym_i32] = ACTIONS(1065), + [anon_sym_u64] = ACTIONS(1065), + [anon_sym_i64] = ACTIONS(1065), + [anon_sym_u128] = ACTIONS(1065), + [anon_sym_i128] = ACTIONS(1065), + [anon_sym_isize] = ACTIONS(1065), + [anon_sym_usize] = ACTIONS(1065), + [anon_sym_f32] = ACTIONS(1065), + [anon_sym_f64] = ACTIONS(1065), + [anon_sym_bool] = ACTIONS(1065), + [anon_sym_str] = ACTIONS(1065), + [anon_sym_char] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1071), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1075), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1079), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COMMA] = ACTIONS(1217), + [anon_sym_COLON_COLON] = ACTIONS(1085), + [anon_sym_POUND] = ACTIONS(1087), + [anon_sym_SQUOTE] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_default] = ACTIONS(1095), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1101), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1101), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_ref] = ACTIONS(1109), + [anon_sym_dyn] = ACTIONS(1111), + [sym_mutable_specifier] = ACTIONS(1113), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1121), + [sym_super] = ACTIONS(1123), + [sym_crate] = ACTIONS(1123), + [sym_metavariable] = ACTIONS(1125), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), + }, + [STATE(369)] = { + [sym_line_comment] = STATE(369), + [sym_block_comment] = STATE(369), + [aux_sym__non_special_token_repeat1] = STATE(369), + [sym_identifier] = ACTIONS(1043), + [anon_sym_SEMI] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_RPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1048), + [anon_sym_RBRACK] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1048), + [anon_sym_RBRACE] = ACTIONS(1048), + [anon_sym_EQ_GT] = ACTIONS(1219), + [anon_sym_COLON] = ACTIONS(1222), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1222), + [anon_sym_STAR] = ACTIONS(1222), + [anon_sym_QMARK] = ACTIONS(1219), + [anon_sym_u8] = ACTIONS(1043), + [anon_sym_i8] = ACTIONS(1043), + [anon_sym_u16] = ACTIONS(1043), + [anon_sym_i16] = ACTIONS(1043), + [anon_sym_u32] = ACTIONS(1043), + [anon_sym_i32] = ACTIONS(1043), + [anon_sym_u64] = ACTIONS(1043), + [anon_sym_i64] = ACTIONS(1043), + [anon_sym_u128] = ACTIONS(1043), + [anon_sym_i128] = ACTIONS(1043), + [anon_sym_isize] = ACTIONS(1043), + [anon_sym_usize] = ACTIONS(1043), + [anon_sym_f32] = ACTIONS(1043), + [anon_sym_f64] = ACTIONS(1043), + [anon_sym_bool] = ACTIONS(1043), + [anon_sym_str] = ACTIONS(1043), + [anon_sym_char] = ACTIONS(1043), + [anon_sym_DASH] = ACTIONS(1222), + [anon_sym_SLASH] = ACTIONS(1222), + [anon_sym_PERCENT] = ACTIONS(1222), + [anon_sym_CARET] = ACTIONS(1222), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_AMP] = ACTIONS(1222), + [anon_sym_PIPE] = ACTIONS(1222), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_LT_LT] = ACTIONS(1222), + [anon_sym_GT_GT] = ACTIONS(1222), + [anon_sym_PLUS_EQ] = ACTIONS(1219), + [anon_sym_DASH_EQ] = ACTIONS(1219), + [anon_sym_STAR_EQ] = ACTIONS(1219), + [anon_sym_SLASH_EQ] = ACTIONS(1219), + [anon_sym_PERCENT_EQ] = ACTIONS(1219), + [anon_sym_CARET_EQ] = ACTIONS(1219), + [anon_sym_AMP_EQ] = ACTIONS(1219), + [anon_sym_PIPE_EQ] = ACTIONS(1219), + [anon_sym_LT_LT_EQ] = ACTIONS(1219), + [anon_sym_GT_GT_EQ] = ACTIONS(1219), + [anon_sym_EQ] = ACTIONS(1222), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT] = ACTIONS(1222), + [anon_sym_LT] = ACTIONS(1222), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_AT] = ACTIONS(1219), + [anon_sym__] = ACTIONS(1222), + [anon_sym_DOT] = ACTIONS(1222), + [anon_sym_DOT_DOT] = ACTIONS(1222), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1219), + [anon_sym_COMMA] = ACTIONS(1219), + [anon_sym_COLON_COLON] = ACTIONS(1219), + [anon_sym_DASH_GT] = ACTIONS(1219), + [anon_sym_POUND] = ACTIONS(1219), + [anon_sym_SQUOTE] = ACTIONS(1043), + [anon_sym_as] = ACTIONS(1043), + [anon_sym_async] = ACTIONS(1043), + [anon_sym_await] = ACTIONS(1043), + [anon_sym_break] = ACTIONS(1043), + [anon_sym_const] = ACTIONS(1043), + [anon_sym_continue] = ACTIONS(1043), + [anon_sym_default] = ACTIONS(1043), + [anon_sym_enum] = ACTIONS(1043), + [anon_sym_fn] = ACTIONS(1043), + [anon_sym_for] = ACTIONS(1043), + [anon_sym_gen] = ACTIONS(1043), + [anon_sym_if] = ACTIONS(1043), + [anon_sym_impl] = ACTIONS(1043), + [anon_sym_let] = ACTIONS(1043), + [anon_sym_loop] = ACTIONS(1043), + [anon_sym_match] = ACTIONS(1043), + [anon_sym_mod] = ACTIONS(1043), + [anon_sym_pub] = ACTIONS(1043), + [anon_sym_return] = ACTIONS(1043), + [anon_sym_static] = ACTIONS(1043), + [anon_sym_struct] = ACTIONS(1043), + [anon_sym_trait] = ACTIONS(1043), + [anon_sym_type] = ACTIONS(1043), + [anon_sym_union] = ACTIONS(1043), + [anon_sym_unsafe] = ACTIONS(1043), + [anon_sym_use] = ACTIONS(1043), + [anon_sym_where] = ACTIONS(1043), + [anon_sym_while] = ACTIONS(1043), + [sym_mutable_specifier] = ACTIONS(1043), + [sym_integer_literal] = ACTIONS(1048), + [aux_sym_string_literal_token1] = ACTIONS(1048), + [sym_char_literal] = ACTIONS(1048), + [anon_sym_true] = ACTIONS(1043), + [anon_sym_false] = ACTIONS(1043), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1043), + [sym_super] = ACTIONS(1043), + [sym_crate] = ACTIONS(1043), + [sym__raw_string_literal_start] = ACTIONS(1048), + [sym_float_literal] = ACTIONS(1048), + }, + [STATE(370)] = { + [sym_line_comment] = STATE(370), + [sym_block_comment] = STATE(370), + [sym_identifier] = ACTIONS(1225), + [anon_sym_SEMI] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1227), + [anon_sym_RPAREN] = ACTIONS(1227), + [anon_sym_LBRACK] = ACTIONS(1227), + [anon_sym_RBRACK] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(1227), + [anon_sym_RBRACE] = ACTIONS(1227), + [anon_sym_EQ_GT] = ACTIONS(1227), + [anon_sym_COLON] = ACTIONS(1225), + [anon_sym_DOLLAR] = ACTIONS(1225), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_STAR] = ACTIONS(1225), + [anon_sym_QMARK] = ACTIONS(1227), + [anon_sym_u8] = ACTIONS(1225), + [anon_sym_i8] = ACTIONS(1225), + [anon_sym_u16] = ACTIONS(1225), + [anon_sym_i16] = ACTIONS(1225), + [anon_sym_u32] = ACTIONS(1225), + [anon_sym_i32] = ACTIONS(1225), + [anon_sym_u64] = ACTIONS(1225), + [anon_sym_i64] = ACTIONS(1225), + [anon_sym_u128] = ACTIONS(1225), + [anon_sym_i128] = ACTIONS(1225), + [anon_sym_isize] = ACTIONS(1225), + [anon_sym_usize] = ACTIONS(1225), + [anon_sym_f32] = ACTIONS(1225), + [anon_sym_f64] = ACTIONS(1225), + [anon_sym_bool] = ACTIONS(1225), + [anon_sym_str] = ACTIONS(1225), + [anon_sym_char] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(1225), + [anon_sym_PERCENT] = ACTIONS(1225), + [anon_sym_CARET] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1225), + [anon_sym_PIPE] = ACTIONS(1225), + [anon_sym_AMP_AMP] = ACTIONS(1227), + [anon_sym_PIPE_PIPE] = ACTIONS(1227), + [anon_sym_LT_LT] = ACTIONS(1225), + [anon_sym_GT_GT] = ACTIONS(1225), + [anon_sym_PLUS_EQ] = ACTIONS(1227), + [anon_sym_DASH_EQ] = ACTIONS(1227), + [anon_sym_STAR_EQ] = ACTIONS(1227), + [anon_sym_SLASH_EQ] = ACTIONS(1227), + [anon_sym_PERCENT_EQ] = ACTIONS(1227), + [anon_sym_CARET_EQ] = ACTIONS(1227), + [anon_sym_AMP_EQ] = ACTIONS(1227), + [anon_sym_PIPE_EQ] = ACTIONS(1227), + [anon_sym_LT_LT_EQ] = ACTIONS(1227), + [anon_sym_GT_GT_EQ] = ACTIONS(1227), + [anon_sym_EQ] = ACTIONS(1225), + [anon_sym_EQ_EQ] = ACTIONS(1227), + [anon_sym_BANG_EQ] = ACTIONS(1227), + [anon_sym_GT] = ACTIONS(1225), + [anon_sym_LT] = ACTIONS(1225), + [anon_sym_GT_EQ] = ACTIONS(1227), + [anon_sym_LT_EQ] = ACTIONS(1227), + [anon_sym_AT] = ACTIONS(1227), + [anon_sym__] = ACTIONS(1225), + [anon_sym_DOT] = ACTIONS(1225), + [anon_sym_DOT_DOT] = ACTIONS(1225), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1227), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1227), + [anon_sym_COMMA] = ACTIONS(1227), + [anon_sym_COLON_COLON] = ACTIONS(1227), + [anon_sym_DASH_GT] = ACTIONS(1227), + [anon_sym_POUND] = ACTIONS(1227), + [anon_sym_SQUOTE] = ACTIONS(1225), + [anon_sym_as] = ACTIONS(1225), + [anon_sym_async] = ACTIONS(1225), + [anon_sym_await] = ACTIONS(1225), + [anon_sym_break] = ACTIONS(1225), + [anon_sym_const] = ACTIONS(1225), + [anon_sym_continue] = ACTIONS(1225), + [anon_sym_default] = ACTIONS(1225), + [anon_sym_enum] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1225), + [anon_sym_for] = ACTIONS(1225), + [anon_sym_gen] = ACTIONS(1225), + [anon_sym_if] = ACTIONS(1225), + [anon_sym_impl] = ACTIONS(1225), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_loop] = ACTIONS(1225), + [anon_sym_match] = ACTIONS(1225), + [anon_sym_mod] = ACTIONS(1225), + [anon_sym_pub] = ACTIONS(1225), + [anon_sym_return] = ACTIONS(1225), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_struct] = ACTIONS(1225), + [anon_sym_trait] = ACTIONS(1225), + [anon_sym_type] = ACTIONS(1225), + [anon_sym_union] = ACTIONS(1225), + [anon_sym_unsafe] = ACTIONS(1225), + [anon_sym_use] = ACTIONS(1225), + [anon_sym_where] = ACTIONS(1225), + [anon_sym_while] = ACTIONS(1225), + [sym_mutable_specifier] = ACTIONS(1225), + [sym_integer_literal] = ACTIONS(1227), + [aux_sym_string_literal_token1] = ACTIONS(1227), + [sym_char_literal] = ACTIONS(1227), + [anon_sym_true] = ACTIONS(1225), + [anon_sym_false] = ACTIONS(1225), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1225), + [sym_super] = ACTIONS(1225), + [sym_crate] = ACTIONS(1225), + [sym_metavariable] = ACTIONS(1227), + [sym__raw_string_literal_start] = ACTIONS(1227), + [sym_float_literal] = ACTIONS(1227), + }, + [STATE(371)] = { + [sym_line_comment] = STATE(371), + [sym_block_comment] = STATE(371), + [sym_identifier] = ACTIONS(1229), + [anon_sym_SEMI] = ACTIONS(1231), + [anon_sym_LPAREN] = ACTIONS(1231), + [anon_sym_RPAREN] = ACTIONS(1231), + [anon_sym_LBRACK] = ACTIONS(1231), + [anon_sym_RBRACK] = ACTIONS(1231), + [anon_sym_LBRACE] = ACTIONS(1231), + [anon_sym_RBRACE] = ACTIONS(1231), + [anon_sym_EQ_GT] = ACTIONS(1231), + [anon_sym_COLON] = ACTIONS(1229), + [anon_sym_DOLLAR] = ACTIONS(1229), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_QMARK] = ACTIONS(1231), + [anon_sym_u8] = ACTIONS(1229), + [anon_sym_i8] = ACTIONS(1229), + [anon_sym_u16] = ACTIONS(1229), + [anon_sym_i16] = ACTIONS(1229), + [anon_sym_u32] = ACTIONS(1229), + [anon_sym_i32] = ACTIONS(1229), + [anon_sym_u64] = ACTIONS(1229), + [anon_sym_i64] = ACTIONS(1229), + [anon_sym_u128] = ACTIONS(1229), + [anon_sym_i128] = ACTIONS(1229), + [anon_sym_isize] = ACTIONS(1229), + [anon_sym_usize] = ACTIONS(1229), + [anon_sym_f32] = ACTIONS(1229), + [anon_sym_f64] = ACTIONS(1229), + [anon_sym_bool] = ACTIONS(1229), + [anon_sym_str] = ACTIONS(1229), + [anon_sym_char] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1229), + [anon_sym_PERCENT] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1229), + [anon_sym_PIPE] = ACTIONS(1229), + [anon_sym_AMP_AMP] = ACTIONS(1231), + [anon_sym_PIPE_PIPE] = ACTIONS(1231), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1229), + [anon_sym_PLUS_EQ] = ACTIONS(1231), + [anon_sym_DASH_EQ] = ACTIONS(1231), + [anon_sym_STAR_EQ] = ACTIONS(1231), + [anon_sym_SLASH_EQ] = ACTIONS(1231), + [anon_sym_PERCENT_EQ] = ACTIONS(1231), + [anon_sym_CARET_EQ] = ACTIONS(1231), + [anon_sym_AMP_EQ] = ACTIONS(1231), + [anon_sym_PIPE_EQ] = ACTIONS(1231), + [anon_sym_LT_LT_EQ] = ACTIONS(1231), + [anon_sym_GT_GT_EQ] = ACTIONS(1231), + [anon_sym_EQ] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1231), + [anon_sym_BANG_EQ] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1229), + [anon_sym_LT] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1231), + [anon_sym_LT_EQ] = ACTIONS(1231), + [anon_sym_AT] = ACTIONS(1231), + [anon_sym__] = ACTIONS(1229), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_DOT_DOT] = ACTIONS(1229), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1231), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1231), + [anon_sym_COMMA] = ACTIONS(1231), + [anon_sym_COLON_COLON] = ACTIONS(1231), + [anon_sym_DASH_GT] = ACTIONS(1231), + [anon_sym_POUND] = ACTIONS(1231), + [anon_sym_SQUOTE] = ACTIONS(1229), + [anon_sym_as] = ACTIONS(1229), + [anon_sym_async] = ACTIONS(1229), + [anon_sym_await] = ACTIONS(1229), + [anon_sym_break] = ACTIONS(1229), + [anon_sym_const] = ACTIONS(1229), + [anon_sym_continue] = ACTIONS(1229), + [anon_sym_default] = ACTIONS(1229), + [anon_sym_enum] = ACTIONS(1229), + [anon_sym_fn] = ACTIONS(1229), + [anon_sym_for] = ACTIONS(1229), + [anon_sym_gen] = ACTIONS(1229), + [anon_sym_if] = ACTIONS(1229), + [anon_sym_impl] = ACTIONS(1229), + [anon_sym_let] = ACTIONS(1229), + [anon_sym_loop] = ACTIONS(1229), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_mod] = ACTIONS(1229), + [anon_sym_pub] = ACTIONS(1229), + [anon_sym_return] = ACTIONS(1229), + [anon_sym_static] = ACTIONS(1229), + [anon_sym_struct] = ACTIONS(1229), + [anon_sym_trait] = ACTIONS(1229), + [anon_sym_type] = ACTIONS(1229), + [anon_sym_union] = ACTIONS(1229), + [anon_sym_unsafe] = ACTIONS(1229), + [anon_sym_use] = ACTIONS(1229), + [anon_sym_where] = ACTIONS(1229), + [anon_sym_while] = ACTIONS(1229), + [sym_mutable_specifier] = ACTIONS(1229), + [sym_integer_literal] = ACTIONS(1231), + [aux_sym_string_literal_token1] = ACTIONS(1231), + [sym_char_literal] = ACTIONS(1231), + [anon_sym_true] = ACTIONS(1229), + [anon_sym_false] = ACTIONS(1229), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1229), + [sym_super] = ACTIONS(1229), + [sym_crate] = ACTIONS(1229), + [sym_metavariable] = ACTIONS(1231), + [sym__raw_string_literal_start] = ACTIONS(1231), + [sym_float_literal] = ACTIONS(1231), + }, + [STATE(372)] = { + [sym_attribute_item] = STATE(1098), + [sym_attributes] = STATE(440), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_self_parameter] = STATE(3027), + [sym_variadic_parameter] = STATE(3027), + [sym_parameter] = STATE(3027), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2696), + [sym_bracketed_type] = STATE(3751), + [sym_lifetime] = STATE(2953), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2569), + [sym_scoped_identifier] = STATE(2379), + [sym_scoped_type_identifier] = STATE(2296), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(3286), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), + [sym_line_comment] = STATE(372), + [sym_block_comment] = STATE(372), + [aux_sym_attributes_repeat1] = STATE(1097), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1157), + [anon_sym_LPAREN] = ACTIONS(1159), + [anon_sym_RPAREN] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1163), + [anon_sym_i8] = ACTIONS(1163), + [anon_sym_u16] = ACTIONS(1163), + [anon_sym_i16] = ACTIONS(1163), + [anon_sym_u32] = ACTIONS(1163), + [anon_sym_i32] = ACTIONS(1163), + [anon_sym_u64] = ACTIONS(1163), + [anon_sym_i64] = ACTIONS(1163), + [anon_sym_u128] = ACTIONS(1163), + [anon_sym_i128] = ACTIONS(1163), + [anon_sym_isize] = ACTIONS(1163), + [anon_sym_usize] = ACTIONS(1163), + [anon_sym_f32] = ACTIONS(1163), + [anon_sym_f64] = ACTIONS(1163), + [anon_sym_bool] = ACTIONS(1163), + [anon_sym_str] = ACTIONS(1163), + [anon_sym_char] = ACTIONS(1163), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1165), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1079), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COMMA] = ACTIONS(1237), + [anon_sym_COLON_COLON] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(1087), + [anon_sym_SQUOTE] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_default] = ACTIONS(1173), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1175), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1175), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_ref] = ACTIONS(1109), + [anon_sym_dyn] = ACTIONS(1111), + [sym_mutable_specifier] = ACTIONS(1113), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1177), + [sym_super] = ACTIONS(1179), + [sym_crate] = ACTIONS(1179), + [sym_metavariable] = ACTIONS(1181), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), + }, + [STATE(373)] = { + [sym_line_comment] = STATE(373), + [sym_block_comment] = STATE(373), + [aux_sym__non_special_token_repeat1] = STATE(369), + [sym_identifier] = ACTIONS(1239), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(1241), + [anon_sym_RPAREN] = ACTIONS(1241), + [anon_sym_LBRACK] = ACTIONS(1241), + [anon_sym_RBRACK] = ACTIONS(1241), + [anon_sym_LBRACE] = ACTIONS(1241), + [anon_sym_RBRACE] = ACTIONS(1241), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(1241), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(1239), + [anon_sym_i8] = ACTIONS(1239), + [anon_sym_u16] = ACTIONS(1239), + [anon_sym_i16] = ACTIONS(1239), + [anon_sym_u32] = ACTIONS(1239), + [anon_sym_i32] = ACTIONS(1239), + [anon_sym_u64] = ACTIONS(1239), + [anon_sym_i64] = ACTIONS(1239), + [anon_sym_u128] = ACTIONS(1239), + [anon_sym_i128] = ACTIONS(1239), + [anon_sym_isize] = ACTIONS(1239), + [anon_sym_usize] = ACTIONS(1239), + [anon_sym_f32] = ACTIONS(1239), + [anon_sym_f64] = ACTIONS(1239), + [anon_sym_bool] = ACTIONS(1239), + [anon_sym_str] = ACTIONS(1239), + [anon_sym_char] = ACTIONS(1239), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(1239), + [anon_sym_as] = ACTIONS(1239), + [anon_sym_async] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_break] = ACTIONS(1239), + [anon_sym_const] = ACTIONS(1239), + [anon_sym_continue] = ACTIONS(1239), + [anon_sym_default] = ACTIONS(1239), + [anon_sym_enum] = ACTIONS(1239), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1239), + [anon_sym_gen] = ACTIONS(1239), + [anon_sym_if] = ACTIONS(1239), + [anon_sym_impl] = ACTIONS(1239), + [anon_sym_let] = ACTIONS(1239), + [anon_sym_loop] = ACTIONS(1239), + [anon_sym_match] = ACTIONS(1239), + [anon_sym_mod] = ACTIONS(1239), + [anon_sym_pub] = ACTIONS(1239), + [anon_sym_return] = ACTIONS(1239), + [anon_sym_static] = ACTIONS(1239), + [anon_sym_struct] = ACTIONS(1239), + [anon_sym_trait] = ACTIONS(1239), + [anon_sym_type] = ACTIONS(1239), + [anon_sym_union] = ACTIONS(1239), + [anon_sym_unsafe] = ACTIONS(1239), + [anon_sym_use] = ACTIONS(1239), + [anon_sym_where] = ACTIONS(1239), + [anon_sym_while] = ACTIONS(1239), + [sym_mutable_specifier] = ACTIONS(1239), + [sym_integer_literal] = ACTIONS(1241), + [aux_sym_string_literal_token1] = ACTIONS(1241), + [sym_char_literal] = ACTIONS(1241), + [anon_sym_true] = ACTIONS(1239), + [anon_sym_false] = ACTIONS(1239), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1239), + [sym_super] = ACTIONS(1239), + [sym_crate] = ACTIONS(1239), + [sym__raw_string_literal_start] = ACTIONS(1241), + [sym_float_literal] = ACTIONS(1241), + }, + [STATE(374)] = { + [sym_line_comment] = STATE(374), + [sym_block_comment] = STATE(374), + [sym_identifier] = ACTIONS(1243), + [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_RPAREN] = ACTIONS(1245), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_RBRACK] = ACTIONS(1245), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_RBRACE] = ACTIONS(1245), + [anon_sym_EQ_GT] = ACTIONS(1245), + [anon_sym_COLON] = ACTIONS(1243), + [anon_sym_DOLLAR] = ACTIONS(1243), + [anon_sym_PLUS] = ACTIONS(1243), + [anon_sym_STAR] = ACTIONS(1243), + [anon_sym_QMARK] = ACTIONS(1245), + [anon_sym_u8] = ACTIONS(1243), + [anon_sym_i8] = ACTIONS(1243), + [anon_sym_u16] = ACTIONS(1243), + [anon_sym_i16] = ACTIONS(1243), + [anon_sym_u32] = ACTIONS(1243), + [anon_sym_i32] = ACTIONS(1243), + [anon_sym_u64] = ACTIONS(1243), + [anon_sym_i64] = ACTIONS(1243), + [anon_sym_u128] = ACTIONS(1243), + [anon_sym_i128] = ACTIONS(1243), + [anon_sym_isize] = ACTIONS(1243), + [anon_sym_usize] = ACTIONS(1243), + [anon_sym_f32] = ACTIONS(1243), + [anon_sym_f64] = ACTIONS(1243), + [anon_sym_bool] = ACTIONS(1243), + [anon_sym_str] = ACTIONS(1243), + [anon_sym_char] = ACTIONS(1243), + [anon_sym_DASH] = ACTIONS(1243), + [anon_sym_SLASH] = ACTIONS(1243), + [anon_sym_PERCENT] = ACTIONS(1243), + [anon_sym_CARET] = ACTIONS(1243), + [anon_sym_BANG] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1243), + [anon_sym_PIPE] = ACTIONS(1243), + [anon_sym_AMP_AMP] = ACTIONS(1245), + [anon_sym_PIPE_PIPE] = ACTIONS(1245), + [anon_sym_LT_LT] = ACTIONS(1243), + [anon_sym_GT_GT] = ACTIONS(1243), + [anon_sym_PLUS_EQ] = ACTIONS(1245), + [anon_sym_DASH_EQ] = ACTIONS(1245), + [anon_sym_STAR_EQ] = ACTIONS(1245), + [anon_sym_SLASH_EQ] = ACTIONS(1245), + [anon_sym_PERCENT_EQ] = ACTIONS(1245), + [anon_sym_CARET_EQ] = ACTIONS(1245), + [anon_sym_AMP_EQ] = ACTIONS(1245), + [anon_sym_PIPE_EQ] = ACTIONS(1245), + [anon_sym_LT_LT_EQ] = ACTIONS(1245), + [anon_sym_GT_GT_EQ] = ACTIONS(1245), + [anon_sym_EQ] = ACTIONS(1243), + [anon_sym_EQ_EQ] = ACTIONS(1245), + [anon_sym_BANG_EQ] = ACTIONS(1245), + [anon_sym_GT] = ACTIONS(1243), + [anon_sym_LT] = ACTIONS(1243), + [anon_sym_GT_EQ] = ACTIONS(1245), + [anon_sym_LT_EQ] = ACTIONS(1245), + [anon_sym_AT] = ACTIONS(1245), + [anon_sym__] = ACTIONS(1243), + [anon_sym_DOT] = ACTIONS(1243), + [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1245), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1245), + [anon_sym_COMMA] = ACTIONS(1245), + [anon_sym_COLON_COLON] = ACTIONS(1245), + [anon_sym_DASH_GT] = ACTIONS(1245), + [anon_sym_POUND] = ACTIONS(1245), + [anon_sym_SQUOTE] = ACTIONS(1243), + [anon_sym_as] = ACTIONS(1243), + [anon_sym_async] = ACTIONS(1243), + [anon_sym_await] = ACTIONS(1243), + [anon_sym_break] = ACTIONS(1243), + [anon_sym_const] = ACTIONS(1243), + [anon_sym_continue] = ACTIONS(1243), + [anon_sym_default] = ACTIONS(1243), + [anon_sym_enum] = ACTIONS(1243), + [anon_sym_fn] = ACTIONS(1243), + [anon_sym_for] = ACTIONS(1243), + [anon_sym_gen] = ACTIONS(1243), + [anon_sym_if] = ACTIONS(1243), + [anon_sym_impl] = ACTIONS(1243), + [anon_sym_let] = ACTIONS(1243), + [anon_sym_loop] = ACTIONS(1243), + [anon_sym_match] = ACTIONS(1243), + [anon_sym_mod] = ACTIONS(1243), + [anon_sym_pub] = ACTIONS(1243), + [anon_sym_return] = ACTIONS(1243), + [anon_sym_static] = ACTIONS(1243), + [anon_sym_struct] = ACTIONS(1243), + [anon_sym_trait] = ACTIONS(1243), + [anon_sym_type] = ACTIONS(1243), + [anon_sym_union] = ACTIONS(1243), + [anon_sym_unsafe] = ACTIONS(1243), + [anon_sym_use] = ACTIONS(1243), + [anon_sym_where] = ACTIONS(1243), + [anon_sym_while] = ACTIONS(1243), + [sym_mutable_specifier] = ACTIONS(1243), + [sym_integer_literal] = ACTIONS(1245), + [aux_sym_string_literal_token1] = ACTIONS(1245), + [sym_char_literal] = ACTIONS(1245), + [anon_sym_true] = ACTIONS(1243), + [anon_sym_false] = ACTIONS(1243), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1243), + [sym_super] = ACTIONS(1243), + [sym_crate] = ACTIONS(1243), + [sym_metavariable] = ACTIONS(1245), + [sym__raw_string_literal_start] = ACTIONS(1245), + [sym_float_literal] = ACTIONS(1245), + }, + [STATE(375)] = { + [sym_attribute_item] = STATE(1098), + [sym_attributes] = STATE(424), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_self_parameter] = STATE(2946), + [sym_variadic_parameter] = STATE(2946), + [sym_parameter] = STATE(2946), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2778), + [sym_bracketed_type] = STATE(3751), + [sym_lifetime] = STATE(2953), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2569), + [sym_scoped_identifier] = STATE(2379), + [sym_scoped_type_identifier] = STATE(2296), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(3286), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), + [sym_line_comment] = STATE(375), + [sym_block_comment] = STATE(375), + [aux_sym_attributes_repeat1] = STATE(1097), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1157), + [anon_sym_LPAREN] = ACTIONS(1159), + [anon_sym_RPAREN] = ACTIONS(1247), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1163), + [anon_sym_i8] = ACTIONS(1163), + [anon_sym_u16] = ACTIONS(1163), + [anon_sym_i16] = ACTIONS(1163), + [anon_sym_u32] = ACTIONS(1163), + [anon_sym_i32] = ACTIONS(1163), + [anon_sym_u64] = ACTIONS(1163), + [anon_sym_i64] = ACTIONS(1163), + [anon_sym_u128] = ACTIONS(1163), + [anon_sym_i128] = ACTIONS(1163), + [anon_sym_isize] = ACTIONS(1163), + [anon_sym_usize] = ACTIONS(1163), + [anon_sym_f32] = ACTIONS(1163), + [anon_sym_f64] = ACTIONS(1163), + [anon_sym_bool] = ACTIONS(1163), + [anon_sym_str] = ACTIONS(1163), + [anon_sym_char] = ACTIONS(1163), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1165), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1249), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1079), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COMMA] = ACTIONS(1251), + [anon_sym_COLON_COLON] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(1087), + [anon_sym_SQUOTE] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_default] = ACTIONS(1173), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1175), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1175), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_ref] = ACTIONS(1109), + [anon_sym_dyn] = ACTIONS(1111), + [sym_mutable_specifier] = ACTIONS(1113), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1177), + [sym_super] = ACTIONS(1179), + [sym_crate] = ACTIONS(1179), + [sym_metavariable] = ACTIONS(1181), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), + }, + [STATE(376)] = { + [sym_attribute_item] = STATE(1098), + [sym_attributes] = STATE(419), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_self_parameter] = STATE(2948), + [sym_variadic_parameter] = STATE(2948), + [sym_parameter] = STATE(2948), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2779), + [sym_bracketed_type] = STATE(3759), + [sym_lifetime] = STATE(2953), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3486), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2626), + [sym_scoped_identifier] = STATE(2263), + [sym_scoped_type_identifier] = STATE(2296), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2573), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), + [sym_line_comment] = STATE(376), + [sym_block_comment] = STATE(376), + [aux_sym_attributes_repeat1] = STATE(1097), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1053), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_RPAREN] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1065), + [anon_sym_i8] = ACTIONS(1065), + [anon_sym_u16] = ACTIONS(1065), + [anon_sym_i16] = ACTIONS(1065), + [anon_sym_u32] = ACTIONS(1065), + [anon_sym_i32] = ACTIONS(1065), + [anon_sym_u64] = ACTIONS(1065), + [anon_sym_i64] = ACTIONS(1065), + [anon_sym_u128] = ACTIONS(1065), + [anon_sym_i128] = ACTIONS(1065), + [anon_sym_isize] = ACTIONS(1065), + [anon_sym_usize] = ACTIONS(1065), + [anon_sym_f32] = ACTIONS(1065), + [anon_sym_f64] = ACTIONS(1065), + [anon_sym_bool] = ACTIONS(1065), + [anon_sym_str] = ACTIONS(1065), + [anon_sym_char] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1071), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1075), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1079), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COMMA] = ACTIONS(1255), + [anon_sym_COLON_COLON] = ACTIONS(1085), + [anon_sym_POUND] = ACTIONS(1087), + [anon_sym_SQUOTE] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_default] = ACTIONS(1095), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1101), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1101), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_ref] = ACTIONS(1109), + [anon_sym_dyn] = ACTIONS(1111), + [sym_mutable_specifier] = ACTIONS(1113), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1121), + [sym_super] = ACTIONS(1123), + [sym_crate] = ACTIONS(1123), + [sym_metavariable] = ACTIONS(1125), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), + }, + [STATE(377)] = { + [sym_line_comment] = STATE(377), + [sym_block_comment] = STATE(377), + [sym_identifier] = ACTIONS(1035), + [anon_sym_SEMI] = ACTIONS(1037), + [anon_sym_LPAREN] = ACTIONS(1037), + [anon_sym_RPAREN] = ACTIONS(1037), + [anon_sym_LBRACK] = ACTIONS(1037), + [anon_sym_RBRACK] = ACTIONS(1037), + [anon_sym_LBRACE] = ACTIONS(1037), + [anon_sym_RBRACE] = ACTIONS(1037), + [anon_sym_EQ_GT] = ACTIONS(1037), + [anon_sym_COLON] = ACTIONS(1035), + [anon_sym_DOLLAR] = ACTIONS(1035), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_STAR] = ACTIONS(1035), + [anon_sym_QMARK] = ACTIONS(1037), + [anon_sym_u8] = ACTIONS(1035), + [anon_sym_i8] = ACTIONS(1035), + [anon_sym_u16] = ACTIONS(1035), + [anon_sym_i16] = ACTIONS(1035), + [anon_sym_u32] = ACTIONS(1035), + [anon_sym_i32] = ACTIONS(1035), + [anon_sym_u64] = ACTIONS(1035), + [anon_sym_i64] = ACTIONS(1035), + [anon_sym_u128] = ACTIONS(1035), + [anon_sym_i128] = ACTIONS(1035), + [anon_sym_isize] = ACTIONS(1035), + [anon_sym_usize] = ACTIONS(1035), + [anon_sym_f32] = ACTIONS(1035), + [anon_sym_f64] = ACTIONS(1035), + [anon_sym_bool] = ACTIONS(1035), + [anon_sym_str] = ACTIONS(1035), + [anon_sym_char] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_SLASH] = ACTIONS(1035), + [anon_sym_PERCENT] = ACTIONS(1035), + [anon_sym_CARET] = ACTIONS(1035), + [anon_sym_BANG] = ACTIONS(1035), + [anon_sym_AMP] = ACTIONS(1035), + [anon_sym_PIPE] = ACTIONS(1035), + [anon_sym_AMP_AMP] = ACTIONS(1037), + [anon_sym_PIPE_PIPE] = ACTIONS(1037), + [anon_sym_LT_LT] = ACTIONS(1035), + [anon_sym_GT_GT] = ACTIONS(1035), + [anon_sym_PLUS_EQ] = ACTIONS(1037), + [anon_sym_DASH_EQ] = ACTIONS(1037), + [anon_sym_STAR_EQ] = ACTIONS(1037), + [anon_sym_SLASH_EQ] = ACTIONS(1037), + [anon_sym_PERCENT_EQ] = ACTIONS(1037), + [anon_sym_CARET_EQ] = ACTIONS(1037), + [anon_sym_AMP_EQ] = ACTIONS(1037), + [anon_sym_PIPE_EQ] = ACTIONS(1037), + [anon_sym_LT_LT_EQ] = ACTIONS(1037), + [anon_sym_GT_GT_EQ] = ACTIONS(1037), + [anon_sym_EQ] = ACTIONS(1035), + [anon_sym_EQ_EQ] = ACTIONS(1037), + [anon_sym_BANG_EQ] = ACTIONS(1037), + [anon_sym_GT] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1035), + [anon_sym_GT_EQ] = ACTIONS(1037), + [anon_sym_LT_EQ] = ACTIONS(1037), + [anon_sym_AT] = ACTIONS(1037), + [anon_sym__] = ACTIONS(1035), + [anon_sym_DOT] = ACTIONS(1035), + [anon_sym_DOT_DOT] = ACTIONS(1035), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1037), + [anon_sym_COMMA] = ACTIONS(1037), + [anon_sym_COLON_COLON] = ACTIONS(1037), + [anon_sym_DASH_GT] = ACTIONS(1037), + [anon_sym_POUND] = ACTIONS(1037), + [anon_sym_SQUOTE] = ACTIONS(1035), + [anon_sym_as] = ACTIONS(1035), + [anon_sym_async] = ACTIONS(1035), + [anon_sym_await] = ACTIONS(1035), + [anon_sym_break] = ACTIONS(1035), + [anon_sym_const] = ACTIONS(1035), + [anon_sym_continue] = ACTIONS(1035), + [anon_sym_default] = ACTIONS(1035), + [anon_sym_enum] = ACTIONS(1035), + [anon_sym_fn] = ACTIONS(1035), + [anon_sym_for] = ACTIONS(1035), + [anon_sym_gen] = ACTIONS(1035), + [anon_sym_if] = ACTIONS(1035), + [anon_sym_impl] = ACTIONS(1035), + [anon_sym_let] = ACTIONS(1035), + [anon_sym_loop] = ACTIONS(1035), + [anon_sym_match] = ACTIONS(1035), + [anon_sym_mod] = ACTIONS(1035), + [anon_sym_pub] = ACTIONS(1035), + [anon_sym_return] = ACTIONS(1035), + [anon_sym_static] = ACTIONS(1035), + [anon_sym_struct] = ACTIONS(1035), + [anon_sym_trait] = ACTIONS(1035), + [anon_sym_type] = ACTIONS(1035), + [anon_sym_union] = ACTIONS(1035), + [anon_sym_unsafe] = ACTIONS(1035), + [anon_sym_use] = ACTIONS(1035), + [anon_sym_where] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1035), + [sym_mutable_specifier] = ACTIONS(1035), + [sym_integer_literal] = ACTIONS(1037), + [aux_sym_string_literal_token1] = ACTIONS(1037), + [sym_char_literal] = ACTIONS(1037), + [anon_sym_true] = ACTIONS(1035), + [anon_sym_false] = ACTIONS(1035), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1035), + [sym_super] = ACTIONS(1035), + [sym_crate] = ACTIONS(1035), + [sym_metavariable] = ACTIONS(1037), + [sym__raw_string_literal_start] = ACTIONS(1037), + [sym_float_literal] = ACTIONS(1037), + }, + [STATE(378)] = { + [sym_line_comment] = STATE(378), + [sym_block_comment] = STATE(378), + [sym_identifier] = ACTIONS(1035), + [anon_sym_SEMI] = ACTIONS(1037), + [anon_sym_LPAREN] = ACTIONS(1037), + [anon_sym_RPAREN] = ACTIONS(1037), + [anon_sym_LBRACK] = ACTIONS(1037), + [anon_sym_RBRACK] = ACTIONS(1037), + [anon_sym_LBRACE] = ACTIONS(1037), + [anon_sym_RBRACE] = ACTIONS(1037), + [anon_sym_EQ_GT] = ACTIONS(1037), + [anon_sym_COLON] = ACTIONS(1257), + [anon_sym_DOLLAR] = ACTIONS(1035), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_STAR] = ACTIONS(1035), + [anon_sym_QMARK] = ACTIONS(1037), + [anon_sym_u8] = ACTIONS(1035), + [anon_sym_i8] = ACTIONS(1035), + [anon_sym_u16] = ACTIONS(1035), + [anon_sym_i16] = ACTIONS(1035), + [anon_sym_u32] = ACTIONS(1035), + [anon_sym_i32] = ACTIONS(1035), + [anon_sym_u64] = ACTIONS(1035), + [anon_sym_i64] = ACTIONS(1035), + [anon_sym_u128] = ACTIONS(1035), + [anon_sym_i128] = ACTIONS(1035), + [anon_sym_isize] = ACTIONS(1035), + [anon_sym_usize] = ACTIONS(1035), + [anon_sym_f32] = ACTIONS(1035), + [anon_sym_f64] = ACTIONS(1035), + [anon_sym_bool] = ACTIONS(1035), + [anon_sym_str] = ACTIONS(1035), + [anon_sym_char] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_SLASH] = ACTIONS(1035), + [anon_sym_PERCENT] = ACTIONS(1035), + [anon_sym_CARET] = ACTIONS(1035), + [anon_sym_BANG] = ACTIONS(1035), + [anon_sym_AMP] = ACTIONS(1035), + [anon_sym_PIPE] = ACTIONS(1035), + [anon_sym_AMP_AMP] = ACTIONS(1037), + [anon_sym_PIPE_PIPE] = ACTIONS(1037), + [anon_sym_LT_LT] = ACTIONS(1035), + [anon_sym_GT_GT] = ACTIONS(1035), + [anon_sym_PLUS_EQ] = ACTIONS(1037), + [anon_sym_DASH_EQ] = ACTIONS(1037), + [anon_sym_STAR_EQ] = ACTIONS(1037), + [anon_sym_SLASH_EQ] = ACTIONS(1037), + [anon_sym_PERCENT_EQ] = ACTIONS(1037), + [anon_sym_CARET_EQ] = ACTIONS(1037), + [anon_sym_AMP_EQ] = ACTIONS(1037), + [anon_sym_PIPE_EQ] = ACTIONS(1037), + [anon_sym_LT_LT_EQ] = ACTIONS(1037), + [anon_sym_GT_GT_EQ] = ACTIONS(1037), + [anon_sym_EQ] = ACTIONS(1035), + [anon_sym_EQ_EQ] = ACTIONS(1037), + [anon_sym_BANG_EQ] = ACTIONS(1037), + [anon_sym_GT] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1035), + [anon_sym_GT_EQ] = ACTIONS(1037), + [anon_sym_LT_EQ] = ACTIONS(1037), + [anon_sym_AT] = ACTIONS(1037), + [anon_sym__] = ACTIONS(1035), + [anon_sym_DOT] = ACTIONS(1035), + [anon_sym_DOT_DOT] = ACTIONS(1035), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1037), + [anon_sym_COMMA] = ACTIONS(1037), + [anon_sym_COLON_COLON] = ACTIONS(1037), + [anon_sym_DASH_GT] = ACTIONS(1037), + [anon_sym_POUND] = ACTIONS(1037), + [anon_sym_SQUOTE] = ACTIONS(1035), + [anon_sym_as] = ACTIONS(1035), + [anon_sym_async] = ACTIONS(1035), + [anon_sym_await] = ACTIONS(1035), + [anon_sym_break] = ACTIONS(1035), + [anon_sym_const] = ACTIONS(1035), + [anon_sym_continue] = ACTIONS(1035), + [anon_sym_default] = ACTIONS(1035), + [anon_sym_enum] = ACTIONS(1035), + [anon_sym_fn] = ACTIONS(1035), + [anon_sym_for] = ACTIONS(1035), + [anon_sym_gen] = ACTIONS(1035), + [anon_sym_if] = ACTIONS(1035), + [anon_sym_impl] = ACTIONS(1035), + [anon_sym_let] = ACTIONS(1035), + [anon_sym_loop] = ACTIONS(1035), + [anon_sym_match] = ACTIONS(1035), + [anon_sym_mod] = ACTIONS(1035), + [anon_sym_pub] = ACTIONS(1035), + [anon_sym_return] = ACTIONS(1035), + [anon_sym_static] = ACTIONS(1035), + [anon_sym_struct] = ACTIONS(1035), + [anon_sym_trait] = ACTIONS(1035), + [anon_sym_type] = ACTIONS(1035), + [anon_sym_union] = ACTIONS(1035), + [anon_sym_unsafe] = ACTIONS(1035), + [anon_sym_use] = ACTIONS(1035), + [anon_sym_where] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1035), + [sym_mutable_specifier] = ACTIONS(1035), + [sym_integer_literal] = ACTIONS(1037), + [aux_sym_string_literal_token1] = ACTIONS(1037), + [sym_char_literal] = ACTIONS(1037), + [anon_sym_true] = ACTIONS(1035), + [anon_sym_false] = ACTIONS(1035), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1035), + [sym_super] = ACTIONS(1035), + [sym_crate] = ACTIONS(1035), + [sym_metavariable] = ACTIONS(1037), + [sym__raw_string_literal_start] = ACTIONS(1037), + [sym_float_literal] = ACTIONS(1037), + }, + [STATE(379)] = { + [sym_line_comment] = STATE(379), + [sym_block_comment] = STATE(379), + [sym_identifier] = ACTIONS(1259), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_RPAREN] = ACTIONS(1261), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_RBRACK] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1261), + [anon_sym_EQ_GT] = ACTIONS(1261), + [anon_sym_COLON] = ACTIONS(1259), + [anon_sym_DOLLAR] = ACTIONS(1259), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_QMARK] = ACTIONS(1261), + [anon_sym_u8] = ACTIONS(1259), + [anon_sym_i8] = ACTIONS(1259), + [anon_sym_u16] = ACTIONS(1259), + [anon_sym_i16] = ACTIONS(1259), + [anon_sym_u32] = ACTIONS(1259), + [anon_sym_i32] = ACTIONS(1259), + [anon_sym_u64] = ACTIONS(1259), + [anon_sym_i64] = ACTIONS(1259), + [anon_sym_u128] = ACTIONS(1259), + [anon_sym_i128] = ACTIONS(1259), + [anon_sym_isize] = ACTIONS(1259), + [anon_sym_usize] = ACTIONS(1259), + [anon_sym_f32] = ACTIONS(1259), + [anon_sym_f64] = ACTIONS(1259), + [anon_sym_bool] = ACTIONS(1259), + [anon_sym_str] = ACTIONS(1259), + [anon_sym_char] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_SLASH] = ACTIONS(1259), + [anon_sym_PERCENT] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(1259), + [anon_sym_BANG] = ACTIONS(1259), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_PIPE] = ACTIONS(1259), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1259), + [anon_sym_GT_GT] = ACTIONS(1259), + [anon_sym_PLUS_EQ] = ACTIONS(1261), + [anon_sym_DASH_EQ] = ACTIONS(1261), + [anon_sym_STAR_EQ] = ACTIONS(1261), + [anon_sym_SLASH_EQ] = ACTIONS(1261), + [anon_sym_PERCENT_EQ] = ACTIONS(1261), + [anon_sym_CARET_EQ] = ACTIONS(1261), + [anon_sym_AMP_EQ] = ACTIONS(1261), + [anon_sym_PIPE_EQ] = ACTIONS(1261), + [anon_sym_LT_LT_EQ] = ACTIONS(1261), + [anon_sym_GT_GT_EQ] = ACTIONS(1261), + [anon_sym_EQ] = ACTIONS(1259), + [anon_sym_EQ_EQ] = ACTIONS(1261), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_GT] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(1259), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1261), + [anon_sym_AT] = ACTIONS(1261), + [anon_sym__] = ACTIONS(1259), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_DOT_DOT] = ACTIONS(1259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1261), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1261), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_COLON_COLON] = ACTIONS(1261), + [anon_sym_DASH_GT] = ACTIONS(1261), + [anon_sym_POUND] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(1259), + [anon_sym_as] = ACTIONS(1259), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_await] = ACTIONS(1259), + [anon_sym_break] = ACTIONS(1259), + [anon_sym_const] = ACTIONS(1259), + [anon_sym_continue] = ACTIONS(1259), + [anon_sym_default] = ACTIONS(1259), + [anon_sym_enum] = ACTIONS(1259), + [anon_sym_fn] = ACTIONS(1259), + [anon_sym_for] = ACTIONS(1259), + [anon_sym_gen] = ACTIONS(1259), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_impl] = ACTIONS(1259), + [anon_sym_let] = ACTIONS(1259), + [anon_sym_loop] = ACTIONS(1259), + [anon_sym_match] = ACTIONS(1259), + [anon_sym_mod] = ACTIONS(1259), + [anon_sym_pub] = ACTIONS(1259), + [anon_sym_return] = ACTIONS(1259), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_struct] = ACTIONS(1259), + [anon_sym_trait] = ACTIONS(1259), + [anon_sym_type] = ACTIONS(1259), + [anon_sym_union] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1259), + [anon_sym_use] = ACTIONS(1259), + [anon_sym_where] = ACTIONS(1259), + [anon_sym_while] = ACTIONS(1259), + [sym_mutable_specifier] = ACTIONS(1259), + [sym_integer_literal] = ACTIONS(1261), + [aux_sym_string_literal_token1] = ACTIONS(1261), + [sym_char_literal] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1259), + [anon_sym_false] = ACTIONS(1259), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1259), + [sym_super] = ACTIONS(1259), + [sym_crate] = ACTIONS(1259), + [sym_metavariable] = ACTIONS(1261), + [sym__raw_string_literal_start] = ACTIONS(1261), + [sym_float_literal] = ACTIONS(1261), + }, + [STATE(380)] = { + [sym_attribute_item] = STATE(1098), + [sym_attributes] = STATE(411), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_self_parameter] = STATE(3284), + [sym_variadic_parameter] = STATE(3284), + [sym_parameter] = STATE(3284), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2961), + [sym_bracketed_type] = STATE(3751), + [sym_lifetime] = STATE(2953), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2569), + [sym_scoped_identifier] = STATE(2379), + [sym_scoped_type_identifier] = STATE(2296), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(3286), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), + [sym_line_comment] = STATE(380), + [sym_block_comment] = STATE(380), + [aux_sym_attributes_repeat1] = STATE(1097), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1157), + [anon_sym_LPAREN] = ACTIONS(1159), + [anon_sym_RPAREN] = ACTIONS(1263), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1163), + [anon_sym_i8] = ACTIONS(1163), + [anon_sym_u16] = ACTIONS(1163), + [anon_sym_i16] = ACTIONS(1163), + [anon_sym_u32] = ACTIONS(1163), + [anon_sym_i32] = ACTIONS(1163), + [anon_sym_u64] = ACTIONS(1163), + [anon_sym_i64] = ACTIONS(1163), + [anon_sym_u128] = ACTIONS(1163), + [anon_sym_i128] = ACTIONS(1163), + [anon_sym_isize] = ACTIONS(1163), + [anon_sym_usize] = ACTIONS(1163), + [anon_sym_f32] = ACTIONS(1163), + [anon_sym_f64] = ACTIONS(1163), + [anon_sym_bool] = ACTIONS(1163), + [anon_sym_str] = ACTIONS(1163), + [anon_sym_char] = ACTIONS(1163), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1165), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1265), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1079), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(1087), + [anon_sym_SQUOTE] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_default] = ACTIONS(1173), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1175), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1175), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_ref] = ACTIONS(1109), + [anon_sym_dyn] = ACTIONS(1111), + [sym_mutable_specifier] = ACTIONS(1113), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1177), + [sym_super] = ACTIONS(1179), + [sym_crate] = ACTIONS(1179), + [sym_metavariable] = ACTIONS(1181), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), + }, + [STATE(381)] = { + [sym_attribute_item] = STATE(1098), + [sym_attributes] = STATE(411), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_self_parameter] = STATE(3284), + [sym_variadic_parameter] = STATE(3284), + [sym_parameter] = STATE(3284), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2961), + [sym_bracketed_type] = STATE(3751), + [sym_lifetime] = STATE(2953), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2569), + [sym_scoped_identifier] = STATE(2379), + [sym_scoped_type_identifier] = STATE(2296), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(3286), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), + [sym_line_comment] = STATE(381), + [sym_block_comment] = STATE(381), + [aux_sym_attributes_repeat1] = STATE(1097), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1157), + [anon_sym_LPAREN] = ACTIONS(1159), + [anon_sym_RPAREN] = ACTIONS(1267), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1163), + [anon_sym_i8] = ACTIONS(1163), + [anon_sym_u16] = ACTIONS(1163), + [anon_sym_i16] = ACTIONS(1163), + [anon_sym_u32] = ACTIONS(1163), + [anon_sym_i32] = ACTIONS(1163), + [anon_sym_u64] = ACTIONS(1163), + [anon_sym_i64] = ACTIONS(1163), + [anon_sym_u128] = ACTIONS(1163), + [anon_sym_i128] = ACTIONS(1163), + [anon_sym_isize] = ACTIONS(1163), + [anon_sym_usize] = ACTIONS(1163), + [anon_sym_f32] = ACTIONS(1163), + [anon_sym_f64] = ACTIONS(1163), + [anon_sym_bool] = ACTIONS(1163), + [anon_sym_str] = ACTIONS(1163), + [anon_sym_char] = ACTIONS(1163), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1165), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1265), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1079), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(1087), + [anon_sym_SQUOTE] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_default] = ACTIONS(1173), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1175), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1175), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_ref] = ACTIONS(1109), + [anon_sym_dyn] = ACTIONS(1111), + [sym_mutable_specifier] = ACTIONS(1113), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1177), + [sym_super] = ACTIONS(1179), + [sym_crate] = ACTIONS(1179), + [sym_metavariable] = ACTIONS(1181), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), + }, + [STATE(382)] = { + [sym_line_comment] = STATE(382), + [sym_block_comment] = STATE(382), + [sym_identifier] = ACTIONS(1207), + [anon_sym_SEMI] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_RPAREN] = ACTIONS(1209), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_RBRACK] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_EQ_GT] = ACTIONS(1209), + [anon_sym_COLON] = ACTIONS(1207), + [anon_sym_DOLLAR] = ACTIONS(1209), + [anon_sym_PLUS] = ACTIONS(1207), + [anon_sym_STAR] = ACTIONS(1207), + [anon_sym_QMARK] = ACTIONS(1209), + [anon_sym_u8] = ACTIONS(1207), + [anon_sym_i8] = ACTIONS(1207), + [anon_sym_u16] = ACTIONS(1207), + [anon_sym_i16] = ACTIONS(1207), + [anon_sym_u32] = ACTIONS(1207), + [anon_sym_i32] = ACTIONS(1207), + [anon_sym_u64] = ACTIONS(1207), + [anon_sym_i64] = ACTIONS(1207), + [anon_sym_u128] = ACTIONS(1207), + [anon_sym_i128] = ACTIONS(1207), + [anon_sym_isize] = ACTIONS(1207), + [anon_sym_usize] = ACTIONS(1207), + [anon_sym_f32] = ACTIONS(1207), + [anon_sym_f64] = ACTIONS(1207), + [anon_sym_bool] = ACTIONS(1207), + [anon_sym_str] = ACTIONS(1207), + [anon_sym_char] = ACTIONS(1207), + [anon_sym_DASH] = ACTIONS(1207), + [anon_sym_SLASH] = ACTIONS(1207), + [anon_sym_PERCENT] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_AMP] = ACTIONS(1207), + [anon_sym_PIPE] = ACTIONS(1207), + [anon_sym_AMP_AMP] = ACTIONS(1209), + [anon_sym_PIPE_PIPE] = ACTIONS(1209), + [anon_sym_LT_LT] = ACTIONS(1207), + [anon_sym_GT_GT] = ACTIONS(1207), + [anon_sym_PLUS_EQ] = ACTIONS(1209), + [anon_sym_DASH_EQ] = ACTIONS(1209), + [anon_sym_STAR_EQ] = ACTIONS(1209), + [anon_sym_SLASH_EQ] = ACTIONS(1209), + [anon_sym_PERCENT_EQ] = ACTIONS(1209), + [anon_sym_CARET_EQ] = ACTIONS(1209), + [anon_sym_AMP_EQ] = ACTIONS(1209), + [anon_sym_PIPE_EQ] = ACTIONS(1209), + [anon_sym_LT_LT_EQ] = ACTIONS(1209), + [anon_sym_GT_GT_EQ] = ACTIONS(1209), + [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_EQ_EQ] = ACTIONS(1209), + [anon_sym_BANG_EQ] = ACTIONS(1209), + [anon_sym_GT] = ACTIONS(1207), + [anon_sym_LT] = ACTIONS(1207), + [anon_sym_GT_EQ] = ACTIONS(1209), + [anon_sym_LT_EQ] = ACTIONS(1209), + [anon_sym_AT] = ACTIONS(1209), + [anon_sym__] = ACTIONS(1207), + [anon_sym_DOT] = ACTIONS(1207), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1209), + [anon_sym_COMMA] = ACTIONS(1209), + [anon_sym_COLON_COLON] = ACTIONS(1209), + [anon_sym_DASH_GT] = ACTIONS(1209), + [anon_sym_POUND] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1207), + [anon_sym_as] = ACTIONS(1207), + [anon_sym_async] = ACTIONS(1207), + [anon_sym_await] = ACTIONS(1207), + [anon_sym_break] = ACTIONS(1207), + [anon_sym_const] = ACTIONS(1207), + [anon_sym_continue] = ACTIONS(1207), + [anon_sym_default] = ACTIONS(1207), + [anon_sym_enum] = ACTIONS(1207), + [anon_sym_fn] = ACTIONS(1207), + [anon_sym_for] = ACTIONS(1207), + [anon_sym_gen] = ACTIONS(1207), + [anon_sym_if] = ACTIONS(1207), + [anon_sym_impl] = ACTIONS(1207), + [anon_sym_let] = ACTIONS(1207), + [anon_sym_loop] = ACTIONS(1207), + [anon_sym_match] = ACTIONS(1207), + [anon_sym_mod] = ACTIONS(1207), + [anon_sym_pub] = ACTIONS(1207), + [anon_sym_return] = ACTIONS(1207), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_trait] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1207), + [anon_sym_union] = ACTIONS(1207), + [anon_sym_unsafe] = ACTIONS(1207), + [anon_sym_use] = ACTIONS(1207), + [anon_sym_where] = ACTIONS(1207), + [anon_sym_while] = ACTIONS(1207), + [sym_mutable_specifier] = ACTIONS(1207), + [sym_integer_literal] = ACTIONS(1209), + [aux_sym_string_literal_token1] = ACTIONS(1209), + [sym_char_literal] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1207), + [anon_sym_false] = ACTIONS(1207), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1207), + [sym_super] = ACTIONS(1207), + [sym_crate] = ACTIONS(1207), + [sym__raw_string_literal_start] = ACTIONS(1209), + [sym_float_literal] = ACTIONS(1209), + }, + [STATE(383)] = { + [sym_line_comment] = STATE(383), + [sym_block_comment] = STATE(383), + [sym_identifier] = ACTIONS(1183), + [anon_sym_SEMI] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_RPAREN] = ACTIONS(1185), + [anon_sym_LBRACK] = ACTIONS(1185), + [anon_sym_RBRACK] = ACTIONS(1185), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_RBRACE] = ACTIONS(1185), + [anon_sym_EQ_GT] = ACTIONS(1185), + [anon_sym_COLON] = ACTIONS(1183), + [anon_sym_DOLLAR] = ACTIONS(1185), + [anon_sym_PLUS] = ACTIONS(1183), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_QMARK] = ACTIONS(1185), + [anon_sym_u8] = ACTIONS(1183), + [anon_sym_i8] = ACTIONS(1183), + [anon_sym_u16] = ACTIONS(1183), + [anon_sym_i16] = ACTIONS(1183), + [anon_sym_u32] = ACTIONS(1183), + [anon_sym_i32] = ACTIONS(1183), + [anon_sym_u64] = ACTIONS(1183), + [anon_sym_i64] = ACTIONS(1183), + [anon_sym_u128] = ACTIONS(1183), + [anon_sym_i128] = ACTIONS(1183), + [anon_sym_isize] = ACTIONS(1183), + [anon_sym_usize] = ACTIONS(1183), + [anon_sym_f32] = ACTIONS(1183), + [anon_sym_f64] = ACTIONS(1183), + [anon_sym_bool] = ACTIONS(1183), + [anon_sym_str] = ACTIONS(1183), + [anon_sym_char] = ACTIONS(1183), + [anon_sym_DASH] = ACTIONS(1183), + [anon_sym_SLASH] = ACTIONS(1183), + [anon_sym_PERCENT] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1183), + [anon_sym_BANG] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(1183), + [anon_sym_PIPE] = ACTIONS(1183), + [anon_sym_AMP_AMP] = ACTIONS(1185), + [anon_sym_PIPE_PIPE] = ACTIONS(1185), + [anon_sym_LT_LT] = ACTIONS(1183), + [anon_sym_GT_GT] = ACTIONS(1183), + [anon_sym_PLUS_EQ] = ACTIONS(1185), + [anon_sym_DASH_EQ] = ACTIONS(1185), + [anon_sym_STAR_EQ] = ACTIONS(1185), + [anon_sym_SLASH_EQ] = ACTIONS(1185), + [anon_sym_PERCENT_EQ] = ACTIONS(1185), + [anon_sym_CARET_EQ] = ACTIONS(1185), + [anon_sym_AMP_EQ] = ACTIONS(1185), + [anon_sym_PIPE_EQ] = ACTIONS(1185), + [anon_sym_LT_LT_EQ] = ACTIONS(1185), + [anon_sym_GT_GT_EQ] = ACTIONS(1185), + [anon_sym_EQ] = ACTIONS(1183), + [anon_sym_EQ_EQ] = ACTIONS(1185), + [anon_sym_BANG_EQ] = ACTIONS(1185), + [anon_sym_GT] = ACTIONS(1183), + [anon_sym_LT] = ACTIONS(1183), + [anon_sym_GT_EQ] = ACTIONS(1185), + [anon_sym_LT_EQ] = ACTIONS(1185), + [anon_sym_AT] = ACTIONS(1185), + [anon_sym__] = ACTIONS(1183), + [anon_sym_DOT] = ACTIONS(1183), + [anon_sym_DOT_DOT] = ACTIONS(1183), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1185), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1185), + [anon_sym_COMMA] = ACTIONS(1185), + [anon_sym_COLON_COLON] = ACTIONS(1185), + [anon_sym_DASH_GT] = ACTIONS(1185), + [anon_sym_POUND] = ACTIONS(1185), + [anon_sym_SQUOTE] = ACTIONS(1183), + [anon_sym_as] = ACTIONS(1183), + [anon_sym_async] = ACTIONS(1183), + [anon_sym_await] = ACTIONS(1183), + [anon_sym_break] = ACTIONS(1183), + [anon_sym_const] = ACTIONS(1183), + [anon_sym_continue] = ACTIONS(1183), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_enum] = ACTIONS(1183), + [anon_sym_fn] = ACTIONS(1183), + [anon_sym_for] = ACTIONS(1183), + [anon_sym_gen] = ACTIONS(1183), + [anon_sym_if] = ACTIONS(1183), + [anon_sym_impl] = ACTIONS(1183), + [anon_sym_let] = ACTIONS(1183), + [anon_sym_loop] = ACTIONS(1183), + [anon_sym_match] = ACTIONS(1183), + [anon_sym_mod] = ACTIONS(1183), + [anon_sym_pub] = ACTIONS(1183), + [anon_sym_return] = ACTIONS(1183), + [anon_sym_static] = ACTIONS(1183), + [anon_sym_struct] = ACTIONS(1183), + [anon_sym_trait] = ACTIONS(1183), + [anon_sym_type] = ACTIONS(1183), + [anon_sym_union] = ACTIONS(1183), + [anon_sym_unsafe] = ACTIONS(1183), + [anon_sym_use] = ACTIONS(1183), + [anon_sym_where] = ACTIONS(1183), + [anon_sym_while] = ACTIONS(1183), + [sym_mutable_specifier] = ACTIONS(1183), + [sym_integer_literal] = ACTIONS(1185), + [aux_sym_string_literal_token1] = ACTIONS(1185), + [sym_char_literal] = ACTIONS(1185), + [anon_sym_true] = ACTIONS(1183), + [anon_sym_false] = ACTIONS(1183), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1183), + [sym_super] = ACTIONS(1183), + [sym_crate] = ACTIONS(1183), + [sym__raw_string_literal_start] = ACTIONS(1185), + [sym_float_literal] = ACTIONS(1185), + }, + [STATE(384)] = { + [sym_line_comment] = STATE(384), + [sym_block_comment] = STATE(384), + [sym_identifier] = ACTIONS(1239), + [anon_sym_SEMI] = ACTIONS(1241), + [anon_sym_LPAREN] = ACTIONS(1241), + [anon_sym_RPAREN] = ACTIONS(1241), + [anon_sym_LBRACK] = ACTIONS(1241), + [anon_sym_RBRACK] = ACTIONS(1241), + [anon_sym_LBRACE] = ACTIONS(1241), + [anon_sym_RBRACE] = ACTIONS(1241), + [anon_sym_EQ_GT] = ACTIONS(1241), + [anon_sym_COLON] = ACTIONS(1239), + [anon_sym_DOLLAR] = ACTIONS(1241), + [anon_sym_PLUS] = ACTIONS(1239), + [anon_sym_STAR] = ACTIONS(1239), + [anon_sym_QMARK] = ACTIONS(1241), + [anon_sym_u8] = ACTIONS(1239), + [anon_sym_i8] = ACTIONS(1239), + [anon_sym_u16] = ACTIONS(1239), + [anon_sym_i16] = ACTIONS(1239), + [anon_sym_u32] = ACTIONS(1239), + [anon_sym_i32] = ACTIONS(1239), + [anon_sym_u64] = ACTIONS(1239), + [anon_sym_i64] = ACTIONS(1239), + [anon_sym_u128] = ACTIONS(1239), + [anon_sym_i128] = ACTIONS(1239), + [anon_sym_isize] = ACTIONS(1239), + [anon_sym_usize] = ACTIONS(1239), + [anon_sym_f32] = ACTIONS(1239), + [anon_sym_f64] = ACTIONS(1239), + [anon_sym_bool] = ACTIONS(1239), + [anon_sym_str] = ACTIONS(1239), + [anon_sym_char] = ACTIONS(1239), + [anon_sym_DASH] = ACTIONS(1239), + [anon_sym_SLASH] = ACTIONS(1239), + [anon_sym_PERCENT] = ACTIONS(1239), + [anon_sym_CARET] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_AMP] = ACTIONS(1239), + [anon_sym_PIPE] = ACTIONS(1239), + [anon_sym_AMP_AMP] = ACTIONS(1241), + [anon_sym_PIPE_PIPE] = ACTIONS(1241), + [anon_sym_LT_LT] = ACTIONS(1239), + [anon_sym_GT_GT] = ACTIONS(1239), + [anon_sym_PLUS_EQ] = ACTIONS(1241), + [anon_sym_DASH_EQ] = ACTIONS(1241), + [anon_sym_STAR_EQ] = ACTIONS(1241), + [anon_sym_SLASH_EQ] = ACTIONS(1241), + [anon_sym_PERCENT_EQ] = ACTIONS(1241), + [anon_sym_CARET_EQ] = ACTIONS(1241), + [anon_sym_AMP_EQ] = ACTIONS(1241), + [anon_sym_PIPE_EQ] = ACTIONS(1241), + [anon_sym_LT_LT_EQ] = ACTIONS(1241), + [anon_sym_GT_GT_EQ] = ACTIONS(1241), + [anon_sym_EQ] = ACTIONS(1239), + [anon_sym_EQ_EQ] = ACTIONS(1241), + [anon_sym_BANG_EQ] = ACTIONS(1241), + [anon_sym_GT] = ACTIONS(1239), + [anon_sym_LT] = ACTIONS(1239), + [anon_sym_GT_EQ] = ACTIONS(1241), + [anon_sym_LT_EQ] = ACTIONS(1241), + [anon_sym_AT] = ACTIONS(1241), + [anon_sym__] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1241), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1241), + [anon_sym_COMMA] = ACTIONS(1241), + [anon_sym_COLON_COLON] = ACTIONS(1241), + [anon_sym_DASH_GT] = ACTIONS(1241), + [anon_sym_POUND] = ACTIONS(1241), + [anon_sym_SQUOTE] = ACTIONS(1239), + [anon_sym_as] = ACTIONS(1239), + [anon_sym_async] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1239), + [anon_sym_break] = ACTIONS(1239), + [anon_sym_const] = ACTIONS(1239), + [anon_sym_continue] = ACTIONS(1239), + [anon_sym_default] = ACTIONS(1239), + [anon_sym_enum] = ACTIONS(1239), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1239), + [anon_sym_gen] = ACTIONS(1239), + [anon_sym_if] = ACTIONS(1239), + [anon_sym_impl] = ACTIONS(1239), + [anon_sym_let] = ACTIONS(1239), + [anon_sym_loop] = ACTIONS(1239), + [anon_sym_match] = ACTIONS(1239), + [anon_sym_mod] = ACTIONS(1239), + [anon_sym_pub] = ACTIONS(1239), + [anon_sym_return] = ACTIONS(1239), + [anon_sym_static] = ACTIONS(1239), + [anon_sym_struct] = ACTIONS(1239), + [anon_sym_trait] = ACTIONS(1239), + [anon_sym_type] = ACTIONS(1239), + [anon_sym_union] = ACTIONS(1239), + [anon_sym_unsafe] = ACTIONS(1239), + [anon_sym_use] = ACTIONS(1239), + [anon_sym_where] = ACTIONS(1239), + [anon_sym_while] = ACTIONS(1239), + [sym_mutable_specifier] = ACTIONS(1239), + [sym_integer_literal] = ACTIONS(1241), + [aux_sym_string_literal_token1] = ACTIONS(1241), + [sym_char_literal] = ACTIONS(1241), + [anon_sym_true] = ACTIONS(1239), + [anon_sym_false] = ACTIONS(1239), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1239), + [sym_super] = ACTIONS(1239), + [sym_crate] = ACTIONS(1239), + [sym__raw_string_literal_start] = ACTIONS(1241), + [sym_float_literal] = ACTIONS(1241), + }, + [STATE(385)] = { + [sym_line_comment] = STATE(385), + [sym_block_comment] = STATE(385), + [sym_identifier] = ACTIONS(1269), + [anon_sym_SEMI] = ACTIONS(1271), + [anon_sym_LPAREN] = ACTIONS(1271), + [anon_sym_RPAREN] = ACTIONS(1271), + [anon_sym_LBRACK] = ACTIONS(1271), + [anon_sym_RBRACK] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(1271), + [anon_sym_EQ_GT] = ACTIONS(1271), + [anon_sym_COLON] = ACTIONS(1269), + [anon_sym_DOLLAR] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(1269), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_u8] = ACTIONS(1269), + [anon_sym_i8] = ACTIONS(1269), + [anon_sym_u16] = ACTIONS(1269), + [anon_sym_i16] = ACTIONS(1269), + [anon_sym_u32] = ACTIONS(1269), + [anon_sym_i32] = ACTIONS(1269), + [anon_sym_u64] = ACTIONS(1269), + [anon_sym_i64] = ACTIONS(1269), + [anon_sym_u128] = ACTIONS(1269), + [anon_sym_i128] = ACTIONS(1269), + [anon_sym_isize] = ACTIONS(1269), + [anon_sym_usize] = ACTIONS(1269), + [anon_sym_f32] = ACTIONS(1269), + [anon_sym_f64] = ACTIONS(1269), + [anon_sym_bool] = ACTIONS(1269), + [anon_sym_str] = ACTIONS(1269), + [anon_sym_char] = ACTIONS(1269), + [anon_sym_DASH] = ACTIONS(1269), + [anon_sym_SLASH] = ACTIONS(1269), + [anon_sym_PERCENT] = ACTIONS(1269), + [anon_sym_CARET] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1269), + [anon_sym_AMP] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_AMP_AMP] = ACTIONS(1271), + [anon_sym_PIPE_PIPE] = ACTIONS(1271), + [anon_sym_LT_LT] = ACTIONS(1269), + [anon_sym_GT_GT] = ACTIONS(1269), + [anon_sym_PLUS_EQ] = ACTIONS(1271), + [anon_sym_DASH_EQ] = ACTIONS(1271), + [anon_sym_STAR_EQ] = ACTIONS(1271), + [anon_sym_SLASH_EQ] = ACTIONS(1271), + [anon_sym_PERCENT_EQ] = ACTIONS(1271), + [anon_sym_CARET_EQ] = ACTIONS(1271), + [anon_sym_AMP_EQ] = ACTIONS(1271), + [anon_sym_PIPE_EQ] = ACTIONS(1271), + [anon_sym_LT_LT_EQ] = ACTIONS(1271), + [anon_sym_GT_GT_EQ] = ACTIONS(1271), + [anon_sym_EQ] = ACTIONS(1269), + [anon_sym_EQ_EQ] = ACTIONS(1271), + [anon_sym_BANG_EQ] = ACTIONS(1271), + [anon_sym_GT] = ACTIONS(1269), + [anon_sym_LT] = ACTIONS(1269), + [anon_sym_GT_EQ] = ACTIONS(1271), + [anon_sym_LT_EQ] = ACTIONS(1271), + [anon_sym_AT] = ACTIONS(1271), + [anon_sym__] = ACTIONS(1269), + [anon_sym_DOT] = ACTIONS(1269), + [anon_sym_DOT_DOT] = ACTIONS(1269), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1271), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1271), + [anon_sym_COMMA] = ACTIONS(1271), + [anon_sym_COLON_COLON] = ACTIONS(1271), + [anon_sym_DASH_GT] = ACTIONS(1271), + [anon_sym_POUND] = ACTIONS(1271), + [anon_sym_SQUOTE] = ACTIONS(1269), + [anon_sym_as] = ACTIONS(1269), + [anon_sym_async] = ACTIONS(1269), + [anon_sym_await] = ACTIONS(1269), + [anon_sym_break] = ACTIONS(1269), + [anon_sym_const] = ACTIONS(1269), + [anon_sym_continue] = ACTIONS(1269), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_enum] = ACTIONS(1269), + [anon_sym_fn] = ACTIONS(1269), + [anon_sym_for] = ACTIONS(1269), + [anon_sym_gen] = ACTIONS(1269), + [anon_sym_if] = ACTIONS(1269), + [anon_sym_impl] = ACTIONS(1269), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_loop] = ACTIONS(1269), + [anon_sym_match] = ACTIONS(1269), + [anon_sym_mod] = ACTIONS(1269), + [anon_sym_pub] = ACTIONS(1269), + [anon_sym_return] = ACTIONS(1269), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1269), + [anon_sym_trait] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_union] = ACTIONS(1269), + [anon_sym_unsafe] = ACTIONS(1269), + [anon_sym_use] = ACTIONS(1269), + [anon_sym_where] = ACTIONS(1269), + [anon_sym_while] = ACTIONS(1269), + [sym_mutable_specifier] = ACTIONS(1269), + [sym_integer_literal] = ACTIONS(1271), + [aux_sym_string_literal_token1] = ACTIONS(1271), + [sym_char_literal] = ACTIONS(1271), + [anon_sym_true] = ACTIONS(1269), + [anon_sym_false] = ACTIONS(1269), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1269), + [sym_super] = ACTIONS(1269), + [sym_crate] = ACTIONS(1269), + [sym__raw_string_literal_start] = ACTIONS(1271), + [sym_float_literal] = ACTIONS(1271), + }, + [STATE(386)] = { + [sym_line_comment] = STATE(386), + [sym_block_comment] = STATE(386), + [sym_identifier] = ACTIONS(1273), + [anon_sym_SEMI] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_RPAREN] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1275), + [anon_sym_RBRACK] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(1275), + [anon_sym_RBRACE] = ACTIONS(1275), + [anon_sym_EQ_GT] = ACTIONS(1275), + [anon_sym_COLON] = ACTIONS(1273), + [anon_sym_DOLLAR] = ACTIONS(1275), + [anon_sym_PLUS] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(1273), + [anon_sym_QMARK] = ACTIONS(1275), + [anon_sym_u8] = ACTIONS(1273), + [anon_sym_i8] = ACTIONS(1273), + [anon_sym_u16] = ACTIONS(1273), + [anon_sym_i16] = ACTIONS(1273), + [anon_sym_u32] = ACTIONS(1273), + [anon_sym_i32] = ACTIONS(1273), + [anon_sym_u64] = ACTIONS(1273), + [anon_sym_i64] = ACTIONS(1273), + [anon_sym_u128] = ACTIONS(1273), + [anon_sym_i128] = ACTIONS(1273), + [anon_sym_isize] = ACTIONS(1273), + [anon_sym_usize] = ACTIONS(1273), + [anon_sym_f32] = ACTIONS(1273), + [anon_sym_f64] = ACTIONS(1273), + [anon_sym_bool] = ACTIONS(1273), + [anon_sym_str] = ACTIONS(1273), + [anon_sym_char] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1273), + [anon_sym_SLASH] = ACTIONS(1273), + [anon_sym_PERCENT] = ACTIONS(1273), + [anon_sym_CARET] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1273), + [anon_sym_PIPE] = ACTIONS(1273), + [anon_sym_AMP_AMP] = ACTIONS(1275), + [anon_sym_PIPE_PIPE] = ACTIONS(1275), + [anon_sym_LT_LT] = ACTIONS(1273), + [anon_sym_GT_GT] = ACTIONS(1273), + [anon_sym_PLUS_EQ] = ACTIONS(1275), + [anon_sym_DASH_EQ] = ACTIONS(1275), + [anon_sym_STAR_EQ] = ACTIONS(1275), + [anon_sym_SLASH_EQ] = ACTIONS(1275), + [anon_sym_PERCENT_EQ] = ACTIONS(1275), + [anon_sym_CARET_EQ] = ACTIONS(1275), + [anon_sym_AMP_EQ] = ACTIONS(1275), + [anon_sym_PIPE_EQ] = ACTIONS(1275), + [anon_sym_LT_LT_EQ] = ACTIONS(1275), + [anon_sym_GT_GT_EQ] = ACTIONS(1275), + [anon_sym_EQ] = ACTIONS(1273), + [anon_sym_EQ_EQ] = ACTIONS(1275), + [anon_sym_BANG_EQ] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(1273), + [anon_sym_GT_EQ] = ACTIONS(1275), + [anon_sym_LT_EQ] = ACTIONS(1275), + [anon_sym_AT] = ACTIONS(1275), + [anon_sym__] = ACTIONS(1273), + [anon_sym_DOT] = ACTIONS(1273), + [anon_sym_DOT_DOT] = ACTIONS(1273), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1275), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1275), + [anon_sym_COMMA] = ACTIONS(1275), + [anon_sym_COLON_COLON] = ACTIONS(1275), + [anon_sym_DASH_GT] = ACTIONS(1275), + [anon_sym_POUND] = ACTIONS(1275), + [anon_sym_SQUOTE] = ACTIONS(1273), + [anon_sym_as] = ACTIONS(1273), + [anon_sym_async] = ACTIONS(1273), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_break] = ACTIONS(1273), + [anon_sym_const] = ACTIONS(1273), + [anon_sym_continue] = ACTIONS(1273), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_enum] = ACTIONS(1273), + [anon_sym_fn] = ACTIONS(1273), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_gen] = ACTIONS(1273), + [anon_sym_if] = ACTIONS(1273), + [anon_sym_impl] = ACTIONS(1273), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_loop] = ACTIONS(1273), + [anon_sym_match] = ACTIONS(1273), + [anon_sym_mod] = ACTIONS(1273), + [anon_sym_pub] = ACTIONS(1273), + [anon_sym_return] = ACTIONS(1273), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_struct] = ACTIONS(1273), + [anon_sym_trait] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_union] = ACTIONS(1273), + [anon_sym_unsafe] = ACTIONS(1273), + [anon_sym_use] = ACTIONS(1273), + [anon_sym_where] = ACTIONS(1273), + [anon_sym_while] = ACTIONS(1273), + [sym_mutable_specifier] = ACTIONS(1273), + [sym_integer_literal] = ACTIONS(1275), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1275), + [anon_sym_true] = ACTIONS(1273), + [anon_sym_false] = ACTIONS(1273), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1273), + [sym_super] = ACTIONS(1273), + [sym_crate] = ACTIONS(1273), + [sym__raw_string_literal_start] = ACTIONS(1275), + [sym_float_literal] = ACTIONS(1275), + }, + [STATE(387)] = { + [sym_line_comment] = STATE(387), + [sym_block_comment] = STATE(387), + [sym_identifier] = ACTIONS(1211), + [anon_sym_SEMI] = ACTIONS(1213), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_RPAREN] = ACTIONS(1213), + [anon_sym_LBRACK] = ACTIONS(1213), + [anon_sym_RBRACK] = ACTIONS(1213), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_RBRACE] = ACTIONS(1213), + [anon_sym_EQ_GT] = ACTIONS(1213), + [anon_sym_COLON] = ACTIONS(1211), + [anon_sym_DOLLAR] = ACTIONS(1213), + [anon_sym_PLUS] = ACTIONS(1211), + [anon_sym_STAR] = ACTIONS(1211), + [anon_sym_QMARK] = ACTIONS(1213), + [anon_sym_u8] = ACTIONS(1211), + [anon_sym_i8] = ACTIONS(1211), + [anon_sym_u16] = ACTIONS(1211), + [anon_sym_i16] = ACTIONS(1211), + [anon_sym_u32] = ACTIONS(1211), + [anon_sym_i32] = ACTIONS(1211), + [anon_sym_u64] = ACTIONS(1211), + [anon_sym_i64] = ACTIONS(1211), + [anon_sym_u128] = ACTIONS(1211), + [anon_sym_i128] = ACTIONS(1211), + [anon_sym_isize] = ACTIONS(1211), + [anon_sym_usize] = ACTIONS(1211), + [anon_sym_f32] = ACTIONS(1211), + [anon_sym_f64] = ACTIONS(1211), + [anon_sym_bool] = ACTIONS(1211), + [anon_sym_str] = ACTIONS(1211), + [anon_sym_char] = ACTIONS(1211), + [anon_sym_DASH] = ACTIONS(1211), + [anon_sym_SLASH] = ACTIONS(1211), + [anon_sym_PERCENT] = ACTIONS(1211), + [anon_sym_CARET] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1211), + [anon_sym_PIPE] = ACTIONS(1211), + [anon_sym_AMP_AMP] = ACTIONS(1213), + [anon_sym_PIPE_PIPE] = ACTIONS(1213), + [anon_sym_LT_LT] = ACTIONS(1211), + [anon_sym_GT_GT] = ACTIONS(1211), + [anon_sym_PLUS_EQ] = ACTIONS(1213), + [anon_sym_DASH_EQ] = ACTIONS(1213), + [anon_sym_STAR_EQ] = ACTIONS(1213), + [anon_sym_SLASH_EQ] = ACTIONS(1213), + [anon_sym_PERCENT_EQ] = ACTIONS(1213), + [anon_sym_CARET_EQ] = ACTIONS(1213), + [anon_sym_AMP_EQ] = ACTIONS(1213), + [anon_sym_PIPE_EQ] = ACTIONS(1213), + [anon_sym_LT_LT_EQ] = ACTIONS(1213), + [anon_sym_GT_GT_EQ] = ACTIONS(1213), + [anon_sym_EQ] = ACTIONS(1211), + [anon_sym_EQ_EQ] = ACTIONS(1213), + [anon_sym_BANG_EQ] = ACTIONS(1213), + [anon_sym_GT] = ACTIONS(1211), + [anon_sym_LT] = ACTIONS(1211), + [anon_sym_GT_EQ] = ACTIONS(1213), + [anon_sym_LT_EQ] = ACTIONS(1213), + [anon_sym_AT] = ACTIONS(1213), + [anon_sym__] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1211), + [anon_sym_DOT_DOT] = ACTIONS(1211), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1213), + [anon_sym_COMMA] = ACTIONS(1213), + [anon_sym_COLON_COLON] = ACTIONS(1213), + [anon_sym_DASH_GT] = ACTIONS(1213), + [anon_sym_POUND] = ACTIONS(1213), + [anon_sym_SQUOTE] = ACTIONS(1211), + [anon_sym_as] = ACTIONS(1211), + [anon_sym_async] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1211), + [anon_sym_break] = ACTIONS(1211), + [anon_sym_const] = ACTIONS(1211), + [anon_sym_continue] = ACTIONS(1211), + [anon_sym_default] = ACTIONS(1211), + [anon_sym_enum] = ACTIONS(1211), + [anon_sym_fn] = ACTIONS(1211), + [anon_sym_for] = ACTIONS(1211), + [anon_sym_gen] = ACTIONS(1211), + [anon_sym_if] = ACTIONS(1211), + [anon_sym_impl] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(1211), + [anon_sym_loop] = ACTIONS(1211), + [anon_sym_match] = ACTIONS(1211), + [anon_sym_mod] = ACTIONS(1211), + [anon_sym_pub] = ACTIONS(1211), + [anon_sym_return] = ACTIONS(1211), + [anon_sym_static] = ACTIONS(1211), + [anon_sym_struct] = ACTIONS(1211), + [anon_sym_trait] = ACTIONS(1211), + [anon_sym_type] = ACTIONS(1211), + [anon_sym_union] = ACTIONS(1211), + [anon_sym_unsafe] = ACTIONS(1211), + [anon_sym_use] = ACTIONS(1211), + [anon_sym_where] = ACTIONS(1211), + [anon_sym_while] = ACTIONS(1211), + [sym_mutable_specifier] = ACTIONS(1211), + [sym_integer_literal] = ACTIONS(1213), + [aux_sym_string_literal_token1] = ACTIONS(1213), + [sym_char_literal] = ACTIONS(1213), + [anon_sym_true] = ACTIONS(1211), + [anon_sym_false] = ACTIONS(1211), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1211), + [sym_super] = ACTIONS(1211), + [sym_crate] = ACTIONS(1211), + [sym__raw_string_literal_start] = ACTIONS(1213), + [sym_float_literal] = ACTIONS(1213), + }, + [STATE(388)] = { + [sym_attribute_item] = STATE(1098), + [sym_attributes] = STATE(411), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_self_parameter] = STATE(3284), + [sym_variadic_parameter] = STATE(3284), + [sym_parameter] = STATE(3284), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2961), + [sym_bracketed_type] = STATE(3751), + [sym_lifetime] = STATE(2953), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2569), + [sym_scoped_identifier] = STATE(2379), + [sym_scoped_type_identifier] = STATE(2296), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(3286), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), + [sym_line_comment] = STATE(388), + [sym_block_comment] = STATE(388), + [aux_sym_attributes_repeat1] = STATE(1097), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1157), + [anon_sym_LPAREN] = ACTIONS(1159), + [anon_sym_RPAREN] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1163), + [anon_sym_i8] = ACTIONS(1163), + [anon_sym_u16] = ACTIONS(1163), + [anon_sym_i16] = ACTIONS(1163), + [anon_sym_u32] = ACTIONS(1163), + [anon_sym_i32] = ACTIONS(1163), + [anon_sym_u64] = ACTIONS(1163), + [anon_sym_i64] = ACTIONS(1163), + [anon_sym_u128] = ACTIONS(1163), + [anon_sym_i128] = ACTIONS(1163), + [anon_sym_isize] = ACTIONS(1163), + [anon_sym_usize] = ACTIONS(1163), + [anon_sym_f32] = ACTIONS(1163), + [anon_sym_f64] = ACTIONS(1163), + [anon_sym_bool] = ACTIONS(1163), + [anon_sym_str] = ACTIONS(1163), + [anon_sym_char] = ACTIONS(1163), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1165), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1265), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1079), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(1087), + [anon_sym_SQUOTE] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_default] = ACTIONS(1173), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1175), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1175), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_ref] = ACTIONS(1109), + [anon_sym_dyn] = ACTIONS(1111), + [sym_mutable_specifier] = ACTIONS(1113), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1177), + [sym_super] = ACTIONS(1179), + [sym_crate] = ACTIONS(1179), + [sym_metavariable] = ACTIONS(1181), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), + }, + [STATE(389)] = { + [sym_attribute_item] = STATE(1098), + [sym_attributes] = STATE(411), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_self_parameter] = STATE(3284), + [sym_variadic_parameter] = STATE(3284), + [sym_parameter] = STATE(3284), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2961), + [sym_bracketed_type] = STATE(3751), + [sym_lifetime] = STATE(2953), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2569), + [sym_scoped_identifier] = STATE(2379), + [sym_scoped_type_identifier] = STATE(2296), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(3286), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), + [sym_line_comment] = STATE(389), + [sym_block_comment] = STATE(389), + [aux_sym_attributes_repeat1] = STATE(1097), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1157), + [anon_sym_LPAREN] = ACTIONS(1159), + [anon_sym_RPAREN] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1163), + [anon_sym_i8] = ACTIONS(1163), + [anon_sym_u16] = ACTIONS(1163), + [anon_sym_i16] = ACTIONS(1163), + [anon_sym_u32] = ACTIONS(1163), + [anon_sym_i32] = ACTIONS(1163), + [anon_sym_u64] = ACTIONS(1163), + [anon_sym_i64] = ACTIONS(1163), + [anon_sym_u128] = ACTIONS(1163), + [anon_sym_i128] = ACTIONS(1163), + [anon_sym_isize] = ACTIONS(1163), + [anon_sym_usize] = ACTIONS(1163), + [anon_sym_f32] = ACTIONS(1163), + [anon_sym_f64] = ACTIONS(1163), + [anon_sym_bool] = ACTIONS(1163), + [anon_sym_str] = ACTIONS(1163), + [anon_sym_char] = ACTIONS(1163), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1165), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1265), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1079), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(1087), + [anon_sym_SQUOTE] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_default] = ACTIONS(1173), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1175), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1175), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_ref] = ACTIONS(1109), + [anon_sym_dyn] = ACTIONS(1111), + [sym_mutable_specifier] = ACTIONS(1113), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1177), + [sym_super] = ACTIONS(1179), + [sym_crate] = ACTIONS(1179), + [sym_metavariable] = ACTIONS(1181), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), + }, + [STATE(390)] = { + [sym_attribute_item] = STATE(1098), + [sym_attributes] = STATE(411), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_self_parameter] = STATE(3284), + [sym_variadic_parameter] = STATE(3284), + [sym_parameter] = STATE(3284), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2961), + [sym_bracketed_type] = STATE(3751), + [sym_lifetime] = STATE(2953), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2569), + [sym_scoped_identifier] = STATE(2379), + [sym_scoped_type_identifier] = STATE(2296), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(3286), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), + [sym_line_comment] = STATE(390), + [sym_block_comment] = STATE(390), + [aux_sym_attributes_repeat1] = STATE(1097), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1157), + [anon_sym_LPAREN] = ACTIONS(1159), + [anon_sym_RPAREN] = ACTIONS(1281), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1163), + [anon_sym_i8] = ACTIONS(1163), + [anon_sym_u16] = ACTIONS(1163), + [anon_sym_i16] = ACTIONS(1163), + [anon_sym_u32] = ACTIONS(1163), + [anon_sym_i32] = ACTIONS(1163), + [anon_sym_u64] = ACTIONS(1163), + [anon_sym_i64] = ACTIONS(1163), + [anon_sym_u128] = ACTIONS(1163), + [anon_sym_i128] = ACTIONS(1163), + [anon_sym_isize] = ACTIONS(1163), + [anon_sym_usize] = ACTIONS(1163), + [anon_sym_f32] = ACTIONS(1163), + [anon_sym_f64] = ACTIONS(1163), + [anon_sym_bool] = ACTIONS(1163), + [anon_sym_str] = ACTIONS(1163), + [anon_sym_char] = ACTIONS(1163), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1165), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1265), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1079), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(1087), + [anon_sym_SQUOTE] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_default] = ACTIONS(1173), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1175), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1175), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_ref] = ACTIONS(1109), + [anon_sym_dyn] = ACTIONS(1111), + [sym_mutable_specifier] = ACTIONS(1113), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1177), + [sym_super] = ACTIONS(1179), + [sym_crate] = ACTIONS(1179), + [sym_metavariable] = ACTIONS(1181), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), + }, + [STATE(391)] = { + [sym_attribute_item] = STATE(1098), + [sym_attributes] = STATE(411), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_self_parameter] = STATE(3284), + [sym_variadic_parameter] = STATE(3284), + [sym_parameter] = STATE(3284), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2961), + [sym_bracketed_type] = STATE(3751), + [sym_lifetime] = STATE(2953), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2569), + [sym_scoped_identifier] = STATE(2379), + [sym_scoped_type_identifier] = STATE(2296), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(3286), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), + [sym_line_comment] = STATE(391), + [sym_block_comment] = STATE(391), + [aux_sym_attributes_repeat1] = STATE(1097), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1157), + [anon_sym_LPAREN] = ACTIONS(1159), + [anon_sym_RPAREN] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1163), + [anon_sym_i8] = ACTIONS(1163), + [anon_sym_u16] = ACTIONS(1163), + [anon_sym_i16] = ACTIONS(1163), + [anon_sym_u32] = ACTIONS(1163), + [anon_sym_i32] = ACTIONS(1163), + [anon_sym_u64] = ACTIONS(1163), + [anon_sym_i64] = ACTIONS(1163), + [anon_sym_u128] = ACTIONS(1163), + [anon_sym_i128] = ACTIONS(1163), + [anon_sym_isize] = ACTIONS(1163), + [anon_sym_usize] = ACTIONS(1163), + [anon_sym_f32] = ACTIONS(1163), + [anon_sym_f64] = ACTIONS(1163), + [anon_sym_bool] = ACTIONS(1163), + [anon_sym_str] = ACTIONS(1163), + [anon_sym_char] = ACTIONS(1163), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1165), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1265), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1079), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(1087), + [anon_sym_SQUOTE] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_default] = ACTIONS(1173), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1175), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1175), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_ref] = ACTIONS(1109), + [anon_sym_dyn] = ACTIONS(1111), + [sym_mutable_specifier] = ACTIONS(1113), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1177), + [sym_super] = ACTIONS(1179), + [sym_crate] = ACTIONS(1179), + [sym_metavariable] = ACTIONS(1181), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), + }, + [STATE(392)] = { + [sym_line_comment] = STATE(392), + [sym_block_comment] = STATE(392), + [sym_identifier] = ACTIONS(1225), + [anon_sym_SEMI] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1227), + [anon_sym_RPAREN] = ACTIONS(1227), + [anon_sym_LBRACK] = ACTIONS(1227), + [anon_sym_RBRACK] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(1227), + [anon_sym_RBRACE] = ACTIONS(1227), + [anon_sym_EQ_GT] = ACTIONS(1227), + [anon_sym_COLON] = ACTIONS(1225), + [anon_sym_DOLLAR] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_STAR] = ACTIONS(1225), + [anon_sym_QMARK] = ACTIONS(1227), + [anon_sym_u8] = ACTIONS(1225), + [anon_sym_i8] = ACTIONS(1225), + [anon_sym_u16] = ACTIONS(1225), + [anon_sym_i16] = ACTIONS(1225), + [anon_sym_u32] = ACTIONS(1225), + [anon_sym_i32] = ACTIONS(1225), + [anon_sym_u64] = ACTIONS(1225), + [anon_sym_i64] = ACTIONS(1225), + [anon_sym_u128] = ACTIONS(1225), + [anon_sym_i128] = ACTIONS(1225), + [anon_sym_isize] = ACTIONS(1225), + [anon_sym_usize] = ACTIONS(1225), + [anon_sym_f32] = ACTIONS(1225), + [anon_sym_f64] = ACTIONS(1225), + [anon_sym_bool] = ACTIONS(1225), + [anon_sym_str] = ACTIONS(1225), + [anon_sym_char] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(1225), + [anon_sym_PERCENT] = ACTIONS(1225), + [anon_sym_CARET] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1225), + [anon_sym_PIPE] = ACTIONS(1225), + [anon_sym_AMP_AMP] = ACTIONS(1227), + [anon_sym_PIPE_PIPE] = ACTIONS(1227), + [anon_sym_LT_LT] = ACTIONS(1225), + [anon_sym_GT_GT] = ACTIONS(1225), + [anon_sym_PLUS_EQ] = ACTIONS(1227), + [anon_sym_DASH_EQ] = ACTIONS(1227), + [anon_sym_STAR_EQ] = ACTIONS(1227), + [anon_sym_SLASH_EQ] = ACTIONS(1227), + [anon_sym_PERCENT_EQ] = ACTIONS(1227), + [anon_sym_CARET_EQ] = ACTIONS(1227), + [anon_sym_AMP_EQ] = ACTIONS(1227), + [anon_sym_PIPE_EQ] = ACTIONS(1227), + [anon_sym_LT_LT_EQ] = ACTIONS(1227), + [anon_sym_GT_GT_EQ] = ACTIONS(1227), + [anon_sym_EQ] = ACTIONS(1225), + [anon_sym_EQ_EQ] = ACTIONS(1227), + [anon_sym_BANG_EQ] = ACTIONS(1227), + [anon_sym_GT] = ACTIONS(1225), + [anon_sym_LT] = ACTIONS(1225), + [anon_sym_GT_EQ] = ACTIONS(1227), + [anon_sym_LT_EQ] = ACTIONS(1227), + [anon_sym_AT] = ACTIONS(1227), + [anon_sym__] = ACTIONS(1225), + [anon_sym_DOT] = ACTIONS(1225), + [anon_sym_DOT_DOT] = ACTIONS(1225), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1227), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1227), + [anon_sym_COMMA] = ACTIONS(1227), + [anon_sym_COLON_COLON] = ACTIONS(1227), + [anon_sym_DASH_GT] = ACTIONS(1227), + [anon_sym_POUND] = ACTIONS(1227), + [anon_sym_SQUOTE] = ACTIONS(1225), + [anon_sym_as] = ACTIONS(1225), + [anon_sym_async] = ACTIONS(1225), + [anon_sym_await] = ACTIONS(1225), + [anon_sym_break] = ACTIONS(1225), + [anon_sym_const] = ACTIONS(1225), + [anon_sym_continue] = ACTIONS(1225), + [anon_sym_default] = ACTIONS(1225), + [anon_sym_enum] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1225), + [anon_sym_for] = ACTIONS(1225), + [anon_sym_gen] = ACTIONS(1225), + [anon_sym_if] = ACTIONS(1225), + [anon_sym_impl] = ACTIONS(1225), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_loop] = ACTIONS(1225), + [anon_sym_match] = ACTIONS(1225), + [anon_sym_mod] = ACTIONS(1225), + [anon_sym_pub] = ACTIONS(1225), + [anon_sym_return] = ACTIONS(1225), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_struct] = ACTIONS(1225), + [anon_sym_trait] = ACTIONS(1225), + [anon_sym_type] = ACTIONS(1225), + [anon_sym_union] = ACTIONS(1225), + [anon_sym_unsafe] = ACTIONS(1225), + [anon_sym_use] = ACTIONS(1225), + [anon_sym_where] = ACTIONS(1225), + [anon_sym_while] = ACTIONS(1225), + [sym_mutable_specifier] = ACTIONS(1225), + [sym_integer_literal] = ACTIONS(1227), + [aux_sym_string_literal_token1] = ACTIONS(1227), + [sym_char_literal] = ACTIONS(1227), + [anon_sym_true] = ACTIONS(1225), + [anon_sym_false] = ACTIONS(1225), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1225), + [sym_super] = ACTIONS(1225), + [sym_crate] = ACTIONS(1225), + [sym__raw_string_literal_start] = ACTIONS(1227), + [sym_float_literal] = ACTIONS(1227), + }, + [STATE(393)] = { + [sym_attribute_item] = STATE(1098), + [sym_attributes] = STATE(411), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_self_parameter] = STATE(3284), + [sym_variadic_parameter] = STATE(3284), + [sym_parameter] = STATE(3284), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2961), + [sym_bracketed_type] = STATE(3751), + [sym_lifetime] = STATE(2953), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2569), + [sym_scoped_identifier] = STATE(2379), + [sym_scoped_type_identifier] = STATE(2296), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(3286), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), + [sym_line_comment] = STATE(393), + [sym_block_comment] = STATE(393), + [aux_sym_attributes_repeat1] = STATE(1097), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1157), + [anon_sym_LPAREN] = ACTIONS(1159), + [anon_sym_RPAREN] = ACTIONS(1285), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1163), + [anon_sym_i8] = ACTIONS(1163), + [anon_sym_u16] = ACTIONS(1163), + [anon_sym_i16] = ACTIONS(1163), + [anon_sym_u32] = ACTIONS(1163), + [anon_sym_i32] = ACTIONS(1163), + [anon_sym_u64] = ACTIONS(1163), + [anon_sym_i64] = ACTIONS(1163), + [anon_sym_u128] = ACTIONS(1163), + [anon_sym_i128] = ACTIONS(1163), + [anon_sym_isize] = ACTIONS(1163), + [anon_sym_usize] = ACTIONS(1163), + [anon_sym_f32] = ACTIONS(1163), + [anon_sym_f64] = ACTIONS(1163), + [anon_sym_bool] = ACTIONS(1163), + [anon_sym_str] = ACTIONS(1163), + [anon_sym_char] = ACTIONS(1163), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1165), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1265), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1079), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(1087), + [anon_sym_SQUOTE] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_default] = ACTIONS(1173), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1175), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1175), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_ref] = ACTIONS(1109), + [anon_sym_dyn] = ACTIONS(1111), + [sym_mutable_specifier] = ACTIONS(1113), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1177), + [sym_super] = ACTIONS(1179), + [sym_crate] = ACTIONS(1179), + [sym_metavariable] = ACTIONS(1181), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), + }, + [STATE(394)] = { + [sym_line_comment] = STATE(394), + [sym_block_comment] = STATE(394), + [sym_identifier] = ACTIONS(1229), + [anon_sym_SEMI] = ACTIONS(1231), + [anon_sym_LPAREN] = ACTIONS(1231), + [anon_sym_RPAREN] = ACTIONS(1231), + [anon_sym_LBRACK] = ACTIONS(1231), + [anon_sym_RBRACK] = ACTIONS(1231), + [anon_sym_LBRACE] = ACTIONS(1231), + [anon_sym_RBRACE] = ACTIONS(1231), + [anon_sym_EQ_GT] = ACTIONS(1231), + [anon_sym_COLON] = ACTIONS(1229), + [anon_sym_DOLLAR] = ACTIONS(1231), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_QMARK] = ACTIONS(1231), + [anon_sym_u8] = ACTIONS(1229), + [anon_sym_i8] = ACTIONS(1229), + [anon_sym_u16] = ACTIONS(1229), + [anon_sym_i16] = ACTIONS(1229), + [anon_sym_u32] = ACTIONS(1229), + [anon_sym_i32] = ACTIONS(1229), + [anon_sym_u64] = ACTIONS(1229), + [anon_sym_i64] = ACTIONS(1229), + [anon_sym_u128] = ACTIONS(1229), + [anon_sym_i128] = ACTIONS(1229), + [anon_sym_isize] = ACTIONS(1229), + [anon_sym_usize] = ACTIONS(1229), + [anon_sym_f32] = ACTIONS(1229), + [anon_sym_f64] = ACTIONS(1229), + [anon_sym_bool] = ACTIONS(1229), + [anon_sym_str] = ACTIONS(1229), + [anon_sym_char] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1229), + [anon_sym_PERCENT] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1229), + [anon_sym_PIPE] = ACTIONS(1229), + [anon_sym_AMP_AMP] = ACTIONS(1231), + [anon_sym_PIPE_PIPE] = ACTIONS(1231), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1229), + [anon_sym_PLUS_EQ] = ACTIONS(1231), + [anon_sym_DASH_EQ] = ACTIONS(1231), + [anon_sym_STAR_EQ] = ACTIONS(1231), + [anon_sym_SLASH_EQ] = ACTIONS(1231), + [anon_sym_PERCENT_EQ] = ACTIONS(1231), + [anon_sym_CARET_EQ] = ACTIONS(1231), + [anon_sym_AMP_EQ] = ACTIONS(1231), + [anon_sym_PIPE_EQ] = ACTIONS(1231), + [anon_sym_LT_LT_EQ] = ACTIONS(1231), + [anon_sym_GT_GT_EQ] = ACTIONS(1231), + [anon_sym_EQ] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1231), + [anon_sym_BANG_EQ] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1229), + [anon_sym_LT] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1231), + [anon_sym_LT_EQ] = ACTIONS(1231), + [anon_sym_AT] = ACTIONS(1231), + [anon_sym__] = ACTIONS(1229), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_DOT_DOT] = ACTIONS(1229), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1231), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1231), + [anon_sym_COMMA] = ACTIONS(1231), + [anon_sym_COLON_COLON] = ACTIONS(1231), + [anon_sym_DASH_GT] = ACTIONS(1231), + [anon_sym_POUND] = ACTIONS(1231), + [anon_sym_SQUOTE] = ACTIONS(1229), + [anon_sym_as] = ACTIONS(1229), + [anon_sym_async] = ACTIONS(1229), + [anon_sym_await] = ACTIONS(1229), + [anon_sym_break] = ACTIONS(1229), + [anon_sym_const] = ACTIONS(1229), + [anon_sym_continue] = ACTIONS(1229), + [anon_sym_default] = ACTIONS(1229), + [anon_sym_enum] = ACTIONS(1229), + [anon_sym_fn] = ACTIONS(1229), + [anon_sym_for] = ACTIONS(1229), + [anon_sym_gen] = ACTIONS(1229), + [anon_sym_if] = ACTIONS(1229), + [anon_sym_impl] = ACTIONS(1229), + [anon_sym_let] = ACTIONS(1229), + [anon_sym_loop] = ACTIONS(1229), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_mod] = ACTIONS(1229), + [anon_sym_pub] = ACTIONS(1229), + [anon_sym_return] = ACTIONS(1229), + [anon_sym_static] = ACTIONS(1229), + [anon_sym_struct] = ACTIONS(1229), + [anon_sym_trait] = ACTIONS(1229), + [anon_sym_type] = ACTIONS(1229), + [anon_sym_union] = ACTIONS(1229), + [anon_sym_unsafe] = ACTIONS(1229), + [anon_sym_use] = ACTIONS(1229), + [anon_sym_where] = ACTIONS(1229), + [anon_sym_while] = ACTIONS(1229), + [sym_mutable_specifier] = ACTIONS(1229), + [sym_integer_literal] = ACTIONS(1231), + [aux_sym_string_literal_token1] = ACTIONS(1231), + [sym_char_literal] = ACTIONS(1231), + [anon_sym_true] = ACTIONS(1229), + [anon_sym_false] = ACTIONS(1229), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1229), + [sym_super] = ACTIONS(1229), + [sym_crate] = ACTIONS(1229), + [sym__raw_string_literal_start] = ACTIONS(1231), + [sym_float_literal] = ACTIONS(1231), }, [STATE(395)] = { + [sym_attribute_item] = STATE(1098), + [sym_attributes] = STATE(411), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_self_parameter] = STATE(3284), + [sym_variadic_parameter] = STATE(3284), + [sym_parameter] = STATE(3284), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2961), + [sym_bracketed_type] = STATE(3751), + [sym_lifetime] = STATE(2953), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2569), + [sym_scoped_identifier] = STATE(2379), + [sym_scoped_type_identifier] = STATE(2296), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(3286), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(395), [sym_block_comment] = STATE(395), - [ts_builtin_sym_end] = ACTIONS(1437), - [sym_identifier] = ACTIONS(1439), - [anon_sym_SEMI] = ACTIONS(1437), - [anon_sym_macro_rules_BANG] = ACTIONS(1437), - [anon_sym_LPAREN] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1437), - [anon_sym_LBRACE] = ACTIONS(1437), - [anon_sym_RBRACE] = ACTIONS(1437), - [anon_sym_PLUS] = ACTIONS(1439), - [anon_sym_STAR] = ACTIONS(1439), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_u8] = ACTIONS(1439), - [anon_sym_i8] = ACTIONS(1439), - [anon_sym_u16] = ACTIONS(1439), - [anon_sym_i16] = ACTIONS(1439), - [anon_sym_u32] = ACTIONS(1439), - [anon_sym_i32] = ACTIONS(1439), - [anon_sym_u64] = ACTIONS(1439), - [anon_sym_i64] = ACTIONS(1439), - [anon_sym_u128] = ACTIONS(1439), - [anon_sym_i128] = ACTIONS(1439), - [anon_sym_isize] = ACTIONS(1439), - [anon_sym_usize] = ACTIONS(1439), - [anon_sym_f32] = ACTIONS(1439), - [anon_sym_f64] = ACTIONS(1439), - [anon_sym_bool] = ACTIONS(1439), - [anon_sym_str] = ACTIONS(1439), - [anon_sym_char] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1439), - [anon_sym_SLASH] = ACTIONS(1439), - [anon_sym_PERCENT] = ACTIONS(1439), - [anon_sym_CARET] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1439), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_PIPE] = ACTIONS(1439), - [anon_sym_AMP_AMP] = ACTIONS(1437), - [anon_sym_PIPE_PIPE] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1439), - [anon_sym_GT_GT] = ACTIONS(1439), - [anon_sym_PLUS_EQ] = ACTIONS(1437), - [anon_sym_DASH_EQ] = ACTIONS(1437), - [anon_sym_STAR_EQ] = ACTIONS(1437), - [anon_sym_SLASH_EQ] = ACTIONS(1437), - [anon_sym_PERCENT_EQ] = ACTIONS(1437), - [anon_sym_CARET_EQ] = ACTIONS(1437), - [anon_sym_AMP_EQ] = ACTIONS(1437), - [anon_sym_PIPE_EQ] = ACTIONS(1437), - [anon_sym_LT_LT_EQ] = ACTIONS(1437), - [anon_sym_GT_GT_EQ] = ACTIONS(1437), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_EQ_EQ] = ACTIONS(1437), - [anon_sym_BANG_EQ] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1439), - [anon_sym_LT] = ACTIONS(1439), - [anon_sym_GT_EQ] = ACTIONS(1437), - [anon_sym_LT_EQ] = ACTIONS(1437), - [anon_sym_DOT] = ACTIONS(1439), - [anon_sym_DOT_DOT] = ACTIONS(1439), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1437), - [anon_sym_COLON_COLON] = ACTIONS(1437), - [anon_sym_POUND] = ACTIONS(1437), - [anon_sym_SQUOTE] = ACTIONS(1439), - [anon_sym_as] = ACTIONS(1439), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_break] = ACTIONS(1439), - [anon_sym_const] = ACTIONS(1439), - [anon_sym_continue] = ACTIONS(1439), - [anon_sym_default] = ACTIONS(1439), - [anon_sym_enum] = ACTIONS(1439), - [anon_sym_fn] = ACTIONS(1439), - [anon_sym_for] = ACTIONS(1439), - [anon_sym_gen] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1439), - [anon_sym_impl] = ACTIONS(1439), - [anon_sym_let] = ACTIONS(1439), - [anon_sym_loop] = ACTIONS(1439), - [anon_sym_match] = ACTIONS(1439), - [anon_sym_mod] = ACTIONS(1439), - [anon_sym_pub] = ACTIONS(1439), - [anon_sym_return] = ACTIONS(1439), - [anon_sym_static] = ACTIONS(1439), - [anon_sym_struct] = ACTIONS(1439), - [anon_sym_trait] = ACTIONS(1439), - [anon_sym_type] = ACTIONS(1439), - [anon_sym_union] = ACTIONS(1439), - [anon_sym_unsafe] = ACTIONS(1439), - [anon_sym_use] = ACTIONS(1439), - [anon_sym_while] = ACTIONS(1439), - [anon_sym_extern] = ACTIONS(1439), - [anon_sym_else] = ACTIONS(1439), - [anon_sym_yield] = ACTIONS(1439), - [anon_sym_move] = ACTIONS(1439), - [anon_sym_try] = ACTIONS(1439), - [sym_integer_literal] = ACTIONS(1437), - [aux_sym_string_literal_token1] = ACTIONS(1437), - [sym_char_literal] = ACTIONS(1437), - [anon_sym_true] = ACTIONS(1439), - [anon_sym_false] = ACTIONS(1439), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1439), - [sym_super] = ACTIONS(1439), - [sym_crate] = ACTIONS(1439), - [sym_metavariable] = ACTIONS(1437), - [sym__raw_string_literal_start] = ACTIONS(1437), - [sym_float_literal] = ACTIONS(1437), + [aux_sym_attributes_repeat1] = STATE(1097), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1157), + [anon_sym_LPAREN] = ACTIONS(1159), + [anon_sym_RPAREN] = ACTIONS(1287), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1163), + [anon_sym_i8] = ACTIONS(1163), + [anon_sym_u16] = ACTIONS(1163), + [anon_sym_i16] = ACTIONS(1163), + [anon_sym_u32] = ACTIONS(1163), + [anon_sym_i32] = ACTIONS(1163), + [anon_sym_u64] = ACTIONS(1163), + [anon_sym_i64] = ACTIONS(1163), + [anon_sym_u128] = ACTIONS(1163), + [anon_sym_i128] = ACTIONS(1163), + [anon_sym_isize] = ACTIONS(1163), + [anon_sym_usize] = ACTIONS(1163), + [anon_sym_f32] = ACTIONS(1163), + [anon_sym_f64] = ACTIONS(1163), + [anon_sym_bool] = ACTIONS(1163), + [anon_sym_str] = ACTIONS(1163), + [anon_sym_char] = ACTIONS(1163), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1165), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1265), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1079), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(1087), + [anon_sym_SQUOTE] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_default] = ACTIONS(1173), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1175), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1175), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_ref] = ACTIONS(1109), + [anon_sym_dyn] = ACTIONS(1111), + [sym_mutable_specifier] = ACTIONS(1113), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1177), + [sym_super] = ACTIONS(1179), + [sym_crate] = ACTIONS(1179), + [sym_metavariable] = ACTIONS(1181), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(396)] = { + [sym_attribute_item] = STATE(1098), + [sym_attributes] = STATE(411), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_self_parameter] = STATE(3284), + [sym_variadic_parameter] = STATE(3284), + [sym_parameter] = STATE(3284), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2961), + [sym_bracketed_type] = STATE(3751), + [sym_lifetime] = STATE(2953), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2569), + [sym_scoped_identifier] = STATE(2379), + [sym_scoped_type_identifier] = STATE(2296), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(3286), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(396), [sym_block_comment] = STATE(396), - [ts_builtin_sym_end] = ACTIONS(1441), - [sym_identifier] = ACTIONS(1443), - [anon_sym_SEMI] = ACTIONS(1441), - [anon_sym_macro_rules_BANG] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1441), - [anon_sym_LBRACE] = ACTIONS(1441), - [anon_sym_RBRACE] = ACTIONS(1441), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1441), - [anon_sym_u8] = ACTIONS(1443), - [anon_sym_i8] = ACTIONS(1443), - [anon_sym_u16] = ACTIONS(1443), - [anon_sym_i16] = ACTIONS(1443), - [anon_sym_u32] = ACTIONS(1443), - [anon_sym_i32] = ACTIONS(1443), - [anon_sym_u64] = ACTIONS(1443), - [anon_sym_i64] = ACTIONS(1443), - [anon_sym_u128] = ACTIONS(1443), - [anon_sym_i128] = ACTIONS(1443), - [anon_sym_isize] = ACTIONS(1443), - [anon_sym_usize] = ACTIONS(1443), - [anon_sym_f32] = ACTIONS(1443), - [anon_sym_f64] = ACTIONS(1443), - [anon_sym_bool] = ACTIONS(1443), - [anon_sym_str] = ACTIONS(1443), - [anon_sym_char] = ACTIONS(1443), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_SLASH] = ACTIONS(1443), - [anon_sym_PERCENT] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(1443), - [anon_sym_BANG] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1443), - [anon_sym_PIPE] = ACTIONS(1443), - [anon_sym_AMP_AMP] = ACTIONS(1441), - [anon_sym_PIPE_PIPE] = ACTIONS(1441), - [anon_sym_LT_LT] = ACTIONS(1443), - [anon_sym_GT_GT] = ACTIONS(1443), - [anon_sym_PLUS_EQ] = ACTIONS(1441), - [anon_sym_DASH_EQ] = ACTIONS(1441), - [anon_sym_STAR_EQ] = ACTIONS(1441), - [anon_sym_SLASH_EQ] = ACTIONS(1441), - [anon_sym_PERCENT_EQ] = ACTIONS(1441), - [anon_sym_CARET_EQ] = ACTIONS(1441), - [anon_sym_AMP_EQ] = ACTIONS(1441), - [anon_sym_PIPE_EQ] = ACTIONS(1441), - [anon_sym_LT_LT_EQ] = ACTIONS(1441), - [anon_sym_GT_GT_EQ] = ACTIONS(1441), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_EQ_EQ] = ACTIONS(1441), - [anon_sym_BANG_EQ] = ACTIONS(1441), - [anon_sym_GT] = ACTIONS(1443), - [anon_sym_LT] = ACTIONS(1443), - [anon_sym_GT_EQ] = ACTIONS(1441), - [anon_sym_LT_EQ] = ACTIONS(1441), - [anon_sym_DOT] = ACTIONS(1443), - [anon_sym_DOT_DOT] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1441), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1441), - [anon_sym_COLON_COLON] = ACTIONS(1441), - [anon_sym_POUND] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [anon_sym_as] = ACTIONS(1443), - [anon_sym_async] = ACTIONS(1443), - [anon_sym_break] = ACTIONS(1443), - [anon_sym_const] = ACTIONS(1443), - [anon_sym_continue] = ACTIONS(1443), - [anon_sym_default] = ACTIONS(1443), - [anon_sym_enum] = ACTIONS(1443), - [anon_sym_fn] = ACTIONS(1443), - [anon_sym_for] = ACTIONS(1443), - [anon_sym_gen] = ACTIONS(1443), - [anon_sym_if] = ACTIONS(1443), - [anon_sym_impl] = ACTIONS(1443), - [anon_sym_let] = ACTIONS(1443), - [anon_sym_loop] = ACTIONS(1443), - [anon_sym_match] = ACTIONS(1443), - [anon_sym_mod] = ACTIONS(1443), - [anon_sym_pub] = ACTIONS(1443), - [anon_sym_return] = ACTIONS(1443), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_struct] = ACTIONS(1443), - [anon_sym_trait] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_union] = ACTIONS(1443), - [anon_sym_unsafe] = ACTIONS(1443), - [anon_sym_use] = ACTIONS(1443), - [anon_sym_while] = ACTIONS(1443), - [anon_sym_extern] = ACTIONS(1443), - [anon_sym_else] = ACTIONS(1443), - [anon_sym_yield] = ACTIONS(1443), - [anon_sym_move] = ACTIONS(1443), - [anon_sym_try] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [aux_sym_string_literal_token1] = ACTIONS(1441), - [sym_char_literal] = ACTIONS(1441), - [anon_sym_true] = ACTIONS(1443), - [anon_sym_false] = ACTIONS(1443), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1443), - [sym_super] = ACTIONS(1443), - [sym_crate] = ACTIONS(1443), - [sym_metavariable] = ACTIONS(1441), - [sym__raw_string_literal_start] = ACTIONS(1441), - [sym_float_literal] = ACTIONS(1441), + [aux_sym_attributes_repeat1] = STATE(1097), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1157), + [anon_sym_LPAREN] = ACTIONS(1159), + [anon_sym_RPAREN] = ACTIONS(1289), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1163), + [anon_sym_i8] = ACTIONS(1163), + [anon_sym_u16] = ACTIONS(1163), + [anon_sym_i16] = ACTIONS(1163), + [anon_sym_u32] = ACTIONS(1163), + [anon_sym_i32] = ACTIONS(1163), + [anon_sym_u64] = ACTIONS(1163), + [anon_sym_i64] = ACTIONS(1163), + [anon_sym_u128] = ACTIONS(1163), + [anon_sym_i128] = ACTIONS(1163), + [anon_sym_isize] = ACTIONS(1163), + [anon_sym_usize] = ACTIONS(1163), + [anon_sym_f32] = ACTIONS(1163), + [anon_sym_f64] = ACTIONS(1163), + [anon_sym_bool] = ACTIONS(1163), + [anon_sym_str] = ACTIONS(1163), + [anon_sym_char] = ACTIONS(1163), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1165), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1265), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1079), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(1087), + [anon_sym_SQUOTE] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_default] = ACTIONS(1173), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1175), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1175), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_ref] = ACTIONS(1109), + [anon_sym_dyn] = ACTIONS(1111), + [sym_mutable_specifier] = ACTIONS(1113), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1177), + [sym_super] = ACTIONS(1179), + [sym_crate] = ACTIONS(1179), + [sym_metavariable] = ACTIONS(1181), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(397)] = { [sym_line_comment] = STATE(397), [sym_block_comment] = STATE(397), - [ts_builtin_sym_end] = ACTIONS(1445), - [sym_identifier] = ACTIONS(1447), - [anon_sym_SEMI] = ACTIONS(1445), - [anon_sym_macro_rules_BANG] = ACTIONS(1445), - [anon_sym_LPAREN] = ACTIONS(1445), - [anon_sym_LBRACK] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(1445), - [anon_sym_RBRACE] = ACTIONS(1445), - [anon_sym_PLUS] = ACTIONS(1447), - [anon_sym_STAR] = ACTIONS(1447), - [anon_sym_QMARK] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1447), - [anon_sym_i8] = ACTIONS(1447), - [anon_sym_u16] = ACTIONS(1447), - [anon_sym_i16] = ACTIONS(1447), - [anon_sym_u32] = ACTIONS(1447), - [anon_sym_i32] = ACTIONS(1447), - [anon_sym_u64] = ACTIONS(1447), - [anon_sym_i64] = ACTIONS(1447), - [anon_sym_u128] = ACTIONS(1447), - [anon_sym_i128] = ACTIONS(1447), - [anon_sym_isize] = ACTIONS(1447), - [anon_sym_usize] = ACTIONS(1447), - [anon_sym_f32] = ACTIONS(1447), - [anon_sym_f64] = ACTIONS(1447), - [anon_sym_bool] = ACTIONS(1447), - [anon_sym_str] = ACTIONS(1447), - [anon_sym_char] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1447), - [anon_sym_SLASH] = ACTIONS(1447), - [anon_sym_PERCENT] = ACTIONS(1447), - [anon_sym_CARET] = ACTIONS(1447), - [anon_sym_BANG] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1447), - [anon_sym_PIPE] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(1445), - [anon_sym_LT_LT] = ACTIONS(1447), - [anon_sym_GT_GT] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1445), - [anon_sym_DASH_EQ] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1445), - [anon_sym_SLASH_EQ] = ACTIONS(1445), - [anon_sym_PERCENT_EQ] = ACTIONS(1445), - [anon_sym_CARET_EQ] = ACTIONS(1445), - [anon_sym_AMP_EQ] = ACTIONS(1445), - [anon_sym_PIPE_EQ] = ACTIONS(1445), - [anon_sym_LT_LT_EQ] = ACTIONS(1445), - [anon_sym_GT_GT_EQ] = ACTIONS(1445), - [anon_sym_EQ] = ACTIONS(1447), - [anon_sym_EQ_EQ] = ACTIONS(1445), - [anon_sym_BANG_EQ] = ACTIONS(1445), - [anon_sym_GT] = ACTIONS(1447), - [anon_sym_LT] = ACTIONS(1447), - [anon_sym_GT_EQ] = ACTIONS(1445), - [anon_sym_LT_EQ] = ACTIONS(1445), - [anon_sym_DOT] = ACTIONS(1447), - [anon_sym_DOT_DOT] = ACTIONS(1447), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1445), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1445), - [anon_sym_POUND] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [anon_sym_as] = ACTIONS(1447), - [anon_sym_async] = ACTIONS(1447), - [anon_sym_break] = ACTIONS(1447), - [anon_sym_const] = ACTIONS(1447), - [anon_sym_continue] = ACTIONS(1447), - [anon_sym_default] = ACTIONS(1447), - [anon_sym_enum] = ACTIONS(1447), - [anon_sym_fn] = ACTIONS(1447), - [anon_sym_for] = ACTIONS(1447), - [anon_sym_gen] = ACTIONS(1447), - [anon_sym_if] = ACTIONS(1447), - [anon_sym_impl] = ACTIONS(1447), - [anon_sym_let] = ACTIONS(1447), - [anon_sym_loop] = ACTIONS(1447), - [anon_sym_match] = ACTIONS(1447), - [anon_sym_mod] = ACTIONS(1447), - [anon_sym_pub] = ACTIONS(1447), - [anon_sym_return] = ACTIONS(1447), - [anon_sym_static] = ACTIONS(1447), - [anon_sym_struct] = ACTIONS(1447), - [anon_sym_trait] = ACTIONS(1447), - [anon_sym_type] = ACTIONS(1447), - [anon_sym_union] = ACTIONS(1447), - [anon_sym_unsafe] = ACTIONS(1447), - [anon_sym_use] = ACTIONS(1447), - [anon_sym_while] = ACTIONS(1447), - [anon_sym_extern] = ACTIONS(1447), - [anon_sym_else] = ACTIONS(1447), - [anon_sym_yield] = ACTIONS(1447), - [anon_sym_move] = ACTIONS(1447), - [anon_sym_try] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [aux_sym_string_literal_token1] = ACTIONS(1445), - [sym_char_literal] = ACTIONS(1445), - [anon_sym_true] = ACTIONS(1447), - [anon_sym_false] = ACTIONS(1447), + [sym_identifier] = ACTIONS(1203), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym_LPAREN] = ACTIONS(1205), + [anon_sym_RPAREN] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1205), + [anon_sym_RBRACK] = ACTIONS(1205), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_RBRACE] = ACTIONS(1205), + [anon_sym_EQ_GT] = ACTIONS(1205), + [anon_sym_COLON] = ACTIONS(1203), + [anon_sym_DOLLAR] = ACTIONS(1205), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1203), + [anon_sym_i8] = ACTIONS(1203), + [anon_sym_u16] = ACTIONS(1203), + [anon_sym_i16] = ACTIONS(1203), + [anon_sym_u32] = ACTIONS(1203), + [anon_sym_i32] = ACTIONS(1203), + [anon_sym_u64] = ACTIONS(1203), + [anon_sym_i64] = ACTIONS(1203), + [anon_sym_u128] = ACTIONS(1203), + [anon_sym_i128] = ACTIONS(1203), + [anon_sym_isize] = ACTIONS(1203), + [anon_sym_usize] = ACTIONS(1203), + [anon_sym_f32] = ACTIONS(1203), + [anon_sym_f64] = ACTIONS(1203), + [anon_sym_bool] = ACTIONS(1203), + [anon_sym_str] = ACTIONS(1203), + [anon_sym_char] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1203), + [anon_sym_PERCENT] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_AMP_AMP] = ACTIONS(1205), + [anon_sym_PIPE_PIPE] = ACTIONS(1205), + [anon_sym_LT_LT] = ACTIONS(1203), + [anon_sym_GT_GT] = ACTIONS(1203), + [anon_sym_PLUS_EQ] = ACTIONS(1205), + [anon_sym_DASH_EQ] = ACTIONS(1205), + [anon_sym_STAR_EQ] = ACTIONS(1205), + [anon_sym_SLASH_EQ] = ACTIONS(1205), + [anon_sym_PERCENT_EQ] = ACTIONS(1205), + [anon_sym_CARET_EQ] = ACTIONS(1205), + [anon_sym_AMP_EQ] = ACTIONS(1205), + [anon_sym_PIPE_EQ] = ACTIONS(1205), + [anon_sym_LT_LT_EQ] = ACTIONS(1205), + [anon_sym_GT_GT_EQ] = ACTIONS(1205), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_EQ_EQ] = ACTIONS(1205), + [anon_sym_BANG_EQ] = ACTIONS(1205), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_GT_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ] = ACTIONS(1205), + [anon_sym_AT] = ACTIONS(1205), + [anon_sym__] = ACTIONS(1203), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_DOT_DOT] = ACTIONS(1203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1205), + [anon_sym_COMMA] = ACTIONS(1205), + [anon_sym_COLON_COLON] = ACTIONS(1205), + [anon_sym_DASH_GT] = ACTIONS(1205), + [anon_sym_POUND] = ACTIONS(1205), + [anon_sym_SQUOTE] = ACTIONS(1203), + [anon_sym_as] = ACTIONS(1203), + [anon_sym_async] = ACTIONS(1203), + [anon_sym_await] = ACTIONS(1203), + [anon_sym_break] = ACTIONS(1203), + [anon_sym_const] = ACTIONS(1203), + [anon_sym_continue] = ACTIONS(1203), + [anon_sym_default] = ACTIONS(1203), + [anon_sym_enum] = ACTIONS(1203), + [anon_sym_fn] = ACTIONS(1203), + [anon_sym_for] = ACTIONS(1203), + [anon_sym_gen] = ACTIONS(1203), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_impl] = ACTIONS(1203), + [anon_sym_let] = ACTIONS(1203), + [anon_sym_loop] = ACTIONS(1203), + [anon_sym_match] = ACTIONS(1203), + [anon_sym_mod] = ACTIONS(1203), + [anon_sym_pub] = ACTIONS(1203), + [anon_sym_return] = ACTIONS(1203), + [anon_sym_static] = ACTIONS(1203), + [anon_sym_struct] = ACTIONS(1203), + [anon_sym_trait] = ACTIONS(1203), + [anon_sym_type] = ACTIONS(1203), + [anon_sym_union] = ACTIONS(1203), + [anon_sym_unsafe] = ACTIONS(1203), + [anon_sym_use] = ACTIONS(1203), + [anon_sym_where] = ACTIONS(1203), + [anon_sym_while] = ACTIONS(1203), + [sym_mutable_specifier] = ACTIONS(1203), + [sym_integer_literal] = ACTIONS(1205), + [aux_sym_string_literal_token1] = ACTIONS(1205), + [sym_char_literal] = ACTIONS(1205), + [anon_sym_true] = ACTIONS(1203), + [anon_sym_false] = ACTIONS(1203), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1447), - [sym_super] = ACTIONS(1447), - [sym_crate] = ACTIONS(1447), - [sym_metavariable] = ACTIONS(1445), - [sym__raw_string_literal_start] = ACTIONS(1445), - [sym_float_literal] = ACTIONS(1445), + [sym_self] = ACTIONS(1203), + [sym_super] = ACTIONS(1203), + [sym_crate] = ACTIONS(1203), + [sym__raw_string_literal_start] = ACTIONS(1205), + [sym_float_literal] = ACTIONS(1205), }, [STATE(398)] = { [sym_line_comment] = STATE(398), [sym_block_comment] = STATE(398), - [ts_builtin_sym_end] = ACTIONS(1449), - [sym_identifier] = ACTIONS(1451), - [anon_sym_SEMI] = ACTIONS(1449), - [anon_sym_macro_rules_BANG] = ACTIONS(1449), - [anon_sym_LPAREN] = ACTIONS(1449), - [anon_sym_LBRACK] = ACTIONS(1449), - [anon_sym_LBRACE] = ACTIONS(1449), - [anon_sym_RBRACE] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_STAR] = ACTIONS(1451), - [anon_sym_QMARK] = ACTIONS(1449), - [anon_sym_u8] = ACTIONS(1451), - [anon_sym_i8] = ACTIONS(1451), - [anon_sym_u16] = ACTIONS(1451), - [anon_sym_i16] = ACTIONS(1451), - [anon_sym_u32] = ACTIONS(1451), - [anon_sym_i32] = ACTIONS(1451), - [anon_sym_u64] = ACTIONS(1451), - [anon_sym_i64] = ACTIONS(1451), - [anon_sym_u128] = ACTIONS(1451), - [anon_sym_i128] = ACTIONS(1451), - [anon_sym_isize] = ACTIONS(1451), - [anon_sym_usize] = ACTIONS(1451), - [anon_sym_f32] = ACTIONS(1451), - [anon_sym_f64] = ACTIONS(1451), - [anon_sym_bool] = ACTIONS(1451), - [anon_sym_str] = ACTIONS(1451), - [anon_sym_char] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_SLASH] = ACTIONS(1451), - [anon_sym_PERCENT] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_AMP] = ACTIONS(1451), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1449), - [anon_sym_LT_LT] = ACTIONS(1451), - [anon_sym_GT_GT] = ACTIONS(1451), - [anon_sym_PLUS_EQ] = ACTIONS(1449), - [anon_sym_DASH_EQ] = ACTIONS(1449), - [anon_sym_STAR_EQ] = ACTIONS(1449), - [anon_sym_SLASH_EQ] = ACTIONS(1449), - [anon_sym_PERCENT_EQ] = ACTIONS(1449), - [anon_sym_CARET_EQ] = ACTIONS(1449), - [anon_sym_AMP_EQ] = ACTIONS(1449), - [anon_sym_PIPE_EQ] = ACTIONS(1449), - [anon_sym_LT_LT_EQ] = ACTIONS(1449), - [anon_sym_GT_GT_EQ] = ACTIONS(1449), - [anon_sym_EQ] = ACTIONS(1451), - [anon_sym_EQ_EQ] = ACTIONS(1449), - [anon_sym_BANG_EQ] = ACTIONS(1449), - [anon_sym_GT] = ACTIONS(1451), - [anon_sym_LT] = ACTIONS(1451), - [anon_sym_GT_EQ] = ACTIONS(1449), - [anon_sym_LT_EQ] = ACTIONS(1449), - [anon_sym_DOT] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1451), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1449), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1449), - [anon_sym_COLON_COLON] = ACTIONS(1449), - [anon_sym_POUND] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [anon_sym_as] = ACTIONS(1451), - [anon_sym_async] = ACTIONS(1451), - [anon_sym_break] = ACTIONS(1451), - [anon_sym_const] = ACTIONS(1451), - [anon_sym_continue] = ACTIONS(1451), - [anon_sym_default] = ACTIONS(1451), - [anon_sym_enum] = ACTIONS(1451), - [anon_sym_fn] = ACTIONS(1451), - [anon_sym_for] = ACTIONS(1451), - [anon_sym_gen] = ACTIONS(1451), - [anon_sym_if] = ACTIONS(1451), - [anon_sym_impl] = ACTIONS(1451), - [anon_sym_let] = ACTIONS(1451), - [anon_sym_loop] = ACTIONS(1451), - [anon_sym_match] = ACTIONS(1451), - [anon_sym_mod] = ACTIONS(1451), - [anon_sym_pub] = ACTIONS(1451), - [anon_sym_return] = ACTIONS(1451), - [anon_sym_static] = ACTIONS(1451), - [anon_sym_struct] = ACTIONS(1451), - [anon_sym_trait] = ACTIONS(1451), - [anon_sym_type] = ACTIONS(1451), - [anon_sym_union] = ACTIONS(1451), - [anon_sym_unsafe] = ACTIONS(1451), - [anon_sym_use] = ACTIONS(1451), - [anon_sym_while] = ACTIONS(1451), - [anon_sym_extern] = ACTIONS(1451), - [anon_sym_else] = ACTIONS(1451), - [anon_sym_yield] = ACTIONS(1451), - [anon_sym_move] = ACTIONS(1451), - [anon_sym_try] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [aux_sym_string_literal_token1] = ACTIONS(1449), - [sym_char_literal] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1451), - [sym_super] = ACTIONS(1451), - [sym_crate] = ACTIONS(1451), - [sym_metavariable] = ACTIONS(1449), - [sym__raw_string_literal_start] = ACTIONS(1449), - [sym_float_literal] = ACTIONS(1449), + [sym_identifier] = ACTIONS(1291), + [anon_sym_SEMI] = ACTIONS(1293), + [anon_sym_LPAREN] = ACTIONS(1293), + [anon_sym_RPAREN] = ACTIONS(1293), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_RBRACK] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1293), + [anon_sym_RBRACE] = ACTIONS(1293), + [anon_sym_EQ_GT] = ACTIONS(1293), + [anon_sym_COLON] = ACTIONS(1291), + [anon_sym_DOLLAR] = ACTIONS(1293), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1291), + [anon_sym_QMARK] = ACTIONS(1293), + [anon_sym_u8] = ACTIONS(1291), + [anon_sym_i8] = ACTIONS(1291), + [anon_sym_u16] = ACTIONS(1291), + [anon_sym_i16] = ACTIONS(1291), + [anon_sym_u32] = ACTIONS(1291), + [anon_sym_i32] = ACTIONS(1291), + [anon_sym_u64] = ACTIONS(1291), + [anon_sym_i64] = ACTIONS(1291), + [anon_sym_u128] = ACTIONS(1291), + [anon_sym_i128] = ACTIONS(1291), + [anon_sym_isize] = ACTIONS(1291), + [anon_sym_usize] = ACTIONS(1291), + [anon_sym_f32] = ACTIONS(1291), + [anon_sym_f64] = ACTIONS(1291), + [anon_sym_bool] = ACTIONS(1291), + [anon_sym_str] = ACTIONS(1291), + [anon_sym_char] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(1291), + [anon_sym_PERCENT] = ACTIONS(1291), + [anon_sym_CARET] = ACTIONS(1291), + [anon_sym_BANG] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_PIPE] = ACTIONS(1291), + [anon_sym_AMP_AMP] = ACTIONS(1293), + [anon_sym_PIPE_PIPE] = ACTIONS(1293), + [anon_sym_LT_LT] = ACTIONS(1291), + [anon_sym_GT_GT] = ACTIONS(1291), + [anon_sym_PLUS_EQ] = ACTIONS(1293), + [anon_sym_DASH_EQ] = ACTIONS(1293), + [anon_sym_STAR_EQ] = ACTIONS(1293), + [anon_sym_SLASH_EQ] = ACTIONS(1293), + [anon_sym_PERCENT_EQ] = ACTIONS(1293), + [anon_sym_CARET_EQ] = ACTIONS(1293), + [anon_sym_AMP_EQ] = ACTIONS(1293), + [anon_sym_PIPE_EQ] = ACTIONS(1293), + [anon_sym_LT_LT_EQ] = ACTIONS(1293), + [anon_sym_GT_GT_EQ] = ACTIONS(1293), + [anon_sym_EQ] = ACTIONS(1291), + [anon_sym_EQ_EQ] = ACTIONS(1293), + [anon_sym_BANG_EQ] = ACTIONS(1293), + [anon_sym_GT] = ACTIONS(1291), + [anon_sym_LT] = ACTIONS(1291), + [anon_sym_GT_EQ] = ACTIONS(1293), + [anon_sym_LT_EQ] = ACTIONS(1293), + [anon_sym_AT] = ACTIONS(1293), + [anon_sym__] = ACTIONS(1291), + [anon_sym_DOT] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1291), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1293), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1293), + [anon_sym_COMMA] = ACTIONS(1293), + [anon_sym_COLON_COLON] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1293), + [anon_sym_POUND] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_as] = ACTIONS(1291), + [anon_sym_async] = ACTIONS(1291), + [anon_sym_await] = ACTIONS(1291), + [anon_sym_break] = ACTIONS(1291), + [anon_sym_const] = ACTIONS(1291), + [anon_sym_continue] = ACTIONS(1291), + [anon_sym_default] = ACTIONS(1291), + [anon_sym_enum] = ACTIONS(1291), + [anon_sym_fn] = ACTIONS(1291), + [anon_sym_for] = ACTIONS(1291), + [anon_sym_gen] = ACTIONS(1291), + [anon_sym_if] = ACTIONS(1291), + [anon_sym_impl] = ACTIONS(1291), + [anon_sym_let] = ACTIONS(1291), + [anon_sym_loop] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1291), + [anon_sym_mod] = ACTIONS(1291), + [anon_sym_pub] = ACTIONS(1291), + [anon_sym_return] = ACTIONS(1291), + [anon_sym_static] = ACTIONS(1291), + [anon_sym_struct] = ACTIONS(1291), + [anon_sym_trait] = ACTIONS(1291), + [anon_sym_type] = ACTIONS(1291), + [anon_sym_union] = ACTIONS(1291), + [anon_sym_unsafe] = ACTIONS(1291), + [anon_sym_use] = ACTIONS(1291), + [anon_sym_where] = ACTIONS(1291), + [anon_sym_while] = ACTIONS(1291), + [sym_mutable_specifier] = ACTIONS(1291), + [sym_integer_literal] = ACTIONS(1293), + [aux_sym_string_literal_token1] = ACTIONS(1293), + [sym_char_literal] = ACTIONS(1293), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1291), + [sym_super] = ACTIONS(1291), + [sym_crate] = ACTIONS(1291), + [sym__raw_string_literal_start] = ACTIONS(1293), + [sym_float_literal] = ACTIONS(1293), }, [STATE(399)] = { [sym_line_comment] = STATE(399), [sym_block_comment] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(1453), - [sym_identifier] = ACTIONS(1455), - [anon_sym_SEMI] = ACTIONS(1457), - [anon_sym_macro_rules_BANG] = ACTIONS(1453), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_LBRACK] = ACTIONS(1457), - [anon_sym_LBRACE] = ACTIONS(1453), - [anon_sym_RBRACE] = ACTIONS(1457), - [anon_sym_PLUS] = ACTIONS(1459), - [anon_sym_STAR] = ACTIONS(1459), - [anon_sym_QMARK] = ACTIONS(1457), - [anon_sym_u8] = ACTIONS(1455), - [anon_sym_i8] = ACTIONS(1455), - [anon_sym_u16] = ACTIONS(1455), - [anon_sym_i16] = ACTIONS(1455), - [anon_sym_u32] = ACTIONS(1455), - [anon_sym_i32] = ACTIONS(1455), - [anon_sym_u64] = ACTIONS(1455), - [anon_sym_i64] = ACTIONS(1455), - [anon_sym_u128] = ACTIONS(1455), - [anon_sym_i128] = ACTIONS(1455), - [anon_sym_isize] = ACTIONS(1455), - [anon_sym_usize] = ACTIONS(1455), - [anon_sym_f32] = ACTIONS(1455), - [anon_sym_f64] = ACTIONS(1455), - [anon_sym_bool] = ACTIONS(1455), - [anon_sym_str] = ACTIONS(1455), - [anon_sym_char] = ACTIONS(1455), - [anon_sym_DASH] = ACTIONS(1459), - [anon_sym_SLASH] = ACTIONS(1459), - [anon_sym_PERCENT] = ACTIONS(1459), - [anon_sym_CARET] = ACTIONS(1459), - [anon_sym_BANG] = ACTIONS(1455), - [anon_sym_AMP] = ACTIONS(1459), - [anon_sym_PIPE] = ACTIONS(1459), - [anon_sym_AMP_AMP] = ACTIONS(1457), - [anon_sym_PIPE_PIPE] = ACTIONS(1457), - [anon_sym_LT_LT] = ACTIONS(1459), - [anon_sym_GT_GT] = ACTIONS(1459), - [anon_sym_PLUS_EQ] = ACTIONS(1457), - [anon_sym_DASH_EQ] = ACTIONS(1457), - [anon_sym_STAR_EQ] = ACTIONS(1457), - [anon_sym_SLASH_EQ] = ACTIONS(1457), - [anon_sym_PERCENT_EQ] = ACTIONS(1457), - [anon_sym_CARET_EQ] = ACTIONS(1457), - [anon_sym_AMP_EQ] = ACTIONS(1457), - [anon_sym_PIPE_EQ] = ACTIONS(1457), - [anon_sym_LT_LT_EQ] = ACTIONS(1457), - [anon_sym_GT_GT_EQ] = ACTIONS(1457), - [anon_sym_EQ] = ACTIONS(1459), - [anon_sym_EQ_EQ] = ACTIONS(1457), - [anon_sym_BANG_EQ] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1457), - [anon_sym_DOT] = ACTIONS(1459), - [anon_sym_DOT_DOT] = ACTIONS(1459), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1457), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1457), - [anon_sym_COLON_COLON] = ACTIONS(1453), - [anon_sym_POUND] = ACTIONS(1453), - [anon_sym_SQUOTE] = ACTIONS(1455), - [anon_sym_as] = ACTIONS(1459), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_break] = ACTIONS(1455), - [anon_sym_const] = ACTIONS(1455), - [anon_sym_continue] = ACTIONS(1455), - [anon_sym_default] = ACTIONS(1455), - [anon_sym_enum] = ACTIONS(1455), - [anon_sym_fn] = ACTIONS(1455), - [anon_sym_for] = ACTIONS(1455), - [anon_sym_gen] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1455), - [anon_sym_impl] = ACTIONS(1455), - [anon_sym_let] = ACTIONS(1455), - [anon_sym_loop] = ACTIONS(1455), - [anon_sym_match] = ACTIONS(1455), - [anon_sym_mod] = ACTIONS(1455), - [anon_sym_pub] = ACTIONS(1455), - [anon_sym_return] = ACTIONS(1455), - [anon_sym_static] = ACTIONS(1455), - [anon_sym_struct] = ACTIONS(1455), - [anon_sym_trait] = ACTIONS(1455), - [anon_sym_type] = ACTIONS(1455), - [anon_sym_union] = ACTIONS(1455), - [anon_sym_unsafe] = ACTIONS(1455), - [anon_sym_use] = ACTIONS(1455), - [anon_sym_while] = ACTIONS(1455), - [anon_sym_extern] = ACTIONS(1455), - [anon_sym_yield] = ACTIONS(1455), - [anon_sym_move] = ACTIONS(1455), - [anon_sym_try] = ACTIONS(1455), - [sym_integer_literal] = ACTIONS(1453), - [aux_sym_string_literal_token1] = ACTIONS(1453), - [sym_char_literal] = ACTIONS(1453), - [anon_sym_true] = ACTIONS(1455), - [anon_sym_false] = ACTIONS(1455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1455), - [sym_super] = ACTIONS(1455), - [sym_crate] = ACTIONS(1455), - [sym_metavariable] = ACTIONS(1453), - [sym__raw_string_literal_start] = ACTIONS(1453), - [sym_float_literal] = ACTIONS(1453), + [sym_identifier] = ACTIONS(1295), + [anon_sym_SEMI] = ACTIONS(1297), + [anon_sym_LPAREN] = ACTIONS(1297), + [anon_sym_RPAREN] = ACTIONS(1297), + [anon_sym_LBRACK] = ACTIONS(1297), + [anon_sym_RBRACK] = ACTIONS(1297), + [anon_sym_LBRACE] = ACTIONS(1297), + [anon_sym_RBRACE] = ACTIONS(1297), + [anon_sym_EQ_GT] = ACTIONS(1297), + [anon_sym_COLON] = ACTIONS(1295), + [anon_sym_DOLLAR] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_STAR] = ACTIONS(1295), + [anon_sym_QMARK] = ACTIONS(1297), + [anon_sym_u8] = ACTIONS(1295), + [anon_sym_i8] = ACTIONS(1295), + [anon_sym_u16] = ACTIONS(1295), + [anon_sym_i16] = ACTIONS(1295), + [anon_sym_u32] = ACTIONS(1295), + [anon_sym_i32] = ACTIONS(1295), + [anon_sym_u64] = ACTIONS(1295), + [anon_sym_i64] = ACTIONS(1295), + [anon_sym_u128] = ACTIONS(1295), + [anon_sym_i128] = ACTIONS(1295), + [anon_sym_isize] = ACTIONS(1295), + [anon_sym_usize] = ACTIONS(1295), + [anon_sym_f32] = ACTIONS(1295), + [anon_sym_f64] = ACTIONS(1295), + [anon_sym_bool] = ACTIONS(1295), + [anon_sym_str] = ACTIONS(1295), + [anon_sym_char] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PERCENT] = ACTIONS(1295), + [anon_sym_CARET] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1295), + [anon_sym_AMP] = ACTIONS(1295), + [anon_sym_PIPE] = ACTIONS(1295), + [anon_sym_AMP_AMP] = ACTIONS(1297), + [anon_sym_PIPE_PIPE] = ACTIONS(1297), + [anon_sym_LT_LT] = ACTIONS(1295), + [anon_sym_GT_GT] = ACTIONS(1295), + [anon_sym_PLUS_EQ] = ACTIONS(1297), + [anon_sym_DASH_EQ] = ACTIONS(1297), + [anon_sym_STAR_EQ] = ACTIONS(1297), + [anon_sym_SLASH_EQ] = ACTIONS(1297), + [anon_sym_PERCENT_EQ] = ACTIONS(1297), + [anon_sym_CARET_EQ] = ACTIONS(1297), + [anon_sym_AMP_EQ] = ACTIONS(1297), + [anon_sym_PIPE_EQ] = ACTIONS(1297), + [anon_sym_LT_LT_EQ] = ACTIONS(1297), + [anon_sym_GT_GT_EQ] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1295), + [anon_sym_EQ_EQ] = ACTIONS(1297), + [anon_sym_BANG_EQ] = ACTIONS(1297), + [anon_sym_GT] = ACTIONS(1295), + [anon_sym_LT] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1297), + [anon_sym_LT_EQ] = ACTIONS(1297), + [anon_sym_AT] = ACTIONS(1297), + [anon_sym__] = ACTIONS(1295), + [anon_sym_DOT] = ACTIONS(1295), + [anon_sym_DOT_DOT] = ACTIONS(1295), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1297), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1297), + [anon_sym_COMMA] = ACTIONS(1297), + [anon_sym_COLON_COLON] = ACTIONS(1297), + [anon_sym_DASH_GT] = ACTIONS(1297), + [anon_sym_POUND] = ACTIONS(1297), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_as] = ACTIONS(1295), + [anon_sym_async] = ACTIONS(1295), + [anon_sym_await] = ACTIONS(1295), + [anon_sym_break] = ACTIONS(1295), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_continue] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1295), + [anon_sym_enum] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1295), + [anon_sym_for] = ACTIONS(1295), + [anon_sym_gen] = ACTIONS(1295), + [anon_sym_if] = ACTIONS(1295), + [anon_sym_impl] = ACTIONS(1295), + [anon_sym_let] = ACTIONS(1295), + [anon_sym_loop] = ACTIONS(1295), + [anon_sym_match] = ACTIONS(1295), + [anon_sym_mod] = ACTIONS(1295), + [anon_sym_pub] = ACTIONS(1295), + [anon_sym_return] = ACTIONS(1295), + [anon_sym_static] = ACTIONS(1295), + [anon_sym_struct] = ACTIONS(1295), + [anon_sym_trait] = ACTIONS(1295), + [anon_sym_type] = ACTIONS(1295), + [anon_sym_union] = ACTIONS(1295), + [anon_sym_unsafe] = ACTIONS(1295), + [anon_sym_use] = ACTIONS(1295), + [anon_sym_where] = ACTIONS(1295), + [anon_sym_while] = ACTIONS(1295), + [sym_mutable_specifier] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1297), + [aux_sym_string_literal_token1] = ACTIONS(1297), + [sym_char_literal] = ACTIONS(1297), + [anon_sym_true] = ACTIONS(1295), + [anon_sym_false] = ACTIONS(1295), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1295), + [sym_super] = ACTIONS(1295), + [sym_crate] = ACTIONS(1295), + [sym__raw_string_literal_start] = ACTIONS(1297), + [sym_float_literal] = ACTIONS(1297), }, [STATE(400)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_self_parameter] = STATE(3009), - [sym_variadic_parameter] = STATE(3009), - [sym_parameter] = STATE(3009), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2695), - [sym_bracketed_type] = STATE(3691), - [sym_lifetime] = STATE(3008), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3333), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2540), - [sym_scoped_identifier] = STATE(2311), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3210), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_attribute_item] = STATE(1098), + [sym_attributes] = STATE(411), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_self_parameter] = STATE(3284), + [sym_variadic_parameter] = STATE(3284), + [sym_parameter] = STATE(3284), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2961), + [sym_bracketed_type] = STATE(3751), + [sym_lifetime] = STATE(2953), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2569), + [sym_scoped_identifier] = STATE(2379), + [sym_scoped_type_identifier] = STATE(2296), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(3286), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(400), [sym_block_comment] = STATE(400), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u128] = ACTIONS(1187), - [anon_sym_i128] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_str] = ACTIONS(1187), - [anon_sym_char] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1461), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1163), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1201), - [sym_super] = ACTIONS(1203), - [sym_crate] = ACTIONS(1203), - [sym_metavariable] = ACTIONS(1205), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [aux_sym_attributes_repeat1] = STATE(1097), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1157), + [anon_sym_LPAREN] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1163), + [anon_sym_i8] = ACTIONS(1163), + [anon_sym_u16] = ACTIONS(1163), + [anon_sym_i16] = ACTIONS(1163), + [anon_sym_u32] = ACTIONS(1163), + [anon_sym_i32] = ACTIONS(1163), + [anon_sym_u64] = ACTIONS(1163), + [anon_sym_i64] = ACTIONS(1163), + [anon_sym_u128] = ACTIONS(1163), + [anon_sym_i128] = ACTIONS(1163), + [anon_sym_isize] = ACTIONS(1163), + [anon_sym_usize] = ACTIONS(1163), + [anon_sym_f32] = ACTIONS(1163), + [anon_sym_f64] = ACTIONS(1163), + [anon_sym_bool] = ACTIONS(1163), + [anon_sym_str] = ACTIONS(1163), + [anon_sym_char] = ACTIONS(1163), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1165), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1265), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1079), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(1087), + [anon_sym_SQUOTE] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_default] = ACTIONS(1173), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1175), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1175), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_ref] = ACTIONS(1109), + [anon_sym_dyn] = ACTIONS(1111), + [sym_mutable_specifier] = ACTIONS(1113), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1177), + [sym_super] = ACTIONS(1179), + [sym_crate] = ACTIONS(1179), + [sym_metavariable] = ACTIONS(1181), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(401)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2735), + [sym_bracketed_type] = STATE(3759), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3486), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2626), + [sym_scoped_identifier] = STATE(2263), + [sym_scoped_type_identifier] = STATE(2296), + [sym_const_block] = STATE(2249), + [sym_closure_expression] = STATE(2952), + [sym_closure_parameters] = STATE(188), + [sym__pattern] = STATE(2787), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(401), [sym_block_comment] = STATE(401), - [ts_builtin_sym_end] = ACTIONS(1463), - [sym_identifier] = ACTIONS(1465), - [anon_sym_SEMI] = ACTIONS(1463), - [anon_sym_macro_rules_BANG] = ACTIONS(1463), - [anon_sym_LPAREN] = ACTIONS(1463), - [anon_sym_LBRACK] = ACTIONS(1463), - [anon_sym_LBRACE] = ACTIONS(1463), - [anon_sym_RBRACE] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1465), - [anon_sym_QMARK] = ACTIONS(1463), - [anon_sym_u8] = ACTIONS(1465), - [anon_sym_i8] = ACTIONS(1465), - [anon_sym_u16] = ACTIONS(1465), - [anon_sym_i16] = ACTIONS(1465), - [anon_sym_u32] = ACTIONS(1465), - [anon_sym_i32] = ACTIONS(1465), - [anon_sym_u64] = ACTIONS(1465), - [anon_sym_i64] = ACTIONS(1465), - [anon_sym_u128] = ACTIONS(1465), - [anon_sym_i128] = ACTIONS(1465), - [anon_sym_isize] = ACTIONS(1465), - [anon_sym_usize] = ACTIONS(1465), - [anon_sym_f32] = ACTIONS(1465), - [anon_sym_f64] = ACTIONS(1465), - [anon_sym_bool] = ACTIONS(1465), - [anon_sym_str] = ACTIONS(1465), - [anon_sym_char] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_SLASH] = ACTIONS(1465), - [anon_sym_PERCENT] = ACTIONS(1465), - [anon_sym_CARET] = ACTIONS(1465), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(1465), - [anon_sym_PIPE] = ACTIONS(1465), - [anon_sym_AMP_AMP] = ACTIONS(1463), - [anon_sym_PIPE_PIPE] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS_EQ] = ACTIONS(1463), - [anon_sym_DASH_EQ] = ACTIONS(1463), - [anon_sym_STAR_EQ] = ACTIONS(1463), - [anon_sym_SLASH_EQ] = ACTIONS(1463), - [anon_sym_PERCENT_EQ] = ACTIONS(1463), - [anon_sym_CARET_EQ] = ACTIONS(1463), - [anon_sym_AMP_EQ] = ACTIONS(1463), - [anon_sym_PIPE_EQ] = ACTIONS(1463), - [anon_sym_LT_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_GT_EQ] = ACTIONS(1463), - [anon_sym_EQ] = ACTIONS(1465), - [anon_sym_EQ_EQ] = ACTIONS(1463), - [anon_sym_BANG_EQ] = ACTIONS(1463), - [anon_sym_GT] = ACTIONS(1465), - [anon_sym_LT] = ACTIONS(1465), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_DOT] = ACTIONS(1465), - [anon_sym_DOT_DOT] = ACTIONS(1465), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1463), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1463), - [anon_sym_COLON_COLON] = ACTIONS(1463), - [anon_sym_POUND] = ACTIONS(1463), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_as] = ACTIONS(1465), - [anon_sym_async] = ACTIONS(1465), - [anon_sym_break] = ACTIONS(1465), - [anon_sym_const] = ACTIONS(1465), - [anon_sym_continue] = ACTIONS(1465), - [anon_sym_default] = ACTIONS(1465), - [anon_sym_enum] = ACTIONS(1465), - [anon_sym_fn] = ACTIONS(1465), - [anon_sym_for] = ACTIONS(1465), - [anon_sym_gen] = ACTIONS(1465), - [anon_sym_if] = ACTIONS(1465), - [anon_sym_impl] = ACTIONS(1465), - [anon_sym_let] = ACTIONS(1465), - [anon_sym_loop] = ACTIONS(1465), - [anon_sym_match] = ACTIONS(1465), - [anon_sym_mod] = ACTIONS(1465), - [anon_sym_pub] = ACTIONS(1465), - [anon_sym_return] = ACTIONS(1465), - [anon_sym_static] = ACTIONS(1465), - [anon_sym_struct] = ACTIONS(1465), - [anon_sym_trait] = ACTIONS(1465), - [anon_sym_type] = ACTIONS(1465), - [anon_sym_union] = ACTIONS(1465), - [anon_sym_unsafe] = ACTIONS(1465), - [anon_sym_use] = ACTIONS(1465), - [anon_sym_while] = ACTIONS(1465), - [anon_sym_extern] = ACTIONS(1465), - [anon_sym_yield] = ACTIONS(1465), - [anon_sym_move] = ACTIONS(1465), - [anon_sym_try] = ACTIONS(1465), - [sym_integer_literal] = ACTIONS(1463), - [aux_sym_string_literal_token1] = ACTIONS(1463), - [sym_char_literal] = ACTIONS(1463), - [anon_sym_true] = ACTIONS(1465), - [anon_sym_false] = ACTIONS(1465), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1465), - [sym_super] = ACTIONS(1465), - [sym_crate] = ACTIONS(1465), - [sym_metavariable] = ACTIONS(1463), - [sym__raw_string_literal_start] = ACTIONS(1463), - [sym_float_literal] = ACTIONS(1463), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1053), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_RPAREN] = ACTIONS(1299), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1065), + [anon_sym_i8] = ACTIONS(1065), + [anon_sym_u16] = ACTIONS(1065), + [anon_sym_i16] = ACTIONS(1065), + [anon_sym_u32] = ACTIONS(1065), + [anon_sym_i32] = ACTIONS(1065), + [anon_sym_u64] = ACTIONS(1065), + [anon_sym_i64] = ACTIONS(1065), + [anon_sym_u128] = ACTIONS(1065), + [anon_sym_i128] = ACTIONS(1065), + [anon_sym_isize] = ACTIONS(1065), + [anon_sym_usize] = ACTIONS(1065), + [anon_sym_f32] = ACTIONS(1065), + [anon_sym_f64] = ACTIONS(1065), + [anon_sym_bool] = ACTIONS(1065), + [anon_sym_str] = ACTIONS(1065), + [anon_sym_char] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1301), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COMMA] = ACTIONS(1307), + [anon_sym_COLON_COLON] = ACTIONS(1085), + [anon_sym_SQUOTE] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1309), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_default] = ACTIONS(1095), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1101), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_static] = ACTIONS(1311), + [anon_sym_union] = ACTIONS(1101), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_ref] = ACTIONS(1109), + [anon_sym_dyn] = ACTIONS(1111), + [sym_mutable_specifier] = ACTIONS(1313), + [anon_sym_move] = ACTIONS(1315), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1123), + [sym_super] = ACTIONS(1123), + [sym_crate] = ACTIONS(1123), + [sym_metavariable] = ACTIONS(1125), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(402)] = { + [sym_else_clause] = STATE(426), [sym_line_comment] = STATE(402), [sym_block_comment] = STATE(402), - [ts_builtin_sym_end] = ACTIONS(1467), - [sym_identifier] = ACTIONS(1469), - [anon_sym_SEMI] = ACTIONS(1467), - [anon_sym_macro_rules_BANG] = ACTIONS(1467), - [anon_sym_LPAREN] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1467), - [anon_sym_LBRACE] = ACTIONS(1467), - [anon_sym_RBRACE] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_QMARK] = ACTIONS(1467), - [anon_sym_u8] = ACTIONS(1469), - [anon_sym_i8] = ACTIONS(1469), - [anon_sym_u16] = ACTIONS(1469), - [anon_sym_i16] = ACTIONS(1469), - [anon_sym_u32] = ACTIONS(1469), - [anon_sym_i32] = ACTIONS(1469), - [anon_sym_u64] = ACTIONS(1469), - [anon_sym_i64] = ACTIONS(1469), - [anon_sym_u128] = ACTIONS(1469), - [anon_sym_i128] = ACTIONS(1469), - [anon_sym_isize] = ACTIONS(1469), - [anon_sym_usize] = ACTIONS(1469), - [anon_sym_f32] = ACTIONS(1469), - [anon_sym_f64] = ACTIONS(1469), - [anon_sym_bool] = ACTIONS(1469), - [anon_sym_str] = ACTIONS(1469), - [anon_sym_char] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_SLASH] = ACTIONS(1469), - [anon_sym_PERCENT] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym_BANG] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1469), - [anon_sym_PIPE] = ACTIONS(1469), - [anon_sym_AMP_AMP] = ACTIONS(1467), - [anon_sym_PIPE_PIPE] = ACTIONS(1467), - [anon_sym_LT_LT] = ACTIONS(1469), - [anon_sym_GT_GT] = ACTIONS(1469), - [anon_sym_PLUS_EQ] = ACTIONS(1467), - [anon_sym_DASH_EQ] = ACTIONS(1467), - [anon_sym_STAR_EQ] = ACTIONS(1467), - [anon_sym_SLASH_EQ] = ACTIONS(1467), - [anon_sym_PERCENT_EQ] = ACTIONS(1467), - [anon_sym_CARET_EQ] = ACTIONS(1467), - [anon_sym_AMP_EQ] = ACTIONS(1467), - [anon_sym_PIPE_EQ] = ACTIONS(1467), - [anon_sym_LT_LT_EQ] = ACTIONS(1467), - [anon_sym_GT_GT_EQ] = ACTIONS(1467), - [anon_sym_EQ] = ACTIONS(1469), - [anon_sym_EQ_EQ] = ACTIONS(1467), - [anon_sym_BANG_EQ] = ACTIONS(1467), - [anon_sym_GT] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(1469), - [anon_sym_GT_EQ] = ACTIONS(1467), - [anon_sym_LT_EQ] = ACTIONS(1467), - [anon_sym_DOT] = ACTIONS(1469), - [anon_sym_DOT_DOT] = ACTIONS(1469), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1467), - [anon_sym_COLON_COLON] = ACTIONS(1467), - [anon_sym_POUND] = ACTIONS(1467), - [anon_sym_SQUOTE] = ACTIONS(1469), - [anon_sym_as] = ACTIONS(1469), - [anon_sym_async] = ACTIONS(1469), - [anon_sym_break] = ACTIONS(1469), - [anon_sym_const] = ACTIONS(1469), - [anon_sym_continue] = ACTIONS(1469), - [anon_sym_default] = ACTIONS(1469), - [anon_sym_enum] = ACTIONS(1469), - [anon_sym_fn] = ACTIONS(1469), - [anon_sym_for] = ACTIONS(1469), - [anon_sym_gen] = ACTIONS(1469), - [anon_sym_if] = ACTIONS(1469), - [anon_sym_impl] = ACTIONS(1469), - [anon_sym_let] = ACTIONS(1469), - [anon_sym_loop] = ACTIONS(1469), - [anon_sym_match] = ACTIONS(1469), - [anon_sym_mod] = ACTIONS(1469), - [anon_sym_pub] = ACTIONS(1469), - [anon_sym_return] = ACTIONS(1469), - [anon_sym_static] = ACTIONS(1469), - [anon_sym_struct] = ACTIONS(1469), - [anon_sym_trait] = ACTIONS(1469), - [anon_sym_type] = ACTIONS(1469), - [anon_sym_union] = ACTIONS(1469), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_use] = ACTIONS(1469), - [anon_sym_while] = ACTIONS(1469), - [anon_sym_extern] = ACTIONS(1469), - [anon_sym_yield] = ACTIONS(1469), - [anon_sym_move] = ACTIONS(1469), - [anon_sym_try] = ACTIONS(1469), - [sym_integer_literal] = ACTIONS(1467), - [aux_sym_string_literal_token1] = ACTIONS(1467), - [sym_char_literal] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1469), - [anon_sym_false] = ACTIONS(1469), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1469), - [sym_super] = ACTIONS(1469), - [sym_crate] = ACTIONS(1469), - [sym_metavariable] = ACTIONS(1467), - [sym__raw_string_literal_start] = ACTIONS(1467), - [sym_float_literal] = ACTIONS(1467), + [ts_builtin_sym_end] = ACTIONS(1317), + [sym_identifier] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1317), + [anon_sym_macro_rules_BANG] = ACTIONS(1317), + [anon_sym_LPAREN] = ACTIONS(1317), + [anon_sym_LBRACK] = ACTIONS(1317), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_RBRACE] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_QMARK] = ACTIONS(1317), + [anon_sym_u8] = ACTIONS(1319), + [anon_sym_i8] = ACTIONS(1319), + [anon_sym_u16] = ACTIONS(1319), + [anon_sym_i16] = ACTIONS(1319), + [anon_sym_u32] = ACTIONS(1319), + [anon_sym_i32] = ACTIONS(1319), + [anon_sym_u64] = ACTIONS(1319), + [anon_sym_i64] = ACTIONS(1319), + [anon_sym_u128] = ACTIONS(1319), + [anon_sym_i128] = ACTIONS(1319), + [anon_sym_isize] = ACTIONS(1319), + [anon_sym_usize] = ACTIONS(1319), + [anon_sym_f32] = ACTIONS(1319), + [anon_sym_f64] = ACTIONS(1319), + [anon_sym_bool] = ACTIONS(1319), + [anon_sym_str] = ACTIONS(1319), + [anon_sym_char] = ACTIONS(1319), + [anon_sym_DASH] = ACTIONS(1319), + [anon_sym_SLASH] = ACTIONS(1319), + [anon_sym_PERCENT] = ACTIONS(1319), + [anon_sym_CARET] = ACTIONS(1319), + [anon_sym_BANG] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_PIPE] = ACTIONS(1319), + [anon_sym_AMP_AMP] = ACTIONS(1317), + [anon_sym_PIPE_PIPE] = ACTIONS(1317), + [anon_sym_LT_LT] = ACTIONS(1319), + [anon_sym_GT_GT] = ACTIONS(1319), + [anon_sym_PLUS_EQ] = ACTIONS(1317), + [anon_sym_DASH_EQ] = ACTIONS(1317), + [anon_sym_STAR_EQ] = ACTIONS(1317), + [anon_sym_SLASH_EQ] = ACTIONS(1317), + [anon_sym_PERCENT_EQ] = ACTIONS(1317), + [anon_sym_CARET_EQ] = ACTIONS(1317), + [anon_sym_AMP_EQ] = ACTIONS(1317), + [anon_sym_PIPE_EQ] = ACTIONS(1317), + [anon_sym_LT_LT_EQ] = ACTIONS(1317), + [anon_sym_GT_GT_EQ] = ACTIONS(1317), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_EQ_EQ] = ACTIONS(1317), + [anon_sym_BANG_EQ] = ACTIONS(1317), + [anon_sym_GT] = ACTIONS(1319), + [anon_sym_LT] = ACTIONS(1319), + [anon_sym_GT_EQ] = ACTIONS(1317), + [anon_sym_LT_EQ] = ACTIONS(1317), + [anon_sym_DOT] = ACTIONS(1319), + [anon_sym_DOT_DOT] = ACTIONS(1319), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1317), + [anon_sym_COLON_COLON] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(1319), + [anon_sym_async] = ACTIONS(1319), + [anon_sym_break] = ACTIONS(1319), + [anon_sym_const] = ACTIONS(1319), + [anon_sym_continue] = ACTIONS(1319), + [anon_sym_default] = ACTIONS(1319), + [anon_sym_enum] = ACTIONS(1319), + [anon_sym_fn] = ACTIONS(1319), + [anon_sym_for] = ACTIONS(1319), + [anon_sym_gen] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1319), + [anon_sym_impl] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1319), + [anon_sym_loop] = ACTIONS(1319), + [anon_sym_match] = ACTIONS(1319), + [anon_sym_mod] = ACTIONS(1319), + [anon_sym_pub] = ACTIONS(1319), + [anon_sym_return] = ACTIONS(1319), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_struct] = ACTIONS(1319), + [anon_sym_trait] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_union] = ACTIONS(1319), + [anon_sym_unsafe] = ACTIONS(1319), + [anon_sym_use] = ACTIONS(1319), + [anon_sym_while] = ACTIONS(1319), + [anon_sym_extern] = ACTIONS(1319), + [anon_sym_else] = ACTIONS(1321), + [anon_sym_yield] = ACTIONS(1319), + [anon_sym_move] = ACTIONS(1319), + [anon_sym_try] = ACTIONS(1319), + [sym_integer_literal] = ACTIONS(1317), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1319), + [sym_super] = ACTIONS(1319), + [sym_crate] = ACTIONS(1319), + [sym_metavariable] = ACTIONS(1317), + [sym__raw_string_literal_start] = ACTIONS(1317), + [sym_float_literal] = ACTIONS(1317), }, [STATE(403)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2735), + [sym_bracketed_type] = STATE(3759), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3486), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2626), + [sym_scoped_identifier] = STATE(2263), + [sym_scoped_type_identifier] = STATE(2296), + [sym_const_block] = STATE(2249), + [sym_closure_expression] = STATE(2952), + [sym_closure_parameters] = STATE(188), + [sym__pattern] = STATE(2787), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(403), [sym_block_comment] = STATE(403), - [ts_builtin_sym_end] = ACTIONS(1471), - [sym_identifier] = ACTIONS(1473), - [anon_sym_SEMI] = ACTIONS(1471), - [anon_sym_macro_rules_BANG] = ACTIONS(1471), - [anon_sym_LPAREN] = ACTIONS(1471), - [anon_sym_LBRACK] = ACTIONS(1471), - [anon_sym_LBRACE] = ACTIONS(1471), - [anon_sym_RBRACE] = ACTIONS(1471), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_QMARK] = ACTIONS(1471), - [anon_sym_u8] = ACTIONS(1473), - [anon_sym_i8] = ACTIONS(1473), - [anon_sym_u16] = ACTIONS(1473), - [anon_sym_i16] = ACTIONS(1473), - [anon_sym_u32] = ACTIONS(1473), - [anon_sym_i32] = ACTIONS(1473), - [anon_sym_u64] = ACTIONS(1473), - [anon_sym_i64] = ACTIONS(1473), - [anon_sym_u128] = ACTIONS(1473), - [anon_sym_i128] = ACTIONS(1473), - [anon_sym_isize] = ACTIONS(1473), - [anon_sym_usize] = ACTIONS(1473), - [anon_sym_f32] = ACTIONS(1473), - [anon_sym_f64] = ACTIONS(1473), - [anon_sym_bool] = ACTIONS(1473), - [anon_sym_str] = ACTIONS(1473), - [anon_sym_char] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_SLASH] = ACTIONS(1473), - [anon_sym_PERCENT] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1473), - [anon_sym_BANG] = ACTIONS(1473), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_PIPE] = ACTIONS(1473), - [anon_sym_AMP_AMP] = ACTIONS(1471), - [anon_sym_PIPE_PIPE] = ACTIONS(1471), - [anon_sym_LT_LT] = ACTIONS(1473), - [anon_sym_GT_GT] = ACTIONS(1473), - [anon_sym_PLUS_EQ] = ACTIONS(1471), - [anon_sym_DASH_EQ] = ACTIONS(1471), - [anon_sym_STAR_EQ] = ACTIONS(1471), - [anon_sym_SLASH_EQ] = ACTIONS(1471), - [anon_sym_PERCENT_EQ] = ACTIONS(1471), - [anon_sym_CARET_EQ] = ACTIONS(1471), - [anon_sym_AMP_EQ] = ACTIONS(1471), - [anon_sym_PIPE_EQ] = ACTIONS(1471), - [anon_sym_LT_LT_EQ] = ACTIONS(1471), - [anon_sym_GT_GT_EQ] = ACTIONS(1471), - [anon_sym_EQ] = ACTIONS(1473), - [anon_sym_EQ_EQ] = ACTIONS(1471), - [anon_sym_BANG_EQ] = ACTIONS(1471), - [anon_sym_GT] = ACTIONS(1473), - [anon_sym_LT] = ACTIONS(1473), - [anon_sym_GT_EQ] = ACTIONS(1471), - [anon_sym_LT_EQ] = ACTIONS(1471), - [anon_sym_DOT] = ACTIONS(1473), - [anon_sym_DOT_DOT] = ACTIONS(1473), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1471), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1471), - [anon_sym_COLON_COLON] = ACTIONS(1471), - [anon_sym_POUND] = ACTIONS(1471), - [anon_sym_SQUOTE] = ACTIONS(1473), - [anon_sym_as] = ACTIONS(1473), - [anon_sym_async] = ACTIONS(1473), - [anon_sym_break] = ACTIONS(1473), - [anon_sym_const] = ACTIONS(1473), - [anon_sym_continue] = ACTIONS(1473), - [anon_sym_default] = ACTIONS(1473), - [anon_sym_enum] = ACTIONS(1473), - [anon_sym_fn] = ACTIONS(1473), - [anon_sym_for] = ACTIONS(1473), - [anon_sym_gen] = ACTIONS(1473), - [anon_sym_if] = ACTIONS(1473), - [anon_sym_impl] = ACTIONS(1473), - [anon_sym_let] = ACTIONS(1473), - [anon_sym_loop] = ACTIONS(1473), - [anon_sym_match] = ACTIONS(1473), - [anon_sym_mod] = ACTIONS(1473), - [anon_sym_pub] = ACTIONS(1473), - [anon_sym_return] = ACTIONS(1473), - [anon_sym_static] = ACTIONS(1473), - [anon_sym_struct] = ACTIONS(1473), - [anon_sym_trait] = ACTIONS(1473), - [anon_sym_type] = ACTIONS(1473), - [anon_sym_union] = ACTIONS(1473), - [anon_sym_unsafe] = ACTIONS(1473), - [anon_sym_use] = ACTIONS(1473), - [anon_sym_while] = ACTIONS(1473), - [anon_sym_extern] = ACTIONS(1473), - [anon_sym_yield] = ACTIONS(1473), - [anon_sym_move] = ACTIONS(1473), - [anon_sym_try] = ACTIONS(1473), - [sym_integer_literal] = ACTIONS(1471), - [aux_sym_string_literal_token1] = ACTIONS(1471), - [sym_char_literal] = ACTIONS(1471), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1473), - [sym_super] = ACTIONS(1473), - [sym_crate] = ACTIONS(1473), - [sym_metavariable] = ACTIONS(1471), - [sym__raw_string_literal_start] = ACTIONS(1471), - [sym_float_literal] = ACTIONS(1471), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1053), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_RPAREN] = ACTIONS(1323), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1065), + [anon_sym_i8] = ACTIONS(1065), + [anon_sym_u16] = ACTIONS(1065), + [anon_sym_i16] = ACTIONS(1065), + [anon_sym_u32] = ACTIONS(1065), + [anon_sym_i32] = ACTIONS(1065), + [anon_sym_u64] = ACTIONS(1065), + [anon_sym_i64] = ACTIONS(1065), + [anon_sym_u128] = ACTIONS(1065), + [anon_sym_i128] = ACTIONS(1065), + [anon_sym_isize] = ACTIONS(1065), + [anon_sym_usize] = ACTIONS(1065), + [anon_sym_f32] = ACTIONS(1065), + [anon_sym_f64] = ACTIONS(1065), + [anon_sym_bool] = ACTIONS(1065), + [anon_sym_str] = ACTIONS(1065), + [anon_sym_char] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1301), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COMMA] = ACTIONS(1307), + [anon_sym_COLON_COLON] = ACTIONS(1085), + [anon_sym_SQUOTE] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1309), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_default] = ACTIONS(1095), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1101), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_static] = ACTIONS(1311), + [anon_sym_union] = ACTIONS(1101), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_ref] = ACTIONS(1109), + [anon_sym_dyn] = ACTIONS(1111), + [sym_mutable_specifier] = ACTIONS(1313), + [anon_sym_move] = ACTIONS(1315), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1123), + [sym_super] = ACTIONS(1123), + [sym_crate] = ACTIONS(1123), + [sym_metavariable] = ACTIONS(1125), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(404)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2735), + [sym_bracketed_type] = STATE(3759), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3486), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2626), + [sym_scoped_identifier] = STATE(2263), + [sym_scoped_type_identifier] = STATE(2296), + [sym_const_block] = STATE(2249), + [sym_closure_expression] = STATE(2952), + [sym_closure_parameters] = STATE(188), + [sym__pattern] = STATE(2787), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(404), [sym_block_comment] = STATE(404), - [ts_builtin_sym_end] = ACTIONS(1475), - [sym_identifier] = ACTIONS(1477), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_macro_rules_BANG] = ACTIONS(1475), - [anon_sym_LPAREN] = ACTIONS(1475), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1477), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_QMARK] = ACTIONS(1475), - [anon_sym_u8] = ACTIONS(1477), - [anon_sym_i8] = ACTIONS(1477), - [anon_sym_u16] = ACTIONS(1477), - [anon_sym_i16] = ACTIONS(1477), - [anon_sym_u32] = ACTIONS(1477), - [anon_sym_i32] = ACTIONS(1477), - [anon_sym_u64] = ACTIONS(1477), - [anon_sym_i64] = ACTIONS(1477), - [anon_sym_u128] = ACTIONS(1477), - [anon_sym_i128] = ACTIONS(1477), - [anon_sym_isize] = ACTIONS(1477), - [anon_sym_usize] = ACTIONS(1477), - [anon_sym_f32] = ACTIONS(1477), - [anon_sym_f64] = ACTIONS(1477), - [anon_sym_bool] = ACTIONS(1477), - [anon_sym_str] = ACTIONS(1477), - [anon_sym_char] = ACTIONS(1477), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_PERCENT] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_BANG] = ACTIONS(1477), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_PIPE] = ACTIONS(1477), - [anon_sym_AMP_AMP] = ACTIONS(1475), - [anon_sym_PIPE_PIPE] = ACTIONS(1475), - [anon_sym_LT_LT] = ACTIONS(1477), - [anon_sym_GT_GT] = ACTIONS(1477), - [anon_sym_PLUS_EQ] = ACTIONS(1475), - [anon_sym_DASH_EQ] = ACTIONS(1475), - [anon_sym_STAR_EQ] = ACTIONS(1475), - [anon_sym_SLASH_EQ] = ACTIONS(1475), - [anon_sym_PERCENT_EQ] = ACTIONS(1475), - [anon_sym_CARET_EQ] = ACTIONS(1475), - [anon_sym_AMP_EQ] = ACTIONS(1475), - [anon_sym_PIPE_EQ] = ACTIONS(1475), - [anon_sym_LT_LT_EQ] = ACTIONS(1475), - [anon_sym_GT_GT_EQ] = ACTIONS(1475), - [anon_sym_EQ] = ACTIONS(1477), - [anon_sym_EQ_EQ] = ACTIONS(1475), - [anon_sym_BANG_EQ] = ACTIONS(1475), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT_EQ] = ACTIONS(1475), - [anon_sym_LT_EQ] = ACTIONS(1475), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_DOT_DOT] = ACTIONS(1477), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1475), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1475), - [anon_sym_COLON_COLON] = ACTIONS(1475), - [anon_sym_POUND] = ACTIONS(1475), - [anon_sym_SQUOTE] = ACTIONS(1477), - [anon_sym_as] = ACTIONS(1477), - [anon_sym_async] = ACTIONS(1477), - [anon_sym_break] = ACTIONS(1477), - [anon_sym_const] = ACTIONS(1477), - [anon_sym_continue] = ACTIONS(1477), - [anon_sym_default] = ACTIONS(1477), - [anon_sym_enum] = ACTIONS(1477), - [anon_sym_fn] = ACTIONS(1477), - [anon_sym_for] = ACTIONS(1477), - [anon_sym_gen] = ACTIONS(1477), - [anon_sym_if] = ACTIONS(1477), - [anon_sym_impl] = ACTIONS(1477), - [anon_sym_let] = ACTIONS(1477), - [anon_sym_loop] = ACTIONS(1477), - [anon_sym_match] = ACTIONS(1477), - [anon_sym_mod] = ACTIONS(1477), - [anon_sym_pub] = ACTIONS(1477), - [anon_sym_return] = ACTIONS(1477), - [anon_sym_static] = ACTIONS(1477), - [anon_sym_struct] = ACTIONS(1477), - [anon_sym_trait] = ACTIONS(1477), - [anon_sym_type] = ACTIONS(1477), - [anon_sym_union] = ACTIONS(1477), - [anon_sym_unsafe] = ACTIONS(1477), - [anon_sym_use] = ACTIONS(1477), - [anon_sym_while] = ACTIONS(1477), - [anon_sym_extern] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1477), - [anon_sym_move] = ACTIONS(1477), - [anon_sym_try] = ACTIONS(1477), - [sym_integer_literal] = ACTIONS(1475), - [aux_sym_string_literal_token1] = ACTIONS(1475), - [sym_char_literal] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1477), - [anon_sym_false] = ACTIONS(1477), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1477), - [sym_super] = ACTIONS(1477), - [sym_crate] = ACTIONS(1477), - [sym_metavariable] = ACTIONS(1475), - [sym__raw_string_literal_start] = ACTIONS(1475), - [sym_float_literal] = ACTIONS(1475), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1053), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_RPAREN] = ACTIONS(1325), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1065), + [anon_sym_i8] = ACTIONS(1065), + [anon_sym_u16] = ACTIONS(1065), + [anon_sym_i16] = ACTIONS(1065), + [anon_sym_u32] = ACTIONS(1065), + [anon_sym_i32] = ACTIONS(1065), + [anon_sym_u64] = ACTIONS(1065), + [anon_sym_i64] = ACTIONS(1065), + [anon_sym_u128] = ACTIONS(1065), + [anon_sym_i128] = ACTIONS(1065), + [anon_sym_isize] = ACTIONS(1065), + [anon_sym_usize] = ACTIONS(1065), + [anon_sym_f32] = ACTIONS(1065), + [anon_sym_f64] = ACTIONS(1065), + [anon_sym_bool] = ACTIONS(1065), + [anon_sym_str] = ACTIONS(1065), + [anon_sym_char] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1301), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COMMA] = ACTIONS(1307), + [anon_sym_COLON_COLON] = ACTIONS(1085), + [anon_sym_SQUOTE] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1309), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_default] = ACTIONS(1095), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1101), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_static] = ACTIONS(1311), + [anon_sym_union] = ACTIONS(1101), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_ref] = ACTIONS(1109), + [anon_sym_dyn] = ACTIONS(1111), + [sym_mutable_specifier] = ACTIONS(1313), + [anon_sym_move] = ACTIONS(1315), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1123), + [sym_super] = ACTIONS(1123), + [sym_crate] = ACTIONS(1123), + [sym_metavariable] = ACTIONS(1125), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(405)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_self_parameter] = STATE(3392), - [sym_variadic_parameter] = STATE(3392), - [sym_parameter] = STATE(3392), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3141), - [sym_bracketed_type] = STATE(3691), - [sym_lifetime] = STATE(3008), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3333), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2540), - [sym_scoped_identifier] = STATE(2311), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3210), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(405), [sym_block_comment] = STATE(405), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u128] = ACTIONS(1187), - [anon_sym_i128] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_str] = ACTIONS(1187), - [anon_sym_char] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1479), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1163), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1201), - [sym_super] = ACTIONS(1203), - [sym_crate] = ACTIONS(1203), - [sym_metavariable] = ACTIONS(1205), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [ts_builtin_sym_end] = ACTIONS(1327), + [sym_identifier] = ACTIONS(1329), + [anon_sym_SEMI] = ACTIONS(1327), + [anon_sym_macro_rules_BANG] = ACTIONS(1327), + [anon_sym_LPAREN] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1327), + [anon_sym_RBRACE] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_QMARK] = ACTIONS(1327), + [anon_sym_u8] = ACTIONS(1329), + [anon_sym_i8] = ACTIONS(1329), + [anon_sym_u16] = ACTIONS(1329), + [anon_sym_i16] = ACTIONS(1329), + [anon_sym_u32] = ACTIONS(1329), + [anon_sym_i32] = ACTIONS(1329), + [anon_sym_u64] = ACTIONS(1329), + [anon_sym_i64] = ACTIONS(1329), + [anon_sym_u128] = ACTIONS(1329), + [anon_sym_i128] = ACTIONS(1329), + [anon_sym_isize] = ACTIONS(1329), + [anon_sym_usize] = ACTIONS(1329), + [anon_sym_f32] = ACTIONS(1329), + [anon_sym_f64] = ACTIONS(1329), + [anon_sym_bool] = ACTIONS(1329), + [anon_sym_str] = ACTIONS(1329), + [anon_sym_char] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_PERCENT] = ACTIONS(1329), + [anon_sym_CARET] = ACTIONS(1329), + [anon_sym_BANG] = ACTIONS(1329), + [anon_sym_AMP] = ACTIONS(1329), + [anon_sym_PIPE] = ACTIONS(1329), + [anon_sym_AMP_AMP] = ACTIONS(1327), + [anon_sym_PIPE_PIPE] = ACTIONS(1327), + [anon_sym_LT_LT] = ACTIONS(1329), + [anon_sym_GT_GT] = ACTIONS(1329), + [anon_sym_PLUS_EQ] = ACTIONS(1327), + [anon_sym_DASH_EQ] = ACTIONS(1327), + [anon_sym_STAR_EQ] = ACTIONS(1327), + [anon_sym_SLASH_EQ] = ACTIONS(1327), + [anon_sym_PERCENT_EQ] = ACTIONS(1327), + [anon_sym_CARET_EQ] = ACTIONS(1327), + [anon_sym_AMP_EQ] = ACTIONS(1327), + [anon_sym_PIPE_EQ] = ACTIONS(1327), + [anon_sym_LT_LT_EQ] = ACTIONS(1327), + [anon_sym_GT_GT_EQ] = ACTIONS(1327), + [anon_sym_EQ] = ACTIONS(1329), + [anon_sym_EQ_EQ] = ACTIONS(1327), + [anon_sym_BANG_EQ] = ACTIONS(1327), + [anon_sym_GT] = ACTIONS(1329), + [anon_sym_LT] = ACTIONS(1329), + [anon_sym_GT_EQ] = ACTIONS(1327), + [anon_sym_LT_EQ] = ACTIONS(1327), + [anon_sym_DOT] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1329), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1327), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1327), + [anon_sym_COLON_COLON] = ACTIONS(1327), + [anon_sym_POUND] = ACTIONS(1327), + [anon_sym_SQUOTE] = ACTIONS(1329), + [anon_sym_as] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_break] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_continue] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1329), + [anon_sym_enum] = ACTIONS(1329), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1329), + [anon_sym_gen] = ACTIONS(1329), + [anon_sym_if] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1329), + [anon_sym_let] = ACTIONS(1329), + [anon_sym_loop] = ACTIONS(1329), + [anon_sym_match] = ACTIONS(1329), + [anon_sym_mod] = ACTIONS(1329), + [anon_sym_pub] = ACTIONS(1329), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_static] = ACTIONS(1329), + [anon_sym_struct] = ACTIONS(1329), + [anon_sym_trait] = ACTIONS(1329), + [anon_sym_type] = ACTIONS(1329), + [anon_sym_union] = ACTIONS(1329), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_use] = ACTIONS(1329), + [anon_sym_while] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1329), + [anon_sym_yield] = ACTIONS(1329), + [anon_sym_move] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(1329), + [sym_integer_literal] = ACTIONS(1327), + [aux_sym_string_literal_token1] = ACTIONS(1327), + [sym_char_literal] = ACTIONS(1327), + [anon_sym_true] = ACTIONS(1329), + [anon_sym_false] = ACTIONS(1329), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1329), + [sym_super] = ACTIONS(1329), + [sym_crate] = ACTIONS(1329), + [sym_metavariable] = ACTIONS(1327), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1327), }, [STATE(406)] = { [sym_line_comment] = STATE(406), [sym_block_comment] = STATE(406), - [ts_builtin_sym_end] = ACTIONS(1481), - [sym_identifier] = ACTIONS(1483), - [anon_sym_SEMI] = ACTIONS(1481), - [anon_sym_macro_rules_BANG] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1481), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1481), - [anon_sym_RBRACE] = ACTIONS(1481), - [anon_sym_PLUS] = ACTIONS(1483), - [anon_sym_STAR] = ACTIONS(1483), - [anon_sym_QMARK] = ACTIONS(1481), - [anon_sym_u8] = ACTIONS(1483), - [anon_sym_i8] = ACTIONS(1483), - [anon_sym_u16] = ACTIONS(1483), - [anon_sym_i16] = ACTIONS(1483), - [anon_sym_u32] = ACTIONS(1483), - [anon_sym_i32] = ACTIONS(1483), - [anon_sym_u64] = ACTIONS(1483), - [anon_sym_i64] = ACTIONS(1483), - [anon_sym_u128] = ACTIONS(1483), - [anon_sym_i128] = ACTIONS(1483), - [anon_sym_isize] = ACTIONS(1483), - [anon_sym_usize] = ACTIONS(1483), - [anon_sym_f32] = ACTIONS(1483), - [anon_sym_f64] = ACTIONS(1483), - [anon_sym_bool] = ACTIONS(1483), - [anon_sym_str] = ACTIONS(1483), - [anon_sym_char] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1483), - [anon_sym_SLASH] = ACTIONS(1483), - [anon_sym_PERCENT] = ACTIONS(1483), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1483), - [anon_sym_AMP_AMP] = ACTIONS(1481), - [anon_sym_PIPE_PIPE] = ACTIONS(1481), - [anon_sym_LT_LT] = ACTIONS(1483), - [anon_sym_GT_GT] = ACTIONS(1483), - [anon_sym_PLUS_EQ] = ACTIONS(1481), - [anon_sym_DASH_EQ] = ACTIONS(1481), - [anon_sym_STAR_EQ] = ACTIONS(1481), - [anon_sym_SLASH_EQ] = ACTIONS(1481), - [anon_sym_PERCENT_EQ] = ACTIONS(1481), - [anon_sym_CARET_EQ] = ACTIONS(1481), - [anon_sym_AMP_EQ] = ACTIONS(1481), - [anon_sym_PIPE_EQ] = ACTIONS(1481), - [anon_sym_LT_LT_EQ] = ACTIONS(1481), - [anon_sym_GT_GT_EQ] = ACTIONS(1481), - [anon_sym_EQ] = ACTIONS(1483), - [anon_sym_EQ_EQ] = ACTIONS(1481), - [anon_sym_BANG_EQ] = ACTIONS(1481), - [anon_sym_GT] = ACTIONS(1483), - [anon_sym_LT] = ACTIONS(1483), - [anon_sym_GT_EQ] = ACTIONS(1481), - [anon_sym_LT_EQ] = ACTIONS(1481), - [anon_sym_DOT] = ACTIONS(1483), - [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), - [anon_sym_COLON_COLON] = ACTIONS(1481), - [anon_sym_POUND] = ACTIONS(1481), - [anon_sym_SQUOTE] = ACTIONS(1483), - [anon_sym_as] = ACTIONS(1483), - [anon_sym_async] = ACTIONS(1483), - [anon_sym_break] = ACTIONS(1483), - [anon_sym_const] = ACTIONS(1483), - [anon_sym_continue] = ACTIONS(1483), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_enum] = ACTIONS(1483), - [anon_sym_fn] = ACTIONS(1483), - [anon_sym_for] = ACTIONS(1483), - [anon_sym_gen] = ACTIONS(1483), - [anon_sym_if] = ACTIONS(1483), - [anon_sym_impl] = ACTIONS(1483), - [anon_sym_let] = ACTIONS(1483), - [anon_sym_loop] = ACTIONS(1483), - [anon_sym_match] = ACTIONS(1483), - [anon_sym_mod] = ACTIONS(1483), - [anon_sym_pub] = ACTIONS(1483), - [anon_sym_return] = ACTIONS(1483), - [anon_sym_static] = ACTIONS(1483), - [anon_sym_struct] = ACTIONS(1483), - [anon_sym_trait] = ACTIONS(1483), - [anon_sym_type] = ACTIONS(1483), - [anon_sym_union] = ACTIONS(1483), - [anon_sym_unsafe] = ACTIONS(1483), - [anon_sym_use] = ACTIONS(1483), - [anon_sym_while] = ACTIONS(1483), - [anon_sym_extern] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1483), - [anon_sym_move] = ACTIONS(1483), - [anon_sym_try] = ACTIONS(1483), - [sym_integer_literal] = ACTIONS(1481), - [aux_sym_string_literal_token1] = ACTIONS(1481), - [sym_char_literal] = ACTIONS(1481), - [anon_sym_true] = ACTIONS(1483), - [anon_sym_false] = ACTIONS(1483), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1483), - [sym_super] = ACTIONS(1483), - [sym_crate] = ACTIONS(1483), - [sym_metavariable] = ACTIONS(1481), - [sym__raw_string_literal_start] = ACTIONS(1481), - [sym_float_literal] = ACTIONS(1481), + [ts_builtin_sym_end] = ACTIONS(1331), + [sym_identifier] = ACTIONS(1333), + [anon_sym_SEMI] = ACTIONS(1331), + [anon_sym_macro_rules_BANG] = ACTIONS(1331), + [anon_sym_LPAREN] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LBRACE] = ACTIONS(1331), + [anon_sym_RBRACE] = ACTIONS(1331), + [anon_sym_PLUS] = ACTIONS(1333), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_QMARK] = ACTIONS(1331), + [anon_sym_u8] = ACTIONS(1333), + [anon_sym_i8] = ACTIONS(1333), + [anon_sym_u16] = ACTIONS(1333), + [anon_sym_i16] = ACTIONS(1333), + [anon_sym_u32] = ACTIONS(1333), + [anon_sym_i32] = ACTIONS(1333), + [anon_sym_u64] = ACTIONS(1333), + [anon_sym_i64] = ACTIONS(1333), + [anon_sym_u128] = ACTIONS(1333), + [anon_sym_i128] = ACTIONS(1333), + [anon_sym_isize] = ACTIONS(1333), + [anon_sym_usize] = ACTIONS(1333), + [anon_sym_f32] = ACTIONS(1333), + [anon_sym_f64] = ACTIONS(1333), + [anon_sym_bool] = ACTIONS(1333), + [anon_sym_str] = ACTIONS(1333), + [anon_sym_char] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1333), + [anon_sym_SLASH] = ACTIONS(1333), + [anon_sym_PERCENT] = ACTIONS(1333), + [anon_sym_CARET] = ACTIONS(1333), + [anon_sym_BANG] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_PIPE] = ACTIONS(1333), + [anon_sym_AMP_AMP] = ACTIONS(1331), + [anon_sym_PIPE_PIPE] = ACTIONS(1331), + [anon_sym_LT_LT] = ACTIONS(1333), + [anon_sym_GT_GT] = ACTIONS(1333), + [anon_sym_PLUS_EQ] = ACTIONS(1331), + [anon_sym_DASH_EQ] = ACTIONS(1331), + [anon_sym_STAR_EQ] = ACTIONS(1331), + [anon_sym_SLASH_EQ] = ACTIONS(1331), + [anon_sym_PERCENT_EQ] = ACTIONS(1331), + [anon_sym_CARET_EQ] = ACTIONS(1331), + [anon_sym_AMP_EQ] = ACTIONS(1331), + [anon_sym_PIPE_EQ] = ACTIONS(1331), + [anon_sym_LT_LT_EQ] = ACTIONS(1331), + [anon_sym_GT_GT_EQ] = ACTIONS(1331), + [anon_sym_EQ] = ACTIONS(1333), + [anon_sym_EQ_EQ] = ACTIONS(1331), + [anon_sym_BANG_EQ] = ACTIONS(1331), + [anon_sym_GT] = ACTIONS(1333), + [anon_sym_LT] = ACTIONS(1333), + [anon_sym_GT_EQ] = ACTIONS(1331), + [anon_sym_LT_EQ] = ACTIONS(1331), + [anon_sym_DOT] = ACTIONS(1333), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1331), + [anon_sym_COLON_COLON] = ACTIONS(1331), + [anon_sym_POUND] = ACTIONS(1331), + [anon_sym_SQUOTE] = ACTIONS(1333), + [anon_sym_as] = ACTIONS(1333), + [anon_sym_async] = ACTIONS(1333), + [anon_sym_break] = ACTIONS(1333), + [anon_sym_const] = ACTIONS(1333), + [anon_sym_continue] = ACTIONS(1333), + [anon_sym_default] = ACTIONS(1333), + [anon_sym_enum] = ACTIONS(1333), + [anon_sym_fn] = ACTIONS(1333), + [anon_sym_for] = ACTIONS(1333), + [anon_sym_gen] = ACTIONS(1333), + [anon_sym_if] = ACTIONS(1333), + [anon_sym_impl] = ACTIONS(1333), + [anon_sym_let] = ACTIONS(1333), + [anon_sym_loop] = ACTIONS(1333), + [anon_sym_match] = ACTIONS(1333), + [anon_sym_mod] = ACTIONS(1333), + [anon_sym_pub] = ACTIONS(1333), + [anon_sym_return] = ACTIONS(1333), + [anon_sym_static] = ACTIONS(1333), + [anon_sym_struct] = ACTIONS(1333), + [anon_sym_trait] = ACTIONS(1333), + [anon_sym_type] = ACTIONS(1333), + [anon_sym_union] = ACTIONS(1333), + [anon_sym_unsafe] = ACTIONS(1333), + [anon_sym_use] = ACTIONS(1333), + [anon_sym_while] = ACTIONS(1333), + [anon_sym_extern] = ACTIONS(1333), + [anon_sym_else] = ACTIONS(1333), + [anon_sym_yield] = ACTIONS(1333), + [anon_sym_move] = ACTIONS(1333), + [anon_sym_try] = ACTIONS(1333), + [sym_integer_literal] = ACTIONS(1331), + [aux_sym_string_literal_token1] = ACTIONS(1331), + [sym_char_literal] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1333), + [sym_super] = ACTIONS(1333), + [sym_crate] = ACTIONS(1333), + [sym_metavariable] = ACTIONS(1331), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1331), }, [STATE(407)] = { [sym_line_comment] = STATE(407), [sym_block_comment] = STATE(407), - [ts_builtin_sym_end] = ACTIONS(1485), - [sym_identifier] = ACTIONS(1487), - [anon_sym_SEMI] = ACTIONS(1485), - [anon_sym_macro_rules_BANG] = ACTIONS(1485), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1485), - [anon_sym_LBRACE] = ACTIONS(1485), - [anon_sym_RBRACE] = ACTIONS(1485), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_STAR] = ACTIONS(1487), - [anon_sym_QMARK] = ACTIONS(1485), - [anon_sym_u8] = ACTIONS(1487), - [anon_sym_i8] = ACTIONS(1487), - [anon_sym_u16] = ACTIONS(1487), - [anon_sym_i16] = ACTIONS(1487), - [anon_sym_u32] = ACTIONS(1487), - [anon_sym_i32] = ACTIONS(1487), - [anon_sym_u64] = ACTIONS(1487), - [anon_sym_i64] = ACTIONS(1487), - [anon_sym_u128] = ACTIONS(1487), - [anon_sym_i128] = ACTIONS(1487), - [anon_sym_isize] = ACTIONS(1487), - [anon_sym_usize] = ACTIONS(1487), - [anon_sym_f32] = ACTIONS(1487), - [anon_sym_f64] = ACTIONS(1487), - [anon_sym_bool] = ACTIONS(1487), - [anon_sym_str] = ACTIONS(1487), - [anon_sym_char] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1487), - [anon_sym_PERCENT] = ACTIONS(1487), - [anon_sym_CARET] = ACTIONS(1487), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_AMP] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1487), - [anon_sym_AMP_AMP] = ACTIONS(1485), - [anon_sym_PIPE_PIPE] = ACTIONS(1485), - [anon_sym_LT_LT] = ACTIONS(1487), - [anon_sym_GT_GT] = ACTIONS(1487), - [anon_sym_PLUS_EQ] = ACTIONS(1485), - [anon_sym_DASH_EQ] = ACTIONS(1485), - [anon_sym_STAR_EQ] = ACTIONS(1485), - [anon_sym_SLASH_EQ] = ACTIONS(1485), - [anon_sym_PERCENT_EQ] = ACTIONS(1485), - [anon_sym_CARET_EQ] = ACTIONS(1485), - [anon_sym_AMP_EQ] = ACTIONS(1485), - [anon_sym_PIPE_EQ] = ACTIONS(1485), - [anon_sym_LT_LT_EQ] = ACTIONS(1485), - [anon_sym_GT_GT_EQ] = ACTIONS(1485), - [anon_sym_EQ] = ACTIONS(1487), - [anon_sym_EQ_EQ] = ACTIONS(1485), - [anon_sym_BANG_EQ] = ACTIONS(1485), - [anon_sym_GT] = ACTIONS(1487), - [anon_sym_LT] = ACTIONS(1487), - [anon_sym_GT_EQ] = ACTIONS(1485), - [anon_sym_LT_EQ] = ACTIONS(1485), - [anon_sym_DOT] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1487), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1485), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1485), - [anon_sym_COLON_COLON] = ACTIONS(1485), - [anon_sym_POUND] = ACTIONS(1485), - [anon_sym_SQUOTE] = ACTIONS(1487), - [anon_sym_as] = ACTIONS(1487), - [anon_sym_async] = ACTIONS(1487), - [anon_sym_break] = ACTIONS(1487), - [anon_sym_const] = ACTIONS(1487), - [anon_sym_continue] = ACTIONS(1487), - [anon_sym_default] = ACTIONS(1487), - [anon_sym_enum] = ACTIONS(1487), - [anon_sym_fn] = ACTIONS(1487), - [anon_sym_for] = ACTIONS(1487), - [anon_sym_gen] = ACTIONS(1487), - [anon_sym_if] = ACTIONS(1487), - [anon_sym_impl] = ACTIONS(1487), - [anon_sym_let] = ACTIONS(1487), - [anon_sym_loop] = ACTIONS(1487), - [anon_sym_match] = ACTIONS(1487), - [anon_sym_mod] = ACTIONS(1487), - [anon_sym_pub] = ACTIONS(1487), - [anon_sym_return] = ACTIONS(1487), - [anon_sym_static] = ACTIONS(1487), - [anon_sym_struct] = ACTIONS(1487), - [anon_sym_trait] = ACTIONS(1487), - [anon_sym_type] = ACTIONS(1487), - [anon_sym_union] = ACTIONS(1487), - [anon_sym_unsafe] = ACTIONS(1487), - [anon_sym_use] = ACTIONS(1487), - [anon_sym_while] = ACTIONS(1487), - [anon_sym_extern] = ACTIONS(1487), - [anon_sym_yield] = ACTIONS(1487), - [anon_sym_move] = ACTIONS(1487), - [anon_sym_try] = ACTIONS(1487), - [sym_integer_literal] = ACTIONS(1485), - [aux_sym_string_literal_token1] = ACTIONS(1485), - [sym_char_literal] = ACTIONS(1485), - [anon_sym_true] = ACTIONS(1487), - [anon_sym_false] = ACTIONS(1487), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1487), - [sym_super] = ACTIONS(1487), - [sym_crate] = ACTIONS(1487), - [sym_metavariable] = ACTIONS(1485), - [sym__raw_string_literal_start] = ACTIONS(1485), - [sym_float_literal] = ACTIONS(1485), + [ts_builtin_sym_end] = ACTIONS(1335), + [sym_identifier] = ACTIONS(1337), + [anon_sym_SEMI] = ACTIONS(1335), + [anon_sym_macro_rules_BANG] = ACTIONS(1335), + [anon_sym_LPAREN] = ACTIONS(1335), + [anon_sym_LBRACK] = ACTIONS(1335), + [anon_sym_LBRACE] = ACTIONS(1335), + [anon_sym_RBRACE] = ACTIONS(1335), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_STAR] = ACTIONS(1337), + [anon_sym_QMARK] = ACTIONS(1335), + [anon_sym_u8] = ACTIONS(1337), + [anon_sym_i8] = ACTIONS(1337), + [anon_sym_u16] = ACTIONS(1337), + [anon_sym_i16] = ACTIONS(1337), + [anon_sym_u32] = ACTIONS(1337), + [anon_sym_i32] = ACTIONS(1337), + [anon_sym_u64] = ACTIONS(1337), + [anon_sym_i64] = ACTIONS(1337), + [anon_sym_u128] = ACTIONS(1337), + [anon_sym_i128] = ACTIONS(1337), + [anon_sym_isize] = ACTIONS(1337), + [anon_sym_usize] = ACTIONS(1337), + [anon_sym_f32] = ACTIONS(1337), + [anon_sym_f64] = ACTIONS(1337), + [anon_sym_bool] = ACTIONS(1337), + [anon_sym_str] = ACTIONS(1337), + [anon_sym_char] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_SLASH] = ACTIONS(1337), + [anon_sym_PERCENT] = ACTIONS(1337), + [anon_sym_CARET] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_AMP] = ACTIONS(1337), + [anon_sym_PIPE] = ACTIONS(1337), + [anon_sym_AMP_AMP] = ACTIONS(1335), + [anon_sym_PIPE_PIPE] = ACTIONS(1335), + [anon_sym_LT_LT] = ACTIONS(1337), + [anon_sym_GT_GT] = ACTIONS(1337), + [anon_sym_PLUS_EQ] = ACTIONS(1335), + [anon_sym_DASH_EQ] = ACTIONS(1335), + [anon_sym_STAR_EQ] = ACTIONS(1335), + [anon_sym_SLASH_EQ] = ACTIONS(1335), + [anon_sym_PERCENT_EQ] = ACTIONS(1335), + [anon_sym_CARET_EQ] = ACTIONS(1335), + [anon_sym_AMP_EQ] = ACTIONS(1335), + [anon_sym_PIPE_EQ] = ACTIONS(1335), + [anon_sym_LT_LT_EQ] = ACTIONS(1335), + [anon_sym_GT_GT_EQ] = ACTIONS(1335), + [anon_sym_EQ] = ACTIONS(1337), + [anon_sym_EQ_EQ] = ACTIONS(1335), + [anon_sym_BANG_EQ] = ACTIONS(1335), + [anon_sym_GT] = ACTIONS(1337), + [anon_sym_LT] = ACTIONS(1337), + [anon_sym_GT_EQ] = ACTIONS(1335), + [anon_sym_LT_EQ] = ACTIONS(1335), + [anon_sym_DOT] = ACTIONS(1337), + [anon_sym_DOT_DOT] = ACTIONS(1337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1335), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1335), + [anon_sym_COLON_COLON] = ACTIONS(1335), + [anon_sym_POUND] = ACTIONS(1335), + [anon_sym_SQUOTE] = ACTIONS(1337), + [anon_sym_as] = ACTIONS(1337), + [anon_sym_async] = ACTIONS(1337), + [anon_sym_break] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1337), + [anon_sym_continue] = ACTIONS(1337), + [anon_sym_default] = ACTIONS(1337), + [anon_sym_enum] = ACTIONS(1337), + [anon_sym_fn] = ACTIONS(1337), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1337), + [anon_sym_if] = ACTIONS(1337), + [anon_sym_impl] = ACTIONS(1337), + [anon_sym_let] = ACTIONS(1337), + [anon_sym_loop] = ACTIONS(1337), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_mod] = ACTIONS(1337), + [anon_sym_pub] = ACTIONS(1337), + [anon_sym_return] = ACTIONS(1337), + [anon_sym_static] = ACTIONS(1337), + [anon_sym_struct] = ACTIONS(1337), + [anon_sym_trait] = ACTIONS(1337), + [anon_sym_type] = ACTIONS(1337), + [anon_sym_union] = ACTIONS(1337), + [anon_sym_unsafe] = ACTIONS(1337), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_while] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1337), + [anon_sym_else] = ACTIONS(1337), + [anon_sym_yield] = ACTIONS(1337), + [anon_sym_move] = ACTIONS(1337), + [anon_sym_try] = ACTIONS(1337), + [sym_integer_literal] = ACTIONS(1335), + [aux_sym_string_literal_token1] = ACTIONS(1335), + [sym_char_literal] = ACTIONS(1335), + [anon_sym_true] = ACTIONS(1337), + [anon_sym_false] = ACTIONS(1337), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1337), + [sym_super] = ACTIONS(1337), + [sym_crate] = ACTIONS(1337), + [sym_metavariable] = ACTIONS(1335), + [sym__raw_string_literal_start] = ACTIONS(1335), + [sym_float_literal] = ACTIONS(1335), }, [STATE(408)] = { [sym_line_comment] = STATE(408), [sym_block_comment] = STATE(408), - [ts_builtin_sym_end] = ACTIONS(1489), - [sym_identifier] = ACTIONS(1491), - [anon_sym_SEMI] = ACTIONS(1489), - [anon_sym_macro_rules_BANG] = ACTIONS(1489), - [anon_sym_LPAREN] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1489), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_RBRACE] = ACTIONS(1489), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1491), - [anon_sym_QMARK] = ACTIONS(1489), - [anon_sym_u8] = ACTIONS(1491), - [anon_sym_i8] = ACTIONS(1491), - [anon_sym_u16] = ACTIONS(1491), - [anon_sym_i16] = ACTIONS(1491), - [anon_sym_u32] = ACTIONS(1491), - [anon_sym_i32] = ACTIONS(1491), - [anon_sym_u64] = ACTIONS(1491), - [anon_sym_i64] = ACTIONS(1491), - [anon_sym_u128] = ACTIONS(1491), - [anon_sym_i128] = ACTIONS(1491), - [anon_sym_isize] = ACTIONS(1491), - [anon_sym_usize] = ACTIONS(1491), - [anon_sym_f32] = ACTIONS(1491), - [anon_sym_f64] = ACTIONS(1491), - [anon_sym_bool] = ACTIONS(1491), - [anon_sym_str] = ACTIONS(1491), - [anon_sym_char] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_SLASH] = ACTIONS(1491), - [anon_sym_PERCENT] = ACTIONS(1491), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PIPE] = ACTIONS(1491), - [anon_sym_AMP_AMP] = ACTIONS(1489), - [anon_sym_PIPE_PIPE] = ACTIONS(1489), - [anon_sym_LT_LT] = ACTIONS(1491), - [anon_sym_GT_GT] = ACTIONS(1491), - [anon_sym_PLUS_EQ] = ACTIONS(1489), - [anon_sym_DASH_EQ] = ACTIONS(1489), - [anon_sym_STAR_EQ] = ACTIONS(1489), - [anon_sym_SLASH_EQ] = ACTIONS(1489), - [anon_sym_PERCENT_EQ] = ACTIONS(1489), - [anon_sym_CARET_EQ] = ACTIONS(1489), - [anon_sym_AMP_EQ] = ACTIONS(1489), - [anon_sym_PIPE_EQ] = ACTIONS(1489), - [anon_sym_LT_LT_EQ] = ACTIONS(1489), - [anon_sym_GT_GT_EQ] = ACTIONS(1489), - [anon_sym_EQ] = ACTIONS(1491), - [anon_sym_EQ_EQ] = ACTIONS(1489), - [anon_sym_BANG_EQ] = ACTIONS(1489), - [anon_sym_GT] = ACTIONS(1491), - [anon_sym_LT] = ACTIONS(1491), - [anon_sym_GT_EQ] = ACTIONS(1489), - [anon_sym_LT_EQ] = ACTIONS(1489), - [anon_sym_DOT] = ACTIONS(1491), - [anon_sym_DOT_DOT] = ACTIONS(1491), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1489), - [anon_sym_COLON_COLON] = ACTIONS(1489), - [anon_sym_POUND] = ACTIONS(1489), - [anon_sym_SQUOTE] = ACTIONS(1491), - [anon_sym_as] = ACTIONS(1491), - [anon_sym_async] = ACTIONS(1491), - [anon_sym_break] = ACTIONS(1491), - [anon_sym_const] = ACTIONS(1491), - [anon_sym_continue] = ACTIONS(1491), - [anon_sym_default] = ACTIONS(1491), - [anon_sym_enum] = ACTIONS(1491), - [anon_sym_fn] = ACTIONS(1491), - [anon_sym_for] = ACTIONS(1491), - [anon_sym_gen] = ACTIONS(1491), - [anon_sym_if] = ACTIONS(1491), - [anon_sym_impl] = ACTIONS(1491), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_loop] = ACTIONS(1491), - [anon_sym_match] = ACTIONS(1491), - [anon_sym_mod] = ACTIONS(1491), - [anon_sym_pub] = ACTIONS(1491), - [anon_sym_return] = ACTIONS(1491), - [anon_sym_static] = ACTIONS(1491), - [anon_sym_struct] = ACTIONS(1491), - [anon_sym_trait] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_union] = ACTIONS(1491), - [anon_sym_unsafe] = ACTIONS(1491), - [anon_sym_use] = ACTIONS(1491), - [anon_sym_while] = ACTIONS(1491), - [anon_sym_extern] = ACTIONS(1491), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_move] = ACTIONS(1491), - [anon_sym_try] = ACTIONS(1491), - [sym_integer_literal] = ACTIONS(1489), - [aux_sym_string_literal_token1] = ACTIONS(1489), - [sym_char_literal] = ACTIONS(1489), - [anon_sym_true] = ACTIONS(1491), - [anon_sym_false] = ACTIONS(1491), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1491), - [sym_super] = ACTIONS(1491), - [sym_crate] = ACTIONS(1491), - [sym_metavariable] = ACTIONS(1489), - [sym__raw_string_literal_start] = ACTIONS(1489), - [sym_float_literal] = ACTIONS(1489), + [ts_builtin_sym_end] = ACTIONS(1339), + [sym_identifier] = ACTIONS(1341), + [anon_sym_SEMI] = ACTIONS(1339), + [anon_sym_macro_rules_BANG] = ACTIONS(1339), + [anon_sym_LPAREN] = ACTIONS(1339), + [anon_sym_LBRACK] = ACTIONS(1339), + [anon_sym_LBRACE] = ACTIONS(1339), + [anon_sym_RBRACE] = ACTIONS(1339), + [anon_sym_PLUS] = ACTIONS(1341), + [anon_sym_STAR] = ACTIONS(1341), + [anon_sym_QMARK] = ACTIONS(1339), + [anon_sym_u8] = ACTIONS(1341), + [anon_sym_i8] = ACTIONS(1341), + [anon_sym_u16] = ACTIONS(1341), + [anon_sym_i16] = ACTIONS(1341), + [anon_sym_u32] = ACTIONS(1341), + [anon_sym_i32] = ACTIONS(1341), + [anon_sym_u64] = ACTIONS(1341), + [anon_sym_i64] = ACTIONS(1341), + [anon_sym_u128] = ACTIONS(1341), + [anon_sym_i128] = ACTIONS(1341), + [anon_sym_isize] = ACTIONS(1341), + [anon_sym_usize] = ACTIONS(1341), + [anon_sym_f32] = ACTIONS(1341), + [anon_sym_f64] = ACTIONS(1341), + [anon_sym_bool] = ACTIONS(1341), + [anon_sym_str] = ACTIONS(1341), + [anon_sym_char] = ACTIONS(1341), + [anon_sym_DASH] = ACTIONS(1341), + [anon_sym_SLASH] = ACTIONS(1341), + [anon_sym_PERCENT] = ACTIONS(1341), + [anon_sym_CARET] = ACTIONS(1341), + [anon_sym_BANG] = ACTIONS(1341), + [anon_sym_AMP] = ACTIONS(1341), + [anon_sym_PIPE] = ACTIONS(1341), + [anon_sym_AMP_AMP] = ACTIONS(1339), + [anon_sym_PIPE_PIPE] = ACTIONS(1339), + [anon_sym_LT_LT] = ACTIONS(1341), + [anon_sym_GT_GT] = ACTIONS(1341), + [anon_sym_PLUS_EQ] = ACTIONS(1339), + [anon_sym_DASH_EQ] = ACTIONS(1339), + [anon_sym_STAR_EQ] = ACTIONS(1339), + [anon_sym_SLASH_EQ] = ACTIONS(1339), + [anon_sym_PERCENT_EQ] = ACTIONS(1339), + [anon_sym_CARET_EQ] = ACTIONS(1339), + [anon_sym_AMP_EQ] = ACTIONS(1339), + [anon_sym_PIPE_EQ] = ACTIONS(1339), + [anon_sym_LT_LT_EQ] = ACTIONS(1339), + [anon_sym_GT_GT_EQ] = ACTIONS(1339), + [anon_sym_EQ] = ACTIONS(1341), + [anon_sym_EQ_EQ] = ACTIONS(1339), + [anon_sym_BANG_EQ] = ACTIONS(1339), + [anon_sym_GT] = ACTIONS(1341), + [anon_sym_LT] = ACTIONS(1341), + [anon_sym_GT_EQ] = ACTIONS(1339), + [anon_sym_LT_EQ] = ACTIONS(1339), + [anon_sym_DOT] = ACTIONS(1341), + [anon_sym_DOT_DOT] = ACTIONS(1341), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1339), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1339), + [anon_sym_COLON_COLON] = ACTIONS(1339), + [anon_sym_POUND] = ACTIONS(1339), + [anon_sym_SQUOTE] = ACTIONS(1341), + [anon_sym_as] = ACTIONS(1341), + [anon_sym_async] = ACTIONS(1341), + [anon_sym_break] = ACTIONS(1341), + [anon_sym_const] = ACTIONS(1341), + [anon_sym_continue] = ACTIONS(1341), + [anon_sym_default] = ACTIONS(1341), + [anon_sym_enum] = ACTIONS(1341), + [anon_sym_fn] = ACTIONS(1341), + [anon_sym_for] = ACTIONS(1341), + [anon_sym_gen] = ACTIONS(1341), + [anon_sym_if] = ACTIONS(1341), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_let] = ACTIONS(1341), + [anon_sym_loop] = ACTIONS(1341), + [anon_sym_match] = ACTIONS(1341), + [anon_sym_mod] = ACTIONS(1341), + [anon_sym_pub] = ACTIONS(1341), + [anon_sym_return] = ACTIONS(1341), + [anon_sym_static] = ACTIONS(1341), + [anon_sym_struct] = ACTIONS(1341), + [anon_sym_trait] = ACTIONS(1341), + [anon_sym_type] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(1341), + [anon_sym_use] = ACTIONS(1341), + [anon_sym_while] = ACTIONS(1341), + [anon_sym_extern] = ACTIONS(1341), + [anon_sym_else] = ACTIONS(1341), + [anon_sym_yield] = ACTIONS(1341), + [anon_sym_move] = ACTIONS(1341), + [anon_sym_try] = ACTIONS(1341), + [sym_integer_literal] = ACTIONS(1339), + [aux_sym_string_literal_token1] = ACTIONS(1339), + [sym_char_literal] = ACTIONS(1339), + [anon_sym_true] = ACTIONS(1341), + [anon_sym_false] = ACTIONS(1341), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1341), + [sym_super] = ACTIONS(1341), + [sym_crate] = ACTIONS(1341), + [sym_metavariable] = ACTIONS(1339), + [sym__raw_string_literal_start] = ACTIONS(1339), + [sym_float_literal] = ACTIONS(1339), }, [STATE(409)] = { [sym_line_comment] = STATE(409), [sym_block_comment] = STATE(409), - [ts_builtin_sym_end] = ACTIONS(1493), - [sym_identifier] = ACTIONS(1495), - [anon_sym_SEMI] = ACTIONS(1493), - [anon_sym_macro_rules_BANG] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1493), - [anon_sym_RBRACE] = ACTIONS(1493), - [anon_sym_PLUS] = ACTIONS(1495), - [anon_sym_STAR] = ACTIONS(1495), - [anon_sym_QMARK] = ACTIONS(1493), - [anon_sym_u8] = ACTIONS(1495), - [anon_sym_i8] = ACTIONS(1495), - [anon_sym_u16] = ACTIONS(1495), - [anon_sym_i16] = ACTIONS(1495), - [anon_sym_u32] = ACTIONS(1495), - [anon_sym_i32] = ACTIONS(1495), - [anon_sym_u64] = ACTIONS(1495), - [anon_sym_i64] = ACTIONS(1495), - [anon_sym_u128] = ACTIONS(1495), - [anon_sym_i128] = ACTIONS(1495), - [anon_sym_isize] = ACTIONS(1495), - [anon_sym_usize] = ACTIONS(1495), - [anon_sym_f32] = ACTIONS(1495), - [anon_sym_f64] = ACTIONS(1495), - [anon_sym_bool] = ACTIONS(1495), - [anon_sym_str] = ACTIONS(1495), - [anon_sym_char] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1495), - [anon_sym_SLASH] = ACTIONS(1495), - [anon_sym_PERCENT] = ACTIONS(1495), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_PIPE] = ACTIONS(1495), - [anon_sym_AMP_AMP] = ACTIONS(1493), - [anon_sym_PIPE_PIPE] = ACTIONS(1493), - [anon_sym_LT_LT] = ACTIONS(1495), - [anon_sym_GT_GT] = ACTIONS(1495), - [anon_sym_PLUS_EQ] = ACTIONS(1493), - [anon_sym_DASH_EQ] = ACTIONS(1493), - [anon_sym_STAR_EQ] = ACTIONS(1493), - [anon_sym_SLASH_EQ] = ACTIONS(1493), - [anon_sym_PERCENT_EQ] = ACTIONS(1493), - [anon_sym_CARET_EQ] = ACTIONS(1493), - [anon_sym_AMP_EQ] = ACTIONS(1493), - [anon_sym_PIPE_EQ] = ACTIONS(1493), - [anon_sym_LT_LT_EQ] = ACTIONS(1493), - [anon_sym_GT_GT_EQ] = ACTIONS(1493), - [anon_sym_EQ] = ACTIONS(1495), - [anon_sym_EQ_EQ] = ACTIONS(1493), - [anon_sym_BANG_EQ] = ACTIONS(1493), - [anon_sym_GT] = ACTIONS(1495), - [anon_sym_LT] = ACTIONS(1495), - [anon_sym_GT_EQ] = ACTIONS(1493), - [anon_sym_LT_EQ] = ACTIONS(1493), - [anon_sym_DOT] = ACTIONS(1495), - [anon_sym_DOT_DOT] = ACTIONS(1495), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1493), - [anon_sym_COLON_COLON] = ACTIONS(1493), - [anon_sym_POUND] = ACTIONS(1493), - [anon_sym_SQUOTE] = ACTIONS(1495), - [anon_sym_as] = ACTIONS(1495), - [anon_sym_async] = ACTIONS(1495), - [anon_sym_break] = ACTIONS(1495), - [anon_sym_const] = ACTIONS(1495), - [anon_sym_continue] = ACTIONS(1495), - [anon_sym_default] = ACTIONS(1495), - [anon_sym_enum] = ACTIONS(1495), - [anon_sym_fn] = ACTIONS(1495), - [anon_sym_for] = ACTIONS(1495), - [anon_sym_gen] = ACTIONS(1495), - [anon_sym_if] = ACTIONS(1495), - [anon_sym_impl] = ACTIONS(1495), - [anon_sym_let] = ACTIONS(1495), - [anon_sym_loop] = ACTIONS(1495), - [anon_sym_match] = ACTIONS(1495), - [anon_sym_mod] = ACTIONS(1495), - [anon_sym_pub] = ACTIONS(1495), - [anon_sym_return] = ACTIONS(1495), - [anon_sym_static] = ACTIONS(1495), - [anon_sym_struct] = ACTIONS(1495), - [anon_sym_trait] = ACTIONS(1495), - [anon_sym_type] = ACTIONS(1495), - [anon_sym_union] = ACTIONS(1495), - [anon_sym_unsafe] = ACTIONS(1495), - [anon_sym_use] = ACTIONS(1495), - [anon_sym_while] = ACTIONS(1495), - [anon_sym_extern] = ACTIONS(1495), - [anon_sym_yield] = ACTIONS(1495), - [anon_sym_move] = ACTIONS(1495), - [anon_sym_try] = ACTIONS(1495), - [sym_integer_literal] = ACTIONS(1493), - [aux_sym_string_literal_token1] = ACTIONS(1493), - [sym_char_literal] = ACTIONS(1493), - [anon_sym_true] = ACTIONS(1495), - [anon_sym_false] = ACTIONS(1495), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1495), - [sym_super] = ACTIONS(1495), - [sym_crate] = ACTIONS(1495), - [sym_metavariable] = ACTIONS(1493), - [sym__raw_string_literal_start] = ACTIONS(1493), - [sym_float_literal] = ACTIONS(1493), + [ts_builtin_sym_end] = ACTIONS(1343), + [sym_identifier] = ACTIONS(1345), + [anon_sym_SEMI] = ACTIONS(1343), + [anon_sym_macro_rules_BANG] = ACTIONS(1343), + [anon_sym_LPAREN] = ACTIONS(1343), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1343), + [anon_sym_RBRACE] = ACTIONS(1343), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_QMARK] = ACTIONS(1343), + [anon_sym_u8] = ACTIONS(1345), + [anon_sym_i8] = ACTIONS(1345), + [anon_sym_u16] = ACTIONS(1345), + [anon_sym_i16] = ACTIONS(1345), + [anon_sym_u32] = ACTIONS(1345), + [anon_sym_i32] = ACTIONS(1345), + [anon_sym_u64] = ACTIONS(1345), + [anon_sym_i64] = ACTIONS(1345), + [anon_sym_u128] = ACTIONS(1345), + [anon_sym_i128] = ACTIONS(1345), + [anon_sym_isize] = ACTIONS(1345), + [anon_sym_usize] = ACTIONS(1345), + [anon_sym_f32] = ACTIONS(1345), + [anon_sym_f64] = ACTIONS(1345), + [anon_sym_bool] = ACTIONS(1345), + [anon_sym_str] = ACTIONS(1345), + [anon_sym_char] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_SLASH] = ACTIONS(1345), + [anon_sym_PERCENT] = ACTIONS(1345), + [anon_sym_CARET] = ACTIONS(1345), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PIPE] = ACTIONS(1345), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [anon_sym_PIPE_PIPE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(1345), + [anon_sym_GT_GT] = ACTIONS(1345), + [anon_sym_PLUS_EQ] = ACTIONS(1343), + [anon_sym_DASH_EQ] = ACTIONS(1343), + [anon_sym_STAR_EQ] = ACTIONS(1343), + [anon_sym_SLASH_EQ] = ACTIONS(1343), + [anon_sym_PERCENT_EQ] = ACTIONS(1343), + [anon_sym_CARET_EQ] = ACTIONS(1343), + [anon_sym_AMP_EQ] = ACTIONS(1343), + [anon_sym_PIPE_EQ] = ACTIONS(1343), + [anon_sym_LT_LT_EQ] = ACTIONS(1343), + [anon_sym_GT_GT_EQ] = ACTIONS(1343), + [anon_sym_EQ] = ACTIONS(1345), + [anon_sym_EQ_EQ] = ACTIONS(1343), + [anon_sym_BANG_EQ] = ACTIONS(1343), + [anon_sym_GT] = ACTIONS(1345), + [anon_sym_LT] = ACTIONS(1345), + [anon_sym_GT_EQ] = ACTIONS(1343), + [anon_sym_LT_EQ] = ACTIONS(1343), + [anon_sym_DOT] = ACTIONS(1345), + [anon_sym_DOT_DOT] = ACTIONS(1345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1343), + [anon_sym_COLON_COLON] = ACTIONS(1343), + [anon_sym_POUND] = ACTIONS(1343), + [anon_sym_SQUOTE] = ACTIONS(1345), + [anon_sym_as] = ACTIONS(1345), + [anon_sym_async] = ACTIONS(1345), + [anon_sym_break] = ACTIONS(1345), + [anon_sym_const] = ACTIONS(1345), + [anon_sym_continue] = ACTIONS(1345), + [anon_sym_default] = ACTIONS(1345), + [anon_sym_enum] = ACTIONS(1345), + [anon_sym_fn] = ACTIONS(1345), + [anon_sym_for] = ACTIONS(1345), + [anon_sym_gen] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1345), + [anon_sym_impl] = ACTIONS(1345), + [anon_sym_let] = ACTIONS(1345), + [anon_sym_loop] = ACTIONS(1345), + [anon_sym_match] = ACTIONS(1345), + [anon_sym_mod] = ACTIONS(1345), + [anon_sym_pub] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1345), + [anon_sym_static] = ACTIONS(1345), + [anon_sym_struct] = ACTIONS(1345), + [anon_sym_trait] = ACTIONS(1345), + [anon_sym_type] = ACTIONS(1345), + [anon_sym_union] = ACTIONS(1345), + [anon_sym_unsafe] = ACTIONS(1345), + [anon_sym_use] = ACTIONS(1345), + [anon_sym_while] = ACTIONS(1345), + [anon_sym_extern] = ACTIONS(1345), + [anon_sym_else] = ACTIONS(1345), + [anon_sym_yield] = ACTIONS(1345), + [anon_sym_move] = ACTIONS(1345), + [anon_sym_try] = ACTIONS(1345), + [sym_integer_literal] = ACTIONS(1343), + [aux_sym_string_literal_token1] = ACTIONS(1343), + [sym_char_literal] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1345), + [anon_sym_false] = ACTIONS(1345), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1345), + [sym_super] = ACTIONS(1345), + [sym_crate] = ACTIONS(1345), + [sym_metavariable] = ACTIONS(1343), + [sym__raw_string_literal_start] = ACTIONS(1343), + [sym_float_literal] = ACTIONS(1343), }, [STATE(410)] = { [sym_line_comment] = STATE(410), [sym_block_comment] = STATE(410), - [ts_builtin_sym_end] = ACTIONS(1497), - [sym_identifier] = ACTIONS(1499), - [anon_sym_SEMI] = ACTIONS(1497), - [anon_sym_macro_rules_BANG] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1497), - [anon_sym_LBRACE] = ACTIONS(1497), - [anon_sym_RBRACE] = ACTIONS(1497), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1499), - [anon_sym_QMARK] = ACTIONS(1497), - [anon_sym_u8] = ACTIONS(1499), - [anon_sym_i8] = ACTIONS(1499), - [anon_sym_u16] = ACTIONS(1499), - [anon_sym_i16] = ACTIONS(1499), - [anon_sym_u32] = ACTIONS(1499), - [anon_sym_i32] = ACTIONS(1499), - [anon_sym_u64] = ACTIONS(1499), - [anon_sym_i64] = ACTIONS(1499), - [anon_sym_u128] = ACTIONS(1499), - [anon_sym_i128] = ACTIONS(1499), - [anon_sym_isize] = ACTIONS(1499), - [anon_sym_usize] = ACTIONS(1499), - [anon_sym_f32] = ACTIONS(1499), - [anon_sym_f64] = ACTIONS(1499), - [anon_sym_bool] = ACTIONS(1499), - [anon_sym_str] = ACTIONS(1499), - [anon_sym_char] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1499), - [anon_sym_PERCENT] = ACTIONS(1499), - [anon_sym_CARET] = ACTIONS(1499), - [anon_sym_BANG] = ACTIONS(1499), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1497), - [anon_sym_PIPE_PIPE] = ACTIONS(1497), - [anon_sym_LT_LT] = ACTIONS(1499), - [anon_sym_GT_GT] = ACTIONS(1499), - [anon_sym_PLUS_EQ] = ACTIONS(1497), - [anon_sym_DASH_EQ] = ACTIONS(1497), - [anon_sym_STAR_EQ] = ACTIONS(1497), - [anon_sym_SLASH_EQ] = ACTIONS(1497), - [anon_sym_PERCENT_EQ] = ACTIONS(1497), - [anon_sym_CARET_EQ] = ACTIONS(1497), - [anon_sym_AMP_EQ] = ACTIONS(1497), - [anon_sym_PIPE_EQ] = ACTIONS(1497), - [anon_sym_LT_LT_EQ] = ACTIONS(1497), - [anon_sym_GT_GT_EQ] = ACTIONS(1497), - [anon_sym_EQ] = ACTIONS(1499), - [anon_sym_EQ_EQ] = ACTIONS(1497), - [anon_sym_BANG_EQ] = ACTIONS(1497), - [anon_sym_GT] = ACTIONS(1499), - [anon_sym_LT] = ACTIONS(1499), - [anon_sym_GT_EQ] = ACTIONS(1497), - [anon_sym_LT_EQ] = ACTIONS(1497), - [anon_sym_DOT] = ACTIONS(1499), - [anon_sym_DOT_DOT] = ACTIONS(1499), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), - [anon_sym_COLON_COLON] = ACTIONS(1497), - [anon_sym_POUND] = ACTIONS(1497), - [anon_sym_SQUOTE] = ACTIONS(1499), - [anon_sym_as] = ACTIONS(1499), - [anon_sym_async] = ACTIONS(1499), - [anon_sym_break] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(1499), - [anon_sym_continue] = ACTIONS(1499), - [anon_sym_default] = ACTIONS(1499), - [anon_sym_enum] = ACTIONS(1499), - [anon_sym_fn] = ACTIONS(1499), - [anon_sym_for] = ACTIONS(1499), - [anon_sym_gen] = ACTIONS(1499), - [anon_sym_if] = ACTIONS(1499), - [anon_sym_impl] = ACTIONS(1499), - [anon_sym_let] = ACTIONS(1499), - [anon_sym_loop] = ACTIONS(1499), - [anon_sym_match] = ACTIONS(1499), - [anon_sym_mod] = ACTIONS(1499), - [anon_sym_pub] = ACTIONS(1499), - [anon_sym_return] = ACTIONS(1499), - [anon_sym_static] = ACTIONS(1499), - [anon_sym_struct] = ACTIONS(1499), - [anon_sym_trait] = ACTIONS(1499), - [anon_sym_type] = ACTIONS(1499), - [anon_sym_union] = ACTIONS(1499), - [anon_sym_unsafe] = ACTIONS(1499), - [anon_sym_use] = ACTIONS(1499), - [anon_sym_while] = ACTIONS(1499), - [anon_sym_extern] = ACTIONS(1499), - [anon_sym_yield] = ACTIONS(1499), - [anon_sym_move] = ACTIONS(1499), - [anon_sym_try] = ACTIONS(1499), - [sym_integer_literal] = ACTIONS(1497), - [aux_sym_string_literal_token1] = ACTIONS(1497), - [sym_char_literal] = ACTIONS(1497), - [anon_sym_true] = ACTIONS(1499), - [anon_sym_false] = ACTIONS(1499), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1499), - [sym_super] = ACTIONS(1499), - [sym_crate] = ACTIONS(1499), - [sym_metavariable] = ACTIONS(1497), - [sym__raw_string_literal_start] = ACTIONS(1497), - [sym_float_literal] = ACTIONS(1497), + [ts_builtin_sym_end] = ACTIONS(1347), + [sym_identifier] = ACTIONS(1349), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_macro_rules_BANG] = ACTIONS(1347), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_LBRACK] = ACTIONS(1347), + [anon_sym_LBRACE] = ACTIONS(1347), + [anon_sym_RBRACE] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_QMARK] = ACTIONS(1347), + [anon_sym_u8] = ACTIONS(1349), + [anon_sym_i8] = ACTIONS(1349), + [anon_sym_u16] = ACTIONS(1349), + [anon_sym_i16] = ACTIONS(1349), + [anon_sym_u32] = ACTIONS(1349), + [anon_sym_i32] = ACTIONS(1349), + [anon_sym_u64] = ACTIONS(1349), + [anon_sym_i64] = ACTIONS(1349), + [anon_sym_u128] = ACTIONS(1349), + [anon_sym_i128] = ACTIONS(1349), + [anon_sym_isize] = ACTIONS(1349), + [anon_sym_usize] = ACTIONS(1349), + [anon_sym_f32] = ACTIONS(1349), + [anon_sym_f64] = ACTIONS(1349), + [anon_sym_bool] = ACTIONS(1349), + [anon_sym_str] = ACTIONS(1349), + [anon_sym_char] = ACTIONS(1349), + [anon_sym_DASH] = ACTIONS(1349), + [anon_sym_SLASH] = ACTIONS(1349), + [anon_sym_PERCENT] = ACTIONS(1349), + [anon_sym_CARET] = ACTIONS(1349), + [anon_sym_BANG] = ACTIONS(1349), + [anon_sym_AMP] = ACTIONS(1349), + [anon_sym_PIPE] = ACTIONS(1349), + [anon_sym_AMP_AMP] = ACTIONS(1347), + [anon_sym_PIPE_PIPE] = ACTIONS(1347), + [anon_sym_LT_LT] = ACTIONS(1349), + [anon_sym_GT_GT] = ACTIONS(1349), + [anon_sym_PLUS_EQ] = ACTIONS(1347), + [anon_sym_DASH_EQ] = ACTIONS(1347), + [anon_sym_STAR_EQ] = ACTIONS(1347), + [anon_sym_SLASH_EQ] = ACTIONS(1347), + [anon_sym_PERCENT_EQ] = ACTIONS(1347), + [anon_sym_CARET_EQ] = ACTIONS(1347), + [anon_sym_AMP_EQ] = ACTIONS(1347), + [anon_sym_PIPE_EQ] = ACTIONS(1347), + [anon_sym_LT_LT_EQ] = ACTIONS(1347), + [anon_sym_GT_GT_EQ] = ACTIONS(1347), + [anon_sym_EQ] = ACTIONS(1349), + [anon_sym_EQ_EQ] = ACTIONS(1347), + [anon_sym_BANG_EQ] = ACTIONS(1347), + [anon_sym_GT] = ACTIONS(1349), + [anon_sym_LT] = ACTIONS(1349), + [anon_sym_GT_EQ] = ACTIONS(1347), + [anon_sym_LT_EQ] = ACTIONS(1347), + [anon_sym_DOT] = ACTIONS(1349), + [anon_sym_DOT_DOT] = ACTIONS(1349), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1347), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1347), + [anon_sym_COLON_COLON] = ACTIONS(1347), + [anon_sym_POUND] = ACTIONS(1347), + [anon_sym_SQUOTE] = ACTIONS(1349), + [anon_sym_as] = ACTIONS(1349), + [anon_sym_async] = ACTIONS(1349), + [anon_sym_break] = ACTIONS(1349), + [anon_sym_const] = ACTIONS(1349), + [anon_sym_continue] = ACTIONS(1349), + [anon_sym_default] = ACTIONS(1349), + [anon_sym_enum] = ACTIONS(1349), + [anon_sym_fn] = ACTIONS(1349), + [anon_sym_for] = ACTIONS(1349), + [anon_sym_gen] = ACTIONS(1349), + [anon_sym_if] = ACTIONS(1349), + [anon_sym_impl] = ACTIONS(1349), + [anon_sym_let] = ACTIONS(1349), + [anon_sym_loop] = ACTIONS(1349), + [anon_sym_match] = ACTIONS(1349), + [anon_sym_mod] = ACTIONS(1349), + [anon_sym_pub] = ACTIONS(1349), + [anon_sym_return] = ACTIONS(1349), + [anon_sym_static] = ACTIONS(1349), + [anon_sym_struct] = ACTIONS(1349), + [anon_sym_trait] = ACTIONS(1349), + [anon_sym_type] = ACTIONS(1349), + [anon_sym_union] = ACTIONS(1349), + [anon_sym_unsafe] = ACTIONS(1349), + [anon_sym_use] = ACTIONS(1349), + [anon_sym_while] = ACTIONS(1349), + [anon_sym_extern] = ACTIONS(1349), + [anon_sym_yield] = ACTIONS(1349), + [anon_sym_move] = ACTIONS(1349), + [anon_sym_try] = ACTIONS(1349), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1347), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1349), + [anon_sym_false] = ACTIONS(1349), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1349), + [sym_super] = ACTIONS(1349), + [sym_crate] = ACTIONS(1349), + [sym_metavariable] = ACTIONS(1347), + [sym__raw_string_literal_start] = ACTIONS(1347), + [sym_float_literal] = ACTIONS(1347), }, [STATE(411)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_self_parameter] = STATE(3518), + [sym_variadic_parameter] = STATE(3518), + [sym_parameter] = STATE(3518), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(3214), + [sym_bracketed_type] = STATE(3751), + [sym_lifetime] = STATE(2953), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2569), + [sym_scoped_identifier] = STATE(2379), + [sym_scoped_type_identifier] = STATE(2296), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(3286), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(411), [sym_block_comment] = STATE(411), - [ts_builtin_sym_end] = ACTIONS(1501), - [sym_identifier] = ACTIONS(1503), - [anon_sym_SEMI] = ACTIONS(1501), - [anon_sym_macro_rules_BANG] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LBRACE] = ACTIONS(1501), - [anon_sym_RBRACE] = ACTIONS(1501), - [anon_sym_PLUS] = ACTIONS(1503), - [anon_sym_STAR] = ACTIONS(1503), - [anon_sym_QMARK] = ACTIONS(1501), - [anon_sym_u8] = ACTIONS(1503), - [anon_sym_i8] = ACTIONS(1503), - [anon_sym_u16] = ACTIONS(1503), - [anon_sym_i16] = ACTIONS(1503), - [anon_sym_u32] = ACTIONS(1503), - [anon_sym_i32] = ACTIONS(1503), - [anon_sym_u64] = ACTIONS(1503), - [anon_sym_i64] = ACTIONS(1503), - [anon_sym_u128] = ACTIONS(1503), - [anon_sym_i128] = ACTIONS(1503), - [anon_sym_isize] = ACTIONS(1503), - [anon_sym_usize] = ACTIONS(1503), - [anon_sym_f32] = ACTIONS(1503), - [anon_sym_f64] = ACTIONS(1503), - [anon_sym_bool] = ACTIONS(1503), - [anon_sym_str] = ACTIONS(1503), - [anon_sym_char] = ACTIONS(1503), - [anon_sym_DASH] = ACTIONS(1503), - [anon_sym_SLASH] = ACTIONS(1503), - [anon_sym_PERCENT] = ACTIONS(1503), - [anon_sym_CARET] = ACTIONS(1503), - [anon_sym_BANG] = ACTIONS(1503), - [anon_sym_AMP] = ACTIONS(1503), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_PIPE_PIPE] = ACTIONS(1501), - [anon_sym_LT_LT] = ACTIONS(1503), - [anon_sym_GT_GT] = ACTIONS(1503), - [anon_sym_PLUS_EQ] = ACTIONS(1501), - [anon_sym_DASH_EQ] = ACTIONS(1501), - [anon_sym_STAR_EQ] = ACTIONS(1501), - [anon_sym_SLASH_EQ] = ACTIONS(1501), - [anon_sym_PERCENT_EQ] = ACTIONS(1501), - [anon_sym_CARET_EQ] = ACTIONS(1501), - [anon_sym_AMP_EQ] = ACTIONS(1501), - [anon_sym_PIPE_EQ] = ACTIONS(1501), - [anon_sym_LT_LT_EQ] = ACTIONS(1501), - [anon_sym_GT_GT_EQ] = ACTIONS(1501), - [anon_sym_EQ] = ACTIONS(1503), - [anon_sym_EQ_EQ] = ACTIONS(1501), - [anon_sym_BANG_EQ] = ACTIONS(1501), - [anon_sym_GT] = ACTIONS(1503), - [anon_sym_LT] = ACTIONS(1503), - [anon_sym_GT_EQ] = ACTIONS(1501), - [anon_sym_LT_EQ] = ACTIONS(1501), - [anon_sym_DOT] = ACTIONS(1503), - [anon_sym_DOT_DOT] = ACTIONS(1503), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1501), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1501), - [anon_sym_COLON_COLON] = ACTIONS(1501), - [anon_sym_POUND] = ACTIONS(1501), - [anon_sym_SQUOTE] = ACTIONS(1503), - [anon_sym_as] = ACTIONS(1503), - [anon_sym_async] = ACTIONS(1503), - [anon_sym_break] = ACTIONS(1503), - [anon_sym_const] = ACTIONS(1503), - [anon_sym_continue] = ACTIONS(1503), - [anon_sym_default] = ACTIONS(1503), - [anon_sym_enum] = ACTIONS(1503), - [anon_sym_fn] = ACTIONS(1503), - [anon_sym_for] = ACTIONS(1503), - [anon_sym_gen] = ACTIONS(1503), - [anon_sym_if] = ACTIONS(1503), - [anon_sym_impl] = ACTIONS(1503), - [anon_sym_let] = ACTIONS(1503), - [anon_sym_loop] = ACTIONS(1503), - [anon_sym_match] = ACTIONS(1503), - [anon_sym_mod] = ACTIONS(1503), - [anon_sym_pub] = ACTIONS(1503), - [anon_sym_return] = ACTIONS(1503), - [anon_sym_static] = ACTIONS(1503), - [anon_sym_struct] = ACTIONS(1503), - [anon_sym_trait] = ACTIONS(1503), - [anon_sym_type] = ACTIONS(1503), - [anon_sym_union] = ACTIONS(1503), - [anon_sym_unsafe] = ACTIONS(1503), - [anon_sym_use] = ACTIONS(1503), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_extern] = ACTIONS(1503), - [anon_sym_yield] = ACTIONS(1503), - [anon_sym_move] = ACTIONS(1503), - [anon_sym_try] = ACTIONS(1503), - [sym_integer_literal] = ACTIONS(1501), - [aux_sym_string_literal_token1] = ACTIONS(1501), - [sym_char_literal] = ACTIONS(1501), - [anon_sym_true] = ACTIONS(1503), - [anon_sym_false] = ACTIONS(1503), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1503), - [sym_super] = ACTIONS(1503), - [sym_crate] = ACTIONS(1503), - [sym_metavariable] = ACTIONS(1501), - [sym__raw_string_literal_start] = ACTIONS(1501), - [sym_float_literal] = ACTIONS(1501), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1157), + [anon_sym_LPAREN] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1163), + [anon_sym_i8] = ACTIONS(1163), + [anon_sym_u16] = ACTIONS(1163), + [anon_sym_i16] = ACTIONS(1163), + [anon_sym_u32] = ACTIONS(1163), + [anon_sym_i32] = ACTIONS(1163), + [anon_sym_u64] = ACTIONS(1163), + [anon_sym_i64] = ACTIONS(1163), + [anon_sym_u128] = ACTIONS(1163), + [anon_sym_i128] = ACTIONS(1163), + [anon_sym_isize] = ACTIONS(1163), + [anon_sym_usize] = ACTIONS(1163), + [anon_sym_f32] = ACTIONS(1163), + [anon_sym_f64] = ACTIONS(1163), + [anon_sym_bool] = ACTIONS(1163), + [anon_sym_str] = ACTIONS(1163), + [anon_sym_char] = ACTIONS(1163), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1165), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1351), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1079), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1171), + [anon_sym_SQUOTE] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_default] = ACTIONS(1173), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1175), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1175), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_ref] = ACTIONS(1109), + [anon_sym_dyn] = ACTIONS(1111), + [sym_mutable_specifier] = ACTIONS(1113), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1177), + [sym_super] = ACTIONS(1179), + [sym_crate] = ACTIONS(1179), + [sym_metavariable] = ACTIONS(1181), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(412)] = { [sym_line_comment] = STATE(412), [sym_block_comment] = STATE(412), - [ts_builtin_sym_end] = ACTIONS(1505), - [sym_identifier] = ACTIONS(1507), - [anon_sym_SEMI] = ACTIONS(1505), - [anon_sym_macro_rules_BANG] = ACTIONS(1505), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_LBRACK] = ACTIONS(1505), - [anon_sym_LBRACE] = ACTIONS(1505), - [anon_sym_RBRACE] = ACTIONS(1505), - [anon_sym_PLUS] = ACTIONS(1507), - [anon_sym_STAR] = ACTIONS(1507), - [anon_sym_QMARK] = ACTIONS(1505), - [anon_sym_u8] = ACTIONS(1507), - [anon_sym_i8] = ACTIONS(1507), - [anon_sym_u16] = ACTIONS(1507), - [anon_sym_i16] = ACTIONS(1507), - [anon_sym_u32] = ACTIONS(1507), - [anon_sym_i32] = ACTIONS(1507), - [anon_sym_u64] = ACTIONS(1507), - [anon_sym_i64] = ACTIONS(1507), - [anon_sym_u128] = ACTIONS(1507), - [anon_sym_i128] = ACTIONS(1507), - [anon_sym_isize] = ACTIONS(1507), - [anon_sym_usize] = ACTIONS(1507), - [anon_sym_f32] = ACTIONS(1507), - [anon_sym_f64] = ACTIONS(1507), - [anon_sym_bool] = ACTIONS(1507), - [anon_sym_str] = ACTIONS(1507), - [anon_sym_char] = ACTIONS(1507), - [anon_sym_DASH] = ACTIONS(1507), - [anon_sym_SLASH] = ACTIONS(1507), - [anon_sym_PERCENT] = ACTIONS(1507), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_PIPE] = ACTIONS(1507), - [anon_sym_AMP_AMP] = ACTIONS(1505), - [anon_sym_PIPE_PIPE] = ACTIONS(1505), - [anon_sym_LT_LT] = ACTIONS(1507), - [anon_sym_GT_GT] = ACTIONS(1507), - [anon_sym_PLUS_EQ] = ACTIONS(1505), - [anon_sym_DASH_EQ] = ACTIONS(1505), - [anon_sym_STAR_EQ] = ACTIONS(1505), - [anon_sym_SLASH_EQ] = ACTIONS(1505), - [anon_sym_PERCENT_EQ] = ACTIONS(1505), - [anon_sym_CARET_EQ] = ACTIONS(1505), - [anon_sym_AMP_EQ] = ACTIONS(1505), - [anon_sym_PIPE_EQ] = ACTIONS(1505), - [anon_sym_LT_LT_EQ] = ACTIONS(1505), - [anon_sym_GT_GT_EQ] = ACTIONS(1505), - [anon_sym_EQ] = ACTIONS(1507), - [anon_sym_EQ_EQ] = ACTIONS(1505), - [anon_sym_BANG_EQ] = ACTIONS(1505), - [anon_sym_GT] = ACTIONS(1507), - [anon_sym_LT] = ACTIONS(1507), - [anon_sym_GT_EQ] = ACTIONS(1505), - [anon_sym_LT_EQ] = ACTIONS(1505), - [anon_sym_DOT] = ACTIONS(1507), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1505), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1505), - [anon_sym_COLON_COLON] = ACTIONS(1505), - [anon_sym_POUND] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_as] = ACTIONS(1507), - [anon_sym_async] = ACTIONS(1507), - [anon_sym_break] = ACTIONS(1507), - [anon_sym_const] = ACTIONS(1507), - [anon_sym_continue] = ACTIONS(1507), - [anon_sym_default] = ACTIONS(1507), - [anon_sym_enum] = ACTIONS(1507), - [anon_sym_fn] = ACTIONS(1507), - [anon_sym_for] = ACTIONS(1507), - [anon_sym_gen] = ACTIONS(1507), - [anon_sym_if] = ACTIONS(1507), - [anon_sym_impl] = ACTIONS(1507), - [anon_sym_let] = ACTIONS(1507), - [anon_sym_loop] = ACTIONS(1507), - [anon_sym_match] = ACTIONS(1507), - [anon_sym_mod] = ACTIONS(1507), - [anon_sym_pub] = ACTIONS(1507), - [anon_sym_return] = ACTIONS(1507), - [anon_sym_static] = ACTIONS(1507), - [anon_sym_struct] = ACTIONS(1507), - [anon_sym_trait] = ACTIONS(1507), - [anon_sym_type] = ACTIONS(1507), - [anon_sym_union] = ACTIONS(1507), - [anon_sym_unsafe] = ACTIONS(1507), - [anon_sym_use] = ACTIONS(1507), - [anon_sym_while] = ACTIONS(1507), - [anon_sym_extern] = ACTIONS(1507), - [anon_sym_yield] = ACTIONS(1507), - [anon_sym_move] = ACTIONS(1507), - [anon_sym_try] = ACTIONS(1507), - [sym_integer_literal] = ACTIONS(1505), - [aux_sym_string_literal_token1] = ACTIONS(1505), - [sym_char_literal] = ACTIONS(1505), - [anon_sym_true] = ACTIONS(1507), - [anon_sym_false] = ACTIONS(1507), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1507), - [sym_super] = ACTIONS(1507), - [sym_crate] = ACTIONS(1507), - [sym_metavariable] = ACTIONS(1505), - [sym__raw_string_literal_start] = ACTIONS(1505), - [sym_float_literal] = ACTIONS(1505), + [ts_builtin_sym_end] = ACTIONS(1353), + [sym_identifier] = ACTIONS(1355), + [anon_sym_SEMI] = ACTIONS(1353), + [anon_sym_macro_rules_BANG] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(1353), + [anon_sym_LBRACK] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1353), + [anon_sym_RBRACE] = ACTIONS(1353), + [anon_sym_PLUS] = ACTIONS(1355), + [anon_sym_STAR] = ACTIONS(1355), + [anon_sym_QMARK] = ACTIONS(1353), + [anon_sym_u8] = ACTIONS(1355), + [anon_sym_i8] = ACTIONS(1355), + [anon_sym_u16] = ACTIONS(1355), + [anon_sym_i16] = ACTIONS(1355), + [anon_sym_u32] = ACTIONS(1355), + [anon_sym_i32] = ACTIONS(1355), + [anon_sym_u64] = ACTIONS(1355), + [anon_sym_i64] = ACTIONS(1355), + [anon_sym_u128] = ACTIONS(1355), + [anon_sym_i128] = ACTIONS(1355), + [anon_sym_isize] = ACTIONS(1355), + [anon_sym_usize] = ACTIONS(1355), + [anon_sym_f32] = ACTIONS(1355), + [anon_sym_f64] = ACTIONS(1355), + [anon_sym_bool] = ACTIONS(1355), + [anon_sym_str] = ACTIONS(1355), + [anon_sym_char] = ACTIONS(1355), + [anon_sym_DASH] = ACTIONS(1355), + [anon_sym_SLASH] = ACTIONS(1355), + [anon_sym_PERCENT] = ACTIONS(1355), + [anon_sym_CARET] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1355), + [anon_sym_AMP] = ACTIONS(1355), + [anon_sym_PIPE] = ACTIONS(1355), + [anon_sym_AMP_AMP] = ACTIONS(1353), + [anon_sym_PIPE_PIPE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(1355), + [anon_sym_GT_GT] = ACTIONS(1355), + [anon_sym_PLUS_EQ] = ACTIONS(1353), + [anon_sym_DASH_EQ] = ACTIONS(1353), + [anon_sym_STAR_EQ] = ACTIONS(1353), + [anon_sym_SLASH_EQ] = ACTIONS(1353), + [anon_sym_PERCENT_EQ] = ACTIONS(1353), + [anon_sym_CARET_EQ] = ACTIONS(1353), + [anon_sym_AMP_EQ] = ACTIONS(1353), + [anon_sym_PIPE_EQ] = ACTIONS(1353), + [anon_sym_LT_LT_EQ] = ACTIONS(1353), + [anon_sym_GT_GT_EQ] = ACTIONS(1353), + [anon_sym_EQ] = ACTIONS(1355), + [anon_sym_EQ_EQ] = ACTIONS(1353), + [anon_sym_BANG_EQ] = ACTIONS(1353), + [anon_sym_GT] = ACTIONS(1355), + [anon_sym_LT] = ACTIONS(1355), + [anon_sym_GT_EQ] = ACTIONS(1353), + [anon_sym_LT_EQ] = ACTIONS(1353), + [anon_sym_DOT] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1353), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1353), + [anon_sym_COLON_COLON] = ACTIONS(1353), + [anon_sym_POUND] = ACTIONS(1353), + [anon_sym_SQUOTE] = ACTIONS(1355), + [anon_sym_as] = ACTIONS(1355), + [anon_sym_async] = ACTIONS(1355), + [anon_sym_break] = ACTIONS(1355), + [anon_sym_const] = ACTIONS(1355), + [anon_sym_continue] = ACTIONS(1355), + [anon_sym_default] = ACTIONS(1355), + [anon_sym_enum] = ACTIONS(1355), + [anon_sym_fn] = ACTIONS(1355), + [anon_sym_for] = ACTIONS(1355), + [anon_sym_gen] = ACTIONS(1355), + [anon_sym_if] = ACTIONS(1355), + [anon_sym_impl] = ACTIONS(1355), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_loop] = ACTIONS(1355), + [anon_sym_match] = ACTIONS(1355), + [anon_sym_mod] = ACTIONS(1355), + [anon_sym_pub] = ACTIONS(1355), + [anon_sym_return] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_struct] = ACTIONS(1355), + [anon_sym_trait] = ACTIONS(1355), + [anon_sym_type] = ACTIONS(1355), + [anon_sym_union] = ACTIONS(1355), + [anon_sym_unsafe] = ACTIONS(1355), + [anon_sym_use] = ACTIONS(1355), + [anon_sym_while] = ACTIONS(1355), + [anon_sym_extern] = ACTIONS(1355), + [anon_sym_yield] = ACTIONS(1355), + [anon_sym_move] = ACTIONS(1355), + [anon_sym_try] = ACTIONS(1355), + [sym_integer_literal] = ACTIONS(1353), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1353), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1355), + [sym_super] = ACTIONS(1355), + [sym_crate] = ACTIONS(1355), + [sym_metavariable] = ACTIONS(1353), + [sym__raw_string_literal_start] = ACTIONS(1353), + [sym_float_literal] = ACTIONS(1353), }, [STATE(413)] = { [sym_line_comment] = STATE(413), [sym_block_comment] = STATE(413), - [ts_builtin_sym_end] = ACTIONS(1509), - [sym_identifier] = ACTIONS(1511), - [anon_sym_SEMI] = ACTIONS(1509), - [anon_sym_macro_rules_BANG] = ACTIONS(1509), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_LBRACK] = ACTIONS(1509), - [anon_sym_LBRACE] = ACTIONS(1509), - [anon_sym_RBRACE] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_STAR] = ACTIONS(1511), - [anon_sym_QMARK] = ACTIONS(1509), - [anon_sym_u8] = ACTIONS(1511), - [anon_sym_i8] = ACTIONS(1511), - [anon_sym_u16] = ACTIONS(1511), - [anon_sym_i16] = ACTIONS(1511), - [anon_sym_u32] = ACTIONS(1511), - [anon_sym_i32] = ACTIONS(1511), - [anon_sym_u64] = ACTIONS(1511), - [anon_sym_i64] = ACTIONS(1511), - [anon_sym_u128] = ACTIONS(1511), - [anon_sym_i128] = ACTIONS(1511), - [anon_sym_isize] = ACTIONS(1511), - [anon_sym_usize] = ACTIONS(1511), - [anon_sym_f32] = ACTIONS(1511), - [anon_sym_f64] = ACTIONS(1511), - [anon_sym_bool] = ACTIONS(1511), - [anon_sym_str] = ACTIONS(1511), - [anon_sym_char] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_SLASH] = ACTIONS(1511), - [anon_sym_PERCENT] = ACTIONS(1511), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_AMP] = ACTIONS(1511), - [anon_sym_PIPE] = ACTIONS(1511), - [anon_sym_AMP_AMP] = ACTIONS(1509), - [anon_sym_PIPE_PIPE] = ACTIONS(1509), - [anon_sym_LT_LT] = ACTIONS(1511), - [anon_sym_GT_GT] = ACTIONS(1511), - [anon_sym_PLUS_EQ] = ACTIONS(1509), - [anon_sym_DASH_EQ] = ACTIONS(1509), - [anon_sym_STAR_EQ] = ACTIONS(1509), - [anon_sym_SLASH_EQ] = ACTIONS(1509), - [anon_sym_PERCENT_EQ] = ACTIONS(1509), - [anon_sym_CARET_EQ] = ACTIONS(1509), - [anon_sym_AMP_EQ] = ACTIONS(1509), - [anon_sym_PIPE_EQ] = ACTIONS(1509), - [anon_sym_LT_LT_EQ] = ACTIONS(1509), - [anon_sym_GT_GT_EQ] = ACTIONS(1509), - [anon_sym_EQ] = ACTIONS(1511), - [anon_sym_EQ_EQ] = ACTIONS(1509), - [anon_sym_BANG_EQ] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1511), - [anon_sym_LT] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1509), - [anon_sym_LT_EQ] = ACTIONS(1509), - [anon_sym_DOT] = ACTIONS(1511), - [anon_sym_DOT_DOT] = ACTIONS(1511), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1509), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1509), - [anon_sym_COLON_COLON] = ACTIONS(1509), - [anon_sym_POUND] = ACTIONS(1509), - [anon_sym_SQUOTE] = ACTIONS(1511), - [anon_sym_as] = ACTIONS(1511), - [anon_sym_async] = ACTIONS(1511), - [anon_sym_break] = ACTIONS(1511), - [anon_sym_const] = ACTIONS(1511), - [anon_sym_continue] = ACTIONS(1511), - [anon_sym_default] = ACTIONS(1511), - [anon_sym_enum] = ACTIONS(1511), - [anon_sym_fn] = ACTIONS(1511), - [anon_sym_for] = ACTIONS(1511), - [anon_sym_gen] = ACTIONS(1511), - [anon_sym_if] = ACTIONS(1511), - [anon_sym_impl] = ACTIONS(1511), - [anon_sym_let] = ACTIONS(1511), - [anon_sym_loop] = ACTIONS(1511), - [anon_sym_match] = ACTIONS(1511), - [anon_sym_mod] = ACTIONS(1511), - [anon_sym_pub] = ACTIONS(1511), - [anon_sym_return] = ACTIONS(1511), - [anon_sym_static] = ACTIONS(1511), - [anon_sym_struct] = ACTIONS(1511), - [anon_sym_trait] = ACTIONS(1511), - [anon_sym_type] = ACTIONS(1511), - [anon_sym_union] = ACTIONS(1511), - [anon_sym_unsafe] = ACTIONS(1511), - [anon_sym_use] = ACTIONS(1511), - [anon_sym_while] = ACTIONS(1511), - [anon_sym_extern] = ACTIONS(1511), - [anon_sym_yield] = ACTIONS(1511), - [anon_sym_move] = ACTIONS(1511), - [anon_sym_try] = ACTIONS(1511), - [sym_integer_literal] = ACTIONS(1509), - [aux_sym_string_literal_token1] = ACTIONS(1509), - [sym_char_literal] = ACTIONS(1509), - [anon_sym_true] = ACTIONS(1511), - [anon_sym_false] = ACTIONS(1511), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1511), - [sym_super] = ACTIONS(1511), - [sym_crate] = ACTIONS(1511), - [sym_metavariable] = ACTIONS(1509), - [sym__raw_string_literal_start] = ACTIONS(1509), - [sym_float_literal] = ACTIONS(1509), + [ts_builtin_sym_end] = ACTIONS(1357), + [sym_identifier] = ACTIONS(1359), + [anon_sym_SEMI] = ACTIONS(1357), + [anon_sym_macro_rules_BANG] = ACTIONS(1357), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_LBRACK] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1357), + [anon_sym_RBRACE] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1359), + [anon_sym_QMARK] = ACTIONS(1357), + [anon_sym_u8] = ACTIONS(1359), + [anon_sym_i8] = ACTIONS(1359), + [anon_sym_u16] = ACTIONS(1359), + [anon_sym_i16] = ACTIONS(1359), + [anon_sym_u32] = ACTIONS(1359), + [anon_sym_i32] = ACTIONS(1359), + [anon_sym_u64] = ACTIONS(1359), + [anon_sym_i64] = ACTIONS(1359), + [anon_sym_u128] = ACTIONS(1359), + [anon_sym_i128] = ACTIONS(1359), + [anon_sym_isize] = ACTIONS(1359), + [anon_sym_usize] = ACTIONS(1359), + [anon_sym_f32] = ACTIONS(1359), + [anon_sym_f64] = ACTIONS(1359), + [anon_sym_bool] = ACTIONS(1359), + [anon_sym_str] = ACTIONS(1359), + [anon_sym_char] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_SLASH] = ACTIONS(1359), + [anon_sym_PERCENT] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_AMP] = ACTIONS(1359), + [anon_sym_PIPE] = ACTIONS(1359), + [anon_sym_AMP_AMP] = ACTIONS(1357), + [anon_sym_PIPE_PIPE] = ACTIONS(1357), + [anon_sym_LT_LT] = ACTIONS(1359), + [anon_sym_GT_GT] = ACTIONS(1359), + [anon_sym_PLUS_EQ] = ACTIONS(1357), + [anon_sym_DASH_EQ] = ACTIONS(1357), + [anon_sym_STAR_EQ] = ACTIONS(1357), + [anon_sym_SLASH_EQ] = ACTIONS(1357), + [anon_sym_PERCENT_EQ] = ACTIONS(1357), + [anon_sym_CARET_EQ] = ACTIONS(1357), + [anon_sym_AMP_EQ] = ACTIONS(1357), + [anon_sym_PIPE_EQ] = ACTIONS(1357), + [anon_sym_LT_LT_EQ] = ACTIONS(1357), + [anon_sym_GT_GT_EQ] = ACTIONS(1357), + [anon_sym_EQ] = ACTIONS(1359), + [anon_sym_EQ_EQ] = ACTIONS(1357), + [anon_sym_BANG_EQ] = ACTIONS(1357), + [anon_sym_GT] = ACTIONS(1359), + [anon_sym_LT] = ACTIONS(1359), + [anon_sym_GT_EQ] = ACTIONS(1357), + [anon_sym_LT_EQ] = ACTIONS(1357), + [anon_sym_DOT] = ACTIONS(1359), + [anon_sym_DOT_DOT] = ACTIONS(1359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1357), + [anon_sym_COLON_COLON] = ACTIONS(1357), + [anon_sym_POUND] = ACTIONS(1357), + [anon_sym_SQUOTE] = ACTIONS(1359), + [anon_sym_as] = ACTIONS(1359), + [anon_sym_async] = ACTIONS(1359), + [anon_sym_break] = ACTIONS(1359), + [anon_sym_const] = ACTIONS(1359), + [anon_sym_continue] = ACTIONS(1359), + [anon_sym_default] = ACTIONS(1359), + [anon_sym_enum] = ACTIONS(1359), + [anon_sym_fn] = ACTIONS(1359), + [anon_sym_for] = ACTIONS(1359), + [anon_sym_gen] = ACTIONS(1359), + [anon_sym_if] = ACTIONS(1359), + [anon_sym_impl] = ACTIONS(1359), + [anon_sym_let] = ACTIONS(1359), + [anon_sym_loop] = ACTIONS(1359), + [anon_sym_match] = ACTIONS(1359), + [anon_sym_mod] = ACTIONS(1359), + [anon_sym_pub] = ACTIONS(1359), + [anon_sym_return] = ACTIONS(1359), + [anon_sym_static] = ACTIONS(1359), + [anon_sym_struct] = ACTIONS(1359), + [anon_sym_trait] = ACTIONS(1359), + [anon_sym_type] = ACTIONS(1359), + [anon_sym_union] = ACTIONS(1359), + [anon_sym_unsafe] = ACTIONS(1359), + [anon_sym_use] = ACTIONS(1359), + [anon_sym_while] = ACTIONS(1359), + [anon_sym_extern] = ACTIONS(1359), + [anon_sym_yield] = ACTIONS(1359), + [anon_sym_move] = ACTIONS(1359), + [anon_sym_try] = ACTIONS(1359), + [sym_integer_literal] = ACTIONS(1357), + [aux_sym_string_literal_token1] = ACTIONS(1357), + [sym_char_literal] = ACTIONS(1357), + [anon_sym_true] = ACTIONS(1359), + [anon_sym_false] = ACTIONS(1359), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1359), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1357), + [sym__raw_string_literal_start] = ACTIONS(1357), + [sym_float_literal] = ACTIONS(1357), }, [STATE(414)] = { [sym_line_comment] = STATE(414), [sym_block_comment] = STATE(414), - [ts_builtin_sym_end] = ACTIONS(1513), - [sym_identifier] = ACTIONS(1515), - [anon_sym_SEMI] = ACTIONS(1513), - [anon_sym_macro_rules_BANG] = ACTIONS(1513), - [anon_sym_LPAREN] = ACTIONS(1513), - [anon_sym_LBRACK] = ACTIONS(1513), - [anon_sym_LBRACE] = ACTIONS(1513), - [anon_sym_RBRACE] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_STAR] = ACTIONS(1515), - [anon_sym_QMARK] = ACTIONS(1513), - [anon_sym_u8] = ACTIONS(1515), - [anon_sym_i8] = ACTIONS(1515), - [anon_sym_u16] = ACTIONS(1515), - [anon_sym_i16] = ACTIONS(1515), - [anon_sym_u32] = ACTIONS(1515), - [anon_sym_i32] = ACTIONS(1515), - [anon_sym_u64] = ACTIONS(1515), - [anon_sym_i64] = ACTIONS(1515), - [anon_sym_u128] = ACTIONS(1515), - [anon_sym_i128] = ACTIONS(1515), - [anon_sym_isize] = ACTIONS(1515), - [anon_sym_usize] = ACTIONS(1515), - [anon_sym_f32] = ACTIONS(1515), - [anon_sym_f64] = ACTIONS(1515), - [anon_sym_bool] = ACTIONS(1515), - [anon_sym_str] = ACTIONS(1515), - [anon_sym_char] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1515), - [anon_sym_PERCENT] = ACTIONS(1515), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_BANG] = ACTIONS(1515), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_PIPE] = ACTIONS(1515), - [anon_sym_AMP_AMP] = ACTIONS(1513), - [anon_sym_PIPE_PIPE] = ACTIONS(1513), - [anon_sym_LT_LT] = ACTIONS(1515), - [anon_sym_GT_GT] = ACTIONS(1515), - [anon_sym_PLUS_EQ] = ACTIONS(1513), - [anon_sym_DASH_EQ] = ACTIONS(1513), - [anon_sym_STAR_EQ] = ACTIONS(1513), - [anon_sym_SLASH_EQ] = ACTIONS(1513), - [anon_sym_PERCENT_EQ] = ACTIONS(1513), - [anon_sym_CARET_EQ] = ACTIONS(1513), - [anon_sym_AMP_EQ] = ACTIONS(1513), - [anon_sym_PIPE_EQ] = ACTIONS(1513), - [anon_sym_LT_LT_EQ] = ACTIONS(1513), - [anon_sym_GT_GT_EQ] = ACTIONS(1513), - [anon_sym_EQ] = ACTIONS(1515), - [anon_sym_EQ_EQ] = ACTIONS(1513), - [anon_sym_BANG_EQ] = ACTIONS(1513), - [anon_sym_GT] = ACTIONS(1515), - [anon_sym_LT] = ACTIONS(1515), - [anon_sym_GT_EQ] = ACTIONS(1513), - [anon_sym_LT_EQ] = ACTIONS(1513), - [anon_sym_DOT] = ACTIONS(1515), - [anon_sym_DOT_DOT] = ACTIONS(1515), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1513), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1513), - [anon_sym_COLON_COLON] = ACTIONS(1513), - [anon_sym_POUND] = ACTIONS(1513), - [anon_sym_SQUOTE] = ACTIONS(1515), - [anon_sym_as] = ACTIONS(1515), - [anon_sym_async] = ACTIONS(1515), - [anon_sym_break] = ACTIONS(1515), - [anon_sym_const] = ACTIONS(1515), - [anon_sym_continue] = ACTIONS(1515), - [anon_sym_default] = ACTIONS(1515), - [anon_sym_enum] = ACTIONS(1515), - [anon_sym_fn] = ACTIONS(1515), - [anon_sym_for] = ACTIONS(1515), - [anon_sym_gen] = ACTIONS(1515), - [anon_sym_if] = ACTIONS(1515), - [anon_sym_impl] = ACTIONS(1515), - [anon_sym_let] = ACTIONS(1515), - [anon_sym_loop] = ACTIONS(1515), - [anon_sym_match] = ACTIONS(1515), - [anon_sym_mod] = ACTIONS(1515), - [anon_sym_pub] = ACTIONS(1515), - [anon_sym_return] = ACTIONS(1515), - [anon_sym_static] = ACTIONS(1515), - [anon_sym_struct] = ACTIONS(1515), - [anon_sym_trait] = ACTIONS(1515), - [anon_sym_type] = ACTIONS(1515), - [anon_sym_union] = ACTIONS(1515), - [anon_sym_unsafe] = ACTIONS(1515), - [anon_sym_use] = ACTIONS(1515), - [anon_sym_while] = ACTIONS(1515), - [anon_sym_extern] = ACTIONS(1515), - [anon_sym_yield] = ACTIONS(1515), - [anon_sym_move] = ACTIONS(1515), - [anon_sym_try] = ACTIONS(1515), - [sym_integer_literal] = ACTIONS(1513), - [aux_sym_string_literal_token1] = ACTIONS(1513), - [sym_char_literal] = ACTIONS(1513), - [anon_sym_true] = ACTIONS(1515), - [anon_sym_false] = ACTIONS(1515), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1515), - [sym_super] = ACTIONS(1515), - [sym_crate] = ACTIONS(1515), - [sym_metavariable] = ACTIONS(1513), - [sym__raw_string_literal_start] = ACTIONS(1513), - [sym_float_literal] = ACTIONS(1513), + [ts_builtin_sym_end] = ACTIONS(1361), + [sym_identifier] = ACTIONS(1363), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_macro_rules_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1361), + [anon_sym_LBRACK] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1361), + [anon_sym_RBRACE] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1361), + [anon_sym_u8] = ACTIONS(1363), + [anon_sym_i8] = ACTIONS(1363), + [anon_sym_u16] = ACTIONS(1363), + [anon_sym_i16] = ACTIONS(1363), + [anon_sym_u32] = ACTIONS(1363), + [anon_sym_i32] = ACTIONS(1363), + [anon_sym_u64] = ACTIONS(1363), + [anon_sym_i64] = ACTIONS(1363), + [anon_sym_u128] = ACTIONS(1363), + [anon_sym_i128] = ACTIONS(1363), + [anon_sym_isize] = ACTIONS(1363), + [anon_sym_usize] = ACTIONS(1363), + [anon_sym_f32] = ACTIONS(1363), + [anon_sym_f64] = ACTIONS(1363), + [anon_sym_bool] = ACTIONS(1363), + [anon_sym_str] = ACTIONS(1363), + [anon_sym_char] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_SLASH] = ACTIONS(1363), + [anon_sym_PERCENT] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_AMP] = ACTIONS(1363), + [anon_sym_PIPE] = ACTIONS(1363), + [anon_sym_AMP_AMP] = ACTIONS(1361), + [anon_sym_PIPE_PIPE] = ACTIONS(1361), + [anon_sym_LT_LT] = ACTIONS(1363), + [anon_sym_GT_GT] = ACTIONS(1363), + [anon_sym_PLUS_EQ] = ACTIONS(1361), + [anon_sym_DASH_EQ] = ACTIONS(1361), + [anon_sym_STAR_EQ] = ACTIONS(1361), + [anon_sym_SLASH_EQ] = ACTIONS(1361), + [anon_sym_PERCENT_EQ] = ACTIONS(1361), + [anon_sym_CARET_EQ] = ACTIONS(1361), + [anon_sym_AMP_EQ] = ACTIONS(1361), + [anon_sym_PIPE_EQ] = ACTIONS(1361), + [anon_sym_LT_LT_EQ] = ACTIONS(1361), + [anon_sym_GT_GT_EQ] = ACTIONS(1361), + [anon_sym_EQ] = ACTIONS(1363), + [anon_sym_EQ_EQ] = ACTIONS(1361), + [anon_sym_BANG_EQ] = ACTIONS(1361), + [anon_sym_GT] = ACTIONS(1363), + [anon_sym_LT] = ACTIONS(1363), + [anon_sym_GT_EQ] = ACTIONS(1361), + [anon_sym_LT_EQ] = ACTIONS(1361), + [anon_sym_DOT] = ACTIONS(1363), + [anon_sym_DOT_DOT] = ACTIONS(1363), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1361), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1361), + [anon_sym_COLON_COLON] = ACTIONS(1361), + [anon_sym_POUND] = ACTIONS(1361), + [anon_sym_SQUOTE] = ACTIONS(1363), + [anon_sym_as] = ACTIONS(1363), + [anon_sym_async] = ACTIONS(1363), + [anon_sym_break] = ACTIONS(1363), + [anon_sym_const] = ACTIONS(1363), + [anon_sym_continue] = ACTIONS(1363), + [anon_sym_default] = ACTIONS(1363), + [anon_sym_enum] = ACTIONS(1363), + [anon_sym_fn] = ACTIONS(1363), + [anon_sym_for] = ACTIONS(1363), + [anon_sym_gen] = ACTIONS(1363), + [anon_sym_if] = ACTIONS(1363), + [anon_sym_impl] = ACTIONS(1363), + [anon_sym_let] = ACTIONS(1363), + [anon_sym_loop] = ACTIONS(1363), + [anon_sym_match] = ACTIONS(1363), + [anon_sym_mod] = ACTIONS(1363), + [anon_sym_pub] = ACTIONS(1363), + [anon_sym_return] = ACTIONS(1363), + [anon_sym_static] = ACTIONS(1363), + [anon_sym_struct] = ACTIONS(1363), + [anon_sym_trait] = ACTIONS(1363), + [anon_sym_type] = ACTIONS(1363), + [anon_sym_union] = ACTIONS(1363), + [anon_sym_unsafe] = ACTIONS(1363), + [anon_sym_use] = ACTIONS(1363), + [anon_sym_while] = ACTIONS(1363), + [anon_sym_extern] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_move] = ACTIONS(1363), + [anon_sym_try] = ACTIONS(1363), + [sym_integer_literal] = ACTIONS(1361), + [aux_sym_string_literal_token1] = ACTIONS(1361), + [sym_char_literal] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1363), + [sym_super] = ACTIONS(1363), + [sym_crate] = ACTIONS(1363), + [sym_metavariable] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1361), + [sym_float_literal] = ACTIONS(1361), }, [STATE(415)] = { [sym_line_comment] = STATE(415), [sym_block_comment] = STATE(415), - [ts_builtin_sym_end] = ACTIONS(1517), - [sym_identifier] = ACTIONS(1519), - [anon_sym_SEMI] = ACTIONS(1517), - [anon_sym_macro_rules_BANG] = ACTIONS(1517), - [anon_sym_LPAREN] = ACTIONS(1517), - [anon_sym_LBRACK] = ACTIONS(1517), - [anon_sym_LBRACE] = ACTIONS(1517), - [anon_sym_RBRACE] = ACTIONS(1517), - [anon_sym_PLUS] = ACTIONS(1519), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_QMARK] = ACTIONS(1517), - [anon_sym_u8] = ACTIONS(1519), - [anon_sym_i8] = ACTIONS(1519), - [anon_sym_u16] = ACTIONS(1519), - [anon_sym_i16] = ACTIONS(1519), - [anon_sym_u32] = ACTIONS(1519), - [anon_sym_i32] = ACTIONS(1519), - [anon_sym_u64] = ACTIONS(1519), - [anon_sym_i64] = ACTIONS(1519), - [anon_sym_u128] = ACTIONS(1519), - [anon_sym_i128] = ACTIONS(1519), - [anon_sym_isize] = ACTIONS(1519), - [anon_sym_usize] = ACTIONS(1519), - [anon_sym_f32] = ACTIONS(1519), - [anon_sym_f64] = ACTIONS(1519), - [anon_sym_bool] = ACTIONS(1519), - [anon_sym_str] = ACTIONS(1519), - [anon_sym_char] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1519), - [anon_sym_SLASH] = ACTIONS(1519), - [anon_sym_PERCENT] = ACTIONS(1519), - [anon_sym_CARET] = ACTIONS(1519), - [anon_sym_BANG] = ACTIONS(1519), - [anon_sym_AMP] = ACTIONS(1519), - [anon_sym_PIPE] = ACTIONS(1519), - [anon_sym_AMP_AMP] = ACTIONS(1517), - [anon_sym_PIPE_PIPE] = ACTIONS(1517), - [anon_sym_LT_LT] = ACTIONS(1519), - [anon_sym_GT_GT] = ACTIONS(1519), - [anon_sym_PLUS_EQ] = ACTIONS(1517), - [anon_sym_DASH_EQ] = ACTIONS(1517), - [anon_sym_STAR_EQ] = ACTIONS(1517), - [anon_sym_SLASH_EQ] = ACTIONS(1517), - [anon_sym_PERCENT_EQ] = ACTIONS(1517), - [anon_sym_CARET_EQ] = ACTIONS(1517), - [anon_sym_AMP_EQ] = ACTIONS(1517), - [anon_sym_PIPE_EQ] = ACTIONS(1517), - [anon_sym_LT_LT_EQ] = ACTIONS(1517), - [anon_sym_GT_GT_EQ] = ACTIONS(1517), - [anon_sym_EQ] = ACTIONS(1519), - [anon_sym_EQ_EQ] = ACTIONS(1517), - [anon_sym_BANG_EQ] = ACTIONS(1517), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_LT] = ACTIONS(1519), - [anon_sym_GT_EQ] = ACTIONS(1517), - [anon_sym_LT_EQ] = ACTIONS(1517), - [anon_sym_DOT] = ACTIONS(1519), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1517), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1517), - [anon_sym_COLON_COLON] = ACTIONS(1517), - [anon_sym_POUND] = ACTIONS(1517), - [anon_sym_SQUOTE] = ACTIONS(1519), - [anon_sym_as] = ACTIONS(1519), - [anon_sym_async] = ACTIONS(1519), - [anon_sym_break] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(1519), - [anon_sym_continue] = ACTIONS(1519), - [anon_sym_default] = ACTIONS(1519), - [anon_sym_enum] = ACTIONS(1519), - [anon_sym_fn] = ACTIONS(1519), - [anon_sym_for] = ACTIONS(1519), - [anon_sym_gen] = ACTIONS(1519), - [anon_sym_if] = ACTIONS(1519), - [anon_sym_impl] = ACTIONS(1519), - [anon_sym_let] = ACTIONS(1519), - [anon_sym_loop] = ACTIONS(1519), - [anon_sym_match] = ACTIONS(1519), - [anon_sym_mod] = ACTIONS(1519), - [anon_sym_pub] = ACTIONS(1519), - [anon_sym_return] = ACTIONS(1519), - [anon_sym_static] = ACTIONS(1519), - [anon_sym_struct] = ACTIONS(1519), - [anon_sym_trait] = ACTIONS(1519), - [anon_sym_type] = ACTIONS(1519), - [anon_sym_union] = ACTIONS(1519), - [anon_sym_unsafe] = ACTIONS(1519), - [anon_sym_use] = ACTIONS(1519), - [anon_sym_while] = ACTIONS(1519), - [anon_sym_extern] = ACTIONS(1519), - [anon_sym_yield] = ACTIONS(1519), - [anon_sym_move] = ACTIONS(1519), - [anon_sym_try] = ACTIONS(1519), - [sym_integer_literal] = ACTIONS(1517), - [aux_sym_string_literal_token1] = ACTIONS(1517), - [sym_char_literal] = ACTIONS(1517), - [anon_sym_true] = ACTIONS(1519), - [anon_sym_false] = ACTIONS(1519), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1519), - [sym_super] = ACTIONS(1519), - [sym_crate] = ACTIONS(1519), - [sym_metavariable] = ACTIONS(1517), - [sym__raw_string_literal_start] = ACTIONS(1517), - [sym_float_literal] = ACTIONS(1517), + [ts_builtin_sym_end] = ACTIONS(1365), + [sym_identifier] = ACTIONS(1367), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_macro_rules_BANG] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(1365), + [anon_sym_LBRACE] = ACTIONS(1365), + [anon_sym_RBRACE] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1367), + [anon_sym_i8] = ACTIONS(1367), + [anon_sym_u16] = ACTIONS(1367), + [anon_sym_i16] = ACTIONS(1367), + [anon_sym_u32] = ACTIONS(1367), + [anon_sym_i32] = ACTIONS(1367), + [anon_sym_u64] = ACTIONS(1367), + [anon_sym_i64] = ACTIONS(1367), + [anon_sym_u128] = ACTIONS(1367), + [anon_sym_i128] = ACTIONS(1367), + [anon_sym_isize] = ACTIONS(1367), + [anon_sym_usize] = ACTIONS(1367), + [anon_sym_f32] = ACTIONS(1367), + [anon_sym_f64] = ACTIONS(1367), + [anon_sym_bool] = ACTIONS(1367), + [anon_sym_str] = ACTIONS(1367), + [anon_sym_char] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1367), + [anon_sym_SLASH] = ACTIONS(1367), + [anon_sym_PERCENT] = ACTIONS(1367), + [anon_sym_CARET] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_LT_LT] = ACTIONS(1367), + [anon_sym_GT_GT] = ACTIONS(1367), + [anon_sym_PLUS_EQ] = ACTIONS(1365), + [anon_sym_DASH_EQ] = ACTIONS(1365), + [anon_sym_STAR_EQ] = ACTIONS(1365), + [anon_sym_SLASH_EQ] = ACTIONS(1365), + [anon_sym_PERCENT_EQ] = ACTIONS(1365), + [anon_sym_CARET_EQ] = ACTIONS(1365), + [anon_sym_AMP_EQ] = ACTIONS(1365), + [anon_sym_PIPE_EQ] = ACTIONS(1365), + [anon_sym_LT_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ] = ACTIONS(1367), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_GT] = ACTIONS(1367), + [anon_sym_LT] = ACTIONS(1367), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_DOT] = ACTIONS(1367), + [anon_sym_DOT_DOT] = ACTIONS(1367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1365), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1365), + [anon_sym_COLON_COLON] = ACTIONS(1365), + [anon_sym_POUND] = ACTIONS(1365), + [anon_sym_SQUOTE] = ACTIONS(1367), + [anon_sym_as] = ACTIONS(1367), + [anon_sym_async] = ACTIONS(1367), + [anon_sym_break] = ACTIONS(1367), + [anon_sym_const] = ACTIONS(1367), + [anon_sym_continue] = ACTIONS(1367), + [anon_sym_default] = ACTIONS(1367), + [anon_sym_enum] = ACTIONS(1367), + [anon_sym_fn] = ACTIONS(1367), + [anon_sym_for] = ACTIONS(1367), + [anon_sym_gen] = ACTIONS(1367), + [anon_sym_if] = ACTIONS(1367), + [anon_sym_impl] = ACTIONS(1367), + [anon_sym_let] = ACTIONS(1367), + [anon_sym_loop] = ACTIONS(1367), + [anon_sym_match] = ACTIONS(1367), + [anon_sym_mod] = ACTIONS(1367), + [anon_sym_pub] = ACTIONS(1367), + [anon_sym_return] = ACTIONS(1367), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_struct] = ACTIONS(1367), + [anon_sym_trait] = ACTIONS(1367), + [anon_sym_type] = ACTIONS(1367), + [anon_sym_union] = ACTIONS(1367), + [anon_sym_unsafe] = ACTIONS(1367), + [anon_sym_use] = ACTIONS(1367), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_extern] = ACTIONS(1367), + [anon_sym_yield] = ACTIONS(1367), + [anon_sym_move] = ACTIONS(1367), + [anon_sym_try] = ACTIONS(1367), + [sym_integer_literal] = ACTIONS(1365), + [aux_sym_string_literal_token1] = ACTIONS(1365), + [sym_char_literal] = ACTIONS(1365), + [anon_sym_true] = ACTIONS(1367), + [anon_sym_false] = ACTIONS(1367), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1367), + [sym_super] = ACTIONS(1367), + [sym_crate] = ACTIONS(1367), + [sym_metavariable] = ACTIONS(1365), + [sym__raw_string_literal_start] = ACTIONS(1365), + [sym_float_literal] = ACTIONS(1365), }, [STATE(416)] = { [sym_line_comment] = STATE(416), [sym_block_comment] = STATE(416), - [ts_builtin_sym_end] = ACTIONS(1521), - [sym_identifier] = ACTIONS(1523), - [anon_sym_SEMI] = ACTIONS(1521), - [anon_sym_macro_rules_BANG] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LBRACE] = ACTIONS(1521), - [anon_sym_RBRACE] = ACTIONS(1521), - [anon_sym_PLUS] = ACTIONS(1523), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(1521), - [anon_sym_u8] = ACTIONS(1523), - [anon_sym_i8] = ACTIONS(1523), - [anon_sym_u16] = ACTIONS(1523), - [anon_sym_i16] = ACTIONS(1523), - [anon_sym_u32] = ACTIONS(1523), - [anon_sym_i32] = ACTIONS(1523), - [anon_sym_u64] = ACTIONS(1523), - [anon_sym_i64] = ACTIONS(1523), - [anon_sym_u128] = ACTIONS(1523), - [anon_sym_i128] = ACTIONS(1523), - [anon_sym_isize] = ACTIONS(1523), - [anon_sym_usize] = ACTIONS(1523), - [anon_sym_f32] = ACTIONS(1523), - [anon_sym_f64] = ACTIONS(1523), - [anon_sym_bool] = ACTIONS(1523), - [anon_sym_str] = ACTIONS(1523), - [anon_sym_char] = ACTIONS(1523), - [anon_sym_DASH] = ACTIONS(1523), - [anon_sym_SLASH] = ACTIONS(1523), - [anon_sym_PERCENT] = ACTIONS(1523), - [anon_sym_CARET] = ACTIONS(1523), - [anon_sym_BANG] = ACTIONS(1523), - [anon_sym_AMP] = ACTIONS(1523), - [anon_sym_PIPE] = ACTIONS(1523), - [anon_sym_AMP_AMP] = ACTIONS(1521), - [anon_sym_PIPE_PIPE] = ACTIONS(1521), - [anon_sym_LT_LT] = ACTIONS(1523), - [anon_sym_GT_GT] = ACTIONS(1523), - [anon_sym_PLUS_EQ] = ACTIONS(1521), - [anon_sym_DASH_EQ] = ACTIONS(1521), - [anon_sym_STAR_EQ] = ACTIONS(1521), - [anon_sym_SLASH_EQ] = ACTIONS(1521), - [anon_sym_PERCENT_EQ] = ACTIONS(1521), - [anon_sym_CARET_EQ] = ACTIONS(1521), - [anon_sym_AMP_EQ] = ACTIONS(1521), - [anon_sym_PIPE_EQ] = ACTIONS(1521), - [anon_sym_LT_LT_EQ] = ACTIONS(1521), - [anon_sym_GT_GT_EQ] = ACTIONS(1521), - [anon_sym_EQ] = ACTIONS(1523), - [anon_sym_EQ_EQ] = ACTIONS(1521), - [anon_sym_BANG_EQ] = ACTIONS(1521), - [anon_sym_GT] = ACTIONS(1523), - [anon_sym_LT] = ACTIONS(1523), - [anon_sym_GT_EQ] = ACTIONS(1521), - [anon_sym_LT_EQ] = ACTIONS(1521), - [anon_sym_DOT] = ACTIONS(1523), - [anon_sym_DOT_DOT] = ACTIONS(1523), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1521), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1521), - [anon_sym_COLON_COLON] = ACTIONS(1521), - [anon_sym_POUND] = ACTIONS(1521), - [anon_sym_SQUOTE] = ACTIONS(1523), - [anon_sym_as] = ACTIONS(1523), - [anon_sym_async] = ACTIONS(1523), - [anon_sym_break] = ACTIONS(1523), - [anon_sym_const] = ACTIONS(1523), - [anon_sym_continue] = ACTIONS(1523), - [anon_sym_default] = ACTIONS(1523), - [anon_sym_enum] = ACTIONS(1523), - [anon_sym_fn] = ACTIONS(1523), - [anon_sym_for] = ACTIONS(1523), - [anon_sym_gen] = ACTIONS(1523), - [anon_sym_if] = ACTIONS(1523), - [anon_sym_impl] = ACTIONS(1523), - [anon_sym_let] = ACTIONS(1523), - [anon_sym_loop] = ACTIONS(1523), - [anon_sym_match] = ACTIONS(1523), - [anon_sym_mod] = ACTIONS(1523), - [anon_sym_pub] = ACTIONS(1523), - [anon_sym_return] = ACTIONS(1523), - [anon_sym_static] = ACTIONS(1523), - [anon_sym_struct] = ACTIONS(1523), - [anon_sym_trait] = ACTIONS(1523), - [anon_sym_type] = ACTIONS(1523), - [anon_sym_union] = ACTIONS(1523), - [anon_sym_unsafe] = ACTIONS(1523), - [anon_sym_use] = ACTIONS(1523), - [anon_sym_while] = ACTIONS(1523), - [anon_sym_extern] = ACTIONS(1523), - [anon_sym_yield] = ACTIONS(1523), - [anon_sym_move] = ACTIONS(1523), - [anon_sym_try] = ACTIONS(1523), - [sym_integer_literal] = ACTIONS(1521), - [aux_sym_string_literal_token1] = ACTIONS(1521), - [sym_char_literal] = ACTIONS(1521), - [anon_sym_true] = ACTIONS(1523), - [anon_sym_false] = ACTIONS(1523), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1523), - [sym_super] = ACTIONS(1523), - [sym_crate] = ACTIONS(1523), - [sym_metavariable] = ACTIONS(1521), - [sym__raw_string_literal_start] = ACTIONS(1521), - [sym_float_literal] = ACTIONS(1521), + [ts_builtin_sym_end] = ACTIONS(1369), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_macro_rules_BANG] = ACTIONS(1369), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_LBRACK] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(1369), + [anon_sym_RBRACE] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1371), + [anon_sym_STAR] = ACTIONS(1371), + [anon_sym_QMARK] = ACTIONS(1369), + [anon_sym_u8] = ACTIONS(1371), + [anon_sym_i8] = ACTIONS(1371), + [anon_sym_u16] = ACTIONS(1371), + [anon_sym_i16] = ACTIONS(1371), + [anon_sym_u32] = ACTIONS(1371), + [anon_sym_i32] = ACTIONS(1371), + [anon_sym_u64] = ACTIONS(1371), + [anon_sym_i64] = ACTIONS(1371), + [anon_sym_u128] = ACTIONS(1371), + [anon_sym_i128] = ACTIONS(1371), + [anon_sym_isize] = ACTIONS(1371), + [anon_sym_usize] = ACTIONS(1371), + [anon_sym_f32] = ACTIONS(1371), + [anon_sym_f64] = ACTIONS(1371), + [anon_sym_bool] = ACTIONS(1371), + [anon_sym_str] = ACTIONS(1371), + [anon_sym_char] = ACTIONS(1371), + [anon_sym_DASH] = ACTIONS(1371), + [anon_sym_SLASH] = ACTIONS(1371), + [anon_sym_PERCENT] = ACTIONS(1371), + [anon_sym_CARET] = ACTIONS(1371), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1371), + [anon_sym_PIPE] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1369), + [anon_sym_PIPE_PIPE] = ACTIONS(1369), + [anon_sym_LT_LT] = ACTIONS(1371), + [anon_sym_GT_GT] = ACTIONS(1371), + [anon_sym_PLUS_EQ] = ACTIONS(1369), + [anon_sym_DASH_EQ] = ACTIONS(1369), + [anon_sym_STAR_EQ] = ACTIONS(1369), + [anon_sym_SLASH_EQ] = ACTIONS(1369), + [anon_sym_PERCENT_EQ] = ACTIONS(1369), + [anon_sym_CARET_EQ] = ACTIONS(1369), + [anon_sym_AMP_EQ] = ACTIONS(1369), + [anon_sym_PIPE_EQ] = ACTIONS(1369), + [anon_sym_LT_LT_EQ] = ACTIONS(1369), + [anon_sym_GT_GT_EQ] = ACTIONS(1369), + [anon_sym_EQ] = ACTIONS(1371), + [anon_sym_EQ_EQ] = ACTIONS(1369), + [anon_sym_BANG_EQ] = ACTIONS(1369), + [anon_sym_GT] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1371), + [anon_sym_GT_EQ] = ACTIONS(1369), + [anon_sym_LT_EQ] = ACTIONS(1369), + [anon_sym_DOT] = ACTIONS(1371), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1369), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1369), + [anon_sym_COLON_COLON] = ACTIONS(1369), + [anon_sym_POUND] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_as] = ACTIONS(1371), + [anon_sym_async] = ACTIONS(1371), + [anon_sym_break] = ACTIONS(1371), + [anon_sym_const] = ACTIONS(1371), + [anon_sym_continue] = ACTIONS(1371), + [anon_sym_default] = ACTIONS(1371), + [anon_sym_enum] = ACTIONS(1371), + [anon_sym_fn] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1371), + [anon_sym_gen] = ACTIONS(1371), + [anon_sym_if] = ACTIONS(1371), + [anon_sym_impl] = ACTIONS(1371), + [anon_sym_let] = ACTIONS(1371), + [anon_sym_loop] = ACTIONS(1371), + [anon_sym_match] = ACTIONS(1371), + [anon_sym_mod] = ACTIONS(1371), + [anon_sym_pub] = ACTIONS(1371), + [anon_sym_return] = ACTIONS(1371), + [anon_sym_static] = ACTIONS(1371), + [anon_sym_struct] = ACTIONS(1371), + [anon_sym_trait] = ACTIONS(1371), + [anon_sym_type] = ACTIONS(1371), + [anon_sym_union] = ACTIONS(1371), + [anon_sym_unsafe] = ACTIONS(1371), + [anon_sym_use] = ACTIONS(1371), + [anon_sym_while] = ACTIONS(1371), + [anon_sym_extern] = ACTIONS(1371), + [anon_sym_yield] = ACTIONS(1371), + [anon_sym_move] = ACTIONS(1371), + [anon_sym_try] = ACTIONS(1371), + [sym_integer_literal] = ACTIONS(1369), + [aux_sym_string_literal_token1] = ACTIONS(1369), + [sym_char_literal] = ACTIONS(1369), + [anon_sym_true] = ACTIONS(1371), + [anon_sym_false] = ACTIONS(1371), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1371), + [sym_super] = ACTIONS(1371), + [sym_crate] = ACTIONS(1371), + [sym_metavariable] = ACTIONS(1369), + [sym__raw_string_literal_start] = ACTIONS(1369), + [sym_float_literal] = ACTIONS(1369), }, [STATE(417)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_self_parameter] = STATE(2920), - [sym_variadic_parameter] = STATE(2920), - [sym_parameter] = STATE(2920), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2792), - [sym_bracketed_type] = STATE(3691), - [sym_lifetime] = STATE(3008), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3333), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2540), - [sym_scoped_identifier] = STATE(2311), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3210), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(417), [sym_block_comment] = STATE(417), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u128] = ACTIONS(1187), - [anon_sym_i128] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_str] = ACTIONS(1187), - [anon_sym_char] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1525), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1163), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1201), - [sym_super] = ACTIONS(1203), - [sym_crate] = ACTIONS(1203), - [sym_metavariable] = ACTIONS(1205), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [ts_builtin_sym_end] = ACTIONS(1373), + [sym_identifier] = ACTIONS(1375), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_macro_rules_BANG] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1373), + [anon_sym_LBRACK] = ACTIONS(1373), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_RBRACE] = ACTIONS(1373), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1375), + [anon_sym_QMARK] = ACTIONS(1373), + [anon_sym_u8] = ACTIONS(1375), + [anon_sym_i8] = ACTIONS(1375), + [anon_sym_u16] = ACTIONS(1375), + [anon_sym_i16] = ACTIONS(1375), + [anon_sym_u32] = ACTIONS(1375), + [anon_sym_i32] = ACTIONS(1375), + [anon_sym_u64] = ACTIONS(1375), + [anon_sym_i64] = ACTIONS(1375), + [anon_sym_u128] = ACTIONS(1375), + [anon_sym_i128] = ACTIONS(1375), + [anon_sym_isize] = ACTIONS(1375), + [anon_sym_usize] = ACTIONS(1375), + [anon_sym_f32] = ACTIONS(1375), + [anon_sym_f64] = ACTIONS(1375), + [anon_sym_bool] = ACTIONS(1375), + [anon_sym_str] = ACTIONS(1375), + [anon_sym_char] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(1375), + [anon_sym_PERCENT] = ACTIONS(1375), + [anon_sym_CARET] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_AMP_AMP] = ACTIONS(1373), + [anon_sym_PIPE_PIPE] = ACTIONS(1373), + [anon_sym_LT_LT] = ACTIONS(1375), + [anon_sym_GT_GT] = ACTIONS(1375), + [anon_sym_PLUS_EQ] = ACTIONS(1373), + [anon_sym_DASH_EQ] = ACTIONS(1373), + [anon_sym_STAR_EQ] = ACTIONS(1373), + [anon_sym_SLASH_EQ] = ACTIONS(1373), + [anon_sym_PERCENT_EQ] = ACTIONS(1373), + [anon_sym_CARET_EQ] = ACTIONS(1373), + [anon_sym_AMP_EQ] = ACTIONS(1373), + [anon_sym_PIPE_EQ] = ACTIONS(1373), + [anon_sym_LT_LT_EQ] = ACTIONS(1373), + [anon_sym_GT_GT_EQ] = ACTIONS(1373), + [anon_sym_EQ] = ACTIONS(1375), + [anon_sym_EQ_EQ] = ACTIONS(1373), + [anon_sym_BANG_EQ] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(1375), + [anon_sym_GT_EQ] = ACTIONS(1373), + [anon_sym_LT_EQ] = ACTIONS(1373), + [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_DOT_DOT] = ACTIONS(1375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1373), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1373), + [anon_sym_COLON_COLON] = ACTIONS(1373), + [anon_sym_POUND] = ACTIONS(1373), + [anon_sym_SQUOTE] = ACTIONS(1375), + [anon_sym_as] = ACTIONS(1375), + [anon_sym_async] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1375), + [anon_sym_const] = ACTIONS(1375), + [anon_sym_continue] = ACTIONS(1375), + [anon_sym_default] = ACTIONS(1375), + [anon_sym_enum] = ACTIONS(1375), + [anon_sym_fn] = ACTIONS(1375), + [anon_sym_for] = ACTIONS(1375), + [anon_sym_gen] = ACTIONS(1375), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_impl] = ACTIONS(1375), + [anon_sym_let] = ACTIONS(1375), + [anon_sym_loop] = ACTIONS(1375), + [anon_sym_match] = ACTIONS(1375), + [anon_sym_mod] = ACTIONS(1375), + [anon_sym_pub] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_static] = ACTIONS(1375), + [anon_sym_struct] = ACTIONS(1375), + [anon_sym_trait] = ACTIONS(1375), + [anon_sym_type] = ACTIONS(1375), + [anon_sym_union] = ACTIONS(1375), + [anon_sym_unsafe] = ACTIONS(1375), + [anon_sym_use] = ACTIONS(1375), + [anon_sym_while] = ACTIONS(1375), + [anon_sym_extern] = ACTIONS(1375), + [anon_sym_yield] = ACTIONS(1375), + [anon_sym_move] = ACTIONS(1375), + [anon_sym_try] = ACTIONS(1375), + [sym_integer_literal] = ACTIONS(1373), + [aux_sym_string_literal_token1] = ACTIONS(1373), + [sym_char_literal] = ACTIONS(1373), + [anon_sym_true] = ACTIONS(1375), + [anon_sym_false] = ACTIONS(1375), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1375), + [sym_super] = ACTIONS(1375), + [sym_crate] = ACTIONS(1375), + [sym_metavariable] = ACTIONS(1373), + [sym__raw_string_literal_start] = ACTIONS(1373), + [sym_float_literal] = ACTIONS(1373), }, [STATE(418)] = { [sym_line_comment] = STATE(418), [sym_block_comment] = STATE(418), - [ts_builtin_sym_end] = ACTIONS(1527), - [sym_identifier] = ACTIONS(1529), - [anon_sym_SEMI] = ACTIONS(1527), - [anon_sym_macro_rules_BANG] = ACTIONS(1527), - [anon_sym_LPAREN] = ACTIONS(1527), - [anon_sym_LBRACK] = ACTIONS(1527), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_RBRACE] = ACTIONS(1527), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(1529), - [anon_sym_QMARK] = ACTIONS(1527), - [anon_sym_u8] = ACTIONS(1529), - [anon_sym_i8] = ACTIONS(1529), - [anon_sym_u16] = ACTIONS(1529), - [anon_sym_i16] = ACTIONS(1529), - [anon_sym_u32] = ACTIONS(1529), - [anon_sym_i32] = ACTIONS(1529), - [anon_sym_u64] = ACTIONS(1529), - [anon_sym_i64] = ACTIONS(1529), - [anon_sym_u128] = ACTIONS(1529), - [anon_sym_i128] = ACTIONS(1529), - [anon_sym_isize] = ACTIONS(1529), - [anon_sym_usize] = ACTIONS(1529), - [anon_sym_f32] = ACTIONS(1529), - [anon_sym_f64] = ACTIONS(1529), - [anon_sym_bool] = ACTIONS(1529), - [anon_sym_str] = ACTIONS(1529), - [anon_sym_char] = ACTIONS(1529), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_SLASH] = ACTIONS(1529), - [anon_sym_PERCENT] = ACTIONS(1529), - [anon_sym_CARET] = ACTIONS(1529), - [anon_sym_BANG] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_PIPE] = ACTIONS(1529), - [anon_sym_AMP_AMP] = ACTIONS(1527), - [anon_sym_PIPE_PIPE] = ACTIONS(1527), - [anon_sym_LT_LT] = ACTIONS(1529), - [anon_sym_GT_GT] = ACTIONS(1529), - [anon_sym_PLUS_EQ] = ACTIONS(1527), - [anon_sym_DASH_EQ] = ACTIONS(1527), - [anon_sym_STAR_EQ] = ACTIONS(1527), - [anon_sym_SLASH_EQ] = ACTIONS(1527), - [anon_sym_PERCENT_EQ] = ACTIONS(1527), - [anon_sym_CARET_EQ] = ACTIONS(1527), - [anon_sym_AMP_EQ] = ACTIONS(1527), - [anon_sym_PIPE_EQ] = ACTIONS(1527), - [anon_sym_LT_LT_EQ] = ACTIONS(1527), - [anon_sym_GT_GT_EQ] = ACTIONS(1527), - [anon_sym_EQ] = ACTIONS(1529), - [anon_sym_EQ_EQ] = ACTIONS(1527), - [anon_sym_BANG_EQ] = ACTIONS(1527), - [anon_sym_GT] = ACTIONS(1529), - [anon_sym_LT] = ACTIONS(1529), - [anon_sym_GT_EQ] = ACTIONS(1527), - [anon_sym_LT_EQ] = ACTIONS(1527), - [anon_sym_DOT] = ACTIONS(1529), - [anon_sym_DOT_DOT] = ACTIONS(1529), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1527), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1527), - [anon_sym_COLON_COLON] = ACTIONS(1527), - [anon_sym_POUND] = ACTIONS(1527), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_as] = ACTIONS(1529), - [anon_sym_async] = ACTIONS(1529), - [anon_sym_break] = ACTIONS(1529), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_continue] = ACTIONS(1529), - [anon_sym_default] = ACTIONS(1529), - [anon_sym_enum] = ACTIONS(1529), - [anon_sym_fn] = ACTIONS(1529), - [anon_sym_for] = ACTIONS(1529), - [anon_sym_gen] = ACTIONS(1529), - [anon_sym_if] = ACTIONS(1529), - [anon_sym_impl] = ACTIONS(1529), - [anon_sym_let] = ACTIONS(1529), - [anon_sym_loop] = ACTIONS(1529), - [anon_sym_match] = ACTIONS(1529), - [anon_sym_mod] = ACTIONS(1529), - [anon_sym_pub] = ACTIONS(1529), - [anon_sym_return] = ACTIONS(1529), - [anon_sym_static] = ACTIONS(1529), - [anon_sym_struct] = ACTIONS(1529), - [anon_sym_trait] = ACTIONS(1529), - [anon_sym_type] = ACTIONS(1529), - [anon_sym_union] = ACTIONS(1529), - [anon_sym_unsafe] = ACTIONS(1529), - [anon_sym_use] = ACTIONS(1529), - [anon_sym_while] = ACTIONS(1529), - [anon_sym_extern] = ACTIONS(1529), - [anon_sym_yield] = ACTIONS(1529), - [anon_sym_move] = ACTIONS(1529), - [anon_sym_try] = ACTIONS(1529), - [sym_integer_literal] = ACTIONS(1527), - [aux_sym_string_literal_token1] = ACTIONS(1527), - [sym_char_literal] = ACTIONS(1527), - [anon_sym_true] = ACTIONS(1529), - [anon_sym_false] = ACTIONS(1529), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1529), - [sym_super] = ACTIONS(1529), - [sym_crate] = ACTIONS(1529), - [sym_metavariable] = ACTIONS(1527), - [sym__raw_string_literal_start] = ACTIONS(1527), - [sym_float_literal] = ACTIONS(1527), + [ts_builtin_sym_end] = ACTIONS(1297), + [sym_identifier] = ACTIONS(1295), + [anon_sym_SEMI] = ACTIONS(1297), + [anon_sym_macro_rules_BANG] = ACTIONS(1297), + [anon_sym_LPAREN] = ACTIONS(1297), + [anon_sym_LBRACK] = ACTIONS(1297), + [anon_sym_LBRACE] = ACTIONS(1297), + [anon_sym_RBRACE] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_STAR] = ACTIONS(1295), + [anon_sym_QMARK] = ACTIONS(1297), + [anon_sym_u8] = ACTIONS(1295), + [anon_sym_i8] = ACTIONS(1295), + [anon_sym_u16] = ACTIONS(1295), + [anon_sym_i16] = ACTIONS(1295), + [anon_sym_u32] = ACTIONS(1295), + [anon_sym_i32] = ACTIONS(1295), + [anon_sym_u64] = ACTIONS(1295), + [anon_sym_i64] = ACTIONS(1295), + [anon_sym_u128] = ACTIONS(1295), + [anon_sym_i128] = ACTIONS(1295), + [anon_sym_isize] = ACTIONS(1295), + [anon_sym_usize] = ACTIONS(1295), + [anon_sym_f32] = ACTIONS(1295), + [anon_sym_f64] = ACTIONS(1295), + [anon_sym_bool] = ACTIONS(1295), + [anon_sym_str] = ACTIONS(1295), + [anon_sym_char] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PERCENT] = ACTIONS(1295), + [anon_sym_CARET] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1295), + [anon_sym_AMP] = ACTIONS(1295), + [anon_sym_PIPE] = ACTIONS(1295), + [anon_sym_AMP_AMP] = ACTIONS(1297), + [anon_sym_PIPE_PIPE] = ACTIONS(1297), + [anon_sym_LT_LT] = ACTIONS(1295), + [anon_sym_GT_GT] = ACTIONS(1295), + [anon_sym_PLUS_EQ] = ACTIONS(1297), + [anon_sym_DASH_EQ] = ACTIONS(1297), + [anon_sym_STAR_EQ] = ACTIONS(1297), + [anon_sym_SLASH_EQ] = ACTIONS(1297), + [anon_sym_PERCENT_EQ] = ACTIONS(1297), + [anon_sym_CARET_EQ] = ACTIONS(1297), + [anon_sym_AMP_EQ] = ACTIONS(1297), + [anon_sym_PIPE_EQ] = ACTIONS(1297), + [anon_sym_LT_LT_EQ] = ACTIONS(1297), + [anon_sym_GT_GT_EQ] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1295), + [anon_sym_EQ_EQ] = ACTIONS(1297), + [anon_sym_BANG_EQ] = ACTIONS(1297), + [anon_sym_GT] = ACTIONS(1295), + [anon_sym_LT] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1297), + [anon_sym_LT_EQ] = ACTIONS(1297), + [anon_sym_DOT] = ACTIONS(1295), + [anon_sym_DOT_DOT] = ACTIONS(1295), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1297), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1297), + [anon_sym_COLON_COLON] = ACTIONS(1297), + [anon_sym_POUND] = ACTIONS(1297), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_as] = ACTIONS(1295), + [anon_sym_async] = ACTIONS(1295), + [anon_sym_break] = ACTIONS(1295), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_continue] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1295), + [anon_sym_enum] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1295), + [anon_sym_for] = ACTIONS(1295), + [anon_sym_gen] = ACTIONS(1295), + [anon_sym_if] = ACTIONS(1295), + [anon_sym_impl] = ACTIONS(1295), + [anon_sym_let] = ACTIONS(1295), + [anon_sym_loop] = ACTIONS(1295), + [anon_sym_match] = ACTIONS(1295), + [anon_sym_mod] = ACTIONS(1295), + [anon_sym_pub] = ACTIONS(1295), + [anon_sym_return] = ACTIONS(1295), + [anon_sym_static] = ACTIONS(1295), + [anon_sym_struct] = ACTIONS(1295), + [anon_sym_trait] = ACTIONS(1295), + [anon_sym_type] = ACTIONS(1295), + [anon_sym_union] = ACTIONS(1295), + [anon_sym_unsafe] = ACTIONS(1295), + [anon_sym_use] = ACTIONS(1295), + [anon_sym_while] = ACTIONS(1295), + [anon_sym_extern] = ACTIONS(1295), + [anon_sym_yield] = ACTIONS(1295), + [anon_sym_move] = ACTIONS(1295), + [anon_sym_try] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1297), + [aux_sym_string_literal_token1] = ACTIONS(1297), + [sym_char_literal] = ACTIONS(1297), + [anon_sym_true] = ACTIONS(1295), + [anon_sym_false] = ACTIONS(1295), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1295), + [sym_super] = ACTIONS(1295), + [sym_crate] = ACTIONS(1295), + [sym_metavariable] = ACTIONS(1297), + [sym__raw_string_literal_start] = ACTIONS(1297), + [sym_float_literal] = ACTIONS(1297), }, [STATE(419)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_self_parameter] = STATE(3035), + [sym_variadic_parameter] = STATE(3035), + [sym_parameter] = STATE(3035), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2697), + [sym_bracketed_type] = STATE(3751), + [sym_lifetime] = STATE(2953), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2569), + [sym_scoped_identifier] = STATE(2379), + [sym_scoped_type_identifier] = STATE(2296), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(3286), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(419), [sym_block_comment] = STATE(419), - [ts_builtin_sym_end] = ACTIONS(1531), - [sym_identifier] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_macro_rules_BANG] = ACTIONS(1531), - [anon_sym_LPAREN] = ACTIONS(1531), - [anon_sym_LBRACK] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(1531), - [anon_sym_RBRACE] = ACTIONS(1531), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1533), - [anon_sym_QMARK] = ACTIONS(1531), - [anon_sym_u8] = ACTIONS(1533), - [anon_sym_i8] = ACTIONS(1533), - [anon_sym_u16] = ACTIONS(1533), - [anon_sym_i16] = ACTIONS(1533), - [anon_sym_u32] = ACTIONS(1533), - [anon_sym_i32] = ACTIONS(1533), - [anon_sym_u64] = ACTIONS(1533), - [anon_sym_i64] = ACTIONS(1533), - [anon_sym_u128] = ACTIONS(1533), - [anon_sym_i128] = ACTIONS(1533), - [anon_sym_isize] = ACTIONS(1533), - [anon_sym_usize] = ACTIONS(1533), - [anon_sym_f32] = ACTIONS(1533), - [anon_sym_f64] = ACTIONS(1533), - [anon_sym_bool] = ACTIONS(1533), - [anon_sym_str] = ACTIONS(1533), - [anon_sym_char] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_SLASH] = ACTIONS(1533), - [anon_sym_PERCENT] = ACTIONS(1533), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_PIPE] = ACTIONS(1533), - [anon_sym_AMP_AMP] = ACTIONS(1531), - [anon_sym_PIPE_PIPE] = ACTIONS(1531), - [anon_sym_LT_LT] = ACTIONS(1533), - [anon_sym_GT_GT] = ACTIONS(1533), - [anon_sym_PLUS_EQ] = ACTIONS(1531), - [anon_sym_DASH_EQ] = ACTIONS(1531), - [anon_sym_STAR_EQ] = ACTIONS(1531), - [anon_sym_SLASH_EQ] = ACTIONS(1531), - [anon_sym_PERCENT_EQ] = ACTIONS(1531), - [anon_sym_CARET_EQ] = ACTIONS(1531), - [anon_sym_AMP_EQ] = ACTIONS(1531), - [anon_sym_PIPE_EQ] = ACTIONS(1531), - [anon_sym_LT_LT_EQ] = ACTIONS(1531), - [anon_sym_GT_GT_EQ] = ACTIONS(1531), - [anon_sym_EQ] = ACTIONS(1533), - [anon_sym_EQ_EQ] = ACTIONS(1531), - [anon_sym_BANG_EQ] = ACTIONS(1531), - [anon_sym_GT] = ACTIONS(1533), - [anon_sym_LT] = ACTIONS(1533), - [anon_sym_GT_EQ] = ACTIONS(1531), - [anon_sym_LT_EQ] = ACTIONS(1531), - [anon_sym_DOT] = ACTIONS(1533), - [anon_sym_DOT_DOT] = ACTIONS(1533), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1531), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1531), - [anon_sym_COLON_COLON] = ACTIONS(1531), - [anon_sym_POUND] = ACTIONS(1531), - [anon_sym_SQUOTE] = ACTIONS(1533), - [anon_sym_as] = ACTIONS(1533), - [anon_sym_async] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_fn] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_gen] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_impl] = ACTIONS(1533), - [anon_sym_let] = ACTIONS(1533), - [anon_sym_loop] = ACTIONS(1533), - [anon_sym_match] = ACTIONS(1533), - [anon_sym_mod] = ACTIONS(1533), - [anon_sym_pub] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_trait] = ACTIONS(1533), - [anon_sym_type] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_unsafe] = ACTIONS(1533), - [anon_sym_use] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym_yield] = ACTIONS(1533), - [anon_sym_move] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [sym_integer_literal] = ACTIONS(1531), - [aux_sym_string_literal_token1] = ACTIONS(1531), - [sym_char_literal] = ACTIONS(1531), - [anon_sym_true] = ACTIONS(1533), - [anon_sym_false] = ACTIONS(1533), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1533), - [sym_super] = ACTIONS(1533), - [sym_crate] = ACTIONS(1533), - [sym_metavariable] = ACTIONS(1531), - [sym__raw_string_literal_start] = ACTIONS(1531), - [sym_float_literal] = ACTIONS(1531), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1157), + [anon_sym_LPAREN] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1163), + [anon_sym_i8] = ACTIONS(1163), + [anon_sym_u16] = ACTIONS(1163), + [anon_sym_i16] = ACTIONS(1163), + [anon_sym_u32] = ACTIONS(1163), + [anon_sym_i32] = ACTIONS(1163), + [anon_sym_u64] = ACTIONS(1163), + [anon_sym_i64] = ACTIONS(1163), + [anon_sym_u128] = ACTIONS(1163), + [anon_sym_i128] = ACTIONS(1163), + [anon_sym_isize] = ACTIONS(1163), + [anon_sym_usize] = ACTIONS(1163), + [anon_sym_f32] = ACTIONS(1163), + [anon_sym_f64] = ACTIONS(1163), + [anon_sym_bool] = ACTIONS(1163), + [anon_sym_str] = ACTIONS(1163), + [anon_sym_char] = ACTIONS(1163), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1165), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1079), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1171), + [anon_sym_SQUOTE] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_default] = ACTIONS(1173), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1175), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1175), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_ref] = ACTIONS(1109), + [anon_sym_dyn] = ACTIONS(1111), + [sym_mutable_specifier] = ACTIONS(1113), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1177), + [sym_super] = ACTIONS(1179), + [sym_crate] = ACTIONS(1179), + [sym_metavariable] = ACTIONS(1181), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(420)] = { [sym_line_comment] = STATE(420), [sym_block_comment] = STATE(420), - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_macro_rules_BANG] = ACTIONS(1535), - [anon_sym_LPAREN] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1535), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_PLUS] = ACTIONS(1459), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_QMARK] = ACTIONS(1457), - [anon_sym_u8] = ACTIONS(1537), - [anon_sym_i8] = ACTIONS(1537), - [anon_sym_u16] = ACTIONS(1537), - [anon_sym_i16] = ACTIONS(1537), - [anon_sym_u32] = ACTIONS(1537), - [anon_sym_i32] = ACTIONS(1537), - [anon_sym_u64] = ACTIONS(1537), - [anon_sym_i64] = ACTIONS(1537), - [anon_sym_u128] = ACTIONS(1537), - [anon_sym_i128] = ACTIONS(1537), - [anon_sym_isize] = ACTIONS(1537), - [anon_sym_usize] = ACTIONS(1537), - [anon_sym_f32] = ACTIONS(1537), - [anon_sym_f64] = ACTIONS(1537), - [anon_sym_bool] = ACTIONS(1537), - [anon_sym_str] = ACTIONS(1537), - [anon_sym_char] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_SLASH] = ACTIONS(1459), - [anon_sym_PERCENT] = ACTIONS(1459), - [anon_sym_CARET] = ACTIONS(1459), - [anon_sym_BANG] = ACTIONS(1537), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_AMP_AMP] = ACTIONS(1457), - [anon_sym_PIPE_PIPE] = ACTIONS(1457), - [anon_sym_LT_LT] = ACTIONS(1459), - [anon_sym_GT_GT] = ACTIONS(1459), - [anon_sym_PLUS_EQ] = ACTIONS(1457), - [anon_sym_DASH_EQ] = ACTIONS(1457), - [anon_sym_STAR_EQ] = ACTIONS(1457), - [anon_sym_SLASH_EQ] = ACTIONS(1457), - [anon_sym_PERCENT_EQ] = ACTIONS(1457), - [anon_sym_CARET_EQ] = ACTIONS(1457), - [anon_sym_AMP_EQ] = ACTIONS(1457), - [anon_sym_PIPE_EQ] = ACTIONS(1457), - [anon_sym_LT_LT_EQ] = ACTIONS(1457), - [anon_sym_GT_GT_EQ] = ACTIONS(1457), - [anon_sym_EQ] = ACTIONS(1459), - [anon_sym_EQ_EQ] = ACTIONS(1457), - [anon_sym_BANG_EQ] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1537), - [anon_sym_GT_EQ] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1457), - [anon_sym_DOT] = ACTIONS(1459), - [anon_sym_DOT_DOT] = ACTIONS(1537), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1457), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1457), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_POUND] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1537), - [anon_sym_as] = ACTIONS(1459), - [anon_sym_async] = ACTIONS(1537), - [anon_sym_break] = ACTIONS(1537), - [anon_sym_const] = ACTIONS(1537), - [anon_sym_continue] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1537), - [anon_sym_enum] = ACTIONS(1537), - [anon_sym_fn] = ACTIONS(1537), - [anon_sym_for] = ACTIONS(1537), - [anon_sym_gen] = ACTIONS(1537), - [anon_sym_if] = ACTIONS(1537), - [anon_sym_impl] = ACTIONS(1537), - [anon_sym_let] = ACTIONS(1537), - [anon_sym_loop] = ACTIONS(1537), - [anon_sym_match] = ACTIONS(1537), - [anon_sym_mod] = ACTIONS(1537), - [anon_sym_pub] = ACTIONS(1537), - [anon_sym_return] = ACTIONS(1537), - [anon_sym_static] = ACTIONS(1537), - [anon_sym_struct] = ACTIONS(1537), - [anon_sym_trait] = ACTIONS(1537), - [anon_sym_type] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1537), - [anon_sym_unsafe] = ACTIONS(1537), - [anon_sym_use] = ACTIONS(1537), - [anon_sym_while] = ACTIONS(1537), - [anon_sym_extern] = ACTIONS(1537), - [anon_sym_yield] = ACTIONS(1537), - [anon_sym_move] = ACTIONS(1537), - [anon_sym_try] = ACTIONS(1537), - [sym_integer_literal] = ACTIONS(1535), - [aux_sym_string_literal_token1] = ACTIONS(1535), - [sym_char_literal] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1537), - [anon_sym_false] = ACTIONS(1537), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1537), - [sym_super] = ACTIONS(1537), - [sym_crate] = ACTIONS(1537), - [sym_metavariable] = ACTIONS(1535), - [sym__raw_string_literal_start] = ACTIONS(1535), - [sym_float_literal] = ACTIONS(1535), + [ts_builtin_sym_end] = ACTIONS(1379), + [sym_identifier] = ACTIONS(1381), + [anon_sym_SEMI] = ACTIONS(1379), + [anon_sym_macro_rules_BANG] = ACTIONS(1379), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LBRACE] = ACTIONS(1379), + [anon_sym_RBRACE] = ACTIONS(1379), + [anon_sym_PLUS] = ACTIONS(1381), + [anon_sym_STAR] = ACTIONS(1381), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1381), + [anon_sym_i8] = ACTIONS(1381), + [anon_sym_u16] = ACTIONS(1381), + [anon_sym_i16] = ACTIONS(1381), + [anon_sym_u32] = ACTIONS(1381), + [anon_sym_i32] = ACTIONS(1381), + [anon_sym_u64] = ACTIONS(1381), + [anon_sym_i64] = ACTIONS(1381), + [anon_sym_u128] = ACTIONS(1381), + [anon_sym_i128] = ACTIONS(1381), + [anon_sym_isize] = ACTIONS(1381), + [anon_sym_usize] = ACTIONS(1381), + [anon_sym_f32] = ACTIONS(1381), + [anon_sym_f64] = ACTIONS(1381), + [anon_sym_bool] = ACTIONS(1381), + [anon_sym_str] = ACTIONS(1381), + [anon_sym_char] = ACTIONS(1381), + [anon_sym_DASH] = ACTIONS(1381), + [anon_sym_SLASH] = ACTIONS(1381), + [anon_sym_PERCENT] = ACTIONS(1381), + [anon_sym_CARET] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_AMP_AMP] = ACTIONS(1379), + [anon_sym_PIPE_PIPE] = ACTIONS(1379), + [anon_sym_LT_LT] = ACTIONS(1381), + [anon_sym_GT_GT] = ACTIONS(1381), + [anon_sym_PLUS_EQ] = ACTIONS(1379), + [anon_sym_DASH_EQ] = ACTIONS(1379), + [anon_sym_STAR_EQ] = ACTIONS(1379), + [anon_sym_SLASH_EQ] = ACTIONS(1379), + [anon_sym_PERCENT_EQ] = ACTIONS(1379), + [anon_sym_CARET_EQ] = ACTIONS(1379), + [anon_sym_AMP_EQ] = ACTIONS(1379), + [anon_sym_PIPE_EQ] = ACTIONS(1379), + [anon_sym_LT_LT_EQ] = ACTIONS(1379), + [anon_sym_GT_GT_EQ] = ACTIONS(1379), + [anon_sym_EQ] = ACTIONS(1381), + [anon_sym_EQ_EQ] = ACTIONS(1379), + [anon_sym_BANG_EQ] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(1381), + [anon_sym_GT_EQ] = ACTIONS(1379), + [anon_sym_LT_EQ] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(1381), + [anon_sym_DOT_DOT] = ACTIONS(1381), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1379), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1379), + [anon_sym_COLON_COLON] = ACTIONS(1379), + [anon_sym_POUND] = ACTIONS(1379), + [anon_sym_SQUOTE] = ACTIONS(1381), + [anon_sym_as] = ACTIONS(1381), + [anon_sym_async] = ACTIONS(1381), + [anon_sym_break] = ACTIONS(1381), + [anon_sym_const] = ACTIONS(1381), + [anon_sym_continue] = ACTIONS(1381), + [anon_sym_default] = ACTIONS(1381), + [anon_sym_enum] = ACTIONS(1381), + [anon_sym_fn] = ACTIONS(1381), + [anon_sym_for] = ACTIONS(1381), + [anon_sym_gen] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1381), + [anon_sym_impl] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_loop] = ACTIONS(1381), + [anon_sym_match] = ACTIONS(1381), + [anon_sym_mod] = ACTIONS(1381), + [anon_sym_pub] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1381), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_struct] = ACTIONS(1381), + [anon_sym_trait] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_union] = ACTIONS(1381), + [anon_sym_unsafe] = ACTIONS(1381), + [anon_sym_use] = ACTIONS(1381), + [anon_sym_while] = ACTIONS(1381), + [anon_sym_extern] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1381), + [anon_sym_move] = ACTIONS(1381), + [anon_sym_try] = ACTIONS(1381), + [sym_integer_literal] = ACTIONS(1379), + [aux_sym_string_literal_token1] = ACTIONS(1379), + [sym_char_literal] = ACTIONS(1379), + [anon_sym_true] = ACTIONS(1381), + [anon_sym_false] = ACTIONS(1381), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1381), + [sym_super] = ACTIONS(1381), + [sym_crate] = ACTIONS(1381), + [sym_metavariable] = ACTIONS(1379), + [sym__raw_string_literal_start] = ACTIONS(1379), + [sym_float_literal] = ACTIONS(1379), }, [STATE(421)] = { [sym_line_comment] = STATE(421), [sym_block_comment] = STATE(421), - [ts_builtin_sym_end] = ACTIONS(1047), - [sym_identifier] = ACTIONS(1045), - [anon_sym_SEMI] = ACTIONS(1047), - [anon_sym_macro_rules_BANG] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_RBRACE] = ACTIONS(1047), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_QMARK] = ACTIONS(1047), - [anon_sym_u8] = ACTIONS(1045), - [anon_sym_i8] = ACTIONS(1045), - [anon_sym_u16] = ACTIONS(1045), - [anon_sym_i16] = ACTIONS(1045), - [anon_sym_u32] = ACTIONS(1045), - [anon_sym_i32] = ACTIONS(1045), - [anon_sym_u64] = ACTIONS(1045), - [anon_sym_i64] = ACTIONS(1045), - [anon_sym_u128] = ACTIONS(1045), - [anon_sym_i128] = ACTIONS(1045), - [anon_sym_isize] = ACTIONS(1045), - [anon_sym_usize] = ACTIONS(1045), - [anon_sym_f32] = ACTIONS(1045), - [anon_sym_f64] = ACTIONS(1045), - [anon_sym_bool] = ACTIONS(1045), - [anon_sym_str] = ACTIONS(1045), - [anon_sym_char] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_SLASH] = ACTIONS(1045), - [anon_sym_PERCENT] = ACTIONS(1045), - [anon_sym_CARET] = ACTIONS(1045), - [anon_sym_BANG] = ACTIONS(1045), - [anon_sym_AMP] = ACTIONS(1045), - [anon_sym_PIPE] = ACTIONS(1045), - [anon_sym_AMP_AMP] = ACTIONS(1047), - [anon_sym_PIPE_PIPE] = ACTIONS(1047), - [anon_sym_LT_LT] = ACTIONS(1045), - [anon_sym_GT_GT] = ACTIONS(1045), - [anon_sym_PLUS_EQ] = ACTIONS(1047), - [anon_sym_DASH_EQ] = ACTIONS(1047), - [anon_sym_STAR_EQ] = ACTIONS(1047), - [anon_sym_SLASH_EQ] = ACTIONS(1047), - [anon_sym_PERCENT_EQ] = ACTIONS(1047), - [anon_sym_CARET_EQ] = ACTIONS(1047), - [anon_sym_AMP_EQ] = ACTIONS(1047), - [anon_sym_PIPE_EQ] = ACTIONS(1047), - [anon_sym_LT_LT_EQ] = ACTIONS(1047), - [anon_sym_GT_GT_EQ] = ACTIONS(1047), - [anon_sym_EQ] = ACTIONS(1045), - [anon_sym_EQ_EQ] = ACTIONS(1047), - [anon_sym_BANG_EQ] = ACTIONS(1047), - [anon_sym_GT] = ACTIONS(1045), - [anon_sym_LT] = ACTIONS(1045), - [anon_sym_GT_EQ] = ACTIONS(1047), - [anon_sym_LT_EQ] = ACTIONS(1047), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_DOT_DOT] = ACTIONS(1045), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1047), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1047), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_SQUOTE] = ACTIONS(1045), - [anon_sym_as] = ACTIONS(1045), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_break] = ACTIONS(1045), - [anon_sym_const] = ACTIONS(1045), - [anon_sym_continue] = ACTIONS(1045), - [anon_sym_default] = ACTIONS(1045), - [anon_sym_enum] = ACTIONS(1045), - [anon_sym_fn] = ACTIONS(1045), - [anon_sym_for] = ACTIONS(1045), - [anon_sym_gen] = ACTIONS(1045), - [anon_sym_if] = ACTIONS(1045), - [anon_sym_impl] = ACTIONS(1045), - [anon_sym_let] = ACTIONS(1045), - [anon_sym_loop] = ACTIONS(1045), - [anon_sym_match] = ACTIONS(1045), - [anon_sym_mod] = ACTIONS(1045), - [anon_sym_pub] = ACTIONS(1045), - [anon_sym_return] = ACTIONS(1045), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_struct] = ACTIONS(1045), - [anon_sym_trait] = ACTIONS(1045), - [anon_sym_type] = ACTIONS(1045), - [anon_sym_union] = ACTIONS(1045), - [anon_sym_unsafe] = ACTIONS(1045), - [anon_sym_use] = ACTIONS(1045), - [anon_sym_while] = ACTIONS(1045), - [anon_sym_extern] = ACTIONS(1045), - [anon_sym_yield] = ACTIONS(1045), - [anon_sym_move] = ACTIONS(1045), - [anon_sym_try] = ACTIONS(1045), - [sym_integer_literal] = ACTIONS(1047), - [aux_sym_string_literal_token1] = ACTIONS(1047), - [sym_char_literal] = ACTIONS(1047), - [anon_sym_true] = ACTIONS(1045), - [anon_sym_false] = ACTIONS(1045), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1045), - [sym_super] = ACTIONS(1045), - [sym_crate] = ACTIONS(1045), - [sym_metavariable] = ACTIONS(1047), - [sym__raw_string_literal_start] = ACTIONS(1047), - [sym_float_literal] = ACTIONS(1047), + [ts_builtin_sym_end] = ACTIONS(1293), + [sym_identifier] = ACTIONS(1291), + [anon_sym_SEMI] = ACTIONS(1293), + [anon_sym_macro_rules_BANG] = ACTIONS(1293), + [anon_sym_LPAREN] = ACTIONS(1293), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1293), + [anon_sym_RBRACE] = ACTIONS(1293), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1291), + [anon_sym_QMARK] = ACTIONS(1293), + [anon_sym_u8] = ACTIONS(1291), + [anon_sym_i8] = ACTIONS(1291), + [anon_sym_u16] = ACTIONS(1291), + [anon_sym_i16] = ACTIONS(1291), + [anon_sym_u32] = ACTIONS(1291), + [anon_sym_i32] = ACTIONS(1291), + [anon_sym_u64] = ACTIONS(1291), + [anon_sym_i64] = ACTIONS(1291), + [anon_sym_u128] = ACTIONS(1291), + [anon_sym_i128] = ACTIONS(1291), + [anon_sym_isize] = ACTIONS(1291), + [anon_sym_usize] = ACTIONS(1291), + [anon_sym_f32] = ACTIONS(1291), + [anon_sym_f64] = ACTIONS(1291), + [anon_sym_bool] = ACTIONS(1291), + [anon_sym_str] = ACTIONS(1291), + [anon_sym_char] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(1291), + [anon_sym_PERCENT] = ACTIONS(1291), + [anon_sym_CARET] = ACTIONS(1291), + [anon_sym_BANG] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_PIPE] = ACTIONS(1291), + [anon_sym_AMP_AMP] = ACTIONS(1293), + [anon_sym_PIPE_PIPE] = ACTIONS(1293), + [anon_sym_LT_LT] = ACTIONS(1291), + [anon_sym_GT_GT] = ACTIONS(1291), + [anon_sym_PLUS_EQ] = ACTIONS(1293), + [anon_sym_DASH_EQ] = ACTIONS(1293), + [anon_sym_STAR_EQ] = ACTIONS(1293), + [anon_sym_SLASH_EQ] = ACTIONS(1293), + [anon_sym_PERCENT_EQ] = ACTIONS(1293), + [anon_sym_CARET_EQ] = ACTIONS(1293), + [anon_sym_AMP_EQ] = ACTIONS(1293), + [anon_sym_PIPE_EQ] = ACTIONS(1293), + [anon_sym_LT_LT_EQ] = ACTIONS(1293), + [anon_sym_GT_GT_EQ] = ACTIONS(1293), + [anon_sym_EQ] = ACTIONS(1291), + [anon_sym_EQ_EQ] = ACTIONS(1293), + [anon_sym_BANG_EQ] = ACTIONS(1293), + [anon_sym_GT] = ACTIONS(1291), + [anon_sym_LT] = ACTIONS(1291), + [anon_sym_GT_EQ] = ACTIONS(1293), + [anon_sym_LT_EQ] = ACTIONS(1293), + [anon_sym_DOT] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1291), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1293), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1293), + [anon_sym_COLON_COLON] = ACTIONS(1293), + [anon_sym_POUND] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_as] = ACTIONS(1291), + [anon_sym_async] = ACTIONS(1291), + [anon_sym_break] = ACTIONS(1291), + [anon_sym_const] = ACTIONS(1291), + [anon_sym_continue] = ACTIONS(1291), + [anon_sym_default] = ACTIONS(1291), + [anon_sym_enum] = ACTIONS(1291), + [anon_sym_fn] = ACTIONS(1291), + [anon_sym_for] = ACTIONS(1291), + [anon_sym_gen] = ACTIONS(1291), + [anon_sym_if] = ACTIONS(1291), + [anon_sym_impl] = ACTIONS(1291), + [anon_sym_let] = ACTIONS(1291), + [anon_sym_loop] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1291), + [anon_sym_mod] = ACTIONS(1291), + [anon_sym_pub] = ACTIONS(1291), + [anon_sym_return] = ACTIONS(1291), + [anon_sym_static] = ACTIONS(1291), + [anon_sym_struct] = ACTIONS(1291), + [anon_sym_trait] = ACTIONS(1291), + [anon_sym_type] = ACTIONS(1291), + [anon_sym_union] = ACTIONS(1291), + [anon_sym_unsafe] = ACTIONS(1291), + [anon_sym_use] = ACTIONS(1291), + [anon_sym_while] = ACTIONS(1291), + [anon_sym_extern] = ACTIONS(1291), + [anon_sym_yield] = ACTIONS(1291), + [anon_sym_move] = ACTIONS(1291), + [anon_sym_try] = ACTIONS(1291), + [sym_integer_literal] = ACTIONS(1293), + [aux_sym_string_literal_token1] = ACTIONS(1293), + [sym_char_literal] = ACTIONS(1293), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1291), + [sym_super] = ACTIONS(1291), + [sym_crate] = ACTIONS(1291), + [sym_metavariable] = ACTIONS(1293), + [sym__raw_string_literal_start] = ACTIONS(1293), + [sym_float_literal] = ACTIONS(1293), }, [STATE(422)] = { [sym_line_comment] = STATE(422), [sym_block_comment] = STATE(422), - [ts_builtin_sym_end] = ACTIONS(1539), - [sym_identifier] = ACTIONS(1541), - [anon_sym_SEMI] = ACTIONS(1539), - [anon_sym_macro_rules_BANG] = ACTIONS(1539), - [anon_sym_LPAREN] = ACTIONS(1539), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1539), - [anon_sym_RBRACE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1541), - [anon_sym_QMARK] = ACTIONS(1539), - [anon_sym_u8] = ACTIONS(1541), - [anon_sym_i8] = ACTIONS(1541), - [anon_sym_u16] = ACTIONS(1541), - [anon_sym_i16] = ACTIONS(1541), - [anon_sym_u32] = ACTIONS(1541), - [anon_sym_i32] = ACTIONS(1541), - [anon_sym_u64] = ACTIONS(1541), - [anon_sym_i64] = ACTIONS(1541), - [anon_sym_u128] = ACTIONS(1541), - [anon_sym_i128] = ACTIONS(1541), - [anon_sym_isize] = ACTIONS(1541), - [anon_sym_usize] = ACTIONS(1541), - [anon_sym_f32] = ACTIONS(1541), - [anon_sym_f64] = ACTIONS(1541), - [anon_sym_bool] = ACTIONS(1541), - [anon_sym_str] = ACTIONS(1541), - [anon_sym_char] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(1541), - [anon_sym_PERCENT] = ACTIONS(1541), - [anon_sym_CARET] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1541), - [anon_sym_AMP] = ACTIONS(1541), - [anon_sym_PIPE] = ACTIONS(1541), - [anon_sym_AMP_AMP] = ACTIONS(1539), - [anon_sym_PIPE_PIPE] = ACTIONS(1539), - [anon_sym_LT_LT] = ACTIONS(1541), - [anon_sym_GT_GT] = ACTIONS(1541), - [anon_sym_PLUS_EQ] = ACTIONS(1539), - [anon_sym_DASH_EQ] = ACTIONS(1539), - [anon_sym_STAR_EQ] = ACTIONS(1539), - [anon_sym_SLASH_EQ] = ACTIONS(1539), - [anon_sym_PERCENT_EQ] = ACTIONS(1539), - [anon_sym_CARET_EQ] = ACTIONS(1539), - [anon_sym_AMP_EQ] = ACTIONS(1539), - [anon_sym_PIPE_EQ] = ACTIONS(1539), - [anon_sym_LT_LT_EQ] = ACTIONS(1539), - [anon_sym_GT_GT_EQ] = ACTIONS(1539), - [anon_sym_EQ] = ACTIONS(1541), - [anon_sym_EQ_EQ] = ACTIONS(1539), - [anon_sym_BANG_EQ] = ACTIONS(1539), - [anon_sym_GT] = ACTIONS(1541), - [anon_sym_LT] = ACTIONS(1541), - [anon_sym_GT_EQ] = ACTIONS(1539), - [anon_sym_LT_EQ] = ACTIONS(1539), - [anon_sym_DOT] = ACTIONS(1541), - [anon_sym_DOT_DOT] = ACTIONS(1541), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1539), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1539), - [anon_sym_COLON_COLON] = ACTIONS(1539), - [anon_sym_POUND] = ACTIONS(1539), - [anon_sym_SQUOTE] = ACTIONS(1541), - [anon_sym_as] = ACTIONS(1541), - [anon_sym_async] = ACTIONS(1541), - [anon_sym_break] = ACTIONS(1541), - [anon_sym_const] = ACTIONS(1541), - [anon_sym_continue] = ACTIONS(1541), - [anon_sym_default] = ACTIONS(1541), - [anon_sym_enum] = ACTIONS(1541), - [anon_sym_fn] = ACTIONS(1541), - [anon_sym_for] = ACTIONS(1541), - [anon_sym_gen] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1541), - [anon_sym_impl] = ACTIONS(1541), - [anon_sym_let] = ACTIONS(1541), - [anon_sym_loop] = ACTIONS(1541), - [anon_sym_match] = ACTIONS(1541), - [anon_sym_mod] = ACTIONS(1541), - [anon_sym_pub] = ACTIONS(1541), - [anon_sym_return] = ACTIONS(1541), - [anon_sym_static] = ACTIONS(1541), - [anon_sym_struct] = ACTIONS(1541), - [anon_sym_trait] = ACTIONS(1541), - [anon_sym_type] = ACTIONS(1541), - [anon_sym_union] = ACTIONS(1541), - [anon_sym_unsafe] = ACTIONS(1541), - [anon_sym_use] = ACTIONS(1541), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_extern] = ACTIONS(1541), - [anon_sym_yield] = ACTIONS(1541), - [anon_sym_move] = ACTIONS(1541), - [anon_sym_try] = ACTIONS(1541), - [sym_integer_literal] = ACTIONS(1539), - [aux_sym_string_literal_token1] = ACTIONS(1539), - [sym_char_literal] = ACTIONS(1539), - [anon_sym_true] = ACTIONS(1541), - [anon_sym_false] = ACTIONS(1541), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1541), - [sym_super] = ACTIONS(1541), - [sym_crate] = ACTIONS(1541), - [sym_metavariable] = ACTIONS(1539), - [sym__raw_string_literal_start] = ACTIONS(1539), - [sym_float_literal] = ACTIONS(1539), + [ts_builtin_sym_end] = ACTIONS(1383), + [sym_identifier] = ACTIONS(1385), + [anon_sym_SEMI] = ACTIONS(1383), + [anon_sym_macro_rules_BANG] = ACTIONS(1383), + [anon_sym_LPAREN] = ACTIONS(1383), + [anon_sym_LBRACK] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1383), + [anon_sym_RBRACE] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1385), + [anon_sym_STAR] = ACTIONS(1385), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_u8] = ACTIONS(1385), + [anon_sym_i8] = ACTIONS(1385), + [anon_sym_u16] = ACTIONS(1385), + [anon_sym_i16] = ACTIONS(1385), + [anon_sym_u32] = ACTIONS(1385), + [anon_sym_i32] = ACTIONS(1385), + [anon_sym_u64] = ACTIONS(1385), + [anon_sym_i64] = ACTIONS(1385), + [anon_sym_u128] = ACTIONS(1385), + [anon_sym_i128] = ACTIONS(1385), + [anon_sym_isize] = ACTIONS(1385), + [anon_sym_usize] = ACTIONS(1385), + [anon_sym_f32] = ACTIONS(1385), + [anon_sym_f64] = ACTIONS(1385), + [anon_sym_bool] = ACTIONS(1385), + [anon_sym_str] = ACTIONS(1385), + [anon_sym_char] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1385), + [anon_sym_SLASH] = ACTIONS(1385), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_CARET] = ACTIONS(1385), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1385), + [anon_sym_PIPE] = ACTIONS(1385), + [anon_sym_AMP_AMP] = ACTIONS(1383), + [anon_sym_PIPE_PIPE] = ACTIONS(1383), + [anon_sym_LT_LT] = ACTIONS(1385), + [anon_sym_GT_GT] = ACTIONS(1385), + [anon_sym_PLUS_EQ] = ACTIONS(1383), + [anon_sym_DASH_EQ] = ACTIONS(1383), + [anon_sym_STAR_EQ] = ACTIONS(1383), + [anon_sym_SLASH_EQ] = ACTIONS(1383), + [anon_sym_PERCENT_EQ] = ACTIONS(1383), + [anon_sym_CARET_EQ] = ACTIONS(1383), + [anon_sym_AMP_EQ] = ACTIONS(1383), + [anon_sym_PIPE_EQ] = ACTIONS(1383), + [anon_sym_LT_LT_EQ] = ACTIONS(1383), + [anon_sym_GT_GT_EQ] = ACTIONS(1383), + [anon_sym_EQ] = ACTIONS(1385), + [anon_sym_EQ_EQ] = ACTIONS(1383), + [anon_sym_BANG_EQ] = ACTIONS(1383), + [anon_sym_GT] = ACTIONS(1385), + [anon_sym_LT] = ACTIONS(1385), + [anon_sym_GT_EQ] = ACTIONS(1383), + [anon_sym_LT_EQ] = ACTIONS(1383), + [anon_sym_DOT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1383), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1383), + [anon_sym_COLON_COLON] = ACTIONS(1383), + [anon_sym_POUND] = ACTIONS(1383), + [anon_sym_SQUOTE] = ACTIONS(1385), + [anon_sym_as] = ACTIONS(1385), + [anon_sym_async] = ACTIONS(1385), + [anon_sym_break] = ACTIONS(1385), + [anon_sym_const] = ACTIONS(1385), + [anon_sym_continue] = ACTIONS(1385), + [anon_sym_default] = ACTIONS(1385), + [anon_sym_enum] = ACTIONS(1385), + [anon_sym_fn] = ACTIONS(1385), + [anon_sym_for] = ACTIONS(1385), + [anon_sym_gen] = ACTIONS(1385), + [anon_sym_if] = ACTIONS(1385), + [anon_sym_impl] = ACTIONS(1385), + [anon_sym_let] = ACTIONS(1385), + [anon_sym_loop] = ACTIONS(1385), + [anon_sym_match] = ACTIONS(1385), + [anon_sym_mod] = ACTIONS(1385), + [anon_sym_pub] = ACTIONS(1385), + [anon_sym_return] = ACTIONS(1385), + [anon_sym_static] = ACTIONS(1385), + [anon_sym_struct] = ACTIONS(1385), + [anon_sym_trait] = ACTIONS(1385), + [anon_sym_type] = ACTIONS(1385), + [anon_sym_union] = ACTIONS(1385), + [anon_sym_unsafe] = ACTIONS(1385), + [anon_sym_use] = ACTIONS(1385), + [anon_sym_while] = ACTIONS(1385), + [anon_sym_extern] = ACTIONS(1385), + [anon_sym_yield] = ACTIONS(1385), + [anon_sym_move] = ACTIONS(1385), + [anon_sym_try] = ACTIONS(1385), + [sym_integer_literal] = ACTIONS(1383), + [aux_sym_string_literal_token1] = ACTIONS(1383), + [sym_char_literal] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(1385), + [anon_sym_false] = ACTIONS(1385), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1385), + [sym_super] = ACTIONS(1385), + [sym_crate] = ACTIONS(1385), + [sym_metavariable] = ACTIONS(1383), + [sym__raw_string_literal_start] = ACTIONS(1383), + [sym_float_literal] = ACTIONS(1383), }, [STATE(423)] = { [sym_line_comment] = STATE(423), [sym_block_comment] = STATE(423), - [ts_builtin_sym_end] = ACTIONS(1543), - [sym_identifier] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_macro_rules_BANG] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LBRACE] = ACTIONS(1543), - [anon_sym_RBRACE] = ACTIONS(1543), - [anon_sym_PLUS] = ACTIONS(1545), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_QMARK] = ACTIONS(1543), - [anon_sym_u8] = ACTIONS(1545), - [anon_sym_i8] = ACTIONS(1545), - [anon_sym_u16] = ACTIONS(1545), - [anon_sym_i16] = ACTIONS(1545), - [anon_sym_u32] = ACTIONS(1545), - [anon_sym_i32] = ACTIONS(1545), - [anon_sym_u64] = ACTIONS(1545), - [anon_sym_i64] = ACTIONS(1545), - [anon_sym_u128] = ACTIONS(1545), - [anon_sym_i128] = ACTIONS(1545), - [anon_sym_isize] = ACTIONS(1545), - [anon_sym_usize] = ACTIONS(1545), - [anon_sym_f32] = ACTIONS(1545), - [anon_sym_f64] = ACTIONS(1545), - [anon_sym_bool] = ACTIONS(1545), - [anon_sym_str] = ACTIONS(1545), - [anon_sym_char] = ACTIONS(1545), - [anon_sym_DASH] = ACTIONS(1545), - [anon_sym_SLASH] = ACTIONS(1545), - [anon_sym_PERCENT] = ACTIONS(1545), - [anon_sym_CARET] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1545), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_PIPE] = ACTIONS(1545), - [anon_sym_AMP_AMP] = ACTIONS(1543), - [anon_sym_PIPE_PIPE] = ACTIONS(1543), - [anon_sym_LT_LT] = ACTIONS(1545), - [anon_sym_GT_GT] = ACTIONS(1545), - [anon_sym_PLUS_EQ] = ACTIONS(1543), - [anon_sym_DASH_EQ] = ACTIONS(1543), - [anon_sym_STAR_EQ] = ACTIONS(1543), - [anon_sym_SLASH_EQ] = ACTIONS(1543), - [anon_sym_PERCENT_EQ] = ACTIONS(1543), - [anon_sym_CARET_EQ] = ACTIONS(1543), - [anon_sym_AMP_EQ] = ACTIONS(1543), - [anon_sym_PIPE_EQ] = ACTIONS(1543), - [anon_sym_LT_LT_EQ] = ACTIONS(1543), - [anon_sym_GT_GT_EQ] = ACTIONS(1543), - [anon_sym_EQ] = ACTIONS(1545), - [anon_sym_EQ_EQ] = ACTIONS(1543), - [anon_sym_BANG_EQ] = ACTIONS(1543), - [anon_sym_GT] = ACTIONS(1545), - [anon_sym_LT] = ACTIONS(1545), - [anon_sym_GT_EQ] = ACTIONS(1543), - [anon_sym_LT_EQ] = ACTIONS(1543), - [anon_sym_DOT] = ACTIONS(1545), - [anon_sym_DOT_DOT] = ACTIONS(1545), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1543), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1543), - [anon_sym_COLON_COLON] = ACTIONS(1543), - [anon_sym_POUND] = ACTIONS(1543), - [anon_sym_SQUOTE] = ACTIONS(1545), - [anon_sym_as] = ACTIONS(1545), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_break] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1545), - [anon_sym_continue] = ACTIONS(1545), - [anon_sym_default] = ACTIONS(1545), - [anon_sym_enum] = ACTIONS(1545), - [anon_sym_fn] = ACTIONS(1545), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_gen] = ACTIONS(1545), - [anon_sym_if] = ACTIONS(1545), - [anon_sym_impl] = ACTIONS(1545), - [anon_sym_let] = ACTIONS(1545), - [anon_sym_loop] = ACTIONS(1545), - [anon_sym_match] = ACTIONS(1545), - [anon_sym_mod] = ACTIONS(1545), - [anon_sym_pub] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1545), - [anon_sym_static] = ACTIONS(1545), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_trait] = ACTIONS(1545), - [anon_sym_type] = ACTIONS(1545), - [anon_sym_union] = ACTIONS(1545), - [anon_sym_unsafe] = ACTIONS(1545), - [anon_sym_use] = ACTIONS(1545), - [anon_sym_while] = ACTIONS(1545), - [anon_sym_extern] = ACTIONS(1545), - [anon_sym_yield] = ACTIONS(1545), - [anon_sym_move] = ACTIONS(1545), - [anon_sym_try] = ACTIONS(1545), - [sym_integer_literal] = ACTIONS(1543), - [aux_sym_string_literal_token1] = ACTIONS(1543), - [sym_char_literal] = ACTIONS(1543), - [anon_sym_true] = ACTIONS(1545), - [anon_sym_false] = ACTIONS(1545), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1545), - [sym_super] = ACTIONS(1545), - [sym_crate] = ACTIONS(1545), - [sym_metavariable] = ACTIONS(1543), - [sym__raw_string_literal_start] = ACTIONS(1543), - [sym_float_literal] = ACTIONS(1543), + [ts_builtin_sym_end] = ACTIONS(1387), + [sym_identifier] = ACTIONS(1389), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_macro_rules_BANG] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_STAR] = ACTIONS(1389), + [anon_sym_QMARK] = ACTIONS(1387), + [anon_sym_u8] = ACTIONS(1389), + [anon_sym_i8] = ACTIONS(1389), + [anon_sym_u16] = ACTIONS(1389), + [anon_sym_i16] = ACTIONS(1389), + [anon_sym_u32] = ACTIONS(1389), + [anon_sym_i32] = ACTIONS(1389), + [anon_sym_u64] = ACTIONS(1389), + [anon_sym_i64] = ACTIONS(1389), + [anon_sym_u128] = ACTIONS(1389), + [anon_sym_i128] = ACTIONS(1389), + [anon_sym_isize] = ACTIONS(1389), + [anon_sym_usize] = ACTIONS(1389), + [anon_sym_f32] = ACTIONS(1389), + [anon_sym_f64] = ACTIONS(1389), + [anon_sym_bool] = ACTIONS(1389), + [anon_sym_str] = ACTIONS(1389), + [anon_sym_char] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(1389), + [anon_sym_PERCENT] = ACTIONS(1389), + [anon_sym_CARET] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1389), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_AMP_AMP] = ACTIONS(1387), + [anon_sym_PIPE_PIPE] = ACTIONS(1387), + [anon_sym_LT_LT] = ACTIONS(1389), + [anon_sym_GT_GT] = ACTIONS(1389), + [anon_sym_PLUS_EQ] = ACTIONS(1387), + [anon_sym_DASH_EQ] = ACTIONS(1387), + [anon_sym_STAR_EQ] = ACTIONS(1387), + [anon_sym_SLASH_EQ] = ACTIONS(1387), + [anon_sym_PERCENT_EQ] = ACTIONS(1387), + [anon_sym_CARET_EQ] = ACTIONS(1387), + [anon_sym_AMP_EQ] = ACTIONS(1387), + [anon_sym_PIPE_EQ] = ACTIONS(1387), + [anon_sym_LT_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_GT_EQ] = ACTIONS(1387), + [anon_sym_EQ] = ACTIONS(1389), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(1389), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1387), + [anon_sym_COLON_COLON] = ACTIONS(1387), + [anon_sym_POUND] = ACTIONS(1387), + [anon_sym_SQUOTE] = ACTIONS(1389), + [anon_sym_as] = ACTIONS(1389), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_break] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_continue] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1389), + [anon_sym_enum] = ACTIONS(1389), + [anon_sym_fn] = ACTIONS(1389), + [anon_sym_for] = ACTIONS(1389), + [anon_sym_gen] = ACTIONS(1389), + [anon_sym_if] = ACTIONS(1389), + [anon_sym_impl] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_loop] = ACTIONS(1389), + [anon_sym_match] = ACTIONS(1389), + [anon_sym_mod] = ACTIONS(1389), + [anon_sym_pub] = ACTIONS(1389), + [anon_sym_return] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_struct] = ACTIONS(1389), + [anon_sym_trait] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_union] = ACTIONS(1389), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_use] = ACTIONS(1389), + [anon_sym_while] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1389), + [anon_sym_move] = ACTIONS(1389), + [anon_sym_try] = ACTIONS(1389), + [sym_integer_literal] = ACTIONS(1387), + [aux_sym_string_literal_token1] = ACTIONS(1387), + [sym_char_literal] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1389), + [anon_sym_false] = ACTIONS(1389), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1389), + [sym_super] = ACTIONS(1389), + [sym_crate] = ACTIONS(1389), + [sym_metavariable] = ACTIONS(1387), + [sym__raw_string_literal_start] = ACTIONS(1387), + [sym_float_literal] = ACTIONS(1387), }, [STATE(424)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_self_parameter] = STATE(2965), + [sym_variadic_parameter] = STATE(2965), + [sym_parameter] = STATE(2965), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2782), + [sym_bracketed_type] = STATE(3751), + [sym_lifetime] = STATE(2953), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2569), + [sym_scoped_identifier] = STATE(2379), + [sym_scoped_type_identifier] = STATE(2296), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(3286), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(424), [sym_block_comment] = STATE(424), - [ts_builtin_sym_end] = ACTIONS(1547), - [sym_identifier] = ACTIONS(1549), - [anon_sym_SEMI] = ACTIONS(1547), - [anon_sym_macro_rules_BANG] = ACTIONS(1547), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1547), - [anon_sym_LBRACE] = ACTIONS(1547), - [anon_sym_RBRACE] = ACTIONS(1547), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(1549), - [anon_sym_QMARK] = ACTIONS(1547), - [anon_sym_u8] = ACTIONS(1549), - [anon_sym_i8] = ACTIONS(1549), - [anon_sym_u16] = ACTIONS(1549), - [anon_sym_i16] = ACTIONS(1549), - [anon_sym_u32] = ACTIONS(1549), - [anon_sym_i32] = ACTIONS(1549), - [anon_sym_u64] = ACTIONS(1549), - [anon_sym_i64] = ACTIONS(1549), - [anon_sym_u128] = ACTIONS(1549), - [anon_sym_i128] = ACTIONS(1549), - [anon_sym_isize] = ACTIONS(1549), - [anon_sym_usize] = ACTIONS(1549), - [anon_sym_f32] = ACTIONS(1549), - [anon_sym_f64] = ACTIONS(1549), - [anon_sym_bool] = ACTIONS(1549), - [anon_sym_str] = ACTIONS(1549), - [anon_sym_char] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1549), - [anon_sym_PERCENT] = ACTIONS(1549), - [anon_sym_CARET] = ACTIONS(1549), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1549), - [anon_sym_AMP_AMP] = ACTIONS(1547), - [anon_sym_PIPE_PIPE] = ACTIONS(1547), - [anon_sym_LT_LT] = ACTIONS(1549), - [anon_sym_GT_GT] = ACTIONS(1549), - [anon_sym_PLUS_EQ] = ACTIONS(1547), - [anon_sym_DASH_EQ] = ACTIONS(1547), - [anon_sym_STAR_EQ] = ACTIONS(1547), - [anon_sym_SLASH_EQ] = ACTIONS(1547), - [anon_sym_PERCENT_EQ] = ACTIONS(1547), - [anon_sym_CARET_EQ] = ACTIONS(1547), - [anon_sym_AMP_EQ] = ACTIONS(1547), - [anon_sym_PIPE_EQ] = ACTIONS(1547), - [anon_sym_LT_LT_EQ] = ACTIONS(1547), - [anon_sym_GT_GT_EQ] = ACTIONS(1547), - [anon_sym_EQ] = ACTIONS(1549), - [anon_sym_EQ_EQ] = ACTIONS(1547), - [anon_sym_BANG_EQ] = ACTIONS(1547), - [anon_sym_GT] = ACTIONS(1549), - [anon_sym_LT] = ACTIONS(1549), - [anon_sym_GT_EQ] = ACTIONS(1547), - [anon_sym_LT_EQ] = ACTIONS(1547), - [anon_sym_DOT] = ACTIONS(1549), - [anon_sym_DOT_DOT] = ACTIONS(1549), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1547), - [anon_sym_COLON_COLON] = ACTIONS(1547), - [anon_sym_POUND] = ACTIONS(1547), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_as] = ACTIONS(1549), - [anon_sym_async] = ACTIONS(1549), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_const] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1549), - [anon_sym_default] = ACTIONS(1549), - [anon_sym_enum] = ACTIONS(1549), - [anon_sym_fn] = ACTIONS(1549), - [anon_sym_for] = ACTIONS(1549), - [anon_sym_gen] = ACTIONS(1549), - [anon_sym_if] = ACTIONS(1549), - [anon_sym_impl] = ACTIONS(1549), - [anon_sym_let] = ACTIONS(1549), - [anon_sym_loop] = ACTIONS(1549), - [anon_sym_match] = ACTIONS(1549), - [anon_sym_mod] = ACTIONS(1549), - [anon_sym_pub] = ACTIONS(1549), - [anon_sym_return] = ACTIONS(1549), - [anon_sym_static] = ACTIONS(1549), - [anon_sym_struct] = ACTIONS(1549), - [anon_sym_trait] = ACTIONS(1549), - [anon_sym_type] = ACTIONS(1549), - [anon_sym_union] = ACTIONS(1549), - [anon_sym_unsafe] = ACTIONS(1549), - [anon_sym_use] = ACTIONS(1549), - [anon_sym_while] = ACTIONS(1549), - [anon_sym_extern] = ACTIONS(1549), - [anon_sym_yield] = ACTIONS(1549), - [anon_sym_move] = ACTIONS(1549), - [anon_sym_try] = ACTIONS(1549), - [sym_integer_literal] = ACTIONS(1547), - [aux_sym_string_literal_token1] = ACTIONS(1547), - [sym_char_literal] = ACTIONS(1547), - [anon_sym_true] = ACTIONS(1549), - [anon_sym_false] = ACTIONS(1549), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1549), - [sym_super] = ACTIONS(1549), - [sym_crate] = ACTIONS(1549), - [sym_metavariable] = ACTIONS(1547), - [sym__raw_string_literal_start] = ACTIONS(1547), - [sym_float_literal] = ACTIONS(1547), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1157), + [anon_sym_LPAREN] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1163), + [anon_sym_i8] = ACTIONS(1163), + [anon_sym_u16] = ACTIONS(1163), + [anon_sym_i16] = ACTIONS(1163), + [anon_sym_u32] = ACTIONS(1163), + [anon_sym_i32] = ACTIONS(1163), + [anon_sym_u64] = ACTIONS(1163), + [anon_sym_i64] = ACTIONS(1163), + [anon_sym_u128] = ACTIONS(1163), + [anon_sym_i128] = ACTIONS(1163), + [anon_sym_isize] = ACTIONS(1163), + [anon_sym_usize] = ACTIONS(1163), + [anon_sym_f32] = ACTIONS(1163), + [anon_sym_f64] = ACTIONS(1163), + [anon_sym_bool] = ACTIONS(1163), + [anon_sym_str] = ACTIONS(1163), + [anon_sym_char] = ACTIONS(1163), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1165), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1391), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1079), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1171), + [anon_sym_SQUOTE] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_default] = ACTIONS(1173), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1175), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1175), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_ref] = ACTIONS(1109), + [anon_sym_dyn] = ACTIONS(1111), + [sym_mutable_specifier] = ACTIONS(1113), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1177), + [sym_super] = ACTIONS(1179), + [sym_crate] = ACTIONS(1179), + [sym_metavariable] = ACTIONS(1181), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(425)] = { [sym_line_comment] = STATE(425), [sym_block_comment] = STATE(425), - [ts_builtin_sym_end] = ACTIONS(1551), - [sym_identifier] = ACTIONS(1553), - [anon_sym_SEMI] = ACTIONS(1551), - [anon_sym_macro_rules_BANG] = ACTIONS(1551), - [anon_sym_LPAREN] = ACTIONS(1551), - [anon_sym_LBRACK] = ACTIONS(1551), - [anon_sym_LBRACE] = ACTIONS(1551), - [anon_sym_RBRACE] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_STAR] = ACTIONS(1553), - [anon_sym_QMARK] = ACTIONS(1551), - [anon_sym_u8] = ACTIONS(1553), - [anon_sym_i8] = ACTIONS(1553), - [anon_sym_u16] = ACTIONS(1553), - [anon_sym_i16] = ACTIONS(1553), - [anon_sym_u32] = ACTIONS(1553), - [anon_sym_i32] = ACTIONS(1553), - [anon_sym_u64] = ACTIONS(1553), - [anon_sym_i64] = ACTIONS(1553), - [anon_sym_u128] = ACTIONS(1553), - [anon_sym_i128] = ACTIONS(1553), - [anon_sym_isize] = ACTIONS(1553), - [anon_sym_usize] = ACTIONS(1553), - [anon_sym_f32] = ACTIONS(1553), - [anon_sym_f64] = ACTIONS(1553), - [anon_sym_bool] = ACTIONS(1553), - [anon_sym_str] = ACTIONS(1553), - [anon_sym_char] = ACTIONS(1553), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_SLASH] = ACTIONS(1553), - [anon_sym_PERCENT] = ACTIONS(1553), - [anon_sym_CARET] = ACTIONS(1553), - [anon_sym_BANG] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(1553), - [anon_sym_PIPE] = ACTIONS(1553), - [anon_sym_AMP_AMP] = ACTIONS(1551), - [anon_sym_PIPE_PIPE] = ACTIONS(1551), - [anon_sym_LT_LT] = ACTIONS(1553), - [anon_sym_GT_GT] = ACTIONS(1553), - [anon_sym_PLUS_EQ] = ACTIONS(1551), - [anon_sym_DASH_EQ] = ACTIONS(1551), - [anon_sym_STAR_EQ] = ACTIONS(1551), - [anon_sym_SLASH_EQ] = ACTIONS(1551), - [anon_sym_PERCENT_EQ] = ACTIONS(1551), - [anon_sym_CARET_EQ] = ACTIONS(1551), - [anon_sym_AMP_EQ] = ACTIONS(1551), - [anon_sym_PIPE_EQ] = ACTIONS(1551), - [anon_sym_LT_LT_EQ] = ACTIONS(1551), - [anon_sym_GT_GT_EQ] = ACTIONS(1551), - [anon_sym_EQ] = ACTIONS(1553), - [anon_sym_EQ_EQ] = ACTIONS(1551), - [anon_sym_BANG_EQ] = ACTIONS(1551), - [anon_sym_GT] = ACTIONS(1553), - [anon_sym_LT] = ACTIONS(1553), - [anon_sym_GT_EQ] = ACTIONS(1551), - [anon_sym_LT_EQ] = ACTIONS(1551), - [anon_sym_DOT] = ACTIONS(1553), - [anon_sym_DOT_DOT] = ACTIONS(1553), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1551), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1551), - [anon_sym_COLON_COLON] = ACTIONS(1551), - [anon_sym_POUND] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_as] = ACTIONS(1553), - [anon_sym_async] = ACTIONS(1553), - [anon_sym_break] = ACTIONS(1553), - [anon_sym_const] = ACTIONS(1553), - [anon_sym_continue] = ACTIONS(1553), - [anon_sym_default] = ACTIONS(1553), - [anon_sym_enum] = ACTIONS(1553), - [anon_sym_fn] = ACTIONS(1553), - [anon_sym_for] = ACTIONS(1553), - [anon_sym_gen] = ACTIONS(1553), - [anon_sym_if] = ACTIONS(1553), - [anon_sym_impl] = ACTIONS(1553), - [anon_sym_let] = ACTIONS(1553), - [anon_sym_loop] = ACTIONS(1553), - [anon_sym_match] = ACTIONS(1553), - [anon_sym_mod] = ACTIONS(1553), - [anon_sym_pub] = ACTIONS(1553), - [anon_sym_return] = ACTIONS(1553), - [anon_sym_static] = ACTIONS(1553), - [anon_sym_struct] = ACTIONS(1553), - [anon_sym_trait] = ACTIONS(1553), - [anon_sym_type] = ACTIONS(1553), - [anon_sym_union] = ACTIONS(1553), - [anon_sym_unsafe] = ACTIONS(1553), - [anon_sym_use] = ACTIONS(1553), - [anon_sym_while] = ACTIONS(1553), - [anon_sym_extern] = ACTIONS(1553), - [anon_sym_yield] = ACTIONS(1553), - [anon_sym_move] = ACTIONS(1553), - [anon_sym_try] = ACTIONS(1553), - [sym_integer_literal] = ACTIONS(1551), - [aux_sym_string_literal_token1] = ACTIONS(1551), - [sym_char_literal] = ACTIONS(1551), - [anon_sym_true] = ACTIONS(1553), - [anon_sym_false] = ACTIONS(1553), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1553), - [sym_super] = ACTIONS(1553), - [sym_crate] = ACTIONS(1553), - [sym_metavariable] = ACTIONS(1551), - [sym__raw_string_literal_start] = ACTIONS(1551), - [sym_float_literal] = ACTIONS(1551), + [ts_builtin_sym_end] = ACTIONS(1393), + [sym_identifier] = ACTIONS(1395), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_macro_rules_BANG] = ACTIONS(1393), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(1393), + [anon_sym_RBRACE] = ACTIONS(1397), + [anon_sym_PLUS] = ACTIONS(1399), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_QMARK] = ACTIONS(1397), + [anon_sym_u8] = ACTIONS(1395), + [anon_sym_i8] = ACTIONS(1395), + [anon_sym_u16] = ACTIONS(1395), + [anon_sym_i16] = ACTIONS(1395), + [anon_sym_u32] = ACTIONS(1395), + [anon_sym_i32] = ACTIONS(1395), + [anon_sym_u64] = ACTIONS(1395), + [anon_sym_i64] = ACTIONS(1395), + [anon_sym_u128] = ACTIONS(1395), + [anon_sym_i128] = ACTIONS(1395), + [anon_sym_isize] = ACTIONS(1395), + [anon_sym_usize] = ACTIONS(1395), + [anon_sym_f32] = ACTIONS(1395), + [anon_sym_f64] = ACTIONS(1395), + [anon_sym_bool] = ACTIONS(1395), + [anon_sym_str] = ACTIONS(1395), + [anon_sym_char] = ACTIONS(1395), + [anon_sym_DASH] = ACTIONS(1399), + [anon_sym_SLASH] = ACTIONS(1399), + [anon_sym_PERCENT] = ACTIONS(1399), + [anon_sym_CARET] = ACTIONS(1399), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_PIPE] = ACTIONS(1399), + [anon_sym_AMP_AMP] = ACTIONS(1397), + [anon_sym_PIPE_PIPE] = ACTIONS(1397), + [anon_sym_LT_LT] = ACTIONS(1399), + [anon_sym_GT_GT] = ACTIONS(1399), + [anon_sym_PLUS_EQ] = ACTIONS(1397), + [anon_sym_DASH_EQ] = ACTIONS(1397), + [anon_sym_STAR_EQ] = ACTIONS(1397), + [anon_sym_SLASH_EQ] = ACTIONS(1397), + [anon_sym_PERCENT_EQ] = ACTIONS(1397), + [anon_sym_CARET_EQ] = ACTIONS(1397), + [anon_sym_AMP_EQ] = ACTIONS(1397), + [anon_sym_PIPE_EQ] = ACTIONS(1397), + [anon_sym_LT_LT_EQ] = ACTIONS(1397), + [anon_sym_GT_GT_EQ] = ACTIONS(1397), + [anon_sym_EQ] = ACTIONS(1399), + [anon_sym_EQ_EQ] = ACTIONS(1397), + [anon_sym_BANG_EQ] = ACTIONS(1397), + [anon_sym_GT] = ACTIONS(1399), + [anon_sym_LT] = ACTIONS(1399), + [anon_sym_GT_EQ] = ACTIONS(1397), + [anon_sym_LT_EQ] = ACTIONS(1397), + [anon_sym_DOT] = ACTIONS(1399), + [anon_sym_DOT_DOT] = ACTIONS(1399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1397), + [anon_sym_COLON_COLON] = ACTIONS(1393), + [anon_sym_POUND] = ACTIONS(1393), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_as] = ACTIONS(1399), + [anon_sym_async] = ACTIONS(1395), + [anon_sym_break] = ACTIONS(1395), + [anon_sym_const] = ACTIONS(1395), + [anon_sym_continue] = ACTIONS(1395), + [anon_sym_default] = ACTIONS(1395), + [anon_sym_enum] = ACTIONS(1395), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1395), + [anon_sym_gen] = ACTIONS(1395), + [anon_sym_if] = ACTIONS(1395), + [anon_sym_impl] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_loop] = ACTIONS(1395), + [anon_sym_match] = ACTIONS(1395), + [anon_sym_mod] = ACTIONS(1395), + [anon_sym_pub] = ACTIONS(1395), + [anon_sym_return] = ACTIONS(1395), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_struct] = ACTIONS(1395), + [anon_sym_trait] = ACTIONS(1395), + [anon_sym_type] = ACTIONS(1395), + [anon_sym_union] = ACTIONS(1395), + [anon_sym_unsafe] = ACTIONS(1395), + [anon_sym_use] = ACTIONS(1395), + [anon_sym_while] = ACTIONS(1395), + [anon_sym_extern] = ACTIONS(1395), + [anon_sym_yield] = ACTIONS(1395), + [anon_sym_move] = ACTIONS(1395), + [anon_sym_try] = ACTIONS(1395), + [sym_integer_literal] = ACTIONS(1393), + [aux_sym_string_literal_token1] = ACTIONS(1393), + [sym_char_literal] = ACTIONS(1393), + [anon_sym_true] = ACTIONS(1395), + [anon_sym_false] = ACTIONS(1395), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1395), + [sym_super] = ACTIONS(1395), + [sym_crate] = ACTIONS(1395), + [sym_metavariable] = ACTIONS(1393), + [sym__raw_string_literal_start] = ACTIONS(1393), + [sym_float_literal] = ACTIONS(1393), }, [STATE(426)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_self_parameter] = STATE(3045), - [sym_variadic_parameter] = STATE(3045), - [sym_parameter] = STATE(3045), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2848), - [sym_bracketed_type] = STATE(3691), - [sym_lifetime] = STATE(3008), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3333), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2540), - [sym_scoped_identifier] = STATE(2311), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3210), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(426), [sym_block_comment] = STATE(426), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u128] = ACTIONS(1187), - [anon_sym_i128] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_str] = ACTIONS(1187), - [anon_sym_char] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1555), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1163), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1201), - [sym_super] = ACTIONS(1203), - [sym_crate] = ACTIONS(1203), - [sym_metavariable] = ACTIONS(1205), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [ts_builtin_sym_end] = ACTIONS(1401), + [sym_identifier] = ACTIONS(1403), + [anon_sym_SEMI] = ACTIONS(1401), + [anon_sym_macro_rules_BANG] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(1401), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_RBRACE] = ACTIONS(1401), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_QMARK] = ACTIONS(1401), + [anon_sym_u8] = ACTIONS(1403), + [anon_sym_i8] = ACTIONS(1403), + [anon_sym_u16] = ACTIONS(1403), + [anon_sym_i16] = ACTIONS(1403), + [anon_sym_u32] = ACTIONS(1403), + [anon_sym_i32] = ACTIONS(1403), + [anon_sym_u64] = ACTIONS(1403), + [anon_sym_i64] = ACTIONS(1403), + [anon_sym_u128] = ACTIONS(1403), + [anon_sym_i128] = ACTIONS(1403), + [anon_sym_isize] = ACTIONS(1403), + [anon_sym_usize] = ACTIONS(1403), + [anon_sym_f32] = ACTIONS(1403), + [anon_sym_f64] = ACTIONS(1403), + [anon_sym_bool] = ACTIONS(1403), + [anon_sym_str] = ACTIONS(1403), + [anon_sym_char] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_SLASH] = ACTIONS(1403), + [anon_sym_PERCENT] = ACTIONS(1403), + [anon_sym_CARET] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_PIPE] = ACTIONS(1403), + [anon_sym_AMP_AMP] = ACTIONS(1401), + [anon_sym_PIPE_PIPE] = ACTIONS(1401), + [anon_sym_LT_LT] = ACTIONS(1403), + [anon_sym_GT_GT] = ACTIONS(1403), + [anon_sym_PLUS_EQ] = ACTIONS(1401), + [anon_sym_DASH_EQ] = ACTIONS(1401), + [anon_sym_STAR_EQ] = ACTIONS(1401), + [anon_sym_SLASH_EQ] = ACTIONS(1401), + [anon_sym_PERCENT_EQ] = ACTIONS(1401), + [anon_sym_CARET_EQ] = ACTIONS(1401), + [anon_sym_AMP_EQ] = ACTIONS(1401), + [anon_sym_PIPE_EQ] = ACTIONS(1401), + [anon_sym_LT_LT_EQ] = ACTIONS(1401), + [anon_sym_GT_GT_EQ] = ACTIONS(1401), + [anon_sym_EQ] = ACTIONS(1403), + [anon_sym_EQ_EQ] = ACTIONS(1401), + [anon_sym_BANG_EQ] = ACTIONS(1401), + [anon_sym_GT] = ACTIONS(1403), + [anon_sym_LT] = ACTIONS(1403), + [anon_sym_GT_EQ] = ACTIONS(1401), + [anon_sym_LT_EQ] = ACTIONS(1401), + [anon_sym_DOT] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1401), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1401), + [anon_sym_COLON_COLON] = ACTIONS(1401), + [anon_sym_POUND] = ACTIONS(1401), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_as] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1403), + [anon_sym_break] = ACTIONS(1403), + [anon_sym_const] = ACTIONS(1403), + [anon_sym_continue] = ACTIONS(1403), + [anon_sym_default] = ACTIONS(1403), + [anon_sym_enum] = ACTIONS(1403), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1403), + [anon_sym_gen] = ACTIONS(1403), + [anon_sym_if] = ACTIONS(1403), + [anon_sym_impl] = ACTIONS(1403), + [anon_sym_let] = ACTIONS(1403), + [anon_sym_loop] = ACTIONS(1403), + [anon_sym_match] = ACTIONS(1403), + [anon_sym_mod] = ACTIONS(1403), + [anon_sym_pub] = ACTIONS(1403), + [anon_sym_return] = ACTIONS(1403), + [anon_sym_static] = ACTIONS(1403), + [anon_sym_struct] = ACTIONS(1403), + [anon_sym_trait] = ACTIONS(1403), + [anon_sym_type] = ACTIONS(1403), + [anon_sym_union] = ACTIONS(1403), + [anon_sym_unsafe] = ACTIONS(1403), + [anon_sym_use] = ACTIONS(1403), + [anon_sym_while] = ACTIONS(1403), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_yield] = ACTIONS(1403), + [anon_sym_move] = ACTIONS(1403), + [anon_sym_try] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1401), + [aux_sym_string_literal_token1] = ACTIONS(1401), + [sym_char_literal] = ACTIONS(1401), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1403), + [sym_super] = ACTIONS(1403), + [sym_crate] = ACTIONS(1403), + [sym_metavariable] = ACTIONS(1401), + [sym__raw_string_literal_start] = ACTIONS(1401), + [sym_float_literal] = ACTIONS(1401), }, [STATE(427)] = { [sym_line_comment] = STATE(427), [sym_block_comment] = STATE(427), - [ts_builtin_sym_end] = ACTIONS(1055), - [sym_identifier] = ACTIONS(1053), - [anon_sym_SEMI] = ACTIONS(1055), - [anon_sym_macro_rules_BANG] = ACTIONS(1055), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_LBRACK] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_RBRACE] = ACTIONS(1055), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_STAR] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_u8] = ACTIONS(1053), - [anon_sym_i8] = ACTIONS(1053), - [anon_sym_u16] = ACTIONS(1053), - [anon_sym_i16] = ACTIONS(1053), - [anon_sym_u32] = ACTIONS(1053), - [anon_sym_i32] = ACTIONS(1053), - [anon_sym_u64] = ACTIONS(1053), - [anon_sym_i64] = ACTIONS(1053), - [anon_sym_u128] = ACTIONS(1053), - [anon_sym_i128] = ACTIONS(1053), - [anon_sym_isize] = ACTIONS(1053), - [anon_sym_usize] = ACTIONS(1053), - [anon_sym_f32] = ACTIONS(1053), - [anon_sym_f64] = ACTIONS(1053), - [anon_sym_bool] = ACTIONS(1053), - [anon_sym_str] = ACTIONS(1053), - [anon_sym_char] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_SLASH] = ACTIONS(1053), - [anon_sym_PERCENT] = ACTIONS(1053), - [anon_sym_CARET] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(1053), - [anon_sym_AMP] = ACTIONS(1053), - [anon_sym_PIPE] = ACTIONS(1053), - [anon_sym_AMP_AMP] = ACTIONS(1055), - [anon_sym_PIPE_PIPE] = ACTIONS(1055), - [anon_sym_LT_LT] = ACTIONS(1053), - [anon_sym_GT_GT] = ACTIONS(1053), - [anon_sym_PLUS_EQ] = ACTIONS(1055), - [anon_sym_DASH_EQ] = ACTIONS(1055), - [anon_sym_STAR_EQ] = ACTIONS(1055), - [anon_sym_SLASH_EQ] = ACTIONS(1055), - [anon_sym_PERCENT_EQ] = ACTIONS(1055), - [anon_sym_CARET_EQ] = ACTIONS(1055), - [anon_sym_AMP_EQ] = ACTIONS(1055), - [anon_sym_PIPE_EQ] = ACTIONS(1055), - [anon_sym_LT_LT_EQ] = ACTIONS(1055), - [anon_sym_GT_GT_EQ] = ACTIONS(1055), - [anon_sym_EQ] = ACTIONS(1053), - [anon_sym_EQ_EQ] = ACTIONS(1055), - [anon_sym_BANG_EQ] = ACTIONS(1055), - [anon_sym_GT] = ACTIONS(1053), - [anon_sym_LT] = ACTIONS(1053), - [anon_sym_GT_EQ] = ACTIONS(1055), - [anon_sym_LT_EQ] = ACTIONS(1055), - [anon_sym_DOT] = ACTIONS(1053), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1055), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(1055), - [anon_sym_POUND] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_as] = ACTIONS(1053), - [anon_sym_async] = ACTIONS(1053), - [anon_sym_break] = ACTIONS(1053), - [anon_sym_const] = ACTIONS(1053), - [anon_sym_continue] = ACTIONS(1053), - [anon_sym_default] = ACTIONS(1053), - [anon_sym_enum] = ACTIONS(1053), - [anon_sym_fn] = ACTIONS(1053), - [anon_sym_for] = ACTIONS(1053), - [anon_sym_gen] = ACTIONS(1053), - [anon_sym_if] = ACTIONS(1053), - [anon_sym_impl] = ACTIONS(1053), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_loop] = ACTIONS(1053), - [anon_sym_match] = ACTIONS(1053), - [anon_sym_mod] = ACTIONS(1053), - [anon_sym_pub] = ACTIONS(1053), - [anon_sym_return] = ACTIONS(1053), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_struct] = ACTIONS(1053), - [anon_sym_trait] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_union] = ACTIONS(1053), - [anon_sym_unsafe] = ACTIONS(1053), - [anon_sym_use] = ACTIONS(1053), - [anon_sym_while] = ACTIONS(1053), - [anon_sym_extern] = ACTIONS(1053), - [anon_sym_yield] = ACTIONS(1053), - [anon_sym_move] = ACTIONS(1053), - [anon_sym_try] = ACTIONS(1053), - [sym_integer_literal] = ACTIONS(1055), - [aux_sym_string_literal_token1] = ACTIONS(1055), - [sym_char_literal] = ACTIONS(1055), - [anon_sym_true] = ACTIONS(1053), - [anon_sym_false] = ACTIONS(1053), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1053), - [sym_super] = ACTIONS(1053), - [sym_crate] = ACTIONS(1053), - [sym_metavariable] = ACTIONS(1055), - [sym__raw_string_literal_start] = ACTIONS(1055), - [sym_float_literal] = ACTIONS(1055), + [ts_builtin_sym_end] = ACTIONS(1405), + [sym_identifier] = ACTIONS(1407), + [anon_sym_SEMI] = ACTIONS(1405), + [anon_sym_macro_rules_BANG] = ACTIONS(1405), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1399), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_QMARK] = ACTIONS(1397), + [anon_sym_u8] = ACTIONS(1407), + [anon_sym_i8] = ACTIONS(1407), + [anon_sym_u16] = ACTIONS(1407), + [anon_sym_i16] = ACTIONS(1407), + [anon_sym_u32] = ACTIONS(1407), + [anon_sym_i32] = ACTIONS(1407), + [anon_sym_u64] = ACTIONS(1407), + [anon_sym_i64] = ACTIONS(1407), + [anon_sym_u128] = ACTIONS(1407), + [anon_sym_i128] = ACTIONS(1407), + [anon_sym_isize] = ACTIONS(1407), + [anon_sym_usize] = ACTIONS(1407), + [anon_sym_f32] = ACTIONS(1407), + [anon_sym_f64] = ACTIONS(1407), + [anon_sym_bool] = ACTIONS(1407), + [anon_sym_str] = ACTIONS(1407), + [anon_sym_char] = ACTIONS(1407), + [anon_sym_DASH] = ACTIONS(1399), + [anon_sym_SLASH] = ACTIONS(1399), + [anon_sym_PERCENT] = ACTIONS(1399), + [anon_sym_CARET] = ACTIONS(1399), + [anon_sym_BANG] = ACTIONS(1407), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_PIPE] = ACTIONS(1399), + [anon_sym_AMP_AMP] = ACTIONS(1397), + [anon_sym_PIPE_PIPE] = ACTIONS(1397), + [anon_sym_LT_LT] = ACTIONS(1399), + [anon_sym_GT_GT] = ACTIONS(1399), + [anon_sym_PLUS_EQ] = ACTIONS(1397), + [anon_sym_DASH_EQ] = ACTIONS(1397), + [anon_sym_STAR_EQ] = ACTIONS(1397), + [anon_sym_SLASH_EQ] = ACTIONS(1397), + [anon_sym_PERCENT_EQ] = ACTIONS(1397), + [anon_sym_CARET_EQ] = ACTIONS(1397), + [anon_sym_AMP_EQ] = ACTIONS(1397), + [anon_sym_PIPE_EQ] = ACTIONS(1397), + [anon_sym_LT_LT_EQ] = ACTIONS(1397), + [anon_sym_GT_GT_EQ] = ACTIONS(1397), + [anon_sym_EQ] = ACTIONS(1399), + [anon_sym_EQ_EQ] = ACTIONS(1397), + [anon_sym_BANG_EQ] = ACTIONS(1397), + [anon_sym_GT] = ACTIONS(1399), + [anon_sym_LT] = ACTIONS(1399), + [anon_sym_GT_EQ] = ACTIONS(1397), + [anon_sym_LT_EQ] = ACTIONS(1397), + [anon_sym_DOT] = ACTIONS(1399), + [anon_sym_DOT_DOT] = ACTIONS(1399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1397), + [anon_sym_COLON_COLON] = ACTIONS(1405), + [anon_sym_POUND] = ACTIONS(1405), + [anon_sym_SQUOTE] = ACTIONS(1407), + [anon_sym_as] = ACTIONS(1399), + [anon_sym_async] = ACTIONS(1407), + [anon_sym_break] = ACTIONS(1407), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_continue] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1407), + [anon_sym_enum] = ACTIONS(1407), + [anon_sym_fn] = ACTIONS(1407), + [anon_sym_for] = ACTIONS(1407), + [anon_sym_gen] = ACTIONS(1407), + [anon_sym_if] = ACTIONS(1407), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_let] = ACTIONS(1407), + [anon_sym_loop] = ACTIONS(1407), + [anon_sym_match] = ACTIONS(1407), + [anon_sym_mod] = ACTIONS(1407), + [anon_sym_pub] = ACTIONS(1407), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_static] = ACTIONS(1407), + [anon_sym_struct] = ACTIONS(1407), + [anon_sym_trait] = ACTIONS(1407), + [anon_sym_type] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1407), + [anon_sym_unsafe] = ACTIONS(1407), + [anon_sym_use] = ACTIONS(1407), + [anon_sym_while] = ACTIONS(1407), + [anon_sym_extern] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1407), + [anon_sym_move] = ACTIONS(1407), + [anon_sym_try] = ACTIONS(1407), + [sym_integer_literal] = ACTIONS(1405), + [aux_sym_string_literal_token1] = ACTIONS(1405), + [sym_char_literal] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1407), + [sym_super] = ACTIONS(1407), + [sym_crate] = ACTIONS(1407), + [sym_metavariable] = ACTIONS(1405), + [sym__raw_string_literal_start] = ACTIONS(1405), + [sym_float_literal] = ACTIONS(1405), }, [STATE(428)] = { [sym_line_comment] = STATE(428), [sym_block_comment] = STATE(428), - [sym_identifier] = ACTIONS(1455), - [anon_sym_SEMI] = ACTIONS(1457), - [anon_sym_macro_rules_BANG] = ACTIONS(1453), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_LBRACK] = ACTIONS(1457), - [anon_sym_LBRACE] = ACTIONS(1453), - [anon_sym_RBRACE] = ACTIONS(1453), - [anon_sym_PLUS] = ACTIONS(1459), - [anon_sym_STAR] = ACTIONS(1459), - [anon_sym_QMARK] = ACTIONS(1457), - [anon_sym_u8] = ACTIONS(1455), - [anon_sym_i8] = ACTIONS(1455), - [anon_sym_u16] = ACTIONS(1455), - [anon_sym_i16] = ACTIONS(1455), - [anon_sym_u32] = ACTIONS(1455), - [anon_sym_i32] = ACTIONS(1455), - [anon_sym_u64] = ACTIONS(1455), - [anon_sym_i64] = ACTIONS(1455), - [anon_sym_u128] = ACTIONS(1455), - [anon_sym_i128] = ACTIONS(1455), - [anon_sym_isize] = ACTIONS(1455), - [anon_sym_usize] = ACTIONS(1455), - [anon_sym_f32] = ACTIONS(1455), - [anon_sym_f64] = ACTIONS(1455), - [anon_sym_bool] = ACTIONS(1455), - [anon_sym_str] = ACTIONS(1455), - [anon_sym_char] = ACTIONS(1455), - [anon_sym_DASH] = ACTIONS(1459), - [anon_sym_SLASH] = ACTIONS(1459), - [anon_sym_PERCENT] = ACTIONS(1459), - [anon_sym_CARET] = ACTIONS(1459), - [anon_sym_BANG] = ACTIONS(1455), - [anon_sym_AMP] = ACTIONS(1459), - [anon_sym_PIPE] = ACTIONS(1459), - [anon_sym_AMP_AMP] = ACTIONS(1457), - [anon_sym_PIPE_PIPE] = ACTIONS(1457), - [anon_sym_LT_LT] = ACTIONS(1459), - [anon_sym_GT_GT] = ACTIONS(1459), - [anon_sym_PLUS_EQ] = ACTIONS(1457), - [anon_sym_DASH_EQ] = ACTIONS(1457), - [anon_sym_STAR_EQ] = ACTIONS(1457), - [anon_sym_SLASH_EQ] = ACTIONS(1457), - [anon_sym_PERCENT_EQ] = ACTIONS(1457), - [anon_sym_CARET_EQ] = ACTIONS(1457), - [anon_sym_AMP_EQ] = ACTIONS(1457), - [anon_sym_PIPE_EQ] = ACTIONS(1457), - [anon_sym_LT_LT_EQ] = ACTIONS(1457), - [anon_sym_GT_GT_EQ] = ACTIONS(1457), - [anon_sym_EQ] = ACTIONS(1459), - [anon_sym_EQ_EQ] = ACTIONS(1457), - [anon_sym_BANG_EQ] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1457), - [anon_sym_DOT] = ACTIONS(1459), - [anon_sym_DOT_DOT] = ACTIONS(1459), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1457), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1457), - [anon_sym_COLON_COLON] = ACTIONS(1453), - [anon_sym_POUND] = ACTIONS(1453), - [anon_sym_SQUOTE] = ACTIONS(1455), - [anon_sym_as] = ACTIONS(1459), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_break] = ACTIONS(1455), - [anon_sym_const] = ACTIONS(1455), - [anon_sym_continue] = ACTIONS(1455), - [anon_sym_default] = ACTIONS(1455), - [anon_sym_enum] = ACTIONS(1455), - [anon_sym_fn] = ACTIONS(1455), - [anon_sym_for] = ACTIONS(1455), - [anon_sym_gen] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1455), - [anon_sym_impl] = ACTIONS(1455), - [anon_sym_let] = ACTIONS(1455), - [anon_sym_loop] = ACTIONS(1455), - [anon_sym_match] = ACTIONS(1455), - [anon_sym_mod] = ACTIONS(1455), - [anon_sym_pub] = ACTIONS(1455), - [anon_sym_return] = ACTIONS(1455), - [anon_sym_static] = ACTIONS(1455), - [anon_sym_struct] = ACTIONS(1455), - [anon_sym_trait] = ACTIONS(1455), - [anon_sym_type] = ACTIONS(1455), - [anon_sym_union] = ACTIONS(1455), - [anon_sym_unsafe] = ACTIONS(1455), - [anon_sym_use] = ACTIONS(1455), - [anon_sym_while] = ACTIONS(1455), - [anon_sym_extern] = ACTIONS(1455), - [anon_sym_yield] = ACTIONS(1455), - [anon_sym_move] = ACTIONS(1455), - [anon_sym_try] = ACTIONS(1455), - [sym_integer_literal] = ACTIONS(1453), - [aux_sym_string_literal_token1] = ACTIONS(1453), - [sym_char_literal] = ACTIONS(1453), - [anon_sym_true] = ACTIONS(1455), - [anon_sym_false] = ACTIONS(1455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1455), - [sym_super] = ACTIONS(1455), - [sym_crate] = ACTIONS(1455), - [sym_metavariable] = ACTIONS(1453), - [sym__raw_string_literal_start] = ACTIONS(1453), - [sym_float_literal] = ACTIONS(1453), + [ts_builtin_sym_end] = ACTIONS(1409), + [sym_identifier] = ACTIONS(1411), + [anon_sym_SEMI] = ACTIONS(1409), + [anon_sym_macro_rules_BANG] = ACTIONS(1409), + [anon_sym_LPAREN] = ACTIONS(1409), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_LBRACE] = ACTIONS(1409), + [anon_sym_RBRACE] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_STAR] = ACTIONS(1411), + [anon_sym_QMARK] = ACTIONS(1409), + [anon_sym_u8] = ACTIONS(1411), + [anon_sym_i8] = ACTIONS(1411), + [anon_sym_u16] = ACTIONS(1411), + [anon_sym_i16] = ACTIONS(1411), + [anon_sym_u32] = ACTIONS(1411), + [anon_sym_i32] = ACTIONS(1411), + [anon_sym_u64] = ACTIONS(1411), + [anon_sym_i64] = ACTIONS(1411), + [anon_sym_u128] = ACTIONS(1411), + [anon_sym_i128] = ACTIONS(1411), + [anon_sym_isize] = ACTIONS(1411), + [anon_sym_usize] = ACTIONS(1411), + [anon_sym_f32] = ACTIONS(1411), + [anon_sym_f64] = ACTIONS(1411), + [anon_sym_bool] = ACTIONS(1411), + [anon_sym_str] = ACTIONS(1411), + [anon_sym_char] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(1411), + [anon_sym_PERCENT] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_PIPE] = ACTIONS(1411), + [anon_sym_AMP_AMP] = ACTIONS(1409), + [anon_sym_PIPE_PIPE] = ACTIONS(1409), + [anon_sym_LT_LT] = ACTIONS(1411), + [anon_sym_GT_GT] = ACTIONS(1411), + [anon_sym_PLUS_EQ] = ACTIONS(1409), + [anon_sym_DASH_EQ] = ACTIONS(1409), + [anon_sym_STAR_EQ] = ACTIONS(1409), + [anon_sym_SLASH_EQ] = ACTIONS(1409), + [anon_sym_PERCENT_EQ] = ACTIONS(1409), + [anon_sym_CARET_EQ] = ACTIONS(1409), + [anon_sym_AMP_EQ] = ACTIONS(1409), + [anon_sym_PIPE_EQ] = ACTIONS(1409), + [anon_sym_LT_LT_EQ] = ACTIONS(1409), + [anon_sym_GT_GT_EQ] = ACTIONS(1409), + [anon_sym_EQ] = ACTIONS(1411), + [anon_sym_EQ_EQ] = ACTIONS(1409), + [anon_sym_BANG_EQ] = ACTIONS(1409), + [anon_sym_GT] = ACTIONS(1411), + [anon_sym_LT] = ACTIONS(1411), + [anon_sym_GT_EQ] = ACTIONS(1409), + [anon_sym_LT_EQ] = ACTIONS(1409), + [anon_sym_DOT] = ACTIONS(1411), + [anon_sym_DOT_DOT] = ACTIONS(1411), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1409), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1409), + [anon_sym_COLON_COLON] = ACTIONS(1409), + [anon_sym_POUND] = ACTIONS(1409), + [anon_sym_SQUOTE] = ACTIONS(1411), + [anon_sym_as] = ACTIONS(1411), + [anon_sym_async] = ACTIONS(1411), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_const] = ACTIONS(1411), + [anon_sym_continue] = ACTIONS(1411), + [anon_sym_default] = ACTIONS(1411), + [anon_sym_enum] = ACTIONS(1411), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1411), + [anon_sym_gen] = ACTIONS(1411), + [anon_sym_if] = ACTIONS(1411), + [anon_sym_impl] = ACTIONS(1411), + [anon_sym_let] = ACTIONS(1411), + [anon_sym_loop] = ACTIONS(1411), + [anon_sym_match] = ACTIONS(1411), + [anon_sym_mod] = ACTIONS(1411), + [anon_sym_pub] = ACTIONS(1411), + [anon_sym_return] = ACTIONS(1411), + [anon_sym_static] = ACTIONS(1411), + [anon_sym_struct] = ACTIONS(1411), + [anon_sym_trait] = ACTIONS(1411), + [anon_sym_type] = ACTIONS(1411), + [anon_sym_union] = ACTIONS(1411), + [anon_sym_unsafe] = ACTIONS(1411), + [anon_sym_use] = ACTIONS(1411), + [anon_sym_while] = ACTIONS(1411), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1411), + [anon_sym_move] = ACTIONS(1411), + [anon_sym_try] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1409), + [aux_sym_string_literal_token1] = ACTIONS(1409), + [sym_char_literal] = ACTIONS(1409), + [anon_sym_true] = ACTIONS(1411), + [anon_sym_false] = ACTIONS(1411), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1411), + [sym_super] = ACTIONS(1411), + [sym_crate] = ACTIONS(1411), + [sym_metavariable] = ACTIONS(1409), + [sym__raw_string_literal_start] = ACTIONS(1409), + [sym_float_literal] = ACTIONS(1409), }, [STATE(429)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3066), - [sym_bracketed_type] = STATE(3700), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3439), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2581), - [sym_scoped_identifier] = STATE(2275), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2828), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(429), [sym_block_comment] = STATE(429), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1557), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_RBRACK] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1563), - [anon_sym_i8] = ACTIONS(1563), - [anon_sym_u16] = ACTIONS(1563), - [anon_sym_i16] = ACTIONS(1563), - [anon_sym_u32] = ACTIONS(1563), - [anon_sym_i32] = ACTIONS(1563), - [anon_sym_u64] = ACTIONS(1563), - [anon_sym_i64] = ACTIONS(1563), - [anon_sym_u128] = ACTIONS(1563), - [anon_sym_i128] = ACTIONS(1563), - [anon_sym_isize] = ACTIONS(1563), - [anon_sym_usize] = ACTIONS(1563), - [anon_sym_f32] = ACTIONS(1563), - [anon_sym_f64] = ACTIONS(1563), - [anon_sym_bool] = ACTIONS(1563), - [anon_sym_str] = ACTIONS(1563), - [anon_sym_char] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COMMA] = ACTIONS(1567), - [anon_sym_COLON_COLON] = ACTIONS(1569), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1573), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1573), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1575), - [sym_super] = ACTIONS(1575), - [sym_crate] = ACTIONS(1575), - [sym_metavariable] = ACTIONS(1577), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [ts_builtin_sym_end] = ACTIONS(1413), + [sym_identifier] = ACTIONS(1415), + [anon_sym_SEMI] = ACTIONS(1413), + [anon_sym_macro_rules_BANG] = ACTIONS(1413), + [anon_sym_LPAREN] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1413), + [anon_sym_LBRACE] = ACTIONS(1413), + [anon_sym_RBRACE] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_QMARK] = ACTIONS(1413), + [anon_sym_u8] = ACTIONS(1415), + [anon_sym_i8] = ACTIONS(1415), + [anon_sym_u16] = ACTIONS(1415), + [anon_sym_i16] = ACTIONS(1415), + [anon_sym_u32] = ACTIONS(1415), + [anon_sym_i32] = ACTIONS(1415), + [anon_sym_u64] = ACTIONS(1415), + [anon_sym_i64] = ACTIONS(1415), + [anon_sym_u128] = ACTIONS(1415), + [anon_sym_i128] = ACTIONS(1415), + [anon_sym_isize] = ACTIONS(1415), + [anon_sym_usize] = ACTIONS(1415), + [anon_sym_f32] = ACTIONS(1415), + [anon_sym_f64] = ACTIONS(1415), + [anon_sym_bool] = ACTIONS(1415), + [anon_sym_str] = ACTIONS(1415), + [anon_sym_char] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_SLASH] = ACTIONS(1415), + [anon_sym_PERCENT] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(1415), + [anon_sym_PIPE] = ACTIONS(1415), + [anon_sym_AMP_AMP] = ACTIONS(1413), + [anon_sym_PIPE_PIPE] = ACTIONS(1413), + [anon_sym_LT_LT] = ACTIONS(1415), + [anon_sym_GT_GT] = ACTIONS(1415), + [anon_sym_PLUS_EQ] = ACTIONS(1413), + [anon_sym_DASH_EQ] = ACTIONS(1413), + [anon_sym_STAR_EQ] = ACTIONS(1413), + [anon_sym_SLASH_EQ] = ACTIONS(1413), + [anon_sym_PERCENT_EQ] = ACTIONS(1413), + [anon_sym_CARET_EQ] = ACTIONS(1413), + [anon_sym_AMP_EQ] = ACTIONS(1413), + [anon_sym_PIPE_EQ] = ACTIONS(1413), + [anon_sym_LT_LT_EQ] = ACTIONS(1413), + [anon_sym_GT_GT_EQ] = ACTIONS(1413), + [anon_sym_EQ] = ACTIONS(1415), + [anon_sym_EQ_EQ] = ACTIONS(1413), + [anon_sym_BANG_EQ] = ACTIONS(1413), + [anon_sym_GT] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(1415), + [anon_sym_GT_EQ] = ACTIONS(1413), + [anon_sym_LT_EQ] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DOT_DOT] = ACTIONS(1415), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1413), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1413), + [anon_sym_COLON_COLON] = ACTIONS(1413), + [anon_sym_POUND] = ACTIONS(1413), + [anon_sym_SQUOTE] = ACTIONS(1415), + [anon_sym_as] = ACTIONS(1415), + [anon_sym_async] = ACTIONS(1415), + [anon_sym_break] = ACTIONS(1415), + [anon_sym_const] = ACTIONS(1415), + [anon_sym_continue] = ACTIONS(1415), + [anon_sym_default] = ACTIONS(1415), + [anon_sym_enum] = ACTIONS(1415), + [anon_sym_fn] = ACTIONS(1415), + [anon_sym_for] = ACTIONS(1415), + [anon_sym_gen] = ACTIONS(1415), + [anon_sym_if] = ACTIONS(1415), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_let] = ACTIONS(1415), + [anon_sym_loop] = ACTIONS(1415), + [anon_sym_match] = ACTIONS(1415), + [anon_sym_mod] = ACTIONS(1415), + [anon_sym_pub] = ACTIONS(1415), + [anon_sym_return] = ACTIONS(1415), + [anon_sym_static] = ACTIONS(1415), + [anon_sym_struct] = ACTIONS(1415), + [anon_sym_trait] = ACTIONS(1415), + [anon_sym_type] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1415), + [anon_sym_unsafe] = ACTIONS(1415), + [anon_sym_use] = ACTIONS(1415), + [anon_sym_while] = ACTIONS(1415), + [anon_sym_extern] = ACTIONS(1415), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_move] = ACTIONS(1415), + [anon_sym_try] = ACTIONS(1415), + [sym_integer_literal] = ACTIONS(1413), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1413), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1415), + [sym_super] = ACTIONS(1415), + [sym_crate] = ACTIONS(1415), + [sym_metavariable] = ACTIONS(1413), + [sym__raw_string_literal_start] = ACTIONS(1413), + [sym_float_literal] = ACTIONS(1413), }, [STATE(430)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2056), - [sym_bracketed_type] = STATE(3699), - [sym_lifetime] = STATE(854), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3431), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2528), - [sym_scoped_identifier] = STATE(2224), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2229), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(430), [sym_block_comment] = STATE(430), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1105), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1115), - [anon_sym_i8] = ACTIONS(1115), - [anon_sym_u16] = ACTIONS(1115), - [anon_sym_i16] = ACTIONS(1115), - [anon_sym_u32] = ACTIONS(1115), - [anon_sym_i32] = ACTIONS(1115), - [anon_sym_u64] = ACTIONS(1115), - [anon_sym_i64] = ACTIONS(1115), - [anon_sym_u128] = ACTIONS(1115), - [anon_sym_i128] = ACTIONS(1115), - [anon_sym_isize] = ACTIONS(1115), - [anon_sym_usize] = ACTIONS(1115), - [anon_sym_f32] = ACTIONS(1115), - [anon_sym_f64] = ACTIONS(1115), - [anon_sym_bool] = ACTIONS(1115), - [anon_sym_str] = ACTIONS(1115), - [anon_sym_char] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1135), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1145), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1151), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1151), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1579), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1581), - [sym_super] = ACTIONS(1173), - [sym_crate] = ACTIONS(1173), - [sym_metavariable] = ACTIONS(1175), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [ts_builtin_sym_end] = ACTIONS(1417), + [sym_identifier] = ACTIONS(1419), + [anon_sym_SEMI] = ACTIONS(1417), + [anon_sym_macro_rules_BANG] = ACTIONS(1417), + [anon_sym_LPAREN] = ACTIONS(1417), + [anon_sym_LBRACK] = ACTIONS(1417), + [anon_sym_LBRACE] = ACTIONS(1417), + [anon_sym_RBRACE] = ACTIONS(1417), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_QMARK] = ACTIONS(1417), + [anon_sym_u8] = ACTIONS(1419), + [anon_sym_i8] = ACTIONS(1419), + [anon_sym_u16] = ACTIONS(1419), + [anon_sym_i16] = ACTIONS(1419), + [anon_sym_u32] = ACTIONS(1419), + [anon_sym_i32] = ACTIONS(1419), + [anon_sym_u64] = ACTIONS(1419), + [anon_sym_i64] = ACTIONS(1419), + [anon_sym_u128] = ACTIONS(1419), + [anon_sym_i128] = ACTIONS(1419), + [anon_sym_isize] = ACTIONS(1419), + [anon_sym_usize] = ACTIONS(1419), + [anon_sym_f32] = ACTIONS(1419), + [anon_sym_f64] = ACTIONS(1419), + [anon_sym_bool] = ACTIONS(1419), + [anon_sym_str] = ACTIONS(1419), + [anon_sym_char] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1419), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_CARET] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1419), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_AMP_AMP] = ACTIONS(1417), + [anon_sym_PIPE_PIPE] = ACTIONS(1417), + [anon_sym_LT_LT] = ACTIONS(1419), + [anon_sym_GT_GT] = ACTIONS(1419), + [anon_sym_PLUS_EQ] = ACTIONS(1417), + [anon_sym_DASH_EQ] = ACTIONS(1417), + [anon_sym_STAR_EQ] = ACTIONS(1417), + [anon_sym_SLASH_EQ] = ACTIONS(1417), + [anon_sym_PERCENT_EQ] = ACTIONS(1417), + [anon_sym_CARET_EQ] = ACTIONS(1417), + [anon_sym_AMP_EQ] = ACTIONS(1417), + [anon_sym_PIPE_EQ] = ACTIONS(1417), + [anon_sym_LT_LT_EQ] = ACTIONS(1417), + [anon_sym_GT_GT_EQ] = ACTIONS(1417), + [anon_sym_EQ] = ACTIONS(1419), + [anon_sym_EQ_EQ] = ACTIONS(1417), + [anon_sym_BANG_EQ] = ACTIONS(1417), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_LT] = ACTIONS(1419), + [anon_sym_GT_EQ] = ACTIONS(1417), + [anon_sym_LT_EQ] = ACTIONS(1417), + [anon_sym_DOT] = ACTIONS(1419), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1417), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1417), + [anon_sym_POUND] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [anon_sym_as] = ACTIONS(1419), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_break] = ACTIONS(1419), + [anon_sym_const] = ACTIONS(1419), + [anon_sym_continue] = ACTIONS(1419), + [anon_sym_default] = ACTIONS(1419), + [anon_sym_enum] = ACTIONS(1419), + [anon_sym_fn] = ACTIONS(1419), + [anon_sym_for] = ACTIONS(1419), + [anon_sym_gen] = ACTIONS(1419), + [anon_sym_if] = ACTIONS(1419), + [anon_sym_impl] = ACTIONS(1419), + [anon_sym_let] = ACTIONS(1419), + [anon_sym_loop] = ACTIONS(1419), + [anon_sym_match] = ACTIONS(1419), + [anon_sym_mod] = ACTIONS(1419), + [anon_sym_pub] = ACTIONS(1419), + [anon_sym_return] = ACTIONS(1419), + [anon_sym_static] = ACTIONS(1419), + [anon_sym_struct] = ACTIONS(1419), + [anon_sym_trait] = ACTIONS(1419), + [anon_sym_type] = ACTIONS(1419), + [anon_sym_union] = ACTIONS(1419), + [anon_sym_unsafe] = ACTIONS(1419), + [anon_sym_use] = ACTIONS(1419), + [anon_sym_while] = ACTIONS(1419), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_yield] = ACTIONS(1419), + [anon_sym_move] = ACTIONS(1419), + [anon_sym_try] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [aux_sym_string_literal_token1] = ACTIONS(1417), + [sym_char_literal] = ACTIONS(1417), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1419), + [sym_super] = ACTIONS(1419), + [sym_crate] = ACTIONS(1419), + [sym_metavariable] = ACTIONS(1417), + [sym__raw_string_literal_start] = ACTIONS(1417), + [sym_float_literal] = ACTIONS(1417), }, [STATE(431)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2061), - [sym_bracketed_type] = STATE(3691), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3333), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2540), - [sym_scoped_identifier] = STATE(2311), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2201), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(431), [sym_block_comment] = STATE(431), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u128] = ACTIONS(1187), - [anon_sym_i128] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_str] = ACTIONS(1187), - [anon_sym_char] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1583), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1203), - [sym_super] = ACTIONS(1203), - [sym_crate] = ACTIONS(1203), - [sym_metavariable] = ACTIONS(1205), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [ts_builtin_sym_end] = ACTIONS(1421), + [sym_identifier] = ACTIONS(1423), + [anon_sym_SEMI] = ACTIONS(1421), + [anon_sym_macro_rules_BANG] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(1421), + [anon_sym_LBRACK] = ACTIONS(1421), + [anon_sym_LBRACE] = ACTIONS(1421), + [anon_sym_RBRACE] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1423), + [anon_sym_QMARK] = ACTIONS(1421), + [anon_sym_u8] = ACTIONS(1423), + [anon_sym_i8] = ACTIONS(1423), + [anon_sym_u16] = ACTIONS(1423), + [anon_sym_i16] = ACTIONS(1423), + [anon_sym_u32] = ACTIONS(1423), + [anon_sym_i32] = ACTIONS(1423), + [anon_sym_u64] = ACTIONS(1423), + [anon_sym_i64] = ACTIONS(1423), + [anon_sym_u128] = ACTIONS(1423), + [anon_sym_i128] = ACTIONS(1423), + [anon_sym_isize] = ACTIONS(1423), + [anon_sym_usize] = ACTIONS(1423), + [anon_sym_f32] = ACTIONS(1423), + [anon_sym_f64] = ACTIONS(1423), + [anon_sym_bool] = ACTIONS(1423), + [anon_sym_str] = ACTIONS(1423), + [anon_sym_char] = ACTIONS(1423), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_SLASH] = ACTIONS(1423), + [anon_sym_PERCENT] = ACTIONS(1423), + [anon_sym_CARET] = ACTIONS(1423), + [anon_sym_BANG] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(1423), + [anon_sym_PIPE] = ACTIONS(1423), + [anon_sym_AMP_AMP] = ACTIONS(1421), + [anon_sym_PIPE_PIPE] = ACTIONS(1421), + [anon_sym_LT_LT] = ACTIONS(1423), + [anon_sym_GT_GT] = ACTIONS(1423), + [anon_sym_PLUS_EQ] = ACTIONS(1421), + [anon_sym_DASH_EQ] = ACTIONS(1421), + [anon_sym_STAR_EQ] = ACTIONS(1421), + [anon_sym_SLASH_EQ] = ACTIONS(1421), + [anon_sym_PERCENT_EQ] = ACTIONS(1421), + [anon_sym_CARET_EQ] = ACTIONS(1421), + [anon_sym_AMP_EQ] = ACTIONS(1421), + [anon_sym_PIPE_EQ] = ACTIONS(1421), + [anon_sym_LT_LT_EQ] = ACTIONS(1421), + [anon_sym_GT_GT_EQ] = ACTIONS(1421), + [anon_sym_EQ] = ACTIONS(1423), + [anon_sym_EQ_EQ] = ACTIONS(1421), + [anon_sym_BANG_EQ] = ACTIONS(1421), + [anon_sym_GT] = ACTIONS(1423), + [anon_sym_LT] = ACTIONS(1423), + [anon_sym_GT_EQ] = ACTIONS(1421), + [anon_sym_LT_EQ] = ACTIONS(1421), + [anon_sym_DOT] = ACTIONS(1423), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1421), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1421), + [anon_sym_COLON_COLON] = ACTIONS(1421), + [anon_sym_POUND] = ACTIONS(1421), + [anon_sym_SQUOTE] = ACTIONS(1423), + [anon_sym_as] = ACTIONS(1423), + [anon_sym_async] = ACTIONS(1423), + [anon_sym_break] = ACTIONS(1423), + [anon_sym_const] = ACTIONS(1423), + [anon_sym_continue] = ACTIONS(1423), + [anon_sym_default] = ACTIONS(1423), + [anon_sym_enum] = ACTIONS(1423), + [anon_sym_fn] = ACTIONS(1423), + [anon_sym_for] = ACTIONS(1423), + [anon_sym_gen] = ACTIONS(1423), + [anon_sym_if] = ACTIONS(1423), + [anon_sym_impl] = ACTIONS(1423), + [anon_sym_let] = ACTIONS(1423), + [anon_sym_loop] = ACTIONS(1423), + [anon_sym_match] = ACTIONS(1423), + [anon_sym_mod] = ACTIONS(1423), + [anon_sym_pub] = ACTIONS(1423), + [anon_sym_return] = ACTIONS(1423), + [anon_sym_static] = ACTIONS(1423), + [anon_sym_struct] = ACTIONS(1423), + [anon_sym_trait] = ACTIONS(1423), + [anon_sym_type] = ACTIONS(1423), + [anon_sym_union] = ACTIONS(1423), + [anon_sym_unsafe] = ACTIONS(1423), + [anon_sym_use] = ACTIONS(1423), + [anon_sym_while] = ACTIONS(1423), + [anon_sym_extern] = ACTIONS(1423), + [anon_sym_yield] = ACTIONS(1423), + [anon_sym_move] = ACTIONS(1423), + [anon_sym_try] = ACTIONS(1423), + [sym_integer_literal] = ACTIONS(1421), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1421), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1423), + [sym_super] = ACTIONS(1423), + [sym_crate] = ACTIONS(1423), + [sym_metavariable] = ACTIONS(1421), + [sym__raw_string_literal_start] = ACTIONS(1421), + [sym_float_literal] = ACTIONS(1421), }, [STATE(432)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2056), - [sym_bracketed_type] = STATE(3691), - [sym_lifetime] = STATE(858), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3333), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2540), - [sym_scoped_identifier] = STATE(2311), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2229), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(432), [sym_block_comment] = STATE(432), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u128] = ACTIONS(1187), - [anon_sym_i128] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_str] = ACTIONS(1187), - [anon_sym_char] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1583), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1585), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), + [ts_builtin_sym_end] = ACTIONS(1425), + [sym_identifier] = ACTIONS(1427), + [anon_sym_SEMI] = ACTIONS(1425), + [anon_sym_macro_rules_BANG] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_RBRACE] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(1399), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_QMARK] = ACTIONS(1397), + [anon_sym_u8] = ACTIONS(1427), + [anon_sym_i8] = ACTIONS(1427), + [anon_sym_u16] = ACTIONS(1427), + [anon_sym_i16] = ACTIONS(1427), + [anon_sym_u32] = ACTIONS(1427), + [anon_sym_i32] = ACTIONS(1427), + [anon_sym_u64] = ACTIONS(1427), + [anon_sym_i64] = ACTIONS(1427), + [anon_sym_u128] = ACTIONS(1427), + [anon_sym_i128] = ACTIONS(1427), + [anon_sym_isize] = ACTIONS(1427), + [anon_sym_usize] = ACTIONS(1427), + [anon_sym_f32] = ACTIONS(1427), + [anon_sym_f64] = ACTIONS(1427), + [anon_sym_bool] = ACTIONS(1427), + [anon_sym_str] = ACTIONS(1427), + [anon_sym_char] = ACTIONS(1427), + [anon_sym_DASH] = ACTIONS(1427), + [anon_sym_SLASH] = ACTIONS(1399), + [anon_sym_PERCENT] = ACTIONS(1399), + [anon_sym_CARET] = ACTIONS(1399), + [anon_sym_BANG] = ACTIONS(1427), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_PIPE] = ACTIONS(1427), + [anon_sym_AMP_AMP] = ACTIONS(1397), + [anon_sym_PIPE_PIPE] = ACTIONS(1397), + [anon_sym_LT_LT] = ACTIONS(1399), + [anon_sym_GT_GT] = ACTIONS(1399), + [anon_sym_PLUS_EQ] = ACTIONS(1397), + [anon_sym_DASH_EQ] = ACTIONS(1397), + [anon_sym_STAR_EQ] = ACTIONS(1397), + [anon_sym_SLASH_EQ] = ACTIONS(1397), + [anon_sym_PERCENT_EQ] = ACTIONS(1397), + [anon_sym_CARET_EQ] = ACTIONS(1397), + [anon_sym_AMP_EQ] = ACTIONS(1397), + [anon_sym_PIPE_EQ] = ACTIONS(1397), + [anon_sym_LT_LT_EQ] = ACTIONS(1397), + [anon_sym_GT_GT_EQ] = ACTIONS(1397), + [anon_sym_EQ] = ACTIONS(1399), + [anon_sym_EQ_EQ] = ACTIONS(1397), + [anon_sym_BANG_EQ] = ACTIONS(1397), + [anon_sym_GT] = ACTIONS(1399), + [anon_sym_LT] = ACTIONS(1427), + [anon_sym_GT_EQ] = ACTIONS(1397), + [anon_sym_LT_EQ] = ACTIONS(1397), + [anon_sym_DOT] = ACTIONS(1399), + [anon_sym_DOT_DOT] = ACTIONS(1427), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1397), + [anon_sym_COLON_COLON] = ACTIONS(1425), + [anon_sym_POUND] = ACTIONS(1425), + [anon_sym_SQUOTE] = ACTIONS(1427), + [anon_sym_as] = ACTIONS(1399), + [anon_sym_async] = ACTIONS(1427), + [anon_sym_break] = ACTIONS(1427), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_continue] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_enum] = ACTIONS(1427), + [anon_sym_fn] = ACTIONS(1427), + [anon_sym_for] = ACTIONS(1427), + [anon_sym_gen] = ACTIONS(1427), + [anon_sym_if] = ACTIONS(1427), + [anon_sym_impl] = ACTIONS(1427), + [anon_sym_let] = ACTIONS(1427), + [anon_sym_loop] = ACTIONS(1427), + [anon_sym_match] = ACTIONS(1427), + [anon_sym_mod] = ACTIONS(1427), + [anon_sym_pub] = ACTIONS(1427), + [anon_sym_return] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1427), + [anon_sym_struct] = ACTIONS(1427), + [anon_sym_trait] = ACTIONS(1427), + [anon_sym_type] = ACTIONS(1427), + [anon_sym_union] = ACTIONS(1427), + [anon_sym_unsafe] = ACTIONS(1427), + [anon_sym_use] = ACTIONS(1427), + [anon_sym_while] = ACTIONS(1427), + [anon_sym_extern] = ACTIONS(1427), + [anon_sym_yield] = ACTIONS(1427), + [anon_sym_move] = ACTIONS(1427), + [anon_sym_try] = ACTIONS(1427), + [sym_integer_literal] = ACTIONS(1425), + [aux_sym_string_literal_token1] = ACTIONS(1425), + [sym_char_literal] = ACTIONS(1425), + [anon_sym_true] = ACTIONS(1427), + [anon_sym_false] = ACTIONS(1427), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1203), - [sym_super] = ACTIONS(1203), - [sym_crate] = ACTIONS(1203), - [sym_metavariable] = ACTIONS(1205), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_self] = ACTIONS(1427), + [sym_super] = ACTIONS(1427), + [sym_crate] = ACTIONS(1427), + [sym_metavariable] = ACTIONS(1425), + [sym__raw_string_literal_start] = ACTIONS(1425), + [sym_float_literal] = ACTIONS(1425), }, [STATE(433)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2061), - [sym_bracketed_type] = STATE(3699), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3431), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2528), - [sym_scoped_identifier] = STATE(2224), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2201), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(433), [sym_block_comment] = STATE(433), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1105), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1115), - [anon_sym_i8] = ACTIONS(1115), - [anon_sym_u16] = ACTIONS(1115), - [anon_sym_i16] = ACTIONS(1115), - [anon_sym_u32] = ACTIONS(1115), - [anon_sym_i32] = ACTIONS(1115), - [anon_sym_u64] = ACTIONS(1115), - [anon_sym_i64] = ACTIONS(1115), - [anon_sym_u128] = ACTIONS(1115), - [anon_sym_i128] = ACTIONS(1115), - [anon_sym_isize] = ACTIONS(1115), - [anon_sym_usize] = ACTIONS(1115), - [anon_sym_f32] = ACTIONS(1115), - [anon_sym_f64] = ACTIONS(1115), - [anon_sym_bool] = ACTIONS(1115), - [anon_sym_str] = ACTIONS(1115), - [anon_sym_char] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1135), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1145), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1151), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1151), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1587), - [sym_super] = ACTIONS(1173), - [sym_crate] = ACTIONS(1173), - [sym_metavariable] = ACTIONS(1175), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), - }, - [STATE(434)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2061), - [sym_bracketed_type] = STATE(3691), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3333), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2540), - [sym_scoped_identifier] = STATE(2311), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2201), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), - [sym_line_comment] = STATE(434), - [sym_block_comment] = STATE(434), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u128] = ACTIONS(1187), - [anon_sym_i128] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_str] = ACTIONS(1187), - [anon_sym_char] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1583), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1589), - [sym_super] = ACTIONS(1203), - [sym_crate] = ACTIONS(1203), - [sym_metavariable] = ACTIONS(1205), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), - }, - [STATE(435)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2061), - [sym_bracketed_type] = STATE(3699), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3431), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2528), - [sym_scoped_identifier] = STATE(2224), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2201), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), - [sym_line_comment] = STATE(435), - [sym_block_comment] = STATE(435), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1105), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1115), - [anon_sym_i8] = ACTIONS(1115), - [anon_sym_u16] = ACTIONS(1115), - [anon_sym_i16] = ACTIONS(1115), - [anon_sym_u32] = ACTIONS(1115), - [anon_sym_i32] = ACTIONS(1115), - [anon_sym_u64] = ACTIONS(1115), - [anon_sym_i64] = ACTIONS(1115), - [anon_sym_u128] = ACTIONS(1115), - [anon_sym_i128] = ACTIONS(1115), - [anon_sym_isize] = ACTIONS(1115), - [anon_sym_usize] = ACTIONS(1115), - [anon_sym_f32] = ACTIONS(1115), - [anon_sym_f64] = ACTIONS(1115), - [anon_sym_bool] = ACTIONS(1115), - [anon_sym_str] = ACTIONS(1115), - [anon_sym_char] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1135), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1145), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1151), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1151), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1173), - [sym_super] = ACTIONS(1173), - [sym_crate] = ACTIONS(1173), - [sym_metavariable] = ACTIONS(1175), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), - }, - [STATE(436)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2056), - [sym_bracketed_type] = STATE(3699), - [sym_lifetime] = STATE(858), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3431), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2528), - [sym_scoped_identifier] = STATE(2224), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2229), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), - [sym_line_comment] = STATE(436), - [sym_block_comment] = STATE(436), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1105), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1115), - [anon_sym_i8] = ACTIONS(1115), - [anon_sym_u16] = ACTIONS(1115), - [anon_sym_i16] = ACTIONS(1115), - [anon_sym_u32] = ACTIONS(1115), - [anon_sym_i32] = ACTIONS(1115), - [anon_sym_u64] = ACTIONS(1115), - [anon_sym_i64] = ACTIONS(1115), - [anon_sym_u128] = ACTIONS(1115), - [anon_sym_i128] = ACTIONS(1115), - [anon_sym_isize] = ACTIONS(1115), - [anon_sym_usize] = ACTIONS(1115), - [anon_sym_f32] = ACTIONS(1115), - [anon_sym_f64] = ACTIONS(1115), - [anon_sym_bool] = ACTIONS(1115), - [anon_sym_str] = ACTIONS(1115), - [anon_sym_char] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1135), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1145), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1151), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1151), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1591), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1173), - [sym_super] = ACTIONS(1173), - [sym_crate] = ACTIONS(1173), - [sym_metavariable] = ACTIONS(1175), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), - }, - [STATE(437)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2056), - [sym_bracketed_type] = STATE(3691), - [sym_lifetime] = STATE(854), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3333), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2540), - [sym_scoped_identifier] = STATE(2311), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2229), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), - [sym_line_comment] = STATE(437), - [sym_block_comment] = STATE(437), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u128] = ACTIONS(1187), - [anon_sym_i128] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_str] = ACTIONS(1187), - [anon_sym_char] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1583), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1595), - [sym_super] = ACTIONS(1203), - [sym_crate] = ACTIONS(1203), - [sym_metavariable] = ACTIONS(1205), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), - }, - [STATE(438)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2056), - [sym_bracketed_type] = STATE(3700), - [sym_lifetime] = STATE(858), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3439), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2581), - [sym_scoped_identifier] = STATE(2275), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2229), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), - [sym_line_comment] = STATE(438), - [sym_block_comment] = STATE(438), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1557), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1563), - [anon_sym_i8] = ACTIONS(1563), - [anon_sym_u16] = ACTIONS(1563), - [anon_sym_i16] = ACTIONS(1563), - [anon_sym_u32] = ACTIONS(1563), - [anon_sym_i32] = ACTIONS(1563), - [anon_sym_u64] = ACTIONS(1563), - [anon_sym_i64] = ACTIONS(1563), - [anon_sym_u128] = ACTIONS(1563), - [anon_sym_i128] = ACTIONS(1563), - [anon_sym_isize] = ACTIONS(1563), - [anon_sym_usize] = ACTIONS(1563), - [anon_sym_f32] = ACTIONS(1563), - [anon_sym_f64] = ACTIONS(1563), - [anon_sym_bool] = ACTIONS(1563), - [anon_sym_str] = ACTIONS(1563), - [anon_sym_char] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1569), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1573), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1573), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1597), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1575), - [sym_super] = ACTIONS(1575), - [sym_crate] = ACTIONS(1575), - [sym_metavariable] = ACTIONS(1577), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), - }, - [STATE(439)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2061), - [sym_bracketed_type] = STATE(3700), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3439), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2581), - [sym_scoped_identifier] = STATE(2275), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2201), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), - [sym_line_comment] = STATE(439), - [sym_block_comment] = STATE(439), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1557), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1563), - [anon_sym_i8] = ACTIONS(1563), - [anon_sym_u16] = ACTIONS(1563), - [anon_sym_i16] = ACTIONS(1563), - [anon_sym_u32] = ACTIONS(1563), - [anon_sym_i32] = ACTIONS(1563), - [anon_sym_u64] = ACTIONS(1563), - [anon_sym_i64] = ACTIONS(1563), - [anon_sym_u128] = ACTIONS(1563), - [anon_sym_i128] = ACTIONS(1563), - [anon_sym_isize] = ACTIONS(1563), - [anon_sym_usize] = ACTIONS(1563), - [anon_sym_f32] = ACTIONS(1563), - [anon_sym_f64] = ACTIONS(1563), - [anon_sym_bool] = ACTIONS(1563), - [anon_sym_str] = ACTIONS(1563), - [anon_sym_char] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1569), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1573), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1573), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1575), - [sym_super] = ACTIONS(1575), - [sym_crate] = ACTIONS(1575), - [sym_metavariable] = ACTIONS(1577), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), - }, - [STATE(440)] = { - [sym_line_comment] = STATE(440), - [sym_block_comment] = STATE(440), - [sym_identifier] = ACTIONS(1599), - [anon_sym_SEMI] = ACTIONS(1601), - [anon_sym_LPAREN] = ACTIONS(1601), - [anon_sym_RPAREN] = ACTIONS(1601), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_RBRACK] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_RBRACE] = ACTIONS(1601), - [anon_sym_COLON] = ACTIONS(1599), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1599), - [anon_sym_QMARK] = ACTIONS(1601), - [anon_sym_u8] = ACTIONS(1599), - [anon_sym_i8] = ACTIONS(1599), - [anon_sym_u16] = ACTIONS(1599), - [anon_sym_i16] = ACTIONS(1599), - [anon_sym_u32] = ACTIONS(1599), - [anon_sym_i32] = ACTIONS(1599), - [anon_sym_u64] = ACTIONS(1599), - [anon_sym_i64] = ACTIONS(1599), - [anon_sym_u128] = ACTIONS(1599), - [anon_sym_i128] = ACTIONS(1599), - [anon_sym_isize] = ACTIONS(1599), - [anon_sym_usize] = ACTIONS(1599), - [anon_sym_f32] = ACTIONS(1599), - [anon_sym_f64] = ACTIONS(1599), - [anon_sym_bool] = ACTIONS(1599), - [anon_sym_str] = ACTIONS(1599), - [anon_sym_char] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(1599), - [anon_sym_PERCENT] = ACTIONS(1599), - [anon_sym_CARET] = ACTIONS(1599), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_PIPE] = ACTIONS(1599), - [anon_sym_AMP_AMP] = ACTIONS(1601), - [anon_sym_PIPE_PIPE] = ACTIONS(1601), - [anon_sym_LT_LT] = ACTIONS(1599), - [anon_sym_GT_GT] = ACTIONS(1599), - [anon_sym_PLUS_EQ] = ACTIONS(1601), - [anon_sym_DASH_EQ] = ACTIONS(1601), - [anon_sym_STAR_EQ] = ACTIONS(1601), - [anon_sym_SLASH_EQ] = ACTIONS(1601), - [anon_sym_PERCENT_EQ] = ACTIONS(1601), - [anon_sym_CARET_EQ] = ACTIONS(1601), - [anon_sym_AMP_EQ] = ACTIONS(1601), - [anon_sym_PIPE_EQ] = ACTIONS(1601), - [anon_sym_LT_LT_EQ] = ACTIONS(1601), - [anon_sym_GT_GT_EQ] = ACTIONS(1601), - [anon_sym_EQ] = ACTIONS(1599), - [anon_sym_EQ_EQ] = ACTIONS(1601), - [anon_sym_BANG_EQ] = ACTIONS(1601), - [anon_sym_GT] = ACTIONS(1599), - [anon_sym_LT] = ACTIONS(1599), - [anon_sym_GT_EQ] = ACTIONS(1601), - [anon_sym_LT_EQ] = ACTIONS(1601), - [anon_sym_DOT] = ACTIONS(1599), - [anon_sym_DOT_DOT] = ACTIONS(1599), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1601), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1601), - [anon_sym_COMMA] = ACTIONS(1601), - [anon_sym_COLON_COLON] = ACTIONS(1601), - [anon_sym_SQUOTE] = ACTIONS(1599), - [anon_sym_as] = ACTIONS(1599), - [anon_sym_async] = ACTIONS(1599), - [anon_sym_break] = ACTIONS(1599), - [anon_sym_const] = ACTIONS(1599), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_default] = ACTIONS(1599), - [anon_sym_for] = ACTIONS(1599), - [anon_sym_gen] = ACTIONS(1599), - [anon_sym_if] = ACTIONS(1599), - [anon_sym_loop] = ACTIONS(1599), - [anon_sym_match] = ACTIONS(1599), - [anon_sym_return] = ACTIONS(1599), - [anon_sym_static] = ACTIONS(1599), - [anon_sym_union] = ACTIONS(1599), - [anon_sym_unsafe] = ACTIONS(1599), - [anon_sym_while] = ACTIONS(1599), - [anon_sym_else] = ACTIONS(1599), - [anon_sym_yield] = ACTIONS(1599), - [anon_sym_move] = ACTIONS(1599), - [anon_sym_try] = ACTIONS(1599), - [sym_integer_literal] = ACTIONS(1601), - [aux_sym_string_literal_token1] = ACTIONS(1601), - [sym_char_literal] = ACTIONS(1601), - [anon_sym_true] = ACTIONS(1599), - [anon_sym_false] = ACTIONS(1599), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1599), - [sym_super] = ACTIONS(1599), - [sym_crate] = ACTIONS(1599), - [sym_metavariable] = ACTIONS(1601), - [sym__raw_string_literal_start] = ACTIONS(1601), - [sym_float_literal] = ACTIONS(1601), - }, - [STATE(441)] = { - [sym_line_comment] = STATE(441), - [sym_block_comment] = STATE(441), - [sym_identifier] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1601), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_EQ_GT] = ACTIONS(1601), - [anon_sym_COLON] = ACTIONS(1599), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1599), - [anon_sym_QMARK] = ACTIONS(1601), - [anon_sym_u8] = ACTIONS(1599), - [anon_sym_i8] = ACTIONS(1599), - [anon_sym_u16] = ACTIONS(1599), - [anon_sym_i16] = ACTIONS(1599), - [anon_sym_u32] = ACTIONS(1599), - [anon_sym_i32] = ACTIONS(1599), - [anon_sym_u64] = ACTIONS(1599), - [anon_sym_i64] = ACTIONS(1599), - [anon_sym_u128] = ACTIONS(1599), - [anon_sym_i128] = ACTIONS(1599), - [anon_sym_isize] = ACTIONS(1599), - [anon_sym_usize] = ACTIONS(1599), - [anon_sym_f32] = ACTIONS(1599), - [anon_sym_f64] = ACTIONS(1599), - [anon_sym_bool] = ACTIONS(1599), - [anon_sym_str] = ACTIONS(1599), - [anon_sym_char] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(1599), - [anon_sym_PERCENT] = ACTIONS(1599), - [anon_sym_CARET] = ACTIONS(1599), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_PIPE] = ACTIONS(1599), - [anon_sym_AMP_AMP] = ACTIONS(1601), - [anon_sym_PIPE_PIPE] = ACTIONS(1601), - [anon_sym_LT_LT] = ACTIONS(1599), - [anon_sym_GT_GT] = ACTIONS(1599), - [anon_sym_PLUS_EQ] = ACTIONS(1601), - [anon_sym_DASH_EQ] = ACTIONS(1601), - [anon_sym_STAR_EQ] = ACTIONS(1601), - [anon_sym_SLASH_EQ] = ACTIONS(1601), - [anon_sym_PERCENT_EQ] = ACTIONS(1601), - [anon_sym_CARET_EQ] = ACTIONS(1601), - [anon_sym_AMP_EQ] = ACTIONS(1601), - [anon_sym_PIPE_EQ] = ACTIONS(1601), - [anon_sym_LT_LT_EQ] = ACTIONS(1601), - [anon_sym_GT_GT_EQ] = ACTIONS(1601), - [anon_sym_EQ] = ACTIONS(1599), - [anon_sym_EQ_EQ] = ACTIONS(1601), - [anon_sym_BANG_EQ] = ACTIONS(1601), - [anon_sym_GT] = ACTIONS(1599), - [anon_sym_LT] = ACTIONS(1599), - [anon_sym_GT_EQ] = ACTIONS(1601), - [anon_sym_LT_EQ] = ACTIONS(1601), - [anon_sym_DOT] = ACTIONS(1599), - [anon_sym_DOT_DOT] = ACTIONS(1599), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1601), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1601), - [anon_sym_COLON_COLON] = ACTIONS(1601), - [anon_sym_SQUOTE] = ACTIONS(1599), - [anon_sym_as] = ACTIONS(1599), - [anon_sym_async] = ACTIONS(1599), - [anon_sym_break] = ACTIONS(1599), - [anon_sym_const] = ACTIONS(1599), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_default] = ACTIONS(1599), - [anon_sym_for] = ACTIONS(1599), - [anon_sym_gen] = ACTIONS(1599), - [anon_sym_if] = ACTIONS(1599), - [anon_sym_loop] = ACTIONS(1599), - [anon_sym_match] = ACTIONS(1599), - [anon_sym_return] = ACTIONS(1599), - [anon_sym_static] = ACTIONS(1599), - [anon_sym_union] = ACTIONS(1599), - [anon_sym_unsafe] = ACTIONS(1599), - [anon_sym_while] = ACTIONS(1599), - [anon_sym_yield] = ACTIONS(1599), - [anon_sym_move] = ACTIONS(1599), - [anon_sym_try] = ACTIONS(1599), - [sym_integer_literal] = ACTIONS(1601), - [aux_sym_string_literal_token1] = ACTIONS(1601), - [sym_char_literal] = ACTIONS(1601), - [anon_sym_true] = ACTIONS(1599), - [anon_sym_false] = ACTIONS(1599), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1599), - [sym_super] = ACTIONS(1599), - [sym_crate] = ACTIONS(1599), - [sym_metavariable] = ACTIONS(1601), - [sym__raw_string_literal_start] = ACTIONS(1601), - [sym_float_literal] = ACTIONS(1601), - }, - [STATE(442)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2213), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), - [sym_line_comment] = STATE(442), - [sym_block_comment] = STATE(442), - [sym_identifier] = ACTIONS(1603), - [anon_sym_LPAREN] = ACTIONS(1605), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LBRACE] = ACTIONS(1605), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1605), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_PIPE] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(1605), - [anon_sym__] = ACTIONS(1603), - [anon_sym_DOT_DOT] = ACTIONS(1603), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1605), - [anon_sym_DASH_GT] = ACTIONS(1605), - [anon_sym_SQUOTE] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1603), - [anon_sym_break] = ACTIONS(1603), - [anon_sym_const] = ACTIONS(1603), - [anon_sym_continue] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1603), - [anon_sym_for] = ACTIONS(1603), - [anon_sym_gen] = ACTIONS(1603), - [anon_sym_if] = ACTIONS(1603), - [anon_sym_loop] = ACTIONS(1603), - [anon_sym_match] = ACTIONS(1603), - [anon_sym_return] = ACTIONS(1603), - [anon_sym_static] = ACTIONS(1603), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1603), - [anon_sym_while] = ACTIONS(1603), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_move] = ACTIONS(1603), - [anon_sym_try] = ACTIONS(1603), - [sym_integer_literal] = ACTIONS(1605), - [aux_sym_string_literal_token1] = ACTIONS(1605), - [sym_char_literal] = ACTIONS(1605), - [anon_sym_true] = ACTIONS(1603), - [anon_sym_false] = ACTIONS(1603), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1603), - [sym_super] = ACTIONS(1603), - [sym_crate] = ACTIONS(1603), - [sym_metavariable] = ACTIONS(1605), - [sym__raw_string_literal_start] = ACTIONS(1605), - [sym_float_literal] = ACTIONS(1605), - }, - [STATE(443)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2230), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), - [sym_line_comment] = STATE(443), - [sym_block_comment] = STATE(443), - [sym_identifier] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1609), - [anon_sym_LBRACE] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1609), - [anon_sym_u8] = ACTIONS(1607), - [anon_sym_i8] = ACTIONS(1607), - [anon_sym_u16] = ACTIONS(1607), - [anon_sym_i16] = ACTIONS(1607), - [anon_sym_u32] = ACTIONS(1607), - [anon_sym_i32] = ACTIONS(1607), - [anon_sym_u64] = ACTIONS(1607), - [anon_sym_i64] = ACTIONS(1607), - [anon_sym_u128] = ACTIONS(1607), - [anon_sym_i128] = ACTIONS(1607), - [anon_sym_isize] = ACTIONS(1607), - [anon_sym_usize] = ACTIONS(1607), - [anon_sym_f32] = ACTIONS(1607), - [anon_sym_f64] = ACTIONS(1607), - [anon_sym_bool] = ACTIONS(1607), - [anon_sym_str] = ACTIONS(1607), - [anon_sym_char] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1609), - [anon_sym_AMP] = ACTIONS(1609), - [anon_sym_PIPE] = ACTIONS(1609), - [anon_sym_LT] = ACTIONS(1609), - [anon_sym__] = ACTIONS(1607), - [anon_sym_DOT_DOT] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_DASH_GT] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(1607), - [anon_sym_async] = ACTIONS(1607), - [anon_sym_break] = ACTIONS(1607), - [anon_sym_const] = ACTIONS(1607), - [anon_sym_continue] = ACTIONS(1607), - [anon_sym_default] = ACTIONS(1607), - [anon_sym_for] = ACTIONS(1607), - [anon_sym_gen] = ACTIONS(1607), - [anon_sym_if] = ACTIONS(1607), - [anon_sym_loop] = ACTIONS(1607), - [anon_sym_match] = ACTIONS(1607), - [anon_sym_return] = ACTIONS(1607), - [anon_sym_static] = ACTIONS(1607), - [anon_sym_union] = ACTIONS(1607), - [anon_sym_unsafe] = ACTIONS(1607), - [anon_sym_while] = ACTIONS(1607), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [anon_sym_yield] = ACTIONS(1607), - [anon_sym_move] = ACTIONS(1607), - [anon_sym_try] = ACTIONS(1607), - [sym_integer_literal] = ACTIONS(1609), - [aux_sym_string_literal_token1] = ACTIONS(1609), - [sym_char_literal] = ACTIONS(1609), - [anon_sym_true] = ACTIONS(1607), - [anon_sym_false] = ACTIONS(1607), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), - [sym__raw_string_literal_start] = ACTIONS(1609), - [sym_float_literal] = ACTIONS(1609), - }, - [STATE(444)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2611), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(2611), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_type_binding] = STATE(2871), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2255), - [sym_label] = STATE(3770), - [sym_block] = STATE(2871), - [sym__literal] = STATE(2871), - [sym_string_literal] = STATE(3039), - [sym_raw_string_literal] = STATE(3039), - [sym_boolean_literal] = STATE(3039), - [sym_line_comment] = STATE(444), - [sym_block_comment] = STATE(444), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1611), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_GT] = ACTIONS(1627), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [sym_integer_literal] = ACTIONS(1643), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1643), - }, - [STATE(445)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2611), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(2611), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_type_binding] = STATE(2871), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2255), - [sym_label] = STATE(3770), - [sym_block] = STATE(2871), - [sym__literal] = STATE(2871), - [sym_string_literal] = STATE(3039), - [sym_raw_string_literal] = STATE(3039), - [sym_boolean_literal] = STATE(3039), - [sym_line_comment] = STATE(445), - [sym_block_comment] = STATE(445), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1611), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_GT] = ACTIONS(1649), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [sym_integer_literal] = ACTIONS(1643), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1643), - }, - [STATE(446)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2611), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(2611), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_type_binding] = STATE(2871), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2255), - [sym_label] = STATE(3770), - [sym_block] = STATE(2871), - [sym__literal] = STATE(2871), - [sym_string_literal] = STATE(3039), - [sym_raw_string_literal] = STATE(3039), - [sym_boolean_literal] = STATE(3039), - [sym_line_comment] = STATE(446), - [sym_block_comment] = STATE(446), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1611), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_GT] = ACTIONS(1651), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [sym_integer_literal] = ACTIONS(1643), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1643), - }, - [STATE(447)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2611), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(2611), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_type_binding] = STATE(2871), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2255), - [sym_label] = STATE(3770), - [sym_block] = STATE(2871), - [sym__literal] = STATE(2871), - [sym_string_literal] = STATE(3039), - [sym_raw_string_literal] = STATE(3039), - [sym_boolean_literal] = STATE(3039), - [sym_line_comment] = STATE(447), - [sym_block_comment] = STATE(447), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1611), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_GT] = ACTIONS(1653), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [sym_integer_literal] = ACTIONS(1643), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1643), - }, - [STATE(448)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2611), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(2611), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_type_binding] = STATE(2871), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2255), - [sym_label] = STATE(3770), - [sym_block] = STATE(2871), - [sym__literal] = STATE(2871), - [sym_string_literal] = STATE(3039), - [sym_raw_string_literal] = STATE(3039), - [sym_boolean_literal] = STATE(3039), - [sym_line_comment] = STATE(448), - [sym_block_comment] = STATE(448), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1611), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_GT] = ACTIONS(1655), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [sym_integer_literal] = ACTIONS(1643), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1643), - }, - [STATE(449)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2611), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(2611), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_type_binding] = STATE(2871), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2255), - [sym_label] = STATE(3770), - [sym_block] = STATE(2871), - [sym__literal] = STATE(2871), - [sym_string_literal] = STATE(3039), - [sym_raw_string_literal] = STATE(3039), - [sym_boolean_literal] = STATE(3039), - [sym_line_comment] = STATE(449), - [sym_block_comment] = STATE(449), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1611), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_GT] = ACTIONS(1657), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [sym_integer_literal] = ACTIONS(1643), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1643), - }, - [STATE(450)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2611), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(2611), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_type_binding] = STATE(2871), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2255), - [sym_label] = STATE(3770), - [sym_block] = STATE(2871), - [sym__literal] = STATE(2871), - [sym_string_literal] = STATE(3039), - [sym_raw_string_literal] = STATE(3039), - [sym_boolean_literal] = STATE(3039), - [sym_line_comment] = STATE(450), - [sym_block_comment] = STATE(450), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1611), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_GT] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [sym_integer_literal] = ACTIONS(1643), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1643), - }, - [STATE(451)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2611), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(2611), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_type_binding] = STATE(2871), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2255), - [sym_label] = STATE(3770), - [sym_block] = STATE(2871), - [sym__literal] = STATE(2871), - [sym_string_literal] = STATE(3039), - [sym_raw_string_literal] = STATE(3039), - [sym_boolean_literal] = STATE(3039), - [sym_line_comment] = STATE(451), - [sym_block_comment] = STATE(451), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1611), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_GT] = ACTIONS(1661), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [sym_integer_literal] = ACTIONS(1643), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1643), - }, - [STATE(452)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2611), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(2611), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_type_binding] = STATE(2871), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2255), - [sym_label] = STATE(3770), - [sym_block] = STATE(2871), - [sym__literal] = STATE(2871), - [sym_string_literal] = STATE(3039), - [sym_raw_string_literal] = STATE(3039), - [sym_boolean_literal] = STATE(3039), - [sym_line_comment] = STATE(452), - [sym_block_comment] = STATE(452), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1611), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_GT] = ACTIONS(1663), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [sym_integer_literal] = ACTIONS(1643), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1643), - }, - [STATE(453)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2611), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(2611), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_type_binding] = STATE(2871), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2255), - [sym_label] = STATE(3770), - [sym_block] = STATE(2871), - [sym__literal] = STATE(2871), - [sym_string_literal] = STATE(3039), - [sym_raw_string_literal] = STATE(3039), - [sym_boolean_literal] = STATE(3039), - [sym_line_comment] = STATE(453), - [sym_block_comment] = STATE(453), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1611), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_GT] = ACTIONS(1665), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [sym_integer_literal] = ACTIONS(1643), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1643), - }, - [STATE(454)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2611), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(2611), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_type_binding] = STATE(2871), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2255), - [sym_label] = STATE(3770), - [sym_block] = STATE(2871), - [sym__literal] = STATE(2871), - [sym_string_literal] = STATE(3039), - [sym_raw_string_literal] = STATE(3039), - [sym_boolean_literal] = STATE(3039), - [sym_line_comment] = STATE(454), - [sym_block_comment] = STATE(454), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1611), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [sym_integer_literal] = ACTIONS(1643), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1643), - }, - [STATE(455)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2611), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(2611), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_type_binding] = STATE(2871), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2255), - [sym_label] = STATE(3770), - [sym_block] = STATE(2871), - [sym__literal] = STATE(2871), - [sym_string_literal] = STATE(3039), - [sym_raw_string_literal] = STATE(3039), - [sym_boolean_literal] = STATE(3039), - [sym_line_comment] = STATE(455), - [sym_block_comment] = STATE(455), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1611), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_GT] = ACTIONS(1669), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [sym_integer_literal] = ACTIONS(1643), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1643), - }, - [STATE(456)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2445), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(2445), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_type_binding] = STATE(2534), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2255), - [sym_label] = STATE(3770), - [sym_block] = STATE(2534), - [sym__literal] = STATE(2534), - [sym_string_literal] = STATE(3039), - [sym_raw_string_literal] = STATE(3039), - [sym_boolean_literal] = STATE(3039), - [sym_line_comment] = STATE(456), - [sym_block_comment] = STATE(456), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1611), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [sym_integer_literal] = ACTIONS(1643), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1643), - }, - [STATE(457)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2611), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(2611), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_type_binding] = STATE(2871), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2255), - [sym_label] = STATE(3770), - [sym_block] = STATE(2871), - [sym__literal] = STATE(2871), - [sym_string_literal] = STATE(3039), - [sym_raw_string_literal] = STATE(3039), - [sym_boolean_literal] = STATE(3039), - [sym_line_comment] = STATE(457), - [sym_block_comment] = STATE(457), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1611), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [sym_integer_literal] = ACTIONS(1643), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1643), - }, - [STATE(458)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2470), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(2470), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_type_binding] = STATE(2546), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2255), - [sym_label] = STATE(3770), - [sym_block] = STATE(2546), - [sym__literal] = STATE(2546), - [sym_string_literal] = STATE(3039), - [sym_raw_string_literal] = STATE(3039), - [sym_boolean_literal] = STATE(3039), - [sym_line_comment] = STATE(458), - [sym_block_comment] = STATE(458), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1611), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [sym_integer_literal] = ACTIONS(1643), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1643), - }, - [STATE(459)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2411), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(2411), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_type_binding] = STATE(2615), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2255), - [sym_label] = STATE(3770), - [sym_block] = STATE(2615), - [sym__literal] = STATE(2615), - [sym_string_literal] = STATE(3039), - [sym_raw_string_literal] = STATE(3039), - [sym_boolean_literal] = STATE(3039), - [sym_line_comment] = STATE(459), - [sym_block_comment] = STATE(459), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1611), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [sym_integer_literal] = ACTIONS(1643), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1643), - }, - [STATE(460)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2437), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(2437), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_type_binding] = STATE(2511), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2255), - [sym_label] = STATE(3770), - [sym_block] = STATE(2511), - [sym__literal] = STATE(2511), - [sym_string_literal] = STATE(3039), - [sym_raw_string_literal] = STATE(3039), - [sym_boolean_literal] = STATE(3039), - [sym_line_comment] = STATE(460), - [sym_block_comment] = STATE(460), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1611), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [sym_integer_literal] = ACTIONS(1643), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1643), - }, - [STATE(461)] = { - [sym_attribute_item] = STATE(1145), - [sym_inner_attribute_item] = STATE(1145), - [sym_bracketed_type] = STATE(3695), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3416), - [sym_macro_invocation] = STATE(2883), - [sym_scoped_identifier] = STATE(2241), - [sym_scoped_type_identifier] = STATE(3110), - [sym_match_arm] = STATE(1146), - [sym_last_match_arm] = STATE(3680), - [sym_match_pattern] = STATE(3746), - [sym_const_block] = STATE(2883), - [sym__pattern] = STATE(2909), - [sym_generic_pattern] = STATE(2883), - [sym_tuple_pattern] = STATE(2883), - [sym_slice_pattern] = STATE(2883), - [sym_tuple_struct_pattern] = STATE(2883), - [sym_struct_pattern] = STATE(2883), - [sym_remaining_field_pattern] = STATE(2883), - [sym_mut_pattern] = STATE(2883), - [sym_range_pattern] = STATE(2883), - [sym_ref_pattern] = STATE(2883), - [sym_captured_pattern] = STATE(2883), - [sym_reference_pattern] = STATE(2883), - [sym_or_pattern] = STATE(2883), - [sym__literal_pattern] = STATE(2449), - [sym_negative_literal] = STATE(2408), - [sym_string_literal] = STATE(2408), - [sym_raw_string_literal] = STATE(2408), - [sym_boolean_literal] = STATE(2408), - [sym_line_comment] = STATE(461), - [sym_block_comment] = STATE(461), - [aux_sym_match_block_repeat1] = STATE(473), - [aux_sym_match_arm_repeat1] = STATE(684), - [sym_identifier] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_RBRACE] = ACTIONS(1677), - [anon_sym_u8] = ACTIONS(1679), - [anon_sym_i8] = ACTIONS(1679), - [anon_sym_u16] = ACTIONS(1679), - [anon_sym_i16] = ACTIONS(1679), - [anon_sym_u32] = ACTIONS(1679), - [anon_sym_i32] = ACTIONS(1679), - [anon_sym_u64] = ACTIONS(1679), - [anon_sym_i64] = ACTIONS(1679), - [anon_sym_u128] = ACTIONS(1679), - [anon_sym_i128] = ACTIONS(1679), - [anon_sym_isize] = ACTIONS(1679), - [anon_sym_usize] = ACTIONS(1679), - [anon_sym_f32] = ACTIONS(1679), - [anon_sym_f64] = ACTIONS(1679), - [anon_sym_bool] = ACTIONS(1679), - [anon_sym_str] = ACTIONS(1679), - [anon_sym_char] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), - [anon_sym_COLON_COLON] = ACTIONS(1693), - [anon_sym_POUND] = ACTIONS(1695), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_gen] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [sym_mutable_specifier] = ACTIONS(1703), - [sym_integer_literal] = ACTIONS(1705), - [aux_sym_string_literal_token1] = ACTIONS(1707), - [sym_char_literal] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1709), - [anon_sym_false] = ACTIONS(1709), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1711), - [sym_super] = ACTIONS(1711), - [sym_crate] = ACTIONS(1711), - [sym_metavariable] = ACTIONS(1713), - [sym__raw_string_literal_start] = ACTIONS(1715), - [sym_float_literal] = ACTIONS(1705), - }, - [STATE(462)] = { - [sym_attribute_item] = STATE(1145), - [sym_inner_attribute_item] = STATE(1145), - [sym_bracketed_type] = STATE(3695), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3416), - [sym_macro_invocation] = STATE(2883), - [sym_scoped_identifier] = STATE(2241), - [sym_scoped_type_identifier] = STATE(3110), - [sym_match_arm] = STATE(1146), - [sym_last_match_arm] = STATE(3672), - [sym_match_pattern] = STATE(3746), - [sym_const_block] = STATE(2883), - [sym__pattern] = STATE(2909), - [sym_generic_pattern] = STATE(2883), - [sym_tuple_pattern] = STATE(2883), - [sym_slice_pattern] = STATE(2883), - [sym_tuple_struct_pattern] = STATE(2883), - [sym_struct_pattern] = STATE(2883), - [sym_remaining_field_pattern] = STATE(2883), - [sym_mut_pattern] = STATE(2883), - [sym_range_pattern] = STATE(2883), - [sym_ref_pattern] = STATE(2883), - [sym_captured_pattern] = STATE(2883), - [sym_reference_pattern] = STATE(2883), - [sym_or_pattern] = STATE(2883), - [sym__literal_pattern] = STATE(2449), - [sym_negative_literal] = STATE(2408), - [sym_string_literal] = STATE(2408), - [sym_raw_string_literal] = STATE(2408), - [sym_boolean_literal] = STATE(2408), - [sym_line_comment] = STATE(462), - [sym_block_comment] = STATE(462), - [aux_sym_match_block_repeat1] = STATE(469), - [aux_sym_match_arm_repeat1] = STATE(684), - [sym_identifier] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_u8] = ACTIONS(1679), - [anon_sym_i8] = ACTIONS(1679), - [anon_sym_u16] = ACTIONS(1679), - [anon_sym_i16] = ACTIONS(1679), - [anon_sym_u32] = ACTIONS(1679), - [anon_sym_i32] = ACTIONS(1679), - [anon_sym_u64] = ACTIONS(1679), - [anon_sym_i64] = ACTIONS(1679), - [anon_sym_u128] = ACTIONS(1679), - [anon_sym_i128] = ACTIONS(1679), - [anon_sym_isize] = ACTIONS(1679), - [anon_sym_usize] = ACTIONS(1679), - [anon_sym_f32] = ACTIONS(1679), - [anon_sym_f64] = ACTIONS(1679), - [anon_sym_bool] = ACTIONS(1679), - [anon_sym_str] = ACTIONS(1679), - [anon_sym_char] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), - [anon_sym_COLON_COLON] = ACTIONS(1693), - [anon_sym_POUND] = ACTIONS(1695), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_gen] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [sym_mutable_specifier] = ACTIONS(1703), - [sym_integer_literal] = ACTIONS(1705), - [aux_sym_string_literal_token1] = ACTIONS(1707), - [sym_char_literal] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1709), - [anon_sym_false] = ACTIONS(1709), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1711), - [sym_super] = ACTIONS(1711), - [sym_crate] = ACTIONS(1711), - [sym_metavariable] = ACTIONS(1713), - [sym__raw_string_literal_start] = ACTIONS(1715), - [sym_float_literal] = ACTIONS(1705), - }, - [STATE(463)] = { - [sym_else_clause] = STATE(489), - [sym_line_comment] = STATE(463), - [sym_block_comment] = STATE(463), + [ts_builtin_sym_end] = ACTIONS(1405), [sym_identifier] = ACTIONS(1407), - [anon_sym_LPAREN] = ACTIONS(1405), - [anon_sym_LBRACK] = ACTIONS(1405), - [anon_sym_RBRACE] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1407), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_QMARK] = ACTIONS(1405), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_macro_rules_BANG] = ACTIONS(1405), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(1397), + [anon_sym_PLUS] = ACTIONS(1399), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_QMARK] = ACTIONS(1397), [anon_sym_u8] = ACTIONS(1407), [anon_sym_i8] = ACTIONS(1407), [anon_sym_u16] = ACTIONS(1407), @@ -69133,49 +68412,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1407), [anon_sym_str] = ACTIONS(1407), [anon_sym_char] = ACTIONS(1407), - [anon_sym_DASH] = ACTIONS(1407), - [anon_sym_SLASH] = ACTIONS(1407), - [anon_sym_PERCENT] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_PIPE] = ACTIONS(1407), - [anon_sym_AMP_AMP] = ACTIONS(1405), - [anon_sym_PIPE_PIPE] = ACTIONS(1405), - [anon_sym_LT_LT] = ACTIONS(1407), - [anon_sym_GT_GT] = ACTIONS(1407), - [anon_sym_PLUS_EQ] = ACTIONS(1405), - [anon_sym_DASH_EQ] = ACTIONS(1405), - [anon_sym_STAR_EQ] = ACTIONS(1405), - [anon_sym_SLASH_EQ] = ACTIONS(1405), - [anon_sym_PERCENT_EQ] = ACTIONS(1405), - [anon_sym_CARET_EQ] = ACTIONS(1405), - [anon_sym_AMP_EQ] = ACTIONS(1405), - [anon_sym_PIPE_EQ] = ACTIONS(1405), - [anon_sym_LT_LT_EQ] = ACTIONS(1405), - [anon_sym_GT_GT_EQ] = ACTIONS(1405), - [anon_sym_EQ] = ACTIONS(1407), - [anon_sym_EQ_EQ] = ACTIONS(1405), - [anon_sym_BANG_EQ] = ACTIONS(1405), - [anon_sym_GT] = ACTIONS(1407), - [anon_sym_LT] = ACTIONS(1407), - [anon_sym_GT_EQ] = ACTIONS(1405), - [anon_sym_LT_EQ] = ACTIONS(1405), - [anon_sym__] = ACTIONS(1407), - [anon_sym_DOT] = ACTIONS(1407), - [anon_sym_DOT_DOT] = ACTIONS(1407), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1405), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1405), - [anon_sym_COMMA] = ACTIONS(1405), + [anon_sym_DASH] = ACTIONS(1399), + [anon_sym_SLASH] = ACTIONS(1399), + [anon_sym_PERCENT] = ACTIONS(1399), + [anon_sym_CARET] = ACTIONS(1399), + [anon_sym_BANG] = ACTIONS(1407), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_PIPE] = ACTIONS(1399), + [anon_sym_AMP_AMP] = ACTIONS(1397), + [anon_sym_PIPE_PIPE] = ACTIONS(1397), + [anon_sym_LT_LT] = ACTIONS(1399), + [anon_sym_GT_GT] = ACTIONS(1399), + [anon_sym_PLUS_EQ] = ACTIONS(1397), + [anon_sym_DASH_EQ] = ACTIONS(1397), + [anon_sym_STAR_EQ] = ACTIONS(1397), + [anon_sym_SLASH_EQ] = ACTIONS(1397), + [anon_sym_PERCENT_EQ] = ACTIONS(1397), + [anon_sym_CARET_EQ] = ACTIONS(1397), + [anon_sym_AMP_EQ] = ACTIONS(1397), + [anon_sym_PIPE_EQ] = ACTIONS(1397), + [anon_sym_LT_LT_EQ] = ACTIONS(1397), + [anon_sym_GT_GT_EQ] = ACTIONS(1397), + [anon_sym_EQ] = ACTIONS(1399), + [anon_sym_EQ_EQ] = ACTIONS(1397), + [anon_sym_BANG_EQ] = ACTIONS(1397), + [anon_sym_GT] = ACTIONS(1399), + [anon_sym_LT] = ACTIONS(1399), + [anon_sym_GT_EQ] = ACTIONS(1397), + [anon_sym_LT_EQ] = ACTIONS(1397), + [anon_sym_DOT] = ACTIONS(1399), + [anon_sym_DOT_DOT] = ACTIONS(1399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1397), [anon_sym_COLON_COLON] = ACTIONS(1405), [anon_sym_POUND] = ACTIONS(1405), - [anon_sym_as] = ACTIONS(1407), + [anon_sym_SQUOTE] = ACTIONS(1407), + [anon_sym_as] = ACTIONS(1399), + [anon_sym_async] = ACTIONS(1407), + [anon_sym_break] = ACTIONS(1407), [anon_sym_const] = ACTIONS(1407), + [anon_sym_continue] = ACTIONS(1407), [anon_sym_default] = ACTIONS(1407), + [anon_sym_enum] = ACTIONS(1407), + [anon_sym_fn] = ACTIONS(1407), + [anon_sym_for] = ACTIONS(1407), [anon_sym_gen] = ACTIONS(1407), + [anon_sym_if] = ACTIONS(1407), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_let] = ACTIONS(1407), + [anon_sym_loop] = ACTIONS(1407), + [anon_sym_match] = ACTIONS(1407), + [anon_sym_mod] = ACTIONS(1407), + [anon_sym_pub] = ACTIONS(1407), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_static] = ACTIONS(1407), + [anon_sym_struct] = ACTIONS(1407), + [anon_sym_trait] = ACTIONS(1407), + [anon_sym_type] = ACTIONS(1407), [anon_sym_union] = ACTIONS(1407), - [anon_sym_ref] = ACTIONS(1407), - [anon_sym_else] = ACTIONS(1719), - [sym_mutable_specifier] = ACTIONS(1407), + [anon_sym_unsafe] = ACTIONS(1407), + [anon_sym_use] = ACTIONS(1407), + [anon_sym_while] = ACTIONS(1407), + [anon_sym_extern] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1407), + [anon_sym_move] = ACTIONS(1407), + [anon_sym_try] = ACTIONS(1407), [sym_integer_literal] = ACTIONS(1405), [aux_sym_string_literal_token1] = ACTIONS(1405), [sym_char_literal] = ACTIONS(1405), @@ -69190,518 +68491,346 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1405), [sym_float_literal] = ACTIONS(1405), }, - [STATE(464)] = { - [sym_attribute_item] = STATE(1145), - [sym_inner_attribute_item] = STATE(1145), - [sym_bracketed_type] = STATE(3695), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3416), - [sym_macro_invocation] = STATE(2883), - [sym_scoped_identifier] = STATE(2241), - [sym_scoped_type_identifier] = STATE(3110), - [sym_match_arm] = STATE(1146), - [sym_last_match_arm] = STATE(3776), - [sym_match_pattern] = STATE(3746), - [sym_const_block] = STATE(2883), - [sym__pattern] = STATE(2909), - [sym_generic_pattern] = STATE(2883), - [sym_tuple_pattern] = STATE(2883), - [sym_slice_pattern] = STATE(2883), - [sym_tuple_struct_pattern] = STATE(2883), - [sym_struct_pattern] = STATE(2883), - [sym_remaining_field_pattern] = STATE(2883), - [sym_mut_pattern] = STATE(2883), - [sym_range_pattern] = STATE(2883), - [sym_ref_pattern] = STATE(2883), - [sym_captured_pattern] = STATE(2883), - [sym_reference_pattern] = STATE(2883), - [sym_or_pattern] = STATE(2883), - [sym__literal_pattern] = STATE(2449), - [sym_negative_literal] = STATE(2408), - [sym_string_literal] = STATE(2408), - [sym_raw_string_literal] = STATE(2408), - [sym_boolean_literal] = STATE(2408), - [sym_line_comment] = STATE(464), - [sym_block_comment] = STATE(464), - [aux_sym_match_block_repeat1] = STATE(467), - [aux_sym_match_arm_repeat1] = STATE(684), - [sym_identifier] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_u8] = ACTIONS(1679), - [anon_sym_i8] = ACTIONS(1679), - [anon_sym_u16] = ACTIONS(1679), - [anon_sym_i16] = ACTIONS(1679), - [anon_sym_u32] = ACTIONS(1679), - [anon_sym_i32] = ACTIONS(1679), - [anon_sym_u64] = ACTIONS(1679), - [anon_sym_i64] = ACTIONS(1679), - [anon_sym_u128] = ACTIONS(1679), - [anon_sym_i128] = ACTIONS(1679), - [anon_sym_isize] = ACTIONS(1679), - [anon_sym_usize] = ACTIONS(1679), - [anon_sym_f32] = ACTIONS(1679), - [anon_sym_f64] = ACTIONS(1679), - [anon_sym_bool] = ACTIONS(1679), - [anon_sym_str] = ACTIONS(1679), - [anon_sym_char] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), - [anon_sym_COLON_COLON] = ACTIONS(1693), - [anon_sym_POUND] = ACTIONS(1695), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_gen] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [sym_mutable_specifier] = ACTIONS(1703), - [sym_integer_literal] = ACTIONS(1705), - [aux_sym_string_literal_token1] = ACTIONS(1707), - [sym_char_literal] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1709), - [anon_sym_false] = ACTIONS(1709), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1711), - [sym_super] = ACTIONS(1711), - [sym_crate] = ACTIONS(1711), - [sym_metavariable] = ACTIONS(1713), - [sym__raw_string_literal_start] = ACTIONS(1715), - [sym_float_literal] = ACTIONS(1705), - }, - [STATE(465)] = { - [sym_attribute_item] = STATE(1145), - [sym_inner_attribute_item] = STATE(1145), - [sym_bracketed_type] = STATE(3695), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3416), - [sym_macro_invocation] = STATE(2883), - [sym_scoped_identifier] = STATE(2241), - [sym_scoped_type_identifier] = STATE(3110), - [sym_match_arm] = STATE(1146), - [sym_last_match_arm] = STATE(3668), - [sym_match_pattern] = STATE(3746), - [sym_const_block] = STATE(2883), - [sym__pattern] = STATE(2909), - [sym_generic_pattern] = STATE(2883), - [sym_tuple_pattern] = STATE(2883), - [sym_slice_pattern] = STATE(2883), - [sym_tuple_struct_pattern] = STATE(2883), - [sym_struct_pattern] = STATE(2883), - [sym_remaining_field_pattern] = STATE(2883), - [sym_mut_pattern] = STATE(2883), - [sym_range_pattern] = STATE(2883), - [sym_ref_pattern] = STATE(2883), - [sym_captured_pattern] = STATE(2883), - [sym_reference_pattern] = STATE(2883), - [sym_or_pattern] = STATE(2883), - [sym__literal_pattern] = STATE(2449), - [sym_negative_literal] = STATE(2408), - [sym_string_literal] = STATE(2408), - [sym_raw_string_literal] = STATE(2408), - [sym_boolean_literal] = STATE(2408), - [sym_line_comment] = STATE(465), - [sym_block_comment] = STATE(465), - [aux_sym_match_block_repeat1] = STATE(466), - [aux_sym_match_arm_repeat1] = STATE(684), - [sym_identifier] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_u8] = ACTIONS(1679), - [anon_sym_i8] = ACTIONS(1679), - [anon_sym_u16] = ACTIONS(1679), - [anon_sym_i16] = ACTIONS(1679), - [anon_sym_u32] = ACTIONS(1679), - [anon_sym_i32] = ACTIONS(1679), - [anon_sym_u64] = ACTIONS(1679), - [anon_sym_i64] = ACTIONS(1679), - [anon_sym_u128] = ACTIONS(1679), - [anon_sym_i128] = ACTIONS(1679), - [anon_sym_isize] = ACTIONS(1679), - [anon_sym_usize] = ACTIONS(1679), - [anon_sym_f32] = ACTIONS(1679), - [anon_sym_f64] = ACTIONS(1679), - [anon_sym_bool] = ACTIONS(1679), - [anon_sym_str] = ACTIONS(1679), - [anon_sym_char] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), - [anon_sym_COLON_COLON] = ACTIONS(1693), - [anon_sym_POUND] = ACTIONS(1695), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_gen] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [sym_mutable_specifier] = ACTIONS(1703), - [sym_integer_literal] = ACTIONS(1705), - [aux_sym_string_literal_token1] = ACTIONS(1707), - [sym_char_literal] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1709), - [anon_sym_false] = ACTIONS(1709), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1711), - [sym_super] = ACTIONS(1711), - [sym_crate] = ACTIONS(1711), - [sym_metavariable] = ACTIONS(1713), - [sym__raw_string_literal_start] = ACTIONS(1715), - [sym_float_literal] = ACTIONS(1705), - }, - [STATE(466)] = { - [sym_attribute_item] = STATE(1145), - [sym_inner_attribute_item] = STATE(1145), - [sym_bracketed_type] = STATE(3695), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3416), - [sym_macro_invocation] = STATE(2883), - [sym_scoped_identifier] = STATE(2241), - [sym_scoped_type_identifier] = STATE(3110), - [sym_match_arm] = STATE(1146), - [sym_last_match_arm] = STATE(3612), - [sym_match_pattern] = STATE(3746), - [sym_const_block] = STATE(2883), - [sym__pattern] = STATE(2909), - [sym_generic_pattern] = STATE(2883), - [sym_tuple_pattern] = STATE(2883), - [sym_slice_pattern] = STATE(2883), - [sym_tuple_struct_pattern] = STATE(2883), - [sym_struct_pattern] = STATE(2883), - [sym_remaining_field_pattern] = STATE(2883), - [sym_mut_pattern] = STATE(2883), - [sym_range_pattern] = STATE(2883), - [sym_ref_pattern] = STATE(2883), - [sym_captured_pattern] = STATE(2883), - [sym_reference_pattern] = STATE(2883), - [sym_or_pattern] = STATE(2883), - [sym__literal_pattern] = STATE(2449), - [sym_negative_literal] = STATE(2408), - [sym_string_literal] = STATE(2408), - [sym_raw_string_literal] = STATE(2408), - [sym_boolean_literal] = STATE(2408), - [sym_line_comment] = STATE(466), - [sym_block_comment] = STATE(466), - [aux_sym_match_block_repeat1] = STATE(497), - [aux_sym_match_arm_repeat1] = STATE(684), - [sym_identifier] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_u8] = ACTIONS(1679), - [anon_sym_i8] = ACTIONS(1679), - [anon_sym_u16] = ACTIONS(1679), - [anon_sym_i16] = ACTIONS(1679), - [anon_sym_u32] = ACTIONS(1679), - [anon_sym_i32] = ACTIONS(1679), - [anon_sym_u64] = ACTIONS(1679), - [anon_sym_i64] = ACTIONS(1679), - [anon_sym_u128] = ACTIONS(1679), - [anon_sym_i128] = ACTIONS(1679), - [anon_sym_isize] = ACTIONS(1679), - [anon_sym_usize] = ACTIONS(1679), - [anon_sym_f32] = ACTIONS(1679), - [anon_sym_f64] = ACTIONS(1679), - [anon_sym_bool] = ACTIONS(1679), - [anon_sym_str] = ACTIONS(1679), - [anon_sym_char] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), - [anon_sym_COLON_COLON] = ACTIONS(1693), - [anon_sym_POUND] = ACTIONS(1695), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_gen] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [sym_mutable_specifier] = ACTIONS(1703), - [sym_integer_literal] = ACTIONS(1705), - [aux_sym_string_literal_token1] = ACTIONS(1707), - [sym_char_literal] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1709), - [anon_sym_false] = ACTIONS(1709), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1711), - [sym_super] = ACTIONS(1711), - [sym_crate] = ACTIONS(1711), - [sym_metavariable] = ACTIONS(1713), - [sym__raw_string_literal_start] = ACTIONS(1715), - [sym_float_literal] = ACTIONS(1705), + [STATE(434)] = { + [sym_line_comment] = STATE(434), + [sym_block_comment] = STATE(434), + [ts_builtin_sym_end] = ACTIONS(1429), + [sym_identifier] = ACTIONS(1431), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_macro_rules_BANG] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1429), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(1429), + [anon_sym_RBRACE] = ACTIONS(1429), + [anon_sym_PLUS] = ACTIONS(1431), + [anon_sym_STAR] = ACTIONS(1431), + [anon_sym_QMARK] = ACTIONS(1429), + [anon_sym_u8] = ACTIONS(1431), + [anon_sym_i8] = ACTIONS(1431), + [anon_sym_u16] = ACTIONS(1431), + [anon_sym_i16] = ACTIONS(1431), + [anon_sym_u32] = ACTIONS(1431), + [anon_sym_i32] = ACTIONS(1431), + [anon_sym_u64] = ACTIONS(1431), + [anon_sym_i64] = ACTIONS(1431), + [anon_sym_u128] = ACTIONS(1431), + [anon_sym_i128] = ACTIONS(1431), + [anon_sym_isize] = ACTIONS(1431), + [anon_sym_usize] = ACTIONS(1431), + [anon_sym_f32] = ACTIONS(1431), + [anon_sym_f64] = ACTIONS(1431), + [anon_sym_bool] = ACTIONS(1431), + [anon_sym_str] = ACTIONS(1431), + [anon_sym_char] = ACTIONS(1431), + [anon_sym_DASH] = ACTIONS(1431), + [anon_sym_SLASH] = ACTIONS(1431), + [anon_sym_PERCENT] = ACTIONS(1431), + [anon_sym_CARET] = ACTIONS(1431), + [anon_sym_BANG] = ACTIONS(1431), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(1431), + [anon_sym_AMP_AMP] = ACTIONS(1429), + [anon_sym_PIPE_PIPE] = ACTIONS(1429), + [anon_sym_LT_LT] = ACTIONS(1431), + [anon_sym_GT_GT] = ACTIONS(1431), + [anon_sym_PLUS_EQ] = ACTIONS(1429), + [anon_sym_DASH_EQ] = ACTIONS(1429), + [anon_sym_STAR_EQ] = ACTIONS(1429), + [anon_sym_SLASH_EQ] = ACTIONS(1429), + [anon_sym_PERCENT_EQ] = ACTIONS(1429), + [anon_sym_CARET_EQ] = ACTIONS(1429), + [anon_sym_AMP_EQ] = ACTIONS(1429), + [anon_sym_PIPE_EQ] = ACTIONS(1429), + [anon_sym_LT_LT_EQ] = ACTIONS(1429), + [anon_sym_GT_GT_EQ] = ACTIONS(1429), + [anon_sym_EQ] = ACTIONS(1431), + [anon_sym_EQ_EQ] = ACTIONS(1429), + [anon_sym_BANG_EQ] = ACTIONS(1429), + [anon_sym_GT] = ACTIONS(1431), + [anon_sym_LT] = ACTIONS(1431), + [anon_sym_GT_EQ] = ACTIONS(1429), + [anon_sym_LT_EQ] = ACTIONS(1429), + [anon_sym_DOT] = ACTIONS(1431), + [anon_sym_DOT_DOT] = ACTIONS(1431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1429), + [anon_sym_COLON_COLON] = ACTIONS(1429), + [anon_sym_POUND] = ACTIONS(1429), + [anon_sym_SQUOTE] = ACTIONS(1431), + [anon_sym_as] = ACTIONS(1431), + [anon_sym_async] = ACTIONS(1431), + [anon_sym_break] = ACTIONS(1431), + [anon_sym_const] = ACTIONS(1431), + [anon_sym_continue] = ACTIONS(1431), + [anon_sym_default] = ACTIONS(1431), + [anon_sym_enum] = ACTIONS(1431), + [anon_sym_fn] = ACTIONS(1431), + [anon_sym_for] = ACTIONS(1431), + [anon_sym_gen] = ACTIONS(1431), + [anon_sym_if] = ACTIONS(1431), + [anon_sym_impl] = ACTIONS(1431), + [anon_sym_let] = ACTIONS(1431), + [anon_sym_loop] = ACTIONS(1431), + [anon_sym_match] = ACTIONS(1431), + [anon_sym_mod] = ACTIONS(1431), + [anon_sym_pub] = ACTIONS(1431), + [anon_sym_return] = ACTIONS(1431), + [anon_sym_static] = ACTIONS(1431), + [anon_sym_struct] = ACTIONS(1431), + [anon_sym_trait] = ACTIONS(1431), + [anon_sym_type] = ACTIONS(1431), + [anon_sym_union] = ACTIONS(1431), + [anon_sym_unsafe] = ACTIONS(1431), + [anon_sym_use] = ACTIONS(1431), + [anon_sym_while] = ACTIONS(1431), + [anon_sym_extern] = ACTIONS(1431), + [anon_sym_yield] = ACTIONS(1431), + [anon_sym_move] = ACTIONS(1431), + [anon_sym_try] = ACTIONS(1431), + [sym_integer_literal] = ACTIONS(1429), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1429), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1431), + [sym_super] = ACTIONS(1431), + [sym_crate] = ACTIONS(1431), + [sym_metavariable] = ACTIONS(1429), + [sym__raw_string_literal_start] = ACTIONS(1429), + [sym_float_literal] = ACTIONS(1429), }, - [STATE(467)] = { - [sym_attribute_item] = STATE(1145), - [sym_inner_attribute_item] = STATE(1145), - [sym_bracketed_type] = STATE(3695), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3416), - [sym_macro_invocation] = STATE(2883), - [sym_scoped_identifier] = STATE(2241), - [sym_scoped_type_identifier] = STATE(3110), - [sym_match_arm] = STATE(1146), - [sym_last_match_arm] = STATE(3498), - [sym_match_pattern] = STATE(3746), - [sym_const_block] = STATE(2883), - [sym__pattern] = STATE(2909), - [sym_generic_pattern] = STATE(2883), - [sym_tuple_pattern] = STATE(2883), - [sym_slice_pattern] = STATE(2883), - [sym_tuple_struct_pattern] = STATE(2883), - [sym_struct_pattern] = STATE(2883), - [sym_remaining_field_pattern] = STATE(2883), - [sym_mut_pattern] = STATE(2883), - [sym_range_pattern] = STATE(2883), - [sym_ref_pattern] = STATE(2883), - [sym_captured_pattern] = STATE(2883), - [sym_reference_pattern] = STATE(2883), - [sym_or_pattern] = STATE(2883), - [sym__literal_pattern] = STATE(2449), - [sym_negative_literal] = STATE(2408), - [sym_string_literal] = STATE(2408), - [sym_raw_string_literal] = STATE(2408), - [sym_boolean_literal] = STATE(2408), - [sym_line_comment] = STATE(467), - [sym_block_comment] = STATE(467), - [aux_sym_match_block_repeat1] = STATE(497), - [aux_sym_match_arm_repeat1] = STATE(684), - [sym_identifier] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_u8] = ACTIONS(1679), - [anon_sym_i8] = ACTIONS(1679), - [anon_sym_u16] = ACTIONS(1679), - [anon_sym_i16] = ACTIONS(1679), - [anon_sym_u32] = ACTIONS(1679), - [anon_sym_i32] = ACTIONS(1679), - [anon_sym_u64] = ACTIONS(1679), - [anon_sym_i64] = ACTIONS(1679), - [anon_sym_u128] = ACTIONS(1679), - [anon_sym_i128] = ACTIONS(1679), - [anon_sym_isize] = ACTIONS(1679), - [anon_sym_usize] = ACTIONS(1679), - [anon_sym_f32] = ACTIONS(1679), - [anon_sym_f64] = ACTIONS(1679), - [anon_sym_bool] = ACTIONS(1679), - [anon_sym_str] = ACTIONS(1679), - [anon_sym_char] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), - [anon_sym_COLON_COLON] = ACTIONS(1693), - [anon_sym_POUND] = ACTIONS(1695), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_gen] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [sym_mutable_specifier] = ACTIONS(1703), - [sym_integer_literal] = ACTIONS(1705), - [aux_sym_string_literal_token1] = ACTIONS(1707), - [sym_char_literal] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1709), - [anon_sym_false] = ACTIONS(1709), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1711), - [sym_super] = ACTIONS(1711), - [sym_crate] = ACTIONS(1711), - [sym_metavariable] = ACTIONS(1713), - [sym__raw_string_literal_start] = ACTIONS(1715), - [sym_float_literal] = ACTIONS(1705), + [STATE(435)] = { + [sym_line_comment] = STATE(435), + [sym_block_comment] = STATE(435), + [ts_builtin_sym_end] = ACTIONS(1433), + [sym_identifier] = ACTIONS(1435), + [anon_sym_SEMI] = ACTIONS(1433), + [anon_sym_macro_rules_BANG] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_LBRACK] = ACTIONS(1433), + [anon_sym_LBRACE] = ACTIONS(1433), + [anon_sym_RBRACE] = ACTIONS(1433), + [anon_sym_PLUS] = ACTIONS(1435), + [anon_sym_STAR] = ACTIONS(1435), + [anon_sym_QMARK] = ACTIONS(1433), + [anon_sym_u8] = ACTIONS(1435), + [anon_sym_i8] = ACTIONS(1435), + [anon_sym_u16] = ACTIONS(1435), + [anon_sym_i16] = ACTIONS(1435), + [anon_sym_u32] = ACTIONS(1435), + [anon_sym_i32] = ACTIONS(1435), + [anon_sym_u64] = ACTIONS(1435), + [anon_sym_i64] = ACTIONS(1435), + [anon_sym_u128] = ACTIONS(1435), + [anon_sym_i128] = ACTIONS(1435), + [anon_sym_isize] = ACTIONS(1435), + [anon_sym_usize] = ACTIONS(1435), + [anon_sym_f32] = ACTIONS(1435), + [anon_sym_f64] = ACTIONS(1435), + [anon_sym_bool] = ACTIONS(1435), + [anon_sym_str] = ACTIONS(1435), + [anon_sym_char] = ACTIONS(1435), + [anon_sym_DASH] = ACTIONS(1435), + [anon_sym_SLASH] = ACTIONS(1435), + [anon_sym_PERCENT] = ACTIONS(1435), + [anon_sym_CARET] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE] = ACTIONS(1435), + [anon_sym_AMP_AMP] = ACTIONS(1433), + [anon_sym_PIPE_PIPE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(1435), + [anon_sym_GT_GT] = ACTIONS(1435), + [anon_sym_PLUS_EQ] = ACTIONS(1433), + [anon_sym_DASH_EQ] = ACTIONS(1433), + [anon_sym_STAR_EQ] = ACTIONS(1433), + [anon_sym_SLASH_EQ] = ACTIONS(1433), + [anon_sym_PERCENT_EQ] = ACTIONS(1433), + [anon_sym_CARET_EQ] = ACTIONS(1433), + [anon_sym_AMP_EQ] = ACTIONS(1433), + [anon_sym_PIPE_EQ] = ACTIONS(1433), + [anon_sym_LT_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_GT_EQ] = ACTIONS(1433), + [anon_sym_EQ] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1433), + [anon_sym_BANG_EQ] = ACTIONS(1433), + [anon_sym_GT] = ACTIONS(1435), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1433), + [anon_sym_LT_EQ] = ACTIONS(1433), + [anon_sym_DOT] = ACTIONS(1435), + [anon_sym_DOT_DOT] = ACTIONS(1435), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1433), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1433), + [anon_sym_COLON_COLON] = ACTIONS(1433), + [anon_sym_POUND] = ACTIONS(1433), + [anon_sym_SQUOTE] = ACTIONS(1435), + [anon_sym_as] = ACTIONS(1435), + [anon_sym_async] = ACTIONS(1435), + [anon_sym_break] = ACTIONS(1435), + [anon_sym_const] = ACTIONS(1435), + [anon_sym_continue] = ACTIONS(1435), + [anon_sym_default] = ACTIONS(1435), + [anon_sym_enum] = ACTIONS(1435), + [anon_sym_fn] = ACTIONS(1435), + [anon_sym_for] = ACTIONS(1435), + [anon_sym_gen] = ACTIONS(1435), + [anon_sym_if] = ACTIONS(1435), + [anon_sym_impl] = ACTIONS(1435), + [anon_sym_let] = ACTIONS(1435), + [anon_sym_loop] = ACTIONS(1435), + [anon_sym_match] = ACTIONS(1435), + [anon_sym_mod] = ACTIONS(1435), + [anon_sym_pub] = ACTIONS(1435), + [anon_sym_return] = ACTIONS(1435), + [anon_sym_static] = ACTIONS(1435), + [anon_sym_struct] = ACTIONS(1435), + [anon_sym_trait] = ACTIONS(1435), + [anon_sym_type] = ACTIONS(1435), + [anon_sym_union] = ACTIONS(1435), + [anon_sym_unsafe] = ACTIONS(1435), + [anon_sym_use] = ACTIONS(1435), + [anon_sym_while] = ACTIONS(1435), + [anon_sym_extern] = ACTIONS(1435), + [anon_sym_yield] = ACTIONS(1435), + [anon_sym_move] = ACTIONS(1435), + [anon_sym_try] = ACTIONS(1435), + [sym_integer_literal] = ACTIONS(1433), + [aux_sym_string_literal_token1] = ACTIONS(1433), + [sym_char_literal] = ACTIONS(1433), + [anon_sym_true] = ACTIONS(1435), + [anon_sym_false] = ACTIONS(1435), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1435), + [sym_super] = ACTIONS(1435), + [sym_crate] = ACTIONS(1435), + [sym_metavariable] = ACTIONS(1433), + [sym__raw_string_literal_start] = ACTIONS(1433), + [sym_float_literal] = ACTIONS(1433), }, - [STATE(468)] = { - [sym_line_comment] = STATE(468), - [sym_block_comment] = STATE(468), - [sym_identifier] = ACTIONS(1451), - [anon_sym_LPAREN] = ACTIONS(1449), - [anon_sym_LBRACK] = ACTIONS(1449), - [anon_sym_RBRACE] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_STAR] = ACTIONS(1451), - [anon_sym_QMARK] = ACTIONS(1449), - [anon_sym_u8] = ACTIONS(1451), - [anon_sym_i8] = ACTIONS(1451), - [anon_sym_u16] = ACTIONS(1451), - [anon_sym_i16] = ACTIONS(1451), - [anon_sym_u32] = ACTIONS(1451), - [anon_sym_i32] = ACTIONS(1451), - [anon_sym_u64] = ACTIONS(1451), - [anon_sym_i64] = ACTIONS(1451), - [anon_sym_u128] = ACTIONS(1451), - [anon_sym_i128] = ACTIONS(1451), - [anon_sym_isize] = ACTIONS(1451), - [anon_sym_usize] = ACTIONS(1451), - [anon_sym_f32] = ACTIONS(1451), - [anon_sym_f64] = ACTIONS(1451), - [anon_sym_bool] = ACTIONS(1451), - [anon_sym_str] = ACTIONS(1451), - [anon_sym_char] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_SLASH] = ACTIONS(1451), - [anon_sym_PERCENT] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1451), - [anon_sym_AMP] = ACTIONS(1451), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1449), - [anon_sym_LT_LT] = ACTIONS(1451), - [anon_sym_GT_GT] = ACTIONS(1451), - [anon_sym_PLUS_EQ] = ACTIONS(1449), - [anon_sym_DASH_EQ] = ACTIONS(1449), - [anon_sym_STAR_EQ] = ACTIONS(1449), - [anon_sym_SLASH_EQ] = ACTIONS(1449), - [anon_sym_PERCENT_EQ] = ACTIONS(1449), - [anon_sym_CARET_EQ] = ACTIONS(1449), - [anon_sym_AMP_EQ] = ACTIONS(1449), - [anon_sym_PIPE_EQ] = ACTIONS(1449), - [anon_sym_LT_LT_EQ] = ACTIONS(1449), - [anon_sym_GT_GT_EQ] = ACTIONS(1449), - [anon_sym_EQ] = ACTIONS(1451), - [anon_sym_EQ_EQ] = ACTIONS(1449), - [anon_sym_BANG_EQ] = ACTIONS(1449), - [anon_sym_GT] = ACTIONS(1451), - [anon_sym_LT] = ACTIONS(1451), - [anon_sym_GT_EQ] = ACTIONS(1449), - [anon_sym_LT_EQ] = ACTIONS(1449), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1451), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1449), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1449), - [anon_sym_COMMA] = ACTIONS(1449), - [anon_sym_COLON_COLON] = ACTIONS(1449), - [anon_sym_POUND] = ACTIONS(1449), - [anon_sym_as] = ACTIONS(1451), - [anon_sym_const] = ACTIONS(1451), - [anon_sym_default] = ACTIONS(1451), - [anon_sym_gen] = ACTIONS(1451), - [anon_sym_union] = ACTIONS(1451), - [anon_sym_ref] = ACTIONS(1451), - [anon_sym_else] = ACTIONS(1451), - [sym_mutable_specifier] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [aux_sym_string_literal_token1] = ACTIONS(1449), - [sym_char_literal] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), + [STATE(436)] = { + [sym_line_comment] = STATE(436), + [sym_block_comment] = STATE(436), + [ts_builtin_sym_end] = ACTIONS(1437), + [sym_identifier] = ACTIONS(1439), + [anon_sym_SEMI] = ACTIONS(1437), + [anon_sym_macro_rules_BANG] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_RBRACE] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1439), + [anon_sym_STAR] = ACTIONS(1439), + [anon_sym_QMARK] = ACTIONS(1437), + [anon_sym_u8] = ACTIONS(1439), + [anon_sym_i8] = ACTIONS(1439), + [anon_sym_u16] = ACTIONS(1439), + [anon_sym_i16] = ACTIONS(1439), + [anon_sym_u32] = ACTIONS(1439), + [anon_sym_i32] = ACTIONS(1439), + [anon_sym_u64] = ACTIONS(1439), + [anon_sym_i64] = ACTIONS(1439), + [anon_sym_u128] = ACTIONS(1439), + [anon_sym_i128] = ACTIONS(1439), + [anon_sym_isize] = ACTIONS(1439), + [anon_sym_usize] = ACTIONS(1439), + [anon_sym_f32] = ACTIONS(1439), + [anon_sym_f64] = ACTIONS(1439), + [anon_sym_bool] = ACTIONS(1439), + [anon_sym_str] = ACTIONS(1439), + [anon_sym_char] = ACTIONS(1439), + [anon_sym_DASH] = ACTIONS(1439), + [anon_sym_SLASH] = ACTIONS(1439), + [anon_sym_PERCENT] = ACTIONS(1439), + [anon_sym_CARET] = ACTIONS(1439), + [anon_sym_BANG] = ACTIONS(1439), + [anon_sym_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1439), + [anon_sym_AMP_AMP] = ACTIONS(1437), + [anon_sym_PIPE_PIPE] = ACTIONS(1437), + [anon_sym_LT_LT] = ACTIONS(1439), + [anon_sym_GT_GT] = ACTIONS(1439), + [anon_sym_PLUS_EQ] = ACTIONS(1437), + [anon_sym_DASH_EQ] = ACTIONS(1437), + [anon_sym_STAR_EQ] = ACTIONS(1437), + [anon_sym_SLASH_EQ] = ACTIONS(1437), + [anon_sym_PERCENT_EQ] = ACTIONS(1437), + [anon_sym_CARET_EQ] = ACTIONS(1437), + [anon_sym_AMP_EQ] = ACTIONS(1437), + [anon_sym_PIPE_EQ] = ACTIONS(1437), + [anon_sym_LT_LT_EQ] = ACTIONS(1437), + [anon_sym_GT_GT_EQ] = ACTIONS(1437), + [anon_sym_EQ] = ACTIONS(1439), + [anon_sym_EQ_EQ] = ACTIONS(1437), + [anon_sym_BANG_EQ] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1439), + [anon_sym_LT] = ACTIONS(1439), + [anon_sym_GT_EQ] = ACTIONS(1437), + [anon_sym_LT_EQ] = ACTIONS(1437), + [anon_sym_DOT] = ACTIONS(1439), + [anon_sym_DOT_DOT] = ACTIONS(1439), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1437), + [anon_sym_COLON_COLON] = ACTIONS(1437), + [anon_sym_POUND] = ACTIONS(1437), + [anon_sym_SQUOTE] = ACTIONS(1439), + [anon_sym_as] = ACTIONS(1439), + [anon_sym_async] = ACTIONS(1439), + [anon_sym_break] = ACTIONS(1439), + [anon_sym_const] = ACTIONS(1439), + [anon_sym_continue] = ACTIONS(1439), + [anon_sym_default] = ACTIONS(1439), + [anon_sym_enum] = ACTIONS(1439), + [anon_sym_fn] = ACTIONS(1439), + [anon_sym_for] = ACTIONS(1439), + [anon_sym_gen] = ACTIONS(1439), + [anon_sym_if] = ACTIONS(1439), + [anon_sym_impl] = ACTIONS(1439), + [anon_sym_let] = ACTIONS(1439), + [anon_sym_loop] = ACTIONS(1439), + [anon_sym_match] = ACTIONS(1439), + [anon_sym_mod] = ACTIONS(1439), + [anon_sym_pub] = ACTIONS(1439), + [anon_sym_return] = ACTIONS(1439), + [anon_sym_static] = ACTIONS(1439), + [anon_sym_struct] = ACTIONS(1439), + [anon_sym_trait] = ACTIONS(1439), + [anon_sym_type] = ACTIONS(1439), + [anon_sym_union] = ACTIONS(1439), + [anon_sym_unsafe] = ACTIONS(1439), + [anon_sym_use] = ACTIONS(1439), + [anon_sym_while] = ACTIONS(1439), + [anon_sym_extern] = ACTIONS(1439), + [anon_sym_yield] = ACTIONS(1439), + [anon_sym_move] = ACTIONS(1439), + [anon_sym_try] = ACTIONS(1439), + [sym_integer_literal] = ACTIONS(1437), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1451), - [sym_super] = ACTIONS(1451), - [sym_crate] = ACTIONS(1451), - [sym_metavariable] = ACTIONS(1449), - [sym__raw_string_literal_start] = ACTIONS(1449), - [sym_float_literal] = ACTIONS(1449), - }, - [STATE(469)] = { - [sym_attribute_item] = STATE(1145), - [sym_inner_attribute_item] = STATE(1145), - [sym_bracketed_type] = STATE(3695), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3416), - [sym_macro_invocation] = STATE(2883), - [sym_scoped_identifier] = STATE(2241), - [sym_scoped_type_identifier] = STATE(3110), - [sym_match_arm] = STATE(1146), - [sym_last_match_arm] = STATE(3655), - [sym_match_pattern] = STATE(3746), - [sym_const_block] = STATE(2883), - [sym__pattern] = STATE(2909), - [sym_generic_pattern] = STATE(2883), - [sym_tuple_pattern] = STATE(2883), - [sym_slice_pattern] = STATE(2883), - [sym_tuple_struct_pattern] = STATE(2883), - [sym_struct_pattern] = STATE(2883), - [sym_remaining_field_pattern] = STATE(2883), - [sym_mut_pattern] = STATE(2883), - [sym_range_pattern] = STATE(2883), - [sym_ref_pattern] = STATE(2883), - [sym_captured_pattern] = STATE(2883), - [sym_reference_pattern] = STATE(2883), - [sym_or_pattern] = STATE(2883), - [sym__literal_pattern] = STATE(2449), - [sym_negative_literal] = STATE(2408), - [sym_string_literal] = STATE(2408), - [sym_raw_string_literal] = STATE(2408), - [sym_boolean_literal] = STATE(2408), - [sym_line_comment] = STATE(469), - [sym_block_comment] = STATE(469), - [aux_sym_match_block_repeat1] = STATE(497), - [aux_sym_match_arm_repeat1] = STATE(684), - [sym_identifier] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_u8] = ACTIONS(1679), - [anon_sym_i8] = ACTIONS(1679), - [anon_sym_u16] = ACTIONS(1679), - [anon_sym_i16] = ACTIONS(1679), - [anon_sym_u32] = ACTIONS(1679), - [anon_sym_i32] = ACTIONS(1679), - [anon_sym_u64] = ACTIONS(1679), - [anon_sym_i64] = ACTIONS(1679), - [anon_sym_u128] = ACTIONS(1679), - [anon_sym_i128] = ACTIONS(1679), - [anon_sym_isize] = ACTIONS(1679), - [anon_sym_usize] = ACTIONS(1679), - [anon_sym_f32] = ACTIONS(1679), - [anon_sym_f64] = ACTIONS(1679), - [anon_sym_bool] = ACTIONS(1679), - [anon_sym_str] = ACTIONS(1679), - [anon_sym_char] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), - [anon_sym_COLON_COLON] = ACTIONS(1693), - [anon_sym_POUND] = ACTIONS(1695), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_gen] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [sym_mutable_specifier] = ACTIONS(1703), - [sym_integer_literal] = ACTIONS(1705), - [aux_sym_string_literal_token1] = ACTIONS(1707), - [sym_char_literal] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1709), - [anon_sym_false] = ACTIONS(1709), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1711), - [sym_super] = ACTIONS(1711), - [sym_crate] = ACTIONS(1711), - [sym_metavariable] = ACTIONS(1713), - [sym__raw_string_literal_start] = ACTIONS(1715), - [sym_float_literal] = ACTIONS(1705), + [sym_self] = ACTIONS(1439), + [sym_super] = ACTIONS(1439), + [sym_crate] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1437), + [sym__raw_string_literal_start] = ACTIONS(1437), + [sym_float_literal] = ACTIONS(1437), }, - [STATE(470)] = { - [sym_line_comment] = STATE(470), - [sym_block_comment] = STATE(470), + [STATE(437)] = { + [sym_line_comment] = STATE(437), + [sym_block_comment] = STATE(437), + [ts_builtin_sym_end] = ACTIONS(1441), [sym_identifier] = ACTIONS(1443), + [anon_sym_SEMI] = ACTIONS(1441), + [anon_sym_macro_rules_BANG] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1441), [anon_sym_LBRACK] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1441), [anon_sym_RBRACE] = ACTIONS(1441), [anon_sym_PLUS] = ACTIONS(1443), [anon_sym_STAR] = ACTIONS(1443), @@ -69727,6 +68856,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(1443), [anon_sym_PERCENT] = ACTIONS(1443), [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), [anon_sym_AMP] = ACTIONS(1443), [anon_sym_PIPE] = ACTIONS(1443), [anon_sym_AMP_AMP] = ACTIONS(1441), @@ -69750,22 +68880,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1443), [anon_sym_GT_EQ] = ACTIONS(1441), [anon_sym_LT_EQ] = ACTIONS(1441), - [anon_sym__] = ACTIONS(1443), [anon_sym_DOT] = ACTIONS(1443), [anon_sym_DOT_DOT] = ACTIONS(1443), [anon_sym_DOT_DOT_DOT] = ACTIONS(1441), [anon_sym_DOT_DOT_EQ] = ACTIONS(1441), - [anon_sym_COMMA] = ACTIONS(1441), [anon_sym_COLON_COLON] = ACTIONS(1441), [anon_sym_POUND] = ACTIONS(1441), + [anon_sym_SQUOTE] = ACTIONS(1443), [anon_sym_as] = ACTIONS(1443), + [anon_sym_async] = ACTIONS(1443), + [anon_sym_break] = ACTIONS(1443), [anon_sym_const] = ACTIONS(1443), + [anon_sym_continue] = ACTIONS(1443), [anon_sym_default] = ACTIONS(1443), + [anon_sym_enum] = ACTIONS(1443), + [anon_sym_fn] = ACTIONS(1443), + [anon_sym_for] = ACTIONS(1443), [anon_sym_gen] = ACTIONS(1443), + [anon_sym_if] = ACTIONS(1443), + [anon_sym_impl] = ACTIONS(1443), + [anon_sym_let] = ACTIONS(1443), + [anon_sym_loop] = ACTIONS(1443), + [anon_sym_match] = ACTIONS(1443), + [anon_sym_mod] = ACTIONS(1443), + [anon_sym_pub] = ACTIONS(1443), + [anon_sym_return] = ACTIONS(1443), + [anon_sym_static] = ACTIONS(1443), + [anon_sym_struct] = ACTIONS(1443), + [anon_sym_trait] = ACTIONS(1443), + [anon_sym_type] = ACTIONS(1443), [anon_sym_union] = ACTIONS(1443), - [anon_sym_ref] = ACTIONS(1443), - [anon_sym_else] = ACTIONS(1443), - [sym_mutable_specifier] = ACTIONS(1443), + [anon_sym_unsafe] = ACTIONS(1443), + [anon_sym_use] = ACTIONS(1443), + [anon_sym_while] = ACTIONS(1443), + [anon_sym_extern] = ACTIONS(1443), + [anon_sym_yield] = ACTIONS(1443), + [anon_sym_move] = ACTIONS(1443), + [anon_sym_try] = ACTIONS(1443), [sym_integer_literal] = ACTIONS(1441), [aux_sym_string_literal_token1] = ACTIONS(1441), [sym_char_literal] = ACTIONS(1441), @@ -69780,268 +68931,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1441), [sym_float_literal] = ACTIONS(1441), }, - [STATE(471)] = { - [sym_line_comment] = STATE(471), - [sym_block_comment] = STATE(471), - [sym_identifier] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(1433), - [anon_sym_LBRACK] = ACTIONS(1433), - [anon_sym_RBRACE] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_QMARK] = ACTIONS(1433), - [anon_sym_u8] = ACTIONS(1435), - [anon_sym_i8] = ACTIONS(1435), - [anon_sym_u16] = ACTIONS(1435), - [anon_sym_i16] = ACTIONS(1435), - [anon_sym_u32] = ACTIONS(1435), - [anon_sym_i32] = ACTIONS(1435), - [anon_sym_u64] = ACTIONS(1435), - [anon_sym_i64] = ACTIONS(1435), - [anon_sym_u128] = ACTIONS(1435), - [anon_sym_i128] = ACTIONS(1435), - [anon_sym_isize] = ACTIONS(1435), - [anon_sym_usize] = ACTIONS(1435), - [anon_sym_f32] = ACTIONS(1435), - [anon_sym_f64] = ACTIONS(1435), - [anon_sym_bool] = ACTIONS(1435), - [anon_sym_str] = ACTIONS(1435), - [anon_sym_char] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1435), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1433), - [anon_sym_PIPE_PIPE] = ACTIONS(1433), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1435), - [anon_sym_PLUS_EQ] = ACTIONS(1433), - [anon_sym_DASH_EQ] = ACTIONS(1433), - [anon_sym_STAR_EQ] = ACTIONS(1433), - [anon_sym_SLASH_EQ] = ACTIONS(1433), - [anon_sym_PERCENT_EQ] = ACTIONS(1433), - [anon_sym_CARET_EQ] = ACTIONS(1433), - [anon_sym_AMP_EQ] = ACTIONS(1433), - [anon_sym_PIPE_EQ] = ACTIONS(1433), - [anon_sym_LT_LT_EQ] = ACTIONS(1433), - [anon_sym_GT_GT_EQ] = ACTIONS(1433), - [anon_sym_EQ] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1433), - [anon_sym_BANG_EQ] = ACTIONS(1433), - [anon_sym_GT] = ACTIONS(1435), - [anon_sym_LT] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1433), - [anon_sym_LT_EQ] = ACTIONS(1433), - [anon_sym__] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(1435), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1433), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1433), - [anon_sym_COMMA] = ACTIONS(1433), - [anon_sym_COLON_COLON] = ACTIONS(1433), - [anon_sym_POUND] = ACTIONS(1433), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_const] = ACTIONS(1435), - [anon_sym_default] = ACTIONS(1435), - [anon_sym_gen] = ACTIONS(1435), - [anon_sym_union] = ACTIONS(1435), - [anon_sym_ref] = ACTIONS(1435), - [anon_sym_else] = ACTIONS(1435), - [sym_mutable_specifier] = ACTIONS(1435), - [sym_integer_literal] = ACTIONS(1433), - [aux_sym_string_literal_token1] = ACTIONS(1433), - [sym_char_literal] = ACTIONS(1433), - [anon_sym_true] = ACTIONS(1435), - [anon_sym_false] = ACTIONS(1435), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1435), - [sym_super] = ACTIONS(1435), - [sym_crate] = ACTIONS(1435), - [sym_metavariable] = ACTIONS(1433), - [sym__raw_string_literal_start] = ACTIONS(1433), - [sym_float_literal] = ACTIONS(1433), - }, - [STATE(472)] = { - [sym_line_comment] = STATE(472), - [sym_block_comment] = STATE(472), - [sym_identifier] = ACTIONS(1439), - [anon_sym_LPAREN] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1437), - [anon_sym_RBRACE] = ACTIONS(1437), - [anon_sym_PLUS] = ACTIONS(1439), - [anon_sym_STAR] = ACTIONS(1439), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_u8] = ACTIONS(1439), - [anon_sym_i8] = ACTIONS(1439), - [anon_sym_u16] = ACTIONS(1439), - [anon_sym_i16] = ACTIONS(1439), - [anon_sym_u32] = ACTIONS(1439), - [anon_sym_i32] = ACTIONS(1439), - [anon_sym_u64] = ACTIONS(1439), - [anon_sym_i64] = ACTIONS(1439), - [anon_sym_u128] = ACTIONS(1439), - [anon_sym_i128] = ACTIONS(1439), - [anon_sym_isize] = ACTIONS(1439), - [anon_sym_usize] = ACTIONS(1439), - [anon_sym_f32] = ACTIONS(1439), - [anon_sym_f64] = ACTIONS(1439), - [anon_sym_bool] = ACTIONS(1439), - [anon_sym_str] = ACTIONS(1439), - [anon_sym_char] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1439), - [anon_sym_SLASH] = ACTIONS(1439), - [anon_sym_PERCENT] = ACTIONS(1439), - [anon_sym_CARET] = ACTIONS(1439), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_PIPE] = ACTIONS(1439), - [anon_sym_AMP_AMP] = ACTIONS(1437), - [anon_sym_PIPE_PIPE] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1439), - [anon_sym_GT_GT] = ACTIONS(1439), - [anon_sym_PLUS_EQ] = ACTIONS(1437), - [anon_sym_DASH_EQ] = ACTIONS(1437), - [anon_sym_STAR_EQ] = ACTIONS(1437), - [anon_sym_SLASH_EQ] = ACTIONS(1437), - [anon_sym_PERCENT_EQ] = ACTIONS(1437), - [anon_sym_CARET_EQ] = ACTIONS(1437), - [anon_sym_AMP_EQ] = ACTIONS(1437), - [anon_sym_PIPE_EQ] = ACTIONS(1437), - [anon_sym_LT_LT_EQ] = ACTIONS(1437), - [anon_sym_GT_GT_EQ] = ACTIONS(1437), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_EQ_EQ] = ACTIONS(1437), - [anon_sym_BANG_EQ] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1439), - [anon_sym_LT] = ACTIONS(1439), - [anon_sym_GT_EQ] = ACTIONS(1437), - [anon_sym_LT_EQ] = ACTIONS(1437), - [anon_sym__] = ACTIONS(1439), - [anon_sym_DOT] = ACTIONS(1439), - [anon_sym_DOT_DOT] = ACTIONS(1439), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1437), - [anon_sym_COMMA] = ACTIONS(1437), - [anon_sym_COLON_COLON] = ACTIONS(1437), - [anon_sym_POUND] = ACTIONS(1437), - [anon_sym_as] = ACTIONS(1439), - [anon_sym_const] = ACTIONS(1439), - [anon_sym_default] = ACTIONS(1439), - [anon_sym_gen] = ACTIONS(1439), - [anon_sym_union] = ACTIONS(1439), - [anon_sym_ref] = ACTIONS(1439), - [anon_sym_else] = ACTIONS(1439), - [sym_mutable_specifier] = ACTIONS(1439), - [sym_integer_literal] = ACTIONS(1437), - [aux_sym_string_literal_token1] = ACTIONS(1437), - [sym_char_literal] = ACTIONS(1437), - [anon_sym_true] = ACTIONS(1439), - [anon_sym_false] = ACTIONS(1439), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1439), - [sym_super] = ACTIONS(1439), - [sym_crate] = ACTIONS(1439), - [sym_metavariable] = ACTIONS(1437), - [sym__raw_string_literal_start] = ACTIONS(1437), - [sym_float_literal] = ACTIONS(1437), - }, - [STATE(473)] = { - [sym_attribute_item] = STATE(1145), - [sym_inner_attribute_item] = STATE(1145), - [sym_bracketed_type] = STATE(3695), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3416), - [sym_macro_invocation] = STATE(2883), - [sym_scoped_identifier] = STATE(2241), - [sym_scoped_type_identifier] = STATE(3110), - [sym_match_arm] = STATE(1146), - [sym_last_match_arm] = STATE(3528), - [sym_match_pattern] = STATE(3746), - [sym_const_block] = STATE(2883), - [sym__pattern] = STATE(2909), - [sym_generic_pattern] = STATE(2883), - [sym_tuple_pattern] = STATE(2883), - [sym_slice_pattern] = STATE(2883), - [sym_tuple_struct_pattern] = STATE(2883), - [sym_struct_pattern] = STATE(2883), - [sym_remaining_field_pattern] = STATE(2883), - [sym_mut_pattern] = STATE(2883), - [sym_range_pattern] = STATE(2883), - [sym_ref_pattern] = STATE(2883), - [sym_captured_pattern] = STATE(2883), - [sym_reference_pattern] = STATE(2883), - [sym_or_pattern] = STATE(2883), - [sym__literal_pattern] = STATE(2449), - [sym_negative_literal] = STATE(2408), - [sym_string_literal] = STATE(2408), - [sym_raw_string_literal] = STATE(2408), - [sym_boolean_literal] = STATE(2408), - [sym_line_comment] = STATE(473), - [sym_block_comment] = STATE(473), - [aux_sym_match_block_repeat1] = STATE(497), - [aux_sym_match_arm_repeat1] = STATE(684), - [sym_identifier] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_u8] = ACTIONS(1679), - [anon_sym_i8] = ACTIONS(1679), - [anon_sym_u16] = ACTIONS(1679), - [anon_sym_i16] = ACTIONS(1679), - [anon_sym_u32] = ACTIONS(1679), - [anon_sym_i32] = ACTIONS(1679), - [anon_sym_u64] = ACTIONS(1679), - [anon_sym_i64] = ACTIONS(1679), - [anon_sym_u128] = ACTIONS(1679), - [anon_sym_i128] = ACTIONS(1679), - [anon_sym_isize] = ACTIONS(1679), - [anon_sym_usize] = ACTIONS(1679), - [anon_sym_f32] = ACTIONS(1679), - [anon_sym_f64] = ACTIONS(1679), - [anon_sym_bool] = ACTIONS(1679), - [anon_sym_str] = ACTIONS(1679), - [anon_sym_char] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), - [anon_sym_COLON_COLON] = ACTIONS(1693), - [anon_sym_POUND] = ACTIONS(1695), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_gen] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [sym_mutable_specifier] = ACTIONS(1703), - [sym_integer_literal] = ACTIONS(1705), - [aux_sym_string_literal_token1] = ACTIONS(1707), - [sym_char_literal] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1709), - [anon_sym_false] = ACTIONS(1709), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1711), - [sym_super] = ACTIONS(1711), - [sym_crate] = ACTIONS(1711), - [sym_metavariable] = ACTIONS(1713), - [sym__raw_string_literal_start] = ACTIONS(1715), - [sym_float_literal] = ACTIONS(1705), - }, - [STATE(474)] = { - [sym_line_comment] = STATE(474), - [sym_block_comment] = STATE(474), + [STATE(438)] = { + [sym_line_comment] = STATE(438), + [sym_block_comment] = STATE(438), + [ts_builtin_sym_end] = ACTIONS(1445), [sym_identifier] = ACTIONS(1447), + [anon_sym_SEMI] = ACTIONS(1445), + [anon_sym_macro_rules_BANG] = ACTIONS(1445), [anon_sym_LPAREN] = ACTIONS(1445), [anon_sym_LBRACK] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1445), [anon_sym_RBRACE] = ACTIONS(1445), - [anon_sym_PLUS] = ACTIONS(1447), + [anon_sym_PLUS] = ACTIONS(1399), [anon_sym_STAR] = ACTIONS(1447), - [anon_sym_QMARK] = ACTIONS(1445), + [anon_sym_QMARK] = ACTIONS(1397), [anon_sym_u8] = ACTIONS(1447), [anon_sym_i8] = ACTIONS(1447), [anon_sym_u16] = ACTIONS(1447), @@ -70060,48 +68963,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1447), [anon_sym_char] = ACTIONS(1447), [anon_sym_DASH] = ACTIONS(1447), - [anon_sym_SLASH] = ACTIONS(1447), - [anon_sym_PERCENT] = ACTIONS(1447), - [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_SLASH] = ACTIONS(1399), + [anon_sym_PERCENT] = ACTIONS(1399), + [anon_sym_CARET] = ACTIONS(1399), + [anon_sym_BANG] = ACTIONS(1447), [anon_sym_AMP] = ACTIONS(1447), [anon_sym_PIPE] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(1445), - [anon_sym_LT_LT] = ACTIONS(1447), - [anon_sym_GT_GT] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1445), - [anon_sym_DASH_EQ] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1445), - [anon_sym_SLASH_EQ] = ACTIONS(1445), - [anon_sym_PERCENT_EQ] = ACTIONS(1445), - [anon_sym_CARET_EQ] = ACTIONS(1445), - [anon_sym_AMP_EQ] = ACTIONS(1445), - [anon_sym_PIPE_EQ] = ACTIONS(1445), - [anon_sym_LT_LT_EQ] = ACTIONS(1445), - [anon_sym_GT_GT_EQ] = ACTIONS(1445), - [anon_sym_EQ] = ACTIONS(1447), - [anon_sym_EQ_EQ] = ACTIONS(1445), - [anon_sym_BANG_EQ] = ACTIONS(1445), - [anon_sym_GT] = ACTIONS(1447), + [anon_sym_AMP_AMP] = ACTIONS(1397), + [anon_sym_PIPE_PIPE] = ACTIONS(1397), + [anon_sym_LT_LT] = ACTIONS(1399), + [anon_sym_GT_GT] = ACTIONS(1399), + [anon_sym_PLUS_EQ] = ACTIONS(1397), + [anon_sym_DASH_EQ] = ACTIONS(1397), + [anon_sym_STAR_EQ] = ACTIONS(1397), + [anon_sym_SLASH_EQ] = ACTIONS(1397), + [anon_sym_PERCENT_EQ] = ACTIONS(1397), + [anon_sym_CARET_EQ] = ACTIONS(1397), + [anon_sym_AMP_EQ] = ACTIONS(1397), + [anon_sym_PIPE_EQ] = ACTIONS(1397), + [anon_sym_LT_LT_EQ] = ACTIONS(1397), + [anon_sym_GT_GT_EQ] = ACTIONS(1397), + [anon_sym_EQ] = ACTIONS(1399), + [anon_sym_EQ_EQ] = ACTIONS(1397), + [anon_sym_BANG_EQ] = ACTIONS(1397), + [anon_sym_GT] = ACTIONS(1399), [anon_sym_LT] = ACTIONS(1447), - [anon_sym_GT_EQ] = ACTIONS(1445), - [anon_sym_LT_EQ] = ACTIONS(1445), - [anon_sym__] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_GT_EQ] = ACTIONS(1397), + [anon_sym_LT_EQ] = ACTIONS(1397), + [anon_sym_DOT] = ACTIONS(1399), [anon_sym_DOT_DOT] = ACTIONS(1447), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1445), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1445), - [anon_sym_COMMA] = ACTIONS(1445), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1397), [anon_sym_COLON_COLON] = ACTIONS(1445), [anon_sym_POUND] = ACTIONS(1445), - [anon_sym_as] = ACTIONS(1447), + [anon_sym_SQUOTE] = ACTIONS(1447), + [anon_sym_as] = ACTIONS(1399), + [anon_sym_async] = ACTIONS(1447), + [anon_sym_break] = ACTIONS(1447), [anon_sym_const] = ACTIONS(1447), + [anon_sym_continue] = ACTIONS(1447), [anon_sym_default] = ACTIONS(1447), + [anon_sym_enum] = ACTIONS(1447), + [anon_sym_fn] = ACTIONS(1447), + [anon_sym_for] = ACTIONS(1447), [anon_sym_gen] = ACTIONS(1447), + [anon_sym_if] = ACTIONS(1447), + [anon_sym_impl] = ACTIONS(1447), + [anon_sym_let] = ACTIONS(1447), + [anon_sym_loop] = ACTIONS(1447), + [anon_sym_match] = ACTIONS(1447), + [anon_sym_mod] = ACTIONS(1447), + [anon_sym_pub] = ACTIONS(1447), + [anon_sym_return] = ACTIONS(1447), + [anon_sym_static] = ACTIONS(1447), + [anon_sym_struct] = ACTIONS(1447), + [anon_sym_trait] = ACTIONS(1447), + [anon_sym_type] = ACTIONS(1447), [anon_sym_union] = ACTIONS(1447), - [anon_sym_ref] = ACTIONS(1447), - [anon_sym_else] = ACTIONS(1447), - [sym_mutable_specifier] = ACTIONS(1447), + [anon_sym_unsafe] = ACTIONS(1447), + [anon_sym_use] = ACTIONS(1447), + [anon_sym_while] = ACTIONS(1447), + [anon_sym_extern] = ACTIONS(1447), + [anon_sym_yield] = ACTIONS(1447), + [anon_sym_move] = ACTIONS(1447), + [anon_sym_try] = ACTIONS(1447), [sym_integer_literal] = ACTIONS(1445), [aux_sym_string_literal_token1] = ACTIONS(1445), [sym_char_literal] = ACTIONS(1445), @@ -70116,1094 +69041,2262 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1445), [sym_float_literal] = ACTIONS(1445), }, - [STATE(475)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym_closure_expression] = STATE(3145), - [sym_closure_parameters] = STATE(217), - [sym__pattern] = STATE(2655), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), - [sym_line_comment] = STATE(475), - [sym_block_comment] = STATE(475), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COMMA] = ACTIONS(1737), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_async] = ACTIONS(1741), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_static] = ACTIONS(1423), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [anon_sym_move] = ACTIONS(1427), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), + [STATE(439)] = { + [sym_line_comment] = STATE(439), + [sym_block_comment] = STATE(439), + [ts_builtin_sym_end] = ACTIONS(1449), + [sym_identifier] = ACTIONS(1451), + [anon_sym_SEMI] = ACTIONS(1449), + [anon_sym_macro_rules_BANG] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1449), + [anon_sym_LBRACK] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_RBRACE] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_STAR] = ACTIONS(1451), + [anon_sym_QMARK] = ACTIONS(1449), + [anon_sym_u8] = ACTIONS(1451), + [anon_sym_i8] = ACTIONS(1451), + [anon_sym_u16] = ACTIONS(1451), + [anon_sym_i16] = ACTIONS(1451), + [anon_sym_u32] = ACTIONS(1451), + [anon_sym_i32] = ACTIONS(1451), + [anon_sym_u64] = ACTIONS(1451), + [anon_sym_i64] = ACTIONS(1451), + [anon_sym_u128] = ACTIONS(1451), + [anon_sym_i128] = ACTIONS(1451), + [anon_sym_isize] = ACTIONS(1451), + [anon_sym_usize] = ACTIONS(1451), + [anon_sym_f32] = ACTIONS(1451), + [anon_sym_f64] = ACTIONS(1451), + [anon_sym_bool] = ACTIONS(1451), + [anon_sym_str] = ACTIONS(1451), + [anon_sym_char] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_SLASH] = ACTIONS(1451), + [anon_sym_PERCENT] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(1451), + [anon_sym_PIPE] = ACTIONS(1451), + [anon_sym_AMP_AMP] = ACTIONS(1449), + [anon_sym_PIPE_PIPE] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS_EQ] = ACTIONS(1449), + [anon_sym_DASH_EQ] = ACTIONS(1449), + [anon_sym_STAR_EQ] = ACTIONS(1449), + [anon_sym_SLASH_EQ] = ACTIONS(1449), + [anon_sym_PERCENT_EQ] = ACTIONS(1449), + [anon_sym_CARET_EQ] = ACTIONS(1449), + [anon_sym_AMP_EQ] = ACTIONS(1449), + [anon_sym_PIPE_EQ] = ACTIONS(1449), + [anon_sym_LT_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_GT_EQ] = ACTIONS(1449), + [anon_sym_EQ] = ACTIONS(1451), + [anon_sym_EQ_EQ] = ACTIONS(1449), + [anon_sym_BANG_EQ] = ACTIONS(1449), + [anon_sym_GT] = ACTIONS(1451), + [anon_sym_LT] = ACTIONS(1451), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_DOT] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1449), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1449), + [anon_sym_COLON_COLON] = ACTIONS(1449), + [anon_sym_POUND] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [anon_sym_as] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_break] = ACTIONS(1451), + [anon_sym_const] = ACTIONS(1451), + [anon_sym_continue] = ACTIONS(1451), + [anon_sym_default] = ACTIONS(1451), + [anon_sym_enum] = ACTIONS(1451), + [anon_sym_fn] = ACTIONS(1451), + [anon_sym_for] = ACTIONS(1451), + [anon_sym_gen] = ACTIONS(1451), + [anon_sym_if] = ACTIONS(1451), + [anon_sym_impl] = ACTIONS(1451), + [anon_sym_let] = ACTIONS(1451), + [anon_sym_loop] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_mod] = ACTIONS(1451), + [anon_sym_pub] = ACTIONS(1451), + [anon_sym_return] = ACTIONS(1451), + [anon_sym_static] = ACTIONS(1451), + [anon_sym_struct] = ACTIONS(1451), + [anon_sym_trait] = ACTIONS(1451), + [anon_sym_type] = ACTIONS(1451), + [anon_sym_union] = ACTIONS(1451), + [anon_sym_unsafe] = ACTIONS(1451), + [anon_sym_use] = ACTIONS(1451), + [anon_sym_while] = ACTIONS(1451), + [anon_sym_extern] = ACTIONS(1451), + [anon_sym_yield] = ACTIONS(1451), + [anon_sym_move] = ACTIONS(1451), + [anon_sym_try] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [aux_sym_string_literal_token1] = ACTIONS(1449), + [sym_char_literal] = ACTIONS(1449), + [anon_sym_true] = ACTIONS(1451), + [anon_sym_false] = ACTIONS(1451), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_self] = ACTIONS(1451), + [sym_super] = ACTIONS(1451), + [sym_crate] = ACTIONS(1451), + [sym_metavariable] = ACTIONS(1449), + [sym__raw_string_literal_start] = ACTIONS(1449), + [sym_float_literal] = ACTIONS(1449), }, - [STATE(476)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym_closure_expression] = STATE(2901), - [sym_closure_parameters] = STATE(217), - [sym__pattern] = STATE(2824), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), - [sym_line_comment] = STATE(476), - [sym_block_comment] = STATE(476), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(1751), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COMMA] = ACTIONS(1419), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_async] = ACTIONS(1741), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_static] = ACTIONS(1423), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [anon_sym_move] = ACTIONS(1427), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [STATE(440)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_self_parameter] = STATE(2980), + [sym_variadic_parameter] = STATE(2980), + [sym_parameter] = STATE(2980), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2715), + [sym_bracketed_type] = STATE(3751), + [sym_lifetime] = STATE(2953), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2569), + [sym_scoped_identifier] = STATE(2379), + [sym_scoped_type_identifier] = STATE(2296), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(3286), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), + [sym_line_comment] = STATE(440), + [sym_block_comment] = STATE(440), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1157), + [anon_sym_LPAREN] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1163), + [anon_sym_i8] = ACTIONS(1163), + [anon_sym_u16] = ACTIONS(1163), + [anon_sym_i16] = ACTIONS(1163), + [anon_sym_u32] = ACTIONS(1163), + [anon_sym_i32] = ACTIONS(1163), + [anon_sym_u64] = ACTIONS(1163), + [anon_sym_i64] = ACTIONS(1163), + [anon_sym_u128] = ACTIONS(1163), + [anon_sym_i128] = ACTIONS(1163), + [anon_sym_isize] = ACTIONS(1163), + [anon_sym_usize] = ACTIONS(1163), + [anon_sym_f32] = ACTIONS(1163), + [anon_sym_f64] = ACTIONS(1163), + [anon_sym_bool] = ACTIONS(1163), + [anon_sym_str] = ACTIONS(1163), + [anon_sym_char] = ACTIONS(1163), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1165), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1453), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1079), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1171), + [anon_sym_SQUOTE] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_default] = ACTIONS(1173), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1175), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1175), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_ref] = ACTIONS(1109), + [anon_sym_dyn] = ACTIONS(1111), + [sym_mutable_specifier] = ACTIONS(1113), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1177), + [sym_super] = ACTIONS(1179), + [sym_crate] = ACTIONS(1179), + [sym_metavariable] = ACTIONS(1181), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, - [STATE(477)] = { - [sym_line_comment] = STATE(477), - [sym_block_comment] = STATE(477), - [sym_identifier] = ACTIONS(1473), - [anon_sym_LPAREN] = ACTIONS(1471), - [anon_sym_LBRACK] = ACTIONS(1471), - [anon_sym_RBRACE] = ACTIONS(1471), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_QMARK] = ACTIONS(1471), - [anon_sym_u8] = ACTIONS(1473), - [anon_sym_i8] = ACTIONS(1473), - [anon_sym_u16] = ACTIONS(1473), - [anon_sym_i16] = ACTIONS(1473), - [anon_sym_u32] = ACTIONS(1473), - [anon_sym_i32] = ACTIONS(1473), - [anon_sym_u64] = ACTIONS(1473), - [anon_sym_i64] = ACTIONS(1473), - [anon_sym_u128] = ACTIONS(1473), - [anon_sym_i128] = ACTIONS(1473), - [anon_sym_isize] = ACTIONS(1473), - [anon_sym_usize] = ACTIONS(1473), - [anon_sym_f32] = ACTIONS(1473), - [anon_sym_f64] = ACTIONS(1473), - [anon_sym_bool] = ACTIONS(1473), - [anon_sym_str] = ACTIONS(1473), - [anon_sym_char] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_SLASH] = ACTIONS(1473), - [anon_sym_PERCENT] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1473), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_PIPE] = ACTIONS(1473), - [anon_sym_AMP_AMP] = ACTIONS(1471), - [anon_sym_PIPE_PIPE] = ACTIONS(1471), - [anon_sym_LT_LT] = ACTIONS(1473), - [anon_sym_GT_GT] = ACTIONS(1473), - [anon_sym_PLUS_EQ] = ACTIONS(1471), - [anon_sym_DASH_EQ] = ACTIONS(1471), - [anon_sym_STAR_EQ] = ACTIONS(1471), - [anon_sym_SLASH_EQ] = ACTIONS(1471), - [anon_sym_PERCENT_EQ] = ACTIONS(1471), - [anon_sym_CARET_EQ] = ACTIONS(1471), - [anon_sym_AMP_EQ] = ACTIONS(1471), - [anon_sym_PIPE_EQ] = ACTIONS(1471), - [anon_sym_LT_LT_EQ] = ACTIONS(1471), - [anon_sym_GT_GT_EQ] = ACTIONS(1471), - [anon_sym_EQ] = ACTIONS(1473), - [anon_sym_EQ_EQ] = ACTIONS(1471), - [anon_sym_BANG_EQ] = ACTIONS(1471), - [anon_sym_GT] = ACTIONS(1473), - [anon_sym_LT] = ACTIONS(1473), - [anon_sym_GT_EQ] = ACTIONS(1471), - [anon_sym_LT_EQ] = ACTIONS(1471), - [anon_sym__] = ACTIONS(1473), - [anon_sym_DOT] = ACTIONS(1473), - [anon_sym_DOT_DOT] = ACTIONS(1473), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1471), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1471), - [anon_sym_COMMA] = ACTIONS(1471), - [anon_sym_COLON_COLON] = ACTIONS(1471), - [anon_sym_POUND] = ACTIONS(1471), - [anon_sym_as] = ACTIONS(1473), - [anon_sym_const] = ACTIONS(1473), - [anon_sym_default] = ACTIONS(1473), - [anon_sym_gen] = ACTIONS(1473), - [anon_sym_union] = ACTIONS(1473), - [anon_sym_ref] = ACTIONS(1473), - [sym_mutable_specifier] = ACTIONS(1473), - [sym_integer_literal] = ACTIONS(1471), - [aux_sym_string_literal_token1] = ACTIONS(1471), - [sym_char_literal] = ACTIONS(1471), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1473), - [sym_super] = ACTIONS(1473), - [sym_crate] = ACTIONS(1473), - [sym_metavariable] = ACTIONS(1471), - [sym__raw_string_literal_start] = ACTIONS(1471), - [sym_float_literal] = ACTIONS(1471), + [STATE(441)] = { + [sym_line_comment] = STATE(441), + [sym_block_comment] = STATE(441), + [ts_builtin_sym_end] = ACTIONS(1455), + [sym_identifier] = ACTIONS(1457), + [anon_sym_SEMI] = ACTIONS(1455), + [anon_sym_macro_rules_BANG] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LBRACE] = ACTIONS(1455), + [anon_sym_RBRACE] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1457), + [anon_sym_QMARK] = ACTIONS(1455), + [anon_sym_u8] = ACTIONS(1457), + [anon_sym_i8] = ACTIONS(1457), + [anon_sym_u16] = ACTIONS(1457), + [anon_sym_i16] = ACTIONS(1457), + [anon_sym_u32] = ACTIONS(1457), + [anon_sym_i32] = ACTIONS(1457), + [anon_sym_u64] = ACTIONS(1457), + [anon_sym_i64] = ACTIONS(1457), + [anon_sym_u128] = ACTIONS(1457), + [anon_sym_i128] = ACTIONS(1457), + [anon_sym_isize] = ACTIONS(1457), + [anon_sym_usize] = ACTIONS(1457), + [anon_sym_f32] = ACTIONS(1457), + [anon_sym_f64] = ACTIONS(1457), + [anon_sym_bool] = ACTIONS(1457), + [anon_sym_str] = ACTIONS(1457), + [anon_sym_char] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_SLASH] = ACTIONS(1457), + [anon_sym_PERCENT] = ACTIONS(1457), + [anon_sym_CARET] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PIPE] = ACTIONS(1457), + [anon_sym_AMP_AMP] = ACTIONS(1455), + [anon_sym_PIPE_PIPE] = ACTIONS(1455), + [anon_sym_LT_LT] = ACTIONS(1457), + [anon_sym_GT_GT] = ACTIONS(1457), + [anon_sym_PLUS_EQ] = ACTIONS(1455), + [anon_sym_DASH_EQ] = ACTIONS(1455), + [anon_sym_STAR_EQ] = ACTIONS(1455), + [anon_sym_SLASH_EQ] = ACTIONS(1455), + [anon_sym_PERCENT_EQ] = ACTIONS(1455), + [anon_sym_CARET_EQ] = ACTIONS(1455), + [anon_sym_AMP_EQ] = ACTIONS(1455), + [anon_sym_PIPE_EQ] = ACTIONS(1455), + [anon_sym_LT_LT_EQ] = ACTIONS(1455), + [anon_sym_GT_GT_EQ] = ACTIONS(1455), + [anon_sym_EQ] = ACTIONS(1457), + [anon_sym_EQ_EQ] = ACTIONS(1455), + [anon_sym_BANG_EQ] = ACTIONS(1455), + [anon_sym_GT] = ACTIONS(1457), + [anon_sym_LT] = ACTIONS(1457), + [anon_sym_GT_EQ] = ACTIONS(1455), + [anon_sym_LT_EQ] = ACTIONS(1455), + [anon_sym_DOT] = ACTIONS(1457), + [anon_sym_DOT_DOT] = ACTIONS(1457), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1455), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1455), + [anon_sym_COLON_COLON] = ACTIONS(1455), + [anon_sym_POUND] = ACTIONS(1455), + [anon_sym_SQUOTE] = ACTIONS(1457), + [anon_sym_as] = ACTIONS(1457), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_break] = ACTIONS(1457), + [anon_sym_const] = ACTIONS(1457), + [anon_sym_continue] = ACTIONS(1457), + [anon_sym_default] = ACTIONS(1457), + [anon_sym_enum] = ACTIONS(1457), + [anon_sym_fn] = ACTIONS(1457), + [anon_sym_for] = ACTIONS(1457), + [anon_sym_gen] = ACTIONS(1457), + [anon_sym_if] = ACTIONS(1457), + [anon_sym_impl] = ACTIONS(1457), + [anon_sym_let] = ACTIONS(1457), + [anon_sym_loop] = ACTIONS(1457), + [anon_sym_match] = ACTIONS(1457), + [anon_sym_mod] = ACTIONS(1457), + [anon_sym_pub] = ACTIONS(1457), + [anon_sym_return] = ACTIONS(1457), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_struct] = ACTIONS(1457), + [anon_sym_trait] = ACTIONS(1457), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_union] = ACTIONS(1457), + [anon_sym_unsafe] = ACTIONS(1457), + [anon_sym_use] = ACTIONS(1457), + [anon_sym_while] = ACTIONS(1457), + [anon_sym_extern] = ACTIONS(1457), + [anon_sym_yield] = ACTIONS(1457), + [anon_sym_move] = ACTIONS(1457), + [anon_sym_try] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1455), + [aux_sym_string_literal_token1] = ACTIONS(1455), + [sym_char_literal] = ACTIONS(1455), + [anon_sym_true] = ACTIONS(1457), + [anon_sym_false] = ACTIONS(1457), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1457), + [sym_super] = ACTIONS(1457), + [sym_crate] = ACTIONS(1457), + [sym_metavariable] = ACTIONS(1455), + [sym__raw_string_literal_start] = ACTIONS(1455), + [sym_float_literal] = ACTIONS(1455), }, - [STATE(478)] = { - [sym_line_comment] = STATE(478), - [sym_block_comment] = STATE(478), - [sym_identifier] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_RBRACE] = ACTIONS(1543), - [anon_sym_PLUS] = ACTIONS(1545), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_QMARK] = ACTIONS(1543), - [anon_sym_u8] = ACTIONS(1545), - [anon_sym_i8] = ACTIONS(1545), - [anon_sym_u16] = ACTIONS(1545), - [anon_sym_i16] = ACTIONS(1545), - [anon_sym_u32] = ACTIONS(1545), - [anon_sym_i32] = ACTIONS(1545), - [anon_sym_u64] = ACTIONS(1545), - [anon_sym_i64] = ACTIONS(1545), - [anon_sym_u128] = ACTIONS(1545), - [anon_sym_i128] = ACTIONS(1545), - [anon_sym_isize] = ACTIONS(1545), - [anon_sym_usize] = ACTIONS(1545), - [anon_sym_f32] = ACTIONS(1545), - [anon_sym_f64] = ACTIONS(1545), - [anon_sym_bool] = ACTIONS(1545), - [anon_sym_str] = ACTIONS(1545), - [anon_sym_char] = ACTIONS(1545), - [anon_sym_DASH] = ACTIONS(1545), - [anon_sym_SLASH] = ACTIONS(1545), - [anon_sym_PERCENT] = ACTIONS(1545), - [anon_sym_CARET] = ACTIONS(1545), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_PIPE] = ACTIONS(1545), - [anon_sym_AMP_AMP] = ACTIONS(1543), - [anon_sym_PIPE_PIPE] = ACTIONS(1543), - [anon_sym_LT_LT] = ACTIONS(1545), - [anon_sym_GT_GT] = ACTIONS(1545), - [anon_sym_PLUS_EQ] = ACTIONS(1543), - [anon_sym_DASH_EQ] = ACTIONS(1543), - [anon_sym_STAR_EQ] = ACTIONS(1543), - [anon_sym_SLASH_EQ] = ACTIONS(1543), - [anon_sym_PERCENT_EQ] = ACTIONS(1543), - [anon_sym_CARET_EQ] = ACTIONS(1543), - [anon_sym_AMP_EQ] = ACTIONS(1543), - [anon_sym_PIPE_EQ] = ACTIONS(1543), - [anon_sym_LT_LT_EQ] = ACTIONS(1543), - [anon_sym_GT_GT_EQ] = ACTIONS(1543), - [anon_sym_EQ] = ACTIONS(1545), - [anon_sym_EQ_EQ] = ACTIONS(1543), - [anon_sym_BANG_EQ] = ACTIONS(1543), - [anon_sym_GT] = ACTIONS(1545), - [anon_sym_LT] = ACTIONS(1545), - [anon_sym_GT_EQ] = ACTIONS(1543), - [anon_sym_LT_EQ] = ACTIONS(1543), - [anon_sym__] = ACTIONS(1545), - [anon_sym_DOT] = ACTIONS(1545), - [anon_sym_DOT_DOT] = ACTIONS(1545), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1543), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1543), - [anon_sym_COMMA] = ACTIONS(1543), - [anon_sym_COLON_COLON] = ACTIONS(1543), - [anon_sym_POUND] = ACTIONS(1543), - [anon_sym_as] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1545), - [anon_sym_default] = ACTIONS(1545), - [anon_sym_gen] = ACTIONS(1545), - [anon_sym_union] = ACTIONS(1545), - [anon_sym_ref] = ACTIONS(1545), - [sym_mutable_specifier] = ACTIONS(1545), - [sym_integer_literal] = ACTIONS(1543), - [aux_sym_string_literal_token1] = ACTIONS(1543), - [sym_char_literal] = ACTIONS(1543), - [anon_sym_true] = ACTIONS(1545), - [anon_sym_false] = ACTIONS(1545), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1545), - [sym_super] = ACTIONS(1545), - [sym_crate] = ACTIONS(1545), - [sym_metavariable] = ACTIONS(1543), - [sym__raw_string_literal_start] = ACTIONS(1543), - [sym_float_literal] = ACTIONS(1543), + [STATE(442)] = { + [sym_line_comment] = STATE(442), + [sym_block_comment] = STATE(442), + [ts_builtin_sym_end] = ACTIONS(1459), + [sym_identifier] = ACTIONS(1461), + [anon_sym_SEMI] = ACTIONS(1459), + [anon_sym_macro_rules_BANG] = ACTIONS(1459), + [anon_sym_LPAREN] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1459), + [anon_sym_RBRACE] = ACTIONS(1459), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_STAR] = ACTIONS(1461), + [anon_sym_QMARK] = ACTIONS(1459), + [anon_sym_u8] = ACTIONS(1461), + [anon_sym_i8] = ACTIONS(1461), + [anon_sym_u16] = ACTIONS(1461), + [anon_sym_i16] = ACTIONS(1461), + [anon_sym_u32] = ACTIONS(1461), + [anon_sym_i32] = ACTIONS(1461), + [anon_sym_u64] = ACTIONS(1461), + [anon_sym_i64] = ACTIONS(1461), + [anon_sym_u128] = ACTIONS(1461), + [anon_sym_i128] = ACTIONS(1461), + [anon_sym_isize] = ACTIONS(1461), + [anon_sym_usize] = ACTIONS(1461), + [anon_sym_f32] = ACTIONS(1461), + [anon_sym_f64] = ACTIONS(1461), + [anon_sym_bool] = ACTIONS(1461), + [anon_sym_str] = ACTIONS(1461), + [anon_sym_char] = ACTIONS(1461), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_SLASH] = ACTIONS(1461), + [anon_sym_PERCENT] = ACTIONS(1461), + [anon_sym_CARET] = ACTIONS(1461), + [anon_sym_BANG] = ACTIONS(1461), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_PIPE] = ACTIONS(1461), + [anon_sym_AMP_AMP] = ACTIONS(1459), + [anon_sym_PIPE_PIPE] = ACTIONS(1459), + [anon_sym_LT_LT] = ACTIONS(1461), + [anon_sym_GT_GT] = ACTIONS(1461), + [anon_sym_PLUS_EQ] = ACTIONS(1459), + [anon_sym_DASH_EQ] = ACTIONS(1459), + [anon_sym_STAR_EQ] = ACTIONS(1459), + [anon_sym_SLASH_EQ] = ACTIONS(1459), + [anon_sym_PERCENT_EQ] = ACTIONS(1459), + [anon_sym_CARET_EQ] = ACTIONS(1459), + [anon_sym_AMP_EQ] = ACTIONS(1459), + [anon_sym_PIPE_EQ] = ACTIONS(1459), + [anon_sym_LT_LT_EQ] = ACTIONS(1459), + [anon_sym_GT_GT_EQ] = ACTIONS(1459), + [anon_sym_EQ] = ACTIONS(1461), + [anon_sym_EQ_EQ] = ACTIONS(1459), + [anon_sym_BANG_EQ] = ACTIONS(1459), + [anon_sym_GT] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(1461), + [anon_sym_GT_EQ] = ACTIONS(1459), + [anon_sym_LT_EQ] = ACTIONS(1459), + [anon_sym_DOT] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(1461), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1459), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1459), + [anon_sym_COLON_COLON] = ACTIONS(1459), + [anon_sym_POUND] = ACTIONS(1459), + [anon_sym_SQUOTE] = ACTIONS(1461), + [anon_sym_as] = ACTIONS(1461), + [anon_sym_async] = ACTIONS(1461), + [anon_sym_break] = ACTIONS(1461), + [anon_sym_const] = ACTIONS(1461), + [anon_sym_continue] = ACTIONS(1461), + [anon_sym_default] = ACTIONS(1461), + [anon_sym_enum] = ACTIONS(1461), + [anon_sym_fn] = ACTIONS(1461), + [anon_sym_for] = ACTIONS(1461), + [anon_sym_gen] = ACTIONS(1461), + [anon_sym_if] = ACTIONS(1461), + [anon_sym_impl] = ACTIONS(1461), + [anon_sym_let] = ACTIONS(1461), + [anon_sym_loop] = ACTIONS(1461), + [anon_sym_match] = ACTIONS(1461), + [anon_sym_mod] = ACTIONS(1461), + [anon_sym_pub] = ACTIONS(1461), + [anon_sym_return] = ACTIONS(1461), + [anon_sym_static] = ACTIONS(1461), + [anon_sym_struct] = ACTIONS(1461), + [anon_sym_trait] = ACTIONS(1461), + [anon_sym_type] = ACTIONS(1461), + [anon_sym_union] = ACTIONS(1461), + [anon_sym_unsafe] = ACTIONS(1461), + [anon_sym_use] = ACTIONS(1461), + [anon_sym_while] = ACTIONS(1461), + [anon_sym_extern] = ACTIONS(1461), + [anon_sym_yield] = ACTIONS(1461), + [anon_sym_move] = ACTIONS(1461), + [anon_sym_try] = ACTIONS(1461), + [sym_integer_literal] = ACTIONS(1459), + [aux_sym_string_literal_token1] = ACTIONS(1459), + [sym_char_literal] = ACTIONS(1459), + [anon_sym_true] = ACTIONS(1461), + [anon_sym_false] = ACTIONS(1461), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1461), + [sym_super] = ACTIONS(1461), + [sym_crate] = ACTIONS(1461), + [sym_metavariable] = ACTIONS(1459), + [sym__raw_string_literal_start] = ACTIONS(1459), + [sym_float_literal] = ACTIONS(1459), }, - [STATE(479)] = { - [sym_line_comment] = STATE(479), - [sym_block_comment] = STATE(479), - [sym_identifier] = ACTIONS(1753), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_LBRACK] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1457), - [anon_sym_PLUS] = ACTIONS(1459), - [anon_sym_STAR] = ACTIONS(1459), - [anon_sym_QMARK] = ACTIONS(1457), - [anon_sym_u8] = ACTIONS(1753), - [anon_sym_i8] = ACTIONS(1753), - [anon_sym_u16] = ACTIONS(1753), - [anon_sym_i16] = ACTIONS(1753), - [anon_sym_u32] = ACTIONS(1753), - [anon_sym_i32] = ACTIONS(1753), - [anon_sym_u64] = ACTIONS(1753), - [anon_sym_i64] = ACTIONS(1753), - [anon_sym_u128] = ACTIONS(1753), - [anon_sym_i128] = ACTIONS(1753), - [anon_sym_isize] = ACTIONS(1753), - [anon_sym_usize] = ACTIONS(1753), - [anon_sym_f32] = ACTIONS(1753), - [anon_sym_f64] = ACTIONS(1753), - [anon_sym_bool] = ACTIONS(1753), - [anon_sym_str] = ACTIONS(1753), - [anon_sym_char] = ACTIONS(1753), - [anon_sym_DASH] = ACTIONS(1753), - [anon_sym_SLASH] = ACTIONS(1459), - [anon_sym_PERCENT] = ACTIONS(1459), - [anon_sym_CARET] = ACTIONS(1459), - [anon_sym_AMP] = ACTIONS(1753), - [anon_sym_PIPE] = ACTIONS(1753), - [anon_sym_AMP_AMP] = ACTIONS(1457), - [anon_sym_PIPE_PIPE] = ACTIONS(1457), - [anon_sym_LT_LT] = ACTIONS(1459), - [anon_sym_GT_GT] = ACTIONS(1459), - [anon_sym_PLUS_EQ] = ACTIONS(1457), - [anon_sym_DASH_EQ] = ACTIONS(1457), - [anon_sym_STAR_EQ] = ACTIONS(1457), - [anon_sym_SLASH_EQ] = ACTIONS(1457), - [anon_sym_PERCENT_EQ] = ACTIONS(1457), - [anon_sym_CARET_EQ] = ACTIONS(1457), - [anon_sym_AMP_EQ] = ACTIONS(1457), - [anon_sym_PIPE_EQ] = ACTIONS(1457), - [anon_sym_LT_LT_EQ] = ACTIONS(1457), - [anon_sym_GT_GT_EQ] = ACTIONS(1457), - [anon_sym_EQ] = ACTIONS(1459), - [anon_sym_EQ_EQ] = ACTIONS(1457), - [anon_sym_BANG_EQ] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1753), - [anon_sym_GT_EQ] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1457), - [anon_sym__] = ACTIONS(1753), - [anon_sym_DOT] = ACTIONS(1459), - [anon_sym_DOT_DOT] = ACTIONS(1753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1457), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1755), - [anon_sym_COMMA] = ACTIONS(1457), - [anon_sym_COLON_COLON] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(1755), - [anon_sym_as] = ACTIONS(1459), - [anon_sym_const] = ACTIONS(1753), - [anon_sym_default] = ACTIONS(1753), - [anon_sym_gen] = ACTIONS(1753), - [anon_sym_union] = ACTIONS(1753), - [anon_sym_ref] = ACTIONS(1753), - [sym_mutable_specifier] = ACTIONS(1753), - [sym_integer_literal] = ACTIONS(1755), - [aux_sym_string_literal_token1] = ACTIONS(1755), - [sym_char_literal] = ACTIONS(1755), - [anon_sym_true] = ACTIONS(1753), - [anon_sym_false] = ACTIONS(1753), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1753), - [sym_super] = ACTIONS(1753), - [sym_crate] = ACTIONS(1753), - [sym_metavariable] = ACTIONS(1755), - [sym__raw_string_literal_start] = ACTIONS(1755), - [sym_float_literal] = ACTIONS(1755), + [STATE(443)] = { + [sym_line_comment] = STATE(443), + [sym_block_comment] = STATE(443), + [sym_identifier] = ACTIONS(1407), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_macro_rules_BANG] = ACTIONS(1405), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1399), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_QMARK] = ACTIONS(1397), + [anon_sym_u8] = ACTIONS(1407), + [anon_sym_i8] = ACTIONS(1407), + [anon_sym_u16] = ACTIONS(1407), + [anon_sym_i16] = ACTIONS(1407), + [anon_sym_u32] = ACTIONS(1407), + [anon_sym_i32] = ACTIONS(1407), + [anon_sym_u64] = ACTIONS(1407), + [anon_sym_i64] = ACTIONS(1407), + [anon_sym_u128] = ACTIONS(1407), + [anon_sym_i128] = ACTIONS(1407), + [anon_sym_isize] = ACTIONS(1407), + [anon_sym_usize] = ACTIONS(1407), + [anon_sym_f32] = ACTIONS(1407), + [anon_sym_f64] = ACTIONS(1407), + [anon_sym_bool] = ACTIONS(1407), + [anon_sym_str] = ACTIONS(1407), + [anon_sym_char] = ACTIONS(1407), + [anon_sym_DASH] = ACTIONS(1399), + [anon_sym_SLASH] = ACTIONS(1399), + [anon_sym_PERCENT] = ACTIONS(1399), + [anon_sym_CARET] = ACTIONS(1399), + [anon_sym_BANG] = ACTIONS(1407), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_PIPE] = ACTIONS(1399), + [anon_sym_AMP_AMP] = ACTIONS(1397), + [anon_sym_PIPE_PIPE] = ACTIONS(1397), + [anon_sym_LT_LT] = ACTIONS(1399), + [anon_sym_GT_GT] = ACTIONS(1399), + [anon_sym_PLUS_EQ] = ACTIONS(1397), + [anon_sym_DASH_EQ] = ACTIONS(1397), + [anon_sym_STAR_EQ] = ACTIONS(1397), + [anon_sym_SLASH_EQ] = ACTIONS(1397), + [anon_sym_PERCENT_EQ] = ACTIONS(1397), + [anon_sym_CARET_EQ] = ACTIONS(1397), + [anon_sym_AMP_EQ] = ACTIONS(1397), + [anon_sym_PIPE_EQ] = ACTIONS(1397), + [anon_sym_LT_LT_EQ] = ACTIONS(1397), + [anon_sym_GT_GT_EQ] = ACTIONS(1397), + [anon_sym_EQ] = ACTIONS(1399), + [anon_sym_EQ_EQ] = ACTIONS(1397), + [anon_sym_BANG_EQ] = ACTIONS(1397), + [anon_sym_GT] = ACTIONS(1399), + [anon_sym_LT] = ACTIONS(1399), + [anon_sym_GT_EQ] = ACTIONS(1397), + [anon_sym_LT_EQ] = ACTIONS(1397), + [anon_sym_DOT] = ACTIONS(1399), + [anon_sym_DOT_DOT] = ACTIONS(1399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1397), + [anon_sym_COLON_COLON] = ACTIONS(1405), + [anon_sym_POUND] = ACTIONS(1405), + [anon_sym_SQUOTE] = ACTIONS(1407), + [anon_sym_as] = ACTIONS(1399), + [anon_sym_async] = ACTIONS(1407), + [anon_sym_break] = ACTIONS(1407), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_continue] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1407), + [anon_sym_enum] = ACTIONS(1407), + [anon_sym_fn] = ACTIONS(1407), + [anon_sym_for] = ACTIONS(1407), + [anon_sym_gen] = ACTIONS(1407), + [anon_sym_if] = ACTIONS(1407), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_let] = ACTIONS(1407), + [anon_sym_loop] = ACTIONS(1407), + [anon_sym_match] = ACTIONS(1407), + [anon_sym_mod] = ACTIONS(1407), + [anon_sym_pub] = ACTIONS(1407), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_static] = ACTIONS(1407), + [anon_sym_struct] = ACTIONS(1407), + [anon_sym_trait] = ACTIONS(1407), + [anon_sym_type] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1407), + [anon_sym_unsafe] = ACTIONS(1407), + [anon_sym_use] = ACTIONS(1407), + [anon_sym_while] = ACTIONS(1407), + [anon_sym_extern] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1407), + [anon_sym_move] = ACTIONS(1407), + [anon_sym_try] = ACTIONS(1407), + [sym_integer_literal] = ACTIONS(1405), + [aux_sym_string_literal_token1] = ACTIONS(1405), + [sym_char_literal] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1407), + [sym_super] = ACTIONS(1407), + [sym_crate] = ACTIONS(1407), + [sym_metavariable] = ACTIONS(1405), + [sym__raw_string_literal_start] = ACTIONS(1405), + [sym_float_literal] = ACTIONS(1405), }, - [STATE(480)] = { - [sym_line_comment] = STATE(480), - [sym_block_comment] = STATE(480), - [sym_identifier] = ACTIONS(1465), - [anon_sym_LPAREN] = ACTIONS(1463), - [anon_sym_LBRACK] = ACTIONS(1463), - [anon_sym_RBRACE] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1465), - [anon_sym_QMARK] = ACTIONS(1463), - [anon_sym_u8] = ACTIONS(1465), - [anon_sym_i8] = ACTIONS(1465), - [anon_sym_u16] = ACTIONS(1465), - [anon_sym_i16] = ACTIONS(1465), - [anon_sym_u32] = ACTIONS(1465), - [anon_sym_i32] = ACTIONS(1465), - [anon_sym_u64] = ACTIONS(1465), - [anon_sym_i64] = ACTIONS(1465), - [anon_sym_u128] = ACTIONS(1465), - [anon_sym_i128] = ACTIONS(1465), - [anon_sym_isize] = ACTIONS(1465), - [anon_sym_usize] = ACTIONS(1465), - [anon_sym_f32] = ACTIONS(1465), - [anon_sym_f64] = ACTIONS(1465), - [anon_sym_bool] = ACTIONS(1465), - [anon_sym_str] = ACTIONS(1465), - [anon_sym_char] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_SLASH] = ACTIONS(1465), - [anon_sym_PERCENT] = ACTIONS(1465), - [anon_sym_CARET] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(1465), - [anon_sym_PIPE] = ACTIONS(1465), - [anon_sym_AMP_AMP] = ACTIONS(1463), - [anon_sym_PIPE_PIPE] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS_EQ] = ACTIONS(1463), - [anon_sym_DASH_EQ] = ACTIONS(1463), - [anon_sym_STAR_EQ] = ACTIONS(1463), - [anon_sym_SLASH_EQ] = ACTIONS(1463), - [anon_sym_PERCENT_EQ] = ACTIONS(1463), - [anon_sym_CARET_EQ] = ACTIONS(1463), - [anon_sym_AMP_EQ] = ACTIONS(1463), - [anon_sym_PIPE_EQ] = ACTIONS(1463), - [anon_sym_LT_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_GT_EQ] = ACTIONS(1463), - [anon_sym_EQ] = ACTIONS(1465), - [anon_sym_EQ_EQ] = ACTIONS(1463), - [anon_sym_BANG_EQ] = ACTIONS(1463), - [anon_sym_GT] = ACTIONS(1465), - [anon_sym_LT] = ACTIONS(1465), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym__] = ACTIONS(1465), - [anon_sym_DOT] = ACTIONS(1465), - [anon_sym_DOT_DOT] = ACTIONS(1465), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1463), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1463), - [anon_sym_COMMA] = ACTIONS(1463), - [anon_sym_COLON_COLON] = ACTIONS(1463), - [anon_sym_POUND] = ACTIONS(1463), - [anon_sym_as] = ACTIONS(1465), - [anon_sym_const] = ACTIONS(1465), - [anon_sym_default] = ACTIONS(1465), - [anon_sym_gen] = ACTIONS(1465), - [anon_sym_union] = ACTIONS(1465), - [anon_sym_ref] = ACTIONS(1465), - [sym_mutable_specifier] = ACTIONS(1465), - [sym_integer_literal] = ACTIONS(1463), - [aux_sym_string_literal_token1] = ACTIONS(1463), - [sym_char_literal] = ACTIONS(1463), - [anon_sym_true] = ACTIONS(1465), - [anon_sym_false] = ACTIONS(1465), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1465), - [sym_super] = ACTIONS(1465), - [sym_crate] = ACTIONS(1465), - [sym_metavariable] = ACTIONS(1463), - [sym__raw_string_literal_start] = ACTIONS(1463), - [sym_float_literal] = ACTIONS(1463), + [STATE(444)] = { + [sym_line_comment] = STATE(444), + [sym_block_comment] = STATE(444), + [sym_identifier] = ACTIONS(1395), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_macro_rules_BANG] = ACTIONS(1393), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(1393), + [anon_sym_RBRACE] = ACTIONS(1393), + [anon_sym_PLUS] = ACTIONS(1399), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_QMARK] = ACTIONS(1397), + [anon_sym_u8] = ACTIONS(1395), + [anon_sym_i8] = ACTIONS(1395), + [anon_sym_u16] = ACTIONS(1395), + [anon_sym_i16] = ACTIONS(1395), + [anon_sym_u32] = ACTIONS(1395), + [anon_sym_i32] = ACTIONS(1395), + [anon_sym_u64] = ACTIONS(1395), + [anon_sym_i64] = ACTIONS(1395), + [anon_sym_u128] = ACTIONS(1395), + [anon_sym_i128] = ACTIONS(1395), + [anon_sym_isize] = ACTIONS(1395), + [anon_sym_usize] = ACTIONS(1395), + [anon_sym_f32] = ACTIONS(1395), + [anon_sym_f64] = ACTIONS(1395), + [anon_sym_bool] = ACTIONS(1395), + [anon_sym_str] = ACTIONS(1395), + [anon_sym_char] = ACTIONS(1395), + [anon_sym_DASH] = ACTIONS(1399), + [anon_sym_SLASH] = ACTIONS(1399), + [anon_sym_PERCENT] = ACTIONS(1399), + [anon_sym_CARET] = ACTIONS(1399), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_PIPE] = ACTIONS(1399), + [anon_sym_AMP_AMP] = ACTIONS(1397), + [anon_sym_PIPE_PIPE] = ACTIONS(1397), + [anon_sym_LT_LT] = ACTIONS(1399), + [anon_sym_GT_GT] = ACTIONS(1399), + [anon_sym_PLUS_EQ] = ACTIONS(1397), + [anon_sym_DASH_EQ] = ACTIONS(1397), + [anon_sym_STAR_EQ] = ACTIONS(1397), + [anon_sym_SLASH_EQ] = ACTIONS(1397), + [anon_sym_PERCENT_EQ] = ACTIONS(1397), + [anon_sym_CARET_EQ] = ACTIONS(1397), + [anon_sym_AMP_EQ] = ACTIONS(1397), + [anon_sym_PIPE_EQ] = ACTIONS(1397), + [anon_sym_LT_LT_EQ] = ACTIONS(1397), + [anon_sym_GT_GT_EQ] = ACTIONS(1397), + [anon_sym_EQ] = ACTIONS(1399), + [anon_sym_EQ_EQ] = ACTIONS(1397), + [anon_sym_BANG_EQ] = ACTIONS(1397), + [anon_sym_GT] = ACTIONS(1399), + [anon_sym_LT] = ACTIONS(1399), + [anon_sym_GT_EQ] = ACTIONS(1397), + [anon_sym_LT_EQ] = ACTIONS(1397), + [anon_sym_DOT] = ACTIONS(1399), + [anon_sym_DOT_DOT] = ACTIONS(1399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1397), + [anon_sym_COLON_COLON] = ACTIONS(1393), + [anon_sym_POUND] = ACTIONS(1393), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_as] = ACTIONS(1399), + [anon_sym_async] = ACTIONS(1395), + [anon_sym_break] = ACTIONS(1395), + [anon_sym_const] = ACTIONS(1395), + [anon_sym_continue] = ACTIONS(1395), + [anon_sym_default] = ACTIONS(1395), + [anon_sym_enum] = ACTIONS(1395), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1395), + [anon_sym_gen] = ACTIONS(1395), + [anon_sym_if] = ACTIONS(1395), + [anon_sym_impl] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_loop] = ACTIONS(1395), + [anon_sym_match] = ACTIONS(1395), + [anon_sym_mod] = ACTIONS(1395), + [anon_sym_pub] = ACTIONS(1395), + [anon_sym_return] = ACTIONS(1395), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_struct] = ACTIONS(1395), + [anon_sym_trait] = ACTIONS(1395), + [anon_sym_type] = ACTIONS(1395), + [anon_sym_union] = ACTIONS(1395), + [anon_sym_unsafe] = ACTIONS(1395), + [anon_sym_use] = ACTIONS(1395), + [anon_sym_while] = ACTIONS(1395), + [anon_sym_extern] = ACTIONS(1395), + [anon_sym_yield] = ACTIONS(1395), + [anon_sym_move] = ACTIONS(1395), + [anon_sym_try] = ACTIONS(1395), + [sym_integer_literal] = ACTIONS(1393), + [aux_sym_string_literal_token1] = ACTIONS(1393), + [sym_char_literal] = ACTIONS(1393), + [anon_sym_true] = ACTIONS(1395), + [anon_sym_false] = ACTIONS(1395), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1395), + [sym_super] = ACTIONS(1395), + [sym_crate] = ACTIONS(1395), + [sym_metavariable] = ACTIONS(1393), + [sym__raw_string_literal_start] = ACTIONS(1393), + [sym_float_literal] = ACTIONS(1393), }, - [STATE(481)] = { - [sym_line_comment] = STATE(481), - [sym_block_comment] = STATE(481), - [sym_identifier] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_LBRACK] = ACTIONS(1759), - [anon_sym_RBRACE] = ACTIONS(1457), - [anon_sym_PLUS] = ACTIONS(1459), - [anon_sym_STAR] = ACTIONS(1459), - [anon_sym_QMARK] = ACTIONS(1457), - [anon_sym_u8] = ACTIONS(1757), - [anon_sym_i8] = ACTIONS(1757), - [anon_sym_u16] = ACTIONS(1757), - [anon_sym_i16] = ACTIONS(1757), - [anon_sym_u32] = ACTIONS(1757), - [anon_sym_i32] = ACTIONS(1757), - [anon_sym_u64] = ACTIONS(1757), - [anon_sym_i64] = ACTIONS(1757), - [anon_sym_u128] = ACTIONS(1757), - [anon_sym_i128] = ACTIONS(1757), - [anon_sym_isize] = ACTIONS(1757), - [anon_sym_usize] = ACTIONS(1757), - [anon_sym_f32] = ACTIONS(1757), - [anon_sym_f64] = ACTIONS(1757), - [anon_sym_bool] = ACTIONS(1757), - [anon_sym_str] = ACTIONS(1757), - [anon_sym_char] = ACTIONS(1757), - [anon_sym_DASH] = ACTIONS(1757), - [anon_sym_SLASH] = ACTIONS(1459), - [anon_sym_PERCENT] = ACTIONS(1459), - [anon_sym_CARET] = ACTIONS(1459), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_AMP_AMP] = ACTIONS(1457), - [anon_sym_PIPE_PIPE] = ACTIONS(1457), - [anon_sym_LT_LT] = ACTIONS(1459), - [anon_sym_GT_GT] = ACTIONS(1459), - [anon_sym_PLUS_EQ] = ACTIONS(1457), - [anon_sym_DASH_EQ] = ACTIONS(1457), - [anon_sym_STAR_EQ] = ACTIONS(1457), - [anon_sym_SLASH_EQ] = ACTIONS(1457), - [anon_sym_PERCENT_EQ] = ACTIONS(1457), - [anon_sym_CARET_EQ] = ACTIONS(1457), - [anon_sym_AMP_EQ] = ACTIONS(1457), - [anon_sym_PIPE_EQ] = ACTIONS(1457), - [anon_sym_LT_LT_EQ] = ACTIONS(1457), - [anon_sym_GT_GT_EQ] = ACTIONS(1457), - [anon_sym_EQ] = ACTIONS(1459), - [anon_sym_EQ_EQ] = ACTIONS(1457), - [anon_sym_BANG_EQ] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1757), - [anon_sym_GT_EQ] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1457), - [anon_sym__] = ACTIONS(1757), - [anon_sym_DOT] = ACTIONS(1459), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1457), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1759), - [anon_sym_COMMA] = ACTIONS(1457), - [anon_sym_COLON_COLON] = ACTIONS(1759), - [anon_sym_POUND] = ACTIONS(1759), - [anon_sym_as] = ACTIONS(1459), - [anon_sym_const] = ACTIONS(1757), - [anon_sym_default] = ACTIONS(1757), - [anon_sym_gen] = ACTIONS(1757), - [anon_sym_union] = ACTIONS(1757), - [anon_sym_ref] = ACTIONS(1757), - [sym_mutable_specifier] = ACTIONS(1757), - [sym_integer_literal] = ACTIONS(1759), - [aux_sym_string_literal_token1] = ACTIONS(1759), - [sym_char_literal] = ACTIONS(1759), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = ACTIONS(1757), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1757), - [sym_super] = ACTIONS(1757), - [sym_crate] = ACTIONS(1757), - [sym_metavariable] = ACTIONS(1759), - [sym__raw_string_literal_start] = ACTIONS(1759), - [sym_float_literal] = ACTIONS(1759), + [STATE(445)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(3083), + [sym_bracketed_type] = STATE(3760), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3493), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2574), + [sym_scoped_identifier] = STATE(2322), + [sym_scoped_type_identifier] = STATE(2296), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2800), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), + [sym_line_comment] = STATE(445), + [sym_block_comment] = STATE(445), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1463), + [anon_sym_LPAREN] = ACTIONS(1465), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_RBRACK] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1469), + [anon_sym_i8] = ACTIONS(1469), + [anon_sym_u16] = ACTIONS(1469), + [anon_sym_i16] = ACTIONS(1469), + [anon_sym_u32] = ACTIONS(1469), + [anon_sym_i32] = ACTIONS(1469), + [anon_sym_u64] = ACTIONS(1469), + [anon_sym_i64] = ACTIONS(1469), + [anon_sym_u128] = ACTIONS(1469), + [anon_sym_i128] = ACTIONS(1469), + [anon_sym_isize] = ACTIONS(1469), + [anon_sym_usize] = ACTIONS(1469), + [anon_sym_f32] = ACTIONS(1469), + [anon_sym_f64] = ACTIONS(1469), + [anon_sym_bool] = ACTIONS(1469), + [anon_sym_str] = ACTIONS(1469), + [anon_sym_char] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1471), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COMMA] = ACTIONS(1473), + [anon_sym_COLON_COLON] = ACTIONS(1475), + [anon_sym_SQUOTE] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_default] = ACTIONS(1477), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1479), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1479), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_ref] = ACTIONS(1109), + [anon_sym_dyn] = ACTIONS(1111), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1481), + [sym_super] = ACTIONS(1481), + [sym_crate] = ACTIONS(1481), + [sym_metavariable] = ACTIONS(1483), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, - [STATE(482)] = { - [sym_line_comment] = STATE(482), - [sym_block_comment] = STATE(482), - [sym_identifier] = ACTIONS(1503), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_RBRACE] = ACTIONS(1501), - [anon_sym_PLUS] = ACTIONS(1503), - [anon_sym_STAR] = ACTIONS(1503), - [anon_sym_QMARK] = ACTIONS(1501), - [anon_sym_u8] = ACTIONS(1503), - [anon_sym_i8] = ACTIONS(1503), - [anon_sym_u16] = ACTIONS(1503), - [anon_sym_i16] = ACTIONS(1503), - [anon_sym_u32] = ACTIONS(1503), - [anon_sym_i32] = ACTIONS(1503), - [anon_sym_u64] = ACTIONS(1503), - [anon_sym_i64] = ACTIONS(1503), - [anon_sym_u128] = ACTIONS(1503), - [anon_sym_i128] = ACTIONS(1503), - [anon_sym_isize] = ACTIONS(1503), - [anon_sym_usize] = ACTIONS(1503), - [anon_sym_f32] = ACTIONS(1503), - [anon_sym_f64] = ACTIONS(1503), - [anon_sym_bool] = ACTIONS(1503), - [anon_sym_str] = ACTIONS(1503), - [anon_sym_char] = ACTIONS(1503), - [anon_sym_DASH] = ACTIONS(1503), - [anon_sym_SLASH] = ACTIONS(1503), - [anon_sym_PERCENT] = ACTIONS(1503), - [anon_sym_CARET] = ACTIONS(1503), - [anon_sym_AMP] = ACTIONS(1503), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_PIPE_PIPE] = ACTIONS(1501), - [anon_sym_LT_LT] = ACTIONS(1503), - [anon_sym_GT_GT] = ACTIONS(1503), - [anon_sym_PLUS_EQ] = ACTIONS(1501), - [anon_sym_DASH_EQ] = ACTIONS(1501), - [anon_sym_STAR_EQ] = ACTIONS(1501), - [anon_sym_SLASH_EQ] = ACTIONS(1501), - [anon_sym_PERCENT_EQ] = ACTIONS(1501), - [anon_sym_CARET_EQ] = ACTIONS(1501), - [anon_sym_AMP_EQ] = ACTIONS(1501), - [anon_sym_PIPE_EQ] = ACTIONS(1501), - [anon_sym_LT_LT_EQ] = ACTIONS(1501), - [anon_sym_GT_GT_EQ] = ACTIONS(1501), - [anon_sym_EQ] = ACTIONS(1503), - [anon_sym_EQ_EQ] = ACTIONS(1501), - [anon_sym_BANG_EQ] = ACTIONS(1501), - [anon_sym_GT] = ACTIONS(1503), - [anon_sym_LT] = ACTIONS(1503), - [anon_sym_GT_EQ] = ACTIONS(1501), - [anon_sym_LT_EQ] = ACTIONS(1501), - [anon_sym__] = ACTIONS(1503), - [anon_sym_DOT] = ACTIONS(1503), - [anon_sym_DOT_DOT] = ACTIONS(1503), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1501), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1501), - [anon_sym_COMMA] = ACTIONS(1501), - [anon_sym_COLON_COLON] = ACTIONS(1501), - [anon_sym_POUND] = ACTIONS(1501), - [anon_sym_as] = ACTIONS(1503), - [anon_sym_const] = ACTIONS(1503), - [anon_sym_default] = ACTIONS(1503), - [anon_sym_gen] = ACTIONS(1503), - [anon_sym_union] = ACTIONS(1503), - [anon_sym_ref] = ACTIONS(1503), - [sym_mutable_specifier] = ACTIONS(1503), - [sym_integer_literal] = ACTIONS(1501), - [aux_sym_string_literal_token1] = ACTIONS(1501), - [sym_char_literal] = ACTIONS(1501), - [anon_sym_true] = ACTIONS(1503), - [anon_sym_false] = ACTIONS(1503), + [STATE(446)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2128), + [sym_bracketed_type] = STATE(3759), + [sym_lifetime] = STATE(884), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3486), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2626), + [sym_scoped_identifier] = STATE(2263), + [sym_scoped_type_identifier] = STATE(2296), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2290), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), + [sym_line_comment] = STATE(446), + [sym_block_comment] = STATE(446), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1053), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1065), + [anon_sym_i8] = ACTIONS(1065), + [anon_sym_u16] = ACTIONS(1065), + [anon_sym_i16] = ACTIONS(1065), + [anon_sym_u32] = ACTIONS(1065), + [anon_sym_i32] = ACTIONS(1065), + [anon_sym_u64] = ACTIONS(1065), + [anon_sym_i64] = ACTIONS(1065), + [anon_sym_u128] = ACTIONS(1065), + [anon_sym_i128] = ACTIONS(1065), + [anon_sym_isize] = ACTIONS(1065), + [anon_sym_usize] = ACTIONS(1065), + [anon_sym_f32] = ACTIONS(1065), + [anon_sym_f64] = ACTIONS(1065), + [anon_sym_bool] = ACTIONS(1065), + [anon_sym_str] = ACTIONS(1065), + [anon_sym_char] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1301), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1085), + [anon_sym_SQUOTE] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_default] = ACTIONS(1095), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1101), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1101), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_ref] = ACTIONS(1109), + [anon_sym_dyn] = ACTIONS(1111), + [sym_mutable_specifier] = ACTIONS(1485), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1503), - [sym_super] = ACTIONS(1503), - [sym_crate] = ACTIONS(1503), - [sym_metavariable] = ACTIONS(1501), - [sym__raw_string_literal_start] = ACTIONS(1501), - [sym_float_literal] = ACTIONS(1501), + [sym_self] = ACTIONS(1487), + [sym_super] = ACTIONS(1123), + [sym_crate] = ACTIONS(1123), + [sym_metavariable] = ACTIONS(1125), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, - [STATE(483)] = { - [sym_line_comment] = STATE(483), - [sym_block_comment] = STATE(483), - [sym_identifier] = ACTIONS(1491), - [anon_sym_LPAREN] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1489), - [anon_sym_RBRACE] = ACTIONS(1489), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1491), - [anon_sym_QMARK] = ACTIONS(1489), - [anon_sym_u8] = ACTIONS(1491), - [anon_sym_i8] = ACTIONS(1491), - [anon_sym_u16] = ACTIONS(1491), - [anon_sym_i16] = ACTIONS(1491), - [anon_sym_u32] = ACTIONS(1491), - [anon_sym_i32] = ACTIONS(1491), - [anon_sym_u64] = ACTIONS(1491), - [anon_sym_i64] = ACTIONS(1491), - [anon_sym_u128] = ACTIONS(1491), - [anon_sym_i128] = ACTIONS(1491), - [anon_sym_isize] = ACTIONS(1491), - [anon_sym_usize] = ACTIONS(1491), - [anon_sym_f32] = ACTIONS(1491), - [anon_sym_f64] = ACTIONS(1491), - [anon_sym_bool] = ACTIONS(1491), - [anon_sym_str] = ACTIONS(1491), - [anon_sym_char] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_SLASH] = ACTIONS(1491), - [anon_sym_PERCENT] = ACTIONS(1491), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PIPE] = ACTIONS(1491), - [anon_sym_AMP_AMP] = ACTIONS(1489), - [anon_sym_PIPE_PIPE] = ACTIONS(1489), - [anon_sym_LT_LT] = ACTIONS(1491), - [anon_sym_GT_GT] = ACTIONS(1491), - [anon_sym_PLUS_EQ] = ACTIONS(1489), - [anon_sym_DASH_EQ] = ACTIONS(1489), - [anon_sym_STAR_EQ] = ACTIONS(1489), - [anon_sym_SLASH_EQ] = ACTIONS(1489), - [anon_sym_PERCENT_EQ] = ACTIONS(1489), - [anon_sym_CARET_EQ] = ACTIONS(1489), - [anon_sym_AMP_EQ] = ACTIONS(1489), - [anon_sym_PIPE_EQ] = ACTIONS(1489), - [anon_sym_LT_LT_EQ] = ACTIONS(1489), - [anon_sym_GT_GT_EQ] = ACTIONS(1489), - [anon_sym_EQ] = ACTIONS(1491), - [anon_sym_EQ_EQ] = ACTIONS(1489), - [anon_sym_BANG_EQ] = ACTIONS(1489), - [anon_sym_GT] = ACTIONS(1491), - [anon_sym_LT] = ACTIONS(1491), - [anon_sym_GT_EQ] = ACTIONS(1489), - [anon_sym_LT_EQ] = ACTIONS(1489), - [anon_sym__] = ACTIONS(1491), - [anon_sym_DOT] = ACTIONS(1491), - [anon_sym_DOT_DOT] = ACTIONS(1491), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1489), - [anon_sym_COMMA] = ACTIONS(1489), - [anon_sym_COLON_COLON] = ACTIONS(1489), - [anon_sym_POUND] = ACTIONS(1489), - [anon_sym_as] = ACTIONS(1491), - [anon_sym_const] = ACTIONS(1491), - [anon_sym_default] = ACTIONS(1491), - [anon_sym_gen] = ACTIONS(1491), - [anon_sym_union] = ACTIONS(1491), - [anon_sym_ref] = ACTIONS(1491), + [STATE(447)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2122), + [sym_bracketed_type] = STATE(3759), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3486), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2626), + [sym_scoped_identifier] = STATE(2263), + [sym_scoped_type_identifier] = STATE(2296), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2243), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), + [sym_line_comment] = STATE(447), + [sym_block_comment] = STATE(447), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1053), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1065), + [anon_sym_i8] = ACTIONS(1065), + [anon_sym_u16] = ACTIONS(1065), + [anon_sym_i16] = ACTIONS(1065), + [anon_sym_u32] = ACTIONS(1065), + [anon_sym_i32] = ACTIONS(1065), + [anon_sym_u64] = ACTIONS(1065), + [anon_sym_i64] = ACTIONS(1065), + [anon_sym_u128] = ACTIONS(1065), + [anon_sym_i128] = ACTIONS(1065), + [anon_sym_isize] = ACTIONS(1065), + [anon_sym_usize] = ACTIONS(1065), + [anon_sym_f32] = ACTIONS(1065), + [anon_sym_f64] = ACTIONS(1065), + [anon_sym_bool] = ACTIONS(1065), + [anon_sym_str] = ACTIONS(1065), + [anon_sym_char] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1301), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1085), + [anon_sym_SQUOTE] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_default] = ACTIONS(1095), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1101), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1101), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_ref] = ACTIONS(1109), + [anon_sym_dyn] = ACTIONS(1111), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1123), + [sym_super] = ACTIONS(1123), + [sym_crate] = ACTIONS(1123), + [sym_metavariable] = ACTIONS(1125), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), + }, + [STATE(448)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2122), + [sym_bracketed_type] = STATE(3751), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2569), + [sym_scoped_identifier] = STATE(2379), + [sym_scoped_type_identifier] = STATE(2296), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2243), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), + [sym_line_comment] = STATE(448), + [sym_block_comment] = STATE(448), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1157), + [anon_sym_LPAREN] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1163), + [anon_sym_i8] = ACTIONS(1163), + [anon_sym_u16] = ACTIONS(1163), + [anon_sym_i16] = ACTIONS(1163), + [anon_sym_u32] = ACTIONS(1163), + [anon_sym_i32] = ACTIONS(1163), + [anon_sym_u64] = ACTIONS(1163), + [anon_sym_i64] = ACTIONS(1163), + [anon_sym_u128] = ACTIONS(1163), + [anon_sym_i128] = ACTIONS(1163), + [anon_sym_isize] = ACTIONS(1163), + [anon_sym_usize] = ACTIONS(1163), + [anon_sym_f32] = ACTIONS(1163), + [anon_sym_f64] = ACTIONS(1163), + [anon_sym_bool] = ACTIONS(1163), + [anon_sym_str] = ACTIONS(1163), + [anon_sym_char] = ACTIONS(1163), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1171), + [anon_sym_SQUOTE] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_default] = ACTIONS(1173), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1175), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1175), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_ref] = ACTIONS(1109), + [anon_sym_dyn] = ACTIONS(1111), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1179), + [sym_super] = ACTIONS(1179), + [sym_crate] = ACTIONS(1179), + [sym_metavariable] = ACTIONS(1181), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), + }, + [STATE(449)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2128), + [sym_bracketed_type] = STATE(3751), + [sym_lifetime] = STATE(889), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2569), + [sym_scoped_identifier] = STATE(2379), + [sym_scoped_type_identifier] = STATE(2296), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2290), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), + [sym_line_comment] = STATE(449), + [sym_block_comment] = STATE(449), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1157), + [anon_sym_LPAREN] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1163), + [anon_sym_i8] = ACTIONS(1163), + [anon_sym_u16] = ACTIONS(1163), + [anon_sym_i16] = ACTIONS(1163), + [anon_sym_u32] = ACTIONS(1163), + [anon_sym_i32] = ACTIONS(1163), + [anon_sym_u64] = ACTIONS(1163), + [anon_sym_i64] = ACTIONS(1163), + [anon_sym_u128] = ACTIONS(1163), + [anon_sym_i128] = ACTIONS(1163), + [anon_sym_isize] = ACTIONS(1163), + [anon_sym_usize] = ACTIONS(1163), + [anon_sym_f32] = ACTIONS(1163), + [anon_sym_f64] = ACTIONS(1163), + [anon_sym_bool] = ACTIONS(1163), + [anon_sym_str] = ACTIONS(1163), + [anon_sym_char] = ACTIONS(1163), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1171), + [anon_sym_SQUOTE] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_default] = ACTIONS(1173), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1175), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1175), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_ref] = ACTIONS(1109), + [anon_sym_dyn] = ACTIONS(1111), [sym_mutable_specifier] = ACTIONS(1491), - [sym_integer_literal] = ACTIONS(1489), - [aux_sym_string_literal_token1] = ACTIONS(1489), - [sym_char_literal] = ACTIONS(1489), - [anon_sym_true] = ACTIONS(1491), - [anon_sym_false] = ACTIONS(1491), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1491), - [sym_super] = ACTIONS(1491), - [sym_crate] = ACTIONS(1491), - [sym_metavariable] = ACTIONS(1489), - [sym__raw_string_literal_start] = ACTIONS(1489), - [sym_float_literal] = ACTIONS(1489), + [sym_self] = ACTIONS(1179), + [sym_super] = ACTIONS(1179), + [sym_crate] = ACTIONS(1179), + [sym_metavariable] = ACTIONS(1181), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, - [STATE(484)] = { - [sym_line_comment] = STATE(484), - [sym_block_comment] = STATE(484), - [sym_identifier] = ACTIONS(1495), - [anon_sym_LPAREN] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1493), - [anon_sym_RBRACE] = ACTIONS(1493), - [anon_sym_PLUS] = ACTIONS(1495), - [anon_sym_STAR] = ACTIONS(1495), - [anon_sym_QMARK] = ACTIONS(1493), - [anon_sym_u8] = ACTIONS(1495), - [anon_sym_i8] = ACTIONS(1495), - [anon_sym_u16] = ACTIONS(1495), - [anon_sym_i16] = ACTIONS(1495), - [anon_sym_u32] = ACTIONS(1495), - [anon_sym_i32] = ACTIONS(1495), - [anon_sym_u64] = ACTIONS(1495), - [anon_sym_i64] = ACTIONS(1495), - [anon_sym_u128] = ACTIONS(1495), - [anon_sym_i128] = ACTIONS(1495), - [anon_sym_isize] = ACTIONS(1495), - [anon_sym_usize] = ACTIONS(1495), - [anon_sym_f32] = ACTIONS(1495), - [anon_sym_f64] = ACTIONS(1495), - [anon_sym_bool] = ACTIONS(1495), - [anon_sym_str] = ACTIONS(1495), - [anon_sym_char] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1495), - [anon_sym_SLASH] = ACTIONS(1495), - [anon_sym_PERCENT] = ACTIONS(1495), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_PIPE] = ACTIONS(1495), - [anon_sym_AMP_AMP] = ACTIONS(1493), - [anon_sym_PIPE_PIPE] = ACTIONS(1493), - [anon_sym_LT_LT] = ACTIONS(1495), - [anon_sym_GT_GT] = ACTIONS(1495), - [anon_sym_PLUS_EQ] = ACTIONS(1493), - [anon_sym_DASH_EQ] = ACTIONS(1493), - [anon_sym_STAR_EQ] = ACTIONS(1493), - [anon_sym_SLASH_EQ] = ACTIONS(1493), - [anon_sym_PERCENT_EQ] = ACTIONS(1493), - [anon_sym_CARET_EQ] = ACTIONS(1493), - [anon_sym_AMP_EQ] = ACTIONS(1493), - [anon_sym_PIPE_EQ] = ACTIONS(1493), - [anon_sym_LT_LT_EQ] = ACTIONS(1493), - [anon_sym_GT_GT_EQ] = ACTIONS(1493), - [anon_sym_EQ] = ACTIONS(1495), - [anon_sym_EQ_EQ] = ACTIONS(1493), - [anon_sym_BANG_EQ] = ACTIONS(1493), - [anon_sym_GT] = ACTIONS(1495), - [anon_sym_LT] = ACTIONS(1495), - [anon_sym_GT_EQ] = ACTIONS(1493), - [anon_sym_LT_EQ] = ACTIONS(1493), - [anon_sym__] = ACTIONS(1495), - [anon_sym_DOT] = ACTIONS(1495), - [anon_sym_DOT_DOT] = ACTIONS(1495), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1493), - [anon_sym_COMMA] = ACTIONS(1493), - [anon_sym_COLON_COLON] = ACTIONS(1493), - [anon_sym_POUND] = ACTIONS(1493), - [anon_sym_as] = ACTIONS(1495), - [anon_sym_const] = ACTIONS(1495), - [anon_sym_default] = ACTIONS(1495), - [anon_sym_gen] = ACTIONS(1495), - [anon_sym_union] = ACTIONS(1495), - [anon_sym_ref] = ACTIONS(1495), + [STATE(450)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2122), + [sym_bracketed_type] = STATE(3760), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3493), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2574), + [sym_scoped_identifier] = STATE(2322), + [sym_scoped_type_identifier] = STATE(2296), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2243), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), + [sym_line_comment] = STATE(450), + [sym_block_comment] = STATE(450), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1463), + [anon_sym_LPAREN] = ACTIONS(1465), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1469), + [anon_sym_i8] = ACTIONS(1469), + [anon_sym_u16] = ACTIONS(1469), + [anon_sym_i16] = ACTIONS(1469), + [anon_sym_u32] = ACTIONS(1469), + [anon_sym_i32] = ACTIONS(1469), + [anon_sym_u64] = ACTIONS(1469), + [anon_sym_i64] = ACTIONS(1469), + [anon_sym_u128] = ACTIONS(1469), + [anon_sym_i128] = ACTIONS(1469), + [anon_sym_isize] = ACTIONS(1469), + [anon_sym_usize] = ACTIONS(1469), + [anon_sym_f32] = ACTIONS(1469), + [anon_sym_f64] = ACTIONS(1469), + [anon_sym_bool] = ACTIONS(1469), + [anon_sym_str] = ACTIONS(1469), + [anon_sym_char] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1471), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1475), + [anon_sym_SQUOTE] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_default] = ACTIONS(1477), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1479), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1479), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_ref] = ACTIONS(1109), + [anon_sym_dyn] = ACTIONS(1111), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1481), + [sym_super] = ACTIONS(1481), + [sym_crate] = ACTIONS(1481), + [sym_metavariable] = ACTIONS(1483), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), + }, + [STATE(451)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2128), + [sym_bracketed_type] = STATE(3759), + [sym_lifetime] = STATE(889), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3486), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2626), + [sym_scoped_identifier] = STATE(2263), + [sym_scoped_type_identifier] = STATE(2296), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2290), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), + [sym_line_comment] = STATE(451), + [sym_block_comment] = STATE(451), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1053), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1065), + [anon_sym_i8] = ACTIONS(1065), + [anon_sym_u16] = ACTIONS(1065), + [anon_sym_i16] = ACTIONS(1065), + [anon_sym_u32] = ACTIONS(1065), + [anon_sym_i32] = ACTIONS(1065), + [anon_sym_u64] = ACTIONS(1065), + [anon_sym_i64] = ACTIONS(1065), + [anon_sym_u128] = ACTIONS(1065), + [anon_sym_i128] = ACTIONS(1065), + [anon_sym_isize] = ACTIONS(1065), + [anon_sym_usize] = ACTIONS(1065), + [anon_sym_f32] = ACTIONS(1065), + [anon_sym_f64] = ACTIONS(1065), + [anon_sym_bool] = ACTIONS(1065), + [anon_sym_str] = ACTIONS(1065), + [anon_sym_char] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1301), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1085), + [anon_sym_SQUOTE] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_default] = ACTIONS(1095), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1101), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1101), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_ref] = ACTIONS(1109), + [anon_sym_dyn] = ACTIONS(1111), + [sym_mutable_specifier] = ACTIONS(1493), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1123), + [sym_super] = ACTIONS(1123), + [sym_crate] = ACTIONS(1123), + [sym_metavariable] = ACTIONS(1125), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), + }, + [STATE(452)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2128), + [sym_bracketed_type] = STATE(3751), + [sym_lifetime] = STATE(884), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2569), + [sym_scoped_identifier] = STATE(2379), + [sym_scoped_type_identifier] = STATE(2296), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2290), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), + [sym_line_comment] = STATE(452), + [sym_block_comment] = STATE(452), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1157), + [anon_sym_LPAREN] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1163), + [anon_sym_i8] = ACTIONS(1163), + [anon_sym_u16] = ACTIONS(1163), + [anon_sym_i16] = ACTIONS(1163), + [anon_sym_u32] = ACTIONS(1163), + [anon_sym_i32] = ACTIONS(1163), + [anon_sym_u64] = ACTIONS(1163), + [anon_sym_i64] = ACTIONS(1163), + [anon_sym_u128] = ACTIONS(1163), + [anon_sym_i128] = ACTIONS(1163), + [anon_sym_isize] = ACTIONS(1163), + [anon_sym_usize] = ACTIONS(1163), + [anon_sym_f32] = ACTIONS(1163), + [anon_sym_f64] = ACTIONS(1163), + [anon_sym_bool] = ACTIONS(1163), + [anon_sym_str] = ACTIONS(1163), + [anon_sym_char] = ACTIONS(1163), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1171), + [anon_sym_SQUOTE] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_default] = ACTIONS(1173), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1175), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1175), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_ref] = ACTIONS(1109), + [anon_sym_dyn] = ACTIONS(1111), [sym_mutable_specifier] = ACTIONS(1495), - [sym_integer_literal] = ACTIONS(1493), - [aux_sym_string_literal_token1] = ACTIONS(1493), - [sym_char_literal] = ACTIONS(1493), - [anon_sym_true] = ACTIONS(1495), - [anon_sym_false] = ACTIONS(1495), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1495), - [sym_super] = ACTIONS(1495), - [sym_crate] = ACTIONS(1495), - [sym_metavariable] = ACTIONS(1493), - [sym__raw_string_literal_start] = ACTIONS(1493), - [sym_float_literal] = ACTIONS(1493), + [sym_self] = ACTIONS(1497), + [sym_super] = ACTIONS(1179), + [sym_crate] = ACTIONS(1179), + [sym_metavariable] = ACTIONS(1181), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, - [STATE(485)] = { - [sym_line_comment] = STATE(485), - [sym_block_comment] = STATE(485), - [sym_identifier] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1475), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1477), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_QMARK] = ACTIONS(1475), - [anon_sym_u8] = ACTIONS(1477), - [anon_sym_i8] = ACTIONS(1477), - [anon_sym_u16] = ACTIONS(1477), - [anon_sym_i16] = ACTIONS(1477), - [anon_sym_u32] = ACTIONS(1477), - [anon_sym_i32] = ACTIONS(1477), - [anon_sym_u64] = ACTIONS(1477), - [anon_sym_i64] = ACTIONS(1477), - [anon_sym_u128] = ACTIONS(1477), - [anon_sym_i128] = ACTIONS(1477), - [anon_sym_isize] = ACTIONS(1477), - [anon_sym_usize] = ACTIONS(1477), - [anon_sym_f32] = ACTIONS(1477), - [anon_sym_f64] = ACTIONS(1477), - [anon_sym_bool] = ACTIONS(1477), - [anon_sym_str] = ACTIONS(1477), - [anon_sym_char] = ACTIONS(1477), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_PERCENT] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_PIPE] = ACTIONS(1477), - [anon_sym_AMP_AMP] = ACTIONS(1475), - [anon_sym_PIPE_PIPE] = ACTIONS(1475), - [anon_sym_LT_LT] = ACTIONS(1477), - [anon_sym_GT_GT] = ACTIONS(1477), - [anon_sym_PLUS_EQ] = ACTIONS(1475), - [anon_sym_DASH_EQ] = ACTIONS(1475), - [anon_sym_STAR_EQ] = ACTIONS(1475), - [anon_sym_SLASH_EQ] = ACTIONS(1475), - [anon_sym_PERCENT_EQ] = ACTIONS(1475), - [anon_sym_CARET_EQ] = ACTIONS(1475), - [anon_sym_AMP_EQ] = ACTIONS(1475), - [anon_sym_PIPE_EQ] = ACTIONS(1475), - [anon_sym_LT_LT_EQ] = ACTIONS(1475), - [anon_sym_GT_GT_EQ] = ACTIONS(1475), - [anon_sym_EQ] = ACTIONS(1477), - [anon_sym_EQ_EQ] = ACTIONS(1475), - [anon_sym_BANG_EQ] = ACTIONS(1475), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT_EQ] = ACTIONS(1475), - [anon_sym_LT_EQ] = ACTIONS(1475), - [anon_sym__] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_DOT_DOT] = ACTIONS(1477), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1475), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1475), - [anon_sym_COMMA] = ACTIONS(1475), + [STATE(453)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2122), + [sym_bracketed_type] = STATE(3751), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2569), + [sym_scoped_identifier] = STATE(2379), + [sym_scoped_type_identifier] = STATE(2296), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2243), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), + [sym_line_comment] = STATE(453), + [sym_block_comment] = STATE(453), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1157), + [anon_sym_LPAREN] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1163), + [anon_sym_i8] = ACTIONS(1163), + [anon_sym_u16] = ACTIONS(1163), + [anon_sym_i16] = ACTIONS(1163), + [anon_sym_u32] = ACTIONS(1163), + [anon_sym_i32] = ACTIONS(1163), + [anon_sym_u64] = ACTIONS(1163), + [anon_sym_i64] = ACTIONS(1163), + [anon_sym_u128] = ACTIONS(1163), + [anon_sym_i128] = ACTIONS(1163), + [anon_sym_isize] = ACTIONS(1163), + [anon_sym_usize] = ACTIONS(1163), + [anon_sym_f32] = ACTIONS(1163), + [anon_sym_f64] = ACTIONS(1163), + [anon_sym_bool] = ACTIONS(1163), + [anon_sym_str] = ACTIONS(1163), + [anon_sym_char] = ACTIONS(1163), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1171), + [anon_sym_SQUOTE] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_default] = ACTIONS(1173), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1175), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1175), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_ref] = ACTIONS(1109), + [anon_sym_dyn] = ACTIONS(1111), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1499), + [sym_super] = ACTIONS(1179), + [sym_crate] = ACTIONS(1179), + [sym_metavariable] = ACTIONS(1181), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), + }, + [STATE(454)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2128), + [sym_bracketed_type] = STATE(3760), + [sym_lifetime] = STATE(889), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3493), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2574), + [sym_scoped_identifier] = STATE(2322), + [sym_scoped_type_identifier] = STATE(2296), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2290), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), + [sym_line_comment] = STATE(454), + [sym_block_comment] = STATE(454), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1463), + [anon_sym_LPAREN] = ACTIONS(1465), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1469), + [anon_sym_i8] = ACTIONS(1469), + [anon_sym_u16] = ACTIONS(1469), + [anon_sym_i16] = ACTIONS(1469), + [anon_sym_u32] = ACTIONS(1469), + [anon_sym_i32] = ACTIONS(1469), + [anon_sym_u64] = ACTIONS(1469), + [anon_sym_i64] = ACTIONS(1469), + [anon_sym_u128] = ACTIONS(1469), + [anon_sym_i128] = ACTIONS(1469), + [anon_sym_isize] = ACTIONS(1469), + [anon_sym_usize] = ACTIONS(1469), + [anon_sym_f32] = ACTIONS(1469), + [anon_sym_f64] = ACTIONS(1469), + [anon_sym_bool] = ACTIONS(1469), + [anon_sym_str] = ACTIONS(1469), + [anon_sym_char] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1471), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), [anon_sym_COLON_COLON] = ACTIONS(1475), - [anon_sym_POUND] = ACTIONS(1475), - [anon_sym_as] = ACTIONS(1477), - [anon_sym_const] = ACTIONS(1477), + [anon_sym_SQUOTE] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1093), [anon_sym_default] = ACTIONS(1477), - [anon_sym_gen] = ACTIONS(1477), - [anon_sym_union] = ACTIONS(1477), - [anon_sym_ref] = ACTIONS(1477), - [sym_mutable_specifier] = ACTIONS(1477), - [sym_integer_literal] = ACTIONS(1475), - [aux_sym_string_literal_token1] = ACTIONS(1475), - [sym_char_literal] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1477), - [anon_sym_false] = ACTIONS(1477), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1477), - [sym_super] = ACTIONS(1477), - [sym_crate] = ACTIONS(1477), - [sym_metavariable] = ACTIONS(1475), - [sym__raw_string_literal_start] = ACTIONS(1475), - [sym_float_literal] = ACTIONS(1475), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1479), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1479), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_ref] = ACTIONS(1109), + [anon_sym_dyn] = ACTIONS(1111), + [sym_mutable_specifier] = ACTIONS(1501), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1481), + [sym_super] = ACTIONS(1481), + [sym_crate] = ACTIONS(1481), + [sym_metavariable] = ACTIONS(1483), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, - [STATE(486)] = { - [sym_line_comment] = STATE(486), - [sym_block_comment] = STATE(486), - [sym_identifier] = ACTIONS(1511), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_LBRACK] = ACTIONS(1509), - [anon_sym_RBRACE] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1511), + [STATE(455)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2122), + [sym_bracketed_type] = STATE(3759), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3486), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2626), + [sym_scoped_identifier] = STATE(2263), + [sym_scoped_type_identifier] = STATE(2296), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2243), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), + [sym_line_comment] = STATE(455), + [sym_block_comment] = STATE(455), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1053), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1065), + [anon_sym_i8] = ACTIONS(1065), + [anon_sym_u16] = ACTIONS(1065), + [anon_sym_i16] = ACTIONS(1065), + [anon_sym_u32] = ACTIONS(1065), + [anon_sym_i32] = ACTIONS(1065), + [anon_sym_u64] = ACTIONS(1065), + [anon_sym_i64] = ACTIONS(1065), + [anon_sym_u128] = ACTIONS(1065), + [anon_sym_i128] = ACTIONS(1065), + [anon_sym_isize] = ACTIONS(1065), + [anon_sym_usize] = ACTIONS(1065), + [anon_sym_f32] = ACTIONS(1065), + [anon_sym_f64] = ACTIONS(1065), + [anon_sym_bool] = ACTIONS(1065), + [anon_sym_str] = ACTIONS(1065), + [anon_sym_char] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1301), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1085), + [anon_sym_SQUOTE] = ACTIONS(1089), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_default] = ACTIONS(1095), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1101), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1101), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_ref] = ACTIONS(1109), + [anon_sym_dyn] = ACTIONS(1111), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1503), + [sym_super] = ACTIONS(1123), + [sym_crate] = ACTIONS(1123), + [sym_metavariable] = ACTIONS(1125), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), + }, + [STATE(456)] = { + [sym_line_comment] = STATE(456), + [sym_block_comment] = STATE(456), + [sym_identifier] = ACTIONS(1505), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_RPAREN] = ACTIONS(1507), + [anon_sym_LBRACK] = ACTIONS(1507), + [anon_sym_RBRACK] = ACTIONS(1507), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(1507), + [anon_sym_COLON] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1505), + [anon_sym_STAR] = ACTIONS(1505), + [anon_sym_QMARK] = ACTIONS(1507), + [anon_sym_u8] = ACTIONS(1505), + [anon_sym_i8] = ACTIONS(1505), + [anon_sym_u16] = ACTIONS(1505), + [anon_sym_i16] = ACTIONS(1505), + [anon_sym_u32] = ACTIONS(1505), + [anon_sym_i32] = ACTIONS(1505), + [anon_sym_u64] = ACTIONS(1505), + [anon_sym_i64] = ACTIONS(1505), + [anon_sym_u128] = ACTIONS(1505), + [anon_sym_i128] = ACTIONS(1505), + [anon_sym_isize] = ACTIONS(1505), + [anon_sym_usize] = ACTIONS(1505), + [anon_sym_f32] = ACTIONS(1505), + [anon_sym_f64] = ACTIONS(1505), + [anon_sym_bool] = ACTIONS(1505), + [anon_sym_str] = ACTIONS(1505), + [anon_sym_char] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_SLASH] = ACTIONS(1505), + [anon_sym_PERCENT] = ACTIONS(1505), + [anon_sym_CARET] = ACTIONS(1505), + [anon_sym_BANG] = ACTIONS(1505), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_PIPE] = ACTIONS(1505), + [anon_sym_AMP_AMP] = ACTIONS(1507), + [anon_sym_PIPE_PIPE] = ACTIONS(1507), + [anon_sym_LT_LT] = ACTIONS(1505), + [anon_sym_GT_GT] = ACTIONS(1505), + [anon_sym_PLUS_EQ] = ACTIONS(1507), + [anon_sym_DASH_EQ] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1507), + [anon_sym_SLASH_EQ] = ACTIONS(1507), + [anon_sym_PERCENT_EQ] = ACTIONS(1507), + [anon_sym_CARET_EQ] = ACTIONS(1507), + [anon_sym_AMP_EQ] = ACTIONS(1507), + [anon_sym_PIPE_EQ] = ACTIONS(1507), + [anon_sym_LT_LT_EQ] = ACTIONS(1507), + [anon_sym_GT_GT_EQ] = ACTIONS(1507), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_EQ_EQ] = ACTIONS(1507), + [anon_sym_BANG_EQ] = ACTIONS(1507), + [anon_sym_GT] = ACTIONS(1505), + [anon_sym_LT] = ACTIONS(1505), + [anon_sym_GT_EQ] = ACTIONS(1507), + [anon_sym_LT_EQ] = ACTIONS(1507), + [anon_sym_DOT] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1505), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1507), + [anon_sym_COMMA] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(1507), + [anon_sym_POUND] = ACTIONS(1507), + [anon_sym_SQUOTE] = ACTIONS(1505), + [anon_sym_as] = ACTIONS(1505), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_break] = ACTIONS(1505), + [anon_sym_const] = ACTIONS(1505), + [anon_sym_continue] = ACTIONS(1505), + [anon_sym_default] = ACTIONS(1505), + [anon_sym_for] = ACTIONS(1505), + [anon_sym_gen] = ACTIONS(1505), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_loop] = ACTIONS(1505), + [anon_sym_match] = ACTIONS(1505), + [anon_sym_return] = ACTIONS(1505), + [anon_sym_static] = ACTIONS(1505), + [anon_sym_union] = ACTIONS(1505), + [anon_sym_unsafe] = ACTIONS(1505), + [anon_sym_while] = ACTIONS(1505), + [anon_sym_else] = ACTIONS(1505), + [anon_sym_yield] = ACTIONS(1505), + [anon_sym_move] = ACTIONS(1505), + [anon_sym_try] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1507), + [aux_sym_string_literal_token1] = ACTIONS(1507), + [sym_char_literal] = ACTIONS(1507), + [anon_sym_true] = ACTIONS(1505), + [anon_sym_false] = ACTIONS(1505), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1505), + [sym_super] = ACTIONS(1505), + [sym_crate] = ACTIONS(1505), + [sym_metavariable] = ACTIONS(1507), + [sym__raw_string_literal_start] = ACTIONS(1507), + [sym_float_literal] = ACTIONS(1507), + }, + [STATE(457)] = { + [sym_line_comment] = STATE(457), + [sym_block_comment] = STATE(457), + [sym_identifier] = ACTIONS(1505), + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_LBRACK] = ACTIONS(1507), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(1507), + [anon_sym_COLON] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1505), + [anon_sym_STAR] = ACTIONS(1505), + [anon_sym_QMARK] = ACTIONS(1507), + [anon_sym_u8] = ACTIONS(1505), + [anon_sym_i8] = ACTIONS(1505), + [anon_sym_u16] = ACTIONS(1505), + [anon_sym_i16] = ACTIONS(1505), + [anon_sym_u32] = ACTIONS(1505), + [anon_sym_i32] = ACTIONS(1505), + [anon_sym_u64] = ACTIONS(1505), + [anon_sym_i64] = ACTIONS(1505), + [anon_sym_u128] = ACTIONS(1505), + [anon_sym_i128] = ACTIONS(1505), + [anon_sym_isize] = ACTIONS(1505), + [anon_sym_usize] = ACTIONS(1505), + [anon_sym_f32] = ACTIONS(1505), + [anon_sym_f64] = ACTIONS(1505), + [anon_sym_bool] = ACTIONS(1505), + [anon_sym_str] = ACTIONS(1505), + [anon_sym_char] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_SLASH] = ACTIONS(1505), + [anon_sym_PERCENT] = ACTIONS(1505), + [anon_sym_CARET] = ACTIONS(1505), + [anon_sym_BANG] = ACTIONS(1505), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_PIPE] = ACTIONS(1505), + [anon_sym_AMP_AMP] = ACTIONS(1507), + [anon_sym_PIPE_PIPE] = ACTIONS(1507), + [anon_sym_LT_LT] = ACTIONS(1505), + [anon_sym_GT_GT] = ACTIONS(1505), + [anon_sym_PLUS_EQ] = ACTIONS(1507), + [anon_sym_DASH_EQ] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1507), + [anon_sym_SLASH_EQ] = ACTIONS(1507), + [anon_sym_PERCENT_EQ] = ACTIONS(1507), + [anon_sym_CARET_EQ] = ACTIONS(1507), + [anon_sym_AMP_EQ] = ACTIONS(1507), + [anon_sym_PIPE_EQ] = ACTIONS(1507), + [anon_sym_LT_LT_EQ] = ACTIONS(1507), + [anon_sym_GT_GT_EQ] = ACTIONS(1507), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_EQ_EQ] = ACTIONS(1507), + [anon_sym_BANG_EQ] = ACTIONS(1507), + [anon_sym_GT] = ACTIONS(1505), + [anon_sym_LT] = ACTIONS(1505), + [anon_sym_GT_EQ] = ACTIONS(1507), + [anon_sym_LT_EQ] = ACTIONS(1507), + [anon_sym_DOT] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1505), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(1507), + [anon_sym_POUND] = ACTIONS(1507), + [anon_sym_SQUOTE] = ACTIONS(1505), + [anon_sym_as] = ACTIONS(1505), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_break] = ACTIONS(1505), + [anon_sym_const] = ACTIONS(1505), + [anon_sym_continue] = ACTIONS(1505), + [anon_sym_default] = ACTIONS(1505), + [anon_sym_for] = ACTIONS(1505), + [anon_sym_gen] = ACTIONS(1505), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_loop] = ACTIONS(1505), + [anon_sym_match] = ACTIONS(1505), + [anon_sym_return] = ACTIONS(1505), + [anon_sym_static] = ACTIONS(1505), + [anon_sym_union] = ACTIONS(1505), + [anon_sym_unsafe] = ACTIONS(1505), + [anon_sym_while] = ACTIONS(1505), + [anon_sym_yield] = ACTIONS(1505), + [anon_sym_move] = ACTIONS(1505), + [anon_sym_try] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1507), + [aux_sym_string_literal_token1] = ACTIONS(1507), + [sym_char_literal] = ACTIONS(1507), + [anon_sym_true] = ACTIONS(1505), + [anon_sym_false] = ACTIONS(1505), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1505), + [sym_super] = ACTIONS(1505), + [sym_crate] = ACTIONS(1505), + [sym_metavariable] = ACTIONS(1507), + [sym__raw_string_literal_start] = ACTIONS(1507), + [sym_float_literal] = ACTIONS(1507), + }, + [STATE(458)] = { + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2262), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), + [sym_line_comment] = STATE(458), + [sym_block_comment] = STATE(458), + [sym_identifier] = ACTIONS(1509), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_LBRACK] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(1511), [anon_sym_STAR] = ACTIONS(1511), - [anon_sym_QMARK] = ACTIONS(1509), - [anon_sym_u8] = ACTIONS(1511), - [anon_sym_i8] = ACTIONS(1511), - [anon_sym_u16] = ACTIONS(1511), - [anon_sym_i16] = ACTIONS(1511), - [anon_sym_u32] = ACTIONS(1511), - [anon_sym_i32] = ACTIONS(1511), - [anon_sym_u64] = ACTIONS(1511), - [anon_sym_i64] = ACTIONS(1511), - [anon_sym_u128] = ACTIONS(1511), - [anon_sym_i128] = ACTIONS(1511), - [anon_sym_isize] = ACTIONS(1511), - [anon_sym_usize] = ACTIONS(1511), - [anon_sym_f32] = ACTIONS(1511), - [anon_sym_f64] = ACTIONS(1511), - [anon_sym_bool] = ACTIONS(1511), - [anon_sym_str] = ACTIONS(1511), - [anon_sym_char] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_SLASH] = ACTIONS(1511), - [anon_sym_PERCENT] = ACTIONS(1511), - [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_u8] = ACTIONS(1509), + [anon_sym_i8] = ACTIONS(1509), + [anon_sym_u16] = ACTIONS(1509), + [anon_sym_i16] = ACTIONS(1509), + [anon_sym_u32] = ACTIONS(1509), + [anon_sym_i32] = ACTIONS(1509), + [anon_sym_u64] = ACTIONS(1509), + [anon_sym_i64] = ACTIONS(1509), + [anon_sym_u128] = ACTIONS(1509), + [anon_sym_i128] = ACTIONS(1509), + [anon_sym_isize] = ACTIONS(1509), + [anon_sym_usize] = ACTIONS(1509), + [anon_sym_f32] = ACTIONS(1509), + [anon_sym_f64] = ACTIONS(1509), + [anon_sym_bool] = ACTIONS(1509), + [anon_sym_str] = ACTIONS(1509), + [anon_sym_char] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(1511), [anon_sym_AMP] = ACTIONS(1511), [anon_sym_PIPE] = ACTIONS(1511), - [anon_sym_AMP_AMP] = ACTIONS(1509), - [anon_sym_PIPE_PIPE] = ACTIONS(1509), - [anon_sym_LT_LT] = ACTIONS(1511), - [anon_sym_GT_GT] = ACTIONS(1511), - [anon_sym_PLUS_EQ] = ACTIONS(1509), - [anon_sym_DASH_EQ] = ACTIONS(1509), - [anon_sym_STAR_EQ] = ACTIONS(1509), - [anon_sym_SLASH_EQ] = ACTIONS(1509), - [anon_sym_PERCENT_EQ] = ACTIONS(1509), - [anon_sym_CARET_EQ] = ACTIONS(1509), - [anon_sym_AMP_EQ] = ACTIONS(1509), - [anon_sym_PIPE_EQ] = ACTIONS(1509), - [anon_sym_LT_LT_EQ] = ACTIONS(1509), - [anon_sym_GT_GT_EQ] = ACTIONS(1509), - [anon_sym_EQ] = ACTIONS(1511), - [anon_sym_EQ_EQ] = ACTIONS(1509), - [anon_sym_BANG_EQ] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1511), [anon_sym_LT] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1509), - [anon_sym_LT_EQ] = ACTIONS(1509), - [anon_sym__] = ACTIONS(1511), - [anon_sym_DOT] = ACTIONS(1511), - [anon_sym_DOT_DOT] = ACTIONS(1511), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1509), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1509), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_COLON_COLON] = ACTIONS(1509), - [anon_sym_POUND] = ACTIONS(1509), - [anon_sym_as] = ACTIONS(1511), - [anon_sym_const] = ACTIONS(1511), - [anon_sym_default] = ACTIONS(1511), - [anon_sym_gen] = ACTIONS(1511), - [anon_sym_union] = ACTIONS(1511), - [anon_sym_ref] = ACTIONS(1511), - [sym_mutable_specifier] = ACTIONS(1511), - [sym_integer_literal] = ACTIONS(1509), - [aux_sym_string_literal_token1] = ACTIONS(1509), - [sym_char_literal] = ACTIONS(1509), - [anon_sym_true] = ACTIONS(1511), - [anon_sym_false] = ACTIONS(1511), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1511), - [sym_super] = ACTIONS(1511), - [sym_crate] = ACTIONS(1511), - [sym_metavariable] = ACTIONS(1509), - [sym__raw_string_literal_start] = ACTIONS(1509), - [sym_float_literal] = ACTIONS(1509), + [anon_sym__] = ACTIONS(1509), + [anon_sym_DOT_DOT] = ACTIONS(1509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1511), + [anon_sym_DASH_GT] = ACTIONS(1511), + [anon_sym_POUND] = ACTIONS(1511), + [anon_sym_SQUOTE] = ACTIONS(1509), + [anon_sym_async] = ACTIONS(1509), + [anon_sym_break] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_continue] = ACTIONS(1509), + [anon_sym_default] = ACTIONS(1509), + [anon_sym_for] = ACTIONS(1509), + [anon_sym_gen] = ACTIONS(1509), + [anon_sym_if] = ACTIONS(1509), + [anon_sym_loop] = ACTIONS(1509), + [anon_sym_match] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_union] = ACTIONS(1509), + [anon_sym_unsafe] = ACTIONS(1509), + [anon_sym_while] = ACTIONS(1509), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [anon_sym_yield] = ACTIONS(1509), + [anon_sym_move] = ACTIONS(1509), + [anon_sym_try] = ACTIONS(1509), + [sym_integer_literal] = ACTIONS(1511), + [aux_sym_string_literal_token1] = ACTIONS(1511), + [sym_char_literal] = ACTIONS(1511), + [anon_sym_true] = ACTIONS(1509), + [anon_sym_false] = ACTIONS(1509), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1509), + [sym_super] = ACTIONS(1509), + [sym_crate] = ACTIONS(1509), + [sym_metavariable] = ACTIONS(1511), + [sym__raw_string_literal_start] = ACTIONS(1511), + [sym_float_literal] = ACTIONS(1511), }, - [STATE(487)] = { - [sym_line_comment] = STATE(487), - [sym_block_comment] = STATE(487), - [sym_identifier] = ACTIONS(1515), - [anon_sym_LPAREN] = ACTIONS(1513), - [anon_sym_LBRACK] = ACTIONS(1513), - [anon_sym_RBRACE] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1515), + [STATE(459)] = { + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2248), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), + [sym_line_comment] = STATE(459), + [sym_block_comment] = STATE(459), + [sym_identifier] = ACTIONS(1513), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1515), + [anon_sym_LBRACE] = ACTIONS(1515), [anon_sym_STAR] = ACTIONS(1515), - [anon_sym_QMARK] = ACTIONS(1513), - [anon_sym_u8] = ACTIONS(1515), - [anon_sym_i8] = ACTIONS(1515), - [anon_sym_u16] = ACTIONS(1515), - [anon_sym_i16] = ACTIONS(1515), - [anon_sym_u32] = ACTIONS(1515), - [anon_sym_i32] = ACTIONS(1515), - [anon_sym_u64] = ACTIONS(1515), - [anon_sym_i64] = ACTIONS(1515), - [anon_sym_u128] = ACTIONS(1515), - [anon_sym_i128] = ACTIONS(1515), - [anon_sym_isize] = ACTIONS(1515), - [anon_sym_usize] = ACTIONS(1515), - [anon_sym_f32] = ACTIONS(1515), - [anon_sym_f64] = ACTIONS(1515), - [anon_sym_bool] = ACTIONS(1515), - [anon_sym_str] = ACTIONS(1515), - [anon_sym_char] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1515), - [anon_sym_PERCENT] = ACTIONS(1515), - [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_u8] = ACTIONS(1513), + [anon_sym_i8] = ACTIONS(1513), + [anon_sym_u16] = ACTIONS(1513), + [anon_sym_i16] = ACTIONS(1513), + [anon_sym_u32] = ACTIONS(1513), + [anon_sym_i32] = ACTIONS(1513), + [anon_sym_u64] = ACTIONS(1513), + [anon_sym_i64] = ACTIONS(1513), + [anon_sym_u128] = ACTIONS(1513), + [anon_sym_i128] = ACTIONS(1513), + [anon_sym_isize] = ACTIONS(1513), + [anon_sym_usize] = ACTIONS(1513), + [anon_sym_f32] = ACTIONS(1513), + [anon_sym_f64] = ACTIONS(1513), + [anon_sym_bool] = ACTIONS(1513), + [anon_sym_str] = ACTIONS(1513), + [anon_sym_char] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_BANG] = ACTIONS(1515), [anon_sym_AMP] = ACTIONS(1515), [anon_sym_PIPE] = ACTIONS(1515), - [anon_sym_AMP_AMP] = ACTIONS(1513), - [anon_sym_PIPE_PIPE] = ACTIONS(1513), - [anon_sym_LT_LT] = ACTIONS(1515), - [anon_sym_GT_GT] = ACTIONS(1515), - [anon_sym_PLUS_EQ] = ACTIONS(1513), - [anon_sym_DASH_EQ] = ACTIONS(1513), - [anon_sym_STAR_EQ] = ACTIONS(1513), - [anon_sym_SLASH_EQ] = ACTIONS(1513), - [anon_sym_PERCENT_EQ] = ACTIONS(1513), - [anon_sym_CARET_EQ] = ACTIONS(1513), - [anon_sym_AMP_EQ] = ACTIONS(1513), - [anon_sym_PIPE_EQ] = ACTIONS(1513), - [anon_sym_LT_LT_EQ] = ACTIONS(1513), - [anon_sym_GT_GT_EQ] = ACTIONS(1513), - [anon_sym_EQ] = ACTIONS(1515), - [anon_sym_EQ_EQ] = ACTIONS(1513), - [anon_sym_BANG_EQ] = ACTIONS(1513), - [anon_sym_GT] = ACTIONS(1515), [anon_sym_LT] = ACTIONS(1515), - [anon_sym_GT_EQ] = ACTIONS(1513), - [anon_sym_LT_EQ] = ACTIONS(1513), - [anon_sym__] = ACTIONS(1515), - [anon_sym_DOT] = ACTIONS(1515), - [anon_sym_DOT_DOT] = ACTIONS(1515), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1513), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1513), - [anon_sym_COMMA] = ACTIONS(1513), - [anon_sym_COLON_COLON] = ACTIONS(1513), - [anon_sym_POUND] = ACTIONS(1513), - [anon_sym_as] = ACTIONS(1515), - [anon_sym_const] = ACTIONS(1515), - [anon_sym_default] = ACTIONS(1515), - [anon_sym_gen] = ACTIONS(1515), - [anon_sym_union] = ACTIONS(1515), - [anon_sym_ref] = ACTIONS(1515), - [sym_mutable_specifier] = ACTIONS(1515), - [sym_integer_literal] = ACTIONS(1513), - [aux_sym_string_literal_token1] = ACTIONS(1513), - [sym_char_literal] = ACTIONS(1513), - [anon_sym_true] = ACTIONS(1515), - [anon_sym_false] = ACTIONS(1515), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1515), - [sym_super] = ACTIONS(1515), - [sym_crate] = ACTIONS(1515), - [sym_metavariable] = ACTIONS(1513), - [sym__raw_string_literal_start] = ACTIONS(1513), - [sym_float_literal] = ACTIONS(1513), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1513), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_DASH_GT] = ACTIONS(1515), + [anon_sym_POUND] = ACTIONS(1515), + [anon_sym_SQUOTE] = ACTIONS(1513), + [anon_sym_async] = ACTIONS(1513), + [anon_sym_break] = ACTIONS(1513), + [anon_sym_const] = ACTIONS(1513), + [anon_sym_continue] = ACTIONS(1513), + [anon_sym_default] = ACTIONS(1513), + [anon_sym_for] = ACTIONS(1513), + [anon_sym_gen] = ACTIONS(1513), + [anon_sym_if] = ACTIONS(1513), + [anon_sym_loop] = ACTIONS(1513), + [anon_sym_match] = ACTIONS(1513), + [anon_sym_return] = ACTIONS(1513), + [anon_sym_static] = ACTIONS(1513), + [anon_sym_union] = ACTIONS(1513), + [anon_sym_unsafe] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1513), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [anon_sym_yield] = ACTIONS(1513), + [anon_sym_move] = ACTIONS(1513), + [anon_sym_try] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1515), + [aux_sym_string_literal_token1] = ACTIONS(1515), + [sym_char_literal] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(1513), + [anon_sym_false] = ACTIONS(1513), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1513), + [sym_super] = ACTIONS(1513), + [sym_crate] = ACTIONS(1513), + [sym_metavariable] = ACTIONS(1515), + [sym__raw_string_literal_start] = ACTIONS(1515), + [sym_float_literal] = ACTIONS(1515), }, - [STATE(488)] = { - [sym_line_comment] = STATE(488), - [sym_block_comment] = STATE(488), - [sym_identifier] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(1527), - [anon_sym_LBRACK] = ACTIONS(1527), - [anon_sym_RBRACE] = ACTIONS(1527), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(1529), + [STATE(460)] = { + [sym_function_modifiers] = STATE(3689), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2653), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(2653), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1685), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3674), + [sym_type_binding] = STATE(2748), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2330), + [sym_label] = STATE(3829), + [sym_block] = STATE(2748), + [sym__literal] = STATE(2748), + [sym_string_literal] = STATE(3232), + [sym_raw_string_literal] = STATE(3232), + [sym_boolean_literal] = STATE(3232), + [sym_line_comment] = STATE(460), + [sym_block_comment] = STATE(460), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1517), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1525), [anon_sym_QMARK] = ACTIONS(1527), [anon_sym_u8] = ACTIONS(1529), [anon_sym_i8] = ACTIONS(1529), @@ -71222,2438 +71315,6402 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1529), [anon_sym_str] = ACTIONS(1529), [anon_sym_char] = ACTIONS(1529), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_SLASH] = ACTIONS(1529), - [anon_sym_PERCENT] = ACTIONS(1529), - [anon_sym_CARET] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_PIPE] = ACTIONS(1529), - [anon_sym_AMP_AMP] = ACTIONS(1527), - [anon_sym_PIPE_PIPE] = ACTIONS(1527), - [anon_sym_LT_LT] = ACTIONS(1529), - [anon_sym_GT_GT] = ACTIONS(1529), - [anon_sym_PLUS_EQ] = ACTIONS(1527), - [anon_sym_DASH_EQ] = ACTIONS(1527), - [anon_sym_STAR_EQ] = ACTIONS(1527), - [anon_sym_SLASH_EQ] = ACTIONS(1527), - [anon_sym_PERCENT_EQ] = ACTIONS(1527), - [anon_sym_CARET_EQ] = ACTIONS(1527), - [anon_sym_AMP_EQ] = ACTIONS(1527), - [anon_sym_PIPE_EQ] = ACTIONS(1527), - [anon_sym_LT_LT_EQ] = ACTIONS(1527), - [anon_sym_GT_GT_EQ] = ACTIONS(1527), - [anon_sym_EQ] = ACTIONS(1529), - [anon_sym_EQ_EQ] = ACTIONS(1527), - [anon_sym_BANG_EQ] = ACTIONS(1527), - [anon_sym_GT] = ACTIONS(1529), - [anon_sym_LT] = ACTIONS(1529), - [anon_sym_GT_EQ] = ACTIONS(1527), - [anon_sym_LT_EQ] = ACTIONS(1527), - [anon_sym__] = ACTIONS(1529), - [anon_sym_DOT] = ACTIONS(1529), - [anon_sym_DOT_DOT] = ACTIONS(1529), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1527), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1527), - [anon_sym_COMMA] = ACTIONS(1527), - [anon_sym_COLON_COLON] = ACTIONS(1527), - [anon_sym_POUND] = ACTIONS(1527), - [anon_sym_as] = ACTIONS(1529), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_default] = ACTIONS(1529), - [anon_sym_gen] = ACTIONS(1529), - [anon_sym_union] = ACTIONS(1529), - [anon_sym_ref] = ACTIONS(1529), - [sym_mutable_specifier] = ACTIONS(1529), - [sym_integer_literal] = ACTIONS(1527), - [aux_sym_string_literal_token1] = ACTIONS(1527), - [sym_char_literal] = ACTIONS(1527), - [anon_sym_true] = ACTIONS(1529), - [anon_sym_false] = ACTIONS(1529), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1529), - [sym_super] = ACTIONS(1529), - [sym_crate] = ACTIONS(1529), - [sym_metavariable] = ACTIONS(1527), - [sym__raw_string_literal_start] = ACTIONS(1527), - [sym_float_literal] = ACTIONS(1527), - }, - [STATE(489)] = { - [sym_line_comment] = STATE(489), - [sym_block_comment] = STATE(489), - [sym_identifier] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1485), - [anon_sym_RBRACE] = ACTIONS(1485), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_STAR] = ACTIONS(1487), - [anon_sym_QMARK] = ACTIONS(1485), - [anon_sym_u8] = ACTIONS(1487), - [anon_sym_i8] = ACTIONS(1487), - [anon_sym_u16] = ACTIONS(1487), - [anon_sym_i16] = ACTIONS(1487), - [anon_sym_u32] = ACTIONS(1487), - [anon_sym_i32] = ACTIONS(1487), - [anon_sym_u64] = ACTIONS(1487), - [anon_sym_i64] = ACTIONS(1487), - [anon_sym_u128] = ACTIONS(1487), - [anon_sym_i128] = ACTIONS(1487), - [anon_sym_isize] = ACTIONS(1487), - [anon_sym_usize] = ACTIONS(1487), - [anon_sym_f32] = ACTIONS(1487), - [anon_sym_f64] = ACTIONS(1487), - [anon_sym_bool] = ACTIONS(1487), - [anon_sym_str] = ACTIONS(1487), - [anon_sym_char] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1487), - [anon_sym_PERCENT] = ACTIONS(1487), - [anon_sym_CARET] = ACTIONS(1487), - [anon_sym_AMP] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1487), - [anon_sym_AMP_AMP] = ACTIONS(1485), - [anon_sym_PIPE_PIPE] = ACTIONS(1485), - [anon_sym_LT_LT] = ACTIONS(1487), - [anon_sym_GT_GT] = ACTIONS(1487), - [anon_sym_PLUS_EQ] = ACTIONS(1485), - [anon_sym_DASH_EQ] = ACTIONS(1485), - [anon_sym_STAR_EQ] = ACTIONS(1485), - [anon_sym_SLASH_EQ] = ACTIONS(1485), - [anon_sym_PERCENT_EQ] = ACTIONS(1485), - [anon_sym_CARET_EQ] = ACTIONS(1485), - [anon_sym_AMP_EQ] = ACTIONS(1485), - [anon_sym_PIPE_EQ] = ACTIONS(1485), - [anon_sym_LT_LT_EQ] = ACTIONS(1485), - [anon_sym_GT_GT_EQ] = ACTIONS(1485), - [anon_sym_EQ] = ACTIONS(1487), - [anon_sym_EQ_EQ] = ACTIONS(1485), - [anon_sym_BANG_EQ] = ACTIONS(1485), - [anon_sym_GT] = ACTIONS(1487), - [anon_sym_LT] = ACTIONS(1487), - [anon_sym_GT_EQ] = ACTIONS(1485), - [anon_sym_LT_EQ] = ACTIONS(1485), - [anon_sym__] = ACTIONS(1487), - [anon_sym_DOT] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1487), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1485), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1485), - [anon_sym_COMMA] = ACTIONS(1485), - [anon_sym_COLON_COLON] = ACTIONS(1485), - [anon_sym_POUND] = ACTIONS(1485), - [anon_sym_as] = ACTIONS(1487), - [anon_sym_const] = ACTIONS(1487), - [anon_sym_default] = ACTIONS(1487), - [anon_sym_gen] = ACTIONS(1487), - [anon_sym_union] = ACTIONS(1487), - [anon_sym_ref] = ACTIONS(1487), - [sym_mutable_specifier] = ACTIONS(1487), - [sym_integer_literal] = ACTIONS(1485), - [aux_sym_string_literal_token1] = ACTIONS(1485), - [sym_char_literal] = ACTIONS(1485), - [anon_sym_true] = ACTIONS(1487), - [anon_sym_false] = ACTIONS(1487), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1487), - [sym_super] = ACTIONS(1487), - [sym_crate] = ACTIONS(1487), - [sym_metavariable] = ACTIONS(1485), - [sym__raw_string_literal_start] = ACTIONS(1485), - [sym_float_literal] = ACTIONS(1485), - }, - [STATE(490)] = { - [sym_line_comment] = STATE(490), - [sym_block_comment] = STATE(490), - [sym_identifier] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1517), - [anon_sym_LBRACK] = ACTIONS(1517), - [anon_sym_RBRACE] = ACTIONS(1517), - [anon_sym_PLUS] = ACTIONS(1519), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_QMARK] = ACTIONS(1517), - [anon_sym_u8] = ACTIONS(1519), - [anon_sym_i8] = ACTIONS(1519), - [anon_sym_u16] = ACTIONS(1519), - [anon_sym_i16] = ACTIONS(1519), - [anon_sym_u32] = ACTIONS(1519), - [anon_sym_i32] = ACTIONS(1519), - [anon_sym_u64] = ACTIONS(1519), - [anon_sym_i64] = ACTIONS(1519), - [anon_sym_u128] = ACTIONS(1519), - [anon_sym_i128] = ACTIONS(1519), - [anon_sym_isize] = ACTIONS(1519), - [anon_sym_usize] = ACTIONS(1519), - [anon_sym_f32] = ACTIONS(1519), - [anon_sym_f64] = ACTIONS(1519), - [anon_sym_bool] = ACTIONS(1519), - [anon_sym_str] = ACTIONS(1519), - [anon_sym_char] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1519), - [anon_sym_SLASH] = ACTIONS(1519), - [anon_sym_PERCENT] = ACTIONS(1519), - [anon_sym_CARET] = ACTIONS(1519), - [anon_sym_AMP] = ACTIONS(1519), - [anon_sym_PIPE] = ACTIONS(1519), - [anon_sym_AMP_AMP] = ACTIONS(1517), - [anon_sym_PIPE_PIPE] = ACTIONS(1517), - [anon_sym_LT_LT] = ACTIONS(1519), - [anon_sym_GT_GT] = ACTIONS(1519), - [anon_sym_PLUS_EQ] = ACTIONS(1517), - [anon_sym_DASH_EQ] = ACTIONS(1517), - [anon_sym_STAR_EQ] = ACTIONS(1517), - [anon_sym_SLASH_EQ] = ACTIONS(1517), - [anon_sym_PERCENT_EQ] = ACTIONS(1517), - [anon_sym_CARET_EQ] = ACTIONS(1517), - [anon_sym_AMP_EQ] = ACTIONS(1517), - [anon_sym_PIPE_EQ] = ACTIONS(1517), - [anon_sym_LT_LT_EQ] = ACTIONS(1517), - [anon_sym_GT_GT_EQ] = ACTIONS(1517), - [anon_sym_EQ] = ACTIONS(1519), - [anon_sym_EQ_EQ] = ACTIONS(1517), - [anon_sym_BANG_EQ] = ACTIONS(1517), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_LT] = ACTIONS(1519), - [anon_sym_GT_EQ] = ACTIONS(1517), - [anon_sym_LT_EQ] = ACTIONS(1517), - [anon_sym__] = ACTIONS(1519), - [anon_sym_DOT] = ACTIONS(1519), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1517), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1517), - [anon_sym_COMMA] = ACTIONS(1517), - [anon_sym_COLON_COLON] = ACTIONS(1517), - [anon_sym_POUND] = ACTIONS(1517), - [anon_sym_as] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(1519), - [anon_sym_default] = ACTIONS(1519), - [anon_sym_gen] = ACTIONS(1519), - [anon_sym_union] = ACTIONS(1519), - [anon_sym_ref] = ACTIONS(1519), - [sym_mutable_specifier] = ACTIONS(1519), - [sym_integer_literal] = ACTIONS(1517), - [aux_sym_string_literal_token1] = ACTIONS(1517), - [sym_char_literal] = ACTIONS(1517), - [anon_sym_true] = ACTIONS(1519), - [anon_sym_false] = ACTIONS(1519), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1519), - [sym_super] = ACTIONS(1519), - [sym_crate] = ACTIONS(1519), - [sym_metavariable] = ACTIONS(1517), - [sym__raw_string_literal_start] = ACTIONS(1517), - [sym_float_literal] = ACTIONS(1517), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_GT] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(1537), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1547), + [sym_integer_literal] = ACTIONS(1549), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1549), }, - [STATE(491)] = { - [sym_line_comment] = STATE(491), - [sym_block_comment] = STATE(491), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN] = ACTIONS(1521), + [STATE(461)] = { + [sym_function_modifiers] = STATE(3689), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2653), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(2653), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1685), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3674), + [sym_type_binding] = STATE(2748), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2330), + [sym_label] = STATE(3829), + [sym_block] = STATE(2748), + [sym__literal] = STATE(2748), + [sym_string_literal] = STATE(3232), + [sym_raw_string_literal] = STATE(3232), + [sym_boolean_literal] = STATE(3232), + [sym_line_comment] = STATE(461), + [sym_block_comment] = STATE(461), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1517), + [anon_sym_LPAREN] = ACTIONS(1519), [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_RBRACE] = ACTIONS(1521), - [anon_sym_PLUS] = ACTIONS(1523), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(1521), - [anon_sym_u8] = ACTIONS(1523), - [anon_sym_i8] = ACTIONS(1523), - [anon_sym_u16] = ACTIONS(1523), - [anon_sym_i16] = ACTIONS(1523), - [anon_sym_u32] = ACTIONS(1523), - [anon_sym_i32] = ACTIONS(1523), - [anon_sym_u64] = ACTIONS(1523), - [anon_sym_i64] = ACTIONS(1523), - [anon_sym_u128] = ACTIONS(1523), - [anon_sym_i128] = ACTIONS(1523), - [anon_sym_isize] = ACTIONS(1523), - [anon_sym_usize] = ACTIONS(1523), - [anon_sym_f32] = ACTIONS(1523), - [anon_sym_f64] = ACTIONS(1523), - [anon_sym_bool] = ACTIONS(1523), - [anon_sym_str] = ACTIONS(1523), - [anon_sym_char] = ACTIONS(1523), - [anon_sym_DASH] = ACTIONS(1523), - [anon_sym_SLASH] = ACTIONS(1523), - [anon_sym_PERCENT] = ACTIONS(1523), - [anon_sym_CARET] = ACTIONS(1523), - [anon_sym_AMP] = ACTIONS(1523), - [anon_sym_PIPE] = ACTIONS(1523), - [anon_sym_AMP_AMP] = ACTIONS(1521), - [anon_sym_PIPE_PIPE] = ACTIONS(1521), - [anon_sym_LT_LT] = ACTIONS(1523), - [anon_sym_GT_GT] = ACTIONS(1523), - [anon_sym_PLUS_EQ] = ACTIONS(1521), - [anon_sym_DASH_EQ] = ACTIONS(1521), - [anon_sym_STAR_EQ] = ACTIONS(1521), - [anon_sym_SLASH_EQ] = ACTIONS(1521), - [anon_sym_PERCENT_EQ] = ACTIONS(1521), - [anon_sym_CARET_EQ] = ACTIONS(1521), - [anon_sym_AMP_EQ] = ACTIONS(1521), - [anon_sym_PIPE_EQ] = ACTIONS(1521), - [anon_sym_LT_LT_EQ] = ACTIONS(1521), - [anon_sym_GT_GT_EQ] = ACTIONS(1521), - [anon_sym_EQ] = ACTIONS(1523), - [anon_sym_EQ_EQ] = ACTIONS(1521), - [anon_sym_BANG_EQ] = ACTIONS(1521), - [anon_sym_GT] = ACTIONS(1523), - [anon_sym_LT] = ACTIONS(1523), - [anon_sym_GT_EQ] = ACTIONS(1521), - [anon_sym_LT_EQ] = ACTIONS(1521), - [anon_sym__] = ACTIONS(1523), - [anon_sym_DOT] = ACTIONS(1523), - [anon_sym_DOT_DOT] = ACTIONS(1523), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1521), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1521), - [anon_sym_COMMA] = ACTIONS(1521), - [anon_sym_COLON_COLON] = ACTIONS(1521), - [anon_sym_POUND] = ACTIONS(1521), - [anon_sym_as] = ACTIONS(1523), - [anon_sym_const] = ACTIONS(1523), - [anon_sym_default] = ACTIONS(1523), - [anon_sym_gen] = ACTIONS(1523), - [anon_sym_union] = ACTIONS(1523), - [anon_sym_ref] = ACTIONS(1523), - [sym_mutable_specifier] = ACTIONS(1523), - [sym_integer_literal] = ACTIONS(1521), - [aux_sym_string_literal_token1] = ACTIONS(1521), - [sym_char_literal] = ACTIONS(1521), - [anon_sym_true] = ACTIONS(1523), - [anon_sym_false] = ACTIONS(1523), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1523), - [sym_super] = ACTIONS(1523), - [sym_crate] = ACTIONS(1523), - [sym_metavariable] = ACTIONS(1521), - [sym__raw_string_literal_start] = ACTIONS(1521), - [sym_float_literal] = ACTIONS(1521), - }, - [STATE(492)] = { - [sym_line_comment] = STATE(492), - [sym_block_comment] = STATE(492), - [sym_identifier] = ACTIONS(1549), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1547), - [anon_sym_RBRACE] = ACTIONS(1547), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(1549), - [anon_sym_QMARK] = ACTIONS(1547), - [anon_sym_u8] = ACTIONS(1549), - [anon_sym_i8] = ACTIONS(1549), - [anon_sym_u16] = ACTIONS(1549), - [anon_sym_i16] = ACTIONS(1549), - [anon_sym_u32] = ACTIONS(1549), - [anon_sym_i32] = ACTIONS(1549), - [anon_sym_u64] = ACTIONS(1549), - [anon_sym_i64] = ACTIONS(1549), - [anon_sym_u128] = ACTIONS(1549), - [anon_sym_i128] = ACTIONS(1549), - [anon_sym_isize] = ACTIONS(1549), - [anon_sym_usize] = ACTIONS(1549), - [anon_sym_f32] = ACTIONS(1549), - [anon_sym_f64] = ACTIONS(1549), - [anon_sym_bool] = ACTIONS(1549), - [anon_sym_str] = ACTIONS(1549), - [anon_sym_char] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1549), - [anon_sym_PERCENT] = ACTIONS(1549), - [anon_sym_CARET] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1549), - [anon_sym_AMP_AMP] = ACTIONS(1547), - [anon_sym_PIPE_PIPE] = ACTIONS(1547), - [anon_sym_LT_LT] = ACTIONS(1549), - [anon_sym_GT_GT] = ACTIONS(1549), - [anon_sym_PLUS_EQ] = ACTIONS(1547), - [anon_sym_DASH_EQ] = ACTIONS(1547), - [anon_sym_STAR_EQ] = ACTIONS(1547), - [anon_sym_SLASH_EQ] = ACTIONS(1547), - [anon_sym_PERCENT_EQ] = ACTIONS(1547), - [anon_sym_CARET_EQ] = ACTIONS(1547), - [anon_sym_AMP_EQ] = ACTIONS(1547), - [anon_sym_PIPE_EQ] = ACTIONS(1547), - [anon_sym_LT_LT_EQ] = ACTIONS(1547), - [anon_sym_GT_GT_EQ] = ACTIONS(1547), - [anon_sym_EQ] = ACTIONS(1549), - [anon_sym_EQ_EQ] = ACTIONS(1547), - [anon_sym_BANG_EQ] = ACTIONS(1547), - [anon_sym_GT] = ACTIONS(1549), - [anon_sym_LT] = ACTIONS(1549), - [anon_sym_GT_EQ] = ACTIONS(1547), - [anon_sym_LT_EQ] = ACTIONS(1547), - [anon_sym__] = ACTIONS(1549), - [anon_sym_DOT] = ACTIONS(1549), - [anon_sym_DOT_DOT] = ACTIONS(1549), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1547), - [anon_sym_COMMA] = ACTIONS(1547), - [anon_sym_COLON_COLON] = ACTIONS(1547), - [anon_sym_POUND] = ACTIONS(1547), - [anon_sym_as] = ACTIONS(1549), - [anon_sym_const] = ACTIONS(1549), - [anon_sym_default] = ACTIONS(1549), - [anon_sym_gen] = ACTIONS(1549), - [anon_sym_union] = ACTIONS(1549), - [anon_sym_ref] = ACTIONS(1549), - [sym_mutable_specifier] = ACTIONS(1549), - [sym_integer_literal] = ACTIONS(1547), - [aux_sym_string_literal_token1] = ACTIONS(1547), - [sym_char_literal] = ACTIONS(1547), - [anon_sym_true] = ACTIONS(1549), - [anon_sym_false] = ACTIONS(1549), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1549), - [sym_super] = ACTIONS(1549), - [sym_crate] = ACTIONS(1549), - [sym_metavariable] = ACTIONS(1547), - [sym__raw_string_literal_start] = ACTIONS(1547), - [sym_float_literal] = ACTIONS(1547), - }, - [STATE(493)] = { - [sym_line_comment] = STATE(493), - [sym_block_comment] = STATE(493), - [sym_identifier] = ACTIONS(1553), - [anon_sym_LPAREN] = ACTIONS(1551), - [anon_sym_LBRACK] = ACTIONS(1551), - [anon_sym_RBRACE] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_STAR] = ACTIONS(1553), - [anon_sym_QMARK] = ACTIONS(1551), - [anon_sym_u8] = ACTIONS(1553), - [anon_sym_i8] = ACTIONS(1553), - [anon_sym_u16] = ACTIONS(1553), - [anon_sym_i16] = ACTIONS(1553), - [anon_sym_u32] = ACTIONS(1553), - [anon_sym_i32] = ACTIONS(1553), - [anon_sym_u64] = ACTIONS(1553), - [anon_sym_i64] = ACTIONS(1553), - [anon_sym_u128] = ACTIONS(1553), - [anon_sym_i128] = ACTIONS(1553), - [anon_sym_isize] = ACTIONS(1553), - [anon_sym_usize] = ACTIONS(1553), - [anon_sym_f32] = ACTIONS(1553), - [anon_sym_f64] = ACTIONS(1553), - [anon_sym_bool] = ACTIONS(1553), - [anon_sym_str] = ACTIONS(1553), - [anon_sym_char] = ACTIONS(1553), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_SLASH] = ACTIONS(1553), - [anon_sym_PERCENT] = ACTIONS(1553), - [anon_sym_CARET] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(1553), - [anon_sym_PIPE] = ACTIONS(1553), - [anon_sym_AMP_AMP] = ACTIONS(1551), - [anon_sym_PIPE_PIPE] = ACTIONS(1551), - [anon_sym_LT_LT] = ACTIONS(1553), - [anon_sym_GT_GT] = ACTIONS(1553), - [anon_sym_PLUS_EQ] = ACTIONS(1551), - [anon_sym_DASH_EQ] = ACTIONS(1551), - [anon_sym_STAR_EQ] = ACTIONS(1551), - [anon_sym_SLASH_EQ] = ACTIONS(1551), - [anon_sym_PERCENT_EQ] = ACTIONS(1551), - [anon_sym_CARET_EQ] = ACTIONS(1551), - [anon_sym_AMP_EQ] = ACTIONS(1551), - [anon_sym_PIPE_EQ] = ACTIONS(1551), - [anon_sym_LT_LT_EQ] = ACTIONS(1551), - [anon_sym_GT_GT_EQ] = ACTIONS(1551), - [anon_sym_EQ] = ACTIONS(1553), - [anon_sym_EQ_EQ] = ACTIONS(1551), - [anon_sym_BANG_EQ] = ACTIONS(1551), - [anon_sym_GT] = ACTIONS(1553), - [anon_sym_LT] = ACTIONS(1553), - [anon_sym_GT_EQ] = ACTIONS(1551), - [anon_sym_LT_EQ] = ACTIONS(1551), - [anon_sym__] = ACTIONS(1553), - [anon_sym_DOT] = ACTIONS(1553), - [anon_sym_DOT_DOT] = ACTIONS(1553), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1551), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1551), - [anon_sym_COMMA] = ACTIONS(1551), - [anon_sym_COLON_COLON] = ACTIONS(1551), - [anon_sym_POUND] = ACTIONS(1551), - [anon_sym_as] = ACTIONS(1553), - [anon_sym_const] = ACTIONS(1553), - [anon_sym_default] = ACTIONS(1553), - [anon_sym_gen] = ACTIONS(1553), - [anon_sym_union] = ACTIONS(1553), - [anon_sym_ref] = ACTIONS(1553), - [sym_mutable_specifier] = ACTIONS(1553), - [sym_integer_literal] = ACTIONS(1551), - [aux_sym_string_literal_token1] = ACTIONS(1551), - [sym_char_literal] = ACTIONS(1551), - [anon_sym_true] = ACTIONS(1553), - [anon_sym_false] = ACTIONS(1553), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1553), - [sym_super] = ACTIONS(1553), - [sym_crate] = ACTIONS(1553), - [sym_metavariable] = ACTIONS(1551), - [sym__raw_string_literal_start] = ACTIONS(1551), - [sym_float_literal] = ACTIONS(1551), - }, - [STATE(494)] = { - [sym_line_comment] = STATE(494), - [sym_block_comment] = STATE(494), - [sym_identifier] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1497), - [anon_sym_RBRACE] = ACTIONS(1497), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1499), - [anon_sym_QMARK] = ACTIONS(1497), - [anon_sym_u8] = ACTIONS(1499), - [anon_sym_i8] = ACTIONS(1499), - [anon_sym_u16] = ACTIONS(1499), - [anon_sym_i16] = ACTIONS(1499), - [anon_sym_u32] = ACTIONS(1499), - [anon_sym_i32] = ACTIONS(1499), - [anon_sym_u64] = ACTIONS(1499), - [anon_sym_i64] = ACTIONS(1499), - [anon_sym_u128] = ACTIONS(1499), - [anon_sym_i128] = ACTIONS(1499), - [anon_sym_isize] = ACTIONS(1499), - [anon_sym_usize] = ACTIONS(1499), - [anon_sym_f32] = ACTIONS(1499), - [anon_sym_f64] = ACTIONS(1499), - [anon_sym_bool] = ACTIONS(1499), - [anon_sym_str] = ACTIONS(1499), - [anon_sym_char] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1499), - [anon_sym_PERCENT] = ACTIONS(1499), - [anon_sym_CARET] = ACTIONS(1499), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1497), - [anon_sym_PIPE_PIPE] = ACTIONS(1497), - [anon_sym_LT_LT] = ACTIONS(1499), - [anon_sym_GT_GT] = ACTIONS(1499), - [anon_sym_PLUS_EQ] = ACTIONS(1497), - [anon_sym_DASH_EQ] = ACTIONS(1497), - [anon_sym_STAR_EQ] = ACTIONS(1497), - [anon_sym_SLASH_EQ] = ACTIONS(1497), - [anon_sym_PERCENT_EQ] = ACTIONS(1497), - [anon_sym_CARET_EQ] = ACTIONS(1497), - [anon_sym_AMP_EQ] = ACTIONS(1497), - [anon_sym_PIPE_EQ] = ACTIONS(1497), - [anon_sym_LT_LT_EQ] = ACTIONS(1497), - [anon_sym_GT_GT_EQ] = ACTIONS(1497), - [anon_sym_EQ] = ACTIONS(1499), - [anon_sym_EQ_EQ] = ACTIONS(1497), - [anon_sym_BANG_EQ] = ACTIONS(1497), - [anon_sym_GT] = ACTIONS(1499), - [anon_sym_LT] = ACTIONS(1499), - [anon_sym_GT_EQ] = ACTIONS(1497), - [anon_sym_LT_EQ] = ACTIONS(1497), - [anon_sym__] = ACTIONS(1499), - [anon_sym_DOT] = ACTIONS(1499), - [anon_sym_DOT_DOT] = ACTIONS(1499), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), - [anon_sym_COMMA] = ACTIONS(1497), - [anon_sym_COLON_COLON] = ACTIONS(1497), - [anon_sym_POUND] = ACTIONS(1497), - [anon_sym_as] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(1499), - [anon_sym_default] = ACTIONS(1499), - [anon_sym_gen] = ACTIONS(1499), - [anon_sym_union] = ACTIONS(1499), - [anon_sym_ref] = ACTIONS(1499), - [sym_mutable_specifier] = ACTIONS(1499), - [sym_integer_literal] = ACTIONS(1497), - [aux_sym_string_literal_token1] = ACTIONS(1497), - [sym_char_literal] = ACTIONS(1497), - [anon_sym_true] = ACTIONS(1499), - [anon_sym_false] = ACTIONS(1499), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1499), - [sym_super] = ACTIONS(1499), - [sym_crate] = ACTIONS(1499), - [sym_metavariable] = ACTIONS(1497), - [sym__raw_string_literal_start] = ACTIONS(1497), - [sym_float_literal] = ACTIONS(1497), - }, - [STATE(495)] = { - [sym_line_comment] = STATE(495), - [sym_block_comment] = STATE(495), - [sym_identifier] = ACTIONS(1507), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_LBRACK] = ACTIONS(1505), - [anon_sym_RBRACE] = ACTIONS(1505), - [anon_sym_PLUS] = ACTIONS(1507), - [anon_sym_STAR] = ACTIONS(1507), - [anon_sym_QMARK] = ACTIONS(1505), - [anon_sym_u8] = ACTIONS(1507), - [anon_sym_i8] = ACTIONS(1507), - [anon_sym_u16] = ACTIONS(1507), - [anon_sym_i16] = ACTIONS(1507), - [anon_sym_u32] = ACTIONS(1507), - [anon_sym_i32] = ACTIONS(1507), - [anon_sym_u64] = ACTIONS(1507), - [anon_sym_i64] = ACTIONS(1507), - [anon_sym_u128] = ACTIONS(1507), - [anon_sym_i128] = ACTIONS(1507), - [anon_sym_isize] = ACTIONS(1507), - [anon_sym_usize] = ACTIONS(1507), - [anon_sym_f32] = ACTIONS(1507), - [anon_sym_f64] = ACTIONS(1507), - [anon_sym_bool] = ACTIONS(1507), - [anon_sym_str] = ACTIONS(1507), - [anon_sym_char] = ACTIONS(1507), - [anon_sym_DASH] = ACTIONS(1507), - [anon_sym_SLASH] = ACTIONS(1507), - [anon_sym_PERCENT] = ACTIONS(1507), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_PIPE] = ACTIONS(1507), - [anon_sym_AMP_AMP] = ACTIONS(1505), - [anon_sym_PIPE_PIPE] = ACTIONS(1505), - [anon_sym_LT_LT] = ACTIONS(1507), - [anon_sym_GT_GT] = ACTIONS(1507), - [anon_sym_PLUS_EQ] = ACTIONS(1505), - [anon_sym_DASH_EQ] = ACTIONS(1505), - [anon_sym_STAR_EQ] = ACTIONS(1505), - [anon_sym_SLASH_EQ] = ACTIONS(1505), - [anon_sym_PERCENT_EQ] = ACTIONS(1505), - [anon_sym_CARET_EQ] = ACTIONS(1505), - [anon_sym_AMP_EQ] = ACTIONS(1505), - [anon_sym_PIPE_EQ] = ACTIONS(1505), - [anon_sym_LT_LT_EQ] = ACTIONS(1505), - [anon_sym_GT_GT_EQ] = ACTIONS(1505), - [anon_sym_EQ] = ACTIONS(1507), - [anon_sym_EQ_EQ] = ACTIONS(1505), - [anon_sym_BANG_EQ] = ACTIONS(1505), - [anon_sym_GT] = ACTIONS(1507), - [anon_sym_LT] = ACTIONS(1507), - [anon_sym_GT_EQ] = ACTIONS(1505), - [anon_sym_LT_EQ] = ACTIONS(1505), - [anon_sym__] = ACTIONS(1507), - [anon_sym_DOT] = ACTIONS(1507), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1505), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1505), - [anon_sym_COMMA] = ACTIONS(1505), - [anon_sym_COLON_COLON] = ACTIONS(1505), - [anon_sym_POUND] = ACTIONS(1505), - [anon_sym_as] = ACTIONS(1507), - [anon_sym_const] = ACTIONS(1507), - [anon_sym_default] = ACTIONS(1507), - [anon_sym_gen] = ACTIONS(1507), - [anon_sym_union] = ACTIONS(1507), - [anon_sym_ref] = ACTIONS(1507), - [sym_mutable_specifier] = ACTIONS(1507), - [sym_integer_literal] = ACTIONS(1505), - [aux_sym_string_literal_token1] = ACTIONS(1505), - [sym_char_literal] = ACTIONS(1505), - [anon_sym_true] = ACTIONS(1507), - [anon_sym_false] = ACTIONS(1507), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1507), - [sym_super] = ACTIONS(1507), - [sym_crate] = ACTIONS(1507), - [sym_metavariable] = ACTIONS(1505), - [sym__raw_string_literal_start] = ACTIONS(1505), - [sym_float_literal] = ACTIONS(1505), - }, - [STATE(496)] = { - [sym_line_comment] = STATE(496), - [sym_block_comment] = STATE(496), - [sym_identifier] = ACTIONS(1483), - [anon_sym_LPAREN] = ACTIONS(1481), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_RBRACE] = ACTIONS(1481), - [anon_sym_PLUS] = ACTIONS(1483), - [anon_sym_STAR] = ACTIONS(1483), - [anon_sym_QMARK] = ACTIONS(1481), - [anon_sym_u8] = ACTIONS(1483), - [anon_sym_i8] = ACTIONS(1483), - [anon_sym_u16] = ACTIONS(1483), - [anon_sym_i16] = ACTIONS(1483), - [anon_sym_u32] = ACTIONS(1483), - [anon_sym_i32] = ACTIONS(1483), - [anon_sym_u64] = ACTIONS(1483), - [anon_sym_i64] = ACTIONS(1483), - [anon_sym_u128] = ACTIONS(1483), - [anon_sym_i128] = ACTIONS(1483), - [anon_sym_isize] = ACTIONS(1483), - [anon_sym_usize] = ACTIONS(1483), - [anon_sym_f32] = ACTIONS(1483), - [anon_sym_f64] = ACTIONS(1483), - [anon_sym_bool] = ACTIONS(1483), - [anon_sym_str] = ACTIONS(1483), - [anon_sym_char] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1483), - [anon_sym_SLASH] = ACTIONS(1483), - [anon_sym_PERCENT] = ACTIONS(1483), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1483), - [anon_sym_AMP_AMP] = ACTIONS(1481), - [anon_sym_PIPE_PIPE] = ACTIONS(1481), - [anon_sym_LT_LT] = ACTIONS(1483), - [anon_sym_GT_GT] = ACTIONS(1483), - [anon_sym_PLUS_EQ] = ACTIONS(1481), - [anon_sym_DASH_EQ] = ACTIONS(1481), - [anon_sym_STAR_EQ] = ACTIONS(1481), - [anon_sym_SLASH_EQ] = ACTIONS(1481), - [anon_sym_PERCENT_EQ] = ACTIONS(1481), - [anon_sym_CARET_EQ] = ACTIONS(1481), - [anon_sym_AMP_EQ] = ACTIONS(1481), - [anon_sym_PIPE_EQ] = ACTIONS(1481), - [anon_sym_LT_LT_EQ] = ACTIONS(1481), - [anon_sym_GT_GT_EQ] = ACTIONS(1481), - [anon_sym_EQ] = ACTIONS(1483), - [anon_sym_EQ_EQ] = ACTIONS(1481), - [anon_sym_BANG_EQ] = ACTIONS(1481), - [anon_sym_GT] = ACTIONS(1483), - [anon_sym_LT] = ACTIONS(1483), - [anon_sym_GT_EQ] = ACTIONS(1481), - [anon_sym_LT_EQ] = ACTIONS(1481), - [anon_sym__] = ACTIONS(1483), - [anon_sym_DOT] = ACTIONS(1483), - [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), - [anon_sym_COMMA] = ACTIONS(1481), - [anon_sym_COLON_COLON] = ACTIONS(1481), - [anon_sym_POUND] = ACTIONS(1481), - [anon_sym_as] = ACTIONS(1483), - [anon_sym_const] = ACTIONS(1483), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_gen] = ACTIONS(1483), - [anon_sym_union] = ACTIONS(1483), - [anon_sym_ref] = ACTIONS(1483), - [sym_mutable_specifier] = ACTIONS(1483), - [sym_integer_literal] = ACTIONS(1481), - [aux_sym_string_literal_token1] = ACTIONS(1481), - [sym_char_literal] = ACTIONS(1481), - [anon_sym_true] = ACTIONS(1483), - [anon_sym_false] = ACTIONS(1483), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1483), - [sym_super] = ACTIONS(1483), - [sym_crate] = ACTIONS(1483), - [sym_metavariable] = ACTIONS(1481), - [sym__raw_string_literal_start] = ACTIONS(1481), - [sym_float_literal] = ACTIONS(1481), - }, - [STATE(497)] = { - [sym_attribute_item] = STATE(1145), - [sym_inner_attribute_item] = STATE(1145), - [sym_bracketed_type] = STATE(3695), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3416), - [sym_macro_invocation] = STATE(2883), - [sym_scoped_identifier] = STATE(2241), - [sym_scoped_type_identifier] = STATE(3110), - [sym_match_arm] = STATE(1146), - [sym_match_pattern] = STATE(3642), - [sym_const_block] = STATE(2883), - [sym__pattern] = STATE(2909), - [sym_generic_pattern] = STATE(2883), - [sym_tuple_pattern] = STATE(2883), - [sym_slice_pattern] = STATE(2883), - [sym_tuple_struct_pattern] = STATE(2883), - [sym_struct_pattern] = STATE(2883), - [sym_remaining_field_pattern] = STATE(2883), - [sym_mut_pattern] = STATE(2883), - [sym_range_pattern] = STATE(2883), - [sym_ref_pattern] = STATE(2883), - [sym_captured_pattern] = STATE(2883), - [sym_reference_pattern] = STATE(2883), - [sym_or_pattern] = STATE(2883), - [sym__literal_pattern] = STATE(2449), - [sym_negative_literal] = STATE(2408), - [sym_string_literal] = STATE(2408), - [sym_raw_string_literal] = STATE(2408), - [sym_boolean_literal] = STATE(2408), - [sym_line_comment] = STATE(497), - [sym_block_comment] = STATE(497), - [aux_sym_match_block_repeat1] = STATE(497), - [aux_sym_match_arm_repeat1] = STATE(644), - [sym_identifier] = ACTIONS(1761), - [anon_sym_LPAREN] = ACTIONS(1764), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_u8] = ACTIONS(1770), - [anon_sym_i8] = ACTIONS(1770), - [anon_sym_u16] = ACTIONS(1770), - [anon_sym_i16] = ACTIONS(1770), - [anon_sym_u32] = ACTIONS(1770), - [anon_sym_i32] = ACTIONS(1770), - [anon_sym_u64] = ACTIONS(1770), - [anon_sym_i64] = ACTIONS(1770), - [anon_sym_u128] = ACTIONS(1770), - [anon_sym_i128] = ACTIONS(1770), - [anon_sym_isize] = ACTIONS(1770), - [anon_sym_usize] = ACTIONS(1770), - [anon_sym_f32] = ACTIONS(1770), - [anon_sym_f64] = ACTIONS(1770), - [anon_sym_bool] = ACTIONS(1770), - [anon_sym_str] = ACTIONS(1770), - [anon_sym_char] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1776), - [anon_sym_PIPE] = ACTIONS(1779), - [anon_sym_LT] = ACTIONS(1782), - [anon_sym__] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1788), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1791), - [anon_sym_COLON_COLON] = ACTIONS(1794), - [anon_sym_POUND] = ACTIONS(1797), - [anon_sym_const] = ACTIONS(1800), - [anon_sym_default] = ACTIONS(1803), - [anon_sym_gen] = ACTIONS(1803), - [anon_sym_union] = ACTIONS(1803), - [anon_sym_ref] = ACTIONS(1806), - [sym_mutable_specifier] = ACTIONS(1809), - [sym_integer_literal] = ACTIONS(1812), - [aux_sym_string_literal_token1] = ACTIONS(1815), - [sym_char_literal] = ACTIONS(1812), - [anon_sym_true] = ACTIONS(1818), - [anon_sym_false] = ACTIONS(1818), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1821), - [sym_super] = ACTIONS(1821), - [sym_crate] = ACTIONS(1821), - [sym_metavariable] = ACTIONS(1824), - [sym__raw_string_literal_start] = ACTIONS(1827), - [sym_float_literal] = ACTIONS(1812), - }, - [STATE(498)] = { - [sym_line_comment] = STATE(498), - [sym_block_comment] = STATE(498), - [sym_identifier] = ACTIONS(1541), - [anon_sym_LPAREN] = ACTIONS(1539), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1541), - [anon_sym_QMARK] = ACTIONS(1539), - [anon_sym_u8] = ACTIONS(1541), - [anon_sym_i8] = ACTIONS(1541), - [anon_sym_u16] = ACTIONS(1541), - [anon_sym_i16] = ACTIONS(1541), - [anon_sym_u32] = ACTIONS(1541), - [anon_sym_i32] = ACTIONS(1541), - [anon_sym_u64] = ACTIONS(1541), - [anon_sym_i64] = ACTIONS(1541), - [anon_sym_u128] = ACTIONS(1541), - [anon_sym_i128] = ACTIONS(1541), - [anon_sym_isize] = ACTIONS(1541), - [anon_sym_usize] = ACTIONS(1541), - [anon_sym_f32] = ACTIONS(1541), - [anon_sym_f64] = ACTIONS(1541), - [anon_sym_bool] = ACTIONS(1541), - [anon_sym_str] = ACTIONS(1541), - [anon_sym_char] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(1541), - [anon_sym_PERCENT] = ACTIONS(1541), - [anon_sym_CARET] = ACTIONS(1541), - [anon_sym_AMP] = ACTIONS(1541), - [anon_sym_PIPE] = ACTIONS(1541), - [anon_sym_AMP_AMP] = ACTIONS(1539), - [anon_sym_PIPE_PIPE] = ACTIONS(1539), - [anon_sym_LT_LT] = ACTIONS(1541), - [anon_sym_GT_GT] = ACTIONS(1541), - [anon_sym_PLUS_EQ] = ACTIONS(1539), - [anon_sym_DASH_EQ] = ACTIONS(1539), - [anon_sym_STAR_EQ] = ACTIONS(1539), - [anon_sym_SLASH_EQ] = ACTIONS(1539), - [anon_sym_PERCENT_EQ] = ACTIONS(1539), - [anon_sym_CARET_EQ] = ACTIONS(1539), - [anon_sym_AMP_EQ] = ACTIONS(1539), - [anon_sym_PIPE_EQ] = ACTIONS(1539), - [anon_sym_LT_LT_EQ] = ACTIONS(1539), - [anon_sym_GT_GT_EQ] = ACTIONS(1539), - [anon_sym_EQ] = ACTIONS(1541), - [anon_sym_EQ_EQ] = ACTIONS(1539), - [anon_sym_BANG_EQ] = ACTIONS(1539), - [anon_sym_GT] = ACTIONS(1541), - [anon_sym_LT] = ACTIONS(1541), - [anon_sym_GT_EQ] = ACTIONS(1539), - [anon_sym_LT_EQ] = ACTIONS(1539), - [anon_sym__] = ACTIONS(1541), - [anon_sym_DOT] = ACTIONS(1541), - [anon_sym_DOT_DOT] = ACTIONS(1541), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1539), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1539), - [anon_sym_COMMA] = ACTIONS(1539), - [anon_sym_COLON_COLON] = ACTIONS(1539), - [anon_sym_POUND] = ACTIONS(1539), - [anon_sym_as] = ACTIONS(1541), - [anon_sym_const] = ACTIONS(1541), - [anon_sym_default] = ACTIONS(1541), - [anon_sym_gen] = ACTIONS(1541), - [anon_sym_union] = ACTIONS(1541), - [anon_sym_ref] = ACTIONS(1541), - [sym_mutable_specifier] = ACTIONS(1541), - [sym_integer_literal] = ACTIONS(1539), - [aux_sym_string_literal_token1] = ACTIONS(1539), - [sym_char_literal] = ACTIONS(1539), - [anon_sym_true] = ACTIONS(1541), - [anon_sym_false] = ACTIONS(1541), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1541), - [sym_super] = ACTIONS(1541), - [sym_crate] = ACTIONS(1541), - [sym_metavariable] = ACTIONS(1539), - [sym__raw_string_literal_start] = ACTIONS(1539), - [sym_float_literal] = ACTIONS(1539), - }, - [STATE(499)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym_closure_expression] = STATE(3249), - [sym_closure_parameters] = STATE(217), - [sym__pattern] = STATE(2952), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), - [sym_line_comment] = STATE(499), - [sym_block_comment] = STATE(499), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(1830), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_GT] = ACTIONS(1555), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_async] = ACTIONS(1741), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_static] = ACTIONS(1423), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [anon_sym_move] = ACTIONS(1427), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(1537), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1547), + [sym_integer_literal] = ACTIONS(1549), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1549), }, - [STATE(500)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym_closure_expression] = STATE(3249), - [sym_closure_parameters] = STATE(217), - [sym__pattern] = STATE(2952), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), - [sym_line_comment] = STATE(500), - [sym_block_comment] = STATE(500), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(1832), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1415), + [STATE(462)] = { + [sym_function_modifiers] = STATE(3689), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2653), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(2653), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1685), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3674), + [sym_type_binding] = STATE(2748), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2330), + [sym_label] = STATE(3829), + [sym_block] = STATE(2748), + [sym__literal] = STATE(2748), + [sym_string_literal] = STATE(3232), + [sym_raw_string_literal] = STATE(3232), + [sym_boolean_literal] = STATE(3232), + [sym_line_comment] = STATE(462), + [sym_block_comment] = STATE(462), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1517), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_GT] = ACTIONS(1557), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_async] = ACTIONS(1741), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_static] = ACTIONS(1423), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [anon_sym_move] = ACTIONS(1427), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(1537), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1547), + [sym_integer_literal] = ACTIONS(1549), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1549), }, - [STATE(501)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym_closure_expression] = STATE(3249), - [sym_closure_parameters] = STATE(217), - [sym__pattern] = STATE(2952), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), - [sym_line_comment] = STATE(501), - [sym_block_comment] = STATE(501), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(1834), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1415), + [STATE(463)] = { + [sym_function_modifiers] = STATE(3689), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2653), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(2653), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1685), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3674), + [sym_type_binding] = STATE(2748), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2330), + [sym_label] = STATE(3829), + [sym_block] = STATE(2748), + [sym__literal] = STATE(2748), + [sym_string_literal] = STATE(3232), + [sym_raw_string_literal] = STATE(3232), + [sym_boolean_literal] = STATE(3232), + [sym_line_comment] = STATE(463), + [sym_block_comment] = STATE(463), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1517), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_GT] = ACTIONS(1559), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_async] = ACTIONS(1741), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_static] = ACTIONS(1423), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [anon_sym_move] = ACTIONS(1427), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(1537), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1547), + [sym_integer_literal] = ACTIONS(1549), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1549), }, - [STATE(502)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym_closure_expression] = STATE(3249), - [sym_closure_parameters] = STATE(217), - [sym__pattern] = STATE(2952), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), - [sym_line_comment] = STATE(502), - [sym_block_comment] = STATE(502), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(1836), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1415), + [STATE(464)] = { + [sym_function_modifiers] = STATE(3689), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2653), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(2653), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1685), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3674), + [sym_type_binding] = STATE(2748), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2330), + [sym_label] = STATE(3829), + [sym_block] = STATE(2748), + [sym__literal] = STATE(2748), + [sym_string_literal] = STATE(3232), + [sym_raw_string_literal] = STATE(3232), + [sym_boolean_literal] = STATE(3232), + [sym_line_comment] = STATE(464), + [sym_block_comment] = STATE(464), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1517), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_GT] = ACTIONS(1561), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_async] = ACTIONS(1741), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_static] = ACTIONS(1423), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [anon_sym_move] = ACTIONS(1427), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(1537), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1547), + [sym_integer_literal] = ACTIONS(1549), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1549), }, - [STATE(503)] = { - [sym_line_comment] = STATE(503), - [sym_block_comment] = STATE(503), - [ts_builtin_sym_end] = ACTIONS(1838), - [sym_identifier] = ACTIONS(1840), - [anon_sym_SEMI] = ACTIONS(1838), - [anon_sym_macro_rules_BANG] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(1838), - [anon_sym_LBRACK] = ACTIONS(1838), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(1838), - [anon_sym_STAR] = ACTIONS(1838), - [anon_sym_u8] = ACTIONS(1840), - [anon_sym_i8] = ACTIONS(1840), - [anon_sym_u16] = ACTIONS(1840), - [anon_sym_i16] = ACTIONS(1840), - [anon_sym_u32] = ACTIONS(1840), - [anon_sym_i32] = ACTIONS(1840), - [anon_sym_u64] = ACTIONS(1840), - [anon_sym_i64] = ACTIONS(1840), - [anon_sym_u128] = ACTIONS(1840), - [anon_sym_i128] = ACTIONS(1840), - [anon_sym_isize] = ACTIONS(1840), - [anon_sym_usize] = ACTIONS(1840), - [anon_sym_f32] = ACTIONS(1840), - [anon_sym_f64] = ACTIONS(1840), - [anon_sym_bool] = ACTIONS(1840), - [anon_sym_str] = ACTIONS(1840), - [anon_sym_char] = ACTIONS(1840), - [anon_sym_DASH] = ACTIONS(1838), - [anon_sym_BANG] = ACTIONS(1838), - [anon_sym_AMP] = ACTIONS(1838), - [anon_sym_PIPE] = ACTIONS(1838), - [anon_sym_LT] = ACTIONS(1838), - [anon_sym_DOT_DOT] = ACTIONS(1838), - [anon_sym_COLON_COLON] = ACTIONS(1838), - [anon_sym_POUND] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1840), - [anon_sym_async] = ACTIONS(1840), - [anon_sym_break] = ACTIONS(1840), - [anon_sym_const] = ACTIONS(1840), - [anon_sym_continue] = ACTIONS(1840), - [anon_sym_default] = ACTIONS(1840), - [anon_sym_enum] = ACTIONS(1840), - [anon_sym_fn] = ACTIONS(1840), - [anon_sym_for] = ACTIONS(1840), - [anon_sym_gen] = ACTIONS(1840), - [anon_sym_if] = ACTIONS(1840), - [anon_sym_impl] = ACTIONS(1840), - [anon_sym_let] = ACTIONS(1840), - [anon_sym_loop] = ACTIONS(1840), - [anon_sym_match] = ACTIONS(1840), - [anon_sym_mod] = ACTIONS(1840), - [anon_sym_pub] = ACTIONS(1840), - [anon_sym_return] = ACTIONS(1840), - [anon_sym_static] = ACTIONS(1840), - [anon_sym_struct] = ACTIONS(1840), - [anon_sym_trait] = ACTIONS(1840), - [anon_sym_type] = ACTIONS(1840), - [anon_sym_union] = ACTIONS(1840), - [anon_sym_unsafe] = ACTIONS(1840), - [anon_sym_use] = ACTIONS(1840), - [anon_sym_while] = ACTIONS(1840), - [anon_sym_extern] = ACTIONS(1840), - [anon_sym_yield] = ACTIONS(1840), - [anon_sym_move] = ACTIONS(1840), - [anon_sym_try] = ACTIONS(1840), - [sym_integer_literal] = ACTIONS(1838), - [aux_sym_string_literal_token1] = ACTIONS(1838), - [sym_char_literal] = ACTIONS(1838), - [anon_sym_true] = ACTIONS(1840), - [anon_sym_false] = ACTIONS(1840), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1840), - [sym_super] = ACTIONS(1840), - [sym_crate] = ACTIONS(1840), - [sym_metavariable] = ACTIONS(1838), - [sym__raw_string_literal_start] = ACTIONS(1838), - [sym_float_literal] = ACTIONS(1838), + [STATE(465)] = { + [sym_function_modifiers] = STATE(3689), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2653), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(2653), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1685), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3674), + [sym_type_binding] = STATE(2748), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2330), + [sym_label] = STATE(3829), + [sym_block] = STATE(2748), + [sym__literal] = STATE(2748), + [sym_string_literal] = STATE(3232), + [sym_raw_string_literal] = STATE(3232), + [sym_boolean_literal] = STATE(3232), + [sym_line_comment] = STATE(465), + [sym_block_comment] = STATE(465), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1517), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_GT] = ACTIONS(1563), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(1537), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1547), + [sym_integer_literal] = ACTIONS(1549), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1549), }, - [STATE(504)] = { - [sym_line_comment] = STATE(504), - [sym_block_comment] = STATE(504), - [ts_builtin_sym_end] = ACTIONS(1842), - [sym_identifier] = ACTIONS(1844), - [anon_sym_SEMI] = ACTIONS(1842), - [anon_sym_macro_rules_BANG] = ACTIONS(1842), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1842), - [anon_sym_RBRACE] = ACTIONS(1842), - [anon_sym_STAR] = ACTIONS(1842), - [anon_sym_u8] = ACTIONS(1844), - [anon_sym_i8] = ACTIONS(1844), - [anon_sym_u16] = ACTIONS(1844), - [anon_sym_i16] = ACTIONS(1844), - [anon_sym_u32] = ACTIONS(1844), - [anon_sym_i32] = ACTIONS(1844), - [anon_sym_u64] = ACTIONS(1844), - [anon_sym_i64] = ACTIONS(1844), - [anon_sym_u128] = ACTIONS(1844), - [anon_sym_i128] = ACTIONS(1844), - [anon_sym_isize] = ACTIONS(1844), - [anon_sym_usize] = ACTIONS(1844), - [anon_sym_f32] = ACTIONS(1844), - [anon_sym_f64] = ACTIONS(1844), - [anon_sym_bool] = ACTIONS(1844), - [anon_sym_str] = ACTIONS(1844), - [anon_sym_char] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_BANG] = ACTIONS(1842), - [anon_sym_AMP] = ACTIONS(1842), - [anon_sym_PIPE] = ACTIONS(1842), - [anon_sym_LT] = ACTIONS(1842), - [anon_sym_DOT_DOT] = ACTIONS(1842), - [anon_sym_COLON_COLON] = ACTIONS(1842), - [anon_sym_POUND] = ACTIONS(1842), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_async] = ACTIONS(1844), - [anon_sym_break] = ACTIONS(1844), - [anon_sym_const] = ACTIONS(1844), - [anon_sym_continue] = ACTIONS(1844), - [anon_sym_default] = ACTIONS(1844), - [anon_sym_enum] = ACTIONS(1844), - [anon_sym_fn] = ACTIONS(1844), - [anon_sym_for] = ACTIONS(1844), - [anon_sym_gen] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1844), - [anon_sym_impl] = ACTIONS(1844), - [anon_sym_let] = ACTIONS(1844), - [anon_sym_loop] = ACTIONS(1844), - [anon_sym_match] = ACTIONS(1844), - [anon_sym_mod] = ACTIONS(1844), - [anon_sym_pub] = ACTIONS(1844), - [anon_sym_return] = ACTIONS(1844), - [anon_sym_static] = ACTIONS(1844), - [anon_sym_struct] = ACTIONS(1844), - [anon_sym_trait] = ACTIONS(1844), - [anon_sym_type] = ACTIONS(1844), - [anon_sym_union] = ACTIONS(1844), - [anon_sym_unsafe] = ACTIONS(1844), - [anon_sym_use] = ACTIONS(1844), - [anon_sym_while] = ACTIONS(1844), - [anon_sym_extern] = ACTIONS(1844), - [anon_sym_yield] = ACTIONS(1844), - [anon_sym_move] = ACTIONS(1844), - [anon_sym_try] = ACTIONS(1844), - [sym_integer_literal] = ACTIONS(1842), - [aux_sym_string_literal_token1] = ACTIONS(1842), - [sym_char_literal] = ACTIONS(1842), - [anon_sym_true] = ACTIONS(1844), - [anon_sym_false] = ACTIONS(1844), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1844), - [sym_super] = ACTIONS(1844), - [sym_crate] = ACTIONS(1844), - [sym_metavariable] = ACTIONS(1842), - [sym__raw_string_literal_start] = ACTIONS(1842), - [sym_float_literal] = ACTIONS(1842), + [STATE(466)] = { + [sym_function_modifiers] = STATE(3689), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2653), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(2653), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1685), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3674), + [sym_type_binding] = STATE(2748), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2330), + [sym_label] = STATE(3829), + [sym_block] = STATE(2748), + [sym__literal] = STATE(2748), + [sym_string_literal] = STATE(3232), + [sym_raw_string_literal] = STATE(3232), + [sym_boolean_literal] = STATE(3232), + [sym_line_comment] = STATE(466), + [sym_block_comment] = STATE(466), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1517), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_GT] = ACTIONS(1565), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(1537), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1547), + [sym_integer_literal] = ACTIONS(1549), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1549), }, - [STATE(505)] = { + [STATE(467)] = { + [sym_function_modifiers] = STATE(3689), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2653), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(2653), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1685), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3674), + [sym_type_binding] = STATE(2748), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2330), + [sym_label] = STATE(3829), + [sym_block] = STATE(2748), + [sym__literal] = STATE(2748), + [sym_string_literal] = STATE(3232), + [sym_raw_string_literal] = STATE(3232), + [sym_boolean_literal] = STATE(3232), + [sym_line_comment] = STATE(467), + [sym_block_comment] = STATE(467), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1517), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_GT] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(1537), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1547), + [sym_integer_literal] = ACTIONS(1549), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1549), + }, + [STATE(468)] = { + [sym_function_modifiers] = STATE(3689), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2653), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(2653), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1685), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3674), + [sym_type_binding] = STATE(2748), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2330), + [sym_label] = STATE(3829), + [sym_block] = STATE(2748), + [sym__literal] = STATE(2748), + [sym_string_literal] = STATE(3232), + [sym_raw_string_literal] = STATE(3232), + [sym_boolean_literal] = STATE(3232), + [sym_line_comment] = STATE(468), + [sym_block_comment] = STATE(468), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1517), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(1537), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1547), + [sym_integer_literal] = ACTIONS(1549), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1549), + }, + [STATE(469)] = { + [sym_function_modifiers] = STATE(3689), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2653), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(2653), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1685), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3674), + [sym_type_binding] = STATE(2748), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2330), + [sym_label] = STATE(3829), + [sym_block] = STATE(2748), + [sym__literal] = STATE(2748), + [sym_string_literal] = STATE(3232), + [sym_raw_string_literal] = STATE(3232), + [sym_boolean_literal] = STATE(3232), + [sym_line_comment] = STATE(469), + [sym_block_comment] = STATE(469), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1517), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_GT] = ACTIONS(1571), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(1537), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1547), + [sym_integer_literal] = ACTIONS(1549), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1549), + }, + [STATE(470)] = { + [sym_function_modifiers] = STATE(3689), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2653), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(2653), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1685), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3674), + [sym_type_binding] = STATE(2748), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2330), + [sym_label] = STATE(3829), + [sym_block] = STATE(2748), + [sym__literal] = STATE(2748), + [sym_string_literal] = STATE(3232), + [sym_raw_string_literal] = STATE(3232), + [sym_boolean_literal] = STATE(3232), + [sym_line_comment] = STATE(470), + [sym_block_comment] = STATE(470), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1517), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(1537), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1547), + [sym_integer_literal] = ACTIONS(1549), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1549), + }, + [STATE(471)] = { + [sym_function_modifiers] = STATE(3689), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2653), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(2653), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1685), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3674), + [sym_type_binding] = STATE(2748), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2330), + [sym_label] = STATE(3829), + [sym_block] = STATE(2748), + [sym__literal] = STATE(2748), + [sym_string_literal] = STATE(3232), + [sym_raw_string_literal] = STATE(3232), + [sym_boolean_literal] = STATE(3232), + [sym_line_comment] = STATE(471), + [sym_block_comment] = STATE(471), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1517), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_GT] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(1537), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1547), + [sym_integer_literal] = ACTIONS(1549), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1549), + }, + [STATE(472)] = { + [sym_function_modifiers] = STATE(3689), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2460), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(2460), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1685), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3674), + [sym_type_binding] = STATE(2625), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2330), + [sym_label] = STATE(3829), + [sym_block] = STATE(2625), + [sym__literal] = STATE(2625), + [sym_string_literal] = STATE(3232), + [sym_raw_string_literal] = STATE(3232), + [sym_boolean_literal] = STATE(3232), + [sym_line_comment] = STATE(472), + [sym_block_comment] = STATE(472), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1517), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(1537), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1547), + [sym_integer_literal] = ACTIONS(1549), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1549), + }, + [STATE(473)] = { + [sym_function_modifiers] = STATE(3689), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2510), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(2510), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1685), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3674), + [sym_type_binding] = STATE(2578), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2330), + [sym_label] = STATE(3829), + [sym_block] = STATE(2578), + [sym__literal] = STATE(2578), + [sym_string_literal] = STATE(3232), + [sym_raw_string_literal] = STATE(3232), + [sym_boolean_literal] = STATE(3232), + [sym_line_comment] = STATE(473), + [sym_block_comment] = STATE(473), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1517), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(1537), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1547), + [sym_integer_literal] = ACTIONS(1549), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1549), + }, + [STATE(474)] = { + [sym_function_modifiers] = STATE(3689), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2505), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(2505), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1685), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3674), + [sym_type_binding] = STATE(2563), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2330), + [sym_label] = STATE(3829), + [sym_block] = STATE(2563), + [sym__literal] = STATE(2563), + [sym_string_literal] = STATE(3232), + [sym_raw_string_literal] = STATE(3232), + [sym_boolean_literal] = STATE(3232), + [sym_line_comment] = STATE(474), + [sym_block_comment] = STATE(474), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1517), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(1537), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1547), + [sym_integer_literal] = ACTIONS(1549), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1549), + }, + [STATE(475)] = { + [sym_function_modifiers] = STATE(3689), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2469), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(2469), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1685), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3674), + [sym_type_binding] = STATE(2585), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2330), + [sym_label] = STATE(3829), + [sym_block] = STATE(2585), + [sym__literal] = STATE(2585), + [sym_string_literal] = STATE(3232), + [sym_raw_string_literal] = STATE(3232), + [sym_boolean_literal] = STATE(3232), + [sym_line_comment] = STATE(475), + [sym_block_comment] = STATE(475), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1517), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(1537), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1547), + [sym_integer_literal] = ACTIONS(1549), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1549), + }, + [STATE(476)] = { + [sym_function_modifiers] = STATE(3689), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2653), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(2653), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1685), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3674), + [sym_type_binding] = STATE(2748), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2330), + [sym_label] = STATE(3829), + [sym_block] = STATE(2748), + [sym__literal] = STATE(2748), + [sym_string_literal] = STATE(3232), + [sym_raw_string_literal] = STATE(3232), + [sym_boolean_literal] = STATE(3232), + [sym_line_comment] = STATE(476), + [sym_block_comment] = STATE(476), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1517), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(1537), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1547), + [sym_integer_literal] = ACTIONS(1549), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1549), + }, + [STATE(477)] = { + [sym_attribute_item] = STATE(1406), + [sym_attributes] = STATE(836), + [sym_inner_attribute_item] = STATE(1149), + [sym_bracketed_type] = STATE(3755), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3470), + [sym_macro_invocation] = STATE(3150), + [sym_scoped_identifier] = STATE(2303), + [sym_scoped_type_identifier] = STATE(3084), + [sym_match_arm] = STATE(1409), + [sym_last_match_arm] = STATE(3780), + [sym_match_pattern] = STATE(3734), + [sym_const_block] = STATE(3150), + [sym__pattern] = STATE(3193), + [sym_generic_pattern] = STATE(3150), + [sym_tuple_pattern] = STATE(3150), + [sym_slice_pattern] = STATE(3150), + [sym_tuple_struct_pattern] = STATE(3150), + [sym_struct_pattern] = STATE(3150), + [sym_remaining_field_pattern] = STATE(3150), + [sym_mut_pattern] = STATE(3150), + [sym_range_pattern] = STATE(3150), + [sym_ref_pattern] = STATE(3150), + [sym_captured_pattern] = STATE(3150), + [sym_reference_pattern] = STATE(3150), + [sym_or_pattern] = STATE(3150), + [sym__literal_pattern] = STATE(2485), + [sym_negative_literal] = STATE(2477), + [sym_string_literal] = STATE(2477), + [sym_raw_string_literal] = STATE(2477), + [sym_boolean_literal] = STATE(2477), + [sym_line_comment] = STATE(477), + [sym_block_comment] = STATE(477), + [aux_sym_attributes_repeat1] = STATE(1128), + [aux_sym_match_block_repeat1] = STATE(1117), + [aux_sym_match_block_repeat2] = STATE(500), + [sym_identifier] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_RBRACE] = ACTIONS(1583), + [anon_sym_u8] = ACTIONS(1585), + [anon_sym_i8] = ACTIONS(1585), + [anon_sym_u16] = ACTIONS(1585), + [anon_sym_i16] = ACTIONS(1585), + [anon_sym_u32] = ACTIONS(1585), + [anon_sym_i32] = ACTIONS(1585), + [anon_sym_u64] = ACTIONS(1585), + [anon_sym_i64] = ACTIONS(1585), + [anon_sym_u128] = ACTIONS(1585), + [anon_sym_i128] = ACTIONS(1585), + [anon_sym_isize] = ACTIONS(1585), + [anon_sym_usize] = ACTIONS(1585), + [anon_sym_f32] = ACTIONS(1585), + [anon_sym_f64] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_str] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1597), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(1601), + [anon_sym_const] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1605), + [anon_sym_gen] = ACTIONS(1605), + [anon_sym_union] = ACTIONS(1605), + [anon_sym_ref] = ACTIONS(1607), + [sym_mutable_specifier] = ACTIONS(1609), + [sym_integer_literal] = ACTIONS(1611), + [aux_sym_string_literal_token1] = ACTIONS(1613), + [sym_char_literal] = ACTIONS(1611), + [anon_sym_true] = ACTIONS(1615), + [anon_sym_false] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1617), + [sym_super] = ACTIONS(1617), + [sym_crate] = ACTIONS(1617), + [sym_metavariable] = ACTIONS(1619), + [sym__raw_string_literal_start] = ACTIONS(1621), + [sym_float_literal] = ACTIONS(1611), + }, + [STATE(478)] = { + [sym_attribute_item] = STATE(1406), + [sym_attributes] = STATE(836), + [sym_inner_attribute_item] = STATE(1149), + [sym_bracketed_type] = STATE(3755), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3470), + [sym_macro_invocation] = STATE(3150), + [sym_scoped_identifier] = STATE(2303), + [sym_scoped_type_identifier] = STATE(3084), + [sym_match_arm] = STATE(1409), + [sym_last_match_arm] = STATE(3725), + [sym_match_pattern] = STATE(3734), + [sym_const_block] = STATE(3150), + [sym__pattern] = STATE(3193), + [sym_generic_pattern] = STATE(3150), + [sym_tuple_pattern] = STATE(3150), + [sym_slice_pattern] = STATE(3150), + [sym_tuple_struct_pattern] = STATE(3150), + [sym_struct_pattern] = STATE(3150), + [sym_remaining_field_pattern] = STATE(3150), + [sym_mut_pattern] = STATE(3150), + [sym_range_pattern] = STATE(3150), + [sym_ref_pattern] = STATE(3150), + [sym_captured_pattern] = STATE(3150), + [sym_reference_pattern] = STATE(3150), + [sym_or_pattern] = STATE(3150), + [sym__literal_pattern] = STATE(2485), + [sym_negative_literal] = STATE(2477), + [sym_string_literal] = STATE(2477), + [sym_raw_string_literal] = STATE(2477), + [sym_boolean_literal] = STATE(2477), + [sym_line_comment] = STATE(478), + [sym_block_comment] = STATE(478), + [aux_sym_attributes_repeat1] = STATE(1128), + [aux_sym_match_block_repeat1] = STATE(481), + [aux_sym_match_block_repeat2] = STATE(493), + [sym_identifier] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_RBRACE] = ACTIONS(1623), + [anon_sym_u8] = ACTIONS(1585), + [anon_sym_i8] = ACTIONS(1585), + [anon_sym_u16] = ACTIONS(1585), + [anon_sym_i16] = ACTIONS(1585), + [anon_sym_u32] = ACTIONS(1585), + [anon_sym_i32] = ACTIONS(1585), + [anon_sym_u64] = ACTIONS(1585), + [anon_sym_i64] = ACTIONS(1585), + [anon_sym_u128] = ACTIONS(1585), + [anon_sym_i128] = ACTIONS(1585), + [anon_sym_isize] = ACTIONS(1585), + [anon_sym_usize] = ACTIONS(1585), + [anon_sym_f32] = ACTIONS(1585), + [anon_sym_f64] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_str] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1597), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(1601), + [anon_sym_const] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1605), + [anon_sym_gen] = ACTIONS(1605), + [anon_sym_union] = ACTIONS(1605), + [anon_sym_ref] = ACTIONS(1607), + [sym_mutable_specifier] = ACTIONS(1609), + [sym_integer_literal] = ACTIONS(1611), + [aux_sym_string_literal_token1] = ACTIONS(1613), + [sym_char_literal] = ACTIONS(1611), + [anon_sym_true] = ACTIONS(1615), + [anon_sym_false] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1617), + [sym_super] = ACTIONS(1617), + [sym_crate] = ACTIONS(1617), + [sym_metavariable] = ACTIONS(1619), + [sym__raw_string_literal_start] = ACTIONS(1621), + [sym_float_literal] = ACTIONS(1611), + }, + [STATE(479)] = { + [sym_attribute_item] = STATE(1406), + [sym_attributes] = STATE(836), + [sym_inner_attribute_item] = STATE(1149), + [sym_bracketed_type] = STATE(3755), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3470), + [sym_macro_invocation] = STATE(3150), + [sym_scoped_identifier] = STATE(2303), + [sym_scoped_type_identifier] = STATE(3084), + [sym_match_arm] = STATE(1409), + [sym_last_match_arm] = STATE(3789), + [sym_match_pattern] = STATE(3734), + [sym_const_block] = STATE(3150), + [sym__pattern] = STATE(3193), + [sym_generic_pattern] = STATE(3150), + [sym_tuple_pattern] = STATE(3150), + [sym_slice_pattern] = STATE(3150), + [sym_tuple_struct_pattern] = STATE(3150), + [sym_struct_pattern] = STATE(3150), + [sym_remaining_field_pattern] = STATE(3150), + [sym_mut_pattern] = STATE(3150), + [sym_range_pattern] = STATE(3150), + [sym_ref_pattern] = STATE(3150), + [sym_captured_pattern] = STATE(3150), + [sym_reference_pattern] = STATE(3150), + [sym_or_pattern] = STATE(3150), + [sym__literal_pattern] = STATE(2485), + [sym_negative_literal] = STATE(2477), + [sym_string_literal] = STATE(2477), + [sym_raw_string_literal] = STATE(2477), + [sym_boolean_literal] = STATE(2477), + [sym_line_comment] = STATE(479), + [sym_block_comment] = STATE(479), + [aux_sym_attributes_repeat1] = STATE(1128), + [aux_sym_match_block_repeat1] = STATE(477), + [aux_sym_match_block_repeat2] = STATE(499), + [sym_identifier] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_RBRACE] = ACTIONS(1625), + [anon_sym_u8] = ACTIONS(1585), + [anon_sym_i8] = ACTIONS(1585), + [anon_sym_u16] = ACTIONS(1585), + [anon_sym_i16] = ACTIONS(1585), + [anon_sym_u32] = ACTIONS(1585), + [anon_sym_i32] = ACTIONS(1585), + [anon_sym_u64] = ACTIONS(1585), + [anon_sym_i64] = ACTIONS(1585), + [anon_sym_u128] = ACTIONS(1585), + [anon_sym_i128] = ACTIONS(1585), + [anon_sym_isize] = ACTIONS(1585), + [anon_sym_usize] = ACTIONS(1585), + [anon_sym_f32] = ACTIONS(1585), + [anon_sym_f64] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_str] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1597), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(1601), + [anon_sym_const] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1605), + [anon_sym_gen] = ACTIONS(1605), + [anon_sym_union] = ACTIONS(1605), + [anon_sym_ref] = ACTIONS(1607), + [sym_mutable_specifier] = ACTIONS(1609), + [sym_integer_literal] = ACTIONS(1611), + [aux_sym_string_literal_token1] = ACTIONS(1613), + [sym_char_literal] = ACTIONS(1611), + [anon_sym_true] = ACTIONS(1615), + [anon_sym_false] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1617), + [sym_super] = ACTIONS(1617), + [sym_crate] = ACTIONS(1617), + [sym_metavariable] = ACTIONS(1619), + [sym__raw_string_literal_start] = ACTIONS(1621), + [sym_float_literal] = ACTIONS(1611), + }, + [STATE(480)] = { + [sym_attribute_item] = STATE(1406), + [sym_attributes] = STATE(836), + [sym_inner_attribute_item] = STATE(1149), + [sym_bracketed_type] = STATE(3755), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3470), + [sym_macro_invocation] = STATE(3150), + [sym_scoped_identifier] = STATE(2303), + [sym_scoped_type_identifier] = STATE(3084), + [sym_match_arm] = STATE(1409), + [sym_last_match_arm] = STATE(3609), + [sym_match_pattern] = STATE(3734), + [sym_const_block] = STATE(3150), + [sym__pattern] = STATE(3193), + [sym_generic_pattern] = STATE(3150), + [sym_tuple_pattern] = STATE(3150), + [sym_slice_pattern] = STATE(3150), + [sym_tuple_struct_pattern] = STATE(3150), + [sym_struct_pattern] = STATE(3150), + [sym_remaining_field_pattern] = STATE(3150), + [sym_mut_pattern] = STATE(3150), + [sym_range_pattern] = STATE(3150), + [sym_ref_pattern] = STATE(3150), + [sym_captured_pattern] = STATE(3150), + [sym_reference_pattern] = STATE(3150), + [sym_or_pattern] = STATE(3150), + [sym__literal_pattern] = STATE(2485), + [sym_negative_literal] = STATE(2477), + [sym_string_literal] = STATE(2477), + [sym_raw_string_literal] = STATE(2477), + [sym_boolean_literal] = STATE(2477), + [sym_line_comment] = STATE(480), + [sym_block_comment] = STATE(480), + [aux_sym_attributes_repeat1] = STATE(1128), + [aux_sym_match_block_repeat1] = STATE(482), + [aux_sym_match_block_repeat2] = STATE(502), + [sym_identifier] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_RBRACE] = ACTIONS(1627), + [anon_sym_u8] = ACTIONS(1585), + [anon_sym_i8] = ACTIONS(1585), + [anon_sym_u16] = ACTIONS(1585), + [anon_sym_i16] = ACTIONS(1585), + [anon_sym_u32] = ACTIONS(1585), + [anon_sym_i32] = ACTIONS(1585), + [anon_sym_u64] = ACTIONS(1585), + [anon_sym_i64] = ACTIONS(1585), + [anon_sym_u128] = ACTIONS(1585), + [anon_sym_i128] = ACTIONS(1585), + [anon_sym_isize] = ACTIONS(1585), + [anon_sym_usize] = ACTIONS(1585), + [anon_sym_f32] = ACTIONS(1585), + [anon_sym_f64] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_str] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1597), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(1601), + [anon_sym_const] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1605), + [anon_sym_gen] = ACTIONS(1605), + [anon_sym_union] = ACTIONS(1605), + [anon_sym_ref] = ACTIONS(1607), + [sym_mutable_specifier] = ACTIONS(1609), + [sym_integer_literal] = ACTIONS(1611), + [aux_sym_string_literal_token1] = ACTIONS(1613), + [sym_char_literal] = ACTIONS(1611), + [anon_sym_true] = ACTIONS(1615), + [anon_sym_false] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1617), + [sym_super] = ACTIONS(1617), + [sym_crate] = ACTIONS(1617), + [sym_metavariable] = ACTIONS(1619), + [sym__raw_string_literal_start] = ACTIONS(1621), + [sym_float_literal] = ACTIONS(1611), + }, + [STATE(481)] = { + [sym_attribute_item] = STATE(1406), + [sym_attributes] = STATE(836), + [sym_inner_attribute_item] = STATE(1149), + [sym_bracketed_type] = STATE(3755), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3470), + [sym_macro_invocation] = STATE(3150), + [sym_scoped_identifier] = STATE(2303), + [sym_scoped_type_identifier] = STATE(3084), + [sym_match_arm] = STATE(1409), + [sym_last_match_arm] = STATE(3852), + [sym_match_pattern] = STATE(3734), + [sym_const_block] = STATE(3150), + [sym__pattern] = STATE(3193), + [sym_generic_pattern] = STATE(3150), + [sym_tuple_pattern] = STATE(3150), + [sym_slice_pattern] = STATE(3150), + [sym_tuple_struct_pattern] = STATE(3150), + [sym_struct_pattern] = STATE(3150), + [sym_remaining_field_pattern] = STATE(3150), + [sym_mut_pattern] = STATE(3150), + [sym_range_pattern] = STATE(3150), + [sym_ref_pattern] = STATE(3150), + [sym_captured_pattern] = STATE(3150), + [sym_reference_pattern] = STATE(3150), + [sym_or_pattern] = STATE(3150), + [sym__literal_pattern] = STATE(2485), + [sym_negative_literal] = STATE(2477), + [sym_string_literal] = STATE(2477), + [sym_raw_string_literal] = STATE(2477), + [sym_boolean_literal] = STATE(2477), + [sym_line_comment] = STATE(481), + [sym_block_comment] = STATE(481), + [aux_sym_attributes_repeat1] = STATE(1128), + [aux_sym_match_block_repeat1] = STATE(1117), + [aux_sym_match_block_repeat2] = STATE(488), + [sym_identifier] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_RBRACE] = ACTIONS(1629), + [anon_sym_u8] = ACTIONS(1585), + [anon_sym_i8] = ACTIONS(1585), + [anon_sym_u16] = ACTIONS(1585), + [anon_sym_i16] = ACTIONS(1585), + [anon_sym_u32] = ACTIONS(1585), + [anon_sym_i32] = ACTIONS(1585), + [anon_sym_u64] = ACTIONS(1585), + [anon_sym_i64] = ACTIONS(1585), + [anon_sym_u128] = ACTIONS(1585), + [anon_sym_i128] = ACTIONS(1585), + [anon_sym_isize] = ACTIONS(1585), + [anon_sym_usize] = ACTIONS(1585), + [anon_sym_f32] = ACTIONS(1585), + [anon_sym_f64] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_str] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1597), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(1601), + [anon_sym_const] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1605), + [anon_sym_gen] = ACTIONS(1605), + [anon_sym_union] = ACTIONS(1605), + [anon_sym_ref] = ACTIONS(1607), + [sym_mutable_specifier] = ACTIONS(1609), + [sym_integer_literal] = ACTIONS(1611), + [aux_sym_string_literal_token1] = ACTIONS(1613), + [sym_char_literal] = ACTIONS(1611), + [anon_sym_true] = ACTIONS(1615), + [anon_sym_false] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1617), + [sym_super] = ACTIONS(1617), + [sym_crate] = ACTIONS(1617), + [sym_metavariable] = ACTIONS(1619), + [sym__raw_string_literal_start] = ACTIONS(1621), + [sym_float_literal] = ACTIONS(1611), + }, + [STATE(482)] = { + [sym_attribute_item] = STATE(1406), + [sym_attributes] = STATE(836), + [sym_inner_attribute_item] = STATE(1149), + [sym_bracketed_type] = STATE(3755), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3470), + [sym_macro_invocation] = STATE(3150), + [sym_scoped_identifier] = STATE(2303), + [sym_scoped_type_identifier] = STATE(3084), + [sym_match_arm] = STATE(1409), + [sym_last_match_arm] = STATE(3741), + [sym_match_pattern] = STATE(3734), + [sym_const_block] = STATE(3150), + [sym__pattern] = STATE(3193), + [sym_generic_pattern] = STATE(3150), + [sym_tuple_pattern] = STATE(3150), + [sym_slice_pattern] = STATE(3150), + [sym_tuple_struct_pattern] = STATE(3150), + [sym_struct_pattern] = STATE(3150), + [sym_remaining_field_pattern] = STATE(3150), + [sym_mut_pattern] = STATE(3150), + [sym_range_pattern] = STATE(3150), + [sym_ref_pattern] = STATE(3150), + [sym_captured_pattern] = STATE(3150), + [sym_reference_pattern] = STATE(3150), + [sym_or_pattern] = STATE(3150), + [sym__literal_pattern] = STATE(2485), + [sym_negative_literal] = STATE(2477), + [sym_string_literal] = STATE(2477), + [sym_raw_string_literal] = STATE(2477), + [sym_boolean_literal] = STATE(2477), + [sym_line_comment] = STATE(482), + [sym_block_comment] = STATE(482), + [aux_sym_attributes_repeat1] = STATE(1128), + [aux_sym_match_block_repeat1] = STATE(1117), + [aux_sym_match_block_repeat2] = STATE(503), + [sym_identifier] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_RBRACE] = ACTIONS(1631), + [anon_sym_u8] = ACTIONS(1585), + [anon_sym_i8] = ACTIONS(1585), + [anon_sym_u16] = ACTIONS(1585), + [anon_sym_i16] = ACTIONS(1585), + [anon_sym_u32] = ACTIONS(1585), + [anon_sym_i32] = ACTIONS(1585), + [anon_sym_u64] = ACTIONS(1585), + [anon_sym_i64] = ACTIONS(1585), + [anon_sym_u128] = ACTIONS(1585), + [anon_sym_i128] = ACTIONS(1585), + [anon_sym_isize] = ACTIONS(1585), + [anon_sym_usize] = ACTIONS(1585), + [anon_sym_f32] = ACTIONS(1585), + [anon_sym_f64] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_str] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1597), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(1601), + [anon_sym_const] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1605), + [anon_sym_gen] = ACTIONS(1605), + [anon_sym_union] = ACTIONS(1605), + [anon_sym_ref] = ACTIONS(1607), + [sym_mutable_specifier] = ACTIONS(1609), + [sym_integer_literal] = ACTIONS(1611), + [aux_sym_string_literal_token1] = ACTIONS(1613), + [sym_char_literal] = ACTIONS(1611), + [anon_sym_true] = ACTIONS(1615), + [anon_sym_false] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1617), + [sym_super] = ACTIONS(1617), + [sym_crate] = ACTIONS(1617), + [sym_metavariable] = ACTIONS(1619), + [sym__raw_string_literal_start] = ACTIONS(1621), + [sym_float_literal] = ACTIONS(1611), + }, + [STATE(483)] = { + [sym_attribute_item] = STATE(1406), + [sym_attributes] = STATE(836), + [sym_inner_attribute_item] = STATE(1149), + [sym_bracketed_type] = STATE(3755), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3470), + [sym_macro_invocation] = STATE(3150), + [sym_scoped_identifier] = STATE(2303), + [sym_scoped_type_identifier] = STATE(3084), + [sym_match_arm] = STATE(1409), + [sym_last_match_arm] = STATE(3766), + [sym_match_pattern] = STATE(3734), + [sym_const_block] = STATE(3150), + [sym__pattern] = STATE(3193), + [sym_generic_pattern] = STATE(3150), + [sym_tuple_pattern] = STATE(3150), + [sym_slice_pattern] = STATE(3150), + [sym_tuple_struct_pattern] = STATE(3150), + [sym_struct_pattern] = STATE(3150), + [sym_remaining_field_pattern] = STATE(3150), + [sym_mut_pattern] = STATE(3150), + [sym_range_pattern] = STATE(3150), + [sym_ref_pattern] = STATE(3150), + [sym_captured_pattern] = STATE(3150), + [sym_reference_pattern] = STATE(3150), + [sym_or_pattern] = STATE(3150), + [sym__literal_pattern] = STATE(2485), + [sym_negative_literal] = STATE(2477), + [sym_string_literal] = STATE(2477), + [sym_raw_string_literal] = STATE(2477), + [sym_boolean_literal] = STATE(2477), + [sym_line_comment] = STATE(483), + [sym_block_comment] = STATE(483), + [aux_sym_attributes_repeat1] = STATE(1128), + [aux_sym_match_block_repeat1] = STATE(484), + [aux_sym_match_block_repeat2] = STATE(487), + [sym_identifier] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_RBRACE] = ACTIONS(1633), + [anon_sym_u8] = ACTIONS(1585), + [anon_sym_i8] = ACTIONS(1585), + [anon_sym_u16] = ACTIONS(1585), + [anon_sym_i16] = ACTIONS(1585), + [anon_sym_u32] = ACTIONS(1585), + [anon_sym_i32] = ACTIONS(1585), + [anon_sym_u64] = ACTIONS(1585), + [anon_sym_i64] = ACTIONS(1585), + [anon_sym_u128] = ACTIONS(1585), + [anon_sym_i128] = ACTIONS(1585), + [anon_sym_isize] = ACTIONS(1585), + [anon_sym_usize] = ACTIONS(1585), + [anon_sym_f32] = ACTIONS(1585), + [anon_sym_f64] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_str] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1597), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(1601), + [anon_sym_const] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1605), + [anon_sym_gen] = ACTIONS(1605), + [anon_sym_union] = ACTIONS(1605), + [anon_sym_ref] = ACTIONS(1607), + [sym_mutable_specifier] = ACTIONS(1609), + [sym_integer_literal] = ACTIONS(1611), + [aux_sym_string_literal_token1] = ACTIONS(1613), + [sym_char_literal] = ACTIONS(1611), + [anon_sym_true] = ACTIONS(1615), + [anon_sym_false] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1617), + [sym_super] = ACTIONS(1617), + [sym_crate] = ACTIONS(1617), + [sym_metavariable] = ACTIONS(1619), + [sym__raw_string_literal_start] = ACTIONS(1621), + [sym_float_literal] = ACTIONS(1611), + }, + [STATE(484)] = { + [sym_attribute_item] = STATE(1406), + [sym_attributes] = STATE(836), + [sym_inner_attribute_item] = STATE(1149), + [sym_bracketed_type] = STATE(3755), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3470), + [sym_macro_invocation] = STATE(3150), + [sym_scoped_identifier] = STATE(2303), + [sym_scoped_type_identifier] = STATE(3084), + [sym_match_arm] = STATE(1409), + [sym_last_match_arm] = STATE(3818), + [sym_match_pattern] = STATE(3734), + [sym_const_block] = STATE(3150), + [sym__pattern] = STATE(3193), + [sym_generic_pattern] = STATE(3150), + [sym_tuple_pattern] = STATE(3150), + [sym_slice_pattern] = STATE(3150), + [sym_tuple_struct_pattern] = STATE(3150), + [sym_struct_pattern] = STATE(3150), + [sym_remaining_field_pattern] = STATE(3150), + [sym_mut_pattern] = STATE(3150), + [sym_range_pattern] = STATE(3150), + [sym_ref_pattern] = STATE(3150), + [sym_captured_pattern] = STATE(3150), + [sym_reference_pattern] = STATE(3150), + [sym_or_pattern] = STATE(3150), + [sym__literal_pattern] = STATE(2485), + [sym_negative_literal] = STATE(2477), + [sym_string_literal] = STATE(2477), + [sym_raw_string_literal] = STATE(2477), + [sym_boolean_literal] = STATE(2477), + [sym_line_comment] = STATE(484), + [sym_block_comment] = STATE(484), + [aux_sym_attributes_repeat1] = STATE(1128), + [aux_sym_match_block_repeat1] = STATE(1117), + [aux_sym_match_block_repeat2] = STATE(489), + [sym_identifier] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_RBRACE] = ACTIONS(1635), + [anon_sym_u8] = ACTIONS(1585), + [anon_sym_i8] = ACTIONS(1585), + [anon_sym_u16] = ACTIONS(1585), + [anon_sym_i16] = ACTIONS(1585), + [anon_sym_u32] = ACTIONS(1585), + [anon_sym_i32] = ACTIONS(1585), + [anon_sym_u64] = ACTIONS(1585), + [anon_sym_i64] = ACTIONS(1585), + [anon_sym_u128] = ACTIONS(1585), + [anon_sym_i128] = ACTIONS(1585), + [anon_sym_isize] = ACTIONS(1585), + [anon_sym_usize] = ACTIONS(1585), + [anon_sym_f32] = ACTIONS(1585), + [anon_sym_f64] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_str] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1597), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(1601), + [anon_sym_const] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1605), + [anon_sym_gen] = ACTIONS(1605), + [anon_sym_union] = ACTIONS(1605), + [anon_sym_ref] = ACTIONS(1607), + [sym_mutable_specifier] = ACTIONS(1609), + [sym_integer_literal] = ACTIONS(1611), + [aux_sym_string_literal_token1] = ACTIONS(1613), + [sym_char_literal] = ACTIONS(1611), + [anon_sym_true] = ACTIONS(1615), + [anon_sym_false] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1617), + [sym_super] = ACTIONS(1617), + [sym_crate] = ACTIONS(1617), + [sym_metavariable] = ACTIONS(1619), + [sym__raw_string_literal_start] = ACTIONS(1621), + [sym_float_literal] = ACTIONS(1611), + }, + [STATE(485)] = { + [sym_else_clause] = STATE(517), + [sym_line_comment] = STATE(485), + [sym_block_comment] = STATE(485), + [sym_identifier] = ACTIONS(1319), + [anon_sym_LPAREN] = ACTIONS(1317), + [anon_sym_LBRACK] = ACTIONS(1317), + [anon_sym_RBRACE] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_QMARK] = ACTIONS(1317), + [anon_sym_u8] = ACTIONS(1319), + [anon_sym_i8] = ACTIONS(1319), + [anon_sym_u16] = ACTIONS(1319), + [anon_sym_i16] = ACTIONS(1319), + [anon_sym_u32] = ACTIONS(1319), + [anon_sym_i32] = ACTIONS(1319), + [anon_sym_u64] = ACTIONS(1319), + [anon_sym_i64] = ACTIONS(1319), + [anon_sym_u128] = ACTIONS(1319), + [anon_sym_i128] = ACTIONS(1319), + [anon_sym_isize] = ACTIONS(1319), + [anon_sym_usize] = ACTIONS(1319), + [anon_sym_f32] = ACTIONS(1319), + [anon_sym_f64] = ACTIONS(1319), + [anon_sym_bool] = ACTIONS(1319), + [anon_sym_str] = ACTIONS(1319), + [anon_sym_char] = ACTIONS(1319), + [anon_sym_DASH] = ACTIONS(1319), + [anon_sym_SLASH] = ACTIONS(1319), + [anon_sym_PERCENT] = ACTIONS(1319), + [anon_sym_CARET] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_PIPE] = ACTIONS(1319), + [anon_sym_AMP_AMP] = ACTIONS(1317), + [anon_sym_PIPE_PIPE] = ACTIONS(1317), + [anon_sym_LT_LT] = ACTIONS(1319), + [anon_sym_GT_GT] = ACTIONS(1319), + [anon_sym_PLUS_EQ] = ACTIONS(1317), + [anon_sym_DASH_EQ] = ACTIONS(1317), + [anon_sym_STAR_EQ] = ACTIONS(1317), + [anon_sym_SLASH_EQ] = ACTIONS(1317), + [anon_sym_PERCENT_EQ] = ACTIONS(1317), + [anon_sym_CARET_EQ] = ACTIONS(1317), + [anon_sym_AMP_EQ] = ACTIONS(1317), + [anon_sym_PIPE_EQ] = ACTIONS(1317), + [anon_sym_LT_LT_EQ] = ACTIONS(1317), + [anon_sym_GT_GT_EQ] = ACTIONS(1317), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_EQ_EQ] = ACTIONS(1317), + [anon_sym_BANG_EQ] = ACTIONS(1317), + [anon_sym_GT] = ACTIONS(1319), + [anon_sym_LT] = ACTIONS(1319), + [anon_sym_GT_EQ] = ACTIONS(1317), + [anon_sym_LT_EQ] = ACTIONS(1317), + [anon_sym__] = ACTIONS(1319), + [anon_sym_DOT] = ACTIONS(1319), + [anon_sym_DOT_DOT] = ACTIONS(1319), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1317), + [anon_sym_COMMA] = ACTIONS(1317), + [anon_sym_COLON_COLON] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(1317), + [anon_sym_as] = ACTIONS(1319), + [anon_sym_const] = ACTIONS(1319), + [anon_sym_default] = ACTIONS(1319), + [anon_sym_gen] = ACTIONS(1319), + [anon_sym_union] = ACTIONS(1319), + [anon_sym_ref] = ACTIONS(1319), + [anon_sym_else] = ACTIONS(1637), + [sym_mutable_specifier] = ACTIONS(1319), + [sym_integer_literal] = ACTIONS(1317), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1319), + [sym_super] = ACTIONS(1319), + [sym_crate] = ACTIONS(1319), + [sym_metavariable] = ACTIONS(1317), + [sym__raw_string_literal_start] = ACTIONS(1317), + [sym_float_literal] = ACTIONS(1317), + }, + [STATE(486)] = { + [sym_empty_statement] = STATE(1419), + [sym_declaration_with_attribute] = STATE(1419), + [sym_macro_definition] = STATE(1419), + [sym_attribute_item] = STATE(1485), + [sym_attributes] = STATE(531), + [sym_inner_attribute_item] = STATE(1419), + [sym_mod_item] = STATE(1419), + [sym_foreign_mod_item] = STATE(1419), + [sym_struct_item] = STATE(1419), + [sym_union_item] = STATE(1419), + [sym_enum_item] = STATE(1419), + [sym_extern_crate_declaration] = STATE(1419), + [sym_const_item] = STATE(1419), + [sym_static_item] = STATE(1419), + [sym_type_item] = STATE(1419), + [sym_function_item] = STATE(1419), + [sym_function_signature_item] = STATE(1419), + [sym_function_modifiers] = STATE(3843), + [sym_impl_item] = STATE(1419), + [sym_trait_item] = STATE(1419), + [sym_associated_type] = STATE(1419), + [sym_let_declaration] = STATE(1419), + [sym_use_declaration] = STATE(1419), + [sym_extern_modifier] = STATE(2313), + [sym_visibility_modifier] = STATE(2088), + [sym_bracketed_type] = STATE(3798), + [sym_generic_type_with_turbofish] = STATE(3872), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(3265), + [sym_line_comment] = STATE(486), + [sym_block_comment] = STATE(486), + [aux_sym_attributes_repeat1] = STATE(1151), + [aux_sym_declaration_list_repeat1] = STATE(497), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1639), + [anon_sym_SEMI] = ACTIONS(1641), + [anon_sym_macro_rules_BANG] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1645), + [anon_sym_u8] = ACTIONS(1647), + [anon_sym_i8] = ACTIONS(1647), + [anon_sym_u16] = ACTIONS(1647), + [anon_sym_i16] = ACTIONS(1647), + [anon_sym_u32] = ACTIONS(1647), + [anon_sym_i32] = ACTIONS(1647), + [anon_sym_u64] = ACTIONS(1647), + [anon_sym_i64] = ACTIONS(1647), + [anon_sym_u128] = ACTIONS(1647), + [anon_sym_i128] = ACTIONS(1647), + [anon_sym_isize] = ACTIONS(1647), + [anon_sym_usize] = ACTIONS(1647), + [anon_sym_f32] = ACTIONS(1647), + [anon_sym_f64] = ACTIONS(1647), + [anon_sym_bool] = ACTIONS(1647), + [anon_sym_str] = ACTIONS(1647), + [anon_sym_char] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1649), + [anon_sym_POUND] = ACTIONS(1651), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1653), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_enum] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1659), + [anon_sym_gen] = ACTIONS(1661), + [anon_sym_impl] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(1665), + [anon_sym_mod] = ACTIONS(1667), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(1669), + [anon_sym_struct] = ACTIONS(1671), + [anon_sym_trait] = ACTIONS(1673), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_union] = ACTIONS(1677), + [anon_sym_unsafe] = ACTIONS(1679), + [anon_sym_use] = ACTIONS(1681), + [anon_sym_extern] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1685), + [sym_super] = ACTIONS(1685), + [sym_crate] = ACTIONS(1687), + [sym_metavariable] = ACTIONS(1689), + }, + [STATE(487)] = { + [sym_attribute_item] = STATE(1406), + [sym_attributes] = STATE(836), + [sym_bracketed_type] = STATE(3755), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3470), + [sym_macro_invocation] = STATE(3150), + [sym_scoped_identifier] = STATE(2303), + [sym_scoped_type_identifier] = STATE(3084), + [sym_match_arm] = STATE(1409), + [sym_last_match_arm] = STATE(3818), + [sym_match_pattern] = STATE(3734), + [sym_const_block] = STATE(3150), + [sym__pattern] = STATE(3193), + [sym_generic_pattern] = STATE(3150), + [sym_tuple_pattern] = STATE(3150), + [sym_slice_pattern] = STATE(3150), + [sym_tuple_struct_pattern] = STATE(3150), + [sym_struct_pattern] = STATE(3150), + [sym_remaining_field_pattern] = STATE(3150), + [sym_mut_pattern] = STATE(3150), + [sym_range_pattern] = STATE(3150), + [sym_ref_pattern] = STATE(3150), + [sym_captured_pattern] = STATE(3150), + [sym_reference_pattern] = STATE(3150), + [sym_or_pattern] = STATE(3150), + [sym__literal_pattern] = STATE(2485), + [sym_negative_literal] = STATE(2477), + [sym_string_literal] = STATE(2477), + [sym_raw_string_literal] = STATE(2477), + [sym_boolean_literal] = STATE(2477), + [sym_line_comment] = STATE(487), + [sym_block_comment] = STATE(487), + [aux_sym_attributes_repeat1] = STATE(1128), + [aux_sym_match_block_repeat2] = STATE(520), + [sym_identifier] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_u8] = ACTIONS(1585), + [anon_sym_i8] = ACTIONS(1585), + [anon_sym_u16] = ACTIONS(1585), + [anon_sym_i16] = ACTIONS(1585), + [anon_sym_u32] = ACTIONS(1585), + [anon_sym_i32] = ACTIONS(1585), + [anon_sym_u64] = ACTIONS(1585), + [anon_sym_i64] = ACTIONS(1585), + [anon_sym_u128] = ACTIONS(1585), + [anon_sym_i128] = ACTIONS(1585), + [anon_sym_isize] = ACTIONS(1585), + [anon_sym_usize] = ACTIONS(1585), + [anon_sym_f32] = ACTIONS(1585), + [anon_sym_f64] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_str] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1597), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(1691), + [anon_sym_const] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1605), + [anon_sym_gen] = ACTIONS(1605), + [anon_sym_union] = ACTIONS(1605), + [anon_sym_ref] = ACTIONS(1607), + [sym_mutable_specifier] = ACTIONS(1609), + [sym_integer_literal] = ACTIONS(1611), + [aux_sym_string_literal_token1] = ACTIONS(1613), + [sym_char_literal] = ACTIONS(1611), + [anon_sym_true] = ACTIONS(1615), + [anon_sym_false] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1617), + [sym_super] = ACTIONS(1617), + [sym_crate] = ACTIONS(1617), + [sym_metavariable] = ACTIONS(1619), + [sym__raw_string_literal_start] = ACTIONS(1621), + [sym_float_literal] = ACTIONS(1611), + }, + [STATE(488)] = { + [sym_attribute_item] = STATE(1406), + [sym_attributes] = STATE(836), + [sym_bracketed_type] = STATE(3755), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3470), + [sym_macro_invocation] = STATE(3150), + [sym_scoped_identifier] = STATE(2303), + [sym_scoped_type_identifier] = STATE(3084), + [sym_match_arm] = STATE(1409), + [sym_last_match_arm] = STATE(3555), + [sym_match_pattern] = STATE(3734), + [sym_const_block] = STATE(3150), + [sym__pattern] = STATE(3193), + [sym_generic_pattern] = STATE(3150), + [sym_tuple_pattern] = STATE(3150), + [sym_slice_pattern] = STATE(3150), + [sym_tuple_struct_pattern] = STATE(3150), + [sym_struct_pattern] = STATE(3150), + [sym_remaining_field_pattern] = STATE(3150), + [sym_mut_pattern] = STATE(3150), + [sym_range_pattern] = STATE(3150), + [sym_ref_pattern] = STATE(3150), + [sym_captured_pattern] = STATE(3150), + [sym_reference_pattern] = STATE(3150), + [sym_or_pattern] = STATE(3150), + [sym__literal_pattern] = STATE(2485), + [sym_negative_literal] = STATE(2477), + [sym_string_literal] = STATE(2477), + [sym_raw_string_literal] = STATE(2477), + [sym_boolean_literal] = STATE(2477), + [sym_line_comment] = STATE(488), + [sym_block_comment] = STATE(488), + [aux_sym_attributes_repeat1] = STATE(1128), + [aux_sym_match_block_repeat2] = STATE(520), + [sym_identifier] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_u8] = ACTIONS(1585), + [anon_sym_i8] = ACTIONS(1585), + [anon_sym_u16] = ACTIONS(1585), + [anon_sym_i16] = ACTIONS(1585), + [anon_sym_u32] = ACTIONS(1585), + [anon_sym_i32] = ACTIONS(1585), + [anon_sym_u64] = ACTIONS(1585), + [anon_sym_i64] = ACTIONS(1585), + [anon_sym_u128] = ACTIONS(1585), + [anon_sym_i128] = ACTIONS(1585), + [anon_sym_isize] = ACTIONS(1585), + [anon_sym_usize] = ACTIONS(1585), + [anon_sym_f32] = ACTIONS(1585), + [anon_sym_f64] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_str] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1597), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(1691), + [anon_sym_const] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1605), + [anon_sym_gen] = ACTIONS(1605), + [anon_sym_union] = ACTIONS(1605), + [anon_sym_ref] = ACTIONS(1607), + [sym_mutable_specifier] = ACTIONS(1609), + [sym_integer_literal] = ACTIONS(1611), + [aux_sym_string_literal_token1] = ACTIONS(1613), + [sym_char_literal] = ACTIONS(1611), + [anon_sym_true] = ACTIONS(1615), + [anon_sym_false] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1617), + [sym_super] = ACTIONS(1617), + [sym_crate] = ACTIONS(1617), + [sym_metavariable] = ACTIONS(1619), + [sym__raw_string_literal_start] = ACTIONS(1621), + [sym_float_literal] = ACTIONS(1611), + }, + [STATE(489)] = { + [sym_attribute_item] = STATE(1406), + [sym_attributes] = STATE(836), + [sym_bracketed_type] = STATE(3755), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3470), + [sym_macro_invocation] = STATE(3150), + [sym_scoped_identifier] = STATE(2303), + [sym_scoped_type_identifier] = STATE(3084), + [sym_match_arm] = STATE(1409), + [sym_last_match_arm] = STATE(3831), + [sym_match_pattern] = STATE(3734), + [sym_const_block] = STATE(3150), + [sym__pattern] = STATE(3193), + [sym_generic_pattern] = STATE(3150), + [sym_tuple_pattern] = STATE(3150), + [sym_slice_pattern] = STATE(3150), + [sym_tuple_struct_pattern] = STATE(3150), + [sym_struct_pattern] = STATE(3150), + [sym_remaining_field_pattern] = STATE(3150), + [sym_mut_pattern] = STATE(3150), + [sym_range_pattern] = STATE(3150), + [sym_ref_pattern] = STATE(3150), + [sym_captured_pattern] = STATE(3150), + [sym_reference_pattern] = STATE(3150), + [sym_or_pattern] = STATE(3150), + [sym__literal_pattern] = STATE(2485), + [sym_negative_literal] = STATE(2477), + [sym_string_literal] = STATE(2477), + [sym_raw_string_literal] = STATE(2477), + [sym_boolean_literal] = STATE(2477), + [sym_line_comment] = STATE(489), + [sym_block_comment] = STATE(489), + [aux_sym_attributes_repeat1] = STATE(1128), + [aux_sym_match_block_repeat2] = STATE(520), + [sym_identifier] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_u8] = ACTIONS(1585), + [anon_sym_i8] = ACTIONS(1585), + [anon_sym_u16] = ACTIONS(1585), + [anon_sym_i16] = ACTIONS(1585), + [anon_sym_u32] = ACTIONS(1585), + [anon_sym_i32] = ACTIONS(1585), + [anon_sym_u64] = ACTIONS(1585), + [anon_sym_i64] = ACTIONS(1585), + [anon_sym_u128] = ACTIONS(1585), + [anon_sym_i128] = ACTIONS(1585), + [anon_sym_isize] = ACTIONS(1585), + [anon_sym_usize] = ACTIONS(1585), + [anon_sym_f32] = ACTIONS(1585), + [anon_sym_f64] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_str] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1597), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(1691), + [anon_sym_const] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1605), + [anon_sym_gen] = ACTIONS(1605), + [anon_sym_union] = ACTIONS(1605), + [anon_sym_ref] = ACTIONS(1607), + [sym_mutable_specifier] = ACTIONS(1609), + [sym_integer_literal] = ACTIONS(1611), + [aux_sym_string_literal_token1] = ACTIONS(1613), + [sym_char_literal] = ACTIONS(1611), + [anon_sym_true] = ACTIONS(1615), + [anon_sym_false] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1617), + [sym_super] = ACTIONS(1617), + [sym_crate] = ACTIONS(1617), + [sym_metavariable] = ACTIONS(1619), + [sym__raw_string_literal_start] = ACTIONS(1621), + [sym_float_literal] = ACTIONS(1611), + }, + [STATE(490)] = { + [sym_line_comment] = STATE(490), + [sym_block_comment] = STATE(490), + [sym_identifier] = ACTIONS(1345), + [anon_sym_LPAREN] = ACTIONS(1343), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_RBRACE] = ACTIONS(1343), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_QMARK] = ACTIONS(1343), + [anon_sym_u8] = ACTIONS(1345), + [anon_sym_i8] = ACTIONS(1345), + [anon_sym_u16] = ACTIONS(1345), + [anon_sym_i16] = ACTIONS(1345), + [anon_sym_u32] = ACTIONS(1345), + [anon_sym_i32] = ACTIONS(1345), + [anon_sym_u64] = ACTIONS(1345), + [anon_sym_i64] = ACTIONS(1345), + [anon_sym_u128] = ACTIONS(1345), + [anon_sym_i128] = ACTIONS(1345), + [anon_sym_isize] = ACTIONS(1345), + [anon_sym_usize] = ACTIONS(1345), + [anon_sym_f32] = ACTIONS(1345), + [anon_sym_f64] = ACTIONS(1345), + [anon_sym_bool] = ACTIONS(1345), + [anon_sym_str] = ACTIONS(1345), + [anon_sym_char] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_SLASH] = ACTIONS(1345), + [anon_sym_PERCENT] = ACTIONS(1345), + [anon_sym_CARET] = ACTIONS(1345), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PIPE] = ACTIONS(1345), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [anon_sym_PIPE_PIPE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(1345), + [anon_sym_GT_GT] = ACTIONS(1345), + [anon_sym_PLUS_EQ] = ACTIONS(1343), + [anon_sym_DASH_EQ] = ACTIONS(1343), + [anon_sym_STAR_EQ] = ACTIONS(1343), + [anon_sym_SLASH_EQ] = ACTIONS(1343), + [anon_sym_PERCENT_EQ] = ACTIONS(1343), + [anon_sym_CARET_EQ] = ACTIONS(1343), + [anon_sym_AMP_EQ] = ACTIONS(1343), + [anon_sym_PIPE_EQ] = ACTIONS(1343), + [anon_sym_LT_LT_EQ] = ACTIONS(1343), + [anon_sym_GT_GT_EQ] = ACTIONS(1343), + [anon_sym_EQ] = ACTIONS(1345), + [anon_sym_EQ_EQ] = ACTIONS(1343), + [anon_sym_BANG_EQ] = ACTIONS(1343), + [anon_sym_GT] = ACTIONS(1345), + [anon_sym_LT] = ACTIONS(1345), + [anon_sym_GT_EQ] = ACTIONS(1343), + [anon_sym_LT_EQ] = ACTIONS(1343), + [anon_sym__] = ACTIONS(1345), + [anon_sym_DOT] = ACTIONS(1345), + [anon_sym_DOT_DOT] = ACTIONS(1345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1343), + [anon_sym_COMMA] = ACTIONS(1343), + [anon_sym_COLON_COLON] = ACTIONS(1343), + [anon_sym_POUND] = ACTIONS(1343), + [anon_sym_as] = ACTIONS(1345), + [anon_sym_const] = ACTIONS(1345), + [anon_sym_default] = ACTIONS(1345), + [anon_sym_gen] = ACTIONS(1345), + [anon_sym_union] = ACTIONS(1345), + [anon_sym_ref] = ACTIONS(1345), + [anon_sym_else] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1345), + [sym_integer_literal] = ACTIONS(1343), + [aux_sym_string_literal_token1] = ACTIONS(1343), + [sym_char_literal] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1345), + [anon_sym_false] = ACTIONS(1345), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1345), + [sym_super] = ACTIONS(1345), + [sym_crate] = ACTIONS(1345), + [sym_metavariable] = ACTIONS(1343), + [sym__raw_string_literal_start] = ACTIONS(1343), + [sym_float_literal] = ACTIONS(1343), + }, + [STATE(491)] = { + [sym_line_comment] = STATE(491), + [sym_block_comment] = STATE(491), + [sym_identifier] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1335), + [anon_sym_LBRACK] = ACTIONS(1335), + [anon_sym_RBRACE] = ACTIONS(1335), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_STAR] = ACTIONS(1337), + [anon_sym_QMARK] = ACTIONS(1335), + [anon_sym_u8] = ACTIONS(1337), + [anon_sym_i8] = ACTIONS(1337), + [anon_sym_u16] = ACTIONS(1337), + [anon_sym_i16] = ACTIONS(1337), + [anon_sym_u32] = ACTIONS(1337), + [anon_sym_i32] = ACTIONS(1337), + [anon_sym_u64] = ACTIONS(1337), + [anon_sym_i64] = ACTIONS(1337), + [anon_sym_u128] = ACTIONS(1337), + [anon_sym_i128] = ACTIONS(1337), + [anon_sym_isize] = ACTIONS(1337), + [anon_sym_usize] = ACTIONS(1337), + [anon_sym_f32] = ACTIONS(1337), + [anon_sym_f64] = ACTIONS(1337), + [anon_sym_bool] = ACTIONS(1337), + [anon_sym_str] = ACTIONS(1337), + [anon_sym_char] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_SLASH] = ACTIONS(1337), + [anon_sym_PERCENT] = ACTIONS(1337), + [anon_sym_CARET] = ACTIONS(1337), + [anon_sym_AMP] = ACTIONS(1337), + [anon_sym_PIPE] = ACTIONS(1337), + [anon_sym_AMP_AMP] = ACTIONS(1335), + [anon_sym_PIPE_PIPE] = ACTIONS(1335), + [anon_sym_LT_LT] = ACTIONS(1337), + [anon_sym_GT_GT] = ACTIONS(1337), + [anon_sym_PLUS_EQ] = ACTIONS(1335), + [anon_sym_DASH_EQ] = ACTIONS(1335), + [anon_sym_STAR_EQ] = ACTIONS(1335), + [anon_sym_SLASH_EQ] = ACTIONS(1335), + [anon_sym_PERCENT_EQ] = ACTIONS(1335), + [anon_sym_CARET_EQ] = ACTIONS(1335), + [anon_sym_AMP_EQ] = ACTIONS(1335), + [anon_sym_PIPE_EQ] = ACTIONS(1335), + [anon_sym_LT_LT_EQ] = ACTIONS(1335), + [anon_sym_GT_GT_EQ] = ACTIONS(1335), + [anon_sym_EQ] = ACTIONS(1337), + [anon_sym_EQ_EQ] = ACTIONS(1335), + [anon_sym_BANG_EQ] = ACTIONS(1335), + [anon_sym_GT] = ACTIONS(1337), + [anon_sym_LT] = ACTIONS(1337), + [anon_sym_GT_EQ] = ACTIONS(1335), + [anon_sym_LT_EQ] = ACTIONS(1335), + [anon_sym__] = ACTIONS(1337), + [anon_sym_DOT] = ACTIONS(1337), + [anon_sym_DOT_DOT] = ACTIONS(1337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1335), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1335), + [anon_sym_COMMA] = ACTIONS(1335), + [anon_sym_COLON_COLON] = ACTIONS(1335), + [anon_sym_POUND] = ACTIONS(1335), + [anon_sym_as] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1337), + [anon_sym_default] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1337), + [anon_sym_union] = ACTIONS(1337), + [anon_sym_ref] = ACTIONS(1337), + [anon_sym_else] = ACTIONS(1337), + [sym_mutable_specifier] = ACTIONS(1337), + [sym_integer_literal] = ACTIONS(1335), + [aux_sym_string_literal_token1] = ACTIONS(1335), + [sym_char_literal] = ACTIONS(1335), + [anon_sym_true] = ACTIONS(1337), + [anon_sym_false] = ACTIONS(1337), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1337), + [sym_super] = ACTIONS(1337), + [sym_crate] = ACTIONS(1337), + [sym_metavariable] = ACTIONS(1335), + [sym__raw_string_literal_start] = ACTIONS(1335), + [sym_float_literal] = ACTIONS(1335), + }, + [STATE(492)] = { + [sym_line_comment] = STATE(492), + [sym_block_comment] = STATE(492), + [sym_identifier] = ACTIONS(1333), + [anon_sym_LPAREN] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_RBRACE] = ACTIONS(1331), + [anon_sym_PLUS] = ACTIONS(1333), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_QMARK] = ACTIONS(1331), + [anon_sym_u8] = ACTIONS(1333), + [anon_sym_i8] = ACTIONS(1333), + [anon_sym_u16] = ACTIONS(1333), + [anon_sym_i16] = ACTIONS(1333), + [anon_sym_u32] = ACTIONS(1333), + [anon_sym_i32] = ACTIONS(1333), + [anon_sym_u64] = ACTIONS(1333), + [anon_sym_i64] = ACTIONS(1333), + [anon_sym_u128] = ACTIONS(1333), + [anon_sym_i128] = ACTIONS(1333), + [anon_sym_isize] = ACTIONS(1333), + [anon_sym_usize] = ACTIONS(1333), + [anon_sym_f32] = ACTIONS(1333), + [anon_sym_f64] = ACTIONS(1333), + [anon_sym_bool] = ACTIONS(1333), + [anon_sym_str] = ACTIONS(1333), + [anon_sym_char] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1333), + [anon_sym_SLASH] = ACTIONS(1333), + [anon_sym_PERCENT] = ACTIONS(1333), + [anon_sym_CARET] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_PIPE] = ACTIONS(1333), + [anon_sym_AMP_AMP] = ACTIONS(1331), + [anon_sym_PIPE_PIPE] = ACTIONS(1331), + [anon_sym_LT_LT] = ACTIONS(1333), + [anon_sym_GT_GT] = ACTIONS(1333), + [anon_sym_PLUS_EQ] = ACTIONS(1331), + [anon_sym_DASH_EQ] = ACTIONS(1331), + [anon_sym_STAR_EQ] = ACTIONS(1331), + [anon_sym_SLASH_EQ] = ACTIONS(1331), + [anon_sym_PERCENT_EQ] = ACTIONS(1331), + [anon_sym_CARET_EQ] = ACTIONS(1331), + [anon_sym_AMP_EQ] = ACTIONS(1331), + [anon_sym_PIPE_EQ] = ACTIONS(1331), + [anon_sym_LT_LT_EQ] = ACTIONS(1331), + [anon_sym_GT_GT_EQ] = ACTIONS(1331), + [anon_sym_EQ] = ACTIONS(1333), + [anon_sym_EQ_EQ] = ACTIONS(1331), + [anon_sym_BANG_EQ] = ACTIONS(1331), + [anon_sym_GT] = ACTIONS(1333), + [anon_sym_LT] = ACTIONS(1333), + [anon_sym_GT_EQ] = ACTIONS(1331), + [anon_sym_LT_EQ] = ACTIONS(1331), + [anon_sym__] = ACTIONS(1333), + [anon_sym_DOT] = ACTIONS(1333), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1331), + [anon_sym_COMMA] = ACTIONS(1331), + [anon_sym_COLON_COLON] = ACTIONS(1331), + [anon_sym_POUND] = ACTIONS(1331), + [anon_sym_as] = ACTIONS(1333), + [anon_sym_const] = ACTIONS(1333), + [anon_sym_default] = ACTIONS(1333), + [anon_sym_gen] = ACTIONS(1333), + [anon_sym_union] = ACTIONS(1333), + [anon_sym_ref] = ACTIONS(1333), + [anon_sym_else] = ACTIONS(1333), + [sym_mutable_specifier] = ACTIONS(1333), + [sym_integer_literal] = ACTIONS(1331), + [aux_sym_string_literal_token1] = ACTIONS(1331), + [sym_char_literal] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1333), + [sym_super] = ACTIONS(1333), + [sym_crate] = ACTIONS(1333), + [sym_metavariable] = ACTIONS(1331), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1331), + }, + [STATE(493)] = { + [sym_attribute_item] = STATE(1406), + [sym_attributes] = STATE(836), + [sym_bracketed_type] = STATE(3755), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3470), + [sym_macro_invocation] = STATE(3150), + [sym_scoped_identifier] = STATE(2303), + [sym_scoped_type_identifier] = STATE(3084), + [sym_match_arm] = STATE(1409), + [sym_last_match_arm] = STATE(3852), + [sym_match_pattern] = STATE(3734), + [sym_const_block] = STATE(3150), + [sym__pattern] = STATE(3193), + [sym_generic_pattern] = STATE(3150), + [sym_tuple_pattern] = STATE(3150), + [sym_slice_pattern] = STATE(3150), + [sym_tuple_struct_pattern] = STATE(3150), + [sym_struct_pattern] = STATE(3150), + [sym_remaining_field_pattern] = STATE(3150), + [sym_mut_pattern] = STATE(3150), + [sym_range_pattern] = STATE(3150), + [sym_ref_pattern] = STATE(3150), + [sym_captured_pattern] = STATE(3150), + [sym_reference_pattern] = STATE(3150), + [sym_or_pattern] = STATE(3150), + [sym__literal_pattern] = STATE(2485), + [sym_negative_literal] = STATE(2477), + [sym_string_literal] = STATE(2477), + [sym_raw_string_literal] = STATE(2477), + [sym_boolean_literal] = STATE(2477), + [sym_line_comment] = STATE(493), + [sym_block_comment] = STATE(493), + [aux_sym_attributes_repeat1] = STATE(1128), + [aux_sym_match_block_repeat2] = STATE(520), + [sym_identifier] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_u8] = ACTIONS(1585), + [anon_sym_i8] = ACTIONS(1585), + [anon_sym_u16] = ACTIONS(1585), + [anon_sym_i16] = ACTIONS(1585), + [anon_sym_u32] = ACTIONS(1585), + [anon_sym_i32] = ACTIONS(1585), + [anon_sym_u64] = ACTIONS(1585), + [anon_sym_i64] = ACTIONS(1585), + [anon_sym_u128] = ACTIONS(1585), + [anon_sym_i128] = ACTIONS(1585), + [anon_sym_isize] = ACTIONS(1585), + [anon_sym_usize] = ACTIONS(1585), + [anon_sym_f32] = ACTIONS(1585), + [anon_sym_f64] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_str] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1597), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(1691), + [anon_sym_const] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1605), + [anon_sym_gen] = ACTIONS(1605), + [anon_sym_union] = ACTIONS(1605), + [anon_sym_ref] = ACTIONS(1607), + [sym_mutable_specifier] = ACTIONS(1609), + [sym_integer_literal] = ACTIONS(1611), + [aux_sym_string_literal_token1] = ACTIONS(1613), + [sym_char_literal] = ACTIONS(1611), + [anon_sym_true] = ACTIONS(1615), + [anon_sym_false] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1617), + [sym_super] = ACTIONS(1617), + [sym_crate] = ACTIONS(1617), + [sym_metavariable] = ACTIONS(1619), + [sym__raw_string_literal_start] = ACTIONS(1621), + [sym_float_literal] = ACTIONS(1611), + }, + [STATE(494)] = { + [sym_line_comment] = STATE(494), + [sym_block_comment] = STATE(494), + [sym_identifier] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_RBRACE] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_QMARK] = ACTIONS(1327), + [anon_sym_u8] = ACTIONS(1329), + [anon_sym_i8] = ACTIONS(1329), + [anon_sym_u16] = ACTIONS(1329), + [anon_sym_i16] = ACTIONS(1329), + [anon_sym_u32] = ACTIONS(1329), + [anon_sym_i32] = ACTIONS(1329), + [anon_sym_u64] = ACTIONS(1329), + [anon_sym_i64] = ACTIONS(1329), + [anon_sym_u128] = ACTIONS(1329), + [anon_sym_i128] = ACTIONS(1329), + [anon_sym_isize] = ACTIONS(1329), + [anon_sym_usize] = ACTIONS(1329), + [anon_sym_f32] = ACTIONS(1329), + [anon_sym_f64] = ACTIONS(1329), + [anon_sym_bool] = ACTIONS(1329), + [anon_sym_str] = ACTIONS(1329), + [anon_sym_char] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_PERCENT] = ACTIONS(1329), + [anon_sym_CARET] = ACTIONS(1329), + [anon_sym_AMP] = ACTIONS(1329), + [anon_sym_PIPE] = ACTIONS(1329), + [anon_sym_AMP_AMP] = ACTIONS(1327), + [anon_sym_PIPE_PIPE] = ACTIONS(1327), + [anon_sym_LT_LT] = ACTIONS(1329), + [anon_sym_GT_GT] = ACTIONS(1329), + [anon_sym_PLUS_EQ] = ACTIONS(1327), + [anon_sym_DASH_EQ] = ACTIONS(1327), + [anon_sym_STAR_EQ] = ACTIONS(1327), + [anon_sym_SLASH_EQ] = ACTIONS(1327), + [anon_sym_PERCENT_EQ] = ACTIONS(1327), + [anon_sym_CARET_EQ] = ACTIONS(1327), + [anon_sym_AMP_EQ] = ACTIONS(1327), + [anon_sym_PIPE_EQ] = ACTIONS(1327), + [anon_sym_LT_LT_EQ] = ACTIONS(1327), + [anon_sym_GT_GT_EQ] = ACTIONS(1327), + [anon_sym_EQ] = ACTIONS(1329), + [anon_sym_EQ_EQ] = ACTIONS(1327), + [anon_sym_BANG_EQ] = ACTIONS(1327), + [anon_sym_GT] = ACTIONS(1329), + [anon_sym_LT] = ACTIONS(1329), + [anon_sym_GT_EQ] = ACTIONS(1327), + [anon_sym_LT_EQ] = ACTIONS(1327), + [anon_sym__] = ACTIONS(1329), + [anon_sym_DOT] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1329), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1327), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1327), + [anon_sym_COMMA] = ACTIONS(1327), + [anon_sym_COLON_COLON] = ACTIONS(1327), + [anon_sym_POUND] = ACTIONS(1327), + [anon_sym_as] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1329), + [anon_sym_gen] = ACTIONS(1329), + [anon_sym_union] = ACTIONS(1329), + [anon_sym_ref] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1329), + [sym_mutable_specifier] = ACTIONS(1329), + [sym_integer_literal] = ACTIONS(1327), + [aux_sym_string_literal_token1] = ACTIONS(1327), + [sym_char_literal] = ACTIONS(1327), + [anon_sym_true] = ACTIONS(1329), + [anon_sym_false] = ACTIONS(1329), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1329), + [sym_super] = ACTIONS(1329), + [sym_crate] = ACTIONS(1329), + [sym_metavariable] = ACTIONS(1327), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1327), + }, + [STATE(495)] = { + [sym_line_comment] = STATE(495), + [sym_block_comment] = STATE(495), + [sym_identifier] = ACTIONS(1341), + [anon_sym_LPAREN] = ACTIONS(1339), + [anon_sym_LBRACK] = ACTIONS(1339), + [anon_sym_RBRACE] = ACTIONS(1339), + [anon_sym_PLUS] = ACTIONS(1341), + [anon_sym_STAR] = ACTIONS(1341), + [anon_sym_QMARK] = ACTIONS(1339), + [anon_sym_u8] = ACTIONS(1341), + [anon_sym_i8] = ACTIONS(1341), + [anon_sym_u16] = ACTIONS(1341), + [anon_sym_i16] = ACTIONS(1341), + [anon_sym_u32] = ACTIONS(1341), + [anon_sym_i32] = ACTIONS(1341), + [anon_sym_u64] = ACTIONS(1341), + [anon_sym_i64] = ACTIONS(1341), + [anon_sym_u128] = ACTIONS(1341), + [anon_sym_i128] = ACTIONS(1341), + [anon_sym_isize] = ACTIONS(1341), + [anon_sym_usize] = ACTIONS(1341), + [anon_sym_f32] = ACTIONS(1341), + [anon_sym_f64] = ACTIONS(1341), + [anon_sym_bool] = ACTIONS(1341), + [anon_sym_str] = ACTIONS(1341), + [anon_sym_char] = ACTIONS(1341), + [anon_sym_DASH] = ACTIONS(1341), + [anon_sym_SLASH] = ACTIONS(1341), + [anon_sym_PERCENT] = ACTIONS(1341), + [anon_sym_CARET] = ACTIONS(1341), + [anon_sym_AMP] = ACTIONS(1341), + [anon_sym_PIPE] = ACTIONS(1341), + [anon_sym_AMP_AMP] = ACTIONS(1339), + [anon_sym_PIPE_PIPE] = ACTIONS(1339), + [anon_sym_LT_LT] = ACTIONS(1341), + [anon_sym_GT_GT] = ACTIONS(1341), + [anon_sym_PLUS_EQ] = ACTIONS(1339), + [anon_sym_DASH_EQ] = ACTIONS(1339), + [anon_sym_STAR_EQ] = ACTIONS(1339), + [anon_sym_SLASH_EQ] = ACTIONS(1339), + [anon_sym_PERCENT_EQ] = ACTIONS(1339), + [anon_sym_CARET_EQ] = ACTIONS(1339), + [anon_sym_AMP_EQ] = ACTIONS(1339), + [anon_sym_PIPE_EQ] = ACTIONS(1339), + [anon_sym_LT_LT_EQ] = ACTIONS(1339), + [anon_sym_GT_GT_EQ] = ACTIONS(1339), + [anon_sym_EQ] = ACTIONS(1341), + [anon_sym_EQ_EQ] = ACTIONS(1339), + [anon_sym_BANG_EQ] = ACTIONS(1339), + [anon_sym_GT] = ACTIONS(1341), + [anon_sym_LT] = ACTIONS(1341), + [anon_sym_GT_EQ] = ACTIONS(1339), + [anon_sym_LT_EQ] = ACTIONS(1339), + [anon_sym__] = ACTIONS(1341), + [anon_sym_DOT] = ACTIONS(1341), + [anon_sym_DOT_DOT] = ACTIONS(1341), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1339), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1339), + [anon_sym_COMMA] = ACTIONS(1339), + [anon_sym_COLON_COLON] = ACTIONS(1339), + [anon_sym_POUND] = ACTIONS(1339), + [anon_sym_as] = ACTIONS(1341), + [anon_sym_const] = ACTIONS(1341), + [anon_sym_default] = ACTIONS(1341), + [anon_sym_gen] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1341), + [anon_sym_ref] = ACTIONS(1341), + [anon_sym_else] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1341), + [sym_integer_literal] = ACTIONS(1339), + [aux_sym_string_literal_token1] = ACTIONS(1339), + [sym_char_literal] = ACTIONS(1339), + [anon_sym_true] = ACTIONS(1341), + [anon_sym_false] = ACTIONS(1341), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1341), + [sym_super] = ACTIONS(1341), + [sym_crate] = ACTIONS(1341), + [sym_metavariable] = ACTIONS(1339), + [sym__raw_string_literal_start] = ACTIONS(1339), + [sym_float_literal] = ACTIONS(1339), + }, + [STATE(496)] = { + [sym_empty_statement] = STATE(1419), + [sym_declaration_with_attribute] = STATE(1419), + [sym_macro_definition] = STATE(1419), + [sym_attribute_item] = STATE(1485), + [sym_attributes] = STATE(531), + [sym_inner_attribute_item] = STATE(1419), + [sym_mod_item] = STATE(1419), + [sym_foreign_mod_item] = STATE(1419), + [sym_struct_item] = STATE(1419), + [sym_union_item] = STATE(1419), + [sym_enum_item] = STATE(1419), + [sym_extern_crate_declaration] = STATE(1419), + [sym_const_item] = STATE(1419), + [sym_static_item] = STATE(1419), + [sym_type_item] = STATE(1419), + [sym_function_item] = STATE(1419), + [sym_function_signature_item] = STATE(1419), + [sym_function_modifiers] = STATE(3843), + [sym_impl_item] = STATE(1419), + [sym_trait_item] = STATE(1419), + [sym_associated_type] = STATE(1419), + [sym_let_declaration] = STATE(1419), + [sym_use_declaration] = STATE(1419), + [sym_extern_modifier] = STATE(2313), + [sym_visibility_modifier] = STATE(2088), + [sym_bracketed_type] = STATE(3798), + [sym_generic_type_with_turbofish] = STATE(3872), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(3265), + [sym_line_comment] = STATE(496), + [sym_block_comment] = STATE(496), + [aux_sym_attributes_repeat1] = STATE(1151), + [aux_sym_declaration_list_repeat1] = STATE(496), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1693), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_macro_rules_BANG] = ACTIONS(1699), + [anon_sym_RBRACE] = ACTIONS(1702), + [anon_sym_u8] = ACTIONS(1704), + [anon_sym_i8] = ACTIONS(1704), + [anon_sym_u16] = ACTIONS(1704), + [anon_sym_i16] = ACTIONS(1704), + [anon_sym_u32] = ACTIONS(1704), + [anon_sym_i32] = ACTIONS(1704), + [anon_sym_u64] = ACTIONS(1704), + [anon_sym_i64] = ACTIONS(1704), + [anon_sym_u128] = ACTIONS(1704), + [anon_sym_i128] = ACTIONS(1704), + [anon_sym_isize] = ACTIONS(1704), + [anon_sym_usize] = ACTIONS(1704), + [anon_sym_f32] = ACTIONS(1704), + [anon_sym_f64] = ACTIONS(1704), + [anon_sym_bool] = ACTIONS(1704), + [anon_sym_str] = ACTIONS(1704), + [anon_sym_char] = ACTIONS(1704), + [anon_sym_LT] = ACTIONS(1707), + [anon_sym_COLON_COLON] = ACTIONS(1710), + [anon_sym_POUND] = ACTIONS(1713), + [anon_sym_async] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1719), + [anon_sym_default] = ACTIONS(1722), + [anon_sym_enum] = ACTIONS(1725), + [anon_sym_fn] = ACTIONS(1728), + [anon_sym_gen] = ACTIONS(1731), + [anon_sym_impl] = ACTIONS(1734), + [anon_sym_let] = ACTIONS(1737), + [anon_sym_mod] = ACTIONS(1740), + [anon_sym_pub] = ACTIONS(1743), + [anon_sym_static] = ACTIONS(1746), + [anon_sym_struct] = ACTIONS(1749), + [anon_sym_trait] = ACTIONS(1752), + [anon_sym_type] = ACTIONS(1755), + [anon_sym_union] = ACTIONS(1758), + [anon_sym_unsafe] = ACTIONS(1761), + [anon_sym_use] = ACTIONS(1764), + [anon_sym_extern] = ACTIONS(1767), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1770), + [sym_super] = ACTIONS(1770), + [sym_crate] = ACTIONS(1773), + [sym_metavariable] = ACTIONS(1776), + }, + [STATE(497)] = { + [sym_empty_statement] = STATE(1419), + [sym_declaration_with_attribute] = STATE(1419), + [sym_macro_definition] = STATE(1419), + [sym_attribute_item] = STATE(1485), + [sym_attributes] = STATE(531), + [sym_inner_attribute_item] = STATE(1419), + [sym_mod_item] = STATE(1419), + [sym_foreign_mod_item] = STATE(1419), + [sym_struct_item] = STATE(1419), + [sym_union_item] = STATE(1419), + [sym_enum_item] = STATE(1419), + [sym_extern_crate_declaration] = STATE(1419), + [sym_const_item] = STATE(1419), + [sym_static_item] = STATE(1419), + [sym_type_item] = STATE(1419), + [sym_function_item] = STATE(1419), + [sym_function_signature_item] = STATE(1419), + [sym_function_modifiers] = STATE(3843), + [sym_impl_item] = STATE(1419), + [sym_trait_item] = STATE(1419), + [sym_associated_type] = STATE(1419), + [sym_let_declaration] = STATE(1419), + [sym_use_declaration] = STATE(1419), + [sym_extern_modifier] = STATE(2313), + [sym_visibility_modifier] = STATE(2088), + [sym_bracketed_type] = STATE(3798), + [sym_generic_type_with_turbofish] = STATE(3872), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(3265), + [sym_line_comment] = STATE(497), + [sym_block_comment] = STATE(497), + [aux_sym_attributes_repeat1] = STATE(1151), + [aux_sym_declaration_list_repeat1] = STATE(496), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1639), + [anon_sym_SEMI] = ACTIONS(1641), + [anon_sym_macro_rules_BANG] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1779), + [anon_sym_u8] = ACTIONS(1647), + [anon_sym_i8] = ACTIONS(1647), + [anon_sym_u16] = ACTIONS(1647), + [anon_sym_i16] = ACTIONS(1647), + [anon_sym_u32] = ACTIONS(1647), + [anon_sym_i32] = ACTIONS(1647), + [anon_sym_u64] = ACTIONS(1647), + [anon_sym_i64] = ACTIONS(1647), + [anon_sym_u128] = ACTIONS(1647), + [anon_sym_i128] = ACTIONS(1647), + [anon_sym_isize] = ACTIONS(1647), + [anon_sym_usize] = ACTIONS(1647), + [anon_sym_f32] = ACTIONS(1647), + [anon_sym_f64] = ACTIONS(1647), + [anon_sym_bool] = ACTIONS(1647), + [anon_sym_str] = ACTIONS(1647), + [anon_sym_char] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1649), + [anon_sym_POUND] = ACTIONS(1651), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1653), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_enum] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1659), + [anon_sym_gen] = ACTIONS(1661), + [anon_sym_impl] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(1665), + [anon_sym_mod] = ACTIONS(1667), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(1669), + [anon_sym_struct] = ACTIONS(1671), + [anon_sym_trait] = ACTIONS(1673), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_union] = ACTIONS(1677), + [anon_sym_unsafe] = ACTIONS(1679), + [anon_sym_use] = ACTIONS(1681), + [anon_sym_extern] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1685), + [sym_super] = ACTIONS(1685), + [sym_crate] = ACTIONS(1687), + [sym_metavariable] = ACTIONS(1689), + }, + [STATE(498)] = { + [sym_empty_statement] = STATE(1419), + [sym_declaration_with_attribute] = STATE(1419), + [sym_macro_definition] = STATE(1419), + [sym_attribute_item] = STATE(1485), + [sym_attributes] = STATE(531), + [sym_inner_attribute_item] = STATE(1419), + [sym_mod_item] = STATE(1419), + [sym_foreign_mod_item] = STATE(1419), + [sym_struct_item] = STATE(1419), + [sym_union_item] = STATE(1419), + [sym_enum_item] = STATE(1419), + [sym_extern_crate_declaration] = STATE(1419), + [sym_const_item] = STATE(1419), + [sym_static_item] = STATE(1419), + [sym_type_item] = STATE(1419), + [sym_function_item] = STATE(1419), + [sym_function_signature_item] = STATE(1419), + [sym_function_modifiers] = STATE(3843), + [sym_impl_item] = STATE(1419), + [sym_trait_item] = STATE(1419), + [sym_associated_type] = STATE(1419), + [sym_let_declaration] = STATE(1419), + [sym_use_declaration] = STATE(1419), + [sym_extern_modifier] = STATE(2313), + [sym_visibility_modifier] = STATE(2088), + [sym_bracketed_type] = STATE(3798), + [sym_generic_type_with_turbofish] = STATE(3872), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(3265), + [sym_line_comment] = STATE(498), + [sym_block_comment] = STATE(498), + [aux_sym_attributes_repeat1] = STATE(1151), + [aux_sym_declaration_list_repeat1] = STATE(496), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1639), + [anon_sym_SEMI] = ACTIONS(1641), + [anon_sym_macro_rules_BANG] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1781), + [anon_sym_u8] = ACTIONS(1647), + [anon_sym_i8] = ACTIONS(1647), + [anon_sym_u16] = ACTIONS(1647), + [anon_sym_i16] = ACTIONS(1647), + [anon_sym_u32] = ACTIONS(1647), + [anon_sym_i32] = ACTIONS(1647), + [anon_sym_u64] = ACTIONS(1647), + [anon_sym_i64] = ACTIONS(1647), + [anon_sym_u128] = ACTIONS(1647), + [anon_sym_i128] = ACTIONS(1647), + [anon_sym_isize] = ACTIONS(1647), + [anon_sym_usize] = ACTIONS(1647), + [anon_sym_f32] = ACTIONS(1647), + [anon_sym_f64] = ACTIONS(1647), + [anon_sym_bool] = ACTIONS(1647), + [anon_sym_str] = ACTIONS(1647), + [anon_sym_char] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1649), + [anon_sym_POUND] = ACTIONS(1651), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1653), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_enum] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1659), + [anon_sym_gen] = ACTIONS(1661), + [anon_sym_impl] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(1665), + [anon_sym_mod] = ACTIONS(1667), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(1669), + [anon_sym_struct] = ACTIONS(1671), + [anon_sym_trait] = ACTIONS(1673), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_union] = ACTIONS(1677), + [anon_sym_unsafe] = ACTIONS(1679), + [anon_sym_use] = ACTIONS(1681), + [anon_sym_extern] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1685), + [sym_super] = ACTIONS(1685), + [sym_crate] = ACTIONS(1687), + [sym_metavariable] = ACTIONS(1689), + }, + [STATE(499)] = { + [sym_attribute_item] = STATE(1406), + [sym_attributes] = STATE(836), + [sym_bracketed_type] = STATE(3755), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3470), + [sym_macro_invocation] = STATE(3150), + [sym_scoped_identifier] = STATE(2303), + [sym_scoped_type_identifier] = STATE(3084), + [sym_match_arm] = STATE(1409), + [sym_last_match_arm] = STATE(3780), + [sym_match_pattern] = STATE(3734), + [sym_const_block] = STATE(3150), + [sym__pattern] = STATE(3193), + [sym_generic_pattern] = STATE(3150), + [sym_tuple_pattern] = STATE(3150), + [sym_slice_pattern] = STATE(3150), + [sym_tuple_struct_pattern] = STATE(3150), + [sym_struct_pattern] = STATE(3150), + [sym_remaining_field_pattern] = STATE(3150), + [sym_mut_pattern] = STATE(3150), + [sym_range_pattern] = STATE(3150), + [sym_ref_pattern] = STATE(3150), + [sym_captured_pattern] = STATE(3150), + [sym_reference_pattern] = STATE(3150), + [sym_or_pattern] = STATE(3150), + [sym__literal_pattern] = STATE(2485), + [sym_negative_literal] = STATE(2477), + [sym_string_literal] = STATE(2477), + [sym_raw_string_literal] = STATE(2477), + [sym_boolean_literal] = STATE(2477), + [sym_line_comment] = STATE(499), + [sym_block_comment] = STATE(499), + [aux_sym_attributes_repeat1] = STATE(1128), + [aux_sym_match_block_repeat2] = STATE(520), + [sym_identifier] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_u8] = ACTIONS(1585), + [anon_sym_i8] = ACTIONS(1585), + [anon_sym_u16] = ACTIONS(1585), + [anon_sym_i16] = ACTIONS(1585), + [anon_sym_u32] = ACTIONS(1585), + [anon_sym_i32] = ACTIONS(1585), + [anon_sym_u64] = ACTIONS(1585), + [anon_sym_i64] = ACTIONS(1585), + [anon_sym_u128] = ACTIONS(1585), + [anon_sym_i128] = ACTIONS(1585), + [anon_sym_isize] = ACTIONS(1585), + [anon_sym_usize] = ACTIONS(1585), + [anon_sym_f32] = ACTIONS(1585), + [anon_sym_f64] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_str] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1597), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(1691), + [anon_sym_const] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1605), + [anon_sym_gen] = ACTIONS(1605), + [anon_sym_union] = ACTIONS(1605), + [anon_sym_ref] = ACTIONS(1607), + [sym_mutable_specifier] = ACTIONS(1609), + [sym_integer_literal] = ACTIONS(1611), + [aux_sym_string_literal_token1] = ACTIONS(1613), + [sym_char_literal] = ACTIONS(1611), + [anon_sym_true] = ACTIONS(1615), + [anon_sym_false] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1617), + [sym_super] = ACTIONS(1617), + [sym_crate] = ACTIONS(1617), + [sym_metavariable] = ACTIONS(1619), + [sym__raw_string_literal_start] = ACTIONS(1621), + [sym_float_literal] = ACTIONS(1611), + }, + [STATE(500)] = { + [sym_attribute_item] = STATE(1406), + [sym_attributes] = STATE(836), + [sym_bracketed_type] = STATE(3755), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3470), + [sym_macro_invocation] = STATE(3150), + [sym_scoped_identifier] = STATE(2303), + [sym_scoped_type_identifier] = STATE(3084), + [sym_match_arm] = STATE(1409), + [sym_last_match_arm] = STATE(3625), + [sym_match_pattern] = STATE(3734), + [sym_const_block] = STATE(3150), + [sym__pattern] = STATE(3193), + [sym_generic_pattern] = STATE(3150), + [sym_tuple_pattern] = STATE(3150), + [sym_slice_pattern] = STATE(3150), + [sym_tuple_struct_pattern] = STATE(3150), + [sym_struct_pattern] = STATE(3150), + [sym_remaining_field_pattern] = STATE(3150), + [sym_mut_pattern] = STATE(3150), + [sym_range_pattern] = STATE(3150), + [sym_ref_pattern] = STATE(3150), + [sym_captured_pattern] = STATE(3150), + [sym_reference_pattern] = STATE(3150), + [sym_or_pattern] = STATE(3150), + [sym__literal_pattern] = STATE(2485), + [sym_negative_literal] = STATE(2477), + [sym_string_literal] = STATE(2477), + [sym_raw_string_literal] = STATE(2477), + [sym_boolean_literal] = STATE(2477), + [sym_line_comment] = STATE(500), + [sym_block_comment] = STATE(500), + [aux_sym_attributes_repeat1] = STATE(1128), + [aux_sym_match_block_repeat2] = STATE(520), + [sym_identifier] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_u8] = ACTIONS(1585), + [anon_sym_i8] = ACTIONS(1585), + [anon_sym_u16] = ACTIONS(1585), + [anon_sym_i16] = ACTIONS(1585), + [anon_sym_u32] = ACTIONS(1585), + [anon_sym_i32] = ACTIONS(1585), + [anon_sym_u64] = ACTIONS(1585), + [anon_sym_i64] = ACTIONS(1585), + [anon_sym_u128] = ACTIONS(1585), + [anon_sym_i128] = ACTIONS(1585), + [anon_sym_isize] = ACTIONS(1585), + [anon_sym_usize] = ACTIONS(1585), + [anon_sym_f32] = ACTIONS(1585), + [anon_sym_f64] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_str] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1597), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(1691), + [anon_sym_const] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1605), + [anon_sym_gen] = ACTIONS(1605), + [anon_sym_union] = ACTIONS(1605), + [anon_sym_ref] = ACTIONS(1607), + [sym_mutable_specifier] = ACTIONS(1609), + [sym_integer_literal] = ACTIONS(1611), + [aux_sym_string_literal_token1] = ACTIONS(1613), + [sym_char_literal] = ACTIONS(1611), + [anon_sym_true] = ACTIONS(1615), + [anon_sym_false] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1617), + [sym_super] = ACTIONS(1617), + [sym_crate] = ACTIONS(1617), + [sym_metavariable] = ACTIONS(1619), + [sym__raw_string_literal_start] = ACTIONS(1621), + [sym_float_literal] = ACTIONS(1611), + }, + [STATE(501)] = { + [sym_empty_statement] = STATE(1419), + [sym_declaration_with_attribute] = STATE(1419), + [sym_macro_definition] = STATE(1419), + [sym_attribute_item] = STATE(1485), + [sym_attributes] = STATE(531), + [sym_inner_attribute_item] = STATE(1419), + [sym_mod_item] = STATE(1419), + [sym_foreign_mod_item] = STATE(1419), + [sym_struct_item] = STATE(1419), + [sym_union_item] = STATE(1419), + [sym_enum_item] = STATE(1419), + [sym_extern_crate_declaration] = STATE(1419), + [sym_const_item] = STATE(1419), + [sym_static_item] = STATE(1419), + [sym_type_item] = STATE(1419), + [sym_function_item] = STATE(1419), + [sym_function_signature_item] = STATE(1419), + [sym_function_modifiers] = STATE(3843), + [sym_impl_item] = STATE(1419), + [sym_trait_item] = STATE(1419), + [sym_associated_type] = STATE(1419), + [sym_let_declaration] = STATE(1419), + [sym_use_declaration] = STATE(1419), + [sym_extern_modifier] = STATE(2313), + [sym_visibility_modifier] = STATE(2088), + [sym_bracketed_type] = STATE(3798), + [sym_generic_type_with_turbofish] = STATE(3872), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(3265), + [sym_line_comment] = STATE(501), + [sym_block_comment] = STATE(501), + [aux_sym_attributes_repeat1] = STATE(1151), + [aux_sym_declaration_list_repeat1] = STATE(498), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1639), + [anon_sym_SEMI] = ACTIONS(1641), + [anon_sym_macro_rules_BANG] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1783), + [anon_sym_u8] = ACTIONS(1647), + [anon_sym_i8] = ACTIONS(1647), + [anon_sym_u16] = ACTIONS(1647), + [anon_sym_i16] = ACTIONS(1647), + [anon_sym_u32] = ACTIONS(1647), + [anon_sym_i32] = ACTIONS(1647), + [anon_sym_u64] = ACTIONS(1647), + [anon_sym_i64] = ACTIONS(1647), + [anon_sym_u128] = ACTIONS(1647), + [anon_sym_i128] = ACTIONS(1647), + [anon_sym_isize] = ACTIONS(1647), + [anon_sym_usize] = ACTIONS(1647), + [anon_sym_f32] = ACTIONS(1647), + [anon_sym_f64] = ACTIONS(1647), + [anon_sym_bool] = ACTIONS(1647), + [anon_sym_str] = ACTIONS(1647), + [anon_sym_char] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1649), + [anon_sym_POUND] = ACTIONS(1651), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1653), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_enum] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1659), + [anon_sym_gen] = ACTIONS(1661), + [anon_sym_impl] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(1665), + [anon_sym_mod] = ACTIONS(1667), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(1669), + [anon_sym_struct] = ACTIONS(1671), + [anon_sym_trait] = ACTIONS(1673), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_union] = ACTIONS(1677), + [anon_sym_unsafe] = ACTIONS(1679), + [anon_sym_use] = ACTIONS(1681), + [anon_sym_extern] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1685), + [sym_super] = ACTIONS(1685), + [sym_crate] = ACTIONS(1687), + [sym_metavariable] = ACTIONS(1689), + }, + [STATE(502)] = { + [sym_attribute_item] = STATE(1406), + [sym_attributes] = STATE(836), + [sym_bracketed_type] = STATE(3755), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3470), + [sym_macro_invocation] = STATE(3150), + [sym_scoped_identifier] = STATE(2303), + [sym_scoped_type_identifier] = STATE(3084), + [sym_match_arm] = STATE(1409), + [sym_last_match_arm] = STATE(3741), + [sym_match_pattern] = STATE(3734), + [sym_const_block] = STATE(3150), + [sym__pattern] = STATE(3193), + [sym_generic_pattern] = STATE(3150), + [sym_tuple_pattern] = STATE(3150), + [sym_slice_pattern] = STATE(3150), + [sym_tuple_struct_pattern] = STATE(3150), + [sym_struct_pattern] = STATE(3150), + [sym_remaining_field_pattern] = STATE(3150), + [sym_mut_pattern] = STATE(3150), + [sym_range_pattern] = STATE(3150), + [sym_ref_pattern] = STATE(3150), + [sym_captured_pattern] = STATE(3150), + [sym_reference_pattern] = STATE(3150), + [sym_or_pattern] = STATE(3150), + [sym__literal_pattern] = STATE(2485), + [sym_negative_literal] = STATE(2477), + [sym_string_literal] = STATE(2477), + [sym_raw_string_literal] = STATE(2477), + [sym_boolean_literal] = STATE(2477), + [sym_line_comment] = STATE(502), + [sym_block_comment] = STATE(502), + [aux_sym_attributes_repeat1] = STATE(1128), + [aux_sym_match_block_repeat2] = STATE(520), + [sym_identifier] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_u8] = ACTIONS(1585), + [anon_sym_i8] = ACTIONS(1585), + [anon_sym_u16] = ACTIONS(1585), + [anon_sym_i16] = ACTIONS(1585), + [anon_sym_u32] = ACTIONS(1585), + [anon_sym_i32] = ACTIONS(1585), + [anon_sym_u64] = ACTIONS(1585), + [anon_sym_i64] = ACTIONS(1585), + [anon_sym_u128] = ACTIONS(1585), + [anon_sym_i128] = ACTIONS(1585), + [anon_sym_isize] = ACTIONS(1585), + [anon_sym_usize] = ACTIONS(1585), + [anon_sym_f32] = ACTIONS(1585), + [anon_sym_f64] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_str] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1597), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(1691), + [anon_sym_const] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1605), + [anon_sym_gen] = ACTIONS(1605), + [anon_sym_union] = ACTIONS(1605), + [anon_sym_ref] = ACTIONS(1607), + [sym_mutable_specifier] = ACTIONS(1609), + [sym_integer_literal] = ACTIONS(1611), + [aux_sym_string_literal_token1] = ACTIONS(1613), + [sym_char_literal] = ACTIONS(1611), + [anon_sym_true] = ACTIONS(1615), + [anon_sym_false] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1617), + [sym_super] = ACTIONS(1617), + [sym_crate] = ACTIONS(1617), + [sym_metavariable] = ACTIONS(1619), + [sym__raw_string_literal_start] = ACTIONS(1621), + [sym_float_literal] = ACTIONS(1611), + }, + [STATE(503)] = { + [sym_attribute_item] = STATE(1406), + [sym_attributes] = STATE(836), + [sym_bracketed_type] = STATE(3755), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3470), + [sym_macro_invocation] = STATE(3150), + [sym_scoped_identifier] = STATE(2303), + [sym_scoped_type_identifier] = STATE(3084), + [sym_match_arm] = STATE(1409), + [sym_last_match_arm] = STATE(3820), + [sym_match_pattern] = STATE(3734), + [sym_const_block] = STATE(3150), + [sym__pattern] = STATE(3193), + [sym_generic_pattern] = STATE(3150), + [sym_tuple_pattern] = STATE(3150), + [sym_slice_pattern] = STATE(3150), + [sym_tuple_struct_pattern] = STATE(3150), + [sym_struct_pattern] = STATE(3150), + [sym_remaining_field_pattern] = STATE(3150), + [sym_mut_pattern] = STATE(3150), + [sym_range_pattern] = STATE(3150), + [sym_ref_pattern] = STATE(3150), + [sym_captured_pattern] = STATE(3150), + [sym_reference_pattern] = STATE(3150), + [sym_or_pattern] = STATE(3150), + [sym__literal_pattern] = STATE(2485), + [sym_negative_literal] = STATE(2477), + [sym_string_literal] = STATE(2477), + [sym_raw_string_literal] = STATE(2477), + [sym_boolean_literal] = STATE(2477), + [sym_line_comment] = STATE(503), + [sym_block_comment] = STATE(503), + [aux_sym_attributes_repeat1] = STATE(1128), + [aux_sym_match_block_repeat2] = STATE(520), + [sym_identifier] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_u8] = ACTIONS(1585), + [anon_sym_i8] = ACTIONS(1585), + [anon_sym_u16] = ACTIONS(1585), + [anon_sym_i16] = ACTIONS(1585), + [anon_sym_u32] = ACTIONS(1585), + [anon_sym_i32] = ACTIONS(1585), + [anon_sym_u64] = ACTIONS(1585), + [anon_sym_i64] = ACTIONS(1585), + [anon_sym_u128] = ACTIONS(1585), + [anon_sym_i128] = ACTIONS(1585), + [anon_sym_isize] = ACTIONS(1585), + [anon_sym_usize] = ACTIONS(1585), + [anon_sym_f32] = ACTIONS(1585), + [anon_sym_f64] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_str] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1597), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(1691), + [anon_sym_const] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1605), + [anon_sym_gen] = ACTIONS(1605), + [anon_sym_union] = ACTIONS(1605), + [anon_sym_ref] = ACTIONS(1607), + [sym_mutable_specifier] = ACTIONS(1609), + [sym_integer_literal] = ACTIONS(1611), + [aux_sym_string_literal_token1] = ACTIONS(1613), + [sym_char_literal] = ACTIONS(1611), + [anon_sym_true] = ACTIONS(1615), + [anon_sym_false] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1617), + [sym_super] = ACTIONS(1617), + [sym_crate] = ACTIONS(1617), + [sym_metavariable] = ACTIONS(1619), + [sym__raw_string_literal_start] = ACTIONS(1621), + [sym_float_literal] = ACTIONS(1611), + }, + [STATE(504)] = { + [sym_line_comment] = STATE(504), + [sym_block_comment] = STATE(504), + [sym_identifier] = ACTIONS(1447), + [anon_sym_LPAREN] = ACTIONS(1445), + [anon_sym_LBRACK] = ACTIONS(1445), + [anon_sym_RBRACE] = ACTIONS(1397), + [anon_sym_PLUS] = ACTIONS(1399), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_QMARK] = ACTIONS(1397), + [anon_sym_u8] = ACTIONS(1447), + [anon_sym_i8] = ACTIONS(1447), + [anon_sym_u16] = ACTIONS(1447), + [anon_sym_i16] = ACTIONS(1447), + [anon_sym_u32] = ACTIONS(1447), + [anon_sym_i32] = ACTIONS(1447), + [anon_sym_u64] = ACTIONS(1447), + [anon_sym_i64] = ACTIONS(1447), + [anon_sym_u128] = ACTIONS(1447), + [anon_sym_i128] = ACTIONS(1447), + [anon_sym_isize] = ACTIONS(1447), + [anon_sym_usize] = ACTIONS(1447), + [anon_sym_f32] = ACTIONS(1447), + [anon_sym_f64] = ACTIONS(1447), + [anon_sym_bool] = ACTIONS(1447), + [anon_sym_str] = ACTIONS(1447), + [anon_sym_char] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1447), + [anon_sym_SLASH] = ACTIONS(1399), + [anon_sym_PERCENT] = ACTIONS(1399), + [anon_sym_CARET] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1447), + [anon_sym_PIPE] = ACTIONS(1447), + [anon_sym_AMP_AMP] = ACTIONS(1397), + [anon_sym_PIPE_PIPE] = ACTIONS(1397), + [anon_sym_LT_LT] = ACTIONS(1399), + [anon_sym_GT_GT] = ACTIONS(1399), + [anon_sym_PLUS_EQ] = ACTIONS(1397), + [anon_sym_DASH_EQ] = ACTIONS(1397), + [anon_sym_STAR_EQ] = ACTIONS(1397), + [anon_sym_SLASH_EQ] = ACTIONS(1397), + [anon_sym_PERCENT_EQ] = ACTIONS(1397), + [anon_sym_CARET_EQ] = ACTIONS(1397), + [anon_sym_AMP_EQ] = ACTIONS(1397), + [anon_sym_PIPE_EQ] = ACTIONS(1397), + [anon_sym_LT_LT_EQ] = ACTIONS(1397), + [anon_sym_GT_GT_EQ] = ACTIONS(1397), + [anon_sym_EQ] = ACTIONS(1399), + [anon_sym_EQ_EQ] = ACTIONS(1397), + [anon_sym_BANG_EQ] = ACTIONS(1397), + [anon_sym_GT] = ACTIONS(1399), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT_EQ] = ACTIONS(1397), + [anon_sym_LT_EQ] = ACTIONS(1397), + [anon_sym__] = ACTIONS(1447), + [anon_sym_DOT] = ACTIONS(1399), + [anon_sym_DOT_DOT] = ACTIONS(1447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1445), + [anon_sym_COMMA] = ACTIONS(1397), + [anon_sym_COLON_COLON] = ACTIONS(1445), + [anon_sym_POUND] = ACTIONS(1445), + [anon_sym_as] = ACTIONS(1399), + [anon_sym_const] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(1447), + [anon_sym_gen] = ACTIONS(1447), + [anon_sym_union] = ACTIONS(1447), + [anon_sym_ref] = ACTIONS(1447), + [sym_mutable_specifier] = ACTIONS(1447), + [sym_integer_literal] = ACTIONS(1445), + [aux_sym_string_literal_token1] = ACTIONS(1445), + [sym_char_literal] = ACTIONS(1445), + [anon_sym_true] = ACTIONS(1447), + [anon_sym_false] = ACTIONS(1447), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1447), + [sym_super] = ACTIONS(1447), + [sym_crate] = ACTIONS(1447), + [sym_metavariable] = ACTIONS(1445), + [sym__raw_string_literal_start] = ACTIONS(1445), + [sym_float_literal] = ACTIONS(1445), + }, + [STATE(505)] = { [sym_line_comment] = STATE(505), [sym_block_comment] = STATE(505), - [ts_builtin_sym_end] = ACTIONS(1846), - [sym_identifier] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_macro_rules_BANG] = ACTIONS(1846), - [anon_sym_LPAREN] = ACTIONS(1846), - [anon_sym_LBRACK] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1846), - [anon_sym_RBRACE] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1846), - [anon_sym_u8] = ACTIONS(1848), - [anon_sym_i8] = ACTIONS(1848), - [anon_sym_u16] = ACTIONS(1848), - [anon_sym_i16] = ACTIONS(1848), - [anon_sym_u32] = ACTIONS(1848), - [anon_sym_i32] = ACTIONS(1848), - [anon_sym_u64] = ACTIONS(1848), - [anon_sym_i64] = ACTIONS(1848), - [anon_sym_u128] = ACTIONS(1848), - [anon_sym_i128] = ACTIONS(1848), - [anon_sym_isize] = ACTIONS(1848), - [anon_sym_usize] = ACTIONS(1848), - [anon_sym_f32] = ACTIONS(1848), - [anon_sym_f64] = ACTIONS(1848), - [anon_sym_bool] = ACTIONS(1848), - [anon_sym_str] = ACTIONS(1848), - [anon_sym_char] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_BANG] = ACTIONS(1846), - [anon_sym_AMP] = ACTIONS(1846), - [anon_sym_PIPE] = ACTIONS(1846), - [anon_sym_LT] = ACTIONS(1846), - [anon_sym_DOT_DOT] = ACTIONS(1846), - [anon_sym_COLON_COLON] = ACTIONS(1846), - [anon_sym_POUND] = ACTIONS(1846), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_async] = ACTIONS(1848), - [anon_sym_break] = ACTIONS(1848), - [anon_sym_const] = ACTIONS(1848), - [anon_sym_continue] = ACTIONS(1848), - [anon_sym_default] = ACTIONS(1848), - [anon_sym_enum] = ACTIONS(1848), - [anon_sym_fn] = ACTIONS(1848), - [anon_sym_for] = ACTIONS(1848), - [anon_sym_gen] = ACTIONS(1848), - [anon_sym_if] = ACTIONS(1848), - [anon_sym_impl] = ACTIONS(1848), - [anon_sym_let] = ACTIONS(1848), - [anon_sym_loop] = ACTIONS(1848), - [anon_sym_match] = ACTIONS(1848), - [anon_sym_mod] = ACTIONS(1848), - [anon_sym_pub] = ACTIONS(1848), - [anon_sym_return] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1848), - [anon_sym_struct] = ACTIONS(1848), - [anon_sym_trait] = ACTIONS(1848), - [anon_sym_type] = ACTIONS(1848), - [anon_sym_union] = ACTIONS(1848), - [anon_sym_unsafe] = ACTIONS(1848), - [anon_sym_use] = ACTIONS(1848), - [anon_sym_while] = ACTIONS(1848), - [anon_sym_extern] = ACTIONS(1848), - [anon_sym_yield] = ACTIONS(1848), - [anon_sym_move] = ACTIONS(1848), - [anon_sym_try] = ACTIONS(1848), - [sym_integer_literal] = ACTIONS(1846), - [aux_sym_string_literal_token1] = ACTIONS(1846), - [sym_char_literal] = ACTIONS(1846), - [anon_sym_true] = ACTIONS(1848), - [anon_sym_false] = ACTIONS(1848), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1848), - [sym_super] = ACTIONS(1848), - [sym_crate] = ACTIONS(1848), - [sym_metavariable] = ACTIONS(1846), - [sym__raw_string_literal_start] = ACTIONS(1846), - [sym_float_literal] = ACTIONS(1846), + [sym_identifier] = ACTIONS(1457), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_RBRACE] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1457), + [anon_sym_QMARK] = ACTIONS(1455), + [anon_sym_u8] = ACTIONS(1457), + [anon_sym_i8] = ACTIONS(1457), + [anon_sym_u16] = ACTIONS(1457), + [anon_sym_i16] = ACTIONS(1457), + [anon_sym_u32] = ACTIONS(1457), + [anon_sym_i32] = ACTIONS(1457), + [anon_sym_u64] = ACTIONS(1457), + [anon_sym_i64] = ACTIONS(1457), + [anon_sym_u128] = ACTIONS(1457), + [anon_sym_i128] = ACTIONS(1457), + [anon_sym_isize] = ACTIONS(1457), + [anon_sym_usize] = ACTIONS(1457), + [anon_sym_f32] = ACTIONS(1457), + [anon_sym_f64] = ACTIONS(1457), + [anon_sym_bool] = ACTIONS(1457), + [anon_sym_str] = ACTIONS(1457), + [anon_sym_char] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_SLASH] = ACTIONS(1457), + [anon_sym_PERCENT] = ACTIONS(1457), + [anon_sym_CARET] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PIPE] = ACTIONS(1457), + [anon_sym_AMP_AMP] = ACTIONS(1455), + [anon_sym_PIPE_PIPE] = ACTIONS(1455), + [anon_sym_LT_LT] = ACTIONS(1457), + [anon_sym_GT_GT] = ACTIONS(1457), + [anon_sym_PLUS_EQ] = ACTIONS(1455), + [anon_sym_DASH_EQ] = ACTIONS(1455), + [anon_sym_STAR_EQ] = ACTIONS(1455), + [anon_sym_SLASH_EQ] = ACTIONS(1455), + [anon_sym_PERCENT_EQ] = ACTIONS(1455), + [anon_sym_CARET_EQ] = ACTIONS(1455), + [anon_sym_AMP_EQ] = ACTIONS(1455), + [anon_sym_PIPE_EQ] = ACTIONS(1455), + [anon_sym_LT_LT_EQ] = ACTIONS(1455), + [anon_sym_GT_GT_EQ] = ACTIONS(1455), + [anon_sym_EQ] = ACTIONS(1457), + [anon_sym_EQ_EQ] = ACTIONS(1455), + [anon_sym_BANG_EQ] = ACTIONS(1455), + [anon_sym_GT] = ACTIONS(1457), + [anon_sym_LT] = ACTIONS(1457), + [anon_sym_GT_EQ] = ACTIONS(1455), + [anon_sym_LT_EQ] = ACTIONS(1455), + [anon_sym__] = ACTIONS(1457), + [anon_sym_DOT] = ACTIONS(1457), + [anon_sym_DOT_DOT] = ACTIONS(1457), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1455), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1455), + [anon_sym_COMMA] = ACTIONS(1455), + [anon_sym_COLON_COLON] = ACTIONS(1455), + [anon_sym_POUND] = ACTIONS(1455), + [anon_sym_as] = ACTIONS(1457), + [anon_sym_const] = ACTIONS(1457), + [anon_sym_default] = ACTIONS(1457), + [anon_sym_gen] = ACTIONS(1457), + [anon_sym_union] = ACTIONS(1457), + [anon_sym_ref] = ACTIONS(1457), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1455), + [aux_sym_string_literal_token1] = ACTIONS(1455), + [sym_char_literal] = ACTIONS(1455), + [anon_sym_true] = ACTIONS(1457), + [anon_sym_false] = ACTIONS(1457), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1457), + [sym_super] = ACTIONS(1457), + [sym_crate] = ACTIONS(1457), + [sym_metavariable] = ACTIONS(1455), + [sym__raw_string_literal_start] = ACTIONS(1455), + [sym_float_literal] = ACTIONS(1455), }, [STATE(506)] = { [sym_line_comment] = STATE(506), [sym_block_comment] = STATE(506), - [ts_builtin_sym_end] = ACTIONS(1850), - [sym_identifier] = ACTIONS(1852), - [anon_sym_SEMI] = ACTIONS(1850), - [anon_sym_macro_rules_BANG] = ACTIONS(1850), - [anon_sym_LPAREN] = ACTIONS(1850), - [anon_sym_LBRACK] = ACTIONS(1850), - [anon_sym_LBRACE] = ACTIONS(1850), - [anon_sym_RBRACE] = ACTIONS(1850), - [anon_sym_STAR] = ACTIONS(1850), - [anon_sym_u8] = ACTIONS(1852), - [anon_sym_i8] = ACTIONS(1852), - [anon_sym_u16] = ACTIONS(1852), - [anon_sym_i16] = ACTIONS(1852), - [anon_sym_u32] = ACTIONS(1852), - [anon_sym_i32] = ACTIONS(1852), - [anon_sym_u64] = ACTIONS(1852), - [anon_sym_i64] = ACTIONS(1852), - [anon_sym_u128] = ACTIONS(1852), - [anon_sym_i128] = ACTIONS(1852), - [anon_sym_isize] = ACTIONS(1852), - [anon_sym_usize] = ACTIONS(1852), - [anon_sym_f32] = ACTIONS(1852), - [anon_sym_f64] = ACTIONS(1852), - [anon_sym_bool] = ACTIONS(1852), - [anon_sym_str] = ACTIONS(1852), - [anon_sym_char] = ACTIONS(1852), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_BANG] = ACTIONS(1850), - [anon_sym_AMP] = ACTIONS(1850), - [anon_sym_PIPE] = ACTIONS(1850), - [anon_sym_LT] = ACTIONS(1850), - [anon_sym_DOT_DOT] = ACTIONS(1850), - [anon_sym_COLON_COLON] = ACTIONS(1850), - [anon_sym_POUND] = ACTIONS(1850), - [anon_sym_SQUOTE] = ACTIONS(1852), - [anon_sym_async] = ACTIONS(1852), - [anon_sym_break] = ACTIONS(1852), - [anon_sym_const] = ACTIONS(1852), - [anon_sym_continue] = ACTIONS(1852), - [anon_sym_default] = ACTIONS(1852), - [anon_sym_enum] = ACTIONS(1852), - [anon_sym_fn] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1852), - [anon_sym_gen] = ACTIONS(1852), - [anon_sym_if] = ACTIONS(1852), - [anon_sym_impl] = ACTIONS(1852), - [anon_sym_let] = ACTIONS(1852), - [anon_sym_loop] = ACTIONS(1852), - [anon_sym_match] = ACTIONS(1852), - [anon_sym_mod] = ACTIONS(1852), - [anon_sym_pub] = ACTIONS(1852), - [anon_sym_return] = ACTIONS(1852), - [anon_sym_static] = ACTIONS(1852), - [anon_sym_struct] = ACTIONS(1852), - [anon_sym_trait] = ACTIONS(1852), - [anon_sym_type] = ACTIONS(1852), - [anon_sym_union] = ACTIONS(1852), - [anon_sym_unsafe] = ACTIONS(1852), - [anon_sym_use] = ACTIONS(1852), - [anon_sym_while] = ACTIONS(1852), - [anon_sym_extern] = ACTIONS(1852), - [anon_sym_yield] = ACTIONS(1852), - [anon_sym_move] = ACTIONS(1852), - [anon_sym_try] = ACTIONS(1852), - [sym_integer_literal] = ACTIONS(1850), - [aux_sym_string_literal_token1] = ACTIONS(1850), - [sym_char_literal] = ACTIONS(1850), - [anon_sym_true] = ACTIONS(1852), - [anon_sym_false] = ACTIONS(1852), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1852), - [sym_super] = ACTIONS(1852), - [sym_crate] = ACTIONS(1852), - [sym_metavariable] = ACTIONS(1850), - [sym__raw_string_literal_start] = ACTIONS(1850), - [sym_float_literal] = ACTIONS(1850), + [sym_identifier] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(1365), + [anon_sym_RBRACE] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1367), + [anon_sym_i8] = ACTIONS(1367), + [anon_sym_u16] = ACTIONS(1367), + [anon_sym_i16] = ACTIONS(1367), + [anon_sym_u32] = ACTIONS(1367), + [anon_sym_i32] = ACTIONS(1367), + [anon_sym_u64] = ACTIONS(1367), + [anon_sym_i64] = ACTIONS(1367), + [anon_sym_u128] = ACTIONS(1367), + [anon_sym_i128] = ACTIONS(1367), + [anon_sym_isize] = ACTIONS(1367), + [anon_sym_usize] = ACTIONS(1367), + [anon_sym_f32] = ACTIONS(1367), + [anon_sym_f64] = ACTIONS(1367), + [anon_sym_bool] = ACTIONS(1367), + [anon_sym_str] = ACTIONS(1367), + [anon_sym_char] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1367), + [anon_sym_SLASH] = ACTIONS(1367), + [anon_sym_PERCENT] = ACTIONS(1367), + [anon_sym_CARET] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_LT_LT] = ACTIONS(1367), + [anon_sym_GT_GT] = ACTIONS(1367), + [anon_sym_PLUS_EQ] = ACTIONS(1365), + [anon_sym_DASH_EQ] = ACTIONS(1365), + [anon_sym_STAR_EQ] = ACTIONS(1365), + [anon_sym_SLASH_EQ] = ACTIONS(1365), + [anon_sym_PERCENT_EQ] = ACTIONS(1365), + [anon_sym_CARET_EQ] = ACTIONS(1365), + [anon_sym_AMP_EQ] = ACTIONS(1365), + [anon_sym_PIPE_EQ] = ACTIONS(1365), + [anon_sym_LT_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ] = ACTIONS(1367), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_GT] = ACTIONS(1367), + [anon_sym_LT] = ACTIONS(1367), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym__] = ACTIONS(1367), + [anon_sym_DOT] = ACTIONS(1367), + [anon_sym_DOT_DOT] = ACTIONS(1367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1365), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1365), + [anon_sym_COMMA] = ACTIONS(1365), + [anon_sym_COLON_COLON] = ACTIONS(1365), + [anon_sym_POUND] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1367), + [anon_sym_const] = ACTIONS(1367), + [anon_sym_default] = ACTIONS(1367), + [anon_sym_gen] = ACTIONS(1367), + [anon_sym_union] = ACTIONS(1367), + [anon_sym_ref] = ACTIONS(1367), + [sym_mutable_specifier] = ACTIONS(1367), + [sym_integer_literal] = ACTIONS(1365), + [aux_sym_string_literal_token1] = ACTIONS(1365), + [sym_char_literal] = ACTIONS(1365), + [anon_sym_true] = ACTIONS(1367), + [anon_sym_false] = ACTIONS(1367), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1367), + [sym_super] = ACTIONS(1367), + [sym_crate] = ACTIONS(1367), + [sym_metavariable] = ACTIONS(1365), + [sym__raw_string_literal_start] = ACTIONS(1365), + [sym_float_literal] = ACTIONS(1365), }, [STATE(507)] = { [sym_line_comment] = STATE(507), [sym_block_comment] = STATE(507), - [ts_builtin_sym_end] = ACTIONS(1854), - [sym_identifier] = ACTIONS(1856), - [anon_sym_SEMI] = ACTIONS(1854), - [anon_sym_macro_rules_BANG] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(1854), - [anon_sym_LBRACK] = ACTIONS(1854), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(1854), - [anon_sym_STAR] = ACTIONS(1854), - [anon_sym_u8] = ACTIONS(1856), - [anon_sym_i8] = ACTIONS(1856), - [anon_sym_u16] = ACTIONS(1856), - [anon_sym_i16] = ACTIONS(1856), - [anon_sym_u32] = ACTIONS(1856), - [anon_sym_i32] = ACTIONS(1856), - [anon_sym_u64] = ACTIONS(1856), - [anon_sym_i64] = ACTIONS(1856), - [anon_sym_u128] = ACTIONS(1856), - [anon_sym_i128] = ACTIONS(1856), - [anon_sym_isize] = ACTIONS(1856), - [anon_sym_usize] = ACTIONS(1856), - [anon_sym_f32] = ACTIONS(1856), - [anon_sym_f64] = ACTIONS(1856), - [anon_sym_bool] = ACTIONS(1856), - [anon_sym_str] = ACTIONS(1856), - [anon_sym_char] = ACTIONS(1856), - [anon_sym_DASH] = ACTIONS(1854), - [anon_sym_BANG] = ACTIONS(1854), - [anon_sym_AMP] = ACTIONS(1854), - [anon_sym_PIPE] = ACTIONS(1854), - [anon_sym_LT] = ACTIONS(1854), - [anon_sym_DOT_DOT] = ACTIONS(1854), - [anon_sym_COLON_COLON] = ACTIONS(1854), - [anon_sym_POUND] = ACTIONS(1854), - [anon_sym_SQUOTE] = ACTIONS(1856), - [anon_sym_async] = ACTIONS(1856), - [anon_sym_break] = ACTIONS(1856), - [anon_sym_const] = ACTIONS(1856), - [anon_sym_continue] = ACTIONS(1856), - [anon_sym_default] = ACTIONS(1856), - [anon_sym_enum] = ACTIONS(1856), - [anon_sym_fn] = ACTIONS(1856), - [anon_sym_for] = ACTIONS(1856), - [anon_sym_gen] = ACTIONS(1856), - [anon_sym_if] = ACTIONS(1856), - [anon_sym_impl] = ACTIONS(1856), - [anon_sym_let] = ACTIONS(1856), - [anon_sym_loop] = ACTIONS(1856), - [anon_sym_match] = ACTIONS(1856), - [anon_sym_mod] = ACTIONS(1856), - [anon_sym_pub] = ACTIONS(1856), - [anon_sym_return] = ACTIONS(1856), - [anon_sym_static] = ACTIONS(1856), - [anon_sym_struct] = ACTIONS(1856), - [anon_sym_trait] = ACTIONS(1856), - [anon_sym_type] = ACTIONS(1856), - [anon_sym_union] = ACTIONS(1856), - [anon_sym_unsafe] = ACTIONS(1856), - [anon_sym_use] = ACTIONS(1856), - [anon_sym_while] = ACTIONS(1856), - [anon_sym_extern] = ACTIONS(1856), - [anon_sym_yield] = ACTIONS(1856), - [anon_sym_move] = ACTIONS(1856), - [anon_sym_try] = ACTIONS(1856), - [sym_integer_literal] = ACTIONS(1854), - [aux_sym_string_literal_token1] = ACTIONS(1854), - [sym_char_literal] = ACTIONS(1854), - [anon_sym_true] = ACTIONS(1856), - [anon_sym_false] = ACTIONS(1856), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1856), - [sym_super] = ACTIONS(1856), - [sym_crate] = ACTIONS(1856), - [sym_metavariable] = ACTIONS(1854), - [sym__raw_string_literal_start] = ACTIONS(1854), - [sym_float_literal] = ACTIONS(1854), + [sym_identifier] = ACTIONS(1363), + [anon_sym_LPAREN] = ACTIONS(1361), + [anon_sym_LBRACK] = ACTIONS(1361), + [anon_sym_RBRACE] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1361), + [anon_sym_u8] = ACTIONS(1363), + [anon_sym_i8] = ACTIONS(1363), + [anon_sym_u16] = ACTIONS(1363), + [anon_sym_i16] = ACTIONS(1363), + [anon_sym_u32] = ACTIONS(1363), + [anon_sym_i32] = ACTIONS(1363), + [anon_sym_u64] = ACTIONS(1363), + [anon_sym_i64] = ACTIONS(1363), + [anon_sym_u128] = ACTIONS(1363), + [anon_sym_i128] = ACTIONS(1363), + [anon_sym_isize] = ACTIONS(1363), + [anon_sym_usize] = ACTIONS(1363), + [anon_sym_f32] = ACTIONS(1363), + [anon_sym_f64] = ACTIONS(1363), + [anon_sym_bool] = ACTIONS(1363), + [anon_sym_str] = ACTIONS(1363), + [anon_sym_char] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_SLASH] = ACTIONS(1363), + [anon_sym_PERCENT] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_AMP] = ACTIONS(1363), + [anon_sym_PIPE] = ACTIONS(1363), + [anon_sym_AMP_AMP] = ACTIONS(1361), + [anon_sym_PIPE_PIPE] = ACTIONS(1361), + [anon_sym_LT_LT] = ACTIONS(1363), + [anon_sym_GT_GT] = ACTIONS(1363), + [anon_sym_PLUS_EQ] = ACTIONS(1361), + [anon_sym_DASH_EQ] = ACTIONS(1361), + [anon_sym_STAR_EQ] = ACTIONS(1361), + [anon_sym_SLASH_EQ] = ACTIONS(1361), + [anon_sym_PERCENT_EQ] = ACTIONS(1361), + [anon_sym_CARET_EQ] = ACTIONS(1361), + [anon_sym_AMP_EQ] = ACTIONS(1361), + [anon_sym_PIPE_EQ] = ACTIONS(1361), + [anon_sym_LT_LT_EQ] = ACTIONS(1361), + [anon_sym_GT_GT_EQ] = ACTIONS(1361), + [anon_sym_EQ] = ACTIONS(1363), + [anon_sym_EQ_EQ] = ACTIONS(1361), + [anon_sym_BANG_EQ] = ACTIONS(1361), + [anon_sym_GT] = ACTIONS(1363), + [anon_sym_LT] = ACTIONS(1363), + [anon_sym_GT_EQ] = ACTIONS(1361), + [anon_sym_LT_EQ] = ACTIONS(1361), + [anon_sym__] = ACTIONS(1363), + [anon_sym_DOT] = ACTIONS(1363), + [anon_sym_DOT_DOT] = ACTIONS(1363), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1361), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1361), + [anon_sym_COMMA] = ACTIONS(1361), + [anon_sym_COLON_COLON] = ACTIONS(1361), + [anon_sym_POUND] = ACTIONS(1361), + [anon_sym_as] = ACTIONS(1363), + [anon_sym_const] = ACTIONS(1363), + [anon_sym_default] = ACTIONS(1363), + [anon_sym_gen] = ACTIONS(1363), + [anon_sym_union] = ACTIONS(1363), + [anon_sym_ref] = ACTIONS(1363), + [sym_mutable_specifier] = ACTIONS(1363), + [sym_integer_literal] = ACTIONS(1361), + [aux_sym_string_literal_token1] = ACTIONS(1361), + [sym_char_literal] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1363), + [sym_super] = ACTIONS(1363), + [sym_crate] = ACTIONS(1363), + [sym_metavariable] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1361), + [sym_float_literal] = ACTIONS(1361), }, [STATE(508)] = { [sym_line_comment] = STATE(508), [sym_block_comment] = STATE(508), - [ts_builtin_sym_end] = ACTIONS(1858), - [sym_identifier] = ACTIONS(1860), - [anon_sym_SEMI] = ACTIONS(1858), - [anon_sym_macro_rules_BANG] = ACTIONS(1858), - [anon_sym_LPAREN] = ACTIONS(1858), - [anon_sym_LBRACK] = ACTIONS(1858), - [anon_sym_LBRACE] = ACTIONS(1858), - [anon_sym_RBRACE] = ACTIONS(1858), - [anon_sym_STAR] = ACTIONS(1858), - [anon_sym_u8] = ACTIONS(1860), - [anon_sym_i8] = ACTIONS(1860), - [anon_sym_u16] = ACTIONS(1860), - [anon_sym_i16] = ACTIONS(1860), - [anon_sym_u32] = ACTIONS(1860), - [anon_sym_i32] = ACTIONS(1860), - [anon_sym_u64] = ACTIONS(1860), - [anon_sym_i64] = ACTIONS(1860), - [anon_sym_u128] = ACTIONS(1860), - [anon_sym_i128] = ACTIONS(1860), - [anon_sym_isize] = ACTIONS(1860), - [anon_sym_usize] = ACTIONS(1860), - [anon_sym_f32] = ACTIONS(1860), - [anon_sym_f64] = ACTIONS(1860), - [anon_sym_bool] = ACTIONS(1860), - [anon_sym_str] = ACTIONS(1860), - [anon_sym_char] = ACTIONS(1860), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_BANG] = ACTIONS(1858), - [anon_sym_AMP] = ACTIONS(1858), - [anon_sym_PIPE] = ACTIONS(1858), - [anon_sym_LT] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1858), - [anon_sym_COLON_COLON] = ACTIONS(1858), - [anon_sym_POUND] = ACTIONS(1858), - [anon_sym_SQUOTE] = ACTIONS(1860), - [anon_sym_async] = ACTIONS(1860), - [anon_sym_break] = ACTIONS(1860), - [anon_sym_const] = ACTIONS(1860), - [anon_sym_continue] = ACTIONS(1860), - [anon_sym_default] = ACTIONS(1860), - [anon_sym_enum] = ACTIONS(1860), - [anon_sym_fn] = ACTIONS(1860), - [anon_sym_for] = ACTIONS(1860), - [anon_sym_gen] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(1860), - [anon_sym_impl] = ACTIONS(1860), - [anon_sym_let] = ACTIONS(1860), - [anon_sym_loop] = ACTIONS(1860), - [anon_sym_match] = ACTIONS(1860), - [anon_sym_mod] = ACTIONS(1860), - [anon_sym_pub] = ACTIONS(1860), - [anon_sym_return] = ACTIONS(1860), - [anon_sym_static] = ACTIONS(1860), - [anon_sym_struct] = ACTIONS(1860), - [anon_sym_trait] = ACTIONS(1860), - [anon_sym_type] = ACTIONS(1860), - [anon_sym_union] = ACTIONS(1860), - [anon_sym_unsafe] = ACTIONS(1860), - [anon_sym_use] = ACTIONS(1860), - [anon_sym_while] = ACTIONS(1860), - [anon_sym_extern] = ACTIONS(1860), - [anon_sym_yield] = ACTIONS(1860), - [anon_sym_move] = ACTIONS(1860), - [anon_sym_try] = ACTIONS(1860), - [sym_integer_literal] = ACTIONS(1858), - [aux_sym_string_literal_token1] = ACTIONS(1858), - [sym_char_literal] = ACTIONS(1858), - [anon_sym_true] = ACTIONS(1860), - [anon_sym_false] = ACTIONS(1860), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1860), - [sym_super] = ACTIONS(1860), - [sym_crate] = ACTIONS(1860), - [sym_metavariable] = ACTIONS(1858), - [sym__raw_string_literal_start] = ACTIONS(1858), - [sym_float_literal] = ACTIONS(1858), + [sym_identifier] = ACTIONS(1371), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_LBRACK] = ACTIONS(1369), + [anon_sym_RBRACE] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1371), + [anon_sym_STAR] = ACTIONS(1371), + [anon_sym_QMARK] = ACTIONS(1369), + [anon_sym_u8] = ACTIONS(1371), + [anon_sym_i8] = ACTIONS(1371), + [anon_sym_u16] = ACTIONS(1371), + [anon_sym_i16] = ACTIONS(1371), + [anon_sym_u32] = ACTIONS(1371), + [anon_sym_i32] = ACTIONS(1371), + [anon_sym_u64] = ACTIONS(1371), + [anon_sym_i64] = ACTIONS(1371), + [anon_sym_u128] = ACTIONS(1371), + [anon_sym_i128] = ACTIONS(1371), + [anon_sym_isize] = ACTIONS(1371), + [anon_sym_usize] = ACTIONS(1371), + [anon_sym_f32] = ACTIONS(1371), + [anon_sym_f64] = ACTIONS(1371), + [anon_sym_bool] = ACTIONS(1371), + [anon_sym_str] = ACTIONS(1371), + [anon_sym_char] = ACTIONS(1371), + [anon_sym_DASH] = ACTIONS(1371), + [anon_sym_SLASH] = ACTIONS(1371), + [anon_sym_PERCENT] = ACTIONS(1371), + [anon_sym_CARET] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1371), + [anon_sym_PIPE] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1369), + [anon_sym_PIPE_PIPE] = ACTIONS(1369), + [anon_sym_LT_LT] = ACTIONS(1371), + [anon_sym_GT_GT] = ACTIONS(1371), + [anon_sym_PLUS_EQ] = ACTIONS(1369), + [anon_sym_DASH_EQ] = ACTIONS(1369), + [anon_sym_STAR_EQ] = ACTIONS(1369), + [anon_sym_SLASH_EQ] = ACTIONS(1369), + [anon_sym_PERCENT_EQ] = ACTIONS(1369), + [anon_sym_CARET_EQ] = ACTIONS(1369), + [anon_sym_AMP_EQ] = ACTIONS(1369), + [anon_sym_PIPE_EQ] = ACTIONS(1369), + [anon_sym_LT_LT_EQ] = ACTIONS(1369), + [anon_sym_GT_GT_EQ] = ACTIONS(1369), + [anon_sym_EQ] = ACTIONS(1371), + [anon_sym_EQ_EQ] = ACTIONS(1369), + [anon_sym_BANG_EQ] = ACTIONS(1369), + [anon_sym_GT] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1371), + [anon_sym_GT_EQ] = ACTIONS(1369), + [anon_sym_LT_EQ] = ACTIONS(1369), + [anon_sym__] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(1371), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1369), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1369), + [anon_sym_COMMA] = ACTIONS(1369), + [anon_sym_COLON_COLON] = ACTIONS(1369), + [anon_sym_POUND] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(1371), + [anon_sym_const] = ACTIONS(1371), + [anon_sym_default] = ACTIONS(1371), + [anon_sym_gen] = ACTIONS(1371), + [anon_sym_union] = ACTIONS(1371), + [anon_sym_ref] = ACTIONS(1371), + [sym_mutable_specifier] = ACTIONS(1371), + [sym_integer_literal] = ACTIONS(1369), + [aux_sym_string_literal_token1] = ACTIONS(1369), + [sym_char_literal] = ACTIONS(1369), + [anon_sym_true] = ACTIONS(1371), + [anon_sym_false] = ACTIONS(1371), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1371), + [sym_super] = ACTIONS(1371), + [sym_crate] = ACTIONS(1371), + [sym_metavariable] = ACTIONS(1369), + [sym__raw_string_literal_start] = ACTIONS(1369), + [sym_float_literal] = ACTIONS(1369), }, [STATE(509)] = { [sym_line_comment] = STATE(509), [sym_block_comment] = STATE(509), - [ts_builtin_sym_end] = ACTIONS(1862), - [sym_identifier] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1862), - [anon_sym_macro_rules_BANG] = ACTIONS(1862), - [anon_sym_LPAREN] = ACTIONS(1862), - [anon_sym_LBRACK] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1862), - [anon_sym_RBRACE] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1862), - [anon_sym_u8] = ACTIONS(1864), - [anon_sym_i8] = ACTIONS(1864), - [anon_sym_u16] = ACTIONS(1864), - [anon_sym_i16] = ACTIONS(1864), - [anon_sym_u32] = ACTIONS(1864), - [anon_sym_i32] = ACTIONS(1864), - [anon_sym_u64] = ACTIONS(1864), - [anon_sym_i64] = ACTIONS(1864), - [anon_sym_u128] = ACTIONS(1864), - [anon_sym_i128] = ACTIONS(1864), - [anon_sym_isize] = ACTIONS(1864), - [anon_sym_usize] = ACTIONS(1864), - [anon_sym_f32] = ACTIONS(1864), - [anon_sym_f64] = ACTIONS(1864), - [anon_sym_bool] = ACTIONS(1864), - [anon_sym_str] = ACTIONS(1864), - [anon_sym_char] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_BANG] = ACTIONS(1862), - [anon_sym_AMP] = ACTIONS(1862), - [anon_sym_PIPE] = ACTIONS(1862), - [anon_sym_LT] = ACTIONS(1862), - [anon_sym_DOT_DOT] = ACTIONS(1862), - [anon_sym_COLON_COLON] = ACTIONS(1862), - [anon_sym_POUND] = ACTIONS(1862), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_async] = ACTIONS(1864), - [anon_sym_break] = ACTIONS(1864), - [anon_sym_const] = ACTIONS(1864), - [anon_sym_continue] = ACTIONS(1864), - [anon_sym_default] = ACTIONS(1864), - [anon_sym_enum] = ACTIONS(1864), - [anon_sym_fn] = ACTIONS(1864), - [anon_sym_for] = ACTIONS(1864), - [anon_sym_gen] = ACTIONS(1864), - [anon_sym_if] = ACTIONS(1864), - [anon_sym_impl] = ACTIONS(1864), - [anon_sym_let] = ACTIONS(1864), - [anon_sym_loop] = ACTIONS(1864), - [anon_sym_match] = ACTIONS(1864), - [anon_sym_mod] = ACTIONS(1864), - [anon_sym_pub] = ACTIONS(1864), - [anon_sym_return] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1864), - [anon_sym_struct] = ACTIONS(1864), - [anon_sym_trait] = ACTIONS(1864), - [anon_sym_type] = ACTIONS(1864), - [anon_sym_union] = ACTIONS(1864), - [anon_sym_unsafe] = ACTIONS(1864), - [anon_sym_use] = ACTIONS(1864), - [anon_sym_while] = ACTIONS(1864), - [anon_sym_extern] = ACTIONS(1864), - [anon_sym_yield] = ACTIONS(1864), - [anon_sym_move] = ACTIONS(1864), - [anon_sym_try] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(1862), - [aux_sym_string_literal_token1] = ACTIONS(1862), - [sym_char_literal] = ACTIONS(1862), - [anon_sym_true] = ACTIONS(1864), - [anon_sym_false] = ACTIONS(1864), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1864), - [sym_super] = ACTIONS(1864), - [sym_crate] = ACTIONS(1864), - [sym_metavariable] = ACTIONS(1862), - [sym__raw_string_literal_start] = ACTIONS(1862), - [sym_float_literal] = ACTIONS(1862), + [sym_identifier] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1373), + [anon_sym_LBRACK] = ACTIONS(1373), + [anon_sym_RBRACE] = ACTIONS(1373), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1375), + [anon_sym_QMARK] = ACTIONS(1373), + [anon_sym_u8] = ACTIONS(1375), + [anon_sym_i8] = ACTIONS(1375), + [anon_sym_u16] = ACTIONS(1375), + [anon_sym_i16] = ACTIONS(1375), + [anon_sym_u32] = ACTIONS(1375), + [anon_sym_i32] = ACTIONS(1375), + [anon_sym_u64] = ACTIONS(1375), + [anon_sym_i64] = ACTIONS(1375), + [anon_sym_u128] = ACTIONS(1375), + [anon_sym_i128] = ACTIONS(1375), + [anon_sym_isize] = ACTIONS(1375), + [anon_sym_usize] = ACTIONS(1375), + [anon_sym_f32] = ACTIONS(1375), + [anon_sym_f64] = ACTIONS(1375), + [anon_sym_bool] = ACTIONS(1375), + [anon_sym_str] = ACTIONS(1375), + [anon_sym_char] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(1375), + [anon_sym_PERCENT] = ACTIONS(1375), + [anon_sym_CARET] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_AMP_AMP] = ACTIONS(1373), + [anon_sym_PIPE_PIPE] = ACTIONS(1373), + [anon_sym_LT_LT] = ACTIONS(1375), + [anon_sym_GT_GT] = ACTIONS(1375), + [anon_sym_PLUS_EQ] = ACTIONS(1373), + [anon_sym_DASH_EQ] = ACTIONS(1373), + [anon_sym_STAR_EQ] = ACTIONS(1373), + [anon_sym_SLASH_EQ] = ACTIONS(1373), + [anon_sym_PERCENT_EQ] = ACTIONS(1373), + [anon_sym_CARET_EQ] = ACTIONS(1373), + [anon_sym_AMP_EQ] = ACTIONS(1373), + [anon_sym_PIPE_EQ] = ACTIONS(1373), + [anon_sym_LT_LT_EQ] = ACTIONS(1373), + [anon_sym_GT_GT_EQ] = ACTIONS(1373), + [anon_sym_EQ] = ACTIONS(1375), + [anon_sym_EQ_EQ] = ACTIONS(1373), + [anon_sym_BANG_EQ] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(1375), + [anon_sym_GT_EQ] = ACTIONS(1373), + [anon_sym_LT_EQ] = ACTIONS(1373), + [anon_sym__] = ACTIONS(1375), + [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_DOT_DOT] = ACTIONS(1375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1373), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1373), + [anon_sym_COMMA] = ACTIONS(1373), + [anon_sym_COLON_COLON] = ACTIONS(1373), + [anon_sym_POUND] = ACTIONS(1373), + [anon_sym_as] = ACTIONS(1375), + [anon_sym_const] = ACTIONS(1375), + [anon_sym_default] = ACTIONS(1375), + [anon_sym_gen] = ACTIONS(1375), + [anon_sym_union] = ACTIONS(1375), + [anon_sym_ref] = ACTIONS(1375), + [sym_mutable_specifier] = ACTIONS(1375), + [sym_integer_literal] = ACTIONS(1373), + [aux_sym_string_literal_token1] = ACTIONS(1373), + [sym_char_literal] = ACTIONS(1373), + [anon_sym_true] = ACTIONS(1375), + [anon_sym_false] = ACTIONS(1375), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1375), + [sym_super] = ACTIONS(1375), + [sym_crate] = ACTIONS(1375), + [sym_metavariable] = ACTIONS(1373), + [sym__raw_string_literal_start] = ACTIONS(1373), + [sym_float_literal] = ACTIONS(1373), }, [STATE(510)] = { [sym_line_comment] = STATE(510), [sym_block_comment] = STATE(510), - [ts_builtin_sym_end] = ACTIONS(1866), - [sym_identifier] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1866), - [anon_sym_macro_rules_BANG] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1866), - [anon_sym_u8] = ACTIONS(1868), - [anon_sym_i8] = ACTIONS(1868), - [anon_sym_u16] = ACTIONS(1868), - [anon_sym_i16] = ACTIONS(1868), - [anon_sym_u32] = ACTIONS(1868), - [anon_sym_i32] = ACTIONS(1868), - [anon_sym_u64] = ACTIONS(1868), - [anon_sym_i64] = ACTIONS(1868), - [anon_sym_u128] = ACTIONS(1868), - [anon_sym_i128] = ACTIONS(1868), - [anon_sym_isize] = ACTIONS(1868), - [anon_sym_usize] = ACTIONS(1868), - [anon_sym_f32] = ACTIONS(1868), - [anon_sym_f64] = ACTIONS(1868), - [anon_sym_bool] = ACTIONS(1868), - [anon_sym_str] = ACTIONS(1868), - [anon_sym_char] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_AMP] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1866), - [anon_sym_LT] = ACTIONS(1866), - [anon_sym_DOT_DOT] = ACTIONS(1866), - [anon_sym_COLON_COLON] = ACTIONS(1866), - [anon_sym_POUND] = ACTIONS(1866), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_async] = ACTIONS(1868), - [anon_sym_break] = ACTIONS(1868), - [anon_sym_const] = ACTIONS(1868), - [anon_sym_continue] = ACTIONS(1868), - [anon_sym_default] = ACTIONS(1868), - [anon_sym_enum] = ACTIONS(1868), - [anon_sym_fn] = ACTIONS(1868), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_gen] = ACTIONS(1868), - [anon_sym_if] = ACTIONS(1868), - [anon_sym_impl] = ACTIONS(1868), - [anon_sym_let] = ACTIONS(1868), - [anon_sym_loop] = ACTIONS(1868), - [anon_sym_match] = ACTIONS(1868), - [anon_sym_mod] = ACTIONS(1868), - [anon_sym_pub] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1868), - [anon_sym_static] = ACTIONS(1868), - [anon_sym_struct] = ACTIONS(1868), - [anon_sym_trait] = ACTIONS(1868), - [anon_sym_type] = ACTIONS(1868), - [anon_sym_union] = ACTIONS(1868), - [anon_sym_unsafe] = ACTIONS(1868), - [anon_sym_use] = ACTIONS(1868), - [anon_sym_while] = ACTIONS(1868), - [anon_sym_extern] = ACTIONS(1868), - [anon_sym_yield] = ACTIONS(1868), - [anon_sym_move] = ACTIONS(1868), - [anon_sym_try] = ACTIONS(1868), - [sym_integer_literal] = ACTIONS(1866), - [aux_sym_string_literal_token1] = ACTIONS(1866), - [sym_char_literal] = ACTIONS(1866), - [anon_sym_true] = ACTIONS(1868), - [anon_sym_false] = ACTIONS(1868), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1868), - [sym_super] = ACTIONS(1868), - [sym_crate] = ACTIONS(1868), - [sym_metavariable] = ACTIONS(1866), - [sym__raw_string_literal_start] = ACTIONS(1866), - [sym_float_literal] = ACTIONS(1866), + [sym_identifier] = ACTIONS(1461), + [anon_sym_LPAREN] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(1459), + [anon_sym_RBRACE] = ACTIONS(1459), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_STAR] = ACTIONS(1461), + [anon_sym_QMARK] = ACTIONS(1459), + [anon_sym_u8] = ACTIONS(1461), + [anon_sym_i8] = ACTIONS(1461), + [anon_sym_u16] = ACTIONS(1461), + [anon_sym_i16] = ACTIONS(1461), + [anon_sym_u32] = ACTIONS(1461), + [anon_sym_i32] = ACTIONS(1461), + [anon_sym_u64] = ACTIONS(1461), + [anon_sym_i64] = ACTIONS(1461), + [anon_sym_u128] = ACTIONS(1461), + [anon_sym_i128] = ACTIONS(1461), + [anon_sym_isize] = ACTIONS(1461), + [anon_sym_usize] = ACTIONS(1461), + [anon_sym_f32] = ACTIONS(1461), + [anon_sym_f64] = ACTIONS(1461), + [anon_sym_bool] = ACTIONS(1461), + [anon_sym_str] = ACTIONS(1461), + [anon_sym_char] = ACTIONS(1461), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_SLASH] = ACTIONS(1461), + [anon_sym_PERCENT] = ACTIONS(1461), + [anon_sym_CARET] = ACTIONS(1461), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_PIPE] = ACTIONS(1461), + [anon_sym_AMP_AMP] = ACTIONS(1459), + [anon_sym_PIPE_PIPE] = ACTIONS(1459), + [anon_sym_LT_LT] = ACTIONS(1461), + [anon_sym_GT_GT] = ACTIONS(1461), + [anon_sym_PLUS_EQ] = ACTIONS(1459), + [anon_sym_DASH_EQ] = ACTIONS(1459), + [anon_sym_STAR_EQ] = ACTIONS(1459), + [anon_sym_SLASH_EQ] = ACTIONS(1459), + [anon_sym_PERCENT_EQ] = ACTIONS(1459), + [anon_sym_CARET_EQ] = ACTIONS(1459), + [anon_sym_AMP_EQ] = ACTIONS(1459), + [anon_sym_PIPE_EQ] = ACTIONS(1459), + [anon_sym_LT_LT_EQ] = ACTIONS(1459), + [anon_sym_GT_GT_EQ] = ACTIONS(1459), + [anon_sym_EQ] = ACTIONS(1461), + [anon_sym_EQ_EQ] = ACTIONS(1459), + [anon_sym_BANG_EQ] = ACTIONS(1459), + [anon_sym_GT] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(1461), + [anon_sym_GT_EQ] = ACTIONS(1459), + [anon_sym_LT_EQ] = ACTIONS(1459), + [anon_sym__] = ACTIONS(1461), + [anon_sym_DOT] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(1461), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1459), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1459), + [anon_sym_COMMA] = ACTIONS(1459), + [anon_sym_COLON_COLON] = ACTIONS(1459), + [anon_sym_POUND] = ACTIONS(1459), + [anon_sym_as] = ACTIONS(1461), + [anon_sym_const] = ACTIONS(1461), + [anon_sym_default] = ACTIONS(1461), + [anon_sym_gen] = ACTIONS(1461), + [anon_sym_union] = ACTIONS(1461), + [anon_sym_ref] = ACTIONS(1461), + [sym_mutable_specifier] = ACTIONS(1461), + [sym_integer_literal] = ACTIONS(1459), + [aux_sym_string_literal_token1] = ACTIONS(1459), + [sym_char_literal] = ACTIONS(1459), + [anon_sym_true] = ACTIONS(1461), + [anon_sym_false] = ACTIONS(1461), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1461), + [sym_super] = ACTIONS(1461), + [sym_crate] = ACTIONS(1461), + [sym_metavariable] = ACTIONS(1459), + [sym__raw_string_literal_start] = ACTIONS(1459), + [sym_float_literal] = ACTIONS(1459), }, [STATE(511)] = { [sym_line_comment] = STATE(511), [sym_block_comment] = STATE(511), - [ts_builtin_sym_end] = ACTIONS(1870), - [sym_identifier] = ACTIONS(1872), - [anon_sym_SEMI] = ACTIONS(1870), - [anon_sym_macro_rules_BANG] = ACTIONS(1870), - [anon_sym_LPAREN] = ACTIONS(1870), - [anon_sym_LBRACK] = ACTIONS(1870), - [anon_sym_LBRACE] = ACTIONS(1870), - [anon_sym_RBRACE] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1870), - [anon_sym_u8] = ACTIONS(1872), - [anon_sym_i8] = ACTIONS(1872), - [anon_sym_u16] = ACTIONS(1872), - [anon_sym_i16] = ACTIONS(1872), - [anon_sym_u32] = ACTIONS(1872), - [anon_sym_i32] = ACTIONS(1872), - [anon_sym_u64] = ACTIONS(1872), - [anon_sym_i64] = ACTIONS(1872), - [anon_sym_u128] = ACTIONS(1872), - [anon_sym_i128] = ACTIONS(1872), - [anon_sym_isize] = ACTIONS(1872), - [anon_sym_usize] = ACTIONS(1872), - [anon_sym_f32] = ACTIONS(1872), - [anon_sym_f64] = ACTIONS(1872), - [anon_sym_bool] = ACTIONS(1872), - [anon_sym_str] = ACTIONS(1872), - [anon_sym_char] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_AMP] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1870), - [anon_sym_LT] = ACTIONS(1870), - [anon_sym_DOT_DOT] = ACTIONS(1870), - [anon_sym_COLON_COLON] = ACTIONS(1870), - [anon_sym_POUND] = ACTIONS(1870), - [anon_sym_SQUOTE] = ACTIONS(1872), - [anon_sym_async] = ACTIONS(1872), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_const] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1872), - [anon_sym_default] = ACTIONS(1872), - [anon_sym_enum] = ACTIONS(1872), - [anon_sym_fn] = ACTIONS(1872), - [anon_sym_for] = ACTIONS(1872), - [anon_sym_gen] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(1872), - [anon_sym_impl] = ACTIONS(1872), - [anon_sym_let] = ACTIONS(1872), - [anon_sym_loop] = ACTIONS(1872), - [anon_sym_match] = ACTIONS(1872), - [anon_sym_mod] = ACTIONS(1872), - [anon_sym_pub] = ACTIONS(1872), - [anon_sym_return] = ACTIONS(1872), - [anon_sym_static] = ACTIONS(1872), - [anon_sym_struct] = ACTIONS(1872), - [anon_sym_trait] = ACTIONS(1872), - [anon_sym_type] = ACTIONS(1872), - [anon_sym_union] = ACTIONS(1872), - [anon_sym_unsafe] = ACTIONS(1872), - [anon_sym_use] = ACTIONS(1872), - [anon_sym_while] = ACTIONS(1872), - [anon_sym_extern] = ACTIONS(1872), - [anon_sym_yield] = ACTIONS(1872), - [anon_sym_move] = ACTIONS(1872), - [anon_sym_try] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(1870), - [aux_sym_string_literal_token1] = ACTIONS(1870), - [sym_char_literal] = ACTIONS(1870), - [anon_sym_true] = ACTIONS(1872), - [anon_sym_false] = ACTIONS(1872), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1872), - [sym_super] = ACTIONS(1872), - [sym_crate] = ACTIONS(1872), - [sym_metavariable] = ACTIONS(1870), - [sym__raw_string_literal_start] = ACTIONS(1870), - [sym_float_literal] = ACTIONS(1870), + [sym_identifier] = ACTIONS(1385), + [anon_sym_LPAREN] = ACTIONS(1383), + [anon_sym_LBRACK] = ACTIONS(1383), + [anon_sym_RBRACE] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1385), + [anon_sym_STAR] = ACTIONS(1385), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_u8] = ACTIONS(1385), + [anon_sym_i8] = ACTIONS(1385), + [anon_sym_u16] = ACTIONS(1385), + [anon_sym_i16] = ACTIONS(1385), + [anon_sym_u32] = ACTIONS(1385), + [anon_sym_i32] = ACTIONS(1385), + [anon_sym_u64] = ACTIONS(1385), + [anon_sym_i64] = ACTIONS(1385), + [anon_sym_u128] = ACTIONS(1385), + [anon_sym_i128] = ACTIONS(1385), + [anon_sym_isize] = ACTIONS(1385), + [anon_sym_usize] = ACTIONS(1385), + [anon_sym_f32] = ACTIONS(1385), + [anon_sym_f64] = ACTIONS(1385), + [anon_sym_bool] = ACTIONS(1385), + [anon_sym_str] = ACTIONS(1385), + [anon_sym_char] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1385), + [anon_sym_SLASH] = ACTIONS(1385), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_CARET] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1385), + [anon_sym_PIPE] = ACTIONS(1385), + [anon_sym_AMP_AMP] = ACTIONS(1383), + [anon_sym_PIPE_PIPE] = ACTIONS(1383), + [anon_sym_LT_LT] = ACTIONS(1385), + [anon_sym_GT_GT] = ACTIONS(1385), + [anon_sym_PLUS_EQ] = ACTIONS(1383), + [anon_sym_DASH_EQ] = ACTIONS(1383), + [anon_sym_STAR_EQ] = ACTIONS(1383), + [anon_sym_SLASH_EQ] = ACTIONS(1383), + [anon_sym_PERCENT_EQ] = ACTIONS(1383), + [anon_sym_CARET_EQ] = ACTIONS(1383), + [anon_sym_AMP_EQ] = ACTIONS(1383), + [anon_sym_PIPE_EQ] = ACTIONS(1383), + [anon_sym_LT_LT_EQ] = ACTIONS(1383), + [anon_sym_GT_GT_EQ] = ACTIONS(1383), + [anon_sym_EQ] = ACTIONS(1385), + [anon_sym_EQ_EQ] = ACTIONS(1383), + [anon_sym_BANG_EQ] = ACTIONS(1383), + [anon_sym_GT] = ACTIONS(1385), + [anon_sym_LT] = ACTIONS(1385), + [anon_sym_GT_EQ] = ACTIONS(1383), + [anon_sym_LT_EQ] = ACTIONS(1383), + [anon_sym__] = ACTIONS(1385), + [anon_sym_DOT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1383), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1383), + [anon_sym_COMMA] = ACTIONS(1383), + [anon_sym_COLON_COLON] = ACTIONS(1383), + [anon_sym_POUND] = ACTIONS(1383), + [anon_sym_as] = ACTIONS(1385), + [anon_sym_const] = ACTIONS(1385), + [anon_sym_default] = ACTIONS(1385), + [anon_sym_gen] = ACTIONS(1385), + [anon_sym_union] = ACTIONS(1385), + [anon_sym_ref] = ACTIONS(1385), + [sym_mutable_specifier] = ACTIONS(1385), + [sym_integer_literal] = ACTIONS(1383), + [aux_sym_string_literal_token1] = ACTIONS(1383), + [sym_char_literal] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(1385), + [anon_sym_false] = ACTIONS(1385), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1385), + [sym_super] = ACTIONS(1385), + [sym_crate] = ACTIONS(1385), + [sym_metavariable] = ACTIONS(1383), + [sym__raw_string_literal_start] = ACTIONS(1383), + [sym_float_literal] = ACTIONS(1383), }, [STATE(512)] = { [sym_line_comment] = STATE(512), [sym_block_comment] = STATE(512), - [ts_builtin_sym_end] = ACTIONS(1874), - [sym_identifier] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_macro_rules_BANG] = ACTIONS(1874), - [anon_sym_LPAREN] = ACTIONS(1874), - [anon_sym_LBRACK] = ACTIONS(1874), - [anon_sym_LBRACE] = ACTIONS(1874), - [anon_sym_RBRACE] = ACTIONS(1874), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_u8] = ACTIONS(1876), - [anon_sym_i8] = ACTIONS(1876), - [anon_sym_u16] = ACTIONS(1876), - [anon_sym_i16] = ACTIONS(1876), - [anon_sym_u32] = ACTIONS(1876), - [anon_sym_i32] = ACTIONS(1876), - [anon_sym_u64] = ACTIONS(1876), - [anon_sym_i64] = ACTIONS(1876), - [anon_sym_u128] = ACTIONS(1876), - [anon_sym_i128] = ACTIONS(1876), - [anon_sym_isize] = ACTIONS(1876), - [anon_sym_usize] = ACTIONS(1876), - [anon_sym_f32] = ACTIONS(1876), - [anon_sym_f64] = ACTIONS(1876), - [anon_sym_bool] = ACTIONS(1876), - [anon_sym_str] = ACTIONS(1876), - [anon_sym_char] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1874), - [anon_sym_BANG] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym_PIPE] = ACTIONS(1874), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_DOT_DOT] = ACTIONS(1874), - [anon_sym_COLON_COLON] = ACTIONS(1874), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_SQUOTE] = ACTIONS(1876), - [anon_sym_async] = ACTIONS(1876), - [anon_sym_break] = ACTIONS(1876), - [anon_sym_const] = ACTIONS(1876), - [anon_sym_continue] = ACTIONS(1876), - [anon_sym_default] = ACTIONS(1876), - [anon_sym_enum] = ACTIONS(1876), - [anon_sym_fn] = ACTIONS(1876), - [anon_sym_for] = ACTIONS(1876), - [anon_sym_gen] = ACTIONS(1876), - [anon_sym_if] = ACTIONS(1876), - [anon_sym_impl] = ACTIONS(1876), - [anon_sym_let] = ACTIONS(1876), - [anon_sym_loop] = ACTIONS(1876), - [anon_sym_match] = ACTIONS(1876), - [anon_sym_mod] = ACTIONS(1876), - [anon_sym_pub] = ACTIONS(1876), - [anon_sym_return] = ACTIONS(1876), - [anon_sym_static] = ACTIONS(1876), - [anon_sym_struct] = ACTIONS(1876), - [anon_sym_trait] = ACTIONS(1876), - [anon_sym_type] = ACTIONS(1876), - [anon_sym_union] = ACTIONS(1876), - [anon_sym_unsafe] = ACTIONS(1876), - [anon_sym_use] = ACTIONS(1876), - [anon_sym_while] = ACTIONS(1876), - [anon_sym_extern] = ACTIONS(1876), - [anon_sym_yield] = ACTIONS(1876), - [anon_sym_move] = ACTIONS(1876), - [anon_sym_try] = ACTIONS(1876), - [sym_integer_literal] = ACTIONS(1874), - [aux_sym_string_literal_token1] = ACTIONS(1874), - [sym_char_literal] = ACTIONS(1874), - [anon_sym_true] = ACTIONS(1876), - [anon_sym_false] = ACTIONS(1876), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1876), - [sym_super] = ACTIONS(1876), - [sym_crate] = ACTIONS(1876), - [sym_metavariable] = ACTIONS(1874), - [sym__raw_string_literal_start] = ACTIONS(1874), - [sym_float_literal] = ACTIONS(1874), + [sym_identifier] = ACTIONS(1423), + [anon_sym_LPAREN] = ACTIONS(1421), + [anon_sym_LBRACK] = ACTIONS(1421), + [anon_sym_RBRACE] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1423), + [anon_sym_QMARK] = ACTIONS(1421), + [anon_sym_u8] = ACTIONS(1423), + [anon_sym_i8] = ACTIONS(1423), + [anon_sym_u16] = ACTIONS(1423), + [anon_sym_i16] = ACTIONS(1423), + [anon_sym_u32] = ACTIONS(1423), + [anon_sym_i32] = ACTIONS(1423), + [anon_sym_u64] = ACTIONS(1423), + [anon_sym_i64] = ACTIONS(1423), + [anon_sym_u128] = ACTIONS(1423), + [anon_sym_i128] = ACTIONS(1423), + [anon_sym_isize] = ACTIONS(1423), + [anon_sym_usize] = ACTIONS(1423), + [anon_sym_f32] = ACTIONS(1423), + [anon_sym_f64] = ACTIONS(1423), + [anon_sym_bool] = ACTIONS(1423), + [anon_sym_str] = ACTIONS(1423), + [anon_sym_char] = ACTIONS(1423), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_SLASH] = ACTIONS(1423), + [anon_sym_PERCENT] = ACTIONS(1423), + [anon_sym_CARET] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(1423), + [anon_sym_PIPE] = ACTIONS(1423), + [anon_sym_AMP_AMP] = ACTIONS(1421), + [anon_sym_PIPE_PIPE] = ACTIONS(1421), + [anon_sym_LT_LT] = ACTIONS(1423), + [anon_sym_GT_GT] = ACTIONS(1423), + [anon_sym_PLUS_EQ] = ACTIONS(1421), + [anon_sym_DASH_EQ] = ACTIONS(1421), + [anon_sym_STAR_EQ] = ACTIONS(1421), + [anon_sym_SLASH_EQ] = ACTIONS(1421), + [anon_sym_PERCENT_EQ] = ACTIONS(1421), + [anon_sym_CARET_EQ] = ACTIONS(1421), + [anon_sym_AMP_EQ] = ACTIONS(1421), + [anon_sym_PIPE_EQ] = ACTIONS(1421), + [anon_sym_LT_LT_EQ] = ACTIONS(1421), + [anon_sym_GT_GT_EQ] = ACTIONS(1421), + [anon_sym_EQ] = ACTIONS(1423), + [anon_sym_EQ_EQ] = ACTIONS(1421), + [anon_sym_BANG_EQ] = ACTIONS(1421), + [anon_sym_GT] = ACTIONS(1423), + [anon_sym_LT] = ACTIONS(1423), + [anon_sym_GT_EQ] = ACTIONS(1421), + [anon_sym_LT_EQ] = ACTIONS(1421), + [anon_sym__] = ACTIONS(1423), + [anon_sym_DOT] = ACTIONS(1423), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1421), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1421), + [anon_sym_COMMA] = ACTIONS(1421), + [anon_sym_COLON_COLON] = ACTIONS(1421), + [anon_sym_POUND] = ACTIONS(1421), + [anon_sym_as] = ACTIONS(1423), + [anon_sym_const] = ACTIONS(1423), + [anon_sym_default] = ACTIONS(1423), + [anon_sym_gen] = ACTIONS(1423), + [anon_sym_union] = ACTIONS(1423), + [anon_sym_ref] = ACTIONS(1423), + [sym_mutable_specifier] = ACTIONS(1423), + [sym_integer_literal] = ACTIONS(1421), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1421), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1423), + [sym_super] = ACTIONS(1423), + [sym_crate] = ACTIONS(1423), + [sym_metavariable] = ACTIONS(1421), + [sym__raw_string_literal_start] = ACTIONS(1421), + [sym_float_literal] = ACTIONS(1421), }, [STATE(513)] = { [sym_line_comment] = STATE(513), [sym_block_comment] = STATE(513), - [ts_builtin_sym_end] = ACTIONS(1878), - [sym_identifier] = ACTIONS(1880), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_macro_rules_BANG] = ACTIONS(1878), - [anon_sym_LPAREN] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_RBRACE] = ACTIONS(1878), - [anon_sym_STAR] = ACTIONS(1878), - [anon_sym_u8] = ACTIONS(1880), - [anon_sym_i8] = ACTIONS(1880), - [anon_sym_u16] = ACTIONS(1880), - [anon_sym_i16] = ACTIONS(1880), - [anon_sym_u32] = ACTIONS(1880), - [anon_sym_i32] = ACTIONS(1880), - [anon_sym_u64] = ACTIONS(1880), - [anon_sym_i64] = ACTIONS(1880), - [anon_sym_u128] = ACTIONS(1880), - [anon_sym_i128] = ACTIONS(1880), - [anon_sym_isize] = ACTIONS(1880), - [anon_sym_usize] = ACTIONS(1880), - [anon_sym_f32] = ACTIONS(1880), - [anon_sym_f64] = ACTIONS(1880), - [anon_sym_bool] = ACTIONS(1880), - [anon_sym_str] = ACTIONS(1880), - [anon_sym_char] = ACTIONS(1880), - [anon_sym_DASH] = ACTIONS(1878), - [anon_sym_BANG] = ACTIONS(1878), - [anon_sym_AMP] = ACTIONS(1878), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_LT] = ACTIONS(1878), - [anon_sym_DOT_DOT] = ACTIONS(1878), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_POUND] = ACTIONS(1878), - [anon_sym_SQUOTE] = ACTIONS(1880), - [anon_sym_async] = ACTIONS(1880), - [anon_sym_break] = ACTIONS(1880), - [anon_sym_const] = ACTIONS(1880), - [anon_sym_continue] = ACTIONS(1880), - [anon_sym_default] = ACTIONS(1880), - [anon_sym_enum] = ACTIONS(1880), - [anon_sym_fn] = ACTIONS(1880), - [anon_sym_for] = ACTIONS(1880), - [anon_sym_gen] = ACTIONS(1880), - [anon_sym_if] = ACTIONS(1880), - [anon_sym_impl] = ACTIONS(1880), - [anon_sym_let] = ACTIONS(1880), - [anon_sym_loop] = ACTIONS(1880), - [anon_sym_match] = ACTIONS(1880), - [anon_sym_mod] = ACTIONS(1880), - [anon_sym_pub] = ACTIONS(1880), - [anon_sym_return] = ACTIONS(1880), - [anon_sym_static] = ACTIONS(1880), - [anon_sym_struct] = ACTIONS(1880), - [anon_sym_trait] = ACTIONS(1880), - [anon_sym_type] = ACTIONS(1880), - [anon_sym_union] = ACTIONS(1880), - [anon_sym_unsafe] = ACTIONS(1880), - [anon_sym_use] = ACTIONS(1880), - [anon_sym_while] = ACTIONS(1880), - [anon_sym_extern] = ACTIONS(1880), - [anon_sym_yield] = ACTIONS(1880), - [anon_sym_move] = ACTIONS(1880), - [anon_sym_try] = ACTIONS(1880), - [sym_integer_literal] = ACTIONS(1878), - [aux_sym_string_literal_token1] = ACTIONS(1878), - [sym_char_literal] = ACTIONS(1878), - [anon_sym_true] = ACTIONS(1880), - [anon_sym_false] = ACTIONS(1880), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1880), - [sym_super] = ACTIONS(1880), - [sym_crate] = ACTIONS(1880), - [sym_metavariable] = ACTIONS(1878), - [sym__raw_string_literal_start] = ACTIONS(1878), - [sym_float_literal] = ACTIONS(1878), - }, - [STATE(514)] = { - [sym_line_comment] = STATE(514), - [sym_block_comment] = STATE(514), - [ts_builtin_sym_end] = ACTIONS(1882), - [sym_identifier] = ACTIONS(1884), - [anon_sym_SEMI] = ACTIONS(1882), - [anon_sym_macro_rules_BANG] = ACTIONS(1882), - [anon_sym_LPAREN] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_LBRACE] = ACTIONS(1882), - [anon_sym_RBRACE] = ACTIONS(1882), - [anon_sym_STAR] = ACTIONS(1882), - [anon_sym_u8] = ACTIONS(1884), - [anon_sym_i8] = ACTIONS(1884), - [anon_sym_u16] = ACTIONS(1884), - [anon_sym_i16] = ACTIONS(1884), - [anon_sym_u32] = ACTIONS(1884), - [anon_sym_i32] = ACTIONS(1884), - [anon_sym_u64] = ACTIONS(1884), - [anon_sym_i64] = ACTIONS(1884), - [anon_sym_u128] = ACTIONS(1884), - [anon_sym_i128] = ACTIONS(1884), - [anon_sym_isize] = ACTIONS(1884), - [anon_sym_usize] = ACTIONS(1884), - [anon_sym_f32] = ACTIONS(1884), - [anon_sym_f64] = ACTIONS(1884), - [anon_sym_bool] = ACTIONS(1884), - [anon_sym_str] = ACTIONS(1884), - [anon_sym_char] = ACTIONS(1884), - [anon_sym_DASH] = ACTIONS(1882), - [anon_sym_BANG] = ACTIONS(1882), - [anon_sym_AMP] = ACTIONS(1882), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_LT] = ACTIONS(1882), - [anon_sym_DOT_DOT] = ACTIONS(1882), - [anon_sym_COLON_COLON] = ACTIONS(1882), - [anon_sym_POUND] = ACTIONS(1882), - [anon_sym_SQUOTE] = ACTIONS(1884), - [anon_sym_async] = ACTIONS(1884), - [anon_sym_break] = ACTIONS(1884), - [anon_sym_const] = ACTIONS(1884), - [anon_sym_continue] = ACTIONS(1884), - [anon_sym_default] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1884), - [anon_sym_fn] = ACTIONS(1884), - [anon_sym_for] = ACTIONS(1884), - [anon_sym_gen] = ACTIONS(1884), - [anon_sym_if] = ACTIONS(1884), - [anon_sym_impl] = ACTIONS(1884), - [anon_sym_let] = ACTIONS(1884), - [anon_sym_loop] = ACTIONS(1884), - [anon_sym_match] = ACTIONS(1884), - [anon_sym_mod] = ACTIONS(1884), - [anon_sym_pub] = ACTIONS(1884), - [anon_sym_return] = ACTIONS(1884), - [anon_sym_static] = ACTIONS(1884), - [anon_sym_struct] = ACTIONS(1884), - [anon_sym_trait] = ACTIONS(1884), - [anon_sym_type] = ACTIONS(1884), - [anon_sym_union] = ACTIONS(1884), - [anon_sym_unsafe] = ACTIONS(1884), - [anon_sym_use] = ACTIONS(1884), - [anon_sym_while] = ACTIONS(1884), - [anon_sym_extern] = ACTIONS(1884), - [anon_sym_yield] = ACTIONS(1884), - [anon_sym_move] = ACTIONS(1884), - [anon_sym_try] = ACTIONS(1884), - [sym_integer_literal] = ACTIONS(1882), - [aux_sym_string_literal_token1] = ACTIONS(1882), - [sym_char_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(1884), - [anon_sym_false] = ACTIONS(1884), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1884), - [sym_super] = ACTIONS(1884), - [sym_crate] = ACTIONS(1884), - [sym_metavariable] = ACTIONS(1882), - [sym__raw_string_literal_start] = ACTIONS(1882), - [sym_float_literal] = ACTIONS(1882), - }, - [STATE(515)] = { - [sym_line_comment] = STATE(515), - [sym_block_comment] = STATE(515), - [ts_builtin_sym_end] = ACTIONS(1886), - [sym_identifier] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_macro_rules_BANG] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1886), - [anon_sym_LBRACK] = ACTIONS(1886), - [anon_sym_LBRACE] = ACTIONS(1886), - [anon_sym_RBRACE] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(1886), - [anon_sym_u8] = ACTIONS(1888), - [anon_sym_i8] = ACTIONS(1888), - [anon_sym_u16] = ACTIONS(1888), - [anon_sym_i16] = ACTIONS(1888), - [anon_sym_u32] = ACTIONS(1888), - [anon_sym_i32] = ACTIONS(1888), - [anon_sym_u64] = ACTIONS(1888), - [anon_sym_i64] = ACTIONS(1888), - [anon_sym_u128] = ACTIONS(1888), - [anon_sym_i128] = ACTIONS(1888), - [anon_sym_isize] = ACTIONS(1888), - [anon_sym_usize] = ACTIONS(1888), - [anon_sym_f32] = ACTIONS(1888), - [anon_sym_f64] = ACTIONS(1888), - [anon_sym_bool] = ACTIONS(1888), - [anon_sym_str] = ACTIONS(1888), - [anon_sym_char] = ACTIONS(1888), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_BANG] = ACTIONS(1886), - [anon_sym_AMP] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1886), - [anon_sym_DOT_DOT] = ACTIONS(1886), - [anon_sym_COLON_COLON] = ACTIONS(1886), - [anon_sym_POUND] = ACTIONS(1886), - [anon_sym_SQUOTE] = ACTIONS(1888), - [anon_sym_async] = ACTIONS(1888), - [anon_sym_break] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(1888), - [anon_sym_continue] = ACTIONS(1888), - [anon_sym_default] = ACTIONS(1888), - [anon_sym_enum] = ACTIONS(1888), - [anon_sym_fn] = ACTIONS(1888), - [anon_sym_for] = ACTIONS(1888), - [anon_sym_gen] = ACTIONS(1888), - [anon_sym_if] = ACTIONS(1888), - [anon_sym_impl] = ACTIONS(1888), - [anon_sym_let] = ACTIONS(1888), - [anon_sym_loop] = ACTIONS(1888), - [anon_sym_match] = ACTIONS(1888), - [anon_sym_mod] = ACTIONS(1888), - [anon_sym_pub] = ACTIONS(1888), - [anon_sym_return] = ACTIONS(1888), - [anon_sym_static] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1888), - [anon_sym_trait] = ACTIONS(1888), - [anon_sym_type] = ACTIONS(1888), - [anon_sym_union] = ACTIONS(1888), - [anon_sym_unsafe] = ACTIONS(1888), - [anon_sym_use] = ACTIONS(1888), - [anon_sym_while] = ACTIONS(1888), - [anon_sym_extern] = ACTIONS(1888), - [anon_sym_yield] = ACTIONS(1888), - [anon_sym_move] = ACTIONS(1888), - [anon_sym_try] = ACTIONS(1888), - [sym_integer_literal] = ACTIONS(1886), - [aux_sym_string_literal_token1] = ACTIONS(1886), - [sym_char_literal] = ACTIONS(1886), - [anon_sym_true] = ACTIONS(1888), - [anon_sym_false] = ACTIONS(1888), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1888), - [sym_super] = ACTIONS(1888), - [sym_crate] = ACTIONS(1888), - [sym_metavariable] = ACTIONS(1886), - [sym__raw_string_literal_start] = ACTIONS(1886), - [sym_float_literal] = ACTIONS(1886), - }, - [STATE(516)] = { - [sym_line_comment] = STATE(516), - [sym_block_comment] = STATE(516), - [ts_builtin_sym_end] = ACTIONS(1890), - [sym_identifier] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1890), - [anon_sym_macro_rules_BANG] = ACTIONS(1890), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1890), - [anon_sym_LBRACE] = ACTIONS(1890), - [anon_sym_RBRACE] = ACTIONS(1890), - [anon_sym_STAR] = ACTIONS(1890), - [anon_sym_u8] = ACTIONS(1892), - [anon_sym_i8] = ACTIONS(1892), - [anon_sym_u16] = ACTIONS(1892), - [anon_sym_i16] = ACTIONS(1892), - [anon_sym_u32] = ACTIONS(1892), - [anon_sym_i32] = ACTIONS(1892), - [anon_sym_u64] = ACTIONS(1892), - [anon_sym_i64] = ACTIONS(1892), - [anon_sym_u128] = ACTIONS(1892), - [anon_sym_i128] = ACTIONS(1892), - [anon_sym_isize] = ACTIONS(1892), - [anon_sym_usize] = ACTIONS(1892), - [anon_sym_f32] = ACTIONS(1892), - [anon_sym_f64] = ACTIONS(1892), - [anon_sym_bool] = ACTIONS(1892), - [anon_sym_str] = ACTIONS(1892), - [anon_sym_char] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1890), - [anon_sym_AMP] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(1890), - [anon_sym_LT] = ACTIONS(1890), - [anon_sym_DOT_DOT] = ACTIONS(1890), - [anon_sym_COLON_COLON] = ACTIONS(1890), - [anon_sym_POUND] = ACTIONS(1890), - [anon_sym_SQUOTE] = ACTIONS(1892), - [anon_sym_async] = ACTIONS(1892), - [anon_sym_break] = ACTIONS(1892), - [anon_sym_const] = ACTIONS(1892), - [anon_sym_continue] = ACTIONS(1892), - [anon_sym_default] = ACTIONS(1892), - [anon_sym_enum] = ACTIONS(1892), - [anon_sym_fn] = ACTIONS(1892), - [anon_sym_for] = ACTIONS(1892), - [anon_sym_gen] = ACTIONS(1892), - [anon_sym_if] = ACTIONS(1892), - [anon_sym_impl] = ACTIONS(1892), - [anon_sym_let] = ACTIONS(1892), - [anon_sym_loop] = ACTIONS(1892), - [anon_sym_match] = ACTIONS(1892), - [anon_sym_mod] = ACTIONS(1892), - [anon_sym_pub] = ACTIONS(1892), - [anon_sym_return] = ACTIONS(1892), - [anon_sym_static] = ACTIONS(1892), - [anon_sym_struct] = ACTIONS(1892), - [anon_sym_trait] = ACTIONS(1892), - [anon_sym_type] = ACTIONS(1892), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_unsafe] = ACTIONS(1892), - [anon_sym_use] = ACTIONS(1892), - [anon_sym_while] = ACTIONS(1892), - [anon_sym_extern] = ACTIONS(1892), - [anon_sym_yield] = ACTIONS(1892), - [anon_sym_move] = ACTIONS(1892), - [anon_sym_try] = ACTIONS(1892), - [sym_integer_literal] = ACTIONS(1890), - [aux_sym_string_literal_token1] = ACTIONS(1890), - [sym_char_literal] = ACTIONS(1890), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1892), - [sym_super] = ACTIONS(1892), - [sym_crate] = ACTIONS(1892), - [sym_metavariable] = ACTIONS(1890), - [sym__raw_string_literal_start] = ACTIONS(1890), - [sym_float_literal] = ACTIONS(1890), - }, - [STATE(517)] = { - [sym_line_comment] = STATE(517), - [sym_block_comment] = STATE(517), - [ts_builtin_sym_end] = ACTIONS(1894), - [sym_identifier] = ACTIONS(1896), - [anon_sym_SEMI] = ACTIONS(1894), - [anon_sym_macro_rules_BANG] = ACTIONS(1894), - [anon_sym_LPAREN] = ACTIONS(1894), - [anon_sym_LBRACK] = ACTIONS(1894), - [anon_sym_LBRACE] = ACTIONS(1894), - [anon_sym_RBRACE] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1894), - [anon_sym_u8] = ACTIONS(1896), - [anon_sym_i8] = ACTIONS(1896), - [anon_sym_u16] = ACTIONS(1896), - [anon_sym_i16] = ACTIONS(1896), - [anon_sym_u32] = ACTIONS(1896), - [anon_sym_i32] = ACTIONS(1896), - [anon_sym_u64] = ACTIONS(1896), - [anon_sym_i64] = ACTIONS(1896), - [anon_sym_u128] = ACTIONS(1896), - [anon_sym_i128] = ACTIONS(1896), - [anon_sym_isize] = ACTIONS(1896), - [anon_sym_usize] = ACTIONS(1896), - [anon_sym_f32] = ACTIONS(1896), - [anon_sym_f64] = ACTIONS(1896), - [anon_sym_bool] = ACTIONS(1896), - [anon_sym_str] = ACTIONS(1896), - [anon_sym_char] = ACTIONS(1896), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_BANG] = ACTIONS(1894), - [anon_sym_AMP] = ACTIONS(1894), - [anon_sym_PIPE] = ACTIONS(1894), - [anon_sym_LT] = ACTIONS(1894), - [anon_sym_DOT_DOT] = ACTIONS(1894), - [anon_sym_COLON_COLON] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_async] = ACTIONS(1896), - [anon_sym_break] = ACTIONS(1896), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_continue] = ACTIONS(1896), - [anon_sym_default] = ACTIONS(1896), - [anon_sym_enum] = ACTIONS(1896), - [anon_sym_fn] = ACTIONS(1896), - [anon_sym_for] = ACTIONS(1896), - [anon_sym_gen] = ACTIONS(1896), - [anon_sym_if] = ACTIONS(1896), - [anon_sym_impl] = ACTIONS(1896), - [anon_sym_let] = ACTIONS(1896), - [anon_sym_loop] = ACTIONS(1896), - [anon_sym_match] = ACTIONS(1896), - [anon_sym_mod] = ACTIONS(1896), - [anon_sym_pub] = ACTIONS(1896), - [anon_sym_return] = ACTIONS(1896), - [anon_sym_static] = ACTIONS(1896), - [anon_sym_struct] = ACTIONS(1896), - [anon_sym_trait] = ACTIONS(1896), - [anon_sym_type] = ACTIONS(1896), - [anon_sym_union] = ACTIONS(1896), - [anon_sym_unsafe] = ACTIONS(1896), - [anon_sym_use] = ACTIONS(1896), - [anon_sym_while] = ACTIONS(1896), - [anon_sym_extern] = ACTIONS(1896), - [anon_sym_yield] = ACTIONS(1896), - [anon_sym_move] = ACTIONS(1896), - [anon_sym_try] = ACTIONS(1896), - [sym_integer_literal] = ACTIONS(1894), - [aux_sym_string_literal_token1] = ACTIONS(1894), - [sym_char_literal] = ACTIONS(1894), - [anon_sym_true] = ACTIONS(1896), - [anon_sym_false] = ACTIONS(1896), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1896), - [sym_super] = ACTIONS(1896), - [sym_crate] = ACTIONS(1896), - [sym_metavariable] = ACTIONS(1894), - [sym__raw_string_literal_start] = ACTIONS(1894), - [sym_float_literal] = ACTIONS(1894), - }, - [STATE(518)] = { - [sym_line_comment] = STATE(518), - [sym_block_comment] = STATE(518), + [sym_identifier] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_LBRACK] = ACTIONS(1433), + [anon_sym_RBRACE] = ACTIONS(1433), + [anon_sym_PLUS] = ACTIONS(1435), + [anon_sym_STAR] = ACTIONS(1435), + [anon_sym_QMARK] = ACTIONS(1433), + [anon_sym_u8] = ACTIONS(1435), + [anon_sym_i8] = ACTIONS(1435), + [anon_sym_u16] = ACTIONS(1435), + [anon_sym_i16] = ACTIONS(1435), + [anon_sym_u32] = ACTIONS(1435), + [anon_sym_i32] = ACTIONS(1435), + [anon_sym_u64] = ACTIONS(1435), + [anon_sym_i64] = ACTIONS(1435), + [anon_sym_u128] = ACTIONS(1435), + [anon_sym_i128] = ACTIONS(1435), + [anon_sym_isize] = ACTIONS(1435), + [anon_sym_usize] = ACTIONS(1435), + [anon_sym_f32] = ACTIONS(1435), + [anon_sym_f64] = ACTIONS(1435), + [anon_sym_bool] = ACTIONS(1435), + [anon_sym_str] = ACTIONS(1435), + [anon_sym_char] = ACTIONS(1435), + [anon_sym_DASH] = ACTIONS(1435), + [anon_sym_SLASH] = ACTIONS(1435), + [anon_sym_PERCENT] = ACTIONS(1435), + [anon_sym_CARET] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE] = ACTIONS(1435), + [anon_sym_AMP_AMP] = ACTIONS(1433), + [anon_sym_PIPE_PIPE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(1435), + [anon_sym_GT_GT] = ACTIONS(1435), + [anon_sym_PLUS_EQ] = ACTIONS(1433), + [anon_sym_DASH_EQ] = ACTIONS(1433), + [anon_sym_STAR_EQ] = ACTIONS(1433), + [anon_sym_SLASH_EQ] = ACTIONS(1433), + [anon_sym_PERCENT_EQ] = ACTIONS(1433), + [anon_sym_CARET_EQ] = ACTIONS(1433), + [anon_sym_AMP_EQ] = ACTIONS(1433), + [anon_sym_PIPE_EQ] = ACTIONS(1433), + [anon_sym_LT_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_GT_EQ] = ACTIONS(1433), + [anon_sym_EQ] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1433), + [anon_sym_BANG_EQ] = ACTIONS(1433), + [anon_sym_GT] = ACTIONS(1435), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1433), + [anon_sym_LT_EQ] = ACTIONS(1433), + [anon_sym__] = ACTIONS(1435), + [anon_sym_DOT] = ACTIONS(1435), + [anon_sym_DOT_DOT] = ACTIONS(1435), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1433), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1433), + [anon_sym_COMMA] = ACTIONS(1433), + [anon_sym_COLON_COLON] = ACTIONS(1433), + [anon_sym_POUND] = ACTIONS(1433), + [anon_sym_as] = ACTIONS(1435), + [anon_sym_const] = ACTIONS(1435), + [anon_sym_default] = ACTIONS(1435), + [anon_sym_gen] = ACTIONS(1435), + [anon_sym_union] = ACTIONS(1435), + [anon_sym_ref] = ACTIONS(1435), + [sym_mutable_specifier] = ACTIONS(1435), + [sym_integer_literal] = ACTIONS(1433), + [aux_sym_string_literal_token1] = ACTIONS(1433), + [sym_char_literal] = ACTIONS(1433), + [anon_sym_true] = ACTIONS(1435), + [anon_sym_false] = ACTIONS(1435), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1435), + [sym_super] = ACTIONS(1435), + [sym_crate] = ACTIONS(1435), + [sym_metavariable] = ACTIONS(1433), + [sym__raw_string_literal_start] = ACTIONS(1433), + [sym_float_literal] = ACTIONS(1433), + }, + [STATE(514)] = { + [sym_line_comment] = STATE(514), + [sym_block_comment] = STATE(514), + [sym_identifier] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_LBRACK] = ACTIONS(1357), + [anon_sym_RBRACE] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1359), + [anon_sym_QMARK] = ACTIONS(1357), + [anon_sym_u8] = ACTIONS(1359), + [anon_sym_i8] = ACTIONS(1359), + [anon_sym_u16] = ACTIONS(1359), + [anon_sym_i16] = ACTIONS(1359), + [anon_sym_u32] = ACTIONS(1359), + [anon_sym_i32] = ACTIONS(1359), + [anon_sym_u64] = ACTIONS(1359), + [anon_sym_i64] = ACTIONS(1359), + [anon_sym_u128] = ACTIONS(1359), + [anon_sym_i128] = ACTIONS(1359), + [anon_sym_isize] = ACTIONS(1359), + [anon_sym_usize] = ACTIONS(1359), + [anon_sym_f32] = ACTIONS(1359), + [anon_sym_f64] = ACTIONS(1359), + [anon_sym_bool] = ACTIONS(1359), + [anon_sym_str] = ACTIONS(1359), + [anon_sym_char] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_SLASH] = ACTIONS(1359), + [anon_sym_PERCENT] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_AMP] = ACTIONS(1359), + [anon_sym_PIPE] = ACTIONS(1359), + [anon_sym_AMP_AMP] = ACTIONS(1357), + [anon_sym_PIPE_PIPE] = ACTIONS(1357), + [anon_sym_LT_LT] = ACTIONS(1359), + [anon_sym_GT_GT] = ACTIONS(1359), + [anon_sym_PLUS_EQ] = ACTIONS(1357), + [anon_sym_DASH_EQ] = ACTIONS(1357), + [anon_sym_STAR_EQ] = ACTIONS(1357), + [anon_sym_SLASH_EQ] = ACTIONS(1357), + [anon_sym_PERCENT_EQ] = ACTIONS(1357), + [anon_sym_CARET_EQ] = ACTIONS(1357), + [anon_sym_AMP_EQ] = ACTIONS(1357), + [anon_sym_PIPE_EQ] = ACTIONS(1357), + [anon_sym_LT_LT_EQ] = ACTIONS(1357), + [anon_sym_GT_GT_EQ] = ACTIONS(1357), + [anon_sym_EQ] = ACTIONS(1359), + [anon_sym_EQ_EQ] = ACTIONS(1357), + [anon_sym_BANG_EQ] = ACTIONS(1357), + [anon_sym_GT] = ACTIONS(1359), + [anon_sym_LT] = ACTIONS(1359), + [anon_sym_GT_EQ] = ACTIONS(1357), + [anon_sym_LT_EQ] = ACTIONS(1357), + [anon_sym__] = ACTIONS(1359), + [anon_sym_DOT] = ACTIONS(1359), + [anon_sym_DOT_DOT] = ACTIONS(1359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1357), + [anon_sym_COMMA] = ACTIONS(1357), + [anon_sym_COLON_COLON] = ACTIONS(1357), + [anon_sym_POUND] = ACTIONS(1357), + [anon_sym_as] = ACTIONS(1359), + [anon_sym_const] = ACTIONS(1359), + [anon_sym_default] = ACTIONS(1359), + [anon_sym_gen] = ACTIONS(1359), + [anon_sym_union] = ACTIONS(1359), + [anon_sym_ref] = ACTIONS(1359), + [sym_mutable_specifier] = ACTIONS(1359), + [sym_integer_literal] = ACTIONS(1357), + [aux_sym_string_literal_token1] = ACTIONS(1357), + [sym_char_literal] = ACTIONS(1357), + [anon_sym_true] = ACTIONS(1359), + [anon_sym_false] = ACTIONS(1359), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1359), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1357), + [sym__raw_string_literal_start] = ACTIONS(1357), + [sym_float_literal] = ACTIONS(1357), + }, + [STATE(515)] = { + [sym_line_comment] = STATE(515), + [sym_block_comment] = STATE(515), + [sym_identifier] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1417), + [anon_sym_LBRACK] = ACTIONS(1417), + [anon_sym_RBRACE] = ACTIONS(1417), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_QMARK] = ACTIONS(1417), + [anon_sym_u8] = ACTIONS(1419), + [anon_sym_i8] = ACTIONS(1419), + [anon_sym_u16] = ACTIONS(1419), + [anon_sym_i16] = ACTIONS(1419), + [anon_sym_u32] = ACTIONS(1419), + [anon_sym_i32] = ACTIONS(1419), + [anon_sym_u64] = ACTIONS(1419), + [anon_sym_i64] = ACTIONS(1419), + [anon_sym_u128] = ACTIONS(1419), + [anon_sym_i128] = ACTIONS(1419), + [anon_sym_isize] = ACTIONS(1419), + [anon_sym_usize] = ACTIONS(1419), + [anon_sym_f32] = ACTIONS(1419), + [anon_sym_f64] = ACTIONS(1419), + [anon_sym_bool] = ACTIONS(1419), + [anon_sym_str] = ACTIONS(1419), + [anon_sym_char] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1419), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_CARET] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1419), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_AMP_AMP] = ACTIONS(1417), + [anon_sym_PIPE_PIPE] = ACTIONS(1417), + [anon_sym_LT_LT] = ACTIONS(1419), + [anon_sym_GT_GT] = ACTIONS(1419), + [anon_sym_PLUS_EQ] = ACTIONS(1417), + [anon_sym_DASH_EQ] = ACTIONS(1417), + [anon_sym_STAR_EQ] = ACTIONS(1417), + [anon_sym_SLASH_EQ] = ACTIONS(1417), + [anon_sym_PERCENT_EQ] = ACTIONS(1417), + [anon_sym_CARET_EQ] = ACTIONS(1417), + [anon_sym_AMP_EQ] = ACTIONS(1417), + [anon_sym_PIPE_EQ] = ACTIONS(1417), + [anon_sym_LT_LT_EQ] = ACTIONS(1417), + [anon_sym_GT_GT_EQ] = ACTIONS(1417), + [anon_sym_EQ] = ACTIONS(1419), + [anon_sym_EQ_EQ] = ACTIONS(1417), + [anon_sym_BANG_EQ] = ACTIONS(1417), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_LT] = ACTIONS(1419), + [anon_sym_GT_EQ] = ACTIONS(1417), + [anon_sym_LT_EQ] = ACTIONS(1417), + [anon_sym__] = ACTIONS(1419), + [anon_sym_DOT] = ACTIONS(1419), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1417), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1417), + [anon_sym_COMMA] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1417), + [anon_sym_POUND] = ACTIONS(1417), + [anon_sym_as] = ACTIONS(1419), + [anon_sym_const] = ACTIONS(1419), + [anon_sym_default] = ACTIONS(1419), + [anon_sym_gen] = ACTIONS(1419), + [anon_sym_union] = ACTIONS(1419), + [anon_sym_ref] = ACTIONS(1419), + [sym_mutable_specifier] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [aux_sym_string_literal_token1] = ACTIONS(1417), + [sym_char_literal] = ACTIONS(1417), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1419), + [sym_super] = ACTIONS(1419), + [sym_crate] = ACTIONS(1419), + [sym_metavariable] = ACTIONS(1417), + [sym__raw_string_literal_start] = ACTIONS(1417), + [sym_float_literal] = ACTIONS(1417), + }, + [STATE(516)] = { + [sym_line_comment] = STATE(516), + [sym_block_comment] = STATE(516), + [sym_identifier] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_STAR] = ACTIONS(1389), + [anon_sym_QMARK] = ACTIONS(1387), + [anon_sym_u8] = ACTIONS(1389), + [anon_sym_i8] = ACTIONS(1389), + [anon_sym_u16] = ACTIONS(1389), + [anon_sym_i16] = ACTIONS(1389), + [anon_sym_u32] = ACTIONS(1389), + [anon_sym_i32] = ACTIONS(1389), + [anon_sym_u64] = ACTIONS(1389), + [anon_sym_i64] = ACTIONS(1389), + [anon_sym_u128] = ACTIONS(1389), + [anon_sym_i128] = ACTIONS(1389), + [anon_sym_isize] = ACTIONS(1389), + [anon_sym_usize] = ACTIONS(1389), + [anon_sym_f32] = ACTIONS(1389), + [anon_sym_f64] = ACTIONS(1389), + [anon_sym_bool] = ACTIONS(1389), + [anon_sym_str] = ACTIONS(1389), + [anon_sym_char] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(1389), + [anon_sym_PERCENT] = ACTIONS(1389), + [anon_sym_CARET] = ACTIONS(1389), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_AMP_AMP] = ACTIONS(1387), + [anon_sym_PIPE_PIPE] = ACTIONS(1387), + [anon_sym_LT_LT] = ACTIONS(1389), + [anon_sym_GT_GT] = ACTIONS(1389), + [anon_sym_PLUS_EQ] = ACTIONS(1387), + [anon_sym_DASH_EQ] = ACTIONS(1387), + [anon_sym_STAR_EQ] = ACTIONS(1387), + [anon_sym_SLASH_EQ] = ACTIONS(1387), + [anon_sym_PERCENT_EQ] = ACTIONS(1387), + [anon_sym_CARET_EQ] = ACTIONS(1387), + [anon_sym_AMP_EQ] = ACTIONS(1387), + [anon_sym_PIPE_EQ] = ACTIONS(1387), + [anon_sym_LT_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_GT_EQ] = ACTIONS(1387), + [anon_sym_EQ] = ACTIONS(1389), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(1389), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1387), + [anon_sym_COMMA] = ACTIONS(1387), + [anon_sym_COLON_COLON] = ACTIONS(1387), + [anon_sym_POUND] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1389), + [anon_sym_gen] = ACTIONS(1389), + [anon_sym_union] = ACTIONS(1389), + [anon_sym_ref] = ACTIONS(1389), + [sym_mutable_specifier] = ACTIONS(1389), + [sym_integer_literal] = ACTIONS(1387), + [aux_sym_string_literal_token1] = ACTIONS(1387), + [sym_char_literal] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1389), + [anon_sym_false] = ACTIONS(1389), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1389), + [sym_super] = ACTIONS(1389), + [sym_crate] = ACTIONS(1389), + [sym_metavariable] = ACTIONS(1387), + [sym__raw_string_literal_start] = ACTIONS(1387), + [sym_float_literal] = ACTIONS(1387), + }, + [STATE(517)] = { + [sym_line_comment] = STATE(517), + [sym_block_comment] = STATE(517), + [sym_identifier] = ACTIONS(1403), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(1401), + [anon_sym_RBRACE] = ACTIONS(1401), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_QMARK] = ACTIONS(1401), + [anon_sym_u8] = ACTIONS(1403), + [anon_sym_i8] = ACTIONS(1403), + [anon_sym_u16] = ACTIONS(1403), + [anon_sym_i16] = ACTIONS(1403), + [anon_sym_u32] = ACTIONS(1403), + [anon_sym_i32] = ACTIONS(1403), + [anon_sym_u64] = ACTIONS(1403), + [anon_sym_i64] = ACTIONS(1403), + [anon_sym_u128] = ACTIONS(1403), + [anon_sym_i128] = ACTIONS(1403), + [anon_sym_isize] = ACTIONS(1403), + [anon_sym_usize] = ACTIONS(1403), + [anon_sym_f32] = ACTIONS(1403), + [anon_sym_f64] = ACTIONS(1403), + [anon_sym_bool] = ACTIONS(1403), + [anon_sym_str] = ACTIONS(1403), + [anon_sym_char] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_SLASH] = ACTIONS(1403), + [anon_sym_PERCENT] = ACTIONS(1403), + [anon_sym_CARET] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_PIPE] = ACTIONS(1403), + [anon_sym_AMP_AMP] = ACTIONS(1401), + [anon_sym_PIPE_PIPE] = ACTIONS(1401), + [anon_sym_LT_LT] = ACTIONS(1403), + [anon_sym_GT_GT] = ACTIONS(1403), + [anon_sym_PLUS_EQ] = ACTIONS(1401), + [anon_sym_DASH_EQ] = ACTIONS(1401), + [anon_sym_STAR_EQ] = ACTIONS(1401), + [anon_sym_SLASH_EQ] = ACTIONS(1401), + [anon_sym_PERCENT_EQ] = ACTIONS(1401), + [anon_sym_CARET_EQ] = ACTIONS(1401), + [anon_sym_AMP_EQ] = ACTIONS(1401), + [anon_sym_PIPE_EQ] = ACTIONS(1401), + [anon_sym_LT_LT_EQ] = ACTIONS(1401), + [anon_sym_GT_GT_EQ] = ACTIONS(1401), + [anon_sym_EQ] = ACTIONS(1403), + [anon_sym_EQ_EQ] = ACTIONS(1401), + [anon_sym_BANG_EQ] = ACTIONS(1401), + [anon_sym_GT] = ACTIONS(1403), + [anon_sym_LT] = ACTIONS(1403), + [anon_sym_GT_EQ] = ACTIONS(1401), + [anon_sym_LT_EQ] = ACTIONS(1401), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1401), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1401), + [anon_sym_COMMA] = ACTIONS(1401), + [anon_sym_COLON_COLON] = ACTIONS(1401), + [anon_sym_POUND] = ACTIONS(1401), + [anon_sym_as] = ACTIONS(1403), + [anon_sym_const] = ACTIONS(1403), + [anon_sym_default] = ACTIONS(1403), + [anon_sym_gen] = ACTIONS(1403), + [anon_sym_union] = ACTIONS(1403), + [anon_sym_ref] = ACTIONS(1403), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1401), + [aux_sym_string_literal_token1] = ACTIONS(1401), + [sym_char_literal] = ACTIONS(1401), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1403), + [sym_super] = ACTIONS(1403), + [sym_crate] = ACTIONS(1403), + [sym_metavariable] = ACTIONS(1401), + [sym__raw_string_literal_start] = ACTIONS(1401), + [sym_float_literal] = ACTIONS(1401), + }, + [STATE(518)] = { + [sym_line_comment] = STATE(518), + [sym_block_comment] = STATE(518), + [sym_identifier] = ACTIONS(1355), + [anon_sym_LPAREN] = ACTIONS(1353), + [anon_sym_LBRACK] = ACTIONS(1353), + [anon_sym_RBRACE] = ACTIONS(1353), + [anon_sym_PLUS] = ACTIONS(1355), + [anon_sym_STAR] = ACTIONS(1355), + [anon_sym_QMARK] = ACTIONS(1353), + [anon_sym_u8] = ACTIONS(1355), + [anon_sym_i8] = ACTIONS(1355), + [anon_sym_u16] = ACTIONS(1355), + [anon_sym_i16] = ACTIONS(1355), + [anon_sym_u32] = ACTIONS(1355), + [anon_sym_i32] = ACTIONS(1355), + [anon_sym_u64] = ACTIONS(1355), + [anon_sym_i64] = ACTIONS(1355), + [anon_sym_u128] = ACTIONS(1355), + [anon_sym_i128] = ACTIONS(1355), + [anon_sym_isize] = ACTIONS(1355), + [anon_sym_usize] = ACTIONS(1355), + [anon_sym_f32] = ACTIONS(1355), + [anon_sym_f64] = ACTIONS(1355), + [anon_sym_bool] = ACTIONS(1355), + [anon_sym_str] = ACTIONS(1355), + [anon_sym_char] = ACTIONS(1355), + [anon_sym_DASH] = ACTIONS(1355), + [anon_sym_SLASH] = ACTIONS(1355), + [anon_sym_PERCENT] = ACTIONS(1355), + [anon_sym_CARET] = ACTIONS(1355), + [anon_sym_AMP] = ACTIONS(1355), + [anon_sym_PIPE] = ACTIONS(1355), + [anon_sym_AMP_AMP] = ACTIONS(1353), + [anon_sym_PIPE_PIPE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(1355), + [anon_sym_GT_GT] = ACTIONS(1355), + [anon_sym_PLUS_EQ] = ACTIONS(1353), + [anon_sym_DASH_EQ] = ACTIONS(1353), + [anon_sym_STAR_EQ] = ACTIONS(1353), + [anon_sym_SLASH_EQ] = ACTIONS(1353), + [anon_sym_PERCENT_EQ] = ACTIONS(1353), + [anon_sym_CARET_EQ] = ACTIONS(1353), + [anon_sym_AMP_EQ] = ACTIONS(1353), + [anon_sym_PIPE_EQ] = ACTIONS(1353), + [anon_sym_LT_LT_EQ] = ACTIONS(1353), + [anon_sym_GT_GT_EQ] = ACTIONS(1353), + [anon_sym_EQ] = ACTIONS(1355), + [anon_sym_EQ_EQ] = ACTIONS(1353), + [anon_sym_BANG_EQ] = ACTIONS(1353), + [anon_sym_GT] = ACTIONS(1355), + [anon_sym_LT] = ACTIONS(1355), + [anon_sym_GT_EQ] = ACTIONS(1353), + [anon_sym_LT_EQ] = ACTIONS(1353), + [anon_sym__] = ACTIONS(1355), + [anon_sym_DOT] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1353), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1353), + [anon_sym_COMMA] = ACTIONS(1353), + [anon_sym_COLON_COLON] = ACTIONS(1353), + [anon_sym_POUND] = ACTIONS(1353), + [anon_sym_as] = ACTIONS(1355), + [anon_sym_const] = ACTIONS(1355), + [anon_sym_default] = ACTIONS(1355), + [anon_sym_gen] = ACTIONS(1355), + [anon_sym_union] = ACTIONS(1355), + [anon_sym_ref] = ACTIONS(1355), + [sym_mutable_specifier] = ACTIONS(1355), + [sym_integer_literal] = ACTIONS(1353), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1353), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1355), + [sym_super] = ACTIONS(1355), + [sym_crate] = ACTIONS(1355), + [sym_metavariable] = ACTIONS(1353), + [sym__raw_string_literal_start] = ACTIONS(1353), + [sym_float_literal] = ACTIONS(1353), + }, + [STATE(519)] = { + [sym_line_comment] = STATE(519), + [sym_block_comment] = STATE(519), + [sym_identifier] = ACTIONS(1411), + [anon_sym_LPAREN] = ACTIONS(1409), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_RBRACE] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_STAR] = ACTIONS(1411), + [anon_sym_QMARK] = ACTIONS(1409), + [anon_sym_u8] = ACTIONS(1411), + [anon_sym_i8] = ACTIONS(1411), + [anon_sym_u16] = ACTIONS(1411), + [anon_sym_i16] = ACTIONS(1411), + [anon_sym_u32] = ACTIONS(1411), + [anon_sym_i32] = ACTIONS(1411), + [anon_sym_u64] = ACTIONS(1411), + [anon_sym_i64] = ACTIONS(1411), + [anon_sym_u128] = ACTIONS(1411), + [anon_sym_i128] = ACTIONS(1411), + [anon_sym_isize] = ACTIONS(1411), + [anon_sym_usize] = ACTIONS(1411), + [anon_sym_f32] = ACTIONS(1411), + [anon_sym_f64] = ACTIONS(1411), + [anon_sym_bool] = ACTIONS(1411), + [anon_sym_str] = ACTIONS(1411), + [anon_sym_char] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(1411), + [anon_sym_PERCENT] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_PIPE] = ACTIONS(1411), + [anon_sym_AMP_AMP] = ACTIONS(1409), + [anon_sym_PIPE_PIPE] = ACTIONS(1409), + [anon_sym_LT_LT] = ACTIONS(1411), + [anon_sym_GT_GT] = ACTIONS(1411), + [anon_sym_PLUS_EQ] = ACTIONS(1409), + [anon_sym_DASH_EQ] = ACTIONS(1409), + [anon_sym_STAR_EQ] = ACTIONS(1409), + [anon_sym_SLASH_EQ] = ACTIONS(1409), + [anon_sym_PERCENT_EQ] = ACTIONS(1409), + [anon_sym_CARET_EQ] = ACTIONS(1409), + [anon_sym_AMP_EQ] = ACTIONS(1409), + [anon_sym_PIPE_EQ] = ACTIONS(1409), + [anon_sym_LT_LT_EQ] = ACTIONS(1409), + [anon_sym_GT_GT_EQ] = ACTIONS(1409), + [anon_sym_EQ] = ACTIONS(1411), + [anon_sym_EQ_EQ] = ACTIONS(1409), + [anon_sym_BANG_EQ] = ACTIONS(1409), + [anon_sym_GT] = ACTIONS(1411), + [anon_sym_LT] = ACTIONS(1411), + [anon_sym_GT_EQ] = ACTIONS(1409), + [anon_sym_LT_EQ] = ACTIONS(1409), + [anon_sym__] = ACTIONS(1411), + [anon_sym_DOT] = ACTIONS(1411), + [anon_sym_DOT_DOT] = ACTIONS(1411), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1409), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1409), + [anon_sym_COMMA] = ACTIONS(1409), + [anon_sym_COLON_COLON] = ACTIONS(1409), + [anon_sym_POUND] = ACTIONS(1409), + [anon_sym_as] = ACTIONS(1411), + [anon_sym_const] = ACTIONS(1411), + [anon_sym_default] = ACTIONS(1411), + [anon_sym_gen] = ACTIONS(1411), + [anon_sym_union] = ACTIONS(1411), + [anon_sym_ref] = ACTIONS(1411), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1409), + [aux_sym_string_literal_token1] = ACTIONS(1409), + [sym_char_literal] = ACTIONS(1409), + [anon_sym_true] = ACTIONS(1411), + [anon_sym_false] = ACTIONS(1411), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1411), + [sym_super] = ACTIONS(1411), + [sym_crate] = ACTIONS(1411), + [sym_metavariable] = ACTIONS(1409), + [sym__raw_string_literal_start] = ACTIONS(1409), + [sym_float_literal] = ACTIONS(1409), + }, + [STATE(520)] = { + [sym_attribute_item] = STATE(1406), + [sym_attributes] = STATE(833), + [sym_bracketed_type] = STATE(3755), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3470), + [sym_macro_invocation] = STATE(3150), + [sym_scoped_identifier] = STATE(2303), + [sym_scoped_type_identifier] = STATE(3084), + [sym_match_arm] = STATE(1409), + [sym_match_pattern] = STATE(3557), + [sym_const_block] = STATE(3150), + [sym__pattern] = STATE(3193), + [sym_generic_pattern] = STATE(3150), + [sym_tuple_pattern] = STATE(3150), + [sym_slice_pattern] = STATE(3150), + [sym_tuple_struct_pattern] = STATE(3150), + [sym_struct_pattern] = STATE(3150), + [sym_remaining_field_pattern] = STATE(3150), + [sym_mut_pattern] = STATE(3150), + [sym_range_pattern] = STATE(3150), + [sym_ref_pattern] = STATE(3150), + [sym_captured_pattern] = STATE(3150), + [sym_reference_pattern] = STATE(3150), + [sym_or_pattern] = STATE(3150), + [sym__literal_pattern] = STATE(2485), + [sym_negative_literal] = STATE(2477), + [sym_string_literal] = STATE(2477), + [sym_raw_string_literal] = STATE(2477), + [sym_boolean_literal] = STATE(2477), + [sym_line_comment] = STATE(520), + [sym_block_comment] = STATE(520), + [aux_sym_attributes_repeat1] = STATE(1128), + [aux_sym_match_block_repeat2] = STATE(520), + [sym_identifier] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_LBRACK] = ACTIONS(1791), + [anon_sym_u8] = ACTIONS(1794), + [anon_sym_i8] = ACTIONS(1794), + [anon_sym_u16] = ACTIONS(1794), + [anon_sym_i16] = ACTIONS(1794), + [anon_sym_u32] = ACTIONS(1794), + [anon_sym_i32] = ACTIONS(1794), + [anon_sym_u64] = ACTIONS(1794), + [anon_sym_i64] = ACTIONS(1794), + [anon_sym_u128] = ACTIONS(1794), + [anon_sym_i128] = ACTIONS(1794), + [anon_sym_isize] = ACTIONS(1794), + [anon_sym_usize] = ACTIONS(1794), + [anon_sym_f32] = ACTIONS(1794), + [anon_sym_f64] = ACTIONS(1794), + [anon_sym_bool] = ACTIONS(1794), + [anon_sym_str] = ACTIONS(1794), + [anon_sym_char] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1797), + [anon_sym_AMP] = ACTIONS(1800), + [anon_sym_PIPE] = ACTIONS(1803), + [anon_sym_LT] = ACTIONS(1806), + [anon_sym__] = ACTIONS(1809), + [anon_sym_DOT_DOT] = ACTIONS(1812), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1815), + [anon_sym_COLON_COLON] = ACTIONS(1818), + [anon_sym_POUND] = ACTIONS(1821), + [anon_sym_const] = ACTIONS(1824), + [anon_sym_default] = ACTIONS(1827), + [anon_sym_gen] = ACTIONS(1827), + [anon_sym_union] = ACTIONS(1827), + [anon_sym_ref] = ACTIONS(1830), + [sym_mutable_specifier] = ACTIONS(1833), + [sym_integer_literal] = ACTIONS(1836), + [aux_sym_string_literal_token1] = ACTIONS(1839), + [sym_char_literal] = ACTIONS(1836), + [anon_sym_true] = ACTIONS(1842), + [anon_sym_false] = ACTIONS(1842), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1845), + [sym_super] = ACTIONS(1845), + [sym_crate] = ACTIONS(1845), + [sym_metavariable] = ACTIONS(1848), + [sym__raw_string_literal_start] = ACTIONS(1851), + [sym_float_literal] = ACTIONS(1836), + }, + [STATE(521)] = { + [sym_line_comment] = STATE(521), + [sym_block_comment] = STATE(521), + [sym_identifier] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1429), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_RBRACE] = ACTIONS(1429), + [anon_sym_PLUS] = ACTIONS(1431), + [anon_sym_STAR] = ACTIONS(1431), + [anon_sym_QMARK] = ACTIONS(1429), + [anon_sym_u8] = ACTIONS(1431), + [anon_sym_i8] = ACTIONS(1431), + [anon_sym_u16] = ACTIONS(1431), + [anon_sym_i16] = ACTIONS(1431), + [anon_sym_u32] = ACTIONS(1431), + [anon_sym_i32] = ACTIONS(1431), + [anon_sym_u64] = ACTIONS(1431), + [anon_sym_i64] = ACTIONS(1431), + [anon_sym_u128] = ACTIONS(1431), + [anon_sym_i128] = ACTIONS(1431), + [anon_sym_isize] = ACTIONS(1431), + [anon_sym_usize] = ACTIONS(1431), + [anon_sym_f32] = ACTIONS(1431), + [anon_sym_f64] = ACTIONS(1431), + [anon_sym_bool] = ACTIONS(1431), + [anon_sym_str] = ACTIONS(1431), + [anon_sym_char] = ACTIONS(1431), + [anon_sym_DASH] = ACTIONS(1431), + [anon_sym_SLASH] = ACTIONS(1431), + [anon_sym_PERCENT] = ACTIONS(1431), + [anon_sym_CARET] = ACTIONS(1431), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(1431), + [anon_sym_AMP_AMP] = ACTIONS(1429), + [anon_sym_PIPE_PIPE] = ACTIONS(1429), + [anon_sym_LT_LT] = ACTIONS(1431), + [anon_sym_GT_GT] = ACTIONS(1431), + [anon_sym_PLUS_EQ] = ACTIONS(1429), + [anon_sym_DASH_EQ] = ACTIONS(1429), + [anon_sym_STAR_EQ] = ACTIONS(1429), + [anon_sym_SLASH_EQ] = ACTIONS(1429), + [anon_sym_PERCENT_EQ] = ACTIONS(1429), + [anon_sym_CARET_EQ] = ACTIONS(1429), + [anon_sym_AMP_EQ] = ACTIONS(1429), + [anon_sym_PIPE_EQ] = ACTIONS(1429), + [anon_sym_LT_LT_EQ] = ACTIONS(1429), + [anon_sym_GT_GT_EQ] = ACTIONS(1429), + [anon_sym_EQ] = ACTIONS(1431), + [anon_sym_EQ_EQ] = ACTIONS(1429), + [anon_sym_BANG_EQ] = ACTIONS(1429), + [anon_sym_GT] = ACTIONS(1431), + [anon_sym_LT] = ACTIONS(1431), + [anon_sym_GT_EQ] = ACTIONS(1429), + [anon_sym_LT_EQ] = ACTIONS(1429), + [anon_sym__] = ACTIONS(1431), + [anon_sym_DOT] = ACTIONS(1431), + [anon_sym_DOT_DOT] = ACTIONS(1431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1429), + [anon_sym_COMMA] = ACTIONS(1429), + [anon_sym_COLON_COLON] = ACTIONS(1429), + [anon_sym_POUND] = ACTIONS(1429), + [anon_sym_as] = ACTIONS(1431), + [anon_sym_const] = ACTIONS(1431), + [anon_sym_default] = ACTIONS(1431), + [anon_sym_gen] = ACTIONS(1431), + [anon_sym_union] = ACTIONS(1431), + [anon_sym_ref] = ACTIONS(1431), + [sym_mutable_specifier] = ACTIONS(1431), + [sym_integer_literal] = ACTIONS(1429), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1429), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1431), + [sym_super] = ACTIONS(1431), + [sym_crate] = ACTIONS(1431), + [sym_metavariable] = ACTIONS(1429), + [sym__raw_string_literal_start] = ACTIONS(1429), + [sym_float_literal] = ACTIONS(1429), + }, + [STATE(522)] = { + [sym_line_comment] = STATE(522), + [sym_block_comment] = STATE(522), + [sym_identifier] = ACTIONS(1451), + [anon_sym_LPAREN] = ACTIONS(1449), + [anon_sym_LBRACK] = ACTIONS(1449), + [anon_sym_RBRACE] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_STAR] = ACTIONS(1451), + [anon_sym_QMARK] = ACTIONS(1449), + [anon_sym_u8] = ACTIONS(1451), + [anon_sym_i8] = ACTIONS(1451), + [anon_sym_u16] = ACTIONS(1451), + [anon_sym_i16] = ACTIONS(1451), + [anon_sym_u32] = ACTIONS(1451), + [anon_sym_i32] = ACTIONS(1451), + [anon_sym_u64] = ACTIONS(1451), + [anon_sym_i64] = ACTIONS(1451), + [anon_sym_u128] = ACTIONS(1451), + [anon_sym_i128] = ACTIONS(1451), + [anon_sym_isize] = ACTIONS(1451), + [anon_sym_usize] = ACTIONS(1451), + [anon_sym_f32] = ACTIONS(1451), + [anon_sym_f64] = ACTIONS(1451), + [anon_sym_bool] = ACTIONS(1451), + [anon_sym_str] = ACTIONS(1451), + [anon_sym_char] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_SLASH] = ACTIONS(1451), + [anon_sym_PERCENT] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(1451), + [anon_sym_PIPE] = ACTIONS(1451), + [anon_sym_AMP_AMP] = ACTIONS(1449), + [anon_sym_PIPE_PIPE] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS_EQ] = ACTIONS(1449), + [anon_sym_DASH_EQ] = ACTIONS(1449), + [anon_sym_STAR_EQ] = ACTIONS(1449), + [anon_sym_SLASH_EQ] = ACTIONS(1449), + [anon_sym_PERCENT_EQ] = ACTIONS(1449), + [anon_sym_CARET_EQ] = ACTIONS(1449), + [anon_sym_AMP_EQ] = ACTIONS(1449), + [anon_sym_PIPE_EQ] = ACTIONS(1449), + [anon_sym_LT_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_GT_EQ] = ACTIONS(1449), + [anon_sym_EQ] = ACTIONS(1451), + [anon_sym_EQ_EQ] = ACTIONS(1449), + [anon_sym_BANG_EQ] = ACTIONS(1449), + [anon_sym_GT] = ACTIONS(1451), + [anon_sym_LT] = ACTIONS(1451), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1449), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1449), + [anon_sym_COMMA] = ACTIONS(1449), + [anon_sym_COLON_COLON] = ACTIONS(1449), + [anon_sym_POUND] = ACTIONS(1449), + [anon_sym_as] = ACTIONS(1451), + [anon_sym_const] = ACTIONS(1451), + [anon_sym_default] = ACTIONS(1451), + [anon_sym_gen] = ACTIONS(1451), + [anon_sym_union] = ACTIONS(1451), + [anon_sym_ref] = ACTIONS(1451), + [sym_mutable_specifier] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [aux_sym_string_literal_token1] = ACTIONS(1449), + [sym_char_literal] = ACTIONS(1449), + [anon_sym_true] = ACTIONS(1451), + [anon_sym_false] = ACTIONS(1451), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1451), + [sym_super] = ACTIONS(1451), + [sym_crate] = ACTIONS(1451), + [sym_metavariable] = ACTIONS(1449), + [sym__raw_string_literal_start] = ACTIONS(1449), + [sym_float_literal] = ACTIONS(1449), + }, + [STATE(523)] = { + [sym_line_comment] = STATE(523), + [sym_block_comment] = STATE(523), + [sym_identifier] = ACTIONS(1415), + [anon_sym_LPAREN] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1413), + [anon_sym_RBRACE] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_QMARK] = ACTIONS(1413), + [anon_sym_u8] = ACTIONS(1415), + [anon_sym_i8] = ACTIONS(1415), + [anon_sym_u16] = ACTIONS(1415), + [anon_sym_i16] = ACTIONS(1415), + [anon_sym_u32] = ACTIONS(1415), + [anon_sym_i32] = ACTIONS(1415), + [anon_sym_u64] = ACTIONS(1415), + [anon_sym_i64] = ACTIONS(1415), + [anon_sym_u128] = ACTIONS(1415), + [anon_sym_i128] = ACTIONS(1415), + [anon_sym_isize] = ACTIONS(1415), + [anon_sym_usize] = ACTIONS(1415), + [anon_sym_f32] = ACTIONS(1415), + [anon_sym_f64] = ACTIONS(1415), + [anon_sym_bool] = ACTIONS(1415), + [anon_sym_str] = ACTIONS(1415), + [anon_sym_char] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_SLASH] = ACTIONS(1415), + [anon_sym_PERCENT] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(1415), + [anon_sym_PIPE] = ACTIONS(1415), + [anon_sym_AMP_AMP] = ACTIONS(1413), + [anon_sym_PIPE_PIPE] = ACTIONS(1413), + [anon_sym_LT_LT] = ACTIONS(1415), + [anon_sym_GT_GT] = ACTIONS(1415), + [anon_sym_PLUS_EQ] = ACTIONS(1413), + [anon_sym_DASH_EQ] = ACTIONS(1413), + [anon_sym_STAR_EQ] = ACTIONS(1413), + [anon_sym_SLASH_EQ] = ACTIONS(1413), + [anon_sym_PERCENT_EQ] = ACTIONS(1413), + [anon_sym_CARET_EQ] = ACTIONS(1413), + [anon_sym_AMP_EQ] = ACTIONS(1413), + [anon_sym_PIPE_EQ] = ACTIONS(1413), + [anon_sym_LT_LT_EQ] = ACTIONS(1413), + [anon_sym_GT_GT_EQ] = ACTIONS(1413), + [anon_sym_EQ] = ACTIONS(1415), + [anon_sym_EQ_EQ] = ACTIONS(1413), + [anon_sym_BANG_EQ] = ACTIONS(1413), + [anon_sym_GT] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(1415), + [anon_sym_GT_EQ] = ACTIONS(1413), + [anon_sym_LT_EQ] = ACTIONS(1413), + [anon_sym__] = ACTIONS(1415), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DOT_DOT] = ACTIONS(1415), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1413), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1413), + [anon_sym_COMMA] = ACTIONS(1413), + [anon_sym_COLON_COLON] = ACTIONS(1413), + [anon_sym_POUND] = ACTIONS(1413), + [anon_sym_as] = ACTIONS(1415), + [anon_sym_const] = ACTIONS(1415), + [anon_sym_default] = ACTIONS(1415), + [anon_sym_gen] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1415), + [anon_sym_ref] = ACTIONS(1415), + [sym_mutable_specifier] = ACTIONS(1415), + [sym_integer_literal] = ACTIONS(1413), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1413), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1415), + [sym_super] = ACTIONS(1415), + [sym_crate] = ACTIONS(1415), + [sym_metavariable] = ACTIONS(1413), + [sym__raw_string_literal_start] = ACTIONS(1413), + [sym_float_literal] = ACTIONS(1413), + }, + [STATE(524)] = { + [sym_line_comment] = STATE(524), + [sym_block_comment] = STATE(524), + [sym_identifier] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(1856), + [anon_sym_LBRACK] = ACTIONS(1856), + [anon_sym_RBRACE] = ACTIONS(1397), + [anon_sym_PLUS] = ACTIONS(1399), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_QMARK] = ACTIONS(1397), + [anon_sym_u8] = ACTIONS(1854), + [anon_sym_i8] = ACTIONS(1854), + [anon_sym_u16] = ACTIONS(1854), + [anon_sym_i16] = ACTIONS(1854), + [anon_sym_u32] = ACTIONS(1854), + [anon_sym_i32] = ACTIONS(1854), + [anon_sym_u64] = ACTIONS(1854), + [anon_sym_i64] = ACTIONS(1854), + [anon_sym_u128] = ACTIONS(1854), + [anon_sym_i128] = ACTIONS(1854), + [anon_sym_isize] = ACTIONS(1854), + [anon_sym_usize] = ACTIONS(1854), + [anon_sym_f32] = ACTIONS(1854), + [anon_sym_f64] = ACTIONS(1854), + [anon_sym_bool] = ACTIONS(1854), + [anon_sym_str] = ACTIONS(1854), + [anon_sym_char] = ACTIONS(1854), + [anon_sym_DASH] = ACTIONS(1854), + [anon_sym_SLASH] = ACTIONS(1399), + [anon_sym_PERCENT] = ACTIONS(1399), + [anon_sym_CARET] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1854), + [anon_sym_PIPE] = ACTIONS(1854), + [anon_sym_AMP_AMP] = ACTIONS(1397), + [anon_sym_PIPE_PIPE] = ACTIONS(1397), + [anon_sym_LT_LT] = ACTIONS(1399), + [anon_sym_GT_GT] = ACTIONS(1399), + [anon_sym_PLUS_EQ] = ACTIONS(1397), + [anon_sym_DASH_EQ] = ACTIONS(1397), + [anon_sym_STAR_EQ] = ACTIONS(1397), + [anon_sym_SLASH_EQ] = ACTIONS(1397), + [anon_sym_PERCENT_EQ] = ACTIONS(1397), + [anon_sym_CARET_EQ] = ACTIONS(1397), + [anon_sym_AMP_EQ] = ACTIONS(1397), + [anon_sym_PIPE_EQ] = ACTIONS(1397), + [anon_sym_LT_LT_EQ] = ACTIONS(1397), + [anon_sym_GT_GT_EQ] = ACTIONS(1397), + [anon_sym_EQ] = ACTIONS(1399), + [anon_sym_EQ_EQ] = ACTIONS(1397), + [anon_sym_BANG_EQ] = ACTIONS(1397), + [anon_sym_GT] = ACTIONS(1399), + [anon_sym_LT] = ACTIONS(1854), + [anon_sym_GT_EQ] = ACTIONS(1397), + [anon_sym_LT_EQ] = ACTIONS(1397), + [anon_sym__] = ACTIONS(1854), + [anon_sym_DOT] = ACTIONS(1399), + [anon_sym_DOT_DOT] = ACTIONS(1854), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1856), + [anon_sym_COMMA] = ACTIONS(1397), + [anon_sym_COLON_COLON] = ACTIONS(1856), + [anon_sym_POUND] = ACTIONS(1856), + [anon_sym_as] = ACTIONS(1399), + [anon_sym_const] = ACTIONS(1854), + [anon_sym_default] = ACTIONS(1854), + [anon_sym_gen] = ACTIONS(1854), + [anon_sym_union] = ACTIONS(1854), + [anon_sym_ref] = ACTIONS(1854), + [sym_mutable_specifier] = ACTIONS(1854), + [sym_integer_literal] = ACTIONS(1856), + [aux_sym_string_literal_token1] = ACTIONS(1856), + [sym_char_literal] = ACTIONS(1856), + [anon_sym_true] = ACTIONS(1854), + [anon_sym_false] = ACTIONS(1854), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1854), + [sym_super] = ACTIONS(1854), + [sym_crate] = ACTIONS(1854), + [sym_metavariable] = ACTIONS(1856), + [sym__raw_string_literal_start] = ACTIONS(1856), + [sym_float_literal] = ACTIONS(1856), + }, + [STATE(525)] = { + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym_closure_expression] = STATE(3178), + [sym_closure_parameters] = STATE(188), + [sym__pattern] = STATE(2903), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), + [sym_line_comment] = STATE(525), + [sym_block_comment] = STATE(525), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_RPAREN] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COMMA] = ACTIONS(1870), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_async] = ACTIONS(1874), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_static] = ACTIONS(1311), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [anon_sym_move] = ACTIONS(1315), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), + }, + [STATE(526)] = { + [sym_line_comment] = STATE(526), + [sym_block_comment] = STATE(526), + [sym_identifier] = ACTIONS(1381), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_RBRACE] = ACTIONS(1379), + [anon_sym_PLUS] = ACTIONS(1381), + [anon_sym_STAR] = ACTIONS(1381), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1381), + [anon_sym_i8] = ACTIONS(1381), + [anon_sym_u16] = ACTIONS(1381), + [anon_sym_i16] = ACTIONS(1381), + [anon_sym_u32] = ACTIONS(1381), + [anon_sym_i32] = ACTIONS(1381), + [anon_sym_u64] = ACTIONS(1381), + [anon_sym_i64] = ACTIONS(1381), + [anon_sym_u128] = ACTIONS(1381), + [anon_sym_i128] = ACTIONS(1381), + [anon_sym_isize] = ACTIONS(1381), + [anon_sym_usize] = ACTIONS(1381), + [anon_sym_f32] = ACTIONS(1381), + [anon_sym_f64] = ACTIONS(1381), + [anon_sym_bool] = ACTIONS(1381), + [anon_sym_str] = ACTIONS(1381), + [anon_sym_char] = ACTIONS(1381), + [anon_sym_DASH] = ACTIONS(1381), + [anon_sym_SLASH] = ACTIONS(1381), + [anon_sym_PERCENT] = ACTIONS(1381), + [anon_sym_CARET] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_AMP_AMP] = ACTIONS(1379), + [anon_sym_PIPE_PIPE] = ACTIONS(1379), + [anon_sym_LT_LT] = ACTIONS(1381), + [anon_sym_GT_GT] = ACTIONS(1381), + [anon_sym_PLUS_EQ] = ACTIONS(1379), + [anon_sym_DASH_EQ] = ACTIONS(1379), + [anon_sym_STAR_EQ] = ACTIONS(1379), + [anon_sym_SLASH_EQ] = ACTIONS(1379), + [anon_sym_PERCENT_EQ] = ACTIONS(1379), + [anon_sym_CARET_EQ] = ACTIONS(1379), + [anon_sym_AMP_EQ] = ACTIONS(1379), + [anon_sym_PIPE_EQ] = ACTIONS(1379), + [anon_sym_LT_LT_EQ] = ACTIONS(1379), + [anon_sym_GT_GT_EQ] = ACTIONS(1379), + [anon_sym_EQ] = ACTIONS(1381), + [anon_sym_EQ_EQ] = ACTIONS(1379), + [anon_sym_BANG_EQ] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(1381), + [anon_sym_GT_EQ] = ACTIONS(1379), + [anon_sym_LT_EQ] = ACTIONS(1379), + [anon_sym__] = ACTIONS(1381), + [anon_sym_DOT] = ACTIONS(1381), + [anon_sym_DOT_DOT] = ACTIONS(1381), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1379), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1379), + [anon_sym_COMMA] = ACTIONS(1379), + [anon_sym_COLON_COLON] = ACTIONS(1379), + [anon_sym_POUND] = ACTIONS(1379), + [anon_sym_as] = ACTIONS(1381), + [anon_sym_const] = ACTIONS(1381), + [anon_sym_default] = ACTIONS(1381), + [anon_sym_gen] = ACTIONS(1381), + [anon_sym_union] = ACTIONS(1381), + [anon_sym_ref] = ACTIONS(1381), + [sym_mutable_specifier] = ACTIONS(1381), + [sym_integer_literal] = ACTIONS(1379), + [aux_sym_string_literal_token1] = ACTIONS(1379), + [sym_char_literal] = ACTIONS(1379), + [anon_sym_true] = ACTIONS(1381), + [anon_sym_false] = ACTIONS(1381), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1381), + [sym_super] = ACTIONS(1381), + [sym_crate] = ACTIONS(1381), + [sym_metavariable] = ACTIONS(1379), + [sym__raw_string_literal_start] = ACTIONS(1379), + [sym_float_literal] = ACTIONS(1379), + }, + [STATE(527)] = { + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym_closure_expression] = STATE(2952), + [sym_closure_parameters] = STATE(188), + [sym__pattern] = STATE(2787), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), + [sym_line_comment] = STATE(527), + [sym_block_comment] = STATE(527), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_RPAREN] = ACTIONS(1884), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COMMA] = ACTIONS(1307), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_async] = ACTIONS(1874), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_static] = ACTIONS(1311), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [anon_sym_move] = ACTIONS(1315), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), + }, + [STATE(528)] = { + [sym_line_comment] = STATE(528), + [sym_block_comment] = STATE(528), + [sym_identifier] = ACTIONS(1886), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_LBRACK] = ACTIONS(1888), + [anon_sym_RBRACE] = ACTIONS(1397), + [anon_sym_PLUS] = ACTIONS(1399), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_QMARK] = ACTIONS(1397), + [anon_sym_u8] = ACTIONS(1886), + [anon_sym_i8] = ACTIONS(1886), + [anon_sym_u16] = ACTIONS(1886), + [anon_sym_i16] = ACTIONS(1886), + [anon_sym_u32] = ACTIONS(1886), + [anon_sym_i32] = ACTIONS(1886), + [anon_sym_u64] = ACTIONS(1886), + [anon_sym_i64] = ACTIONS(1886), + [anon_sym_u128] = ACTIONS(1886), + [anon_sym_i128] = ACTIONS(1886), + [anon_sym_isize] = ACTIONS(1886), + [anon_sym_usize] = ACTIONS(1886), + [anon_sym_f32] = ACTIONS(1886), + [anon_sym_f64] = ACTIONS(1886), + [anon_sym_bool] = ACTIONS(1886), + [anon_sym_str] = ACTIONS(1886), + [anon_sym_char] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_SLASH] = ACTIONS(1399), + [anon_sym_PERCENT] = ACTIONS(1399), + [anon_sym_CARET] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1397), + [anon_sym_PIPE_PIPE] = ACTIONS(1397), + [anon_sym_LT_LT] = ACTIONS(1399), + [anon_sym_GT_GT] = ACTIONS(1399), + [anon_sym_PLUS_EQ] = ACTIONS(1397), + [anon_sym_DASH_EQ] = ACTIONS(1397), + [anon_sym_STAR_EQ] = ACTIONS(1397), + [anon_sym_SLASH_EQ] = ACTIONS(1397), + [anon_sym_PERCENT_EQ] = ACTIONS(1397), + [anon_sym_CARET_EQ] = ACTIONS(1397), + [anon_sym_AMP_EQ] = ACTIONS(1397), + [anon_sym_PIPE_EQ] = ACTIONS(1397), + [anon_sym_LT_LT_EQ] = ACTIONS(1397), + [anon_sym_GT_GT_EQ] = ACTIONS(1397), + [anon_sym_EQ] = ACTIONS(1399), + [anon_sym_EQ_EQ] = ACTIONS(1397), + [anon_sym_BANG_EQ] = ACTIONS(1397), + [anon_sym_GT] = ACTIONS(1399), + [anon_sym_LT] = ACTIONS(1886), + [anon_sym_GT_EQ] = ACTIONS(1397), + [anon_sym_LT_EQ] = ACTIONS(1397), + [anon_sym__] = ACTIONS(1886), + [anon_sym_DOT] = ACTIONS(1399), + [anon_sym_DOT_DOT] = ACTIONS(1886), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1888), + [anon_sym_COMMA] = ACTIONS(1397), + [anon_sym_COLON_COLON] = ACTIONS(1888), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_as] = ACTIONS(1399), + [anon_sym_const] = ACTIONS(1886), + [anon_sym_default] = ACTIONS(1886), + [anon_sym_gen] = ACTIONS(1886), + [anon_sym_union] = ACTIONS(1886), + [anon_sym_ref] = ACTIONS(1886), + [sym_mutable_specifier] = ACTIONS(1886), + [sym_integer_literal] = ACTIONS(1888), + [aux_sym_string_literal_token1] = ACTIONS(1888), + [sym_char_literal] = ACTIONS(1888), + [anon_sym_true] = ACTIONS(1886), + [anon_sym_false] = ACTIONS(1886), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1886), + [sym_super] = ACTIONS(1886), + [sym_crate] = ACTIONS(1886), + [sym_metavariable] = ACTIONS(1888), + [sym__raw_string_literal_start] = ACTIONS(1888), + [sym_float_literal] = ACTIONS(1888), + }, + [STATE(529)] = { + [sym_line_comment] = STATE(529), + [sym_block_comment] = STATE(529), + [sym_identifier] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1441), + [anon_sym_LBRACK] = ACTIONS(1441), + [anon_sym_RBRACE] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_STAR] = ACTIONS(1443), + [anon_sym_QMARK] = ACTIONS(1441), + [anon_sym_u8] = ACTIONS(1443), + [anon_sym_i8] = ACTIONS(1443), + [anon_sym_u16] = ACTIONS(1443), + [anon_sym_i16] = ACTIONS(1443), + [anon_sym_u32] = ACTIONS(1443), + [anon_sym_i32] = ACTIONS(1443), + [anon_sym_u64] = ACTIONS(1443), + [anon_sym_i64] = ACTIONS(1443), + [anon_sym_u128] = ACTIONS(1443), + [anon_sym_i128] = ACTIONS(1443), + [anon_sym_isize] = ACTIONS(1443), + [anon_sym_usize] = ACTIONS(1443), + [anon_sym_f32] = ACTIONS(1443), + [anon_sym_f64] = ACTIONS(1443), + [anon_sym_bool] = ACTIONS(1443), + [anon_sym_str] = ACTIONS(1443), + [anon_sym_char] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_SLASH] = ACTIONS(1443), + [anon_sym_PERCENT] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_AMP] = ACTIONS(1443), + [anon_sym_PIPE] = ACTIONS(1443), + [anon_sym_AMP_AMP] = ACTIONS(1441), + [anon_sym_PIPE_PIPE] = ACTIONS(1441), + [anon_sym_LT_LT] = ACTIONS(1443), + [anon_sym_GT_GT] = ACTIONS(1443), + [anon_sym_PLUS_EQ] = ACTIONS(1441), + [anon_sym_DASH_EQ] = ACTIONS(1441), + [anon_sym_STAR_EQ] = ACTIONS(1441), + [anon_sym_SLASH_EQ] = ACTIONS(1441), + [anon_sym_PERCENT_EQ] = ACTIONS(1441), + [anon_sym_CARET_EQ] = ACTIONS(1441), + [anon_sym_AMP_EQ] = ACTIONS(1441), + [anon_sym_PIPE_EQ] = ACTIONS(1441), + [anon_sym_LT_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_GT_EQ] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1443), + [anon_sym_EQ_EQ] = ACTIONS(1441), + [anon_sym_BANG_EQ] = ACTIONS(1441), + [anon_sym_GT] = ACTIONS(1443), + [anon_sym_LT] = ACTIONS(1443), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1443), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1441), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1441), + [anon_sym_COMMA] = ACTIONS(1441), + [anon_sym_COLON_COLON] = ACTIONS(1441), + [anon_sym_POUND] = ACTIONS(1441), + [anon_sym_as] = ACTIONS(1443), + [anon_sym_const] = ACTIONS(1443), + [anon_sym_default] = ACTIONS(1443), + [anon_sym_gen] = ACTIONS(1443), + [anon_sym_union] = ACTIONS(1443), + [anon_sym_ref] = ACTIONS(1443), + [sym_mutable_specifier] = ACTIONS(1443), + [sym_integer_literal] = ACTIONS(1441), + [aux_sym_string_literal_token1] = ACTIONS(1441), + [sym_char_literal] = ACTIONS(1441), + [anon_sym_true] = ACTIONS(1443), + [anon_sym_false] = ACTIONS(1443), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1443), + [sym_super] = ACTIONS(1443), + [sym_crate] = ACTIONS(1443), + [sym_metavariable] = ACTIONS(1441), + [sym__raw_string_literal_start] = ACTIONS(1441), + [sym_float_literal] = ACTIONS(1441), + }, + [STATE(530)] = { + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym_closure_expression] = STATE(3355), + [sym_closure_parameters] = STATE(188), + [sym__pattern] = STATE(3006), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), + [sym_line_comment] = STATE(530), + [sym_block_comment] = STATE(530), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_RPAREN] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_async] = ACTIONS(1874), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_static] = ACTIONS(1311), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [anon_sym_move] = ACTIONS(1315), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), + }, + [STATE(531)] = { + [sym_empty_statement] = STATE(1402), + [sym_declaration_with_attribute] = STATE(1402), + [sym_macro_definition] = STATE(1402), + [sym_attribute_item] = STATE(1485), + [sym_attributes] = STATE(531), + [sym_inner_attribute_item] = STATE(1402), + [sym_mod_item] = STATE(1402), + [sym_foreign_mod_item] = STATE(1402), + [sym_struct_item] = STATE(1402), + [sym_union_item] = STATE(1402), + [sym_enum_item] = STATE(1402), + [sym_extern_crate_declaration] = STATE(1402), + [sym_const_item] = STATE(1402), + [sym_static_item] = STATE(1402), + [sym_type_item] = STATE(1402), + [sym_function_item] = STATE(1402), + [sym_function_signature_item] = STATE(1402), + [sym_function_modifiers] = STATE(3843), + [sym_impl_item] = STATE(1402), + [sym_trait_item] = STATE(1402), + [sym_associated_type] = STATE(1402), + [sym_let_declaration] = STATE(1402), + [sym_use_declaration] = STATE(1402), + [sym_extern_modifier] = STATE(2313), + [sym_visibility_modifier] = STATE(2088), + [sym_bracketed_type] = STATE(3798), + [sym_generic_type_with_turbofish] = STATE(3872), + [sym_macro_invocation] = STATE(1402), + [sym_scoped_identifier] = STATE(3265), + [sym_line_comment] = STATE(531), + [sym_block_comment] = STATE(531), + [aux_sym_attributes_repeat1] = STATE(1151), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(1639), + [anon_sym_SEMI] = ACTIONS(1641), + [anon_sym_macro_rules_BANG] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1647), + [anon_sym_i8] = ACTIONS(1647), + [anon_sym_u16] = ACTIONS(1647), + [anon_sym_i16] = ACTIONS(1647), + [anon_sym_u32] = ACTIONS(1647), + [anon_sym_i32] = ACTIONS(1647), + [anon_sym_u64] = ACTIONS(1647), + [anon_sym_i64] = ACTIONS(1647), + [anon_sym_u128] = ACTIONS(1647), + [anon_sym_i128] = ACTIONS(1647), + [anon_sym_isize] = ACTIONS(1647), + [anon_sym_usize] = ACTIONS(1647), + [anon_sym_f32] = ACTIONS(1647), + [anon_sym_f64] = ACTIONS(1647), + [anon_sym_bool] = ACTIONS(1647), + [anon_sym_str] = ACTIONS(1647), + [anon_sym_char] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1649), + [anon_sym_POUND] = ACTIONS(1651), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1653), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_enum] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1659), + [anon_sym_gen] = ACTIONS(1661), + [anon_sym_impl] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(1665), + [anon_sym_mod] = ACTIONS(1667), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(1669), + [anon_sym_struct] = ACTIONS(1671), + [anon_sym_trait] = ACTIONS(1673), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_union] = ACTIONS(1677), + [anon_sym_unsafe] = ACTIONS(1679), + [anon_sym_use] = ACTIONS(1681), + [anon_sym_extern] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1685), + [sym_super] = ACTIONS(1685), + [sym_crate] = ACTIONS(1687), + [sym_metavariable] = ACTIONS(1689), + }, + [STATE(532)] = { + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym_closure_expression] = STATE(3355), + [sym_closure_parameters] = STATE(188), + [sym__pattern] = STATE(3006), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), + [sym_line_comment] = STATE(532), + [sym_block_comment] = STATE(532), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_async] = ACTIONS(1874), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_static] = ACTIONS(1311), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [anon_sym_move] = ACTIONS(1315), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), + }, + [STATE(533)] = { + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym_closure_expression] = STATE(3355), + [sym_closure_parameters] = STATE(188), + [sym__pattern] = STATE(3006), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), + [sym_line_comment] = STATE(533), + [sym_block_comment] = STATE(533), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_RPAREN] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_async] = ACTIONS(1874), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_static] = ACTIONS(1311), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [anon_sym_move] = ACTIONS(1315), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), + }, + [STATE(534)] = { + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym_closure_expression] = STATE(3355), + [sym_closure_parameters] = STATE(188), + [sym__pattern] = STATE(3006), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), + [sym_line_comment] = STATE(534), + [sym_block_comment] = STATE(534), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_RPAREN] = ACTIONS(1896), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_async] = ACTIONS(1874), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_static] = ACTIONS(1311), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [anon_sym_move] = ACTIONS(1315), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), + }, + [STATE(535)] = { + [sym_line_comment] = STATE(535), + [sym_block_comment] = STATE(535), + [ts_builtin_sym_end] = ACTIONS(1331), + [sym_identifier] = ACTIONS(1333), + [anon_sym_SEMI] = ACTIONS(1331), + [anon_sym_macro_rules_BANG] = ACTIONS(1331), + [anon_sym_LPAREN] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LBRACE] = ACTIONS(1331), + [anon_sym_RBRACE] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1331), + [anon_sym_u8] = ACTIONS(1333), + [anon_sym_i8] = ACTIONS(1333), + [anon_sym_u16] = ACTIONS(1333), + [anon_sym_i16] = ACTIONS(1333), + [anon_sym_u32] = ACTIONS(1333), + [anon_sym_i32] = ACTIONS(1333), + [anon_sym_u64] = ACTIONS(1333), + [anon_sym_i64] = ACTIONS(1333), + [anon_sym_u128] = ACTIONS(1333), + [anon_sym_i128] = ACTIONS(1333), + [anon_sym_isize] = ACTIONS(1333), + [anon_sym_usize] = ACTIONS(1333), + [anon_sym_f32] = ACTIONS(1333), + [anon_sym_f64] = ACTIONS(1333), + [anon_sym_bool] = ACTIONS(1333), + [anon_sym_str] = ACTIONS(1333), + [anon_sym_char] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1331), + [anon_sym_PIPE] = ACTIONS(1331), + [anon_sym_LT] = ACTIONS(1331), + [anon_sym_DOT_DOT] = ACTIONS(1331), + [anon_sym_COLON_COLON] = ACTIONS(1331), + [anon_sym_POUND] = ACTIONS(1331), + [anon_sym_SQUOTE] = ACTIONS(1333), + [anon_sym_async] = ACTIONS(1333), + [anon_sym_break] = ACTIONS(1333), + [anon_sym_const] = ACTIONS(1333), + [anon_sym_continue] = ACTIONS(1333), + [anon_sym_default] = ACTIONS(1333), + [anon_sym_enum] = ACTIONS(1333), + [anon_sym_fn] = ACTIONS(1333), + [anon_sym_for] = ACTIONS(1333), + [anon_sym_gen] = ACTIONS(1333), + [anon_sym_if] = ACTIONS(1333), + [anon_sym_impl] = ACTIONS(1333), + [anon_sym_let] = ACTIONS(1333), + [anon_sym_loop] = ACTIONS(1333), + [anon_sym_match] = ACTIONS(1333), + [anon_sym_mod] = ACTIONS(1333), + [anon_sym_pub] = ACTIONS(1333), + [anon_sym_return] = ACTIONS(1333), + [anon_sym_static] = ACTIONS(1333), + [anon_sym_struct] = ACTIONS(1333), + [anon_sym_trait] = ACTIONS(1333), + [anon_sym_type] = ACTIONS(1333), + [anon_sym_union] = ACTIONS(1333), + [anon_sym_unsafe] = ACTIONS(1333), + [anon_sym_use] = ACTIONS(1333), + [anon_sym_while] = ACTIONS(1333), + [anon_sym_extern] = ACTIONS(1333), + [anon_sym_yield] = ACTIONS(1333), + [anon_sym_move] = ACTIONS(1333), + [anon_sym_try] = ACTIONS(1333), + [sym_integer_literal] = ACTIONS(1331), + [aux_sym_string_literal_token1] = ACTIONS(1331), + [sym_char_literal] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1333), + [sym_super] = ACTIONS(1333), + [sym_crate] = ACTIONS(1333), + [sym_metavariable] = ACTIONS(1331), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1331), + }, + [STATE(536)] = { + [sym_line_comment] = STATE(536), + [sym_block_comment] = STATE(536), [ts_builtin_sym_end] = ACTIONS(1898), [sym_identifier] = ACTIONS(1900), [anon_sym_SEMI] = ACTIONS(1898), @@ -73732,9 +77789,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1898), [sym_float_literal] = ACTIONS(1898), }, - [STATE(519)] = { - [sym_line_comment] = STATE(519), - [sym_block_comment] = STATE(519), + [STATE(537)] = { + [sym_line_comment] = STATE(537), + [sym_block_comment] = STATE(537), [ts_builtin_sym_end] = ACTIONS(1902), [sym_identifier] = ACTIONS(1904), [anon_sym_SEMI] = ACTIONS(1902), @@ -73813,9 +77870,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1902), [sym_float_literal] = ACTIONS(1902), }, - [STATE(520)] = { - [sym_line_comment] = STATE(520), - [sym_block_comment] = STATE(520), + [STATE(538)] = { + [sym_line_comment] = STATE(538), + [sym_block_comment] = STATE(538), [ts_builtin_sym_end] = ACTIONS(1906), [sym_identifier] = ACTIONS(1908), [anon_sym_SEMI] = ACTIONS(1906), @@ -73894,9 +77951,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1906), [sym_float_literal] = ACTIONS(1906), }, - [STATE(521)] = { - [sym_line_comment] = STATE(521), - [sym_block_comment] = STATE(521), + [STATE(539)] = { + [sym_line_comment] = STATE(539), + [sym_block_comment] = STATE(539), [ts_builtin_sym_end] = ACTIONS(1910), [sym_identifier] = ACTIONS(1912), [anon_sym_SEMI] = ACTIONS(1910), @@ -73975,9 +78032,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1910), [sym_float_literal] = ACTIONS(1910), }, - [STATE(522)] = { - [sym_line_comment] = STATE(522), - [sym_block_comment] = STATE(522), + [STATE(540)] = { + [sym_line_comment] = STATE(540), + [sym_block_comment] = STATE(540), [ts_builtin_sym_end] = ACTIONS(1914), [sym_identifier] = ACTIONS(1916), [anon_sym_SEMI] = ACTIONS(1914), @@ -74056,9 +78113,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1914), [sym_float_literal] = ACTIONS(1914), }, - [STATE(523)] = { - [sym_line_comment] = STATE(523), - [sym_block_comment] = STATE(523), + [STATE(541)] = { + [sym_line_comment] = STATE(541), + [sym_block_comment] = STATE(541), [ts_builtin_sym_end] = ACTIONS(1918), [sym_identifier] = ACTIONS(1920), [anon_sym_SEMI] = ACTIONS(1918), @@ -74137,9 +78194,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1918), [sym_float_literal] = ACTIONS(1918), }, - [STATE(524)] = { - [sym_line_comment] = STATE(524), - [sym_block_comment] = STATE(524), + [STATE(542)] = { + [sym_line_comment] = STATE(542), + [sym_block_comment] = STATE(542), [ts_builtin_sym_end] = ACTIONS(1922), [sym_identifier] = ACTIONS(1924), [anon_sym_SEMI] = ACTIONS(1922), @@ -74218,9 +78275,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1922), [sym_float_literal] = ACTIONS(1922), }, - [STATE(525)] = { - [sym_line_comment] = STATE(525), - [sym_block_comment] = STATE(525), + [STATE(543)] = { + [sym_line_comment] = STATE(543), + [sym_block_comment] = STATE(543), [ts_builtin_sym_end] = ACTIONS(1926), [sym_identifier] = ACTIONS(1928), [anon_sym_SEMI] = ACTIONS(1926), @@ -74299,9 +78356,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1926), [sym_float_literal] = ACTIONS(1926), }, - [STATE(526)] = { - [sym_line_comment] = STATE(526), - [sym_block_comment] = STATE(526), + [STATE(544)] = { + [sym_line_comment] = STATE(544), + [sym_block_comment] = STATE(544), + [ts_builtin_sym_end] = ACTIONS(1393), + [sym_identifier] = ACTIONS(1395), + [anon_sym_SEMI] = ACTIONS(1393), + [anon_sym_macro_rules_BANG] = ACTIONS(1393), + [anon_sym_LPAREN] = ACTIONS(1393), + [anon_sym_LBRACK] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1393), + [anon_sym_RBRACE] = ACTIONS(1393), + [anon_sym_STAR] = ACTIONS(1393), + [anon_sym_u8] = ACTIONS(1395), + [anon_sym_i8] = ACTIONS(1395), + [anon_sym_u16] = ACTIONS(1395), + [anon_sym_i16] = ACTIONS(1395), + [anon_sym_u32] = ACTIONS(1395), + [anon_sym_i32] = ACTIONS(1395), + [anon_sym_u64] = ACTIONS(1395), + [anon_sym_i64] = ACTIONS(1395), + [anon_sym_u128] = ACTIONS(1395), + [anon_sym_i128] = ACTIONS(1395), + [anon_sym_isize] = ACTIONS(1395), + [anon_sym_usize] = ACTIONS(1395), + [anon_sym_f32] = ACTIONS(1395), + [anon_sym_f64] = ACTIONS(1395), + [anon_sym_bool] = ACTIONS(1395), + [anon_sym_str] = ACTIONS(1395), + [anon_sym_char] = ACTIONS(1395), + [anon_sym_DASH] = ACTIONS(1393), + [anon_sym_BANG] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(1393), + [anon_sym_PIPE] = ACTIONS(1393), + [anon_sym_LT] = ACTIONS(1393), + [anon_sym_DOT_DOT] = ACTIONS(1393), + [anon_sym_COLON_COLON] = ACTIONS(1393), + [anon_sym_POUND] = ACTIONS(1393), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_async] = ACTIONS(1395), + [anon_sym_break] = ACTIONS(1395), + [anon_sym_const] = ACTIONS(1395), + [anon_sym_continue] = ACTIONS(1395), + [anon_sym_default] = ACTIONS(1395), + [anon_sym_enum] = ACTIONS(1395), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1395), + [anon_sym_gen] = ACTIONS(1395), + [anon_sym_if] = ACTIONS(1395), + [anon_sym_impl] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_loop] = ACTIONS(1395), + [anon_sym_match] = ACTIONS(1395), + [anon_sym_mod] = ACTIONS(1395), + [anon_sym_pub] = ACTIONS(1395), + [anon_sym_return] = ACTIONS(1395), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_struct] = ACTIONS(1395), + [anon_sym_trait] = ACTIONS(1395), + [anon_sym_type] = ACTIONS(1395), + [anon_sym_union] = ACTIONS(1395), + [anon_sym_unsafe] = ACTIONS(1395), + [anon_sym_use] = ACTIONS(1395), + [anon_sym_while] = ACTIONS(1395), + [anon_sym_extern] = ACTIONS(1395), + [anon_sym_yield] = ACTIONS(1395), + [anon_sym_move] = ACTIONS(1395), + [anon_sym_try] = ACTIONS(1395), + [sym_integer_literal] = ACTIONS(1393), + [aux_sym_string_literal_token1] = ACTIONS(1393), + [sym_char_literal] = ACTIONS(1393), + [anon_sym_true] = ACTIONS(1395), + [anon_sym_false] = ACTIONS(1395), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1395), + [sym_super] = ACTIONS(1395), + [sym_crate] = ACTIONS(1395), + [sym_metavariable] = ACTIONS(1393), + [sym__raw_string_literal_start] = ACTIONS(1393), + [sym_float_literal] = ACTIONS(1393), + }, + [STATE(545)] = { + [sym_line_comment] = STATE(545), + [sym_block_comment] = STATE(545), [ts_builtin_sym_end] = ACTIONS(1930), [sym_identifier] = ACTIONS(1932), [anon_sym_SEMI] = ACTIONS(1930), @@ -74380,9 +78518,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1930), [sym_float_literal] = ACTIONS(1930), }, - [STATE(527)] = { - [sym_line_comment] = STATE(527), - [sym_block_comment] = STATE(527), + [STATE(546)] = { + [sym_line_comment] = STATE(546), + [sym_block_comment] = STATE(546), [ts_builtin_sym_end] = ACTIONS(1934), [sym_identifier] = ACTIONS(1936), [anon_sym_SEMI] = ACTIONS(1934), @@ -74461,9 +78599,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1934), [sym_float_literal] = ACTIONS(1934), }, - [STATE(528)] = { - [sym_line_comment] = STATE(528), - [sym_block_comment] = STATE(528), + [STATE(547)] = { + [sym_line_comment] = STATE(547), + [sym_block_comment] = STATE(547), [ts_builtin_sym_end] = ACTIONS(1938), [sym_identifier] = ACTIONS(1940), [anon_sym_SEMI] = ACTIONS(1938), @@ -74542,9 +78680,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1938), [sym_float_literal] = ACTIONS(1938), }, - [STATE(529)] = { - [sym_line_comment] = STATE(529), - [sym_block_comment] = STATE(529), + [STATE(548)] = { + [sym_line_comment] = STATE(548), + [sym_block_comment] = STATE(548), [ts_builtin_sym_end] = ACTIONS(1942), [sym_identifier] = ACTIONS(1944), [anon_sym_SEMI] = ACTIONS(1942), @@ -74623,9 +78761,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1942), [sym_float_literal] = ACTIONS(1942), }, - [STATE(530)] = { - [sym_line_comment] = STATE(530), - [sym_block_comment] = STATE(530), + [STATE(549)] = { + [sym_line_comment] = STATE(549), + [sym_block_comment] = STATE(549), [ts_builtin_sym_end] = ACTIONS(1946), [sym_identifier] = ACTIONS(1948), [anon_sym_SEMI] = ACTIONS(1946), @@ -74704,41200 +78842,43256 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1946), [sym_float_literal] = ACTIONS(1946), }, - [STATE(531)] = { - [sym_empty_statement] = STATE(1170), - [sym_macro_definition] = STATE(1170), - [sym_attribute_item] = STATE(1170), - [sym_inner_attribute_item] = STATE(1170), - [sym_mod_item] = STATE(1170), - [sym_foreign_mod_item] = STATE(1170), - [sym_struct_item] = STATE(1170), - [sym_union_item] = STATE(1170), - [sym_enum_item] = STATE(1170), - [sym_extern_crate_declaration] = STATE(1170), - [sym_const_item] = STATE(1170), - [sym_static_item] = STATE(1170), - [sym_type_item] = STATE(1170), - [sym_function_item] = STATE(1170), - [sym_function_signature_item] = STATE(1170), - [sym_function_modifiers] = STATE(3781), - [sym_impl_item] = STATE(1170), - [sym_trait_item] = STATE(1170), - [sym_associated_type] = STATE(1170), - [sym_let_declaration] = STATE(1170), - [sym_use_declaration] = STATE(1170), - [sym_extern_modifier] = STATE(2235), - [sym_visibility_modifier] = STATE(2021), - [sym_bracketed_type] = STATE(3732), - [sym_generic_type_with_turbofish] = STATE(3800), - [sym_macro_invocation] = STATE(1170), - [sym_scoped_identifier] = STATE(3326), - [sym_line_comment] = STATE(531), - [sym_block_comment] = STATE(531), - [aux_sym_declaration_list_repeat1] = STATE(531), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1950), - [anon_sym_SEMI] = ACTIONS(1953), - [anon_sym_macro_rules_BANG] = ACTIONS(1956), - [anon_sym_RBRACE] = ACTIONS(1959), - [anon_sym_u8] = ACTIONS(1961), - [anon_sym_i8] = ACTIONS(1961), - [anon_sym_u16] = ACTIONS(1961), - [anon_sym_i16] = ACTIONS(1961), - [anon_sym_u32] = ACTIONS(1961), - [anon_sym_i32] = ACTIONS(1961), - [anon_sym_u64] = ACTIONS(1961), - [anon_sym_i64] = ACTIONS(1961), - [anon_sym_u128] = ACTIONS(1961), - [anon_sym_i128] = ACTIONS(1961), - [anon_sym_isize] = ACTIONS(1961), - [anon_sym_usize] = ACTIONS(1961), - [anon_sym_f32] = ACTIONS(1961), - [anon_sym_f64] = ACTIONS(1961), - [anon_sym_bool] = ACTIONS(1961), - [anon_sym_str] = ACTIONS(1961), - [anon_sym_char] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1964), - [anon_sym_COLON_COLON] = ACTIONS(1967), - [anon_sym_POUND] = ACTIONS(1970), - [anon_sym_async] = ACTIONS(1973), - [anon_sym_const] = ACTIONS(1976), - [anon_sym_default] = ACTIONS(1979), - [anon_sym_enum] = ACTIONS(1982), - [anon_sym_fn] = ACTIONS(1985), - [anon_sym_gen] = ACTIONS(1988), - [anon_sym_impl] = ACTIONS(1991), - [anon_sym_let] = ACTIONS(1994), - [anon_sym_mod] = ACTIONS(1997), - [anon_sym_pub] = ACTIONS(2000), - [anon_sym_static] = ACTIONS(2003), - [anon_sym_struct] = ACTIONS(2006), - [anon_sym_trait] = ACTIONS(2009), - [anon_sym_type] = ACTIONS(2012), - [anon_sym_union] = ACTIONS(2015), - [anon_sym_unsafe] = ACTIONS(2018), - [anon_sym_use] = ACTIONS(2021), - [anon_sym_extern] = ACTIONS(2024), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2027), - [sym_super] = ACTIONS(2027), - [sym_crate] = ACTIONS(2030), - [sym_metavariable] = ACTIONS(2033), - }, - [STATE(532)] = { - [sym_line_comment] = STATE(532), - [sym_block_comment] = STATE(532), - [ts_builtin_sym_end] = ACTIONS(2036), - [sym_identifier] = ACTIONS(2038), - [anon_sym_SEMI] = ACTIONS(2036), - [anon_sym_macro_rules_BANG] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(2036), - [anon_sym_LBRACK] = ACTIONS(2036), - [anon_sym_LBRACE] = ACTIONS(2036), - [anon_sym_RBRACE] = ACTIONS(2036), - [anon_sym_STAR] = ACTIONS(2036), - [anon_sym_u8] = ACTIONS(2038), - [anon_sym_i8] = ACTIONS(2038), - [anon_sym_u16] = ACTIONS(2038), - [anon_sym_i16] = ACTIONS(2038), - [anon_sym_u32] = ACTIONS(2038), - [anon_sym_i32] = ACTIONS(2038), - [anon_sym_u64] = ACTIONS(2038), - [anon_sym_i64] = ACTIONS(2038), - [anon_sym_u128] = ACTIONS(2038), - [anon_sym_i128] = ACTIONS(2038), - [anon_sym_isize] = ACTIONS(2038), - [anon_sym_usize] = ACTIONS(2038), - [anon_sym_f32] = ACTIONS(2038), - [anon_sym_f64] = ACTIONS(2038), - [anon_sym_bool] = ACTIONS(2038), - [anon_sym_str] = ACTIONS(2038), - [anon_sym_char] = ACTIONS(2038), - [anon_sym_DASH] = ACTIONS(2036), - [anon_sym_BANG] = ACTIONS(2036), - [anon_sym_AMP] = ACTIONS(2036), - [anon_sym_PIPE] = ACTIONS(2036), - [anon_sym_LT] = ACTIONS(2036), - [anon_sym_DOT_DOT] = ACTIONS(2036), - [anon_sym_COLON_COLON] = ACTIONS(2036), - [anon_sym_POUND] = ACTIONS(2036), - [anon_sym_SQUOTE] = ACTIONS(2038), - [anon_sym_async] = ACTIONS(2038), - [anon_sym_break] = ACTIONS(2038), - [anon_sym_const] = ACTIONS(2038), - [anon_sym_continue] = ACTIONS(2038), - [anon_sym_default] = ACTIONS(2038), - [anon_sym_enum] = ACTIONS(2038), - [anon_sym_fn] = ACTIONS(2038), - [anon_sym_for] = ACTIONS(2038), - [anon_sym_gen] = ACTIONS(2038), - [anon_sym_if] = ACTIONS(2038), - [anon_sym_impl] = ACTIONS(2038), - [anon_sym_let] = ACTIONS(2038), - [anon_sym_loop] = ACTIONS(2038), - [anon_sym_match] = ACTIONS(2038), - [anon_sym_mod] = ACTIONS(2038), - [anon_sym_pub] = ACTIONS(2038), - [anon_sym_return] = ACTIONS(2038), - [anon_sym_static] = ACTIONS(2038), - [anon_sym_struct] = ACTIONS(2038), - [anon_sym_trait] = ACTIONS(2038), - [anon_sym_type] = ACTIONS(2038), - [anon_sym_union] = ACTIONS(2038), - [anon_sym_unsafe] = ACTIONS(2038), - [anon_sym_use] = ACTIONS(2038), - [anon_sym_while] = ACTIONS(2038), - [anon_sym_extern] = ACTIONS(2038), - [anon_sym_yield] = ACTIONS(2038), - [anon_sym_move] = ACTIONS(2038), - [anon_sym_try] = ACTIONS(2038), - [sym_integer_literal] = ACTIONS(2036), - [aux_sym_string_literal_token1] = ACTIONS(2036), - [sym_char_literal] = ACTIONS(2036), - [anon_sym_true] = ACTIONS(2038), - [anon_sym_false] = ACTIONS(2038), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2038), - [sym_super] = ACTIONS(2038), - [sym_crate] = ACTIONS(2038), - [sym_metavariable] = ACTIONS(2036), - [sym__raw_string_literal_start] = ACTIONS(2036), - [sym_float_literal] = ACTIONS(2036), - }, - [STATE(533)] = { - [sym_line_comment] = STATE(533), - [sym_block_comment] = STATE(533), - [ts_builtin_sym_end] = ACTIONS(2040), - [sym_identifier] = ACTIONS(2042), - [anon_sym_SEMI] = ACTIONS(2040), - [anon_sym_macro_rules_BANG] = ACTIONS(2040), - [anon_sym_LPAREN] = ACTIONS(2040), - [anon_sym_LBRACK] = ACTIONS(2040), - [anon_sym_LBRACE] = ACTIONS(2040), - [anon_sym_RBRACE] = ACTIONS(2040), - [anon_sym_STAR] = ACTIONS(2040), - [anon_sym_u8] = ACTIONS(2042), - [anon_sym_i8] = ACTIONS(2042), - [anon_sym_u16] = ACTIONS(2042), - [anon_sym_i16] = ACTIONS(2042), - [anon_sym_u32] = ACTIONS(2042), - [anon_sym_i32] = ACTIONS(2042), - [anon_sym_u64] = ACTIONS(2042), - [anon_sym_i64] = ACTIONS(2042), - [anon_sym_u128] = ACTIONS(2042), - [anon_sym_i128] = ACTIONS(2042), - [anon_sym_isize] = ACTIONS(2042), - [anon_sym_usize] = ACTIONS(2042), - [anon_sym_f32] = ACTIONS(2042), - [anon_sym_f64] = ACTIONS(2042), - [anon_sym_bool] = ACTIONS(2042), - [anon_sym_str] = ACTIONS(2042), - [anon_sym_char] = ACTIONS(2042), - [anon_sym_DASH] = ACTIONS(2040), - [anon_sym_BANG] = ACTIONS(2040), - [anon_sym_AMP] = ACTIONS(2040), - [anon_sym_PIPE] = ACTIONS(2040), - [anon_sym_LT] = ACTIONS(2040), - [anon_sym_DOT_DOT] = ACTIONS(2040), - [anon_sym_COLON_COLON] = ACTIONS(2040), - [anon_sym_POUND] = ACTIONS(2040), - [anon_sym_SQUOTE] = ACTIONS(2042), - [anon_sym_async] = ACTIONS(2042), - [anon_sym_break] = ACTIONS(2042), - [anon_sym_const] = ACTIONS(2042), - [anon_sym_continue] = ACTIONS(2042), - [anon_sym_default] = ACTIONS(2042), - [anon_sym_enum] = ACTIONS(2042), - [anon_sym_fn] = ACTIONS(2042), - [anon_sym_for] = ACTIONS(2042), - [anon_sym_gen] = ACTIONS(2042), - [anon_sym_if] = ACTIONS(2042), - [anon_sym_impl] = ACTIONS(2042), - [anon_sym_let] = ACTIONS(2042), - [anon_sym_loop] = ACTIONS(2042), - [anon_sym_match] = ACTIONS(2042), - [anon_sym_mod] = ACTIONS(2042), - [anon_sym_pub] = ACTIONS(2042), - [anon_sym_return] = ACTIONS(2042), - [anon_sym_static] = ACTIONS(2042), - [anon_sym_struct] = ACTIONS(2042), - [anon_sym_trait] = ACTIONS(2042), - [anon_sym_type] = ACTIONS(2042), - [anon_sym_union] = ACTIONS(2042), - [anon_sym_unsafe] = ACTIONS(2042), - [anon_sym_use] = ACTIONS(2042), - [anon_sym_while] = ACTIONS(2042), - [anon_sym_extern] = ACTIONS(2042), - [anon_sym_yield] = ACTIONS(2042), - [anon_sym_move] = ACTIONS(2042), - [anon_sym_try] = ACTIONS(2042), - [sym_integer_literal] = ACTIONS(2040), - [aux_sym_string_literal_token1] = ACTIONS(2040), - [sym_char_literal] = ACTIONS(2040), - [anon_sym_true] = ACTIONS(2042), - [anon_sym_false] = ACTIONS(2042), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2042), - [sym_super] = ACTIONS(2042), - [sym_crate] = ACTIONS(2042), - [sym_metavariable] = ACTIONS(2040), - [sym__raw_string_literal_start] = ACTIONS(2040), - [sym_float_literal] = ACTIONS(2040), - }, - [STATE(534)] = { - [sym_line_comment] = STATE(534), - [sym_block_comment] = STATE(534), - [ts_builtin_sym_end] = ACTIONS(2044), - [sym_identifier] = ACTIONS(2046), - [anon_sym_SEMI] = ACTIONS(2044), - [anon_sym_macro_rules_BANG] = ACTIONS(2044), - [anon_sym_LPAREN] = ACTIONS(2044), - [anon_sym_LBRACK] = ACTIONS(2044), - [anon_sym_LBRACE] = ACTIONS(2044), - [anon_sym_RBRACE] = ACTIONS(2044), - [anon_sym_STAR] = ACTIONS(2044), - [anon_sym_u8] = ACTIONS(2046), - [anon_sym_i8] = ACTIONS(2046), - [anon_sym_u16] = ACTIONS(2046), - [anon_sym_i16] = ACTIONS(2046), - [anon_sym_u32] = ACTIONS(2046), - [anon_sym_i32] = ACTIONS(2046), - [anon_sym_u64] = ACTIONS(2046), - [anon_sym_i64] = ACTIONS(2046), - [anon_sym_u128] = ACTIONS(2046), - [anon_sym_i128] = ACTIONS(2046), - [anon_sym_isize] = ACTIONS(2046), - [anon_sym_usize] = ACTIONS(2046), - [anon_sym_f32] = ACTIONS(2046), - [anon_sym_f64] = ACTIONS(2046), - [anon_sym_bool] = ACTIONS(2046), - [anon_sym_str] = ACTIONS(2046), - [anon_sym_char] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2044), - [anon_sym_BANG] = ACTIONS(2044), - [anon_sym_AMP] = ACTIONS(2044), - [anon_sym_PIPE] = ACTIONS(2044), - [anon_sym_LT] = ACTIONS(2044), - [anon_sym_DOT_DOT] = ACTIONS(2044), - [anon_sym_COLON_COLON] = ACTIONS(2044), - [anon_sym_POUND] = ACTIONS(2044), - [anon_sym_SQUOTE] = ACTIONS(2046), - [anon_sym_async] = ACTIONS(2046), - [anon_sym_break] = ACTIONS(2046), - [anon_sym_const] = ACTIONS(2046), - [anon_sym_continue] = ACTIONS(2046), - [anon_sym_default] = ACTIONS(2046), - [anon_sym_enum] = ACTIONS(2046), - [anon_sym_fn] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(2046), - [anon_sym_gen] = ACTIONS(2046), - [anon_sym_if] = ACTIONS(2046), - [anon_sym_impl] = ACTIONS(2046), - [anon_sym_let] = ACTIONS(2046), - [anon_sym_loop] = ACTIONS(2046), - [anon_sym_match] = ACTIONS(2046), - [anon_sym_mod] = ACTIONS(2046), - [anon_sym_pub] = ACTIONS(2046), - [anon_sym_return] = ACTIONS(2046), - [anon_sym_static] = ACTIONS(2046), - [anon_sym_struct] = ACTIONS(2046), - [anon_sym_trait] = ACTIONS(2046), - [anon_sym_type] = ACTIONS(2046), - [anon_sym_union] = ACTIONS(2046), - [anon_sym_unsafe] = ACTIONS(2046), - [anon_sym_use] = ACTIONS(2046), - [anon_sym_while] = ACTIONS(2046), - [anon_sym_extern] = ACTIONS(2046), - [anon_sym_yield] = ACTIONS(2046), - [anon_sym_move] = ACTIONS(2046), - [anon_sym_try] = ACTIONS(2046), - [sym_integer_literal] = ACTIONS(2044), - [aux_sym_string_literal_token1] = ACTIONS(2044), - [sym_char_literal] = ACTIONS(2044), - [anon_sym_true] = ACTIONS(2046), - [anon_sym_false] = ACTIONS(2046), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2046), - [sym_super] = ACTIONS(2046), - [sym_crate] = ACTIONS(2046), - [sym_metavariable] = ACTIONS(2044), - [sym__raw_string_literal_start] = ACTIONS(2044), - [sym_float_literal] = ACTIONS(2044), - }, - [STATE(535)] = { - [sym_line_comment] = STATE(535), - [sym_block_comment] = STATE(535), - [ts_builtin_sym_end] = ACTIONS(2048), - [sym_identifier] = ACTIONS(2050), - [anon_sym_SEMI] = ACTIONS(2048), - [anon_sym_macro_rules_BANG] = ACTIONS(2048), - [anon_sym_LPAREN] = ACTIONS(2048), - [anon_sym_LBRACK] = ACTIONS(2048), - [anon_sym_LBRACE] = ACTIONS(2048), - [anon_sym_RBRACE] = ACTIONS(2048), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_u8] = ACTIONS(2050), - [anon_sym_i8] = ACTIONS(2050), - [anon_sym_u16] = ACTIONS(2050), - [anon_sym_i16] = ACTIONS(2050), - [anon_sym_u32] = ACTIONS(2050), - [anon_sym_i32] = ACTIONS(2050), - [anon_sym_u64] = ACTIONS(2050), - [anon_sym_i64] = ACTIONS(2050), - [anon_sym_u128] = ACTIONS(2050), - [anon_sym_i128] = ACTIONS(2050), - [anon_sym_isize] = ACTIONS(2050), - [anon_sym_usize] = ACTIONS(2050), - [anon_sym_f32] = ACTIONS(2050), - [anon_sym_f64] = ACTIONS(2050), - [anon_sym_bool] = ACTIONS(2050), - [anon_sym_str] = ACTIONS(2050), - [anon_sym_char] = ACTIONS(2050), - [anon_sym_DASH] = ACTIONS(2048), - [anon_sym_BANG] = ACTIONS(2048), - [anon_sym_AMP] = ACTIONS(2048), - [anon_sym_PIPE] = ACTIONS(2048), - [anon_sym_LT] = ACTIONS(2048), - [anon_sym_DOT_DOT] = ACTIONS(2048), - [anon_sym_COLON_COLON] = ACTIONS(2048), - [anon_sym_POUND] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2050), - [anon_sym_async] = ACTIONS(2050), - [anon_sym_break] = ACTIONS(2050), - [anon_sym_const] = ACTIONS(2050), - [anon_sym_continue] = ACTIONS(2050), - [anon_sym_default] = ACTIONS(2050), - [anon_sym_enum] = ACTIONS(2050), - [anon_sym_fn] = ACTIONS(2050), - [anon_sym_for] = ACTIONS(2050), - [anon_sym_gen] = ACTIONS(2050), - [anon_sym_if] = ACTIONS(2050), - [anon_sym_impl] = ACTIONS(2050), - [anon_sym_let] = ACTIONS(2050), - [anon_sym_loop] = ACTIONS(2050), - [anon_sym_match] = ACTIONS(2050), - [anon_sym_mod] = ACTIONS(2050), - [anon_sym_pub] = ACTIONS(2050), - [anon_sym_return] = ACTIONS(2050), - [anon_sym_static] = ACTIONS(2050), - [anon_sym_struct] = ACTIONS(2050), - [anon_sym_trait] = ACTIONS(2050), - [anon_sym_type] = ACTIONS(2050), - [anon_sym_union] = ACTIONS(2050), - [anon_sym_unsafe] = ACTIONS(2050), - [anon_sym_use] = ACTIONS(2050), - [anon_sym_while] = ACTIONS(2050), - [anon_sym_extern] = ACTIONS(2050), - [anon_sym_yield] = ACTIONS(2050), - [anon_sym_move] = ACTIONS(2050), - [anon_sym_try] = ACTIONS(2050), - [sym_integer_literal] = ACTIONS(2048), - [aux_sym_string_literal_token1] = ACTIONS(2048), - [sym_char_literal] = ACTIONS(2048), - [anon_sym_true] = ACTIONS(2050), - [anon_sym_false] = ACTIONS(2050), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2050), - [sym_super] = ACTIONS(2050), - [sym_crate] = ACTIONS(2050), - [sym_metavariable] = ACTIONS(2048), - [sym__raw_string_literal_start] = ACTIONS(2048), - [sym_float_literal] = ACTIONS(2048), - }, - [STATE(536)] = { - [sym_line_comment] = STATE(536), - [sym_block_comment] = STATE(536), - [ts_builtin_sym_end] = ACTIONS(2052), - [sym_identifier] = ACTIONS(2054), - [anon_sym_SEMI] = ACTIONS(2052), - [anon_sym_macro_rules_BANG] = ACTIONS(2052), - [anon_sym_LPAREN] = ACTIONS(2052), - [anon_sym_LBRACK] = ACTIONS(2052), - [anon_sym_LBRACE] = ACTIONS(2052), - [anon_sym_RBRACE] = ACTIONS(2052), - [anon_sym_STAR] = ACTIONS(2052), - [anon_sym_u8] = ACTIONS(2054), - [anon_sym_i8] = ACTIONS(2054), - [anon_sym_u16] = ACTIONS(2054), - [anon_sym_i16] = ACTIONS(2054), - [anon_sym_u32] = ACTIONS(2054), - [anon_sym_i32] = ACTIONS(2054), - [anon_sym_u64] = ACTIONS(2054), - [anon_sym_i64] = ACTIONS(2054), - [anon_sym_u128] = ACTIONS(2054), - [anon_sym_i128] = ACTIONS(2054), - [anon_sym_isize] = ACTIONS(2054), - [anon_sym_usize] = ACTIONS(2054), - [anon_sym_f32] = ACTIONS(2054), - [anon_sym_f64] = ACTIONS(2054), - [anon_sym_bool] = ACTIONS(2054), - [anon_sym_str] = ACTIONS(2054), - [anon_sym_char] = ACTIONS(2054), - [anon_sym_DASH] = ACTIONS(2052), - [anon_sym_BANG] = ACTIONS(2052), - [anon_sym_AMP] = ACTIONS(2052), - [anon_sym_PIPE] = ACTIONS(2052), - [anon_sym_LT] = ACTIONS(2052), - [anon_sym_DOT_DOT] = ACTIONS(2052), - [anon_sym_COLON_COLON] = ACTIONS(2052), - [anon_sym_POUND] = ACTIONS(2052), - [anon_sym_SQUOTE] = ACTIONS(2054), - [anon_sym_async] = ACTIONS(2054), - [anon_sym_break] = ACTIONS(2054), - [anon_sym_const] = ACTIONS(2054), - [anon_sym_continue] = ACTIONS(2054), - [anon_sym_default] = ACTIONS(2054), - [anon_sym_enum] = ACTIONS(2054), - [anon_sym_fn] = ACTIONS(2054), - [anon_sym_for] = ACTIONS(2054), - [anon_sym_gen] = ACTIONS(2054), - [anon_sym_if] = ACTIONS(2054), - [anon_sym_impl] = ACTIONS(2054), - [anon_sym_let] = ACTIONS(2054), - [anon_sym_loop] = ACTIONS(2054), - [anon_sym_match] = ACTIONS(2054), - [anon_sym_mod] = ACTIONS(2054), - [anon_sym_pub] = ACTIONS(2054), - [anon_sym_return] = ACTIONS(2054), - [anon_sym_static] = ACTIONS(2054), - [anon_sym_struct] = ACTIONS(2054), - [anon_sym_trait] = ACTIONS(2054), - [anon_sym_type] = ACTIONS(2054), - [anon_sym_union] = ACTIONS(2054), - [anon_sym_unsafe] = ACTIONS(2054), - [anon_sym_use] = ACTIONS(2054), - [anon_sym_while] = ACTIONS(2054), - [anon_sym_extern] = ACTIONS(2054), - [anon_sym_yield] = ACTIONS(2054), - [anon_sym_move] = ACTIONS(2054), - [anon_sym_try] = ACTIONS(2054), - [sym_integer_literal] = ACTIONS(2052), - [aux_sym_string_literal_token1] = ACTIONS(2052), - [sym_char_literal] = ACTIONS(2052), - [anon_sym_true] = ACTIONS(2054), - [anon_sym_false] = ACTIONS(2054), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2054), - [sym_super] = ACTIONS(2054), - [sym_crate] = ACTIONS(2054), - [sym_metavariable] = ACTIONS(2052), - [sym__raw_string_literal_start] = ACTIONS(2052), - [sym_float_literal] = ACTIONS(2052), - }, - [STATE(537)] = { - [sym_line_comment] = STATE(537), - [sym_block_comment] = STATE(537), - [ts_builtin_sym_end] = ACTIONS(2056), - [sym_identifier] = ACTIONS(2058), - [anon_sym_SEMI] = ACTIONS(2056), - [anon_sym_macro_rules_BANG] = ACTIONS(2056), - [anon_sym_LPAREN] = ACTIONS(2056), - [anon_sym_LBRACK] = ACTIONS(2056), - [anon_sym_LBRACE] = ACTIONS(2056), - [anon_sym_RBRACE] = ACTIONS(2056), - [anon_sym_STAR] = ACTIONS(2056), - [anon_sym_u8] = ACTIONS(2058), - [anon_sym_i8] = ACTIONS(2058), - [anon_sym_u16] = ACTIONS(2058), - [anon_sym_i16] = ACTIONS(2058), - [anon_sym_u32] = ACTIONS(2058), - [anon_sym_i32] = ACTIONS(2058), - [anon_sym_u64] = ACTIONS(2058), - [anon_sym_i64] = ACTIONS(2058), - [anon_sym_u128] = ACTIONS(2058), - [anon_sym_i128] = ACTIONS(2058), - [anon_sym_isize] = ACTIONS(2058), - [anon_sym_usize] = ACTIONS(2058), - [anon_sym_f32] = ACTIONS(2058), - [anon_sym_f64] = ACTIONS(2058), - [anon_sym_bool] = ACTIONS(2058), - [anon_sym_str] = ACTIONS(2058), - [anon_sym_char] = ACTIONS(2058), - [anon_sym_DASH] = ACTIONS(2056), - [anon_sym_BANG] = ACTIONS(2056), - [anon_sym_AMP] = ACTIONS(2056), - [anon_sym_PIPE] = ACTIONS(2056), - [anon_sym_LT] = ACTIONS(2056), - [anon_sym_DOT_DOT] = ACTIONS(2056), - [anon_sym_COLON_COLON] = ACTIONS(2056), - [anon_sym_POUND] = ACTIONS(2056), - [anon_sym_SQUOTE] = ACTIONS(2058), - [anon_sym_async] = ACTIONS(2058), - [anon_sym_break] = ACTIONS(2058), - [anon_sym_const] = ACTIONS(2058), - [anon_sym_continue] = ACTIONS(2058), - [anon_sym_default] = ACTIONS(2058), - [anon_sym_enum] = ACTIONS(2058), - [anon_sym_fn] = ACTIONS(2058), - [anon_sym_for] = ACTIONS(2058), - [anon_sym_gen] = ACTIONS(2058), - [anon_sym_if] = ACTIONS(2058), - [anon_sym_impl] = ACTIONS(2058), - [anon_sym_let] = ACTIONS(2058), - [anon_sym_loop] = ACTIONS(2058), - [anon_sym_match] = ACTIONS(2058), - [anon_sym_mod] = ACTIONS(2058), - [anon_sym_pub] = ACTIONS(2058), - [anon_sym_return] = ACTIONS(2058), - [anon_sym_static] = ACTIONS(2058), - [anon_sym_struct] = ACTIONS(2058), - [anon_sym_trait] = ACTIONS(2058), - [anon_sym_type] = ACTIONS(2058), - [anon_sym_union] = ACTIONS(2058), - [anon_sym_unsafe] = ACTIONS(2058), - [anon_sym_use] = ACTIONS(2058), - [anon_sym_while] = ACTIONS(2058), - [anon_sym_extern] = ACTIONS(2058), - [anon_sym_yield] = ACTIONS(2058), - [anon_sym_move] = ACTIONS(2058), - [anon_sym_try] = ACTIONS(2058), - [sym_integer_literal] = ACTIONS(2056), - [aux_sym_string_literal_token1] = ACTIONS(2056), - [sym_char_literal] = ACTIONS(2056), - [anon_sym_true] = ACTIONS(2058), - [anon_sym_false] = ACTIONS(2058), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2058), - [sym_super] = ACTIONS(2058), - [sym_crate] = ACTIONS(2058), - [sym_metavariable] = ACTIONS(2056), - [sym__raw_string_literal_start] = ACTIONS(2056), - [sym_float_literal] = ACTIONS(2056), - }, - [STATE(538)] = { - [sym_line_comment] = STATE(538), - [sym_block_comment] = STATE(538), - [ts_builtin_sym_end] = ACTIONS(2060), - [sym_identifier] = ACTIONS(2062), - [anon_sym_SEMI] = ACTIONS(2060), - [anon_sym_macro_rules_BANG] = ACTIONS(2060), - [anon_sym_LPAREN] = ACTIONS(2060), - [anon_sym_LBRACK] = ACTIONS(2060), - [anon_sym_LBRACE] = ACTIONS(2060), - [anon_sym_RBRACE] = ACTIONS(2060), - [anon_sym_STAR] = ACTIONS(2060), - [anon_sym_u8] = ACTIONS(2062), - [anon_sym_i8] = ACTIONS(2062), - [anon_sym_u16] = ACTIONS(2062), - [anon_sym_i16] = ACTIONS(2062), - [anon_sym_u32] = ACTIONS(2062), - [anon_sym_i32] = ACTIONS(2062), - [anon_sym_u64] = ACTIONS(2062), - [anon_sym_i64] = ACTIONS(2062), - [anon_sym_u128] = ACTIONS(2062), - [anon_sym_i128] = ACTIONS(2062), - [anon_sym_isize] = ACTIONS(2062), - [anon_sym_usize] = ACTIONS(2062), - [anon_sym_f32] = ACTIONS(2062), - [anon_sym_f64] = ACTIONS(2062), - [anon_sym_bool] = ACTIONS(2062), - [anon_sym_str] = ACTIONS(2062), - [anon_sym_char] = ACTIONS(2062), - [anon_sym_DASH] = ACTIONS(2060), - [anon_sym_BANG] = ACTIONS(2060), - [anon_sym_AMP] = ACTIONS(2060), - [anon_sym_PIPE] = ACTIONS(2060), - [anon_sym_LT] = ACTIONS(2060), - [anon_sym_DOT_DOT] = ACTIONS(2060), - [anon_sym_COLON_COLON] = ACTIONS(2060), - [anon_sym_POUND] = ACTIONS(2060), - [anon_sym_SQUOTE] = ACTIONS(2062), - [anon_sym_async] = ACTIONS(2062), - [anon_sym_break] = ACTIONS(2062), - [anon_sym_const] = ACTIONS(2062), - [anon_sym_continue] = ACTIONS(2062), - [anon_sym_default] = ACTIONS(2062), - [anon_sym_enum] = ACTIONS(2062), - [anon_sym_fn] = ACTIONS(2062), - [anon_sym_for] = ACTIONS(2062), - [anon_sym_gen] = ACTIONS(2062), - [anon_sym_if] = ACTIONS(2062), - [anon_sym_impl] = ACTIONS(2062), - [anon_sym_let] = ACTIONS(2062), - [anon_sym_loop] = ACTIONS(2062), - [anon_sym_match] = ACTIONS(2062), - [anon_sym_mod] = ACTIONS(2062), - [anon_sym_pub] = ACTIONS(2062), - [anon_sym_return] = ACTIONS(2062), - [anon_sym_static] = ACTIONS(2062), - [anon_sym_struct] = ACTIONS(2062), - [anon_sym_trait] = ACTIONS(2062), - [anon_sym_type] = ACTIONS(2062), - [anon_sym_union] = ACTIONS(2062), - [anon_sym_unsafe] = ACTIONS(2062), - [anon_sym_use] = ACTIONS(2062), - [anon_sym_while] = ACTIONS(2062), - [anon_sym_extern] = ACTIONS(2062), - [anon_sym_yield] = ACTIONS(2062), - [anon_sym_move] = ACTIONS(2062), - [anon_sym_try] = ACTIONS(2062), - [sym_integer_literal] = ACTIONS(2060), - [aux_sym_string_literal_token1] = ACTIONS(2060), - [sym_char_literal] = ACTIONS(2060), - [anon_sym_true] = ACTIONS(2062), - [anon_sym_false] = ACTIONS(2062), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2062), - [sym_super] = ACTIONS(2062), - [sym_crate] = ACTIONS(2062), - [sym_metavariable] = ACTIONS(2060), - [sym__raw_string_literal_start] = ACTIONS(2060), - [sym_float_literal] = ACTIONS(2060), - }, - [STATE(539)] = { - [sym_line_comment] = STATE(539), - [sym_block_comment] = STATE(539), - [ts_builtin_sym_end] = ACTIONS(2064), - [sym_identifier] = ACTIONS(2066), - [anon_sym_SEMI] = ACTIONS(2064), - [anon_sym_macro_rules_BANG] = ACTIONS(2064), - [anon_sym_LPAREN] = ACTIONS(2064), - [anon_sym_LBRACK] = ACTIONS(2064), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_RBRACE] = ACTIONS(2064), - [anon_sym_STAR] = ACTIONS(2064), - [anon_sym_u8] = ACTIONS(2066), - [anon_sym_i8] = ACTIONS(2066), - [anon_sym_u16] = ACTIONS(2066), - [anon_sym_i16] = ACTIONS(2066), - [anon_sym_u32] = ACTIONS(2066), - [anon_sym_i32] = ACTIONS(2066), - [anon_sym_u64] = ACTIONS(2066), - [anon_sym_i64] = ACTIONS(2066), - [anon_sym_u128] = ACTIONS(2066), - [anon_sym_i128] = ACTIONS(2066), - [anon_sym_isize] = ACTIONS(2066), - [anon_sym_usize] = ACTIONS(2066), - [anon_sym_f32] = ACTIONS(2066), - [anon_sym_f64] = ACTIONS(2066), - [anon_sym_bool] = ACTIONS(2066), - [anon_sym_str] = ACTIONS(2066), - [anon_sym_char] = ACTIONS(2066), - [anon_sym_DASH] = ACTIONS(2064), - [anon_sym_BANG] = ACTIONS(2064), - [anon_sym_AMP] = ACTIONS(2064), - [anon_sym_PIPE] = ACTIONS(2064), - [anon_sym_LT] = ACTIONS(2064), - [anon_sym_DOT_DOT] = ACTIONS(2064), - [anon_sym_COLON_COLON] = ACTIONS(2064), - [anon_sym_POUND] = ACTIONS(2064), - [anon_sym_SQUOTE] = ACTIONS(2066), - [anon_sym_async] = ACTIONS(2066), - [anon_sym_break] = ACTIONS(2066), - [anon_sym_const] = ACTIONS(2066), - [anon_sym_continue] = ACTIONS(2066), - [anon_sym_default] = ACTIONS(2066), - [anon_sym_enum] = ACTIONS(2066), - [anon_sym_fn] = ACTIONS(2066), - [anon_sym_for] = ACTIONS(2066), - [anon_sym_gen] = ACTIONS(2066), - [anon_sym_if] = ACTIONS(2066), - [anon_sym_impl] = ACTIONS(2066), - [anon_sym_let] = ACTIONS(2066), - [anon_sym_loop] = ACTIONS(2066), - [anon_sym_match] = ACTIONS(2066), - [anon_sym_mod] = ACTIONS(2066), - [anon_sym_pub] = ACTIONS(2066), - [anon_sym_return] = ACTIONS(2066), - [anon_sym_static] = ACTIONS(2066), - [anon_sym_struct] = ACTIONS(2066), - [anon_sym_trait] = ACTIONS(2066), - [anon_sym_type] = ACTIONS(2066), - [anon_sym_union] = ACTIONS(2066), - [anon_sym_unsafe] = ACTIONS(2066), - [anon_sym_use] = ACTIONS(2066), - [anon_sym_while] = ACTIONS(2066), - [anon_sym_extern] = ACTIONS(2066), - [anon_sym_yield] = ACTIONS(2066), - [anon_sym_move] = ACTIONS(2066), - [anon_sym_try] = ACTIONS(2066), - [sym_integer_literal] = ACTIONS(2064), - [aux_sym_string_literal_token1] = ACTIONS(2064), - [sym_char_literal] = ACTIONS(2064), - [anon_sym_true] = ACTIONS(2066), - [anon_sym_false] = ACTIONS(2066), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2066), - [sym_super] = ACTIONS(2066), - [sym_crate] = ACTIONS(2066), - [sym_metavariable] = ACTIONS(2064), - [sym__raw_string_literal_start] = ACTIONS(2064), - [sym_float_literal] = ACTIONS(2064), - }, - [STATE(540)] = { - [sym_line_comment] = STATE(540), - [sym_block_comment] = STATE(540), - [ts_builtin_sym_end] = ACTIONS(2068), - [sym_identifier] = ACTIONS(2070), - [anon_sym_SEMI] = ACTIONS(2068), - [anon_sym_macro_rules_BANG] = ACTIONS(2068), - [anon_sym_LPAREN] = ACTIONS(2068), - [anon_sym_LBRACK] = ACTIONS(2068), - [anon_sym_LBRACE] = ACTIONS(2068), - [anon_sym_RBRACE] = ACTIONS(2068), - [anon_sym_STAR] = ACTIONS(2068), - [anon_sym_u8] = ACTIONS(2070), - [anon_sym_i8] = ACTIONS(2070), - [anon_sym_u16] = ACTIONS(2070), - [anon_sym_i16] = ACTIONS(2070), - [anon_sym_u32] = ACTIONS(2070), - [anon_sym_i32] = ACTIONS(2070), - [anon_sym_u64] = ACTIONS(2070), - [anon_sym_i64] = ACTIONS(2070), - [anon_sym_u128] = ACTIONS(2070), - [anon_sym_i128] = ACTIONS(2070), - [anon_sym_isize] = ACTIONS(2070), - [anon_sym_usize] = ACTIONS(2070), - [anon_sym_f32] = ACTIONS(2070), - [anon_sym_f64] = ACTIONS(2070), - [anon_sym_bool] = ACTIONS(2070), - [anon_sym_str] = ACTIONS(2070), - [anon_sym_char] = ACTIONS(2070), - [anon_sym_DASH] = ACTIONS(2068), - [anon_sym_BANG] = ACTIONS(2068), - [anon_sym_AMP] = ACTIONS(2068), - [anon_sym_PIPE] = ACTIONS(2068), - [anon_sym_LT] = ACTIONS(2068), - [anon_sym_DOT_DOT] = ACTIONS(2068), - [anon_sym_COLON_COLON] = ACTIONS(2068), - [anon_sym_POUND] = ACTIONS(2068), - [anon_sym_SQUOTE] = ACTIONS(2070), - [anon_sym_async] = ACTIONS(2070), - [anon_sym_break] = ACTIONS(2070), - [anon_sym_const] = ACTIONS(2070), - [anon_sym_continue] = ACTIONS(2070), - [anon_sym_default] = ACTIONS(2070), - [anon_sym_enum] = ACTIONS(2070), - [anon_sym_fn] = ACTIONS(2070), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_gen] = ACTIONS(2070), - [anon_sym_if] = ACTIONS(2070), - [anon_sym_impl] = ACTIONS(2070), - [anon_sym_let] = ACTIONS(2070), - [anon_sym_loop] = ACTIONS(2070), - [anon_sym_match] = ACTIONS(2070), - [anon_sym_mod] = ACTIONS(2070), - [anon_sym_pub] = ACTIONS(2070), - [anon_sym_return] = ACTIONS(2070), - [anon_sym_static] = ACTIONS(2070), - [anon_sym_struct] = ACTIONS(2070), - [anon_sym_trait] = ACTIONS(2070), - [anon_sym_type] = ACTIONS(2070), - [anon_sym_union] = ACTIONS(2070), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_use] = ACTIONS(2070), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_extern] = ACTIONS(2070), - [anon_sym_yield] = ACTIONS(2070), - [anon_sym_move] = ACTIONS(2070), - [anon_sym_try] = ACTIONS(2070), - [sym_integer_literal] = ACTIONS(2068), - [aux_sym_string_literal_token1] = ACTIONS(2068), - [sym_char_literal] = ACTIONS(2068), - [anon_sym_true] = ACTIONS(2070), - [anon_sym_false] = ACTIONS(2070), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2070), - [sym_super] = ACTIONS(2070), - [sym_crate] = ACTIONS(2070), - [sym_metavariable] = ACTIONS(2068), - [sym__raw_string_literal_start] = ACTIONS(2068), - [sym_float_literal] = ACTIONS(2068), - }, - [STATE(541)] = { - [sym_line_comment] = STATE(541), - [sym_block_comment] = STATE(541), - [ts_builtin_sym_end] = ACTIONS(2072), - [sym_identifier] = ACTIONS(2074), - [anon_sym_SEMI] = ACTIONS(2072), - [anon_sym_macro_rules_BANG] = ACTIONS(2072), - [anon_sym_LPAREN] = ACTIONS(2072), - [anon_sym_LBRACK] = ACTIONS(2072), - [anon_sym_LBRACE] = ACTIONS(2072), - [anon_sym_RBRACE] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(2072), - [anon_sym_u8] = ACTIONS(2074), - [anon_sym_i8] = ACTIONS(2074), - [anon_sym_u16] = ACTIONS(2074), - [anon_sym_i16] = ACTIONS(2074), - [anon_sym_u32] = ACTIONS(2074), - [anon_sym_i32] = ACTIONS(2074), - [anon_sym_u64] = ACTIONS(2074), - [anon_sym_i64] = ACTIONS(2074), - [anon_sym_u128] = ACTIONS(2074), - [anon_sym_i128] = ACTIONS(2074), - [anon_sym_isize] = ACTIONS(2074), - [anon_sym_usize] = ACTIONS(2074), - [anon_sym_f32] = ACTIONS(2074), - [anon_sym_f64] = ACTIONS(2074), - [anon_sym_bool] = ACTIONS(2074), - [anon_sym_str] = ACTIONS(2074), - [anon_sym_char] = ACTIONS(2074), - [anon_sym_DASH] = ACTIONS(2072), - [anon_sym_BANG] = ACTIONS(2072), - [anon_sym_AMP] = ACTIONS(2072), - [anon_sym_PIPE] = ACTIONS(2072), - [anon_sym_LT] = ACTIONS(2072), - [anon_sym_DOT_DOT] = ACTIONS(2072), - [anon_sym_COLON_COLON] = ACTIONS(2072), - [anon_sym_POUND] = ACTIONS(2072), - [anon_sym_SQUOTE] = ACTIONS(2074), - [anon_sym_async] = ACTIONS(2074), - [anon_sym_break] = ACTIONS(2074), - [anon_sym_const] = ACTIONS(2074), - [anon_sym_continue] = ACTIONS(2074), - [anon_sym_default] = ACTIONS(2074), - [anon_sym_enum] = ACTIONS(2074), - [anon_sym_fn] = ACTIONS(2074), - [anon_sym_for] = ACTIONS(2074), - [anon_sym_gen] = ACTIONS(2074), - [anon_sym_if] = ACTIONS(2074), - [anon_sym_impl] = ACTIONS(2074), - [anon_sym_let] = ACTIONS(2074), - [anon_sym_loop] = ACTIONS(2074), - [anon_sym_match] = ACTIONS(2074), - [anon_sym_mod] = ACTIONS(2074), - [anon_sym_pub] = ACTIONS(2074), - [anon_sym_return] = ACTIONS(2074), - [anon_sym_static] = ACTIONS(2074), - [anon_sym_struct] = ACTIONS(2074), - [anon_sym_trait] = ACTIONS(2074), - [anon_sym_type] = ACTIONS(2074), - [anon_sym_union] = ACTIONS(2074), - [anon_sym_unsafe] = ACTIONS(2074), - [anon_sym_use] = ACTIONS(2074), - [anon_sym_while] = ACTIONS(2074), - [anon_sym_extern] = ACTIONS(2074), - [anon_sym_yield] = ACTIONS(2074), - [anon_sym_move] = ACTIONS(2074), - [anon_sym_try] = ACTIONS(2074), - [sym_integer_literal] = ACTIONS(2072), - [aux_sym_string_literal_token1] = ACTIONS(2072), - [sym_char_literal] = ACTIONS(2072), - [anon_sym_true] = ACTIONS(2074), - [anon_sym_false] = ACTIONS(2074), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2074), - [sym_super] = ACTIONS(2074), - [sym_crate] = ACTIONS(2074), - [sym_metavariable] = ACTIONS(2072), - [sym__raw_string_literal_start] = ACTIONS(2072), - [sym_float_literal] = ACTIONS(2072), - }, - [STATE(542)] = { - [sym_line_comment] = STATE(542), - [sym_block_comment] = STATE(542), - [ts_builtin_sym_end] = ACTIONS(2076), - [sym_identifier] = ACTIONS(2078), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_macro_rules_BANG] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(2076), - [anon_sym_LBRACK] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_RBRACE] = ACTIONS(2076), - [anon_sym_STAR] = ACTIONS(2076), - [anon_sym_u8] = ACTIONS(2078), - [anon_sym_i8] = ACTIONS(2078), - [anon_sym_u16] = ACTIONS(2078), - [anon_sym_i16] = ACTIONS(2078), - [anon_sym_u32] = ACTIONS(2078), - [anon_sym_i32] = ACTIONS(2078), - [anon_sym_u64] = ACTIONS(2078), - [anon_sym_i64] = ACTIONS(2078), - [anon_sym_u128] = ACTIONS(2078), - [anon_sym_i128] = ACTIONS(2078), - [anon_sym_isize] = ACTIONS(2078), - [anon_sym_usize] = ACTIONS(2078), - [anon_sym_f32] = ACTIONS(2078), - [anon_sym_f64] = ACTIONS(2078), - [anon_sym_bool] = ACTIONS(2078), - [anon_sym_str] = ACTIONS(2078), - [anon_sym_char] = ACTIONS(2078), - [anon_sym_DASH] = ACTIONS(2076), - [anon_sym_BANG] = ACTIONS(2076), - [anon_sym_AMP] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_DOT_DOT] = ACTIONS(2076), - [anon_sym_COLON_COLON] = ACTIONS(2076), - [anon_sym_POUND] = ACTIONS(2076), - [anon_sym_SQUOTE] = ACTIONS(2078), - [anon_sym_async] = ACTIONS(2078), - [anon_sym_break] = ACTIONS(2078), - [anon_sym_const] = ACTIONS(2078), - [anon_sym_continue] = ACTIONS(2078), - [anon_sym_default] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2078), - [anon_sym_fn] = ACTIONS(2078), - [anon_sym_for] = ACTIONS(2078), - [anon_sym_gen] = ACTIONS(2078), - [anon_sym_if] = ACTIONS(2078), - [anon_sym_impl] = ACTIONS(2078), - [anon_sym_let] = ACTIONS(2078), - [anon_sym_loop] = ACTIONS(2078), - [anon_sym_match] = ACTIONS(2078), - [anon_sym_mod] = ACTIONS(2078), - [anon_sym_pub] = ACTIONS(2078), - [anon_sym_return] = ACTIONS(2078), - [anon_sym_static] = ACTIONS(2078), - [anon_sym_struct] = ACTIONS(2078), - [anon_sym_trait] = ACTIONS(2078), - [anon_sym_type] = ACTIONS(2078), - [anon_sym_union] = ACTIONS(2078), - [anon_sym_unsafe] = ACTIONS(2078), - [anon_sym_use] = ACTIONS(2078), - [anon_sym_while] = ACTIONS(2078), - [anon_sym_extern] = ACTIONS(2078), - [anon_sym_yield] = ACTIONS(2078), - [anon_sym_move] = ACTIONS(2078), - [anon_sym_try] = ACTIONS(2078), - [sym_integer_literal] = ACTIONS(2076), - [aux_sym_string_literal_token1] = ACTIONS(2076), - [sym_char_literal] = ACTIONS(2076), - [anon_sym_true] = ACTIONS(2078), - [anon_sym_false] = ACTIONS(2078), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2078), - [sym_super] = ACTIONS(2078), - [sym_crate] = ACTIONS(2078), - [sym_metavariable] = ACTIONS(2076), - [sym__raw_string_literal_start] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2076), - }, - [STATE(543)] = { - [sym_line_comment] = STATE(543), - [sym_block_comment] = STATE(543), - [ts_builtin_sym_end] = ACTIONS(2080), - [sym_identifier] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_macro_rules_BANG] = ACTIONS(2080), - [anon_sym_LPAREN] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_RBRACE] = ACTIONS(2080), - [anon_sym_STAR] = ACTIONS(2080), - [anon_sym_u8] = ACTIONS(2082), - [anon_sym_i8] = ACTIONS(2082), - [anon_sym_u16] = ACTIONS(2082), - [anon_sym_i16] = ACTIONS(2082), - [anon_sym_u32] = ACTIONS(2082), - [anon_sym_i32] = ACTIONS(2082), - [anon_sym_u64] = ACTIONS(2082), - [anon_sym_i64] = ACTIONS(2082), - [anon_sym_u128] = ACTIONS(2082), - [anon_sym_i128] = ACTIONS(2082), - [anon_sym_isize] = ACTIONS(2082), - [anon_sym_usize] = ACTIONS(2082), - [anon_sym_f32] = ACTIONS(2082), - [anon_sym_f64] = ACTIONS(2082), - [anon_sym_bool] = ACTIONS(2082), - [anon_sym_str] = ACTIONS(2082), - [anon_sym_char] = ACTIONS(2082), - [anon_sym_DASH] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2080), - [anon_sym_PIPE] = ACTIONS(2080), - [anon_sym_LT] = ACTIONS(2080), - [anon_sym_DOT_DOT] = ACTIONS(2080), - [anon_sym_COLON_COLON] = ACTIONS(2080), - [anon_sym_POUND] = ACTIONS(2080), - [anon_sym_SQUOTE] = ACTIONS(2082), - [anon_sym_async] = ACTIONS(2082), - [anon_sym_break] = ACTIONS(2082), - [anon_sym_const] = ACTIONS(2082), - [anon_sym_continue] = ACTIONS(2082), - [anon_sym_default] = ACTIONS(2082), - [anon_sym_enum] = ACTIONS(2082), - [anon_sym_fn] = ACTIONS(2082), - [anon_sym_for] = ACTIONS(2082), - [anon_sym_gen] = ACTIONS(2082), - [anon_sym_if] = ACTIONS(2082), - [anon_sym_impl] = ACTIONS(2082), - [anon_sym_let] = ACTIONS(2082), - [anon_sym_loop] = ACTIONS(2082), - [anon_sym_match] = ACTIONS(2082), - [anon_sym_mod] = ACTIONS(2082), - [anon_sym_pub] = ACTIONS(2082), - [anon_sym_return] = ACTIONS(2082), - [anon_sym_static] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(2082), - [anon_sym_trait] = ACTIONS(2082), - [anon_sym_type] = ACTIONS(2082), - [anon_sym_union] = ACTIONS(2082), - [anon_sym_unsafe] = ACTIONS(2082), - [anon_sym_use] = ACTIONS(2082), - [anon_sym_while] = ACTIONS(2082), - [anon_sym_extern] = ACTIONS(2082), - [anon_sym_yield] = ACTIONS(2082), - [anon_sym_move] = ACTIONS(2082), - [anon_sym_try] = ACTIONS(2082), - [sym_integer_literal] = ACTIONS(2080), - [aux_sym_string_literal_token1] = ACTIONS(2080), - [sym_char_literal] = ACTIONS(2080), - [anon_sym_true] = ACTIONS(2082), - [anon_sym_false] = ACTIONS(2082), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2082), - [sym_super] = ACTIONS(2082), - [sym_crate] = ACTIONS(2082), - [sym_metavariable] = ACTIONS(2080), - [sym__raw_string_literal_start] = ACTIONS(2080), - [sym_float_literal] = ACTIONS(2080), - }, - [STATE(544)] = { - [sym_line_comment] = STATE(544), - [sym_block_comment] = STATE(544), - [ts_builtin_sym_end] = ACTIONS(2084), - [sym_identifier] = ACTIONS(2086), - [anon_sym_SEMI] = ACTIONS(2084), - [anon_sym_macro_rules_BANG] = ACTIONS(2084), - [anon_sym_LPAREN] = ACTIONS(2084), - [anon_sym_LBRACK] = ACTIONS(2084), - [anon_sym_LBRACE] = ACTIONS(2084), - [anon_sym_RBRACE] = ACTIONS(2084), - [anon_sym_STAR] = ACTIONS(2084), - [anon_sym_u8] = ACTIONS(2086), - [anon_sym_i8] = ACTIONS(2086), - [anon_sym_u16] = ACTIONS(2086), - [anon_sym_i16] = ACTIONS(2086), - [anon_sym_u32] = ACTIONS(2086), - [anon_sym_i32] = ACTIONS(2086), - [anon_sym_u64] = ACTIONS(2086), - [anon_sym_i64] = ACTIONS(2086), - [anon_sym_u128] = ACTIONS(2086), - [anon_sym_i128] = ACTIONS(2086), - [anon_sym_isize] = ACTIONS(2086), - [anon_sym_usize] = ACTIONS(2086), - [anon_sym_f32] = ACTIONS(2086), - [anon_sym_f64] = ACTIONS(2086), - [anon_sym_bool] = ACTIONS(2086), - [anon_sym_str] = ACTIONS(2086), - [anon_sym_char] = ACTIONS(2086), - [anon_sym_DASH] = ACTIONS(2084), - [anon_sym_BANG] = ACTIONS(2084), - [anon_sym_AMP] = ACTIONS(2084), - [anon_sym_PIPE] = ACTIONS(2084), - [anon_sym_LT] = ACTIONS(2084), - [anon_sym_DOT_DOT] = ACTIONS(2084), - [anon_sym_COLON_COLON] = ACTIONS(2084), - [anon_sym_POUND] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [anon_sym_async] = ACTIONS(2086), - [anon_sym_break] = ACTIONS(2086), - [anon_sym_const] = ACTIONS(2086), - [anon_sym_continue] = ACTIONS(2086), - [anon_sym_default] = ACTIONS(2086), - [anon_sym_enum] = ACTIONS(2086), - [anon_sym_fn] = ACTIONS(2086), - [anon_sym_for] = ACTIONS(2086), - [anon_sym_gen] = ACTIONS(2086), - [anon_sym_if] = ACTIONS(2086), - [anon_sym_impl] = ACTIONS(2086), - [anon_sym_let] = ACTIONS(2086), - [anon_sym_loop] = ACTIONS(2086), - [anon_sym_match] = ACTIONS(2086), - [anon_sym_mod] = ACTIONS(2086), - [anon_sym_pub] = ACTIONS(2086), - [anon_sym_return] = ACTIONS(2086), - [anon_sym_static] = ACTIONS(2086), - [anon_sym_struct] = ACTIONS(2086), - [anon_sym_trait] = ACTIONS(2086), - [anon_sym_type] = ACTIONS(2086), - [anon_sym_union] = ACTIONS(2086), - [anon_sym_unsafe] = ACTIONS(2086), - [anon_sym_use] = ACTIONS(2086), - [anon_sym_while] = ACTIONS(2086), - [anon_sym_extern] = ACTIONS(2086), - [anon_sym_yield] = ACTIONS(2086), - [anon_sym_move] = ACTIONS(2086), - [anon_sym_try] = ACTIONS(2086), - [sym_integer_literal] = ACTIONS(2084), - [aux_sym_string_literal_token1] = ACTIONS(2084), - [sym_char_literal] = ACTIONS(2084), - [anon_sym_true] = ACTIONS(2086), - [anon_sym_false] = ACTIONS(2086), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2086), - [sym_super] = ACTIONS(2086), - [sym_crate] = ACTIONS(2086), - [sym_metavariable] = ACTIONS(2084), - [sym__raw_string_literal_start] = ACTIONS(2084), - [sym_float_literal] = ACTIONS(2084), - }, - [STATE(545)] = { - [sym_empty_statement] = STATE(1170), - [sym_macro_definition] = STATE(1170), - [sym_attribute_item] = STATE(1170), - [sym_inner_attribute_item] = STATE(1170), - [sym_mod_item] = STATE(1170), - [sym_foreign_mod_item] = STATE(1170), - [sym_struct_item] = STATE(1170), - [sym_union_item] = STATE(1170), - [sym_enum_item] = STATE(1170), - [sym_extern_crate_declaration] = STATE(1170), - [sym_const_item] = STATE(1170), - [sym_static_item] = STATE(1170), - [sym_type_item] = STATE(1170), - [sym_function_item] = STATE(1170), - [sym_function_signature_item] = STATE(1170), - [sym_function_modifiers] = STATE(3781), - [sym_impl_item] = STATE(1170), - [sym_trait_item] = STATE(1170), - [sym_associated_type] = STATE(1170), - [sym_let_declaration] = STATE(1170), - [sym_use_declaration] = STATE(1170), - [sym_extern_modifier] = STATE(2235), - [sym_visibility_modifier] = STATE(2021), - [sym_bracketed_type] = STATE(3732), - [sym_generic_type_with_turbofish] = STATE(3800), - [sym_macro_invocation] = STATE(1170), - [sym_scoped_identifier] = STATE(3326), - [sym_line_comment] = STATE(545), - [sym_block_comment] = STATE(545), - [aux_sym_declaration_list_repeat1] = STATE(531), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2090), - [anon_sym_macro_rules_BANG] = ACTIONS(2092), - [anon_sym_RBRACE] = ACTIONS(2094), - [anon_sym_u8] = ACTIONS(2096), - [anon_sym_i8] = ACTIONS(2096), - [anon_sym_u16] = ACTIONS(2096), - [anon_sym_i16] = ACTIONS(2096), - [anon_sym_u32] = ACTIONS(2096), - [anon_sym_i32] = ACTIONS(2096), - [anon_sym_u64] = ACTIONS(2096), - [anon_sym_i64] = ACTIONS(2096), - [anon_sym_u128] = ACTIONS(2096), - [anon_sym_i128] = ACTIONS(2096), - [anon_sym_isize] = ACTIONS(2096), - [anon_sym_usize] = ACTIONS(2096), - [anon_sym_f32] = ACTIONS(2096), - [anon_sym_f64] = ACTIONS(2096), - [anon_sym_bool] = ACTIONS(2096), - [anon_sym_str] = ACTIONS(2096), - [anon_sym_char] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2098), - [anon_sym_POUND] = ACTIONS(2100), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(2102), - [anon_sym_default] = ACTIONS(2104), - [anon_sym_enum] = ACTIONS(2106), - [anon_sym_fn] = ACTIONS(2108), - [anon_sym_gen] = ACTIONS(2110), - [anon_sym_impl] = ACTIONS(2112), - [anon_sym_let] = ACTIONS(2114), - [anon_sym_mod] = ACTIONS(2116), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2118), - [anon_sym_struct] = ACTIONS(2120), - [anon_sym_trait] = ACTIONS(2122), - [anon_sym_type] = ACTIONS(2124), - [anon_sym_union] = ACTIONS(2126), - [anon_sym_unsafe] = ACTIONS(2128), - [anon_sym_use] = ACTIONS(2130), - [anon_sym_extern] = ACTIONS(2132), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2134), - [sym_super] = ACTIONS(2134), - [sym_crate] = ACTIONS(2136), - [sym_metavariable] = ACTIONS(2138), - }, - [STATE(546)] = { - [sym_line_comment] = STATE(546), - [sym_block_comment] = STATE(546), - [ts_builtin_sym_end] = ACTIONS(2140), - [sym_identifier] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_macro_rules_BANG] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_u8] = ACTIONS(2142), - [anon_sym_i8] = ACTIONS(2142), - [anon_sym_u16] = ACTIONS(2142), - [anon_sym_i16] = ACTIONS(2142), - [anon_sym_u32] = ACTIONS(2142), - [anon_sym_i32] = ACTIONS(2142), - [anon_sym_u64] = ACTIONS(2142), - [anon_sym_i64] = ACTIONS(2142), - [anon_sym_u128] = ACTIONS(2142), - [anon_sym_i128] = ACTIONS(2142), - [anon_sym_isize] = ACTIONS(2142), - [anon_sym_usize] = ACTIONS(2142), - [anon_sym_f32] = ACTIONS(2142), - [anon_sym_f64] = ACTIONS(2142), - [anon_sym_bool] = ACTIONS(2142), - [anon_sym_str] = ACTIONS(2142), - [anon_sym_char] = ACTIONS(2142), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_BANG] = ACTIONS(2140), - [anon_sym_AMP] = ACTIONS(2140), - [anon_sym_PIPE] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2140), - [anon_sym_DOT_DOT] = ACTIONS(2140), - [anon_sym_COLON_COLON] = ACTIONS(2140), - [anon_sym_POUND] = ACTIONS(2140), - [anon_sym_SQUOTE] = ACTIONS(2142), - [anon_sym_async] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_default] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [anon_sym_fn] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_gen] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_impl] = ACTIONS(2142), - [anon_sym_let] = ACTIONS(2142), - [anon_sym_loop] = ACTIONS(2142), - [anon_sym_match] = ACTIONS(2142), - [anon_sym_mod] = ACTIONS(2142), - [anon_sym_pub] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_struct] = ACTIONS(2142), - [anon_sym_trait] = ACTIONS(2142), - [anon_sym_type] = ACTIONS(2142), - [anon_sym_union] = ACTIONS(2142), - [anon_sym_unsafe] = ACTIONS(2142), - [anon_sym_use] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_extern] = ACTIONS(2142), - [anon_sym_yield] = ACTIONS(2142), - [anon_sym_move] = ACTIONS(2142), - [anon_sym_try] = ACTIONS(2142), - [sym_integer_literal] = ACTIONS(2140), - [aux_sym_string_literal_token1] = ACTIONS(2140), - [sym_char_literal] = ACTIONS(2140), - [anon_sym_true] = ACTIONS(2142), - [anon_sym_false] = ACTIONS(2142), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2142), - [sym_super] = ACTIONS(2142), - [sym_crate] = ACTIONS(2142), - [sym_metavariable] = ACTIONS(2140), - [sym__raw_string_literal_start] = ACTIONS(2140), - [sym_float_literal] = ACTIONS(2140), - }, - [STATE(547)] = { - [sym_line_comment] = STATE(547), - [sym_block_comment] = STATE(547), - [ts_builtin_sym_end] = ACTIONS(2144), - [sym_identifier] = ACTIONS(2146), - [anon_sym_SEMI] = ACTIONS(2144), - [anon_sym_macro_rules_BANG] = ACTIONS(2144), - [anon_sym_LPAREN] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_LBRACE] = ACTIONS(2144), - [anon_sym_RBRACE] = ACTIONS(2144), - [anon_sym_STAR] = ACTIONS(2144), - [anon_sym_u8] = ACTIONS(2146), - [anon_sym_i8] = ACTIONS(2146), - [anon_sym_u16] = ACTIONS(2146), - [anon_sym_i16] = ACTIONS(2146), - [anon_sym_u32] = ACTIONS(2146), - [anon_sym_i32] = ACTIONS(2146), - [anon_sym_u64] = ACTIONS(2146), - [anon_sym_i64] = ACTIONS(2146), - [anon_sym_u128] = ACTIONS(2146), - [anon_sym_i128] = ACTIONS(2146), - [anon_sym_isize] = ACTIONS(2146), - [anon_sym_usize] = ACTIONS(2146), - [anon_sym_f32] = ACTIONS(2146), - [anon_sym_f64] = ACTIONS(2146), - [anon_sym_bool] = ACTIONS(2146), - [anon_sym_str] = ACTIONS(2146), - [anon_sym_char] = ACTIONS(2146), - [anon_sym_DASH] = ACTIONS(2144), - [anon_sym_BANG] = ACTIONS(2144), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym_PIPE] = ACTIONS(2144), - [anon_sym_LT] = ACTIONS(2144), - [anon_sym_DOT_DOT] = ACTIONS(2144), - [anon_sym_COLON_COLON] = ACTIONS(2144), - [anon_sym_POUND] = ACTIONS(2144), - [anon_sym_SQUOTE] = ACTIONS(2146), - [anon_sym_async] = ACTIONS(2146), - [anon_sym_break] = ACTIONS(2146), - [anon_sym_const] = ACTIONS(2146), - [anon_sym_continue] = ACTIONS(2146), - [anon_sym_default] = ACTIONS(2146), - [anon_sym_enum] = ACTIONS(2146), - [anon_sym_fn] = ACTIONS(2146), - [anon_sym_for] = ACTIONS(2146), - [anon_sym_gen] = ACTIONS(2146), - [anon_sym_if] = ACTIONS(2146), - [anon_sym_impl] = ACTIONS(2146), - [anon_sym_let] = ACTIONS(2146), - [anon_sym_loop] = ACTIONS(2146), - [anon_sym_match] = ACTIONS(2146), - [anon_sym_mod] = ACTIONS(2146), - [anon_sym_pub] = ACTIONS(2146), - [anon_sym_return] = ACTIONS(2146), - [anon_sym_static] = ACTIONS(2146), - [anon_sym_struct] = ACTIONS(2146), - [anon_sym_trait] = ACTIONS(2146), - [anon_sym_type] = ACTIONS(2146), - [anon_sym_union] = ACTIONS(2146), - [anon_sym_unsafe] = ACTIONS(2146), - [anon_sym_use] = ACTIONS(2146), - [anon_sym_while] = ACTIONS(2146), - [anon_sym_extern] = ACTIONS(2146), - [anon_sym_yield] = ACTIONS(2146), - [anon_sym_move] = ACTIONS(2146), - [anon_sym_try] = ACTIONS(2146), - [sym_integer_literal] = ACTIONS(2144), - [aux_sym_string_literal_token1] = ACTIONS(2144), - [sym_char_literal] = ACTIONS(2144), - [anon_sym_true] = ACTIONS(2146), - [anon_sym_false] = ACTIONS(2146), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2146), - [sym_super] = ACTIONS(2146), - [sym_crate] = ACTIONS(2146), - [sym_metavariable] = ACTIONS(2144), - [sym__raw_string_literal_start] = ACTIONS(2144), - [sym_float_literal] = ACTIONS(2144), - }, - [STATE(548)] = { - [sym_line_comment] = STATE(548), - [sym_block_comment] = STATE(548), - [ts_builtin_sym_end] = ACTIONS(2148), - [sym_identifier] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2148), - [anon_sym_macro_rules_BANG] = ACTIONS(2148), - [anon_sym_LPAREN] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(2148), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_RBRACE] = ACTIONS(2148), - [anon_sym_STAR] = ACTIONS(2148), - [anon_sym_u8] = ACTIONS(2150), - [anon_sym_i8] = ACTIONS(2150), - [anon_sym_u16] = ACTIONS(2150), - [anon_sym_i16] = ACTIONS(2150), - [anon_sym_u32] = ACTIONS(2150), - [anon_sym_i32] = ACTIONS(2150), - [anon_sym_u64] = ACTIONS(2150), - [anon_sym_i64] = ACTIONS(2150), - [anon_sym_u128] = ACTIONS(2150), - [anon_sym_i128] = ACTIONS(2150), - [anon_sym_isize] = ACTIONS(2150), - [anon_sym_usize] = ACTIONS(2150), - [anon_sym_f32] = ACTIONS(2150), - [anon_sym_f64] = ACTIONS(2150), - [anon_sym_bool] = ACTIONS(2150), - [anon_sym_str] = ACTIONS(2150), - [anon_sym_char] = ACTIONS(2150), - [anon_sym_DASH] = ACTIONS(2148), - [anon_sym_BANG] = ACTIONS(2148), - [anon_sym_AMP] = ACTIONS(2148), - [anon_sym_PIPE] = ACTIONS(2148), - [anon_sym_LT] = ACTIONS(2148), - [anon_sym_DOT_DOT] = ACTIONS(2148), - [anon_sym_COLON_COLON] = ACTIONS(2148), - [anon_sym_POUND] = ACTIONS(2148), - [anon_sym_SQUOTE] = ACTIONS(2150), - [anon_sym_async] = ACTIONS(2150), - [anon_sym_break] = ACTIONS(2150), - [anon_sym_const] = ACTIONS(2150), - [anon_sym_continue] = ACTIONS(2150), - [anon_sym_default] = ACTIONS(2150), - [anon_sym_enum] = ACTIONS(2150), - [anon_sym_fn] = ACTIONS(2150), - [anon_sym_for] = ACTIONS(2150), - [anon_sym_gen] = ACTIONS(2150), - [anon_sym_if] = ACTIONS(2150), - [anon_sym_impl] = ACTIONS(2150), - [anon_sym_let] = ACTIONS(2150), - [anon_sym_loop] = ACTIONS(2150), - [anon_sym_match] = ACTIONS(2150), - [anon_sym_mod] = ACTIONS(2150), - [anon_sym_pub] = ACTIONS(2150), - [anon_sym_return] = ACTIONS(2150), - [anon_sym_static] = ACTIONS(2150), - [anon_sym_struct] = ACTIONS(2150), - [anon_sym_trait] = ACTIONS(2150), - [anon_sym_type] = ACTIONS(2150), - [anon_sym_union] = ACTIONS(2150), - [anon_sym_unsafe] = ACTIONS(2150), - [anon_sym_use] = ACTIONS(2150), - [anon_sym_while] = ACTIONS(2150), - [anon_sym_extern] = ACTIONS(2150), - [anon_sym_yield] = ACTIONS(2150), - [anon_sym_move] = ACTIONS(2150), - [anon_sym_try] = ACTIONS(2150), - [sym_integer_literal] = ACTIONS(2148), - [aux_sym_string_literal_token1] = ACTIONS(2148), - [sym_char_literal] = ACTIONS(2148), - [anon_sym_true] = ACTIONS(2150), - [anon_sym_false] = ACTIONS(2150), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2150), - [sym_super] = ACTIONS(2150), - [sym_crate] = ACTIONS(2150), - [sym_metavariable] = ACTIONS(2148), - [sym__raw_string_literal_start] = ACTIONS(2148), - [sym_float_literal] = ACTIONS(2148), - }, - [STATE(549)] = { - [sym_line_comment] = STATE(549), - [sym_block_comment] = STATE(549), - [ts_builtin_sym_end] = ACTIONS(2152), - [sym_identifier] = ACTIONS(2154), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_macro_rules_BANG] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_RBRACE] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(2152), - [anon_sym_u8] = ACTIONS(2154), - [anon_sym_i8] = ACTIONS(2154), - [anon_sym_u16] = ACTIONS(2154), - [anon_sym_i16] = ACTIONS(2154), - [anon_sym_u32] = ACTIONS(2154), - [anon_sym_i32] = ACTIONS(2154), - [anon_sym_u64] = ACTIONS(2154), - [anon_sym_i64] = ACTIONS(2154), - [anon_sym_u128] = ACTIONS(2154), - [anon_sym_i128] = ACTIONS(2154), - [anon_sym_isize] = ACTIONS(2154), - [anon_sym_usize] = ACTIONS(2154), - [anon_sym_f32] = ACTIONS(2154), - [anon_sym_f64] = ACTIONS(2154), - [anon_sym_bool] = ACTIONS(2154), - [anon_sym_str] = ACTIONS(2154), - [anon_sym_char] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2152), - [anon_sym_AMP] = ACTIONS(2152), - [anon_sym_PIPE] = ACTIONS(2152), - [anon_sym_LT] = ACTIONS(2152), - [anon_sym_DOT_DOT] = ACTIONS(2152), - [anon_sym_COLON_COLON] = ACTIONS(2152), - [anon_sym_POUND] = ACTIONS(2152), - [anon_sym_SQUOTE] = ACTIONS(2154), - [anon_sym_async] = ACTIONS(2154), - [anon_sym_break] = ACTIONS(2154), - [anon_sym_const] = ACTIONS(2154), - [anon_sym_continue] = ACTIONS(2154), - [anon_sym_default] = ACTIONS(2154), - [anon_sym_enum] = ACTIONS(2154), - [anon_sym_fn] = ACTIONS(2154), - [anon_sym_for] = ACTIONS(2154), - [anon_sym_gen] = ACTIONS(2154), - [anon_sym_if] = ACTIONS(2154), - [anon_sym_impl] = ACTIONS(2154), - [anon_sym_let] = ACTIONS(2154), - [anon_sym_loop] = ACTIONS(2154), - [anon_sym_match] = ACTIONS(2154), - [anon_sym_mod] = ACTIONS(2154), - [anon_sym_pub] = ACTIONS(2154), - [anon_sym_return] = ACTIONS(2154), - [anon_sym_static] = ACTIONS(2154), - [anon_sym_struct] = ACTIONS(2154), - [anon_sym_trait] = ACTIONS(2154), - [anon_sym_type] = ACTIONS(2154), - [anon_sym_union] = ACTIONS(2154), - [anon_sym_unsafe] = ACTIONS(2154), - [anon_sym_use] = ACTIONS(2154), - [anon_sym_while] = ACTIONS(2154), - [anon_sym_extern] = ACTIONS(2154), - [anon_sym_yield] = ACTIONS(2154), - [anon_sym_move] = ACTIONS(2154), - [anon_sym_try] = ACTIONS(2154), - [sym_integer_literal] = ACTIONS(2152), - [aux_sym_string_literal_token1] = ACTIONS(2152), - [sym_char_literal] = ACTIONS(2152), - [anon_sym_true] = ACTIONS(2154), - [anon_sym_false] = ACTIONS(2154), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2154), - [sym_super] = ACTIONS(2154), - [sym_crate] = ACTIONS(2154), - [sym_metavariable] = ACTIONS(2152), - [sym__raw_string_literal_start] = ACTIONS(2152), - [sym_float_literal] = ACTIONS(2152), - }, [STATE(550)] = { - [sym_empty_statement] = STATE(1170), - [sym_macro_definition] = STATE(1170), - [sym_attribute_item] = STATE(1170), - [sym_inner_attribute_item] = STATE(1170), - [sym_mod_item] = STATE(1170), - [sym_foreign_mod_item] = STATE(1170), - [sym_struct_item] = STATE(1170), - [sym_union_item] = STATE(1170), - [sym_enum_item] = STATE(1170), - [sym_extern_crate_declaration] = STATE(1170), - [sym_const_item] = STATE(1170), - [sym_static_item] = STATE(1170), - [sym_type_item] = STATE(1170), - [sym_function_item] = STATE(1170), - [sym_function_signature_item] = STATE(1170), - [sym_function_modifiers] = STATE(3781), - [sym_impl_item] = STATE(1170), - [sym_trait_item] = STATE(1170), - [sym_associated_type] = STATE(1170), - [sym_let_declaration] = STATE(1170), - [sym_use_declaration] = STATE(1170), - [sym_extern_modifier] = STATE(2235), - [sym_visibility_modifier] = STATE(2021), - [sym_bracketed_type] = STATE(3732), - [sym_generic_type_with_turbofish] = STATE(3800), - [sym_macro_invocation] = STATE(1170), - [sym_scoped_identifier] = STATE(3326), [sym_line_comment] = STATE(550), [sym_block_comment] = STATE(550), - [aux_sym_declaration_list_repeat1] = STATE(545), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2090), - [anon_sym_macro_rules_BANG] = ACTIONS(2092), - [anon_sym_RBRACE] = ACTIONS(2156), - [anon_sym_u8] = ACTIONS(2096), - [anon_sym_i8] = ACTIONS(2096), - [anon_sym_u16] = ACTIONS(2096), - [anon_sym_i16] = ACTIONS(2096), - [anon_sym_u32] = ACTIONS(2096), - [anon_sym_i32] = ACTIONS(2096), - [anon_sym_u64] = ACTIONS(2096), - [anon_sym_i64] = ACTIONS(2096), - [anon_sym_u128] = ACTIONS(2096), - [anon_sym_i128] = ACTIONS(2096), - [anon_sym_isize] = ACTIONS(2096), - [anon_sym_usize] = ACTIONS(2096), - [anon_sym_f32] = ACTIONS(2096), - [anon_sym_f64] = ACTIONS(2096), - [anon_sym_bool] = ACTIONS(2096), - [anon_sym_str] = ACTIONS(2096), - [anon_sym_char] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2098), - [anon_sym_POUND] = ACTIONS(2100), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(2102), - [anon_sym_default] = ACTIONS(2104), - [anon_sym_enum] = ACTIONS(2106), - [anon_sym_fn] = ACTIONS(2108), - [anon_sym_gen] = ACTIONS(2110), - [anon_sym_impl] = ACTIONS(2112), - [anon_sym_let] = ACTIONS(2114), - [anon_sym_mod] = ACTIONS(2116), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2118), - [anon_sym_struct] = ACTIONS(2120), - [anon_sym_trait] = ACTIONS(2122), - [anon_sym_type] = ACTIONS(2124), - [anon_sym_union] = ACTIONS(2126), - [anon_sym_unsafe] = ACTIONS(2128), - [anon_sym_use] = ACTIONS(2130), - [anon_sym_extern] = ACTIONS(2132), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2134), - [sym_super] = ACTIONS(2134), - [sym_crate] = ACTIONS(2136), - [sym_metavariable] = ACTIONS(2138), + [ts_builtin_sym_end] = ACTIONS(1950), + [sym_identifier] = ACTIONS(1952), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_macro_rules_BANG] = ACTIONS(1950), + [anon_sym_LPAREN] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_RBRACE] = ACTIONS(1950), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_u8] = ACTIONS(1952), + [anon_sym_i8] = ACTIONS(1952), + [anon_sym_u16] = ACTIONS(1952), + [anon_sym_i16] = ACTIONS(1952), + [anon_sym_u32] = ACTIONS(1952), + [anon_sym_i32] = ACTIONS(1952), + [anon_sym_u64] = ACTIONS(1952), + [anon_sym_i64] = ACTIONS(1952), + [anon_sym_u128] = ACTIONS(1952), + [anon_sym_i128] = ACTIONS(1952), + [anon_sym_isize] = ACTIONS(1952), + [anon_sym_usize] = ACTIONS(1952), + [anon_sym_f32] = ACTIONS(1952), + [anon_sym_f64] = ACTIONS(1952), + [anon_sym_bool] = ACTIONS(1952), + [anon_sym_str] = ACTIONS(1952), + [anon_sym_char] = ACTIONS(1952), + [anon_sym_DASH] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_PIPE] = ACTIONS(1950), + [anon_sym_LT] = ACTIONS(1950), + [anon_sym_DOT_DOT] = ACTIONS(1950), + [anon_sym_COLON_COLON] = ACTIONS(1950), + [anon_sym_POUND] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1952), + [anon_sym_async] = ACTIONS(1952), + [anon_sym_break] = ACTIONS(1952), + [anon_sym_const] = ACTIONS(1952), + [anon_sym_continue] = ACTIONS(1952), + [anon_sym_default] = ACTIONS(1952), + [anon_sym_enum] = ACTIONS(1952), + [anon_sym_fn] = ACTIONS(1952), + [anon_sym_for] = ACTIONS(1952), + [anon_sym_gen] = ACTIONS(1952), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_impl] = ACTIONS(1952), + [anon_sym_let] = ACTIONS(1952), + [anon_sym_loop] = ACTIONS(1952), + [anon_sym_match] = ACTIONS(1952), + [anon_sym_mod] = ACTIONS(1952), + [anon_sym_pub] = ACTIONS(1952), + [anon_sym_return] = ACTIONS(1952), + [anon_sym_static] = ACTIONS(1952), + [anon_sym_struct] = ACTIONS(1952), + [anon_sym_trait] = ACTIONS(1952), + [anon_sym_type] = ACTIONS(1952), + [anon_sym_union] = ACTIONS(1952), + [anon_sym_unsafe] = ACTIONS(1952), + [anon_sym_use] = ACTIONS(1952), + [anon_sym_while] = ACTIONS(1952), + [anon_sym_extern] = ACTIONS(1952), + [anon_sym_yield] = ACTIONS(1952), + [anon_sym_move] = ACTIONS(1952), + [anon_sym_try] = ACTIONS(1952), + [sym_integer_literal] = ACTIONS(1950), + [aux_sym_string_literal_token1] = ACTIONS(1950), + [sym_char_literal] = ACTIONS(1950), + [anon_sym_true] = ACTIONS(1952), + [anon_sym_false] = ACTIONS(1952), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1952), + [sym_super] = ACTIONS(1952), + [sym_crate] = ACTIONS(1952), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1950), + [sym_float_literal] = ACTIONS(1950), }, [STATE(551)] = { [sym_line_comment] = STATE(551), [sym_block_comment] = STATE(551), - [ts_builtin_sym_end] = ACTIONS(2158), - [sym_identifier] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2158), - [anon_sym_macro_rules_BANG] = ACTIONS(2158), - [anon_sym_LPAREN] = ACTIONS(2158), - [anon_sym_LBRACK] = ACTIONS(2158), - [anon_sym_LBRACE] = ACTIONS(2158), - [anon_sym_RBRACE] = ACTIONS(2158), - [anon_sym_STAR] = ACTIONS(2158), - [anon_sym_u8] = ACTIONS(2160), - [anon_sym_i8] = ACTIONS(2160), - [anon_sym_u16] = ACTIONS(2160), - [anon_sym_i16] = ACTIONS(2160), - [anon_sym_u32] = ACTIONS(2160), - [anon_sym_i32] = ACTIONS(2160), - [anon_sym_u64] = ACTIONS(2160), - [anon_sym_i64] = ACTIONS(2160), - [anon_sym_u128] = ACTIONS(2160), - [anon_sym_i128] = ACTIONS(2160), - [anon_sym_isize] = ACTIONS(2160), - [anon_sym_usize] = ACTIONS(2160), - [anon_sym_f32] = ACTIONS(2160), - [anon_sym_f64] = ACTIONS(2160), - [anon_sym_bool] = ACTIONS(2160), - [anon_sym_str] = ACTIONS(2160), - [anon_sym_char] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2158), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_AMP] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_DOT_DOT] = ACTIONS(2158), - [anon_sym_COLON_COLON] = ACTIONS(2158), - [anon_sym_POUND] = ACTIONS(2158), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_default] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), - [anon_sym_fn] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_gen] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_impl] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_loop] = ACTIONS(2160), - [anon_sym_match] = ACTIONS(2160), - [anon_sym_mod] = ACTIONS(2160), - [anon_sym_pub] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_struct] = ACTIONS(2160), - [anon_sym_trait] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_union] = ACTIONS(2160), - [anon_sym_unsafe] = ACTIONS(2160), - [anon_sym_use] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_extern] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_move] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [sym_integer_literal] = ACTIONS(2158), - [aux_sym_string_literal_token1] = ACTIONS(2158), - [sym_char_literal] = ACTIONS(2158), - [anon_sym_true] = ACTIONS(2160), - [anon_sym_false] = ACTIONS(2160), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_crate] = ACTIONS(2160), - [sym_metavariable] = ACTIONS(2158), - [sym__raw_string_literal_start] = ACTIONS(2158), - [sym_float_literal] = ACTIONS(2158), + [ts_builtin_sym_end] = ACTIONS(1954), + [sym_identifier] = ACTIONS(1956), + [anon_sym_SEMI] = ACTIONS(1954), + [anon_sym_macro_rules_BANG] = ACTIONS(1954), + [anon_sym_LPAREN] = ACTIONS(1954), + [anon_sym_LBRACK] = ACTIONS(1954), + [anon_sym_LBRACE] = ACTIONS(1954), + [anon_sym_RBRACE] = ACTIONS(1954), + [anon_sym_STAR] = ACTIONS(1954), + [anon_sym_u8] = ACTIONS(1956), + [anon_sym_i8] = ACTIONS(1956), + [anon_sym_u16] = ACTIONS(1956), + [anon_sym_i16] = ACTIONS(1956), + [anon_sym_u32] = ACTIONS(1956), + [anon_sym_i32] = ACTIONS(1956), + [anon_sym_u64] = ACTIONS(1956), + [anon_sym_i64] = ACTIONS(1956), + [anon_sym_u128] = ACTIONS(1956), + [anon_sym_i128] = ACTIONS(1956), + [anon_sym_isize] = ACTIONS(1956), + [anon_sym_usize] = ACTIONS(1956), + [anon_sym_f32] = ACTIONS(1956), + [anon_sym_f64] = ACTIONS(1956), + [anon_sym_bool] = ACTIONS(1956), + [anon_sym_str] = ACTIONS(1956), + [anon_sym_char] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1954), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_AMP] = ACTIONS(1954), + [anon_sym_PIPE] = ACTIONS(1954), + [anon_sym_LT] = ACTIONS(1954), + [anon_sym_DOT_DOT] = ACTIONS(1954), + [anon_sym_COLON_COLON] = ACTIONS(1954), + [anon_sym_POUND] = ACTIONS(1954), + [anon_sym_SQUOTE] = ACTIONS(1956), + [anon_sym_async] = ACTIONS(1956), + [anon_sym_break] = ACTIONS(1956), + [anon_sym_const] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(1956), + [anon_sym_default] = ACTIONS(1956), + [anon_sym_enum] = ACTIONS(1956), + [anon_sym_fn] = ACTIONS(1956), + [anon_sym_for] = ACTIONS(1956), + [anon_sym_gen] = ACTIONS(1956), + [anon_sym_if] = ACTIONS(1956), + [anon_sym_impl] = ACTIONS(1956), + [anon_sym_let] = ACTIONS(1956), + [anon_sym_loop] = ACTIONS(1956), + [anon_sym_match] = ACTIONS(1956), + [anon_sym_mod] = ACTIONS(1956), + [anon_sym_pub] = ACTIONS(1956), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_static] = ACTIONS(1956), + [anon_sym_struct] = ACTIONS(1956), + [anon_sym_trait] = ACTIONS(1956), + [anon_sym_type] = ACTIONS(1956), + [anon_sym_union] = ACTIONS(1956), + [anon_sym_unsafe] = ACTIONS(1956), + [anon_sym_use] = ACTIONS(1956), + [anon_sym_while] = ACTIONS(1956), + [anon_sym_extern] = ACTIONS(1956), + [anon_sym_yield] = ACTIONS(1956), + [anon_sym_move] = ACTIONS(1956), + [anon_sym_try] = ACTIONS(1956), + [sym_integer_literal] = ACTIONS(1954), + [aux_sym_string_literal_token1] = ACTIONS(1954), + [sym_char_literal] = ACTIONS(1954), + [anon_sym_true] = ACTIONS(1956), + [anon_sym_false] = ACTIONS(1956), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1956), + [sym_super] = ACTIONS(1956), + [sym_crate] = ACTIONS(1956), + [sym_metavariable] = ACTIONS(1954), + [sym__raw_string_literal_start] = ACTIONS(1954), + [sym_float_literal] = ACTIONS(1954), }, [STATE(552)] = { [sym_line_comment] = STATE(552), [sym_block_comment] = STATE(552), - [ts_builtin_sym_end] = ACTIONS(2162), - [sym_identifier] = ACTIONS(2164), - [anon_sym_SEMI] = ACTIONS(2162), - [anon_sym_macro_rules_BANG] = ACTIONS(2162), - [anon_sym_LPAREN] = ACTIONS(2162), - [anon_sym_LBRACK] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2162), - [anon_sym_RBRACE] = ACTIONS(2162), - [anon_sym_STAR] = ACTIONS(2162), - [anon_sym_u8] = ACTIONS(2164), - [anon_sym_i8] = ACTIONS(2164), - [anon_sym_u16] = ACTIONS(2164), - [anon_sym_i16] = ACTIONS(2164), - [anon_sym_u32] = ACTIONS(2164), - [anon_sym_i32] = ACTIONS(2164), - [anon_sym_u64] = ACTIONS(2164), - [anon_sym_i64] = ACTIONS(2164), - [anon_sym_u128] = ACTIONS(2164), - [anon_sym_i128] = ACTIONS(2164), - [anon_sym_isize] = ACTIONS(2164), - [anon_sym_usize] = ACTIONS(2164), - [anon_sym_f32] = ACTIONS(2164), - [anon_sym_f64] = ACTIONS(2164), - [anon_sym_bool] = ACTIONS(2164), - [anon_sym_str] = ACTIONS(2164), - [anon_sym_char] = ACTIONS(2164), - [anon_sym_DASH] = ACTIONS(2162), - [anon_sym_BANG] = ACTIONS(2162), - [anon_sym_AMP] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2162), - [anon_sym_LT] = ACTIONS(2162), - [anon_sym_DOT_DOT] = ACTIONS(2162), - [anon_sym_COLON_COLON] = ACTIONS(2162), - [anon_sym_POUND] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2164), - [anon_sym_async] = ACTIONS(2164), - [anon_sym_break] = ACTIONS(2164), - [anon_sym_const] = ACTIONS(2164), - [anon_sym_continue] = ACTIONS(2164), - [anon_sym_default] = ACTIONS(2164), - [anon_sym_enum] = ACTIONS(2164), - [anon_sym_fn] = ACTIONS(2164), - [anon_sym_for] = ACTIONS(2164), - [anon_sym_gen] = ACTIONS(2164), - [anon_sym_if] = ACTIONS(2164), - [anon_sym_impl] = ACTIONS(2164), - [anon_sym_let] = ACTIONS(2164), - [anon_sym_loop] = ACTIONS(2164), - [anon_sym_match] = ACTIONS(2164), - [anon_sym_mod] = ACTIONS(2164), - [anon_sym_pub] = ACTIONS(2164), - [anon_sym_return] = ACTIONS(2164), - [anon_sym_static] = ACTIONS(2164), - [anon_sym_struct] = ACTIONS(2164), - [anon_sym_trait] = ACTIONS(2164), - [anon_sym_type] = ACTIONS(2164), - [anon_sym_union] = ACTIONS(2164), - [anon_sym_unsafe] = ACTIONS(2164), - [anon_sym_use] = ACTIONS(2164), - [anon_sym_while] = ACTIONS(2164), - [anon_sym_extern] = ACTIONS(2164), - [anon_sym_yield] = ACTIONS(2164), - [anon_sym_move] = ACTIONS(2164), - [anon_sym_try] = ACTIONS(2164), - [sym_integer_literal] = ACTIONS(2162), - [aux_sym_string_literal_token1] = ACTIONS(2162), - [sym_char_literal] = ACTIONS(2162), - [anon_sym_true] = ACTIONS(2164), - [anon_sym_false] = ACTIONS(2164), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2164), - [sym_super] = ACTIONS(2164), - [sym_crate] = ACTIONS(2164), - [sym_metavariable] = ACTIONS(2162), - [sym__raw_string_literal_start] = ACTIONS(2162), - [sym_float_literal] = ACTIONS(2162), + [ts_builtin_sym_end] = ACTIONS(1958), + [sym_identifier] = ACTIONS(1960), + [anon_sym_SEMI] = ACTIONS(1958), + [anon_sym_macro_rules_BANG] = ACTIONS(1958), + [anon_sym_LPAREN] = ACTIONS(1958), + [anon_sym_LBRACK] = ACTIONS(1958), + [anon_sym_LBRACE] = ACTIONS(1958), + [anon_sym_RBRACE] = ACTIONS(1958), + [anon_sym_STAR] = ACTIONS(1958), + [anon_sym_u8] = ACTIONS(1960), + [anon_sym_i8] = ACTIONS(1960), + [anon_sym_u16] = ACTIONS(1960), + [anon_sym_i16] = ACTIONS(1960), + [anon_sym_u32] = ACTIONS(1960), + [anon_sym_i32] = ACTIONS(1960), + [anon_sym_u64] = ACTIONS(1960), + [anon_sym_i64] = ACTIONS(1960), + [anon_sym_u128] = ACTIONS(1960), + [anon_sym_i128] = ACTIONS(1960), + [anon_sym_isize] = ACTIONS(1960), + [anon_sym_usize] = ACTIONS(1960), + [anon_sym_f32] = ACTIONS(1960), + [anon_sym_f64] = ACTIONS(1960), + [anon_sym_bool] = ACTIONS(1960), + [anon_sym_str] = ACTIONS(1960), + [anon_sym_char] = ACTIONS(1960), + [anon_sym_DASH] = ACTIONS(1958), + [anon_sym_BANG] = ACTIONS(1958), + [anon_sym_AMP] = ACTIONS(1958), + [anon_sym_PIPE] = ACTIONS(1958), + [anon_sym_LT] = ACTIONS(1958), + [anon_sym_DOT_DOT] = ACTIONS(1958), + [anon_sym_COLON_COLON] = ACTIONS(1958), + [anon_sym_POUND] = ACTIONS(1958), + [anon_sym_SQUOTE] = ACTIONS(1960), + [anon_sym_async] = ACTIONS(1960), + [anon_sym_break] = ACTIONS(1960), + [anon_sym_const] = ACTIONS(1960), + [anon_sym_continue] = ACTIONS(1960), + [anon_sym_default] = ACTIONS(1960), + [anon_sym_enum] = ACTIONS(1960), + [anon_sym_fn] = ACTIONS(1960), + [anon_sym_for] = ACTIONS(1960), + [anon_sym_gen] = ACTIONS(1960), + [anon_sym_if] = ACTIONS(1960), + [anon_sym_impl] = ACTIONS(1960), + [anon_sym_let] = ACTIONS(1960), + [anon_sym_loop] = ACTIONS(1960), + [anon_sym_match] = ACTIONS(1960), + [anon_sym_mod] = ACTIONS(1960), + [anon_sym_pub] = ACTIONS(1960), + [anon_sym_return] = ACTIONS(1960), + [anon_sym_static] = ACTIONS(1960), + [anon_sym_struct] = ACTIONS(1960), + [anon_sym_trait] = ACTIONS(1960), + [anon_sym_type] = ACTIONS(1960), + [anon_sym_union] = ACTIONS(1960), + [anon_sym_unsafe] = ACTIONS(1960), + [anon_sym_use] = ACTIONS(1960), + [anon_sym_while] = ACTIONS(1960), + [anon_sym_extern] = ACTIONS(1960), + [anon_sym_yield] = ACTIONS(1960), + [anon_sym_move] = ACTIONS(1960), + [anon_sym_try] = ACTIONS(1960), + [sym_integer_literal] = ACTIONS(1958), + [aux_sym_string_literal_token1] = ACTIONS(1958), + [sym_char_literal] = ACTIONS(1958), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1960), + [sym_super] = ACTIONS(1960), + [sym_crate] = ACTIONS(1960), + [sym_metavariable] = ACTIONS(1958), + [sym__raw_string_literal_start] = ACTIONS(1958), + [sym_float_literal] = ACTIONS(1958), }, [STATE(553)] = { [sym_line_comment] = STATE(553), [sym_block_comment] = STATE(553), - [ts_builtin_sym_end] = ACTIONS(2166), - [sym_identifier] = ACTIONS(2168), - [anon_sym_SEMI] = ACTIONS(2166), - [anon_sym_macro_rules_BANG] = ACTIONS(2166), - [anon_sym_LPAREN] = ACTIONS(2166), - [anon_sym_LBRACK] = ACTIONS(2166), - [anon_sym_LBRACE] = ACTIONS(2166), - [anon_sym_RBRACE] = ACTIONS(2166), - [anon_sym_STAR] = ACTIONS(2166), - [anon_sym_u8] = ACTIONS(2168), - [anon_sym_i8] = ACTIONS(2168), - [anon_sym_u16] = ACTIONS(2168), - [anon_sym_i16] = ACTIONS(2168), - [anon_sym_u32] = ACTIONS(2168), - [anon_sym_i32] = ACTIONS(2168), - [anon_sym_u64] = ACTIONS(2168), - [anon_sym_i64] = ACTIONS(2168), - [anon_sym_u128] = ACTIONS(2168), - [anon_sym_i128] = ACTIONS(2168), - [anon_sym_isize] = ACTIONS(2168), - [anon_sym_usize] = ACTIONS(2168), - [anon_sym_f32] = ACTIONS(2168), - [anon_sym_f64] = ACTIONS(2168), - [anon_sym_bool] = ACTIONS(2168), - [anon_sym_str] = ACTIONS(2168), - [anon_sym_char] = ACTIONS(2168), - [anon_sym_DASH] = ACTIONS(2166), - [anon_sym_BANG] = ACTIONS(2166), - [anon_sym_AMP] = ACTIONS(2166), - [anon_sym_PIPE] = ACTIONS(2166), - [anon_sym_LT] = ACTIONS(2166), - [anon_sym_DOT_DOT] = ACTIONS(2166), - [anon_sym_COLON_COLON] = ACTIONS(2166), - [anon_sym_POUND] = ACTIONS(2166), - [anon_sym_SQUOTE] = ACTIONS(2168), - [anon_sym_async] = ACTIONS(2168), - [anon_sym_break] = ACTIONS(2168), - [anon_sym_const] = ACTIONS(2168), - [anon_sym_continue] = ACTIONS(2168), - [anon_sym_default] = ACTIONS(2168), - [anon_sym_enum] = ACTIONS(2168), - [anon_sym_fn] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2168), - [anon_sym_gen] = ACTIONS(2168), - [anon_sym_if] = ACTIONS(2168), - [anon_sym_impl] = ACTIONS(2168), - [anon_sym_let] = ACTIONS(2168), - [anon_sym_loop] = ACTIONS(2168), - [anon_sym_match] = ACTIONS(2168), - [anon_sym_mod] = ACTIONS(2168), - [anon_sym_pub] = ACTIONS(2168), - [anon_sym_return] = ACTIONS(2168), - [anon_sym_static] = ACTIONS(2168), - [anon_sym_struct] = ACTIONS(2168), - [anon_sym_trait] = ACTIONS(2168), - [anon_sym_type] = ACTIONS(2168), - [anon_sym_union] = ACTIONS(2168), - [anon_sym_unsafe] = ACTIONS(2168), - [anon_sym_use] = ACTIONS(2168), - [anon_sym_while] = ACTIONS(2168), - [anon_sym_extern] = ACTIONS(2168), - [anon_sym_yield] = ACTIONS(2168), - [anon_sym_move] = ACTIONS(2168), - [anon_sym_try] = ACTIONS(2168), - [sym_integer_literal] = ACTIONS(2166), - [aux_sym_string_literal_token1] = ACTIONS(2166), - [sym_char_literal] = ACTIONS(2166), - [anon_sym_true] = ACTIONS(2168), - [anon_sym_false] = ACTIONS(2168), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2168), - [sym_super] = ACTIONS(2168), - [sym_crate] = ACTIONS(2168), - [sym_metavariable] = ACTIONS(2166), - [sym__raw_string_literal_start] = ACTIONS(2166), - [sym_float_literal] = ACTIONS(2166), + [ts_builtin_sym_end] = ACTIONS(1962), + [sym_identifier] = ACTIONS(1964), + [anon_sym_SEMI] = ACTIONS(1962), + [anon_sym_macro_rules_BANG] = ACTIONS(1962), + [anon_sym_LPAREN] = ACTIONS(1962), + [anon_sym_LBRACK] = ACTIONS(1962), + [anon_sym_LBRACE] = ACTIONS(1962), + [anon_sym_RBRACE] = ACTIONS(1962), + [anon_sym_STAR] = ACTIONS(1962), + [anon_sym_u8] = ACTIONS(1964), + [anon_sym_i8] = ACTIONS(1964), + [anon_sym_u16] = ACTIONS(1964), + [anon_sym_i16] = ACTIONS(1964), + [anon_sym_u32] = ACTIONS(1964), + [anon_sym_i32] = ACTIONS(1964), + [anon_sym_u64] = ACTIONS(1964), + [anon_sym_i64] = ACTIONS(1964), + [anon_sym_u128] = ACTIONS(1964), + [anon_sym_i128] = ACTIONS(1964), + [anon_sym_isize] = ACTIONS(1964), + [anon_sym_usize] = ACTIONS(1964), + [anon_sym_f32] = ACTIONS(1964), + [anon_sym_f64] = ACTIONS(1964), + [anon_sym_bool] = ACTIONS(1964), + [anon_sym_str] = ACTIONS(1964), + [anon_sym_char] = ACTIONS(1964), + [anon_sym_DASH] = ACTIONS(1962), + [anon_sym_BANG] = ACTIONS(1962), + [anon_sym_AMP] = ACTIONS(1962), + [anon_sym_PIPE] = ACTIONS(1962), + [anon_sym_LT] = ACTIONS(1962), + [anon_sym_DOT_DOT] = ACTIONS(1962), + [anon_sym_COLON_COLON] = ACTIONS(1962), + [anon_sym_POUND] = ACTIONS(1962), + [anon_sym_SQUOTE] = ACTIONS(1964), + [anon_sym_async] = ACTIONS(1964), + [anon_sym_break] = ACTIONS(1964), + [anon_sym_const] = ACTIONS(1964), + [anon_sym_continue] = ACTIONS(1964), + [anon_sym_default] = ACTIONS(1964), + [anon_sym_enum] = ACTIONS(1964), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_for] = ACTIONS(1964), + [anon_sym_gen] = ACTIONS(1964), + [anon_sym_if] = ACTIONS(1964), + [anon_sym_impl] = ACTIONS(1964), + [anon_sym_let] = ACTIONS(1964), + [anon_sym_loop] = ACTIONS(1964), + [anon_sym_match] = ACTIONS(1964), + [anon_sym_mod] = ACTIONS(1964), + [anon_sym_pub] = ACTIONS(1964), + [anon_sym_return] = ACTIONS(1964), + [anon_sym_static] = ACTIONS(1964), + [anon_sym_struct] = ACTIONS(1964), + [anon_sym_trait] = ACTIONS(1964), + [anon_sym_type] = ACTIONS(1964), + [anon_sym_union] = ACTIONS(1964), + [anon_sym_unsafe] = ACTIONS(1964), + [anon_sym_use] = ACTIONS(1964), + [anon_sym_while] = ACTIONS(1964), + [anon_sym_extern] = ACTIONS(1964), + [anon_sym_yield] = ACTIONS(1964), + [anon_sym_move] = ACTIONS(1964), + [anon_sym_try] = ACTIONS(1964), + [sym_integer_literal] = ACTIONS(1962), + [aux_sym_string_literal_token1] = ACTIONS(1962), + [sym_char_literal] = ACTIONS(1962), + [anon_sym_true] = ACTIONS(1964), + [anon_sym_false] = ACTIONS(1964), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1964), + [sym_super] = ACTIONS(1964), + [sym_crate] = ACTIONS(1964), + [sym_metavariable] = ACTIONS(1962), + [sym__raw_string_literal_start] = ACTIONS(1962), + [sym_float_literal] = ACTIONS(1962), }, [STATE(554)] = { [sym_line_comment] = STATE(554), [sym_block_comment] = STATE(554), - [ts_builtin_sym_end] = ACTIONS(2170), - [sym_identifier] = ACTIONS(2172), - [anon_sym_SEMI] = ACTIONS(2170), - [anon_sym_macro_rules_BANG] = ACTIONS(2170), - [anon_sym_LPAREN] = ACTIONS(2170), - [anon_sym_LBRACK] = ACTIONS(2170), - [anon_sym_LBRACE] = ACTIONS(2170), - [anon_sym_RBRACE] = ACTIONS(2170), - [anon_sym_STAR] = ACTIONS(2170), - [anon_sym_u8] = ACTIONS(2172), - [anon_sym_i8] = ACTIONS(2172), - [anon_sym_u16] = ACTIONS(2172), - [anon_sym_i16] = ACTIONS(2172), - [anon_sym_u32] = ACTIONS(2172), - [anon_sym_i32] = ACTIONS(2172), - [anon_sym_u64] = ACTIONS(2172), - [anon_sym_i64] = ACTIONS(2172), - [anon_sym_u128] = ACTIONS(2172), - [anon_sym_i128] = ACTIONS(2172), - [anon_sym_isize] = ACTIONS(2172), - [anon_sym_usize] = ACTIONS(2172), - [anon_sym_f32] = ACTIONS(2172), - [anon_sym_f64] = ACTIONS(2172), - [anon_sym_bool] = ACTIONS(2172), - [anon_sym_str] = ACTIONS(2172), - [anon_sym_char] = ACTIONS(2172), - [anon_sym_DASH] = ACTIONS(2170), - [anon_sym_BANG] = ACTIONS(2170), - [anon_sym_AMP] = ACTIONS(2170), - [anon_sym_PIPE] = ACTIONS(2170), - [anon_sym_LT] = ACTIONS(2170), - [anon_sym_DOT_DOT] = ACTIONS(2170), - [anon_sym_COLON_COLON] = ACTIONS(2170), - [anon_sym_POUND] = ACTIONS(2170), - [anon_sym_SQUOTE] = ACTIONS(2172), - [anon_sym_async] = ACTIONS(2172), - [anon_sym_break] = ACTIONS(2172), - [anon_sym_const] = ACTIONS(2172), - [anon_sym_continue] = ACTIONS(2172), - [anon_sym_default] = ACTIONS(2172), - [anon_sym_enum] = ACTIONS(2172), - [anon_sym_fn] = ACTIONS(2172), - [anon_sym_for] = ACTIONS(2172), - [anon_sym_gen] = ACTIONS(2172), - [anon_sym_if] = ACTIONS(2172), - [anon_sym_impl] = ACTIONS(2172), - [anon_sym_let] = ACTIONS(2172), - [anon_sym_loop] = ACTIONS(2172), - [anon_sym_match] = ACTIONS(2172), - [anon_sym_mod] = ACTIONS(2172), - [anon_sym_pub] = ACTIONS(2172), - [anon_sym_return] = ACTIONS(2172), - [anon_sym_static] = ACTIONS(2172), - [anon_sym_struct] = ACTIONS(2172), - [anon_sym_trait] = ACTIONS(2172), - [anon_sym_type] = ACTIONS(2172), - [anon_sym_union] = ACTIONS(2172), - [anon_sym_unsafe] = ACTIONS(2172), - [anon_sym_use] = ACTIONS(2172), - [anon_sym_while] = ACTIONS(2172), - [anon_sym_extern] = ACTIONS(2172), - [anon_sym_yield] = ACTIONS(2172), - [anon_sym_move] = ACTIONS(2172), - [anon_sym_try] = ACTIONS(2172), - [sym_integer_literal] = ACTIONS(2170), - [aux_sym_string_literal_token1] = ACTIONS(2170), - [sym_char_literal] = ACTIONS(2170), - [anon_sym_true] = ACTIONS(2172), - [anon_sym_false] = ACTIONS(2172), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2172), - [sym_super] = ACTIONS(2172), - [sym_crate] = ACTIONS(2172), - [sym_metavariable] = ACTIONS(2170), - [sym__raw_string_literal_start] = ACTIONS(2170), - [sym_float_literal] = ACTIONS(2170), + [ts_builtin_sym_end] = ACTIONS(1966), + [sym_identifier] = ACTIONS(1968), + [anon_sym_SEMI] = ACTIONS(1966), + [anon_sym_macro_rules_BANG] = ACTIONS(1966), + [anon_sym_LPAREN] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1966), + [anon_sym_LBRACE] = ACTIONS(1966), + [anon_sym_RBRACE] = ACTIONS(1966), + [anon_sym_STAR] = ACTIONS(1966), + [anon_sym_u8] = ACTIONS(1968), + [anon_sym_i8] = ACTIONS(1968), + [anon_sym_u16] = ACTIONS(1968), + [anon_sym_i16] = ACTIONS(1968), + [anon_sym_u32] = ACTIONS(1968), + [anon_sym_i32] = ACTIONS(1968), + [anon_sym_u64] = ACTIONS(1968), + [anon_sym_i64] = ACTIONS(1968), + [anon_sym_u128] = ACTIONS(1968), + [anon_sym_i128] = ACTIONS(1968), + [anon_sym_isize] = ACTIONS(1968), + [anon_sym_usize] = ACTIONS(1968), + [anon_sym_f32] = ACTIONS(1968), + [anon_sym_f64] = ACTIONS(1968), + [anon_sym_bool] = ACTIONS(1968), + [anon_sym_str] = ACTIONS(1968), + [anon_sym_char] = ACTIONS(1968), + [anon_sym_DASH] = ACTIONS(1966), + [anon_sym_BANG] = ACTIONS(1966), + [anon_sym_AMP] = ACTIONS(1966), + [anon_sym_PIPE] = ACTIONS(1966), + [anon_sym_LT] = ACTIONS(1966), + [anon_sym_DOT_DOT] = ACTIONS(1966), + [anon_sym_COLON_COLON] = ACTIONS(1966), + [anon_sym_POUND] = ACTIONS(1966), + [anon_sym_SQUOTE] = ACTIONS(1968), + [anon_sym_async] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_fn] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_gen] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_impl] = ACTIONS(1968), + [anon_sym_let] = ACTIONS(1968), + [anon_sym_loop] = ACTIONS(1968), + [anon_sym_match] = ACTIONS(1968), + [anon_sym_mod] = ACTIONS(1968), + [anon_sym_pub] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_trait] = ACTIONS(1968), + [anon_sym_type] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_unsafe] = ACTIONS(1968), + [anon_sym_use] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym_yield] = ACTIONS(1968), + [anon_sym_move] = ACTIONS(1968), + [anon_sym_try] = ACTIONS(1968), + [sym_integer_literal] = ACTIONS(1966), + [aux_sym_string_literal_token1] = ACTIONS(1966), + [sym_char_literal] = ACTIONS(1966), + [anon_sym_true] = ACTIONS(1968), + [anon_sym_false] = ACTIONS(1968), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_crate] = ACTIONS(1968), + [sym_metavariable] = ACTIONS(1966), + [sym__raw_string_literal_start] = ACTIONS(1966), + [sym_float_literal] = ACTIONS(1966), }, [STATE(555)] = { [sym_line_comment] = STATE(555), [sym_block_comment] = STATE(555), - [ts_builtin_sym_end] = ACTIONS(2174), - [sym_identifier] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2174), - [anon_sym_macro_rules_BANG] = ACTIONS(2174), - [anon_sym_LPAREN] = ACTIONS(2174), - [anon_sym_LBRACK] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2174), - [anon_sym_RBRACE] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2174), - [anon_sym_u8] = ACTIONS(2176), - [anon_sym_i8] = ACTIONS(2176), - [anon_sym_u16] = ACTIONS(2176), - [anon_sym_i16] = ACTIONS(2176), - [anon_sym_u32] = ACTIONS(2176), - [anon_sym_i32] = ACTIONS(2176), - [anon_sym_u64] = ACTIONS(2176), - [anon_sym_i64] = ACTIONS(2176), - [anon_sym_u128] = ACTIONS(2176), - [anon_sym_i128] = ACTIONS(2176), - [anon_sym_isize] = ACTIONS(2176), - [anon_sym_usize] = ACTIONS(2176), - [anon_sym_f32] = ACTIONS(2176), - [anon_sym_f64] = ACTIONS(2176), - [anon_sym_bool] = ACTIONS(2176), - [anon_sym_str] = ACTIONS(2176), - [anon_sym_char] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_BANG] = ACTIONS(2174), - [anon_sym_AMP] = ACTIONS(2174), - [anon_sym_PIPE] = ACTIONS(2174), - [anon_sym_LT] = ACTIONS(2174), - [anon_sym_DOT_DOT] = ACTIONS(2174), - [anon_sym_COLON_COLON] = ACTIONS(2174), - [anon_sym_POUND] = ACTIONS(2174), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_async] = ACTIONS(2176), - [anon_sym_break] = ACTIONS(2176), - [anon_sym_const] = ACTIONS(2176), - [anon_sym_continue] = ACTIONS(2176), - [anon_sym_default] = ACTIONS(2176), - [anon_sym_enum] = ACTIONS(2176), - [anon_sym_fn] = ACTIONS(2176), - [anon_sym_for] = ACTIONS(2176), - [anon_sym_gen] = ACTIONS(2176), - [anon_sym_if] = ACTIONS(2176), - [anon_sym_impl] = ACTIONS(2176), - [anon_sym_let] = ACTIONS(2176), - [anon_sym_loop] = ACTIONS(2176), - [anon_sym_match] = ACTIONS(2176), - [anon_sym_mod] = ACTIONS(2176), - [anon_sym_pub] = ACTIONS(2176), - [anon_sym_return] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2176), - [anon_sym_struct] = ACTIONS(2176), - [anon_sym_trait] = ACTIONS(2176), - [anon_sym_type] = ACTIONS(2176), - [anon_sym_union] = ACTIONS(2176), - [anon_sym_unsafe] = ACTIONS(2176), - [anon_sym_use] = ACTIONS(2176), - [anon_sym_while] = ACTIONS(2176), - [anon_sym_extern] = ACTIONS(2176), - [anon_sym_yield] = ACTIONS(2176), - [anon_sym_move] = ACTIONS(2176), - [anon_sym_try] = ACTIONS(2176), - [sym_integer_literal] = ACTIONS(2174), - [aux_sym_string_literal_token1] = ACTIONS(2174), - [sym_char_literal] = ACTIONS(2174), - [anon_sym_true] = ACTIONS(2176), - [anon_sym_false] = ACTIONS(2176), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2176), - [sym_super] = ACTIONS(2176), - [sym_crate] = ACTIONS(2176), - [sym_metavariable] = ACTIONS(2174), - [sym__raw_string_literal_start] = ACTIONS(2174), - [sym_float_literal] = ACTIONS(2174), + [ts_builtin_sym_end] = ACTIONS(1970), + [sym_identifier] = ACTIONS(1972), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_macro_rules_BANG] = ACTIONS(1970), + [anon_sym_LPAREN] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_RBRACE] = ACTIONS(1970), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_u8] = ACTIONS(1972), + [anon_sym_i8] = ACTIONS(1972), + [anon_sym_u16] = ACTIONS(1972), + [anon_sym_i16] = ACTIONS(1972), + [anon_sym_u32] = ACTIONS(1972), + [anon_sym_i32] = ACTIONS(1972), + [anon_sym_u64] = ACTIONS(1972), + [anon_sym_i64] = ACTIONS(1972), + [anon_sym_u128] = ACTIONS(1972), + [anon_sym_i128] = ACTIONS(1972), + [anon_sym_isize] = ACTIONS(1972), + [anon_sym_usize] = ACTIONS(1972), + [anon_sym_f32] = ACTIONS(1972), + [anon_sym_f64] = ACTIONS(1972), + [anon_sym_bool] = ACTIONS(1972), + [anon_sym_str] = ACTIONS(1972), + [anon_sym_char] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_PIPE] = ACTIONS(1970), + [anon_sym_LT] = ACTIONS(1970), + [anon_sym_DOT_DOT] = ACTIONS(1970), + [anon_sym_COLON_COLON] = ACTIONS(1970), + [anon_sym_POUND] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1972), + [anon_sym_async] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1972), + [anon_sym_enum] = ACTIONS(1972), + [anon_sym_fn] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_gen] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_impl] = ACTIONS(1972), + [anon_sym_let] = ACTIONS(1972), + [anon_sym_loop] = ACTIONS(1972), + [anon_sym_match] = ACTIONS(1972), + [anon_sym_mod] = ACTIONS(1972), + [anon_sym_pub] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_static] = ACTIONS(1972), + [anon_sym_struct] = ACTIONS(1972), + [anon_sym_trait] = ACTIONS(1972), + [anon_sym_type] = ACTIONS(1972), + [anon_sym_union] = ACTIONS(1972), + [anon_sym_unsafe] = ACTIONS(1972), + [anon_sym_use] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym_yield] = ACTIONS(1972), + [anon_sym_move] = ACTIONS(1972), + [anon_sym_try] = ACTIONS(1972), + [sym_integer_literal] = ACTIONS(1970), + [aux_sym_string_literal_token1] = ACTIONS(1970), + [sym_char_literal] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(1972), + [anon_sym_false] = ACTIONS(1972), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1972), + [sym_super] = ACTIONS(1972), + [sym_crate] = ACTIONS(1972), + [sym_metavariable] = ACTIONS(1970), + [sym__raw_string_literal_start] = ACTIONS(1970), + [sym_float_literal] = ACTIONS(1970), }, [STATE(556)] = { [sym_line_comment] = STATE(556), [sym_block_comment] = STATE(556), - [ts_builtin_sym_end] = ACTIONS(2178), - [sym_identifier] = ACTIONS(2180), - [anon_sym_SEMI] = ACTIONS(2178), - [anon_sym_macro_rules_BANG] = ACTIONS(2178), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(2178), - [anon_sym_LBRACE] = ACTIONS(2178), - [anon_sym_RBRACE] = ACTIONS(2178), - [anon_sym_STAR] = ACTIONS(2178), - [anon_sym_u8] = ACTIONS(2180), - [anon_sym_i8] = ACTIONS(2180), - [anon_sym_u16] = ACTIONS(2180), - [anon_sym_i16] = ACTIONS(2180), - [anon_sym_u32] = ACTIONS(2180), - [anon_sym_i32] = ACTIONS(2180), - [anon_sym_u64] = ACTIONS(2180), - [anon_sym_i64] = ACTIONS(2180), - [anon_sym_u128] = ACTIONS(2180), - [anon_sym_i128] = ACTIONS(2180), - [anon_sym_isize] = ACTIONS(2180), - [anon_sym_usize] = ACTIONS(2180), - [anon_sym_f32] = ACTIONS(2180), - [anon_sym_f64] = ACTIONS(2180), - [anon_sym_bool] = ACTIONS(2180), - [anon_sym_str] = ACTIONS(2180), - [anon_sym_char] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2178), - [anon_sym_BANG] = ACTIONS(2178), - [anon_sym_AMP] = ACTIONS(2178), - [anon_sym_PIPE] = ACTIONS(2178), - [anon_sym_LT] = ACTIONS(2178), - [anon_sym_DOT_DOT] = ACTIONS(2178), - [anon_sym_COLON_COLON] = ACTIONS(2178), - [anon_sym_POUND] = ACTIONS(2178), - [anon_sym_SQUOTE] = ACTIONS(2180), - [anon_sym_async] = ACTIONS(2180), - [anon_sym_break] = ACTIONS(2180), - [anon_sym_const] = ACTIONS(2180), - [anon_sym_continue] = ACTIONS(2180), - [anon_sym_default] = ACTIONS(2180), - [anon_sym_enum] = ACTIONS(2180), - [anon_sym_fn] = ACTIONS(2180), - [anon_sym_for] = ACTIONS(2180), - [anon_sym_gen] = ACTIONS(2180), - [anon_sym_if] = ACTIONS(2180), - [anon_sym_impl] = ACTIONS(2180), - [anon_sym_let] = ACTIONS(2180), - [anon_sym_loop] = ACTIONS(2180), - [anon_sym_match] = ACTIONS(2180), - [anon_sym_mod] = ACTIONS(2180), - [anon_sym_pub] = ACTIONS(2180), - [anon_sym_return] = ACTIONS(2180), - [anon_sym_static] = ACTIONS(2180), - [anon_sym_struct] = ACTIONS(2180), - [anon_sym_trait] = ACTIONS(2180), - [anon_sym_type] = ACTIONS(2180), - [anon_sym_union] = ACTIONS(2180), - [anon_sym_unsafe] = ACTIONS(2180), - [anon_sym_use] = ACTIONS(2180), - [anon_sym_while] = ACTIONS(2180), - [anon_sym_extern] = ACTIONS(2180), - [anon_sym_yield] = ACTIONS(2180), - [anon_sym_move] = ACTIONS(2180), - [anon_sym_try] = ACTIONS(2180), - [sym_integer_literal] = ACTIONS(2178), - [aux_sym_string_literal_token1] = ACTIONS(2178), - [sym_char_literal] = ACTIONS(2178), - [anon_sym_true] = ACTIONS(2180), - [anon_sym_false] = ACTIONS(2180), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2180), - [sym_super] = ACTIONS(2180), - [sym_crate] = ACTIONS(2180), - [sym_metavariable] = ACTIONS(2178), - [sym__raw_string_literal_start] = ACTIONS(2178), - [sym_float_literal] = ACTIONS(2178), + [ts_builtin_sym_end] = ACTIONS(1974), + [sym_identifier] = ACTIONS(1976), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_macro_rules_BANG] = ACTIONS(1974), + [anon_sym_LPAREN] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_RBRACE] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1974), + [anon_sym_u8] = ACTIONS(1976), + [anon_sym_i8] = ACTIONS(1976), + [anon_sym_u16] = ACTIONS(1976), + [anon_sym_i16] = ACTIONS(1976), + [anon_sym_u32] = ACTIONS(1976), + [anon_sym_i32] = ACTIONS(1976), + [anon_sym_u64] = ACTIONS(1976), + [anon_sym_i64] = ACTIONS(1976), + [anon_sym_u128] = ACTIONS(1976), + [anon_sym_i128] = ACTIONS(1976), + [anon_sym_isize] = ACTIONS(1976), + [anon_sym_usize] = ACTIONS(1976), + [anon_sym_f32] = ACTIONS(1976), + [anon_sym_f64] = ACTIONS(1976), + [anon_sym_bool] = ACTIONS(1976), + [anon_sym_str] = ACTIONS(1976), + [anon_sym_char] = ACTIONS(1976), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_BANG] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_PIPE] = ACTIONS(1974), + [anon_sym_LT] = ACTIONS(1974), + [anon_sym_DOT_DOT] = ACTIONS(1974), + [anon_sym_COLON_COLON] = ACTIONS(1974), + [anon_sym_POUND] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(1976), + [anon_sym_async] = ACTIONS(1976), + [anon_sym_break] = ACTIONS(1976), + [anon_sym_const] = ACTIONS(1976), + [anon_sym_continue] = ACTIONS(1976), + [anon_sym_default] = ACTIONS(1976), + [anon_sym_enum] = ACTIONS(1976), + [anon_sym_fn] = ACTIONS(1976), + [anon_sym_for] = ACTIONS(1976), + [anon_sym_gen] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1976), + [anon_sym_impl] = ACTIONS(1976), + [anon_sym_let] = ACTIONS(1976), + [anon_sym_loop] = ACTIONS(1976), + [anon_sym_match] = ACTIONS(1976), + [anon_sym_mod] = ACTIONS(1976), + [anon_sym_pub] = ACTIONS(1976), + [anon_sym_return] = ACTIONS(1976), + [anon_sym_static] = ACTIONS(1976), + [anon_sym_struct] = ACTIONS(1976), + [anon_sym_trait] = ACTIONS(1976), + [anon_sym_type] = ACTIONS(1976), + [anon_sym_union] = ACTIONS(1976), + [anon_sym_unsafe] = ACTIONS(1976), + [anon_sym_use] = ACTIONS(1976), + [anon_sym_while] = ACTIONS(1976), + [anon_sym_extern] = ACTIONS(1976), + [anon_sym_yield] = ACTIONS(1976), + [anon_sym_move] = ACTIONS(1976), + [anon_sym_try] = ACTIONS(1976), + [sym_integer_literal] = ACTIONS(1974), + [aux_sym_string_literal_token1] = ACTIONS(1974), + [sym_char_literal] = ACTIONS(1974), + [anon_sym_true] = ACTIONS(1976), + [anon_sym_false] = ACTIONS(1976), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1976), + [sym_super] = ACTIONS(1976), + [sym_crate] = ACTIONS(1976), + [sym_metavariable] = ACTIONS(1974), + [sym__raw_string_literal_start] = ACTIONS(1974), + [sym_float_literal] = ACTIONS(1974), }, [STATE(557)] = { [sym_line_comment] = STATE(557), [sym_block_comment] = STATE(557), - [ts_builtin_sym_end] = ACTIONS(2182), - [sym_identifier] = ACTIONS(2184), - [anon_sym_SEMI] = ACTIONS(2182), - [anon_sym_macro_rules_BANG] = ACTIONS(2182), - [anon_sym_LPAREN] = ACTIONS(2182), - [anon_sym_LBRACK] = ACTIONS(2182), - [anon_sym_LBRACE] = ACTIONS(2182), - [anon_sym_RBRACE] = ACTIONS(2182), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_u8] = ACTIONS(2184), - [anon_sym_i8] = ACTIONS(2184), - [anon_sym_u16] = ACTIONS(2184), - [anon_sym_i16] = ACTIONS(2184), - [anon_sym_u32] = ACTIONS(2184), - [anon_sym_i32] = ACTIONS(2184), - [anon_sym_u64] = ACTIONS(2184), - [anon_sym_i64] = ACTIONS(2184), - [anon_sym_u128] = ACTIONS(2184), - [anon_sym_i128] = ACTIONS(2184), - [anon_sym_isize] = ACTIONS(2184), - [anon_sym_usize] = ACTIONS(2184), - [anon_sym_f32] = ACTIONS(2184), - [anon_sym_f64] = ACTIONS(2184), - [anon_sym_bool] = ACTIONS(2184), - [anon_sym_str] = ACTIONS(2184), - [anon_sym_char] = ACTIONS(2184), - [anon_sym_DASH] = ACTIONS(2182), - [anon_sym_BANG] = ACTIONS(2182), - [anon_sym_AMP] = ACTIONS(2182), - [anon_sym_PIPE] = ACTIONS(2182), - [anon_sym_LT] = ACTIONS(2182), - [anon_sym_DOT_DOT] = ACTIONS(2182), - [anon_sym_COLON_COLON] = ACTIONS(2182), - [anon_sym_POUND] = ACTIONS(2182), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym_async] = ACTIONS(2184), - [anon_sym_break] = ACTIONS(2184), - [anon_sym_const] = ACTIONS(2184), - [anon_sym_continue] = ACTIONS(2184), - [anon_sym_default] = ACTIONS(2184), - [anon_sym_enum] = ACTIONS(2184), - [anon_sym_fn] = ACTIONS(2184), - [anon_sym_for] = ACTIONS(2184), - [anon_sym_gen] = ACTIONS(2184), - [anon_sym_if] = ACTIONS(2184), - [anon_sym_impl] = ACTIONS(2184), - [anon_sym_let] = ACTIONS(2184), - [anon_sym_loop] = ACTIONS(2184), - [anon_sym_match] = ACTIONS(2184), - [anon_sym_mod] = ACTIONS(2184), - [anon_sym_pub] = ACTIONS(2184), - [anon_sym_return] = ACTIONS(2184), - [anon_sym_static] = ACTIONS(2184), - [anon_sym_struct] = ACTIONS(2184), - [anon_sym_trait] = ACTIONS(2184), - [anon_sym_type] = ACTIONS(2184), - [anon_sym_union] = ACTIONS(2184), - [anon_sym_unsafe] = ACTIONS(2184), - [anon_sym_use] = ACTIONS(2184), - [anon_sym_while] = ACTIONS(2184), - [anon_sym_extern] = ACTIONS(2184), - [anon_sym_yield] = ACTIONS(2184), - [anon_sym_move] = ACTIONS(2184), - [anon_sym_try] = ACTIONS(2184), - [sym_integer_literal] = ACTIONS(2182), - [aux_sym_string_literal_token1] = ACTIONS(2182), - [sym_char_literal] = ACTIONS(2182), - [anon_sym_true] = ACTIONS(2184), - [anon_sym_false] = ACTIONS(2184), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2184), - [sym_super] = ACTIONS(2184), - [sym_crate] = ACTIONS(2184), - [sym_metavariable] = ACTIONS(2182), - [sym__raw_string_literal_start] = ACTIONS(2182), - [sym_float_literal] = ACTIONS(2182), + [ts_builtin_sym_end] = ACTIONS(1978), + [sym_identifier] = ACTIONS(1980), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_macro_rules_BANG] = ACTIONS(1978), + [anon_sym_LPAREN] = ACTIONS(1978), + [anon_sym_LBRACK] = ACTIONS(1978), + [anon_sym_LBRACE] = ACTIONS(1978), + [anon_sym_RBRACE] = ACTIONS(1978), + [anon_sym_STAR] = ACTIONS(1978), + [anon_sym_u8] = ACTIONS(1980), + [anon_sym_i8] = ACTIONS(1980), + [anon_sym_u16] = ACTIONS(1980), + [anon_sym_i16] = ACTIONS(1980), + [anon_sym_u32] = ACTIONS(1980), + [anon_sym_i32] = ACTIONS(1980), + [anon_sym_u64] = ACTIONS(1980), + [anon_sym_i64] = ACTIONS(1980), + [anon_sym_u128] = ACTIONS(1980), + [anon_sym_i128] = ACTIONS(1980), + [anon_sym_isize] = ACTIONS(1980), + [anon_sym_usize] = ACTIONS(1980), + [anon_sym_f32] = ACTIONS(1980), + [anon_sym_f64] = ACTIONS(1980), + [anon_sym_bool] = ACTIONS(1980), + [anon_sym_str] = ACTIONS(1980), + [anon_sym_char] = ACTIONS(1980), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_BANG] = ACTIONS(1978), + [anon_sym_AMP] = ACTIONS(1978), + [anon_sym_PIPE] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1978), + [anon_sym_DOT_DOT] = ACTIONS(1978), + [anon_sym_COLON_COLON] = ACTIONS(1978), + [anon_sym_POUND] = ACTIONS(1978), + [anon_sym_SQUOTE] = ACTIONS(1980), + [anon_sym_async] = ACTIONS(1980), + [anon_sym_break] = ACTIONS(1980), + [anon_sym_const] = ACTIONS(1980), + [anon_sym_continue] = ACTIONS(1980), + [anon_sym_default] = ACTIONS(1980), + [anon_sym_enum] = ACTIONS(1980), + [anon_sym_fn] = ACTIONS(1980), + [anon_sym_for] = ACTIONS(1980), + [anon_sym_gen] = ACTIONS(1980), + [anon_sym_if] = ACTIONS(1980), + [anon_sym_impl] = ACTIONS(1980), + [anon_sym_let] = ACTIONS(1980), + [anon_sym_loop] = ACTIONS(1980), + [anon_sym_match] = ACTIONS(1980), + [anon_sym_mod] = ACTIONS(1980), + [anon_sym_pub] = ACTIONS(1980), + [anon_sym_return] = ACTIONS(1980), + [anon_sym_static] = ACTIONS(1980), + [anon_sym_struct] = ACTIONS(1980), + [anon_sym_trait] = ACTIONS(1980), + [anon_sym_type] = ACTIONS(1980), + [anon_sym_union] = ACTIONS(1980), + [anon_sym_unsafe] = ACTIONS(1980), + [anon_sym_use] = ACTIONS(1980), + [anon_sym_while] = ACTIONS(1980), + [anon_sym_extern] = ACTIONS(1980), + [anon_sym_yield] = ACTIONS(1980), + [anon_sym_move] = ACTIONS(1980), + [anon_sym_try] = ACTIONS(1980), + [sym_integer_literal] = ACTIONS(1978), + [aux_sym_string_literal_token1] = ACTIONS(1978), + [sym_char_literal] = ACTIONS(1978), + [anon_sym_true] = ACTIONS(1980), + [anon_sym_false] = ACTIONS(1980), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1980), + [sym_super] = ACTIONS(1980), + [sym_crate] = ACTIONS(1980), + [sym_metavariable] = ACTIONS(1978), + [sym__raw_string_literal_start] = ACTIONS(1978), + [sym_float_literal] = ACTIONS(1978), }, [STATE(558)] = { [sym_line_comment] = STATE(558), [sym_block_comment] = STATE(558), - [ts_builtin_sym_end] = ACTIONS(2186), - [sym_identifier] = ACTIONS(2188), - [anon_sym_SEMI] = ACTIONS(2186), - [anon_sym_macro_rules_BANG] = ACTIONS(2186), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_LBRACE] = ACTIONS(2186), - [anon_sym_RBRACE] = ACTIONS(2186), - [anon_sym_STAR] = ACTIONS(2186), - [anon_sym_u8] = ACTIONS(2188), - [anon_sym_i8] = ACTIONS(2188), - [anon_sym_u16] = ACTIONS(2188), - [anon_sym_i16] = ACTIONS(2188), - [anon_sym_u32] = ACTIONS(2188), - [anon_sym_i32] = ACTIONS(2188), - [anon_sym_u64] = ACTIONS(2188), - [anon_sym_i64] = ACTIONS(2188), - [anon_sym_u128] = ACTIONS(2188), - [anon_sym_i128] = ACTIONS(2188), - [anon_sym_isize] = ACTIONS(2188), - [anon_sym_usize] = ACTIONS(2188), - [anon_sym_f32] = ACTIONS(2188), - [anon_sym_f64] = ACTIONS(2188), - [anon_sym_bool] = ACTIONS(2188), - [anon_sym_str] = ACTIONS(2188), - [anon_sym_char] = ACTIONS(2188), - [anon_sym_DASH] = ACTIONS(2186), - [anon_sym_BANG] = ACTIONS(2186), - [anon_sym_AMP] = ACTIONS(2186), - [anon_sym_PIPE] = ACTIONS(2186), - [anon_sym_LT] = ACTIONS(2186), - [anon_sym_DOT_DOT] = ACTIONS(2186), - [anon_sym_COLON_COLON] = ACTIONS(2186), - [anon_sym_POUND] = ACTIONS(2186), - [anon_sym_SQUOTE] = ACTIONS(2188), - [anon_sym_async] = ACTIONS(2188), - [anon_sym_break] = ACTIONS(2188), - [anon_sym_const] = ACTIONS(2188), - [anon_sym_continue] = ACTIONS(2188), - [anon_sym_default] = ACTIONS(2188), - [anon_sym_enum] = ACTIONS(2188), - [anon_sym_fn] = ACTIONS(2188), - [anon_sym_for] = ACTIONS(2188), - [anon_sym_gen] = ACTIONS(2188), - [anon_sym_if] = ACTIONS(2188), - [anon_sym_impl] = ACTIONS(2188), - [anon_sym_let] = ACTIONS(2188), - [anon_sym_loop] = ACTIONS(2188), - [anon_sym_match] = ACTIONS(2188), - [anon_sym_mod] = ACTIONS(2188), - [anon_sym_pub] = ACTIONS(2188), - [anon_sym_return] = ACTIONS(2188), - [anon_sym_static] = ACTIONS(2188), - [anon_sym_struct] = ACTIONS(2188), - [anon_sym_trait] = ACTIONS(2188), - [anon_sym_type] = ACTIONS(2188), - [anon_sym_union] = ACTIONS(2188), - [anon_sym_unsafe] = ACTIONS(2188), - [anon_sym_use] = ACTIONS(2188), - [anon_sym_while] = ACTIONS(2188), - [anon_sym_extern] = ACTIONS(2188), - [anon_sym_yield] = ACTIONS(2188), - [anon_sym_move] = ACTIONS(2188), - [anon_sym_try] = ACTIONS(2188), - [sym_integer_literal] = ACTIONS(2186), - [aux_sym_string_literal_token1] = ACTIONS(2186), - [sym_char_literal] = ACTIONS(2186), - [anon_sym_true] = ACTIONS(2188), - [anon_sym_false] = ACTIONS(2188), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2188), - [sym_super] = ACTIONS(2188), - [sym_crate] = ACTIONS(2188), - [sym_metavariable] = ACTIONS(2186), - [sym__raw_string_literal_start] = ACTIONS(2186), - [sym_float_literal] = ACTIONS(2186), + [ts_builtin_sym_end] = ACTIONS(1982), + [sym_identifier] = ACTIONS(1984), + [anon_sym_SEMI] = ACTIONS(1982), + [anon_sym_macro_rules_BANG] = ACTIONS(1982), + [anon_sym_LPAREN] = ACTIONS(1982), + [anon_sym_LBRACK] = ACTIONS(1982), + [anon_sym_LBRACE] = ACTIONS(1982), + [anon_sym_RBRACE] = ACTIONS(1982), + [anon_sym_STAR] = ACTIONS(1982), + [anon_sym_u8] = ACTIONS(1984), + [anon_sym_i8] = ACTIONS(1984), + [anon_sym_u16] = ACTIONS(1984), + [anon_sym_i16] = ACTIONS(1984), + [anon_sym_u32] = ACTIONS(1984), + [anon_sym_i32] = ACTIONS(1984), + [anon_sym_u64] = ACTIONS(1984), + [anon_sym_i64] = ACTIONS(1984), + [anon_sym_u128] = ACTIONS(1984), + [anon_sym_i128] = ACTIONS(1984), + [anon_sym_isize] = ACTIONS(1984), + [anon_sym_usize] = ACTIONS(1984), + [anon_sym_f32] = ACTIONS(1984), + [anon_sym_f64] = ACTIONS(1984), + [anon_sym_bool] = ACTIONS(1984), + [anon_sym_str] = ACTIONS(1984), + [anon_sym_char] = ACTIONS(1984), + [anon_sym_DASH] = ACTIONS(1982), + [anon_sym_BANG] = ACTIONS(1982), + [anon_sym_AMP] = ACTIONS(1982), + [anon_sym_PIPE] = ACTIONS(1982), + [anon_sym_LT] = ACTIONS(1982), + [anon_sym_DOT_DOT] = ACTIONS(1982), + [anon_sym_COLON_COLON] = ACTIONS(1982), + [anon_sym_POUND] = ACTIONS(1982), + [anon_sym_SQUOTE] = ACTIONS(1984), + [anon_sym_async] = ACTIONS(1984), + [anon_sym_break] = ACTIONS(1984), + [anon_sym_const] = ACTIONS(1984), + [anon_sym_continue] = ACTIONS(1984), + [anon_sym_default] = ACTIONS(1984), + [anon_sym_enum] = ACTIONS(1984), + [anon_sym_fn] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1984), + [anon_sym_gen] = ACTIONS(1984), + [anon_sym_if] = ACTIONS(1984), + [anon_sym_impl] = ACTIONS(1984), + [anon_sym_let] = ACTIONS(1984), + [anon_sym_loop] = ACTIONS(1984), + [anon_sym_match] = ACTIONS(1984), + [anon_sym_mod] = ACTIONS(1984), + [anon_sym_pub] = ACTIONS(1984), + [anon_sym_return] = ACTIONS(1984), + [anon_sym_static] = ACTIONS(1984), + [anon_sym_struct] = ACTIONS(1984), + [anon_sym_trait] = ACTIONS(1984), + [anon_sym_type] = ACTIONS(1984), + [anon_sym_union] = ACTIONS(1984), + [anon_sym_unsafe] = ACTIONS(1984), + [anon_sym_use] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1984), + [anon_sym_extern] = ACTIONS(1984), + [anon_sym_yield] = ACTIONS(1984), + [anon_sym_move] = ACTIONS(1984), + [anon_sym_try] = ACTIONS(1984), + [sym_integer_literal] = ACTIONS(1982), + [aux_sym_string_literal_token1] = ACTIONS(1982), + [sym_char_literal] = ACTIONS(1982), + [anon_sym_true] = ACTIONS(1984), + [anon_sym_false] = ACTIONS(1984), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1984), + [sym_super] = ACTIONS(1984), + [sym_crate] = ACTIONS(1984), + [sym_metavariable] = ACTIONS(1982), + [sym__raw_string_literal_start] = ACTIONS(1982), + [sym_float_literal] = ACTIONS(1982), }, [STATE(559)] = { [sym_line_comment] = STATE(559), [sym_block_comment] = STATE(559), - [ts_builtin_sym_end] = ACTIONS(2190), - [sym_identifier] = ACTIONS(2192), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_macro_rules_BANG] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2190), - [anon_sym_u8] = ACTIONS(2192), - [anon_sym_i8] = ACTIONS(2192), - [anon_sym_u16] = ACTIONS(2192), - [anon_sym_i16] = ACTIONS(2192), - [anon_sym_u32] = ACTIONS(2192), - [anon_sym_i32] = ACTIONS(2192), - [anon_sym_u64] = ACTIONS(2192), - [anon_sym_i64] = ACTIONS(2192), - [anon_sym_u128] = ACTIONS(2192), - [anon_sym_i128] = ACTIONS(2192), - [anon_sym_isize] = ACTIONS(2192), - [anon_sym_usize] = ACTIONS(2192), - [anon_sym_f32] = ACTIONS(2192), - [anon_sym_f64] = ACTIONS(2192), - [anon_sym_bool] = ACTIONS(2192), - [anon_sym_str] = ACTIONS(2192), - [anon_sym_char] = ACTIONS(2192), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_PIPE] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_DOT_DOT] = ACTIONS(2190), - [anon_sym_COLON_COLON] = ACTIONS(2190), - [anon_sym_POUND] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(2192), - [anon_sym_async] = ACTIONS(2192), - [anon_sym_break] = ACTIONS(2192), - [anon_sym_const] = ACTIONS(2192), - [anon_sym_continue] = ACTIONS(2192), - [anon_sym_default] = ACTIONS(2192), - [anon_sym_enum] = ACTIONS(2192), - [anon_sym_fn] = ACTIONS(2192), - [anon_sym_for] = ACTIONS(2192), - [anon_sym_gen] = ACTIONS(2192), - [anon_sym_if] = ACTIONS(2192), - [anon_sym_impl] = ACTIONS(2192), - [anon_sym_let] = ACTIONS(2192), - [anon_sym_loop] = ACTIONS(2192), - [anon_sym_match] = ACTIONS(2192), - [anon_sym_mod] = ACTIONS(2192), - [anon_sym_pub] = ACTIONS(2192), - [anon_sym_return] = ACTIONS(2192), - [anon_sym_static] = ACTIONS(2192), - [anon_sym_struct] = ACTIONS(2192), - [anon_sym_trait] = ACTIONS(2192), - [anon_sym_type] = ACTIONS(2192), - [anon_sym_union] = ACTIONS(2192), - [anon_sym_unsafe] = ACTIONS(2192), - [anon_sym_use] = ACTIONS(2192), - [anon_sym_while] = ACTIONS(2192), - [anon_sym_extern] = ACTIONS(2192), - [anon_sym_yield] = ACTIONS(2192), - [anon_sym_move] = ACTIONS(2192), - [anon_sym_try] = ACTIONS(2192), - [sym_integer_literal] = ACTIONS(2190), - [aux_sym_string_literal_token1] = ACTIONS(2190), - [sym_char_literal] = ACTIONS(2190), - [anon_sym_true] = ACTIONS(2192), - [anon_sym_false] = ACTIONS(2192), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2192), - [sym_super] = ACTIONS(2192), - [sym_crate] = ACTIONS(2192), - [sym_metavariable] = ACTIONS(2190), - [sym__raw_string_literal_start] = ACTIONS(2190), - [sym_float_literal] = ACTIONS(2190), + [ts_builtin_sym_end] = ACTIONS(1986), + [sym_identifier] = ACTIONS(1988), + [anon_sym_SEMI] = ACTIONS(1986), + [anon_sym_macro_rules_BANG] = ACTIONS(1986), + [anon_sym_LPAREN] = ACTIONS(1986), + [anon_sym_LBRACK] = ACTIONS(1986), + [anon_sym_LBRACE] = ACTIONS(1986), + [anon_sym_RBRACE] = ACTIONS(1986), + [anon_sym_STAR] = ACTIONS(1986), + [anon_sym_u8] = ACTIONS(1988), + [anon_sym_i8] = ACTIONS(1988), + [anon_sym_u16] = ACTIONS(1988), + [anon_sym_i16] = ACTIONS(1988), + [anon_sym_u32] = ACTIONS(1988), + [anon_sym_i32] = ACTIONS(1988), + [anon_sym_u64] = ACTIONS(1988), + [anon_sym_i64] = ACTIONS(1988), + [anon_sym_u128] = ACTIONS(1988), + [anon_sym_i128] = ACTIONS(1988), + [anon_sym_isize] = ACTIONS(1988), + [anon_sym_usize] = ACTIONS(1988), + [anon_sym_f32] = ACTIONS(1988), + [anon_sym_f64] = ACTIONS(1988), + [anon_sym_bool] = ACTIONS(1988), + [anon_sym_str] = ACTIONS(1988), + [anon_sym_char] = ACTIONS(1988), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_BANG] = ACTIONS(1986), + [anon_sym_AMP] = ACTIONS(1986), + [anon_sym_PIPE] = ACTIONS(1986), + [anon_sym_LT] = ACTIONS(1986), + [anon_sym_DOT_DOT] = ACTIONS(1986), + [anon_sym_COLON_COLON] = ACTIONS(1986), + [anon_sym_POUND] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1988), + [anon_sym_async] = ACTIONS(1988), + [anon_sym_break] = ACTIONS(1988), + [anon_sym_const] = ACTIONS(1988), + [anon_sym_continue] = ACTIONS(1988), + [anon_sym_default] = ACTIONS(1988), + [anon_sym_enum] = ACTIONS(1988), + [anon_sym_fn] = ACTIONS(1988), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_gen] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_impl] = ACTIONS(1988), + [anon_sym_let] = ACTIONS(1988), + [anon_sym_loop] = ACTIONS(1988), + [anon_sym_match] = ACTIONS(1988), + [anon_sym_mod] = ACTIONS(1988), + [anon_sym_pub] = ACTIONS(1988), + [anon_sym_return] = ACTIONS(1988), + [anon_sym_static] = ACTIONS(1988), + [anon_sym_struct] = ACTIONS(1988), + [anon_sym_trait] = ACTIONS(1988), + [anon_sym_type] = ACTIONS(1988), + [anon_sym_union] = ACTIONS(1988), + [anon_sym_unsafe] = ACTIONS(1988), + [anon_sym_use] = ACTIONS(1988), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_extern] = ACTIONS(1988), + [anon_sym_yield] = ACTIONS(1988), + [anon_sym_move] = ACTIONS(1988), + [anon_sym_try] = ACTIONS(1988), + [sym_integer_literal] = ACTIONS(1986), + [aux_sym_string_literal_token1] = ACTIONS(1986), + [sym_char_literal] = ACTIONS(1986), + [anon_sym_true] = ACTIONS(1988), + [anon_sym_false] = ACTIONS(1988), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1988), + [sym_super] = ACTIONS(1988), + [sym_crate] = ACTIONS(1988), + [sym_metavariable] = ACTIONS(1986), + [sym__raw_string_literal_start] = ACTIONS(1986), + [sym_float_literal] = ACTIONS(1986), }, [STATE(560)] = { [sym_line_comment] = STATE(560), [sym_block_comment] = STATE(560), - [ts_builtin_sym_end] = ACTIONS(2194), - [sym_identifier] = ACTIONS(2196), - [anon_sym_SEMI] = ACTIONS(2194), - [anon_sym_macro_rules_BANG] = ACTIONS(2194), - [anon_sym_LPAREN] = ACTIONS(2194), - [anon_sym_LBRACK] = ACTIONS(2194), - [anon_sym_LBRACE] = ACTIONS(2194), - [anon_sym_RBRACE] = ACTIONS(2194), - [anon_sym_STAR] = ACTIONS(2194), - [anon_sym_u8] = ACTIONS(2196), - [anon_sym_i8] = ACTIONS(2196), - [anon_sym_u16] = ACTIONS(2196), - [anon_sym_i16] = ACTIONS(2196), - [anon_sym_u32] = ACTIONS(2196), - [anon_sym_i32] = ACTIONS(2196), - [anon_sym_u64] = ACTIONS(2196), - [anon_sym_i64] = ACTIONS(2196), - [anon_sym_u128] = ACTIONS(2196), - [anon_sym_i128] = ACTIONS(2196), - [anon_sym_isize] = ACTIONS(2196), - [anon_sym_usize] = ACTIONS(2196), - [anon_sym_f32] = ACTIONS(2196), - [anon_sym_f64] = ACTIONS(2196), - [anon_sym_bool] = ACTIONS(2196), - [anon_sym_str] = ACTIONS(2196), - [anon_sym_char] = ACTIONS(2196), - [anon_sym_DASH] = ACTIONS(2194), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_AMP] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(2194), - [anon_sym_LT] = ACTIONS(2194), - [anon_sym_DOT_DOT] = ACTIONS(2194), - [anon_sym_COLON_COLON] = ACTIONS(2194), - [anon_sym_POUND] = ACTIONS(2194), - [anon_sym_SQUOTE] = ACTIONS(2196), - [anon_sym_async] = ACTIONS(2196), - [anon_sym_break] = ACTIONS(2196), - [anon_sym_const] = ACTIONS(2196), - [anon_sym_continue] = ACTIONS(2196), - [anon_sym_default] = ACTIONS(2196), - [anon_sym_enum] = ACTIONS(2196), - [anon_sym_fn] = ACTIONS(2196), - [anon_sym_for] = ACTIONS(2196), - [anon_sym_gen] = ACTIONS(2196), - [anon_sym_if] = ACTIONS(2196), - [anon_sym_impl] = ACTIONS(2196), - [anon_sym_let] = ACTIONS(2196), - [anon_sym_loop] = ACTIONS(2196), - [anon_sym_match] = ACTIONS(2196), - [anon_sym_mod] = ACTIONS(2196), - [anon_sym_pub] = ACTIONS(2196), - [anon_sym_return] = ACTIONS(2196), - [anon_sym_static] = ACTIONS(2196), - [anon_sym_struct] = ACTIONS(2196), - [anon_sym_trait] = ACTIONS(2196), - [anon_sym_type] = ACTIONS(2196), - [anon_sym_union] = ACTIONS(2196), - [anon_sym_unsafe] = ACTIONS(2196), - [anon_sym_use] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2196), - [anon_sym_extern] = ACTIONS(2196), - [anon_sym_yield] = ACTIONS(2196), - [anon_sym_move] = ACTIONS(2196), - [anon_sym_try] = ACTIONS(2196), - [sym_integer_literal] = ACTIONS(2194), - [aux_sym_string_literal_token1] = ACTIONS(2194), - [sym_char_literal] = ACTIONS(2194), - [anon_sym_true] = ACTIONS(2196), - [anon_sym_false] = ACTIONS(2196), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2196), - [sym_super] = ACTIONS(2196), - [sym_crate] = ACTIONS(2196), - [sym_metavariable] = ACTIONS(2194), - [sym__raw_string_literal_start] = ACTIONS(2194), - [sym_float_literal] = ACTIONS(2194), + [ts_builtin_sym_end] = ACTIONS(1990), + [sym_identifier] = ACTIONS(1992), + [anon_sym_SEMI] = ACTIONS(1990), + [anon_sym_macro_rules_BANG] = ACTIONS(1990), + [anon_sym_LPAREN] = ACTIONS(1990), + [anon_sym_LBRACK] = ACTIONS(1990), + [anon_sym_LBRACE] = ACTIONS(1990), + [anon_sym_RBRACE] = ACTIONS(1990), + [anon_sym_STAR] = ACTIONS(1990), + [anon_sym_u8] = ACTIONS(1992), + [anon_sym_i8] = ACTIONS(1992), + [anon_sym_u16] = ACTIONS(1992), + [anon_sym_i16] = ACTIONS(1992), + [anon_sym_u32] = ACTIONS(1992), + [anon_sym_i32] = ACTIONS(1992), + [anon_sym_u64] = ACTIONS(1992), + [anon_sym_i64] = ACTIONS(1992), + [anon_sym_u128] = ACTIONS(1992), + [anon_sym_i128] = ACTIONS(1992), + [anon_sym_isize] = ACTIONS(1992), + [anon_sym_usize] = ACTIONS(1992), + [anon_sym_f32] = ACTIONS(1992), + [anon_sym_f64] = ACTIONS(1992), + [anon_sym_bool] = ACTIONS(1992), + [anon_sym_str] = ACTIONS(1992), + [anon_sym_char] = ACTIONS(1992), + [anon_sym_DASH] = ACTIONS(1990), + [anon_sym_BANG] = ACTIONS(1990), + [anon_sym_AMP] = ACTIONS(1990), + [anon_sym_PIPE] = ACTIONS(1990), + [anon_sym_LT] = ACTIONS(1990), + [anon_sym_DOT_DOT] = ACTIONS(1990), + [anon_sym_COLON_COLON] = ACTIONS(1990), + [anon_sym_POUND] = ACTIONS(1990), + [anon_sym_SQUOTE] = ACTIONS(1992), + [anon_sym_async] = ACTIONS(1992), + [anon_sym_break] = ACTIONS(1992), + [anon_sym_const] = ACTIONS(1992), + [anon_sym_continue] = ACTIONS(1992), + [anon_sym_default] = ACTIONS(1992), + [anon_sym_enum] = ACTIONS(1992), + [anon_sym_fn] = ACTIONS(1992), + [anon_sym_for] = ACTIONS(1992), + [anon_sym_gen] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_impl] = ACTIONS(1992), + [anon_sym_let] = ACTIONS(1992), + [anon_sym_loop] = ACTIONS(1992), + [anon_sym_match] = ACTIONS(1992), + [anon_sym_mod] = ACTIONS(1992), + [anon_sym_pub] = ACTIONS(1992), + [anon_sym_return] = ACTIONS(1992), + [anon_sym_static] = ACTIONS(1992), + [anon_sym_struct] = ACTIONS(1992), + [anon_sym_trait] = ACTIONS(1992), + [anon_sym_type] = ACTIONS(1992), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_unsafe] = ACTIONS(1992), + [anon_sym_use] = ACTIONS(1992), + [anon_sym_while] = ACTIONS(1992), + [anon_sym_extern] = ACTIONS(1992), + [anon_sym_yield] = ACTIONS(1992), + [anon_sym_move] = ACTIONS(1992), + [anon_sym_try] = ACTIONS(1992), + [sym_integer_literal] = ACTIONS(1990), + [aux_sym_string_literal_token1] = ACTIONS(1990), + [sym_char_literal] = ACTIONS(1990), + [anon_sym_true] = ACTIONS(1992), + [anon_sym_false] = ACTIONS(1992), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1992), + [sym_super] = ACTIONS(1992), + [sym_crate] = ACTIONS(1992), + [sym_metavariable] = ACTIONS(1990), + [sym__raw_string_literal_start] = ACTIONS(1990), + [sym_float_literal] = ACTIONS(1990), }, [STATE(561)] = { [sym_line_comment] = STATE(561), [sym_block_comment] = STATE(561), - [ts_builtin_sym_end] = ACTIONS(2198), - [sym_identifier] = ACTIONS(2200), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_macro_rules_BANG] = ACTIONS(2198), - [anon_sym_LPAREN] = ACTIONS(2198), - [anon_sym_LBRACK] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2198), - [anon_sym_RBRACE] = ACTIONS(2198), - [anon_sym_STAR] = ACTIONS(2198), - [anon_sym_u8] = ACTIONS(2200), - [anon_sym_i8] = ACTIONS(2200), - [anon_sym_u16] = ACTIONS(2200), - [anon_sym_i16] = ACTIONS(2200), - [anon_sym_u32] = ACTIONS(2200), - [anon_sym_i32] = ACTIONS(2200), - [anon_sym_u64] = ACTIONS(2200), - [anon_sym_i64] = ACTIONS(2200), - [anon_sym_u128] = ACTIONS(2200), - [anon_sym_i128] = ACTIONS(2200), - [anon_sym_isize] = ACTIONS(2200), - [anon_sym_usize] = ACTIONS(2200), - [anon_sym_f32] = ACTIONS(2200), - [anon_sym_f64] = ACTIONS(2200), - [anon_sym_bool] = ACTIONS(2200), - [anon_sym_str] = ACTIONS(2200), - [anon_sym_char] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(2198), - [anon_sym_BANG] = ACTIONS(2198), - [anon_sym_AMP] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_LT] = ACTIONS(2198), - [anon_sym_DOT_DOT] = ACTIONS(2198), - [anon_sym_COLON_COLON] = ACTIONS(2198), - [anon_sym_POUND] = ACTIONS(2198), - [anon_sym_SQUOTE] = ACTIONS(2200), - [anon_sym_async] = ACTIONS(2200), - [anon_sym_break] = ACTIONS(2200), - [anon_sym_const] = ACTIONS(2200), - [anon_sym_continue] = ACTIONS(2200), - [anon_sym_default] = ACTIONS(2200), - [anon_sym_enum] = ACTIONS(2200), - [anon_sym_fn] = ACTIONS(2200), - [anon_sym_for] = ACTIONS(2200), - [anon_sym_gen] = ACTIONS(2200), - [anon_sym_if] = ACTIONS(2200), - [anon_sym_impl] = ACTIONS(2200), - [anon_sym_let] = ACTIONS(2200), - [anon_sym_loop] = ACTIONS(2200), - [anon_sym_match] = ACTIONS(2200), - [anon_sym_mod] = ACTIONS(2200), - [anon_sym_pub] = ACTIONS(2200), - [anon_sym_return] = ACTIONS(2200), - [anon_sym_static] = ACTIONS(2200), - [anon_sym_struct] = ACTIONS(2200), - [anon_sym_trait] = ACTIONS(2200), - [anon_sym_type] = ACTIONS(2200), - [anon_sym_union] = ACTIONS(2200), - [anon_sym_unsafe] = ACTIONS(2200), - [anon_sym_use] = ACTIONS(2200), - [anon_sym_while] = ACTIONS(2200), - [anon_sym_extern] = ACTIONS(2200), - [anon_sym_yield] = ACTIONS(2200), - [anon_sym_move] = ACTIONS(2200), - [anon_sym_try] = ACTIONS(2200), - [sym_integer_literal] = ACTIONS(2198), - [aux_sym_string_literal_token1] = ACTIONS(2198), - [sym_char_literal] = ACTIONS(2198), - [anon_sym_true] = ACTIONS(2200), - [anon_sym_false] = ACTIONS(2200), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2200), - [sym_super] = ACTIONS(2200), - [sym_crate] = ACTIONS(2200), - [sym_metavariable] = ACTIONS(2198), - [sym__raw_string_literal_start] = ACTIONS(2198), - [sym_float_literal] = ACTIONS(2198), + [ts_builtin_sym_end] = ACTIONS(1994), + [sym_identifier] = ACTIONS(1996), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym_macro_rules_BANG] = ACTIONS(1994), + [anon_sym_LPAREN] = ACTIONS(1994), + [anon_sym_LBRACK] = ACTIONS(1994), + [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_RBRACE] = ACTIONS(1994), + [anon_sym_STAR] = ACTIONS(1994), + [anon_sym_u8] = ACTIONS(1996), + [anon_sym_i8] = ACTIONS(1996), + [anon_sym_u16] = ACTIONS(1996), + [anon_sym_i16] = ACTIONS(1996), + [anon_sym_u32] = ACTIONS(1996), + [anon_sym_i32] = ACTIONS(1996), + [anon_sym_u64] = ACTIONS(1996), + [anon_sym_i64] = ACTIONS(1996), + [anon_sym_u128] = ACTIONS(1996), + [anon_sym_i128] = ACTIONS(1996), + [anon_sym_isize] = ACTIONS(1996), + [anon_sym_usize] = ACTIONS(1996), + [anon_sym_f32] = ACTIONS(1996), + [anon_sym_f64] = ACTIONS(1996), + [anon_sym_bool] = ACTIONS(1996), + [anon_sym_str] = ACTIONS(1996), + [anon_sym_char] = ACTIONS(1996), + [anon_sym_DASH] = ACTIONS(1994), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_AMP] = ACTIONS(1994), + [anon_sym_PIPE] = ACTIONS(1994), + [anon_sym_LT] = ACTIONS(1994), + [anon_sym_DOT_DOT] = ACTIONS(1994), + [anon_sym_COLON_COLON] = ACTIONS(1994), + [anon_sym_POUND] = ACTIONS(1994), + [anon_sym_SQUOTE] = ACTIONS(1996), + [anon_sym_async] = ACTIONS(1996), + [anon_sym_break] = ACTIONS(1996), + [anon_sym_const] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(1996), + [anon_sym_default] = ACTIONS(1996), + [anon_sym_enum] = ACTIONS(1996), + [anon_sym_fn] = ACTIONS(1996), + [anon_sym_for] = ACTIONS(1996), + [anon_sym_gen] = ACTIONS(1996), + [anon_sym_if] = ACTIONS(1996), + [anon_sym_impl] = ACTIONS(1996), + [anon_sym_let] = ACTIONS(1996), + [anon_sym_loop] = ACTIONS(1996), + [anon_sym_match] = ACTIONS(1996), + [anon_sym_mod] = ACTIONS(1996), + [anon_sym_pub] = ACTIONS(1996), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_static] = ACTIONS(1996), + [anon_sym_struct] = ACTIONS(1996), + [anon_sym_trait] = ACTIONS(1996), + [anon_sym_type] = ACTIONS(1996), + [anon_sym_union] = ACTIONS(1996), + [anon_sym_unsafe] = ACTIONS(1996), + [anon_sym_use] = ACTIONS(1996), + [anon_sym_while] = ACTIONS(1996), + [anon_sym_extern] = ACTIONS(1996), + [anon_sym_yield] = ACTIONS(1996), + [anon_sym_move] = ACTIONS(1996), + [anon_sym_try] = ACTIONS(1996), + [sym_integer_literal] = ACTIONS(1994), + [aux_sym_string_literal_token1] = ACTIONS(1994), + [sym_char_literal] = ACTIONS(1994), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1996), + [sym_super] = ACTIONS(1996), + [sym_crate] = ACTIONS(1996), + [sym_metavariable] = ACTIONS(1994), + [sym__raw_string_literal_start] = ACTIONS(1994), + [sym_float_literal] = ACTIONS(1994), }, [STATE(562)] = { [sym_line_comment] = STATE(562), [sym_block_comment] = STATE(562), - [ts_builtin_sym_end] = ACTIONS(2202), - [sym_identifier] = ACTIONS(2204), - [anon_sym_SEMI] = ACTIONS(2202), - [anon_sym_macro_rules_BANG] = ACTIONS(2202), - [anon_sym_LPAREN] = ACTIONS(2202), - [anon_sym_LBRACK] = ACTIONS(2202), - [anon_sym_LBRACE] = ACTIONS(2202), - [anon_sym_RBRACE] = ACTIONS(2202), - [anon_sym_STAR] = ACTIONS(2202), - [anon_sym_u8] = ACTIONS(2204), - [anon_sym_i8] = ACTIONS(2204), - [anon_sym_u16] = ACTIONS(2204), - [anon_sym_i16] = ACTIONS(2204), - [anon_sym_u32] = ACTIONS(2204), - [anon_sym_i32] = ACTIONS(2204), - [anon_sym_u64] = ACTIONS(2204), - [anon_sym_i64] = ACTIONS(2204), - [anon_sym_u128] = ACTIONS(2204), - [anon_sym_i128] = ACTIONS(2204), - [anon_sym_isize] = ACTIONS(2204), - [anon_sym_usize] = ACTIONS(2204), - [anon_sym_f32] = ACTIONS(2204), - [anon_sym_f64] = ACTIONS(2204), - [anon_sym_bool] = ACTIONS(2204), - [anon_sym_str] = ACTIONS(2204), - [anon_sym_char] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2202), - [anon_sym_BANG] = ACTIONS(2202), - [anon_sym_AMP] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2202), - [anon_sym_LT] = ACTIONS(2202), - [anon_sym_DOT_DOT] = ACTIONS(2202), - [anon_sym_COLON_COLON] = ACTIONS(2202), - [anon_sym_POUND] = ACTIONS(2202), - [anon_sym_SQUOTE] = ACTIONS(2204), - [anon_sym_async] = ACTIONS(2204), - [anon_sym_break] = ACTIONS(2204), - [anon_sym_const] = ACTIONS(2204), - [anon_sym_continue] = ACTIONS(2204), - [anon_sym_default] = ACTIONS(2204), - [anon_sym_enum] = ACTIONS(2204), - [anon_sym_fn] = ACTIONS(2204), - [anon_sym_for] = ACTIONS(2204), - [anon_sym_gen] = ACTIONS(2204), - [anon_sym_if] = ACTIONS(2204), - [anon_sym_impl] = ACTIONS(2204), - [anon_sym_let] = ACTIONS(2204), - [anon_sym_loop] = ACTIONS(2204), - [anon_sym_match] = ACTIONS(2204), - [anon_sym_mod] = ACTIONS(2204), - [anon_sym_pub] = ACTIONS(2204), - [anon_sym_return] = ACTIONS(2204), - [anon_sym_static] = ACTIONS(2204), - [anon_sym_struct] = ACTIONS(2204), - [anon_sym_trait] = ACTIONS(2204), - [anon_sym_type] = ACTIONS(2204), - [anon_sym_union] = ACTIONS(2204), - [anon_sym_unsafe] = ACTIONS(2204), - [anon_sym_use] = ACTIONS(2204), - [anon_sym_while] = ACTIONS(2204), - [anon_sym_extern] = ACTIONS(2204), - [anon_sym_yield] = ACTIONS(2204), - [anon_sym_move] = ACTIONS(2204), - [anon_sym_try] = ACTIONS(2204), - [sym_integer_literal] = ACTIONS(2202), - [aux_sym_string_literal_token1] = ACTIONS(2202), - [sym_char_literal] = ACTIONS(2202), - [anon_sym_true] = ACTIONS(2204), - [anon_sym_false] = ACTIONS(2204), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2204), - [sym_super] = ACTIONS(2204), - [sym_crate] = ACTIONS(2204), - [sym_metavariable] = ACTIONS(2202), - [sym__raw_string_literal_start] = ACTIONS(2202), - [sym_float_literal] = ACTIONS(2202), + [ts_builtin_sym_end] = ACTIONS(1998), + [sym_identifier] = ACTIONS(2000), + [anon_sym_SEMI] = ACTIONS(1998), + [anon_sym_macro_rules_BANG] = ACTIONS(1998), + [anon_sym_LPAREN] = ACTIONS(1998), + [anon_sym_LBRACK] = ACTIONS(1998), + [anon_sym_LBRACE] = ACTIONS(1998), + [anon_sym_RBRACE] = ACTIONS(1998), + [anon_sym_STAR] = ACTIONS(1998), + [anon_sym_u8] = ACTIONS(2000), + [anon_sym_i8] = ACTIONS(2000), + [anon_sym_u16] = ACTIONS(2000), + [anon_sym_i16] = ACTIONS(2000), + [anon_sym_u32] = ACTIONS(2000), + [anon_sym_i32] = ACTIONS(2000), + [anon_sym_u64] = ACTIONS(2000), + [anon_sym_i64] = ACTIONS(2000), + [anon_sym_u128] = ACTIONS(2000), + [anon_sym_i128] = ACTIONS(2000), + [anon_sym_isize] = ACTIONS(2000), + [anon_sym_usize] = ACTIONS(2000), + [anon_sym_f32] = ACTIONS(2000), + [anon_sym_f64] = ACTIONS(2000), + [anon_sym_bool] = ACTIONS(2000), + [anon_sym_str] = ACTIONS(2000), + [anon_sym_char] = ACTIONS(2000), + [anon_sym_DASH] = ACTIONS(1998), + [anon_sym_BANG] = ACTIONS(1998), + [anon_sym_AMP] = ACTIONS(1998), + [anon_sym_PIPE] = ACTIONS(1998), + [anon_sym_LT] = ACTIONS(1998), + [anon_sym_DOT_DOT] = ACTIONS(1998), + [anon_sym_COLON_COLON] = ACTIONS(1998), + [anon_sym_POUND] = ACTIONS(1998), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_async] = ACTIONS(2000), + [anon_sym_break] = ACTIONS(2000), + [anon_sym_const] = ACTIONS(2000), + [anon_sym_continue] = ACTIONS(2000), + [anon_sym_default] = ACTIONS(2000), + [anon_sym_enum] = ACTIONS(2000), + [anon_sym_fn] = ACTIONS(2000), + [anon_sym_for] = ACTIONS(2000), + [anon_sym_gen] = ACTIONS(2000), + [anon_sym_if] = ACTIONS(2000), + [anon_sym_impl] = ACTIONS(2000), + [anon_sym_let] = ACTIONS(2000), + [anon_sym_loop] = ACTIONS(2000), + [anon_sym_match] = ACTIONS(2000), + [anon_sym_mod] = ACTIONS(2000), + [anon_sym_pub] = ACTIONS(2000), + [anon_sym_return] = ACTIONS(2000), + [anon_sym_static] = ACTIONS(2000), + [anon_sym_struct] = ACTIONS(2000), + [anon_sym_trait] = ACTIONS(2000), + [anon_sym_type] = ACTIONS(2000), + [anon_sym_union] = ACTIONS(2000), + [anon_sym_unsafe] = ACTIONS(2000), + [anon_sym_use] = ACTIONS(2000), + [anon_sym_while] = ACTIONS(2000), + [anon_sym_extern] = ACTIONS(2000), + [anon_sym_yield] = ACTIONS(2000), + [anon_sym_move] = ACTIONS(2000), + [anon_sym_try] = ACTIONS(2000), + [sym_integer_literal] = ACTIONS(1998), + [aux_sym_string_literal_token1] = ACTIONS(1998), + [sym_char_literal] = ACTIONS(1998), + [anon_sym_true] = ACTIONS(2000), + [anon_sym_false] = ACTIONS(2000), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2000), + [sym_super] = ACTIONS(2000), + [sym_crate] = ACTIONS(2000), + [sym_metavariable] = ACTIONS(1998), + [sym__raw_string_literal_start] = ACTIONS(1998), + [sym_float_literal] = ACTIONS(1998), }, [STATE(563)] = { [sym_line_comment] = STATE(563), [sym_block_comment] = STATE(563), - [ts_builtin_sym_end] = ACTIONS(2206), - [sym_identifier] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2206), - [anon_sym_macro_rules_BANG] = ACTIONS(2206), - [anon_sym_LPAREN] = ACTIONS(2206), - [anon_sym_LBRACK] = ACTIONS(2206), - [anon_sym_LBRACE] = ACTIONS(2206), - [anon_sym_RBRACE] = ACTIONS(2206), - [anon_sym_STAR] = ACTIONS(2206), - [anon_sym_u8] = ACTIONS(2208), - [anon_sym_i8] = ACTIONS(2208), - [anon_sym_u16] = ACTIONS(2208), - [anon_sym_i16] = ACTIONS(2208), - [anon_sym_u32] = ACTIONS(2208), - [anon_sym_i32] = ACTIONS(2208), - [anon_sym_u64] = ACTIONS(2208), - [anon_sym_i64] = ACTIONS(2208), - [anon_sym_u128] = ACTIONS(2208), - [anon_sym_i128] = ACTIONS(2208), - [anon_sym_isize] = ACTIONS(2208), - [anon_sym_usize] = ACTIONS(2208), - [anon_sym_f32] = ACTIONS(2208), - [anon_sym_f64] = ACTIONS(2208), - [anon_sym_bool] = ACTIONS(2208), - [anon_sym_str] = ACTIONS(2208), - [anon_sym_char] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2206), - [anon_sym_BANG] = ACTIONS(2206), - [anon_sym_AMP] = ACTIONS(2206), - [anon_sym_PIPE] = ACTIONS(2206), - [anon_sym_LT] = ACTIONS(2206), - [anon_sym_DOT_DOT] = ACTIONS(2206), - [anon_sym_COLON_COLON] = ACTIONS(2206), - [anon_sym_POUND] = ACTIONS(2206), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_default] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), - [anon_sym_fn] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_gen] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_impl] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_loop] = ACTIONS(2208), - [anon_sym_match] = ACTIONS(2208), - [anon_sym_mod] = ACTIONS(2208), - [anon_sym_pub] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_struct] = ACTIONS(2208), - [anon_sym_trait] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_union] = ACTIONS(2208), - [anon_sym_unsafe] = ACTIONS(2208), - [anon_sym_use] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_extern] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_move] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [sym_integer_literal] = ACTIONS(2206), - [aux_sym_string_literal_token1] = ACTIONS(2206), - [sym_char_literal] = ACTIONS(2206), - [anon_sym_true] = ACTIONS(2208), - [anon_sym_false] = ACTIONS(2208), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_crate] = ACTIONS(2208), - [sym_metavariable] = ACTIONS(2206), - [sym__raw_string_literal_start] = ACTIONS(2206), - [sym_float_literal] = ACTIONS(2206), + [ts_builtin_sym_end] = ACTIONS(2002), + [sym_identifier] = ACTIONS(2004), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_macro_rules_BANG] = ACTIONS(2002), + [anon_sym_LPAREN] = ACTIONS(2002), + [anon_sym_LBRACK] = ACTIONS(2002), + [anon_sym_LBRACE] = ACTIONS(2002), + [anon_sym_RBRACE] = ACTIONS(2002), + [anon_sym_STAR] = ACTIONS(2002), + [anon_sym_u8] = ACTIONS(2004), + [anon_sym_i8] = ACTIONS(2004), + [anon_sym_u16] = ACTIONS(2004), + [anon_sym_i16] = ACTIONS(2004), + [anon_sym_u32] = ACTIONS(2004), + [anon_sym_i32] = ACTIONS(2004), + [anon_sym_u64] = ACTIONS(2004), + [anon_sym_i64] = ACTIONS(2004), + [anon_sym_u128] = ACTIONS(2004), + [anon_sym_i128] = ACTIONS(2004), + [anon_sym_isize] = ACTIONS(2004), + [anon_sym_usize] = ACTIONS(2004), + [anon_sym_f32] = ACTIONS(2004), + [anon_sym_f64] = ACTIONS(2004), + [anon_sym_bool] = ACTIONS(2004), + [anon_sym_str] = ACTIONS(2004), + [anon_sym_char] = ACTIONS(2004), + [anon_sym_DASH] = ACTIONS(2002), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_PIPE] = ACTIONS(2002), + [anon_sym_LT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_COLON_COLON] = ACTIONS(2002), + [anon_sym_POUND] = ACTIONS(2002), + [anon_sym_SQUOTE] = ACTIONS(2004), + [anon_sym_async] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_default] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(2004), + [anon_sym_fn] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_gen] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_impl] = ACTIONS(2004), + [anon_sym_let] = ACTIONS(2004), + [anon_sym_loop] = ACTIONS(2004), + [anon_sym_match] = ACTIONS(2004), + [anon_sym_mod] = ACTIONS(2004), + [anon_sym_pub] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_struct] = ACTIONS(2004), + [anon_sym_trait] = ACTIONS(2004), + [anon_sym_type] = ACTIONS(2004), + [anon_sym_union] = ACTIONS(2004), + [anon_sym_unsafe] = ACTIONS(2004), + [anon_sym_use] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym_yield] = ACTIONS(2004), + [anon_sym_move] = ACTIONS(2004), + [anon_sym_try] = ACTIONS(2004), + [sym_integer_literal] = ACTIONS(2002), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2002), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2004), + [sym_super] = ACTIONS(2004), + [sym_crate] = ACTIONS(2004), + [sym_metavariable] = ACTIONS(2002), + [sym__raw_string_literal_start] = ACTIONS(2002), + [sym_float_literal] = ACTIONS(2002), }, [STATE(564)] = { [sym_line_comment] = STATE(564), [sym_block_comment] = STATE(564), - [ts_builtin_sym_end] = ACTIONS(2210), - [sym_identifier] = ACTIONS(2212), - [anon_sym_SEMI] = ACTIONS(2210), - [anon_sym_macro_rules_BANG] = ACTIONS(2210), - [anon_sym_LPAREN] = ACTIONS(2210), - [anon_sym_LBRACK] = ACTIONS(2210), - [anon_sym_LBRACE] = ACTIONS(2210), - [anon_sym_RBRACE] = ACTIONS(2210), - [anon_sym_STAR] = ACTIONS(2210), - [anon_sym_u8] = ACTIONS(2212), - [anon_sym_i8] = ACTIONS(2212), - [anon_sym_u16] = ACTIONS(2212), - [anon_sym_i16] = ACTIONS(2212), - [anon_sym_u32] = ACTIONS(2212), - [anon_sym_i32] = ACTIONS(2212), - [anon_sym_u64] = ACTIONS(2212), - [anon_sym_i64] = ACTIONS(2212), - [anon_sym_u128] = ACTIONS(2212), - [anon_sym_i128] = ACTIONS(2212), - [anon_sym_isize] = ACTIONS(2212), - [anon_sym_usize] = ACTIONS(2212), - [anon_sym_f32] = ACTIONS(2212), - [anon_sym_f64] = ACTIONS(2212), - [anon_sym_bool] = ACTIONS(2212), - [anon_sym_str] = ACTIONS(2212), - [anon_sym_char] = ACTIONS(2212), - [anon_sym_DASH] = ACTIONS(2210), - [anon_sym_BANG] = ACTIONS(2210), - [anon_sym_AMP] = ACTIONS(2210), - [anon_sym_PIPE] = ACTIONS(2210), - [anon_sym_LT] = ACTIONS(2210), - [anon_sym_DOT_DOT] = ACTIONS(2210), - [anon_sym_COLON_COLON] = ACTIONS(2210), - [anon_sym_POUND] = ACTIONS(2210), - [anon_sym_SQUOTE] = ACTIONS(2212), - [anon_sym_async] = ACTIONS(2212), - [anon_sym_break] = ACTIONS(2212), - [anon_sym_const] = ACTIONS(2212), - [anon_sym_continue] = ACTIONS(2212), - [anon_sym_default] = ACTIONS(2212), - [anon_sym_enum] = ACTIONS(2212), - [anon_sym_fn] = ACTIONS(2212), - [anon_sym_for] = ACTIONS(2212), - [anon_sym_gen] = ACTIONS(2212), - [anon_sym_if] = ACTIONS(2212), - [anon_sym_impl] = ACTIONS(2212), - [anon_sym_let] = ACTIONS(2212), - [anon_sym_loop] = ACTIONS(2212), - [anon_sym_match] = ACTIONS(2212), - [anon_sym_mod] = ACTIONS(2212), - [anon_sym_pub] = ACTIONS(2212), - [anon_sym_return] = ACTIONS(2212), - [anon_sym_static] = ACTIONS(2212), - [anon_sym_struct] = ACTIONS(2212), - [anon_sym_trait] = ACTIONS(2212), - [anon_sym_type] = ACTIONS(2212), - [anon_sym_union] = ACTIONS(2212), - [anon_sym_unsafe] = ACTIONS(2212), - [anon_sym_use] = ACTIONS(2212), - [anon_sym_while] = ACTIONS(2212), - [anon_sym_extern] = ACTIONS(2212), - [anon_sym_yield] = ACTIONS(2212), - [anon_sym_move] = ACTIONS(2212), - [anon_sym_try] = ACTIONS(2212), - [sym_integer_literal] = ACTIONS(2210), - [aux_sym_string_literal_token1] = ACTIONS(2210), - [sym_char_literal] = ACTIONS(2210), - [anon_sym_true] = ACTIONS(2212), - [anon_sym_false] = ACTIONS(2212), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2212), - [sym_super] = ACTIONS(2212), - [sym_crate] = ACTIONS(2212), - [sym_metavariable] = ACTIONS(2210), - [sym__raw_string_literal_start] = ACTIONS(2210), - [sym_float_literal] = ACTIONS(2210), + [ts_builtin_sym_end] = ACTIONS(2006), + [sym_identifier] = ACTIONS(2008), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_macro_rules_BANG] = ACTIONS(2006), + [anon_sym_LPAREN] = ACTIONS(2006), + [anon_sym_LBRACK] = ACTIONS(2006), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_RBRACE] = ACTIONS(2006), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_u8] = ACTIONS(2008), + [anon_sym_i8] = ACTIONS(2008), + [anon_sym_u16] = ACTIONS(2008), + [anon_sym_i16] = ACTIONS(2008), + [anon_sym_u32] = ACTIONS(2008), + [anon_sym_i32] = ACTIONS(2008), + [anon_sym_u64] = ACTIONS(2008), + [anon_sym_i64] = ACTIONS(2008), + [anon_sym_u128] = ACTIONS(2008), + [anon_sym_i128] = ACTIONS(2008), + [anon_sym_isize] = ACTIONS(2008), + [anon_sym_usize] = ACTIONS(2008), + [anon_sym_f32] = ACTIONS(2008), + [anon_sym_f64] = ACTIONS(2008), + [anon_sym_bool] = ACTIONS(2008), + [anon_sym_str] = ACTIONS(2008), + [anon_sym_char] = ACTIONS(2008), + [anon_sym_DASH] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_PIPE] = ACTIONS(2006), + [anon_sym_LT] = ACTIONS(2006), + [anon_sym_DOT_DOT] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2006), + [anon_sym_POUND] = ACTIONS(2006), + [anon_sym_SQUOTE] = ACTIONS(2008), + [anon_sym_async] = ACTIONS(2008), + [anon_sym_break] = ACTIONS(2008), + [anon_sym_const] = ACTIONS(2008), + [anon_sym_continue] = ACTIONS(2008), + [anon_sym_default] = ACTIONS(2008), + [anon_sym_enum] = ACTIONS(2008), + [anon_sym_fn] = ACTIONS(2008), + [anon_sym_for] = ACTIONS(2008), + [anon_sym_gen] = ACTIONS(2008), + [anon_sym_if] = ACTIONS(2008), + [anon_sym_impl] = ACTIONS(2008), + [anon_sym_let] = ACTIONS(2008), + [anon_sym_loop] = ACTIONS(2008), + [anon_sym_match] = ACTIONS(2008), + [anon_sym_mod] = ACTIONS(2008), + [anon_sym_pub] = ACTIONS(2008), + [anon_sym_return] = ACTIONS(2008), + [anon_sym_static] = ACTIONS(2008), + [anon_sym_struct] = ACTIONS(2008), + [anon_sym_trait] = ACTIONS(2008), + [anon_sym_type] = ACTIONS(2008), + [anon_sym_union] = ACTIONS(2008), + [anon_sym_unsafe] = ACTIONS(2008), + [anon_sym_use] = ACTIONS(2008), + [anon_sym_while] = ACTIONS(2008), + [anon_sym_extern] = ACTIONS(2008), + [anon_sym_yield] = ACTIONS(2008), + [anon_sym_move] = ACTIONS(2008), + [anon_sym_try] = ACTIONS(2008), + [sym_integer_literal] = ACTIONS(2006), + [aux_sym_string_literal_token1] = ACTIONS(2006), + [sym_char_literal] = ACTIONS(2006), + [anon_sym_true] = ACTIONS(2008), + [anon_sym_false] = ACTIONS(2008), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2008), + [sym_super] = ACTIONS(2008), + [sym_crate] = ACTIONS(2008), + [sym_metavariable] = ACTIONS(2006), + [sym__raw_string_literal_start] = ACTIONS(2006), + [sym_float_literal] = ACTIONS(2006), }, [STATE(565)] = { [sym_line_comment] = STATE(565), [sym_block_comment] = STATE(565), - [ts_builtin_sym_end] = ACTIONS(2214), - [sym_identifier] = ACTIONS(2216), - [anon_sym_SEMI] = ACTIONS(2214), - [anon_sym_macro_rules_BANG] = ACTIONS(2214), - [anon_sym_LPAREN] = ACTIONS(2214), - [anon_sym_LBRACK] = ACTIONS(2214), - [anon_sym_LBRACE] = ACTIONS(2214), - [anon_sym_RBRACE] = ACTIONS(2214), - [anon_sym_STAR] = ACTIONS(2214), - [anon_sym_u8] = ACTIONS(2216), - [anon_sym_i8] = ACTIONS(2216), - [anon_sym_u16] = ACTIONS(2216), - [anon_sym_i16] = ACTIONS(2216), - [anon_sym_u32] = ACTIONS(2216), - [anon_sym_i32] = ACTIONS(2216), - [anon_sym_u64] = ACTIONS(2216), - [anon_sym_i64] = ACTIONS(2216), - [anon_sym_u128] = ACTIONS(2216), - [anon_sym_i128] = ACTIONS(2216), - [anon_sym_isize] = ACTIONS(2216), - [anon_sym_usize] = ACTIONS(2216), - [anon_sym_f32] = ACTIONS(2216), - [anon_sym_f64] = ACTIONS(2216), - [anon_sym_bool] = ACTIONS(2216), - [anon_sym_str] = ACTIONS(2216), - [anon_sym_char] = ACTIONS(2216), - [anon_sym_DASH] = ACTIONS(2214), - [anon_sym_BANG] = ACTIONS(2214), - [anon_sym_AMP] = ACTIONS(2214), - [anon_sym_PIPE] = ACTIONS(2214), - [anon_sym_LT] = ACTIONS(2214), - [anon_sym_DOT_DOT] = ACTIONS(2214), - [anon_sym_COLON_COLON] = ACTIONS(2214), - [anon_sym_POUND] = ACTIONS(2214), - [anon_sym_SQUOTE] = ACTIONS(2216), - [anon_sym_async] = ACTIONS(2216), - [anon_sym_break] = ACTIONS(2216), - [anon_sym_const] = ACTIONS(2216), - [anon_sym_continue] = ACTIONS(2216), - [anon_sym_default] = ACTIONS(2216), - [anon_sym_enum] = ACTIONS(2216), - [anon_sym_fn] = ACTIONS(2216), - [anon_sym_for] = ACTIONS(2216), - [anon_sym_gen] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(2216), - [anon_sym_impl] = ACTIONS(2216), - [anon_sym_let] = ACTIONS(2216), - [anon_sym_loop] = ACTIONS(2216), - [anon_sym_match] = ACTIONS(2216), - [anon_sym_mod] = ACTIONS(2216), - [anon_sym_pub] = ACTIONS(2216), - [anon_sym_return] = ACTIONS(2216), - [anon_sym_static] = ACTIONS(2216), - [anon_sym_struct] = ACTIONS(2216), - [anon_sym_trait] = ACTIONS(2216), - [anon_sym_type] = ACTIONS(2216), - [anon_sym_union] = ACTIONS(2216), - [anon_sym_unsafe] = ACTIONS(2216), - [anon_sym_use] = ACTIONS(2216), - [anon_sym_while] = ACTIONS(2216), - [anon_sym_extern] = ACTIONS(2216), - [anon_sym_yield] = ACTIONS(2216), - [anon_sym_move] = ACTIONS(2216), - [anon_sym_try] = ACTIONS(2216), - [sym_integer_literal] = ACTIONS(2214), - [aux_sym_string_literal_token1] = ACTIONS(2214), - [sym_char_literal] = ACTIONS(2214), - [anon_sym_true] = ACTIONS(2216), - [anon_sym_false] = ACTIONS(2216), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2216), - [sym_super] = ACTIONS(2216), - [sym_crate] = ACTIONS(2216), - [sym_metavariable] = ACTIONS(2214), - [sym__raw_string_literal_start] = ACTIONS(2214), - [sym_float_literal] = ACTIONS(2214), + [ts_builtin_sym_end] = ACTIONS(2010), + [sym_identifier] = ACTIONS(2012), + [anon_sym_SEMI] = ACTIONS(2010), + [anon_sym_macro_rules_BANG] = ACTIONS(2010), + [anon_sym_LPAREN] = ACTIONS(2010), + [anon_sym_LBRACK] = ACTIONS(2010), + [anon_sym_LBRACE] = ACTIONS(2010), + [anon_sym_RBRACE] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(2010), + [anon_sym_u8] = ACTIONS(2012), + [anon_sym_i8] = ACTIONS(2012), + [anon_sym_u16] = ACTIONS(2012), + [anon_sym_i16] = ACTIONS(2012), + [anon_sym_u32] = ACTIONS(2012), + [anon_sym_i32] = ACTIONS(2012), + [anon_sym_u64] = ACTIONS(2012), + [anon_sym_i64] = ACTIONS(2012), + [anon_sym_u128] = ACTIONS(2012), + [anon_sym_i128] = ACTIONS(2012), + [anon_sym_isize] = ACTIONS(2012), + [anon_sym_usize] = ACTIONS(2012), + [anon_sym_f32] = ACTIONS(2012), + [anon_sym_f64] = ACTIONS(2012), + [anon_sym_bool] = ACTIONS(2012), + [anon_sym_str] = ACTIONS(2012), + [anon_sym_char] = ACTIONS(2012), + [anon_sym_DASH] = ACTIONS(2010), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_AMP] = ACTIONS(2010), + [anon_sym_PIPE] = ACTIONS(2010), + [anon_sym_LT] = ACTIONS(2010), + [anon_sym_DOT_DOT] = ACTIONS(2010), + [anon_sym_COLON_COLON] = ACTIONS(2010), + [anon_sym_POUND] = ACTIONS(2010), + [anon_sym_SQUOTE] = ACTIONS(2012), + [anon_sym_async] = ACTIONS(2012), + [anon_sym_break] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(2012), + [anon_sym_continue] = ACTIONS(2012), + [anon_sym_default] = ACTIONS(2012), + [anon_sym_enum] = ACTIONS(2012), + [anon_sym_fn] = ACTIONS(2012), + [anon_sym_for] = ACTIONS(2012), + [anon_sym_gen] = ACTIONS(2012), + [anon_sym_if] = ACTIONS(2012), + [anon_sym_impl] = ACTIONS(2012), + [anon_sym_let] = ACTIONS(2012), + [anon_sym_loop] = ACTIONS(2012), + [anon_sym_match] = ACTIONS(2012), + [anon_sym_mod] = ACTIONS(2012), + [anon_sym_pub] = ACTIONS(2012), + [anon_sym_return] = ACTIONS(2012), + [anon_sym_static] = ACTIONS(2012), + [anon_sym_struct] = ACTIONS(2012), + [anon_sym_trait] = ACTIONS(2012), + [anon_sym_type] = ACTIONS(2012), + [anon_sym_union] = ACTIONS(2012), + [anon_sym_unsafe] = ACTIONS(2012), + [anon_sym_use] = ACTIONS(2012), + [anon_sym_while] = ACTIONS(2012), + [anon_sym_extern] = ACTIONS(2012), + [anon_sym_yield] = ACTIONS(2012), + [anon_sym_move] = ACTIONS(2012), + [anon_sym_try] = ACTIONS(2012), + [sym_integer_literal] = ACTIONS(2010), + [aux_sym_string_literal_token1] = ACTIONS(2010), + [sym_char_literal] = ACTIONS(2010), + [anon_sym_true] = ACTIONS(2012), + [anon_sym_false] = ACTIONS(2012), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2012), + [sym_super] = ACTIONS(2012), + [sym_crate] = ACTIONS(2012), + [sym_metavariable] = ACTIONS(2010), + [sym__raw_string_literal_start] = ACTIONS(2010), + [sym_float_literal] = ACTIONS(2010), }, [STATE(566)] = { [sym_line_comment] = STATE(566), [sym_block_comment] = STATE(566), - [ts_builtin_sym_end] = ACTIONS(2218), - [sym_identifier] = ACTIONS(2220), - [anon_sym_SEMI] = ACTIONS(2218), - [anon_sym_macro_rules_BANG] = ACTIONS(2218), - [anon_sym_LPAREN] = ACTIONS(2218), - [anon_sym_LBRACK] = ACTIONS(2218), - [anon_sym_LBRACE] = ACTIONS(2218), - [anon_sym_RBRACE] = ACTIONS(2218), - [anon_sym_STAR] = ACTIONS(2218), - [anon_sym_u8] = ACTIONS(2220), - [anon_sym_i8] = ACTIONS(2220), - [anon_sym_u16] = ACTIONS(2220), - [anon_sym_i16] = ACTIONS(2220), - [anon_sym_u32] = ACTIONS(2220), - [anon_sym_i32] = ACTIONS(2220), - [anon_sym_u64] = ACTIONS(2220), - [anon_sym_i64] = ACTIONS(2220), - [anon_sym_u128] = ACTIONS(2220), - [anon_sym_i128] = ACTIONS(2220), - [anon_sym_isize] = ACTIONS(2220), - [anon_sym_usize] = ACTIONS(2220), - [anon_sym_f32] = ACTIONS(2220), - [anon_sym_f64] = ACTIONS(2220), - [anon_sym_bool] = ACTIONS(2220), - [anon_sym_str] = ACTIONS(2220), - [anon_sym_char] = ACTIONS(2220), - [anon_sym_DASH] = ACTIONS(2218), - [anon_sym_BANG] = ACTIONS(2218), - [anon_sym_AMP] = ACTIONS(2218), - [anon_sym_PIPE] = ACTIONS(2218), - [anon_sym_LT] = ACTIONS(2218), - [anon_sym_DOT_DOT] = ACTIONS(2218), - [anon_sym_COLON_COLON] = ACTIONS(2218), - [anon_sym_POUND] = ACTIONS(2218), - [anon_sym_SQUOTE] = ACTIONS(2220), - [anon_sym_async] = ACTIONS(2220), - [anon_sym_break] = ACTIONS(2220), - [anon_sym_const] = ACTIONS(2220), - [anon_sym_continue] = ACTIONS(2220), - [anon_sym_default] = ACTIONS(2220), - [anon_sym_enum] = ACTIONS(2220), - [anon_sym_fn] = ACTIONS(2220), - [anon_sym_for] = ACTIONS(2220), - [anon_sym_gen] = ACTIONS(2220), - [anon_sym_if] = ACTIONS(2220), - [anon_sym_impl] = ACTIONS(2220), - [anon_sym_let] = ACTIONS(2220), - [anon_sym_loop] = ACTIONS(2220), - [anon_sym_match] = ACTIONS(2220), - [anon_sym_mod] = ACTIONS(2220), - [anon_sym_pub] = ACTIONS(2220), - [anon_sym_return] = ACTIONS(2220), - [anon_sym_static] = ACTIONS(2220), - [anon_sym_struct] = ACTIONS(2220), - [anon_sym_trait] = ACTIONS(2220), - [anon_sym_type] = ACTIONS(2220), - [anon_sym_union] = ACTIONS(2220), - [anon_sym_unsafe] = ACTIONS(2220), - [anon_sym_use] = ACTIONS(2220), - [anon_sym_while] = ACTIONS(2220), - [anon_sym_extern] = ACTIONS(2220), - [anon_sym_yield] = ACTIONS(2220), - [anon_sym_move] = ACTIONS(2220), - [anon_sym_try] = ACTIONS(2220), - [sym_integer_literal] = ACTIONS(2218), - [aux_sym_string_literal_token1] = ACTIONS(2218), - [sym_char_literal] = ACTIONS(2218), - [anon_sym_true] = ACTIONS(2220), - [anon_sym_false] = ACTIONS(2220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2220), - [sym_super] = ACTIONS(2220), - [sym_crate] = ACTIONS(2220), - [sym_metavariable] = ACTIONS(2218), - [sym__raw_string_literal_start] = ACTIONS(2218), - [sym_float_literal] = ACTIONS(2218), + [ts_builtin_sym_end] = ACTIONS(2014), + [sym_identifier] = ACTIONS(2016), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym_macro_rules_BANG] = ACTIONS(2014), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2014), + [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_RBRACE] = ACTIONS(2014), + [anon_sym_STAR] = ACTIONS(2014), + [anon_sym_u8] = ACTIONS(2016), + [anon_sym_i8] = ACTIONS(2016), + [anon_sym_u16] = ACTIONS(2016), + [anon_sym_i16] = ACTIONS(2016), + [anon_sym_u32] = ACTIONS(2016), + [anon_sym_i32] = ACTIONS(2016), + [anon_sym_u64] = ACTIONS(2016), + [anon_sym_i64] = ACTIONS(2016), + [anon_sym_u128] = ACTIONS(2016), + [anon_sym_i128] = ACTIONS(2016), + [anon_sym_isize] = ACTIONS(2016), + [anon_sym_usize] = ACTIONS(2016), + [anon_sym_f32] = ACTIONS(2016), + [anon_sym_f64] = ACTIONS(2016), + [anon_sym_bool] = ACTIONS(2016), + [anon_sym_str] = ACTIONS(2016), + [anon_sym_char] = ACTIONS(2016), + [anon_sym_DASH] = ACTIONS(2014), + [anon_sym_BANG] = ACTIONS(2014), + [anon_sym_AMP] = ACTIONS(2014), + [anon_sym_PIPE] = ACTIONS(2014), + [anon_sym_LT] = ACTIONS(2014), + [anon_sym_DOT_DOT] = ACTIONS(2014), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_POUND] = ACTIONS(2014), + [anon_sym_SQUOTE] = ACTIONS(2016), + [anon_sym_async] = ACTIONS(2016), + [anon_sym_break] = ACTIONS(2016), + [anon_sym_const] = ACTIONS(2016), + [anon_sym_continue] = ACTIONS(2016), + [anon_sym_default] = ACTIONS(2016), + [anon_sym_enum] = ACTIONS(2016), + [anon_sym_fn] = ACTIONS(2016), + [anon_sym_for] = ACTIONS(2016), + [anon_sym_gen] = ACTIONS(2016), + [anon_sym_if] = ACTIONS(2016), + [anon_sym_impl] = ACTIONS(2016), + [anon_sym_let] = ACTIONS(2016), + [anon_sym_loop] = ACTIONS(2016), + [anon_sym_match] = ACTIONS(2016), + [anon_sym_mod] = ACTIONS(2016), + [anon_sym_pub] = ACTIONS(2016), + [anon_sym_return] = ACTIONS(2016), + [anon_sym_static] = ACTIONS(2016), + [anon_sym_struct] = ACTIONS(2016), + [anon_sym_trait] = ACTIONS(2016), + [anon_sym_type] = ACTIONS(2016), + [anon_sym_union] = ACTIONS(2016), + [anon_sym_unsafe] = ACTIONS(2016), + [anon_sym_use] = ACTIONS(2016), + [anon_sym_while] = ACTIONS(2016), + [anon_sym_extern] = ACTIONS(2016), + [anon_sym_yield] = ACTIONS(2016), + [anon_sym_move] = ACTIONS(2016), + [anon_sym_try] = ACTIONS(2016), + [sym_integer_literal] = ACTIONS(2014), + [aux_sym_string_literal_token1] = ACTIONS(2014), + [sym_char_literal] = ACTIONS(2014), + [anon_sym_true] = ACTIONS(2016), + [anon_sym_false] = ACTIONS(2016), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2016), + [sym_super] = ACTIONS(2016), + [sym_crate] = ACTIONS(2016), + [sym_metavariable] = ACTIONS(2014), + [sym__raw_string_literal_start] = ACTIONS(2014), + [sym_float_literal] = ACTIONS(2014), }, [STATE(567)] = { [sym_line_comment] = STATE(567), [sym_block_comment] = STATE(567), - [ts_builtin_sym_end] = ACTIONS(2222), - [sym_identifier] = ACTIONS(2224), - [anon_sym_SEMI] = ACTIONS(2222), - [anon_sym_macro_rules_BANG] = ACTIONS(2222), - [anon_sym_LPAREN] = ACTIONS(2222), - [anon_sym_LBRACK] = ACTIONS(2222), - [anon_sym_LBRACE] = ACTIONS(2222), - [anon_sym_RBRACE] = ACTIONS(2222), - [anon_sym_STAR] = ACTIONS(2222), - [anon_sym_u8] = ACTIONS(2224), - [anon_sym_i8] = ACTIONS(2224), - [anon_sym_u16] = ACTIONS(2224), - [anon_sym_i16] = ACTIONS(2224), - [anon_sym_u32] = ACTIONS(2224), - [anon_sym_i32] = ACTIONS(2224), - [anon_sym_u64] = ACTIONS(2224), - [anon_sym_i64] = ACTIONS(2224), - [anon_sym_u128] = ACTIONS(2224), - [anon_sym_i128] = ACTIONS(2224), - [anon_sym_isize] = ACTIONS(2224), - [anon_sym_usize] = ACTIONS(2224), - [anon_sym_f32] = ACTIONS(2224), - [anon_sym_f64] = ACTIONS(2224), - [anon_sym_bool] = ACTIONS(2224), - [anon_sym_str] = ACTIONS(2224), - [anon_sym_char] = ACTIONS(2224), - [anon_sym_DASH] = ACTIONS(2222), - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_AMP] = ACTIONS(2222), - [anon_sym_PIPE] = ACTIONS(2222), - [anon_sym_LT] = ACTIONS(2222), - [anon_sym_DOT_DOT] = ACTIONS(2222), - [anon_sym_COLON_COLON] = ACTIONS(2222), - [anon_sym_POUND] = ACTIONS(2222), - [anon_sym_SQUOTE] = ACTIONS(2224), - [anon_sym_async] = ACTIONS(2224), - [anon_sym_break] = ACTIONS(2224), - [anon_sym_const] = ACTIONS(2224), - [anon_sym_continue] = ACTIONS(2224), - [anon_sym_default] = ACTIONS(2224), - [anon_sym_enum] = ACTIONS(2224), - [anon_sym_fn] = ACTIONS(2224), - [anon_sym_for] = ACTIONS(2224), - [anon_sym_gen] = ACTIONS(2224), - [anon_sym_if] = ACTIONS(2224), - [anon_sym_impl] = ACTIONS(2224), - [anon_sym_let] = ACTIONS(2224), - [anon_sym_loop] = ACTIONS(2224), - [anon_sym_match] = ACTIONS(2224), - [anon_sym_mod] = ACTIONS(2224), - [anon_sym_pub] = ACTIONS(2224), - [anon_sym_return] = ACTIONS(2224), - [anon_sym_static] = ACTIONS(2224), - [anon_sym_struct] = ACTIONS(2224), - [anon_sym_trait] = ACTIONS(2224), - [anon_sym_type] = ACTIONS(2224), - [anon_sym_union] = ACTIONS(2224), - [anon_sym_unsafe] = ACTIONS(2224), - [anon_sym_use] = ACTIONS(2224), - [anon_sym_while] = ACTIONS(2224), - [anon_sym_extern] = ACTIONS(2224), - [anon_sym_yield] = ACTIONS(2224), - [anon_sym_move] = ACTIONS(2224), - [anon_sym_try] = ACTIONS(2224), - [sym_integer_literal] = ACTIONS(2222), - [aux_sym_string_literal_token1] = ACTIONS(2222), - [sym_char_literal] = ACTIONS(2222), - [anon_sym_true] = ACTIONS(2224), - [anon_sym_false] = ACTIONS(2224), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2224), - [sym_super] = ACTIONS(2224), - [sym_crate] = ACTIONS(2224), - [sym_metavariable] = ACTIONS(2222), - [sym__raw_string_literal_start] = ACTIONS(2222), - [sym_float_literal] = ACTIONS(2222), + [ts_builtin_sym_end] = ACTIONS(2018), + [sym_identifier] = ACTIONS(2020), + [anon_sym_SEMI] = ACTIONS(2018), + [anon_sym_macro_rules_BANG] = ACTIONS(2018), + [anon_sym_LPAREN] = ACTIONS(2018), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_LBRACE] = ACTIONS(2018), + [anon_sym_RBRACE] = ACTIONS(2018), + [anon_sym_STAR] = ACTIONS(2018), + [anon_sym_u8] = ACTIONS(2020), + [anon_sym_i8] = ACTIONS(2020), + [anon_sym_u16] = ACTIONS(2020), + [anon_sym_i16] = ACTIONS(2020), + [anon_sym_u32] = ACTIONS(2020), + [anon_sym_i32] = ACTIONS(2020), + [anon_sym_u64] = ACTIONS(2020), + [anon_sym_i64] = ACTIONS(2020), + [anon_sym_u128] = ACTIONS(2020), + [anon_sym_i128] = ACTIONS(2020), + [anon_sym_isize] = ACTIONS(2020), + [anon_sym_usize] = ACTIONS(2020), + [anon_sym_f32] = ACTIONS(2020), + [anon_sym_f64] = ACTIONS(2020), + [anon_sym_bool] = ACTIONS(2020), + [anon_sym_str] = ACTIONS(2020), + [anon_sym_char] = ACTIONS(2020), + [anon_sym_DASH] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(2018), + [anon_sym_AMP] = ACTIONS(2018), + [anon_sym_PIPE] = ACTIONS(2018), + [anon_sym_LT] = ACTIONS(2018), + [anon_sym_DOT_DOT] = ACTIONS(2018), + [anon_sym_COLON_COLON] = ACTIONS(2018), + [anon_sym_POUND] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_async] = ACTIONS(2020), + [anon_sym_break] = ACTIONS(2020), + [anon_sym_const] = ACTIONS(2020), + [anon_sym_continue] = ACTIONS(2020), + [anon_sym_default] = ACTIONS(2020), + [anon_sym_enum] = ACTIONS(2020), + [anon_sym_fn] = ACTIONS(2020), + [anon_sym_for] = ACTIONS(2020), + [anon_sym_gen] = ACTIONS(2020), + [anon_sym_if] = ACTIONS(2020), + [anon_sym_impl] = ACTIONS(2020), + [anon_sym_let] = ACTIONS(2020), + [anon_sym_loop] = ACTIONS(2020), + [anon_sym_match] = ACTIONS(2020), + [anon_sym_mod] = ACTIONS(2020), + [anon_sym_pub] = ACTIONS(2020), + [anon_sym_return] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(2020), + [anon_sym_struct] = ACTIONS(2020), + [anon_sym_trait] = ACTIONS(2020), + [anon_sym_type] = ACTIONS(2020), + [anon_sym_union] = ACTIONS(2020), + [anon_sym_unsafe] = ACTIONS(2020), + [anon_sym_use] = ACTIONS(2020), + [anon_sym_while] = ACTIONS(2020), + [anon_sym_extern] = ACTIONS(2020), + [anon_sym_yield] = ACTIONS(2020), + [anon_sym_move] = ACTIONS(2020), + [anon_sym_try] = ACTIONS(2020), + [sym_integer_literal] = ACTIONS(2018), + [aux_sym_string_literal_token1] = ACTIONS(2018), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2020), + [anon_sym_false] = ACTIONS(2020), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2020), + [sym_super] = ACTIONS(2020), + [sym_crate] = ACTIONS(2020), + [sym_metavariable] = ACTIONS(2018), + [sym__raw_string_literal_start] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), }, [STATE(568)] = { [sym_line_comment] = STATE(568), [sym_block_comment] = STATE(568), - [ts_builtin_sym_end] = ACTIONS(2226), - [sym_identifier] = ACTIONS(2228), - [anon_sym_SEMI] = ACTIONS(2226), - [anon_sym_macro_rules_BANG] = ACTIONS(2226), - [anon_sym_LPAREN] = ACTIONS(2226), - [anon_sym_LBRACK] = ACTIONS(2226), - [anon_sym_LBRACE] = ACTIONS(2226), - [anon_sym_RBRACE] = ACTIONS(2226), - [anon_sym_STAR] = ACTIONS(2226), - [anon_sym_u8] = ACTIONS(2228), - [anon_sym_i8] = ACTIONS(2228), - [anon_sym_u16] = ACTIONS(2228), - [anon_sym_i16] = ACTIONS(2228), - [anon_sym_u32] = ACTIONS(2228), - [anon_sym_i32] = ACTIONS(2228), - [anon_sym_u64] = ACTIONS(2228), - [anon_sym_i64] = ACTIONS(2228), - [anon_sym_u128] = ACTIONS(2228), - [anon_sym_i128] = ACTIONS(2228), - [anon_sym_isize] = ACTIONS(2228), - [anon_sym_usize] = ACTIONS(2228), - [anon_sym_f32] = ACTIONS(2228), - [anon_sym_f64] = ACTIONS(2228), - [anon_sym_bool] = ACTIONS(2228), - [anon_sym_str] = ACTIONS(2228), - [anon_sym_char] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2226), - [anon_sym_BANG] = ACTIONS(2226), - [anon_sym_AMP] = ACTIONS(2226), - [anon_sym_PIPE] = ACTIONS(2226), - [anon_sym_LT] = ACTIONS(2226), - [anon_sym_DOT_DOT] = ACTIONS(2226), - [anon_sym_COLON_COLON] = ACTIONS(2226), - [anon_sym_POUND] = ACTIONS(2226), - [anon_sym_SQUOTE] = ACTIONS(2228), - [anon_sym_async] = ACTIONS(2228), - [anon_sym_break] = ACTIONS(2228), - [anon_sym_const] = ACTIONS(2228), - [anon_sym_continue] = ACTIONS(2228), - [anon_sym_default] = ACTIONS(2228), - [anon_sym_enum] = ACTIONS(2228), - [anon_sym_fn] = ACTIONS(2228), - [anon_sym_for] = ACTIONS(2228), - [anon_sym_gen] = ACTIONS(2228), - [anon_sym_if] = ACTIONS(2228), - [anon_sym_impl] = ACTIONS(2228), - [anon_sym_let] = ACTIONS(2228), - [anon_sym_loop] = ACTIONS(2228), - [anon_sym_match] = ACTIONS(2228), - [anon_sym_mod] = ACTIONS(2228), - [anon_sym_pub] = ACTIONS(2228), - [anon_sym_return] = ACTIONS(2228), - [anon_sym_static] = ACTIONS(2228), - [anon_sym_struct] = ACTIONS(2228), - [anon_sym_trait] = ACTIONS(2228), - [anon_sym_type] = ACTIONS(2228), - [anon_sym_union] = ACTIONS(2228), - [anon_sym_unsafe] = ACTIONS(2228), - [anon_sym_use] = ACTIONS(2228), - [anon_sym_while] = ACTIONS(2228), - [anon_sym_extern] = ACTIONS(2228), - [anon_sym_yield] = ACTIONS(2228), - [anon_sym_move] = ACTIONS(2228), - [anon_sym_try] = ACTIONS(2228), - [sym_integer_literal] = ACTIONS(2226), - [aux_sym_string_literal_token1] = ACTIONS(2226), - [sym_char_literal] = ACTIONS(2226), - [anon_sym_true] = ACTIONS(2228), - [anon_sym_false] = ACTIONS(2228), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2228), - [sym_super] = ACTIONS(2228), - [sym_crate] = ACTIONS(2228), - [sym_metavariable] = ACTIONS(2226), - [sym__raw_string_literal_start] = ACTIONS(2226), - [sym_float_literal] = ACTIONS(2226), + [ts_builtin_sym_end] = ACTIONS(2022), + [sym_identifier] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2022), + [anon_sym_macro_rules_BANG] = ACTIONS(2022), + [anon_sym_LPAREN] = ACTIONS(2022), + [anon_sym_LBRACK] = ACTIONS(2022), + [anon_sym_LBRACE] = ACTIONS(2022), + [anon_sym_RBRACE] = ACTIONS(2022), + [anon_sym_STAR] = ACTIONS(2022), + [anon_sym_u8] = ACTIONS(2024), + [anon_sym_i8] = ACTIONS(2024), + [anon_sym_u16] = ACTIONS(2024), + [anon_sym_i16] = ACTIONS(2024), + [anon_sym_u32] = ACTIONS(2024), + [anon_sym_i32] = ACTIONS(2024), + [anon_sym_u64] = ACTIONS(2024), + [anon_sym_i64] = ACTIONS(2024), + [anon_sym_u128] = ACTIONS(2024), + [anon_sym_i128] = ACTIONS(2024), + [anon_sym_isize] = ACTIONS(2024), + [anon_sym_usize] = ACTIONS(2024), + [anon_sym_f32] = ACTIONS(2024), + [anon_sym_f64] = ACTIONS(2024), + [anon_sym_bool] = ACTIONS(2024), + [anon_sym_str] = ACTIONS(2024), + [anon_sym_char] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2022), + [anon_sym_BANG] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(2022), + [anon_sym_PIPE] = ACTIONS(2022), + [anon_sym_LT] = ACTIONS(2022), + [anon_sym_DOT_DOT] = ACTIONS(2022), + [anon_sym_COLON_COLON] = ACTIONS(2022), + [anon_sym_POUND] = ACTIONS(2022), + [anon_sym_SQUOTE] = ACTIONS(2024), + [anon_sym_async] = ACTIONS(2024), + [anon_sym_break] = ACTIONS(2024), + [anon_sym_const] = ACTIONS(2024), + [anon_sym_continue] = ACTIONS(2024), + [anon_sym_default] = ACTIONS(2024), + [anon_sym_enum] = ACTIONS(2024), + [anon_sym_fn] = ACTIONS(2024), + [anon_sym_for] = ACTIONS(2024), + [anon_sym_gen] = ACTIONS(2024), + [anon_sym_if] = ACTIONS(2024), + [anon_sym_impl] = ACTIONS(2024), + [anon_sym_let] = ACTIONS(2024), + [anon_sym_loop] = ACTIONS(2024), + [anon_sym_match] = ACTIONS(2024), + [anon_sym_mod] = ACTIONS(2024), + [anon_sym_pub] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2024), + [anon_sym_static] = ACTIONS(2024), + [anon_sym_struct] = ACTIONS(2024), + [anon_sym_trait] = ACTIONS(2024), + [anon_sym_type] = ACTIONS(2024), + [anon_sym_union] = ACTIONS(2024), + [anon_sym_unsafe] = ACTIONS(2024), + [anon_sym_use] = ACTIONS(2024), + [anon_sym_while] = ACTIONS(2024), + [anon_sym_extern] = ACTIONS(2024), + [anon_sym_yield] = ACTIONS(2024), + [anon_sym_move] = ACTIONS(2024), + [anon_sym_try] = ACTIONS(2024), + [sym_integer_literal] = ACTIONS(2022), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2022), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2024), + [sym_super] = ACTIONS(2024), + [sym_crate] = ACTIONS(2024), + [sym_metavariable] = ACTIONS(2022), + [sym__raw_string_literal_start] = ACTIONS(2022), + [sym_float_literal] = ACTIONS(2022), }, [STATE(569)] = { [sym_line_comment] = STATE(569), [sym_block_comment] = STATE(569), - [ts_builtin_sym_end] = ACTIONS(2230), - [sym_identifier] = ACTIONS(2232), - [anon_sym_SEMI] = ACTIONS(2230), - [anon_sym_macro_rules_BANG] = ACTIONS(2230), - [anon_sym_LPAREN] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(2230), - [anon_sym_LBRACE] = ACTIONS(2230), - [anon_sym_RBRACE] = ACTIONS(2230), - [anon_sym_STAR] = ACTIONS(2230), - [anon_sym_u8] = ACTIONS(2232), - [anon_sym_i8] = ACTIONS(2232), - [anon_sym_u16] = ACTIONS(2232), - [anon_sym_i16] = ACTIONS(2232), - [anon_sym_u32] = ACTIONS(2232), - [anon_sym_i32] = ACTIONS(2232), - [anon_sym_u64] = ACTIONS(2232), - [anon_sym_i64] = ACTIONS(2232), - [anon_sym_u128] = ACTIONS(2232), - [anon_sym_i128] = ACTIONS(2232), - [anon_sym_isize] = ACTIONS(2232), - [anon_sym_usize] = ACTIONS(2232), - [anon_sym_f32] = ACTIONS(2232), - [anon_sym_f64] = ACTIONS(2232), - [anon_sym_bool] = ACTIONS(2232), - [anon_sym_str] = ACTIONS(2232), - [anon_sym_char] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_BANG] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(2230), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_DOT_DOT] = ACTIONS(2230), - [anon_sym_COLON_COLON] = ACTIONS(2230), - [anon_sym_POUND] = ACTIONS(2230), - [anon_sym_SQUOTE] = ACTIONS(2232), - [anon_sym_async] = ACTIONS(2232), - [anon_sym_break] = ACTIONS(2232), - [anon_sym_const] = ACTIONS(2232), - [anon_sym_continue] = ACTIONS(2232), - [anon_sym_default] = ACTIONS(2232), - [anon_sym_enum] = ACTIONS(2232), - [anon_sym_fn] = ACTIONS(2232), - [anon_sym_for] = ACTIONS(2232), - [anon_sym_gen] = ACTIONS(2232), - [anon_sym_if] = ACTIONS(2232), - [anon_sym_impl] = ACTIONS(2232), - [anon_sym_let] = ACTIONS(2232), - [anon_sym_loop] = ACTIONS(2232), - [anon_sym_match] = ACTIONS(2232), - [anon_sym_mod] = ACTIONS(2232), - [anon_sym_pub] = ACTIONS(2232), - [anon_sym_return] = ACTIONS(2232), - [anon_sym_static] = ACTIONS(2232), - [anon_sym_struct] = ACTIONS(2232), - [anon_sym_trait] = ACTIONS(2232), - [anon_sym_type] = ACTIONS(2232), - [anon_sym_union] = ACTIONS(2232), - [anon_sym_unsafe] = ACTIONS(2232), - [anon_sym_use] = ACTIONS(2232), - [anon_sym_while] = ACTIONS(2232), - [anon_sym_extern] = ACTIONS(2232), - [anon_sym_yield] = ACTIONS(2232), - [anon_sym_move] = ACTIONS(2232), - [anon_sym_try] = ACTIONS(2232), - [sym_integer_literal] = ACTIONS(2230), - [aux_sym_string_literal_token1] = ACTIONS(2230), - [sym_char_literal] = ACTIONS(2230), - [anon_sym_true] = ACTIONS(2232), - [anon_sym_false] = ACTIONS(2232), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2232), - [sym_super] = ACTIONS(2232), - [sym_crate] = ACTIONS(2232), - [sym_metavariable] = ACTIONS(2230), - [sym__raw_string_literal_start] = ACTIONS(2230), - [sym_float_literal] = ACTIONS(2230), + [ts_builtin_sym_end] = ACTIONS(2026), + [sym_identifier] = ACTIONS(2028), + [anon_sym_SEMI] = ACTIONS(2026), + [anon_sym_macro_rules_BANG] = ACTIONS(2026), + [anon_sym_LPAREN] = ACTIONS(2026), + [anon_sym_LBRACK] = ACTIONS(2026), + [anon_sym_LBRACE] = ACTIONS(2026), + [anon_sym_RBRACE] = ACTIONS(2026), + [anon_sym_STAR] = ACTIONS(2026), + [anon_sym_u8] = ACTIONS(2028), + [anon_sym_i8] = ACTIONS(2028), + [anon_sym_u16] = ACTIONS(2028), + [anon_sym_i16] = ACTIONS(2028), + [anon_sym_u32] = ACTIONS(2028), + [anon_sym_i32] = ACTIONS(2028), + [anon_sym_u64] = ACTIONS(2028), + [anon_sym_i64] = ACTIONS(2028), + [anon_sym_u128] = ACTIONS(2028), + [anon_sym_i128] = ACTIONS(2028), + [anon_sym_isize] = ACTIONS(2028), + [anon_sym_usize] = ACTIONS(2028), + [anon_sym_f32] = ACTIONS(2028), + [anon_sym_f64] = ACTIONS(2028), + [anon_sym_bool] = ACTIONS(2028), + [anon_sym_str] = ACTIONS(2028), + [anon_sym_char] = ACTIONS(2028), + [anon_sym_DASH] = ACTIONS(2026), + [anon_sym_BANG] = ACTIONS(2026), + [anon_sym_AMP] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(2026), + [anon_sym_LT] = ACTIONS(2026), + [anon_sym_DOT_DOT] = ACTIONS(2026), + [anon_sym_COLON_COLON] = ACTIONS(2026), + [anon_sym_POUND] = ACTIONS(2026), + [anon_sym_SQUOTE] = ACTIONS(2028), + [anon_sym_async] = ACTIONS(2028), + [anon_sym_break] = ACTIONS(2028), + [anon_sym_const] = ACTIONS(2028), + [anon_sym_continue] = ACTIONS(2028), + [anon_sym_default] = ACTIONS(2028), + [anon_sym_enum] = ACTIONS(2028), + [anon_sym_fn] = ACTIONS(2028), + [anon_sym_for] = ACTIONS(2028), + [anon_sym_gen] = ACTIONS(2028), + [anon_sym_if] = ACTIONS(2028), + [anon_sym_impl] = ACTIONS(2028), + [anon_sym_let] = ACTIONS(2028), + [anon_sym_loop] = ACTIONS(2028), + [anon_sym_match] = ACTIONS(2028), + [anon_sym_mod] = ACTIONS(2028), + [anon_sym_pub] = ACTIONS(2028), + [anon_sym_return] = ACTIONS(2028), + [anon_sym_static] = ACTIONS(2028), + [anon_sym_struct] = ACTIONS(2028), + [anon_sym_trait] = ACTIONS(2028), + [anon_sym_type] = ACTIONS(2028), + [anon_sym_union] = ACTIONS(2028), + [anon_sym_unsafe] = ACTIONS(2028), + [anon_sym_use] = ACTIONS(2028), + [anon_sym_while] = ACTIONS(2028), + [anon_sym_extern] = ACTIONS(2028), + [anon_sym_yield] = ACTIONS(2028), + [anon_sym_move] = ACTIONS(2028), + [anon_sym_try] = ACTIONS(2028), + [sym_integer_literal] = ACTIONS(2026), + [aux_sym_string_literal_token1] = ACTIONS(2026), + [sym_char_literal] = ACTIONS(2026), + [anon_sym_true] = ACTIONS(2028), + [anon_sym_false] = ACTIONS(2028), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2028), + [sym_super] = ACTIONS(2028), + [sym_crate] = ACTIONS(2028), + [sym_metavariable] = ACTIONS(2026), + [sym__raw_string_literal_start] = ACTIONS(2026), + [sym_float_literal] = ACTIONS(2026), }, [STATE(570)] = { [sym_line_comment] = STATE(570), [sym_block_comment] = STATE(570), - [ts_builtin_sym_end] = ACTIONS(2234), - [sym_identifier] = ACTIONS(2236), - [anon_sym_SEMI] = ACTIONS(2234), - [anon_sym_macro_rules_BANG] = ACTIONS(2234), - [anon_sym_LPAREN] = ACTIONS(2234), - [anon_sym_LBRACK] = ACTIONS(2234), - [anon_sym_LBRACE] = ACTIONS(2234), - [anon_sym_RBRACE] = ACTIONS(2234), - [anon_sym_STAR] = ACTIONS(2234), - [anon_sym_u8] = ACTIONS(2236), - [anon_sym_i8] = ACTIONS(2236), - [anon_sym_u16] = ACTIONS(2236), - [anon_sym_i16] = ACTIONS(2236), - [anon_sym_u32] = ACTIONS(2236), - [anon_sym_i32] = ACTIONS(2236), - [anon_sym_u64] = ACTIONS(2236), - [anon_sym_i64] = ACTIONS(2236), - [anon_sym_u128] = ACTIONS(2236), - [anon_sym_i128] = ACTIONS(2236), - [anon_sym_isize] = ACTIONS(2236), - [anon_sym_usize] = ACTIONS(2236), - [anon_sym_f32] = ACTIONS(2236), - [anon_sym_f64] = ACTIONS(2236), - [anon_sym_bool] = ACTIONS(2236), - [anon_sym_str] = ACTIONS(2236), - [anon_sym_char] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2234), - [anon_sym_BANG] = ACTIONS(2234), - [anon_sym_AMP] = ACTIONS(2234), - [anon_sym_PIPE] = ACTIONS(2234), - [anon_sym_LT] = ACTIONS(2234), - [anon_sym_DOT_DOT] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(2234), - [anon_sym_POUND] = ACTIONS(2234), - [anon_sym_SQUOTE] = ACTIONS(2236), - [anon_sym_async] = ACTIONS(2236), - [anon_sym_break] = ACTIONS(2236), - [anon_sym_const] = ACTIONS(2236), - [anon_sym_continue] = ACTIONS(2236), - [anon_sym_default] = ACTIONS(2236), - [anon_sym_enum] = ACTIONS(2236), - [anon_sym_fn] = ACTIONS(2236), - [anon_sym_for] = ACTIONS(2236), - [anon_sym_gen] = ACTIONS(2236), - [anon_sym_if] = ACTIONS(2236), - [anon_sym_impl] = ACTIONS(2236), - [anon_sym_let] = ACTIONS(2236), - [anon_sym_loop] = ACTIONS(2236), - [anon_sym_match] = ACTIONS(2236), - [anon_sym_mod] = ACTIONS(2236), - [anon_sym_pub] = ACTIONS(2236), - [anon_sym_return] = ACTIONS(2236), - [anon_sym_static] = ACTIONS(2236), - [anon_sym_struct] = ACTIONS(2236), - [anon_sym_trait] = ACTIONS(2236), - [anon_sym_type] = ACTIONS(2236), - [anon_sym_union] = ACTIONS(2236), - [anon_sym_unsafe] = ACTIONS(2236), - [anon_sym_use] = ACTIONS(2236), - [anon_sym_while] = ACTIONS(2236), - [anon_sym_extern] = ACTIONS(2236), - [anon_sym_yield] = ACTIONS(2236), - [anon_sym_move] = ACTIONS(2236), - [anon_sym_try] = ACTIONS(2236), - [sym_integer_literal] = ACTIONS(2234), - [aux_sym_string_literal_token1] = ACTIONS(2234), - [sym_char_literal] = ACTIONS(2234), - [anon_sym_true] = ACTIONS(2236), - [anon_sym_false] = ACTIONS(2236), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2236), - [sym_super] = ACTIONS(2236), - [sym_crate] = ACTIONS(2236), - [sym_metavariable] = ACTIONS(2234), - [sym__raw_string_literal_start] = ACTIONS(2234), - [sym_float_literal] = ACTIONS(2234), + [ts_builtin_sym_end] = ACTIONS(2030), + [sym_identifier] = ACTIONS(2032), + [anon_sym_SEMI] = ACTIONS(2030), + [anon_sym_macro_rules_BANG] = ACTIONS(2030), + [anon_sym_LPAREN] = ACTIONS(2030), + [anon_sym_LBRACK] = ACTIONS(2030), + [anon_sym_LBRACE] = ACTIONS(2030), + [anon_sym_RBRACE] = ACTIONS(2030), + [anon_sym_STAR] = ACTIONS(2030), + [anon_sym_u8] = ACTIONS(2032), + [anon_sym_i8] = ACTIONS(2032), + [anon_sym_u16] = ACTIONS(2032), + [anon_sym_i16] = ACTIONS(2032), + [anon_sym_u32] = ACTIONS(2032), + [anon_sym_i32] = ACTIONS(2032), + [anon_sym_u64] = ACTIONS(2032), + [anon_sym_i64] = ACTIONS(2032), + [anon_sym_u128] = ACTIONS(2032), + [anon_sym_i128] = ACTIONS(2032), + [anon_sym_isize] = ACTIONS(2032), + [anon_sym_usize] = ACTIONS(2032), + [anon_sym_f32] = ACTIONS(2032), + [anon_sym_f64] = ACTIONS(2032), + [anon_sym_bool] = ACTIONS(2032), + [anon_sym_str] = ACTIONS(2032), + [anon_sym_char] = ACTIONS(2032), + [anon_sym_DASH] = ACTIONS(2030), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_AMP] = ACTIONS(2030), + [anon_sym_PIPE] = ACTIONS(2030), + [anon_sym_LT] = ACTIONS(2030), + [anon_sym_DOT_DOT] = ACTIONS(2030), + [anon_sym_COLON_COLON] = ACTIONS(2030), + [anon_sym_POUND] = ACTIONS(2030), + [anon_sym_SQUOTE] = ACTIONS(2032), + [anon_sym_async] = ACTIONS(2032), + [anon_sym_break] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2032), + [anon_sym_continue] = ACTIONS(2032), + [anon_sym_default] = ACTIONS(2032), + [anon_sym_enum] = ACTIONS(2032), + [anon_sym_fn] = ACTIONS(2032), + [anon_sym_for] = ACTIONS(2032), + [anon_sym_gen] = ACTIONS(2032), + [anon_sym_if] = ACTIONS(2032), + [anon_sym_impl] = ACTIONS(2032), + [anon_sym_let] = ACTIONS(2032), + [anon_sym_loop] = ACTIONS(2032), + [anon_sym_match] = ACTIONS(2032), + [anon_sym_mod] = ACTIONS(2032), + [anon_sym_pub] = ACTIONS(2032), + [anon_sym_return] = ACTIONS(2032), + [anon_sym_static] = ACTIONS(2032), + [anon_sym_struct] = ACTIONS(2032), + [anon_sym_trait] = ACTIONS(2032), + [anon_sym_type] = ACTIONS(2032), + [anon_sym_union] = ACTIONS(2032), + [anon_sym_unsafe] = ACTIONS(2032), + [anon_sym_use] = ACTIONS(2032), + [anon_sym_while] = ACTIONS(2032), + [anon_sym_extern] = ACTIONS(2032), + [anon_sym_yield] = ACTIONS(2032), + [anon_sym_move] = ACTIONS(2032), + [anon_sym_try] = ACTIONS(2032), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2030), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2032), + [anon_sym_false] = ACTIONS(2032), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2032), + [sym_super] = ACTIONS(2032), + [sym_crate] = ACTIONS(2032), + [sym_metavariable] = ACTIONS(2030), + [sym__raw_string_literal_start] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), }, [STATE(571)] = { [sym_line_comment] = STATE(571), [sym_block_comment] = STATE(571), - [ts_builtin_sym_end] = ACTIONS(2238), - [sym_identifier] = ACTIONS(2240), - [anon_sym_SEMI] = ACTIONS(2238), - [anon_sym_macro_rules_BANG] = ACTIONS(2238), - [anon_sym_LPAREN] = ACTIONS(2238), - [anon_sym_LBRACK] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2238), - [anon_sym_RBRACE] = ACTIONS(2238), - [anon_sym_STAR] = ACTIONS(2238), - [anon_sym_u8] = ACTIONS(2240), - [anon_sym_i8] = ACTIONS(2240), - [anon_sym_u16] = ACTIONS(2240), - [anon_sym_i16] = ACTIONS(2240), - [anon_sym_u32] = ACTIONS(2240), - [anon_sym_i32] = ACTIONS(2240), - [anon_sym_u64] = ACTIONS(2240), - [anon_sym_i64] = ACTIONS(2240), - [anon_sym_u128] = ACTIONS(2240), - [anon_sym_i128] = ACTIONS(2240), - [anon_sym_isize] = ACTIONS(2240), - [anon_sym_usize] = ACTIONS(2240), - [anon_sym_f32] = ACTIONS(2240), - [anon_sym_f64] = ACTIONS(2240), - [anon_sym_bool] = ACTIONS(2240), - [anon_sym_str] = ACTIONS(2240), - [anon_sym_char] = ACTIONS(2240), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_BANG] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_PIPE] = ACTIONS(2238), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_DOT_DOT] = ACTIONS(2238), - [anon_sym_COLON_COLON] = ACTIONS(2238), - [anon_sym_POUND] = ACTIONS(2238), - [anon_sym_SQUOTE] = ACTIONS(2240), - [anon_sym_async] = ACTIONS(2240), - [anon_sym_break] = ACTIONS(2240), - [anon_sym_const] = ACTIONS(2240), - [anon_sym_continue] = ACTIONS(2240), - [anon_sym_default] = ACTIONS(2240), - [anon_sym_enum] = ACTIONS(2240), - [anon_sym_fn] = ACTIONS(2240), - [anon_sym_for] = ACTIONS(2240), - [anon_sym_gen] = ACTIONS(2240), - [anon_sym_if] = ACTIONS(2240), - [anon_sym_impl] = ACTIONS(2240), - [anon_sym_let] = ACTIONS(2240), - [anon_sym_loop] = ACTIONS(2240), - [anon_sym_match] = ACTIONS(2240), - [anon_sym_mod] = ACTIONS(2240), - [anon_sym_pub] = ACTIONS(2240), - [anon_sym_return] = ACTIONS(2240), - [anon_sym_static] = ACTIONS(2240), - [anon_sym_struct] = ACTIONS(2240), - [anon_sym_trait] = ACTIONS(2240), - [anon_sym_type] = ACTIONS(2240), - [anon_sym_union] = ACTIONS(2240), - [anon_sym_unsafe] = ACTIONS(2240), - [anon_sym_use] = ACTIONS(2240), - [anon_sym_while] = ACTIONS(2240), - [anon_sym_extern] = ACTIONS(2240), - [anon_sym_yield] = ACTIONS(2240), - [anon_sym_move] = ACTIONS(2240), - [anon_sym_try] = ACTIONS(2240), - [sym_integer_literal] = ACTIONS(2238), - [aux_sym_string_literal_token1] = ACTIONS(2238), - [sym_char_literal] = ACTIONS(2238), - [anon_sym_true] = ACTIONS(2240), - [anon_sym_false] = ACTIONS(2240), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2240), - [sym_super] = ACTIONS(2240), - [sym_crate] = ACTIONS(2240), - [sym_metavariable] = ACTIONS(2238), - [sym__raw_string_literal_start] = ACTIONS(2238), - [sym_float_literal] = ACTIONS(2238), + [ts_builtin_sym_end] = ACTIONS(2034), + [sym_identifier] = ACTIONS(2036), + [anon_sym_SEMI] = ACTIONS(2034), + [anon_sym_macro_rules_BANG] = ACTIONS(2034), + [anon_sym_LPAREN] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(2034), + [anon_sym_LBRACE] = ACTIONS(2034), + [anon_sym_RBRACE] = ACTIONS(2034), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_u8] = ACTIONS(2036), + [anon_sym_i8] = ACTIONS(2036), + [anon_sym_u16] = ACTIONS(2036), + [anon_sym_i16] = ACTIONS(2036), + [anon_sym_u32] = ACTIONS(2036), + [anon_sym_i32] = ACTIONS(2036), + [anon_sym_u64] = ACTIONS(2036), + [anon_sym_i64] = ACTIONS(2036), + [anon_sym_u128] = ACTIONS(2036), + [anon_sym_i128] = ACTIONS(2036), + [anon_sym_isize] = ACTIONS(2036), + [anon_sym_usize] = ACTIONS(2036), + [anon_sym_f32] = ACTIONS(2036), + [anon_sym_f64] = ACTIONS(2036), + [anon_sym_bool] = ACTIONS(2036), + [anon_sym_str] = ACTIONS(2036), + [anon_sym_char] = ACTIONS(2036), + [anon_sym_DASH] = ACTIONS(2034), + [anon_sym_BANG] = ACTIONS(2034), + [anon_sym_AMP] = ACTIONS(2034), + [anon_sym_PIPE] = ACTIONS(2034), + [anon_sym_LT] = ACTIONS(2034), + [anon_sym_DOT_DOT] = ACTIONS(2034), + [anon_sym_COLON_COLON] = ACTIONS(2034), + [anon_sym_POUND] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_async] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_fn] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_gen] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_impl] = ACTIONS(2036), + [anon_sym_let] = ACTIONS(2036), + [anon_sym_loop] = ACTIONS(2036), + [anon_sym_match] = ACTIONS(2036), + [anon_sym_mod] = ACTIONS(2036), + [anon_sym_pub] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_trait] = ACTIONS(2036), + [anon_sym_type] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_unsafe] = ACTIONS(2036), + [anon_sym_use] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym_yield] = ACTIONS(2036), + [anon_sym_move] = ACTIONS(2036), + [anon_sym_try] = ACTIONS(2036), + [sym_integer_literal] = ACTIONS(2034), + [aux_sym_string_literal_token1] = ACTIONS(2034), + [sym_char_literal] = ACTIONS(2034), + [anon_sym_true] = ACTIONS(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_crate] = ACTIONS(2036), + [sym_metavariable] = ACTIONS(2034), + [sym__raw_string_literal_start] = ACTIONS(2034), + [sym_float_literal] = ACTIONS(2034), }, [STATE(572)] = { [sym_line_comment] = STATE(572), [sym_block_comment] = STATE(572), - [ts_builtin_sym_end] = ACTIONS(2242), - [sym_identifier] = ACTIONS(2244), - [anon_sym_SEMI] = ACTIONS(2242), - [anon_sym_macro_rules_BANG] = ACTIONS(2242), - [anon_sym_LPAREN] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(2242), - [anon_sym_LBRACE] = ACTIONS(2242), - [anon_sym_RBRACE] = ACTIONS(2242), - [anon_sym_STAR] = ACTIONS(2242), - [anon_sym_u8] = ACTIONS(2244), - [anon_sym_i8] = ACTIONS(2244), - [anon_sym_u16] = ACTIONS(2244), - [anon_sym_i16] = ACTIONS(2244), - [anon_sym_u32] = ACTIONS(2244), - [anon_sym_i32] = ACTIONS(2244), - [anon_sym_u64] = ACTIONS(2244), - [anon_sym_i64] = ACTIONS(2244), - [anon_sym_u128] = ACTIONS(2244), - [anon_sym_i128] = ACTIONS(2244), - [anon_sym_isize] = ACTIONS(2244), - [anon_sym_usize] = ACTIONS(2244), - [anon_sym_f32] = ACTIONS(2244), - [anon_sym_f64] = ACTIONS(2244), - [anon_sym_bool] = ACTIONS(2244), - [anon_sym_str] = ACTIONS(2244), - [anon_sym_char] = ACTIONS(2244), - [anon_sym_DASH] = ACTIONS(2242), - [anon_sym_BANG] = ACTIONS(2242), - [anon_sym_AMP] = ACTIONS(2242), - [anon_sym_PIPE] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2242), - [anon_sym_DOT_DOT] = ACTIONS(2242), - [anon_sym_COLON_COLON] = ACTIONS(2242), - [anon_sym_POUND] = ACTIONS(2242), - [anon_sym_SQUOTE] = ACTIONS(2244), - [anon_sym_async] = ACTIONS(2244), - [anon_sym_break] = ACTIONS(2244), - [anon_sym_const] = ACTIONS(2244), - [anon_sym_continue] = ACTIONS(2244), - [anon_sym_default] = ACTIONS(2244), - [anon_sym_enum] = ACTIONS(2244), - [anon_sym_fn] = ACTIONS(2244), - [anon_sym_for] = ACTIONS(2244), - [anon_sym_gen] = ACTIONS(2244), - [anon_sym_if] = ACTIONS(2244), - [anon_sym_impl] = ACTIONS(2244), - [anon_sym_let] = ACTIONS(2244), - [anon_sym_loop] = ACTIONS(2244), - [anon_sym_match] = ACTIONS(2244), - [anon_sym_mod] = ACTIONS(2244), - [anon_sym_pub] = ACTIONS(2244), - [anon_sym_return] = ACTIONS(2244), - [anon_sym_static] = ACTIONS(2244), - [anon_sym_struct] = ACTIONS(2244), - [anon_sym_trait] = ACTIONS(2244), - [anon_sym_type] = ACTIONS(2244), - [anon_sym_union] = ACTIONS(2244), - [anon_sym_unsafe] = ACTIONS(2244), - [anon_sym_use] = ACTIONS(2244), - [anon_sym_while] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(2244), - [anon_sym_yield] = ACTIONS(2244), - [anon_sym_move] = ACTIONS(2244), - [anon_sym_try] = ACTIONS(2244), - [sym_integer_literal] = ACTIONS(2242), - [aux_sym_string_literal_token1] = ACTIONS(2242), - [sym_char_literal] = ACTIONS(2242), - [anon_sym_true] = ACTIONS(2244), - [anon_sym_false] = ACTIONS(2244), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2244), - [sym_super] = ACTIONS(2244), - [sym_crate] = ACTIONS(2244), - [sym_metavariable] = ACTIONS(2242), - [sym__raw_string_literal_start] = ACTIONS(2242), - [sym_float_literal] = ACTIONS(2242), + [ts_builtin_sym_end] = ACTIONS(2038), + [sym_identifier] = ACTIONS(2040), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_macro_rules_BANG] = ACTIONS(2038), + [anon_sym_LPAREN] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2038), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_RBRACE] = ACTIONS(2038), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_u8] = ACTIONS(2040), + [anon_sym_i8] = ACTIONS(2040), + [anon_sym_u16] = ACTIONS(2040), + [anon_sym_i16] = ACTIONS(2040), + [anon_sym_u32] = ACTIONS(2040), + [anon_sym_i32] = ACTIONS(2040), + [anon_sym_u64] = ACTIONS(2040), + [anon_sym_i64] = ACTIONS(2040), + [anon_sym_u128] = ACTIONS(2040), + [anon_sym_i128] = ACTIONS(2040), + [anon_sym_isize] = ACTIONS(2040), + [anon_sym_usize] = ACTIONS(2040), + [anon_sym_f32] = ACTIONS(2040), + [anon_sym_f64] = ACTIONS(2040), + [anon_sym_bool] = ACTIONS(2040), + [anon_sym_str] = ACTIONS(2040), + [anon_sym_char] = ACTIONS(2040), + [anon_sym_DASH] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_PIPE] = ACTIONS(2038), + [anon_sym_LT] = ACTIONS(2038), + [anon_sym_DOT_DOT] = ACTIONS(2038), + [anon_sym_COLON_COLON] = ACTIONS(2038), + [anon_sym_POUND] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2040), + [anon_sym_async] = ACTIONS(2040), + [anon_sym_break] = ACTIONS(2040), + [anon_sym_const] = ACTIONS(2040), + [anon_sym_continue] = ACTIONS(2040), + [anon_sym_default] = ACTIONS(2040), + [anon_sym_enum] = ACTIONS(2040), + [anon_sym_fn] = ACTIONS(2040), + [anon_sym_for] = ACTIONS(2040), + [anon_sym_gen] = ACTIONS(2040), + [anon_sym_if] = ACTIONS(2040), + [anon_sym_impl] = ACTIONS(2040), + [anon_sym_let] = ACTIONS(2040), + [anon_sym_loop] = ACTIONS(2040), + [anon_sym_match] = ACTIONS(2040), + [anon_sym_mod] = ACTIONS(2040), + [anon_sym_pub] = ACTIONS(2040), + [anon_sym_return] = ACTIONS(2040), + [anon_sym_static] = ACTIONS(2040), + [anon_sym_struct] = ACTIONS(2040), + [anon_sym_trait] = ACTIONS(2040), + [anon_sym_type] = ACTIONS(2040), + [anon_sym_union] = ACTIONS(2040), + [anon_sym_unsafe] = ACTIONS(2040), + [anon_sym_use] = ACTIONS(2040), + [anon_sym_while] = ACTIONS(2040), + [anon_sym_extern] = ACTIONS(2040), + [anon_sym_yield] = ACTIONS(2040), + [anon_sym_move] = ACTIONS(2040), + [anon_sym_try] = ACTIONS(2040), + [sym_integer_literal] = ACTIONS(2038), + [aux_sym_string_literal_token1] = ACTIONS(2038), + [sym_char_literal] = ACTIONS(2038), + [anon_sym_true] = ACTIONS(2040), + [anon_sym_false] = ACTIONS(2040), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2040), + [sym_super] = ACTIONS(2040), + [sym_crate] = ACTIONS(2040), + [sym_metavariable] = ACTIONS(2038), + [sym__raw_string_literal_start] = ACTIONS(2038), + [sym_float_literal] = ACTIONS(2038), }, [STATE(573)] = { [sym_line_comment] = STATE(573), [sym_block_comment] = STATE(573), - [ts_builtin_sym_end] = ACTIONS(2246), - [sym_identifier] = ACTIONS(2248), - [anon_sym_SEMI] = ACTIONS(2246), - [anon_sym_macro_rules_BANG] = ACTIONS(2246), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_LBRACK] = ACTIONS(2246), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_RBRACE] = ACTIONS(2246), - [anon_sym_STAR] = ACTIONS(2246), - [anon_sym_u8] = ACTIONS(2248), - [anon_sym_i8] = ACTIONS(2248), - [anon_sym_u16] = ACTIONS(2248), - [anon_sym_i16] = ACTIONS(2248), - [anon_sym_u32] = ACTIONS(2248), - [anon_sym_i32] = ACTIONS(2248), - [anon_sym_u64] = ACTIONS(2248), - [anon_sym_i64] = ACTIONS(2248), - [anon_sym_u128] = ACTIONS(2248), - [anon_sym_i128] = ACTIONS(2248), - [anon_sym_isize] = ACTIONS(2248), - [anon_sym_usize] = ACTIONS(2248), - [anon_sym_f32] = ACTIONS(2248), - [anon_sym_f64] = ACTIONS(2248), - [anon_sym_bool] = ACTIONS(2248), - [anon_sym_str] = ACTIONS(2248), - [anon_sym_char] = ACTIONS(2248), - [anon_sym_DASH] = ACTIONS(2246), - [anon_sym_BANG] = ACTIONS(2246), - [anon_sym_AMP] = ACTIONS(2246), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_LT] = ACTIONS(2246), - [anon_sym_DOT_DOT] = ACTIONS(2246), - [anon_sym_COLON_COLON] = ACTIONS(2246), - [anon_sym_POUND] = ACTIONS(2246), - [anon_sym_SQUOTE] = ACTIONS(2248), - [anon_sym_async] = ACTIONS(2248), - [anon_sym_break] = ACTIONS(2248), - [anon_sym_const] = ACTIONS(2248), - [anon_sym_continue] = ACTIONS(2248), - [anon_sym_default] = ACTIONS(2248), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_fn] = ACTIONS(2248), - [anon_sym_for] = ACTIONS(2248), - [anon_sym_gen] = ACTIONS(2248), - [anon_sym_if] = ACTIONS(2248), - [anon_sym_impl] = ACTIONS(2248), - [anon_sym_let] = ACTIONS(2248), - [anon_sym_loop] = ACTIONS(2248), - [anon_sym_match] = ACTIONS(2248), - [anon_sym_mod] = ACTIONS(2248), - [anon_sym_pub] = ACTIONS(2248), - [anon_sym_return] = ACTIONS(2248), - [anon_sym_static] = ACTIONS(2248), - [anon_sym_struct] = ACTIONS(2248), - [anon_sym_trait] = ACTIONS(2248), - [anon_sym_type] = ACTIONS(2248), - [anon_sym_union] = ACTIONS(2248), - [anon_sym_unsafe] = ACTIONS(2248), - [anon_sym_use] = ACTIONS(2248), - [anon_sym_while] = ACTIONS(2248), - [anon_sym_extern] = ACTIONS(2248), - [anon_sym_yield] = ACTIONS(2248), - [anon_sym_move] = ACTIONS(2248), - [anon_sym_try] = ACTIONS(2248), - [sym_integer_literal] = ACTIONS(2246), - [aux_sym_string_literal_token1] = ACTIONS(2246), - [sym_char_literal] = ACTIONS(2246), - [anon_sym_true] = ACTIONS(2248), - [anon_sym_false] = ACTIONS(2248), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2248), - [sym_super] = ACTIONS(2248), - [sym_crate] = ACTIONS(2248), - [sym_metavariable] = ACTIONS(2246), - [sym__raw_string_literal_start] = ACTIONS(2246), - [sym_float_literal] = ACTIONS(2246), + [ts_builtin_sym_end] = ACTIONS(2042), + [sym_identifier] = ACTIONS(2044), + [anon_sym_SEMI] = ACTIONS(2042), + [anon_sym_macro_rules_BANG] = ACTIONS(2042), + [anon_sym_LPAREN] = ACTIONS(2042), + [anon_sym_LBRACK] = ACTIONS(2042), + [anon_sym_LBRACE] = ACTIONS(2042), + [anon_sym_RBRACE] = ACTIONS(2042), + [anon_sym_STAR] = ACTIONS(2042), + [anon_sym_u8] = ACTIONS(2044), + [anon_sym_i8] = ACTIONS(2044), + [anon_sym_u16] = ACTIONS(2044), + [anon_sym_i16] = ACTIONS(2044), + [anon_sym_u32] = ACTIONS(2044), + [anon_sym_i32] = ACTIONS(2044), + [anon_sym_u64] = ACTIONS(2044), + [anon_sym_i64] = ACTIONS(2044), + [anon_sym_u128] = ACTIONS(2044), + [anon_sym_i128] = ACTIONS(2044), + [anon_sym_isize] = ACTIONS(2044), + [anon_sym_usize] = ACTIONS(2044), + [anon_sym_f32] = ACTIONS(2044), + [anon_sym_f64] = ACTIONS(2044), + [anon_sym_bool] = ACTIONS(2044), + [anon_sym_str] = ACTIONS(2044), + [anon_sym_char] = ACTIONS(2044), + [anon_sym_DASH] = ACTIONS(2042), + [anon_sym_BANG] = ACTIONS(2042), + [anon_sym_AMP] = ACTIONS(2042), + [anon_sym_PIPE] = ACTIONS(2042), + [anon_sym_LT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_COLON_COLON] = ACTIONS(2042), + [anon_sym_POUND] = ACTIONS(2042), + [anon_sym_SQUOTE] = ACTIONS(2044), + [anon_sym_async] = ACTIONS(2044), + [anon_sym_break] = ACTIONS(2044), + [anon_sym_const] = ACTIONS(2044), + [anon_sym_continue] = ACTIONS(2044), + [anon_sym_default] = ACTIONS(2044), + [anon_sym_enum] = ACTIONS(2044), + [anon_sym_fn] = ACTIONS(2044), + [anon_sym_for] = ACTIONS(2044), + [anon_sym_gen] = ACTIONS(2044), + [anon_sym_if] = ACTIONS(2044), + [anon_sym_impl] = ACTIONS(2044), + [anon_sym_let] = ACTIONS(2044), + [anon_sym_loop] = ACTIONS(2044), + [anon_sym_match] = ACTIONS(2044), + [anon_sym_mod] = ACTIONS(2044), + [anon_sym_pub] = ACTIONS(2044), + [anon_sym_return] = ACTIONS(2044), + [anon_sym_static] = ACTIONS(2044), + [anon_sym_struct] = ACTIONS(2044), + [anon_sym_trait] = ACTIONS(2044), + [anon_sym_type] = ACTIONS(2044), + [anon_sym_union] = ACTIONS(2044), + [anon_sym_unsafe] = ACTIONS(2044), + [anon_sym_use] = ACTIONS(2044), + [anon_sym_while] = ACTIONS(2044), + [anon_sym_extern] = ACTIONS(2044), + [anon_sym_yield] = ACTIONS(2044), + [anon_sym_move] = ACTIONS(2044), + [anon_sym_try] = ACTIONS(2044), + [sym_integer_literal] = ACTIONS(2042), + [aux_sym_string_literal_token1] = ACTIONS(2042), + [sym_char_literal] = ACTIONS(2042), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2044), + [sym_super] = ACTIONS(2044), + [sym_crate] = ACTIONS(2044), + [sym_metavariable] = ACTIONS(2042), + [sym__raw_string_literal_start] = ACTIONS(2042), + [sym_float_literal] = ACTIONS(2042), }, [STATE(574)] = { [sym_line_comment] = STATE(574), [sym_block_comment] = STATE(574), - [ts_builtin_sym_end] = ACTIONS(2250), - [sym_identifier] = ACTIONS(2252), - [anon_sym_SEMI] = ACTIONS(2250), - [anon_sym_macro_rules_BANG] = ACTIONS(2250), - [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_RBRACE] = ACTIONS(2250), - [anon_sym_STAR] = ACTIONS(2250), - [anon_sym_u8] = ACTIONS(2252), - [anon_sym_i8] = ACTIONS(2252), - [anon_sym_u16] = ACTIONS(2252), - [anon_sym_i16] = ACTIONS(2252), - [anon_sym_u32] = ACTIONS(2252), - [anon_sym_i32] = ACTIONS(2252), - [anon_sym_u64] = ACTIONS(2252), - [anon_sym_i64] = ACTIONS(2252), - [anon_sym_u128] = ACTIONS(2252), - [anon_sym_i128] = ACTIONS(2252), - [anon_sym_isize] = ACTIONS(2252), - [anon_sym_usize] = ACTIONS(2252), - [anon_sym_f32] = ACTIONS(2252), - [anon_sym_f64] = ACTIONS(2252), - [anon_sym_bool] = ACTIONS(2252), - [anon_sym_str] = ACTIONS(2252), - [anon_sym_char] = ACTIONS(2252), - [anon_sym_DASH] = ACTIONS(2250), - [anon_sym_BANG] = ACTIONS(2250), - [anon_sym_AMP] = ACTIONS(2250), - [anon_sym_PIPE] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2250), - [anon_sym_DOT_DOT] = ACTIONS(2250), - [anon_sym_COLON_COLON] = ACTIONS(2250), - [anon_sym_POUND] = ACTIONS(2250), - [anon_sym_SQUOTE] = ACTIONS(2252), - [anon_sym_async] = ACTIONS(2252), - [anon_sym_break] = ACTIONS(2252), - [anon_sym_const] = ACTIONS(2252), - [anon_sym_continue] = ACTIONS(2252), - [anon_sym_default] = ACTIONS(2252), - [anon_sym_enum] = ACTIONS(2252), - [anon_sym_fn] = ACTIONS(2252), - [anon_sym_for] = ACTIONS(2252), - [anon_sym_gen] = ACTIONS(2252), - [anon_sym_if] = ACTIONS(2252), - [anon_sym_impl] = ACTIONS(2252), - [anon_sym_let] = ACTIONS(2252), - [anon_sym_loop] = ACTIONS(2252), - [anon_sym_match] = ACTIONS(2252), - [anon_sym_mod] = ACTIONS(2252), - [anon_sym_pub] = ACTIONS(2252), - [anon_sym_return] = ACTIONS(2252), - [anon_sym_static] = ACTIONS(2252), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_trait] = ACTIONS(2252), - [anon_sym_type] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2252), - [anon_sym_unsafe] = ACTIONS(2252), - [anon_sym_use] = ACTIONS(2252), - [anon_sym_while] = ACTIONS(2252), - [anon_sym_extern] = ACTIONS(2252), - [anon_sym_yield] = ACTIONS(2252), - [anon_sym_move] = ACTIONS(2252), - [anon_sym_try] = ACTIONS(2252), - [sym_integer_literal] = ACTIONS(2250), - [aux_sym_string_literal_token1] = ACTIONS(2250), - [sym_char_literal] = ACTIONS(2250), - [anon_sym_true] = ACTIONS(2252), - [anon_sym_false] = ACTIONS(2252), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2252), - [sym_super] = ACTIONS(2252), - [sym_crate] = ACTIONS(2252), - [sym_metavariable] = ACTIONS(2250), - [sym__raw_string_literal_start] = ACTIONS(2250), - [sym_float_literal] = ACTIONS(2250), + [ts_builtin_sym_end] = ACTIONS(2046), + [sym_identifier] = ACTIONS(2048), + [anon_sym_SEMI] = ACTIONS(2046), + [anon_sym_macro_rules_BANG] = ACTIONS(2046), + [anon_sym_LPAREN] = ACTIONS(2046), + [anon_sym_LBRACK] = ACTIONS(2046), + [anon_sym_LBRACE] = ACTIONS(2046), + [anon_sym_RBRACE] = ACTIONS(2046), + [anon_sym_STAR] = ACTIONS(2046), + [anon_sym_u8] = ACTIONS(2048), + [anon_sym_i8] = ACTIONS(2048), + [anon_sym_u16] = ACTIONS(2048), + [anon_sym_i16] = ACTIONS(2048), + [anon_sym_u32] = ACTIONS(2048), + [anon_sym_i32] = ACTIONS(2048), + [anon_sym_u64] = ACTIONS(2048), + [anon_sym_i64] = ACTIONS(2048), + [anon_sym_u128] = ACTIONS(2048), + [anon_sym_i128] = ACTIONS(2048), + [anon_sym_isize] = ACTIONS(2048), + [anon_sym_usize] = ACTIONS(2048), + [anon_sym_f32] = ACTIONS(2048), + [anon_sym_f64] = ACTIONS(2048), + [anon_sym_bool] = ACTIONS(2048), + [anon_sym_str] = ACTIONS(2048), + [anon_sym_char] = ACTIONS(2048), + [anon_sym_DASH] = ACTIONS(2046), + [anon_sym_BANG] = ACTIONS(2046), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_PIPE] = ACTIONS(2046), + [anon_sym_LT] = ACTIONS(2046), + [anon_sym_DOT_DOT] = ACTIONS(2046), + [anon_sym_COLON_COLON] = ACTIONS(2046), + [anon_sym_POUND] = ACTIONS(2046), + [anon_sym_SQUOTE] = ACTIONS(2048), + [anon_sym_async] = ACTIONS(2048), + [anon_sym_break] = ACTIONS(2048), + [anon_sym_const] = ACTIONS(2048), + [anon_sym_continue] = ACTIONS(2048), + [anon_sym_default] = ACTIONS(2048), + [anon_sym_enum] = ACTIONS(2048), + [anon_sym_fn] = ACTIONS(2048), + [anon_sym_for] = ACTIONS(2048), + [anon_sym_gen] = ACTIONS(2048), + [anon_sym_if] = ACTIONS(2048), + [anon_sym_impl] = ACTIONS(2048), + [anon_sym_let] = ACTIONS(2048), + [anon_sym_loop] = ACTIONS(2048), + [anon_sym_match] = ACTIONS(2048), + [anon_sym_mod] = ACTIONS(2048), + [anon_sym_pub] = ACTIONS(2048), + [anon_sym_return] = ACTIONS(2048), + [anon_sym_static] = ACTIONS(2048), + [anon_sym_struct] = ACTIONS(2048), + [anon_sym_trait] = ACTIONS(2048), + [anon_sym_type] = ACTIONS(2048), + [anon_sym_union] = ACTIONS(2048), + [anon_sym_unsafe] = ACTIONS(2048), + [anon_sym_use] = ACTIONS(2048), + [anon_sym_while] = ACTIONS(2048), + [anon_sym_extern] = ACTIONS(2048), + [anon_sym_yield] = ACTIONS(2048), + [anon_sym_move] = ACTIONS(2048), + [anon_sym_try] = ACTIONS(2048), + [sym_integer_literal] = ACTIONS(2046), + [aux_sym_string_literal_token1] = ACTIONS(2046), + [sym_char_literal] = ACTIONS(2046), + [anon_sym_true] = ACTIONS(2048), + [anon_sym_false] = ACTIONS(2048), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2048), + [sym_super] = ACTIONS(2048), + [sym_crate] = ACTIONS(2048), + [sym_metavariable] = ACTIONS(2046), + [sym__raw_string_literal_start] = ACTIONS(2046), + [sym_float_literal] = ACTIONS(2046), }, [STATE(575)] = { [sym_line_comment] = STATE(575), [sym_block_comment] = STATE(575), - [ts_builtin_sym_end] = ACTIONS(2254), - [sym_identifier] = ACTIONS(2256), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_macro_rules_BANG] = ACTIONS(2254), - [anon_sym_LPAREN] = ACTIONS(2254), - [anon_sym_LBRACK] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(2254), - [anon_sym_RBRACE] = ACTIONS(2254), - [anon_sym_STAR] = ACTIONS(2254), - [anon_sym_u8] = ACTIONS(2256), - [anon_sym_i8] = ACTIONS(2256), - [anon_sym_u16] = ACTIONS(2256), - [anon_sym_i16] = ACTIONS(2256), - [anon_sym_u32] = ACTIONS(2256), - [anon_sym_i32] = ACTIONS(2256), - [anon_sym_u64] = ACTIONS(2256), - [anon_sym_i64] = ACTIONS(2256), - [anon_sym_u128] = ACTIONS(2256), - [anon_sym_i128] = ACTIONS(2256), - [anon_sym_isize] = ACTIONS(2256), - [anon_sym_usize] = ACTIONS(2256), - [anon_sym_f32] = ACTIONS(2256), - [anon_sym_f64] = ACTIONS(2256), - [anon_sym_bool] = ACTIONS(2256), - [anon_sym_str] = ACTIONS(2256), - [anon_sym_char] = ACTIONS(2256), - [anon_sym_DASH] = ACTIONS(2254), - [anon_sym_BANG] = ACTIONS(2254), - [anon_sym_AMP] = ACTIONS(2254), - [anon_sym_PIPE] = ACTIONS(2254), - [anon_sym_LT] = ACTIONS(2254), - [anon_sym_DOT_DOT] = ACTIONS(2254), - [anon_sym_COLON_COLON] = ACTIONS(2254), - [anon_sym_POUND] = ACTIONS(2254), - [anon_sym_SQUOTE] = ACTIONS(2256), - [anon_sym_async] = ACTIONS(2256), - [anon_sym_break] = ACTIONS(2256), - [anon_sym_const] = ACTIONS(2256), - [anon_sym_continue] = ACTIONS(2256), - [anon_sym_default] = ACTIONS(2256), - [anon_sym_enum] = ACTIONS(2256), - [anon_sym_fn] = ACTIONS(2256), - [anon_sym_for] = ACTIONS(2256), - [anon_sym_gen] = ACTIONS(2256), - [anon_sym_if] = ACTIONS(2256), - [anon_sym_impl] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [anon_sym_loop] = ACTIONS(2256), - [anon_sym_match] = ACTIONS(2256), - [anon_sym_mod] = ACTIONS(2256), - [anon_sym_pub] = ACTIONS(2256), - [anon_sym_return] = ACTIONS(2256), - [anon_sym_static] = ACTIONS(2256), - [anon_sym_struct] = ACTIONS(2256), - [anon_sym_trait] = ACTIONS(2256), - [anon_sym_type] = ACTIONS(2256), - [anon_sym_union] = ACTIONS(2256), - [anon_sym_unsafe] = ACTIONS(2256), - [anon_sym_use] = ACTIONS(2256), - [anon_sym_while] = ACTIONS(2256), - [anon_sym_extern] = ACTIONS(2256), - [anon_sym_yield] = ACTIONS(2256), - [anon_sym_move] = ACTIONS(2256), - [anon_sym_try] = ACTIONS(2256), - [sym_integer_literal] = ACTIONS(2254), - [aux_sym_string_literal_token1] = ACTIONS(2254), - [sym_char_literal] = ACTIONS(2254), - [anon_sym_true] = ACTIONS(2256), - [anon_sym_false] = ACTIONS(2256), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2256), - [sym_super] = ACTIONS(2256), - [sym_crate] = ACTIONS(2256), - [sym_metavariable] = ACTIONS(2254), - [sym__raw_string_literal_start] = ACTIONS(2254), - [sym_float_literal] = ACTIONS(2254), + [ts_builtin_sym_end] = ACTIONS(2050), + [sym_identifier] = ACTIONS(2052), + [anon_sym_SEMI] = ACTIONS(2050), + [anon_sym_macro_rules_BANG] = ACTIONS(2050), + [anon_sym_LPAREN] = ACTIONS(2050), + [anon_sym_LBRACK] = ACTIONS(2050), + [anon_sym_LBRACE] = ACTIONS(2050), + [anon_sym_RBRACE] = ACTIONS(2050), + [anon_sym_STAR] = ACTIONS(2050), + [anon_sym_u8] = ACTIONS(2052), + [anon_sym_i8] = ACTIONS(2052), + [anon_sym_u16] = ACTIONS(2052), + [anon_sym_i16] = ACTIONS(2052), + [anon_sym_u32] = ACTIONS(2052), + [anon_sym_i32] = ACTIONS(2052), + [anon_sym_u64] = ACTIONS(2052), + [anon_sym_i64] = ACTIONS(2052), + [anon_sym_u128] = ACTIONS(2052), + [anon_sym_i128] = ACTIONS(2052), + [anon_sym_isize] = ACTIONS(2052), + [anon_sym_usize] = ACTIONS(2052), + [anon_sym_f32] = ACTIONS(2052), + [anon_sym_f64] = ACTIONS(2052), + [anon_sym_bool] = ACTIONS(2052), + [anon_sym_str] = ACTIONS(2052), + [anon_sym_char] = ACTIONS(2052), + [anon_sym_DASH] = ACTIONS(2050), + [anon_sym_BANG] = ACTIONS(2050), + [anon_sym_AMP] = ACTIONS(2050), + [anon_sym_PIPE] = ACTIONS(2050), + [anon_sym_LT] = ACTIONS(2050), + [anon_sym_DOT_DOT] = ACTIONS(2050), + [anon_sym_COLON_COLON] = ACTIONS(2050), + [anon_sym_POUND] = ACTIONS(2050), + [anon_sym_SQUOTE] = ACTIONS(2052), + [anon_sym_async] = ACTIONS(2052), + [anon_sym_break] = ACTIONS(2052), + [anon_sym_const] = ACTIONS(2052), + [anon_sym_continue] = ACTIONS(2052), + [anon_sym_default] = ACTIONS(2052), + [anon_sym_enum] = ACTIONS(2052), + [anon_sym_fn] = ACTIONS(2052), + [anon_sym_for] = ACTIONS(2052), + [anon_sym_gen] = ACTIONS(2052), + [anon_sym_if] = ACTIONS(2052), + [anon_sym_impl] = ACTIONS(2052), + [anon_sym_let] = ACTIONS(2052), + [anon_sym_loop] = ACTIONS(2052), + [anon_sym_match] = ACTIONS(2052), + [anon_sym_mod] = ACTIONS(2052), + [anon_sym_pub] = ACTIONS(2052), + [anon_sym_return] = ACTIONS(2052), + [anon_sym_static] = ACTIONS(2052), + [anon_sym_struct] = ACTIONS(2052), + [anon_sym_trait] = ACTIONS(2052), + [anon_sym_type] = ACTIONS(2052), + [anon_sym_union] = ACTIONS(2052), + [anon_sym_unsafe] = ACTIONS(2052), + [anon_sym_use] = ACTIONS(2052), + [anon_sym_while] = ACTIONS(2052), + [anon_sym_extern] = ACTIONS(2052), + [anon_sym_yield] = ACTIONS(2052), + [anon_sym_move] = ACTIONS(2052), + [anon_sym_try] = ACTIONS(2052), + [sym_integer_literal] = ACTIONS(2050), + [aux_sym_string_literal_token1] = ACTIONS(2050), + [sym_char_literal] = ACTIONS(2050), + [anon_sym_true] = ACTIONS(2052), + [anon_sym_false] = ACTIONS(2052), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2052), + [sym_super] = ACTIONS(2052), + [sym_crate] = ACTIONS(2052), + [sym_metavariable] = ACTIONS(2050), + [sym__raw_string_literal_start] = ACTIONS(2050), + [sym_float_literal] = ACTIONS(2050), }, [STATE(576)] = { [sym_line_comment] = STATE(576), [sym_block_comment] = STATE(576), - [ts_builtin_sym_end] = ACTIONS(2258), - [sym_identifier] = ACTIONS(2260), - [anon_sym_SEMI] = ACTIONS(2258), - [anon_sym_macro_rules_BANG] = ACTIONS(2258), - [anon_sym_LPAREN] = ACTIONS(2258), - [anon_sym_LBRACK] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2258), - [anon_sym_RBRACE] = ACTIONS(2258), - [anon_sym_STAR] = ACTIONS(2258), - [anon_sym_u8] = ACTIONS(2260), - [anon_sym_i8] = ACTIONS(2260), - [anon_sym_u16] = ACTIONS(2260), - [anon_sym_i16] = ACTIONS(2260), - [anon_sym_u32] = ACTIONS(2260), - [anon_sym_i32] = ACTIONS(2260), - [anon_sym_u64] = ACTIONS(2260), - [anon_sym_i64] = ACTIONS(2260), - [anon_sym_u128] = ACTIONS(2260), - [anon_sym_i128] = ACTIONS(2260), - [anon_sym_isize] = ACTIONS(2260), - [anon_sym_usize] = ACTIONS(2260), - [anon_sym_f32] = ACTIONS(2260), - [anon_sym_f64] = ACTIONS(2260), - [anon_sym_bool] = ACTIONS(2260), - [anon_sym_str] = ACTIONS(2260), - [anon_sym_char] = ACTIONS(2260), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_BANG] = ACTIONS(2258), - [anon_sym_AMP] = ACTIONS(2258), - [anon_sym_PIPE] = ACTIONS(2258), - [anon_sym_LT] = ACTIONS(2258), - [anon_sym_DOT_DOT] = ACTIONS(2258), - [anon_sym_COLON_COLON] = ACTIONS(2258), - [anon_sym_POUND] = ACTIONS(2258), - [anon_sym_SQUOTE] = ACTIONS(2260), - [anon_sym_async] = ACTIONS(2260), - [anon_sym_break] = ACTIONS(2260), - [anon_sym_const] = ACTIONS(2260), - [anon_sym_continue] = ACTIONS(2260), - [anon_sym_default] = ACTIONS(2260), - [anon_sym_enum] = ACTIONS(2260), - [anon_sym_fn] = ACTIONS(2260), - [anon_sym_for] = ACTIONS(2260), - [anon_sym_gen] = ACTIONS(2260), - [anon_sym_if] = ACTIONS(2260), - [anon_sym_impl] = ACTIONS(2260), - [anon_sym_let] = ACTIONS(2260), - [anon_sym_loop] = ACTIONS(2260), - [anon_sym_match] = ACTIONS(2260), - [anon_sym_mod] = ACTIONS(2260), - [anon_sym_pub] = ACTIONS(2260), - [anon_sym_return] = ACTIONS(2260), - [anon_sym_static] = ACTIONS(2260), - [anon_sym_struct] = ACTIONS(2260), - [anon_sym_trait] = ACTIONS(2260), - [anon_sym_type] = ACTIONS(2260), - [anon_sym_union] = ACTIONS(2260), - [anon_sym_unsafe] = ACTIONS(2260), - [anon_sym_use] = ACTIONS(2260), - [anon_sym_while] = ACTIONS(2260), - [anon_sym_extern] = ACTIONS(2260), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_move] = ACTIONS(2260), - [anon_sym_try] = ACTIONS(2260), - [sym_integer_literal] = ACTIONS(2258), - [aux_sym_string_literal_token1] = ACTIONS(2258), - [sym_char_literal] = ACTIONS(2258), - [anon_sym_true] = ACTIONS(2260), - [anon_sym_false] = ACTIONS(2260), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2260), - [sym_super] = ACTIONS(2260), - [sym_crate] = ACTIONS(2260), - [sym_metavariable] = ACTIONS(2258), - [sym__raw_string_literal_start] = ACTIONS(2258), - [sym_float_literal] = ACTIONS(2258), + [ts_builtin_sym_end] = ACTIONS(2054), + [sym_identifier] = ACTIONS(2056), + [anon_sym_SEMI] = ACTIONS(2054), + [anon_sym_macro_rules_BANG] = ACTIONS(2054), + [anon_sym_LPAREN] = ACTIONS(2054), + [anon_sym_LBRACK] = ACTIONS(2054), + [anon_sym_LBRACE] = ACTIONS(2054), + [anon_sym_RBRACE] = ACTIONS(2054), + [anon_sym_STAR] = ACTIONS(2054), + [anon_sym_u8] = ACTIONS(2056), + [anon_sym_i8] = ACTIONS(2056), + [anon_sym_u16] = ACTIONS(2056), + [anon_sym_i16] = ACTIONS(2056), + [anon_sym_u32] = ACTIONS(2056), + [anon_sym_i32] = ACTIONS(2056), + [anon_sym_u64] = ACTIONS(2056), + [anon_sym_i64] = ACTIONS(2056), + [anon_sym_u128] = ACTIONS(2056), + [anon_sym_i128] = ACTIONS(2056), + [anon_sym_isize] = ACTIONS(2056), + [anon_sym_usize] = ACTIONS(2056), + [anon_sym_f32] = ACTIONS(2056), + [anon_sym_f64] = ACTIONS(2056), + [anon_sym_bool] = ACTIONS(2056), + [anon_sym_str] = ACTIONS(2056), + [anon_sym_char] = ACTIONS(2056), + [anon_sym_DASH] = ACTIONS(2054), + [anon_sym_BANG] = ACTIONS(2054), + [anon_sym_AMP] = ACTIONS(2054), + [anon_sym_PIPE] = ACTIONS(2054), + [anon_sym_LT] = ACTIONS(2054), + [anon_sym_DOT_DOT] = ACTIONS(2054), + [anon_sym_COLON_COLON] = ACTIONS(2054), + [anon_sym_POUND] = ACTIONS(2054), + [anon_sym_SQUOTE] = ACTIONS(2056), + [anon_sym_async] = ACTIONS(2056), + [anon_sym_break] = ACTIONS(2056), + [anon_sym_const] = ACTIONS(2056), + [anon_sym_continue] = ACTIONS(2056), + [anon_sym_default] = ACTIONS(2056), + [anon_sym_enum] = ACTIONS(2056), + [anon_sym_fn] = ACTIONS(2056), + [anon_sym_for] = ACTIONS(2056), + [anon_sym_gen] = ACTIONS(2056), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_impl] = ACTIONS(2056), + [anon_sym_let] = ACTIONS(2056), + [anon_sym_loop] = ACTIONS(2056), + [anon_sym_match] = ACTIONS(2056), + [anon_sym_mod] = ACTIONS(2056), + [anon_sym_pub] = ACTIONS(2056), + [anon_sym_return] = ACTIONS(2056), + [anon_sym_static] = ACTIONS(2056), + [anon_sym_struct] = ACTIONS(2056), + [anon_sym_trait] = ACTIONS(2056), + [anon_sym_type] = ACTIONS(2056), + [anon_sym_union] = ACTIONS(2056), + [anon_sym_unsafe] = ACTIONS(2056), + [anon_sym_use] = ACTIONS(2056), + [anon_sym_while] = ACTIONS(2056), + [anon_sym_extern] = ACTIONS(2056), + [anon_sym_yield] = ACTIONS(2056), + [anon_sym_move] = ACTIONS(2056), + [anon_sym_try] = ACTIONS(2056), + [sym_integer_literal] = ACTIONS(2054), + [aux_sym_string_literal_token1] = ACTIONS(2054), + [sym_char_literal] = ACTIONS(2054), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2056), + [sym_super] = ACTIONS(2056), + [sym_crate] = ACTIONS(2056), + [sym_metavariable] = ACTIONS(2054), + [sym__raw_string_literal_start] = ACTIONS(2054), + [sym_float_literal] = ACTIONS(2054), }, [STATE(577)] = { [sym_line_comment] = STATE(577), [sym_block_comment] = STATE(577), - [ts_builtin_sym_end] = ACTIONS(2262), - [sym_identifier] = ACTIONS(2264), - [anon_sym_SEMI] = ACTIONS(2262), - [anon_sym_macro_rules_BANG] = ACTIONS(2262), - [anon_sym_LPAREN] = ACTIONS(2262), - [anon_sym_LBRACK] = ACTIONS(2262), - [anon_sym_LBRACE] = ACTIONS(2262), - [anon_sym_RBRACE] = ACTIONS(2262), - [anon_sym_STAR] = ACTIONS(2262), - [anon_sym_u8] = ACTIONS(2264), - [anon_sym_i8] = ACTIONS(2264), - [anon_sym_u16] = ACTIONS(2264), - [anon_sym_i16] = ACTIONS(2264), - [anon_sym_u32] = ACTIONS(2264), - [anon_sym_i32] = ACTIONS(2264), - [anon_sym_u64] = ACTIONS(2264), - [anon_sym_i64] = ACTIONS(2264), - [anon_sym_u128] = ACTIONS(2264), - [anon_sym_i128] = ACTIONS(2264), - [anon_sym_isize] = ACTIONS(2264), - [anon_sym_usize] = ACTIONS(2264), - [anon_sym_f32] = ACTIONS(2264), - [anon_sym_f64] = ACTIONS(2264), - [anon_sym_bool] = ACTIONS(2264), - [anon_sym_str] = ACTIONS(2264), - [anon_sym_char] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2262), - [anon_sym_BANG] = ACTIONS(2262), - [anon_sym_AMP] = ACTIONS(2262), - [anon_sym_PIPE] = ACTIONS(2262), - [anon_sym_LT] = ACTIONS(2262), - [anon_sym_DOT_DOT] = ACTIONS(2262), - [anon_sym_COLON_COLON] = ACTIONS(2262), - [anon_sym_POUND] = ACTIONS(2262), - [anon_sym_SQUOTE] = ACTIONS(2264), - [anon_sym_async] = ACTIONS(2264), - [anon_sym_break] = ACTIONS(2264), - [anon_sym_const] = ACTIONS(2264), - [anon_sym_continue] = ACTIONS(2264), - [anon_sym_default] = ACTIONS(2264), - [anon_sym_enum] = ACTIONS(2264), - [anon_sym_fn] = ACTIONS(2264), - [anon_sym_for] = ACTIONS(2264), - [anon_sym_gen] = ACTIONS(2264), - [anon_sym_if] = ACTIONS(2264), - [anon_sym_impl] = ACTIONS(2264), - [anon_sym_let] = ACTIONS(2264), - [anon_sym_loop] = ACTIONS(2264), - [anon_sym_match] = ACTIONS(2264), - [anon_sym_mod] = ACTIONS(2264), - [anon_sym_pub] = ACTIONS(2264), - [anon_sym_return] = ACTIONS(2264), - [anon_sym_static] = ACTIONS(2264), - [anon_sym_struct] = ACTIONS(2264), - [anon_sym_trait] = ACTIONS(2264), - [anon_sym_type] = ACTIONS(2264), - [anon_sym_union] = ACTIONS(2264), - [anon_sym_unsafe] = ACTIONS(2264), - [anon_sym_use] = ACTIONS(2264), - [anon_sym_while] = ACTIONS(2264), - [anon_sym_extern] = ACTIONS(2264), - [anon_sym_yield] = ACTIONS(2264), - [anon_sym_move] = ACTIONS(2264), - [anon_sym_try] = ACTIONS(2264), - [sym_integer_literal] = ACTIONS(2262), - [aux_sym_string_literal_token1] = ACTIONS(2262), - [sym_char_literal] = ACTIONS(2262), - [anon_sym_true] = ACTIONS(2264), - [anon_sym_false] = ACTIONS(2264), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2264), - [sym_super] = ACTIONS(2264), - [sym_crate] = ACTIONS(2264), - [sym_metavariable] = ACTIONS(2262), - [sym__raw_string_literal_start] = ACTIONS(2262), - [sym_float_literal] = ACTIONS(2262), + [ts_builtin_sym_end] = ACTIONS(2058), + [sym_identifier] = ACTIONS(2060), + [anon_sym_SEMI] = ACTIONS(2058), + [anon_sym_macro_rules_BANG] = ACTIONS(2058), + [anon_sym_LPAREN] = ACTIONS(2058), + [anon_sym_LBRACK] = ACTIONS(2058), + [anon_sym_LBRACE] = ACTIONS(2058), + [anon_sym_RBRACE] = ACTIONS(2058), + [anon_sym_STAR] = ACTIONS(2058), + [anon_sym_u8] = ACTIONS(2060), + [anon_sym_i8] = ACTIONS(2060), + [anon_sym_u16] = ACTIONS(2060), + [anon_sym_i16] = ACTIONS(2060), + [anon_sym_u32] = ACTIONS(2060), + [anon_sym_i32] = ACTIONS(2060), + [anon_sym_u64] = ACTIONS(2060), + [anon_sym_i64] = ACTIONS(2060), + [anon_sym_u128] = ACTIONS(2060), + [anon_sym_i128] = ACTIONS(2060), + [anon_sym_isize] = ACTIONS(2060), + [anon_sym_usize] = ACTIONS(2060), + [anon_sym_f32] = ACTIONS(2060), + [anon_sym_f64] = ACTIONS(2060), + [anon_sym_bool] = ACTIONS(2060), + [anon_sym_str] = ACTIONS(2060), + [anon_sym_char] = ACTIONS(2060), + [anon_sym_DASH] = ACTIONS(2058), + [anon_sym_BANG] = ACTIONS(2058), + [anon_sym_AMP] = ACTIONS(2058), + [anon_sym_PIPE] = ACTIONS(2058), + [anon_sym_LT] = ACTIONS(2058), + [anon_sym_DOT_DOT] = ACTIONS(2058), + [anon_sym_COLON_COLON] = ACTIONS(2058), + [anon_sym_POUND] = ACTIONS(2058), + [anon_sym_SQUOTE] = ACTIONS(2060), + [anon_sym_async] = ACTIONS(2060), + [anon_sym_break] = ACTIONS(2060), + [anon_sym_const] = ACTIONS(2060), + [anon_sym_continue] = ACTIONS(2060), + [anon_sym_default] = ACTIONS(2060), + [anon_sym_enum] = ACTIONS(2060), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_for] = ACTIONS(2060), + [anon_sym_gen] = ACTIONS(2060), + [anon_sym_if] = ACTIONS(2060), + [anon_sym_impl] = ACTIONS(2060), + [anon_sym_let] = ACTIONS(2060), + [anon_sym_loop] = ACTIONS(2060), + [anon_sym_match] = ACTIONS(2060), + [anon_sym_mod] = ACTIONS(2060), + [anon_sym_pub] = ACTIONS(2060), + [anon_sym_return] = ACTIONS(2060), + [anon_sym_static] = ACTIONS(2060), + [anon_sym_struct] = ACTIONS(2060), + [anon_sym_trait] = ACTIONS(2060), + [anon_sym_type] = ACTIONS(2060), + [anon_sym_union] = ACTIONS(2060), + [anon_sym_unsafe] = ACTIONS(2060), + [anon_sym_use] = ACTIONS(2060), + [anon_sym_while] = ACTIONS(2060), + [anon_sym_extern] = ACTIONS(2060), + [anon_sym_yield] = ACTIONS(2060), + [anon_sym_move] = ACTIONS(2060), + [anon_sym_try] = ACTIONS(2060), + [sym_integer_literal] = ACTIONS(2058), + [aux_sym_string_literal_token1] = ACTIONS(2058), + [sym_char_literal] = ACTIONS(2058), + [anon_sym_true] = ACTIONS(2060), + [anon_sym_false] = ACTIONS(2060), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2060), + [sym_super] = ACTIONS(2060), + [sym_crate] = ACTIONS(2060), + [sym_metavariable] = ACTIONS(2058), + [sym__raw_string_literal_start] = ACTIONS(2058), + [sym_float_literal] = ACTIONS(2058), }, [STATE(578)] = { [sym_line_comment] = STATE(578), [sym_block_comment] = STATE(578), - [ts_builtin_sym_end] = ACTIONS(2266), - [sym_identifier] = ACTIONS(2268), - [anon_sym_SEMI] = ACTIONS(2266), - [anon_sym_macro_rules_BANG] = ACTIONS(2266), - [anon_sym_LPAREN] = ACTIONS(2266), - [anon_sym_LBRACK] = ACTIONS(2266), - [anon_sym_LBRACE] = ACTIONS(2266), - [anon_sym_RBRACE] = ACTIONS(2266), - [anon_sym_STAR] = ACTIONS(2266), - [anon_sym_u8] = ACTIONS(2268), - [anon_sym_i8] = ACTIONS(2268), - [anon_sym_u16] = ACTIONS(2268), - [anon_sym_i16] = ACTIONS(2268), - [anon_sym_u32] = ACTIONS(2268), - [anon_sym_i32] = ACTIONS(2268), - [anon_sym_u64] = ACTIONS(2268), - [anon_sym_i64] = ACTIONS(2268), - [anon_sym_u128] = ACTIONS(2268), - [anon_sym_i128] = ACTIONS(2268), - [anon_sym_isize] = ACTIONS(2268), - [anon_sym_usize] = ACTIONS(2268), - [anon_sym_f32] = ACTIONS(2268), - [anon_sym_f64] = ACTIONS(2268), - [anon_sym_bool] = ACTIONS(2268), - [anon_sym_str] = ACTIONS(2268), - [anon_sym_char] = ACTIONS(2268), - [anon_sym_DASH] = ACTIONS(2266), - [anon_sym_BANG] = ACTIONS(2266), - [anon_sym_AMP] = ACTIONS(2266), - [anon_sym_PIPE] = ACTIONS(2266), - [anon_sym_LT] = ACTIONS(2266), - [anon_sym_DOT_DOT] = ACTIONS(2266), - [anon_sym_COLON_COLON] = ACTIONS(2266), - [anon_sym_POUND] = ACTIONS(2266), - [anon_sym_SQUOTE] = ACTIONS(2268), - [anon_sym_async] = ACTIONS(2268), - [anon_sym_break] = ACTIONS(2268), - [anon_sym_const] = ACTIONS(2268), - [anon_sym_continue] = ACTIONS(2268), - [anon_sym_default] = ACTIONS(2268), - [anon_sym_enum] = ACTIONS(2268), - [anon_sym_fn] = ACTIONS(2268), - [anon_sym_for] = ACTIONS(2268), - [anon_sym_gen] = ACTIONS(2268), - [anon_sym_if] = ACTIONS(2268), - [anon_sym_impl] = ACTIONS(2268), - [anon_sym_let] = ACTIONS(2268), - [anon_sym_loop] = ACTIONS(2268), - [anon_sym_match] = ACTIONS(2268), - [anon_sym_mod] = ACTIONS(2268), - [anon_sym_pub] = ACTIONS(2268), - [anon_sym_return] = ACTIONS(2268), - [anon_sym_static] = ACTIONS(2268), - [anon_sym_struct] = ACTIONS(2268), - [anon_sym_trait] = ACTIONS(2268), - [anon_sym_type] = ACTIONS(2268), - [anon_sym_union] = ACTIONS(2268), - [anon_sym_unsafe] = ACTIONS(2268), - [anon_sym_use] = ACTIONS(2268), - [anon_sym_while] = ACTIONS(2268), - [anon_sym_extern] = ACTIONS(2268), - [anon_sym_yield] = ACTIONS(2268), - [anon_sym_move] = ACTIONS(2268), - [anon_sym_try] = ACTIONS(2268), - [sym_integer_literal] = ACTIONS(2266), - [aux_sym_string_literal_token1] = ACTIONS(2266), - [sym_char_literal] = ACTIONS(2266), - [anon_sym_true] = ACTIONS(2268), - [anon_sym_false] = ACTIONS(2268), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2268), - [sym_super] = ACTIONS(2268), - [sym_crate] = ACTIONS(2268), - [sym_metavariable] = ACTIONS(2266), - [sym__raw_string_literal_start] = ACTIONS(2266), - [sym_float_literal] = ACTIONS(2266), + [ts_builtin_sym_end] = ACTIONS(2062), + [sym_identifier] = ACTIONS(2064), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_macro_rules_BANG] = ACTIONS(2062), + [anon_sym_LPAREN] = ACTIONS(2062), + [anon_sym_LBRACK] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_STAR] = ACTIONS(2062), + [anon_sym_u8] = ACTIONS(2064), + [anon_sym_i8] = ACTIONS(2064), + [anon_sym_u16] = ACTIONS(2064), + [anon_sym_i16] = ACTIONS(2064), + [anon_sym_u32] = ACTIONS(2064), + [anon_sym_i32] = ACTIONS(2064), + [anon_sym_u64] = ACTIONS(2064), + [anon_sym_i64] = ACTIONS(2064), + [anon_sym_u128] = ACTIONS(2064), + [anon_sym_i128] = ACTIONS(2064), + [anon_sym_isize] = ACTIONS(2064), + [anon_sym_usize] = ACTIONS(2064), + [anon_sym_f32] = ACTIONS(2064), + [anon_sym_f64] = ACTIONS(2064), + [anon_sym_bool] = ACTIONS(2064), + [anon_sym_str] = ACTIONS(2064), + [anon_sym_char] = ACTIONS(2064), + [anon_sym_DASH] = ACTIONS(2062), + [anon_sym_BANG] = ACTIONS(2062), + [anon_sym_AMP] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_LT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_COLON_COLON] = ACTIONS(2062), + [anon_sym_POUND] = ACTIONS(2062), + [anon_sym_SQUOTE] = ACTIONS(2064), + [anon_sym_async] = ACTIONS(2064), + [anon_sym_break] = ACTIONS(2064), + [anon_sym_const] = ACTIONS(2064), + [anon_sym_continue] = ACTIONS(2064), + [anon_sym_default] = ACTIONS(2064), + [anon_sym_enum] = ACTIONS(2064), + [anon_sym_fn] = ACTIONS(2064), + [anon_sym_for] = ACTIONS(2064), + [anon_sym_gen] = ACTIONS(2064), + [anon_sym_if] = ACTIONS(2064), + [anon_sym_impl] = ACTIONS(2064), + [anon_sym_let] = ACTIONS(2064), + [anon_sym_loop] = ACTIONS(2064), + [anon_sym_match] = ACTIONS(2064), + [anon_sym_mod] = ACTIONS(2064), + [anon_sym_pub] = ACTIONS(2064), + [anon_sym_return] = ACTIONS(2064), + [anon_sym_static] = ACTIONS(2064), + [anon_sym_struct] = ACTIONS(2064), + [anon_sym_trait] = ACTIONS(2064), + [anon_sym_type] = ACTIONS(2064), + [anon_sym_union] = ACTIONS(2064), + [anon_sym_unsafe] = ACTIONS(2064), + [anon_sym_use] = ACTIONS(2064), + [anon_sym_while] = ACTIONS(2064), + [anon_sym_extern] = ACTIONS(2064), + [anon_sym_yield] = ACTIONS(2064), + [anon_sym_move] = ACTIONS(2064), + [anon_sym_try] = ACTIONS(2064), + [sym_integer_literal] = ACTIONS(2062), + [aux_sym_string_literal_token1] = ACTIONS(2062), + [sym_char_literal] = ACTIONS(2062), + [anon_sym_true] = ACTIONS(2064), + [anon_sym_false] = ACTIONS(2064), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2064), + [sym_super] = ACTIONS(2064), + [sym_crate] = ACTIONS(2064), + [sym_metavariable] = ACTIONS(2062), + [sym__raw_string_literal_start] = ACTIONS(2062), + [sym_float_literal] = ACTIONS(2062), }, [STATE(579)] = { [sym_line_comment] = STATE(579), [sym_block_comment] = STATE(579), - [ts_builtin_sym_end] = ACTIONS(2270), - [sym_identifier] = ACTIONS(2272), - [anon_sym_SEMI] = ACTIONS(2270), - [anon_sym_macro_rules_BANG] = ACTIONS(2270), - [anon_sym_LPAREN] = ACTIONS(2270), - [anon_sym_LBRACK] = ACTIONS(2270), - [anon_sym_LBRACE] = ACTIONS(2270), - [anon_sym_RBRACE] = ACTIONS(2270), - [anon_sym_STAR] = ACTIONS(2270), - [anon_sym_u8] = ACTIONS(2272), - [anon_sym_i8] = ACTIONS(2272), - [anon_sym_u16] = ACTIONS(2272), - [anon_sym_i16] = ACTIONS(2272), - [anon_sym_u32] = ACTIONS(2272), - [anon_sym_i32] = ACTIONS(2272), - [anon_sym_u64] = ACTIONS(2272), - [anon_sym_i64] = ACTIONS(2272), - [anon_sym_u128] = ACTIONS(2272), - [anon_sym_i128] = ACTIONS(2272), - [anon_sym_isize] = ACTIONS(2272), - [anon_sym_usize] = ACTIONS(2272), - [anon_sym_f32] = ACTIONS(2272), - [anon_sym_f64] = ACTIONS(2272), - [anon_sym_bool] = ACTIONS(2272), - [anon_sym_str] = ACTIONS(2272), - [anon_sym_char] = ACTIONS(2272), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_PIPE] = ACTIONS(2270), - [anon_sym_LT] = ACTIONS(2270), - [anon_sym_DOT_DOT] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2270), - [anon_sym_POUND] = ACTIONS(2270), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_async] = ACTIONS(2272), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_const] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2272), - [anon_sym_default] = ACTIONS(2272), - [anon_sym_enum] = ACTIONS(2272), - [anon_sym_fn] = ACTIONS(2272), - [anon_sym_for] = ACTIONS(2272), - [anon_sym_gen] = ACTIONS(2272), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_impl] = ACTIONS(2272), - [anon_sym_let] = ACTIONS(2272), - [anon_sym_loop] = ACTIONS(2272), - [anon_sym_match] = ACTIONS(2272), - [anon_sym_mod] = ACTIONS(2272), - [anon_sym_pub] = ACTIONS(2272), - [anon_sym_return] = ACTIONS(2272), - [anon_sym_static] = ACTIONS(2272), - [anon_sym_struct] = ACTIONS(2272), - [anon_sym_trait] = ACTIONS(2272), - [anon_sym_type] = ACTIONS(2272), - [anon_sym_union] = ACTIONS(2272), - [anon_sym_unsafe] = ACTIONS(2272), - [anon_sym_use] = ACTIONS(2272), - [anon_sym_while] = ACTIONS(2272), - [anon_sym_extern] = ACTIONS(2272), - [anon_sym_yield] = ACTIONS(2272), - [anon_sym_move] = ACTIONS(2272), - [anon_sym_try] = ACTIONS(2272), - [sym_integer_literal] = ACTIONS(2270), - [aux_sym_string_literal_token1] = ACTIONS(2270), - [sym_char_literal] = ACTIONS(2270), - [anon_sym_true] = ACTIONS(2272), - [anon_sym_false] = ACTIONS(2272), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2272), - [sym_super] = ACTIONS(2272), - [sym_crate] = ACTIONS(2272), - [sym_metavariable] = ACTIONS(2270), - [sym__raw_string_literal_start] = ACTIONS(2270), - [sym_float_literal] = ACTIONS(2270), + [ts_builtin_sym_end] = ACTIONS(2066), + [sym_identifier] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2066), + [anon_sym_macro_rules_BANG] = ACTIONS(2066), + [anon_sym_LPAREN] = ACTIONS(2066), + [anon_sym_LBRACK] = ACTIONS(2066), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_RBRACE] = ACTIONS(2066), + [anon_sym_STAR] = ACTIONS(2066), + [anon_sym_u8] = ACTIONS(2068), + [anon_sym_i8] = ACTIONS(2068), + [anon_sym_u16] = ACTIONS(2068), + [anon_sym_i16] = ACTIONS(2068), + [anon_sym_u32] = ACTIONS(2068), + [anon_sym_i32] = ACTIONS(2068), + [anon_sym_u64] = ACTIONS(2068), + [anon_sym_i64] = ACTIONS(2068), + [anon_sym_u128] = ACTIONS(2068), + [anon_sym_i128] = ACTIONS(2068), + [anon_sym_isize] = ACTIONS(2068), + [anon_sym_usize] = ACTIONS(2068), + [anon_sym_f32] = ACTIONS(2068), + [anon_sym_f64] = ACTIONS(2068), + [anon_sym_bool] = ACTIONS(2068), + [anon_sym_str] = ACTIONS(2068), + [anon_sym_char] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2066), + [anon_sym_BANG] = ACTIONS(2066), + [anon_sym_AMP] = ACTIONS(2066), + [anon_sym_PIPE] = ACTIONS(2066), + [anon_sym_LT] = ACTIONS(2066), + [anon_sym_DOT_DOT] = ACTIONS(2066), + [anon_sym_COLON_COLON] = ACTIONS(2066), + [anon_sym_POUND] = ACTIONS(2066), + [anon_sym_SQUOTE] = ACTIONS(2068), + [anon_sym_async] = ACTIONS(2068), + [anon_sym_break] = ACTIONS(2068), + [anon_sym_const] = ACTIONS(2068), + [anon_sym_continue] = ACTIONS(2068), + [anon_sym_default] = ACTIONS(2068), + [anon_sym_enum] = ACTIONS(2068), + [anon_sym_fn] = ACTIONS(2068), + [anon_sym_for] = ACTIONS(2068), + [anon_sym_gen] = ACTIONS(2068), + [anon_sym_if] = ACTIONS(2068), + [anon_sym_impl] = ACTIONS(2068), + [anon_sym_let] = ACTIONS(2068), + [anon_sym_loop] = ACTIONS(2068), + [anon_sym_match] = ACTIONS(2068), + [anon_sym_mod] = ACTIONS(2068), + [anon_sym_pub] = ACTIONS(2068), + [anon_sym_return] = ACTIONS(2068), + [anon_sym_static] = ACTIONS(2068), + [anon_sym_struct] = ACTIONS(2068), + [anon_sym_trait] = ACTIONS(2068), + [anon_sym_type] = ACTIONS(2068), + [anon_sym_union] = ACTIONS(2068), + [anon_sym_unsafe] = ACTIONS(2068), + [anon_sym_use] = ACTIONS(2068), + [anon_sym_while] = ACTIONS(2068), + [anon_sym_extern] = ACTIONS(2068), + [anon_sym_yield] = ACTIONS(2068), + [anon_sym_move] = ACTIONS(2068), + [anon_sym_try] = ACTIONS(2068), + [sym_integer_literal] = ACTIONS(2066), + [aux_sym_string_literal_token1] = ACTIONS(2066), + [sym_char_literal] = ACTIONS(2066), + [anon_sym_true] = ACTIONS(2068), + [anon_sym_false] = ACTIONS(2068), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2068), + [sym_super] = ACTIONS(2068), + [sym_crate] = ACTIONS(2068), + [sym_metavariable] = ACTIONS(2066), + [sym__raw_string_literal_start] = ACTIONS(2066), + [sym_float_literal] = ACTIONS(2066), }, [STATE(580)] = { [sym_line_comment] = STATE(580), [sym_block_comment] = STATE(580), - [ts_builtin_sym_end] = ACTIONS(2274), - [sym_identifier] = ACTIONS(2276), - [anon_sym_SEMI] = ACTIONS(2274), - [anon_sym_macro_rules_BANG] = ACTIONS(2274), - [anon_sym_LPAREN] = ACTIONS(2274), - [anon_sym_LBRACK] = ACTIONS(2274), - [anon_sym_LBRACE] = ACTIONS(2274), - [anon_sym_RBRACE] = ACTIONS(2274), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_u8] = ACTIONS(2276), - [anon_sym_i8] = ACTIONS(2276), - [anon_sym_u16] = ACTIONS(2276), - [anon_sym_i16] = ACTIONS(2276), - [anon_sym_u32] = ACTIONS(2276), - [anon_sym_i32] = ACTIONS(2276), - [anon_sym_u64] = ACTIONS(2276), - [anon_sym_i64] = ACTIONS(2276), - [anon_sym_u128] = ACTIONS(2276), - [anon_sym_i128] = ACTIONS(2276), - [anon_sym_isize] = ACTIONS(2276), - [anon_sym_usize] = ACTIONS(2276), - [anon_sym_f32] = ACTIONS(2276), - [anon_sym_f64] = ACTIONS(2276), - [anon_sym_bool] = ACTIONS(2276), - [anon_sym_str] = ACTIONS(2276), - [anon_sym_char] = ACTIONS(2276), - [anon_sym_DASH] = ACTIONS(2274), - [anon_sym_BANG] = ACTIONS(2274), - [anon_sym_AMP] = ACTIONS(2274), - [anon_sym_PIPE] = ACTIONS(2274), - [anon_sym_LT] = ACTIONS(2274), - [anon_sym_DOT_DOT] = ACTIONS(2274), - [anon_sym_COLON_COLON] = ACTIONS(2274), - [anon_sym_POUND] = ACTIONS(2274), - [anon_sym_SQUOTE] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(2276), - [anon_sym_break] = ACTIONS(2276), - [anon_sym_const] = ACTIONS(2276), - [anon_sym_continue] = ACTIONS(2276), - [anon_sym_default] = ACTIONS(2276), - [anon_sym_enum] = ACTIONS(2276), - [anon_sym_fn] = ACTIONS(2276), - [anon_sym_for] = ACTIONS(2276), - [anon_sym_gen] = ACTIONS(2276), - [anon_sym_if] = ACTIONS(2276), - [anon_sym_impl] = ACTIONS(2276), - [anon_sym_let] = ACTIONS(2276), - [anon_sym_loop] = ACTIONS(2276), - [anon_sym_match] = ACTIONS(2276), - [anon_sym_mod] = ACTIONS(2276), - [anon_sym_pub] = ACTIONS(2276), - [anon_sym_return] = ACTIONS(2276), - [anon_sym_static] = ACTIONS(2276), - [anon_sym_struct] = ACTIONS(2276), - [anon_sym_trait] = ACTIONS(2276), - [anon_sym_type] = ACTIONS(2276), - [anon_sym_union] = ACTIONS(2276), - [anon_sym_unsafe] = ACTIONS(2276), - [anon_sym_use] = ACTIONS(2276), - [anon_sym_while] = ACTIONS(2276), - [anon_sym_extern] = ACTIONS(2276), - [anon_sym_yield] = ACTIONS(2276), - [anon_sym_move] = ACTIONS(2276), - [anon_sym_try] = ACTIONS(2276), - [sym_integer_literal] = ACTIONS(2274), - [aux_sym_string_literal_token1] = ACTIONS(2274), - [sym_char_literal] = ACTIONS(2274), - [anon_sym_true] = ACTIONS(2276), - [anon_sym_false] = ACTIONS(2276), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2276), - [sym_super] = ACTIONS(2276), - [sym_crate] = ACTIONS(2276), - [sym_metavariable] = ACTIONS(2274), - [sym__raw_string_literal_start] = ACTIONS(2274), - [sym_float_literal] = ACTIONS(2274), + [ts_builtin_sym_end] = ACTIONS(2070), + [sym_identifier] = ACTIONS(2072), + [anon_sym_SEMI] = ACTIONS(2070), + [anon_sym_macro_rules_BANG] = ACTIONS(2070), + [anon_sym_LPAREN] = ACTIONS(2070), + [anon_sym_LBRACK] = ACTIONS(2070), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_RBRACE] = ACTIONS(2070), + [anon_sym_STAR] = ACTIONS(2070), + [anon_sym_u8] = ACTIONS(2072), + [anon_sym_i8] = ACTIONS(2072), + [anon_sym_u16] = ACTIONS(2072), + [anon_sym_i16] = ACTIONS(2072), + [anon_sym_u32] = ACTIONS(2072), + [anon_sym_i32] = ACTIONS(2072), + [anon_sym_u64] = ACTIONS(2072), + [anon_sym_i64] = ACTIONS(2072), + [anon_sym_u128] = ACTIONS(2072), + [anon_sym_i128] = ACTIONS(2072), + [anon_sym_isize] = ACTIONS(2072), + [anon_sym_usize] = ACTIONS(2072), + [anon_sym_f32] = ACTIONS(2072), + [anon_sym_f64] = ACTIONS(2072), + [anon_sym_bool] = ACTIONS(2072), + [anon_sym_str] = ACTIONS(2072), + [anon_sym_char] = ACTIONS(2072), + [anon_sym_DASH] = ACTIONS(2070), + [anon_sym_BANG] = ACTIONS(2070), + [anon_sym_AMP] = ACTIONS(2070), + [anon_sym_PIPE] = ACTIONS(2070), + [anon_sym_LT] = ACTIONS(2070), + [anon_sym_DOT_DOT] = ACTIONS(2070), + [anon_sym_COLON_COLON] = ACTIONS(2070), + [anon_sym_POUND] = ACTIONS(2070), + [anon_sym_SQUOTE] = ACTIONS(2072), + [anon_sym_async] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_fn] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_gen] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_impl] = ACTIONS(2072), + [anon_sym_let] = ACTIONS(2072), + [anon_sym_loop] = ACTIONS(2072), + [anon_sym_match] = ACTIONS(2072), + [anon_sym_mod] = ACTIONS(2072), + [anon_sym_pub] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_trait] = ACTIONS(2072), + [anon_sym_type] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_unsafe] = ACTIONS(2072), + [anon_sym_use] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym_yield] = ACTIONS(2072), + [anon_sym_move] = ACTIONS(2072), + [anon_sym_try] = ACTIONS(2072), + [sym_integer_literal] = ACTIONS(2070), + [aux_sym_string_literal_token1] = ACTIONS(2070), + [sym_char_literal] = ACTIONS(2070), + [anon_sym_true] = ACTIONS(2072), + [anon_sym_false] = ACTIONS(2072), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_crate] = ACTIONS(2072), + [sym_metavariable] = ACTIONS(2070), + [sym__raw_string_literal_start] = ACTIONS(2070), + [sym_float_literal] = ACTIONS(2070), }, [STATE(581)] = { [sym_line_comment] = STATE(581), [sym_block_comment] = STATE(581), - [ts_builtin_sym_end] = ACTIONS(2278), - [sym_identifier] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2278), - [anon_sym_macro_rules_BANG] = ACTIONS(2278), - [anon_sym_LPAREN] = ACTIONS(2278), - [anon_sym_LBRACK] = ACTIONS(2278), - [anon_sym_LBRACE] = ACTIONS(2278), - [anon_sym_RBRACE] = ACTIONS(2278), - [anon_sym_STAR] = ACTIONS(2278), - [anon_sym_u8] = ACTIONS(2280), - [anon_sym_i8] = ACTIONS(2280), - [anon_sym_u16] = ACTIONS(2280), - [anon_sym_i16] = ACTIONS(2280), - [anon_sym_u32] = ACTIONS(2280), - [anon_sym_i32] = ACTIONS(2280), - [anon_sym_u64] = ACTIONS(2280), - [anon_sym_i64] = ACTIONS(2280), - [anon_sym_u128] = ACTIONS(2280), - [anon_sym_i128] = ACTIONS(2280), - [anon_sym_isize] = ACTIONS(2280), - [anon_sym_usize] = ACTIONS(2280), - [anon_sym_f32] = ACTIONS(2280), - [anon_sym_f64] = ACTIONS(2280), - [anon_sym_bool] = ACTIONS(2280), - [anon_sym_str] = ACTIONS(2280), - [anon_sym_char] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2278), - [anon_sym_BANG] = ACTIONS(2278), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_PIPE] = ACTIONS(2278), - [anon_sym_LT] = ACTIONS(2278), - [anon_sym_DOT_DOT] = ACTIONS(2278), - [anon_sym_COLON_COLON] = ACTIONS(2278), - [anon_sym_POUND] = ACTIONS(2278), - [anon_sym_SQUOTE] = ACTIONS(2280), - [anon_sym_async] = ACTIONS(2280), - [anon_sym_break] = ACTIONS(2280), - [anon_sym_const] = ACTIONS(2280), - [anon_sym_continue] = ACTIONS(2280), - [anon_sym_default] = ACTIONS(2280), - [anon_sym_enum] = ACTIONS(2280), - [anon_sym_fn] = ACTIONS(2280), - [anon_sym_for] = ACTIONS(2280), - [anon_sym_gen] = ACTIONS(2280), - [anon_sym_if] = ACTIONS(2280), - [anon_sym_impl] = ACTIONS(2280), - [anon_sym_let] = ACTIONS(2280), - [anon_sym_loop] = ACTIONS(2280), - [anon_sym_match] = ACTIONS(2280), - [anon_sym_mod] = ACTIONS(2280), - [anon_sym_pub] = ACTIONS(2280), - [anon_sym_return] = ACTIONS(2280), - [anon_sym_static] = ACTIONS(2280), - [anon_sym_struct] = ACTIONS(2280), - [anon_sym_trait] = ACTIONS(2280), - [anon_sym_type] = ACTIONS(2280), - [anon_sym_union] = ACTIONS(2280), - [anon_sym_unsafe] = ACTIONS(2280), - [anon_sym_use] = ACTIONS(2280), - [anon_sym_while] = ACTIONS(2280), - [anon_sym_extern] = ACTIONS(2280), - [anon_sym_yield] = ACTIONS(2280), - [anon_sym_move] = ACTIONS(2280), - [anon_sym_try] = ACTIONS(2280), - [sym_integer_literal] = ACTIONS(2278), - [aux_sym_string_literal_token1] = ACTIONS(2278), - [sym_char_literal] = ACTIONS(2278), - [anon_sym_true] = ACTIONS(2280), - [anon_sym_false] = ACTIONS(2280), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2280), - [sym_super] = ACTIONS(2280), - [sym_crate] = ACTIONS(2280), - [sym_metavariable] = ACTIONS(2278), - [sym__raw_string_literal_start] = ACTIONS(2278), - [sym_float_literal] = ACTIONS(2278), + [ts_builtin_sym_end] = ACTIONS(2074), + [sym_identifier] = ACTIONS(2076), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_macro_rules_BANG] = ACTIONS(2074), + [anon_sym_LPAREN] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_RBRACE] = ACTIONS(2074), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_u8] = ACTIONS(2076), + [anon_sym_i8] = ACTIONS(2076), + [anon_sym_u16] = ACTIONS(2076), + [anon_sym_i16] = ACTIONS(2076), + [anon_sym_u32] = ACTIONS(2076), + [anon_sym_i32] = ACTIONS(2076), + [anon_sym_u64] = ACTIONS(2076), + [anon_sym_i64] = ACTIONS(2076), + [anon_sym_u128] = ACTIONS(2076), + [anon_sym_i128] = ACTIONS(2076), + [anon_sym_isize] = ACTIONS(2076), + [anon_sym_usize] = ACTIONS(2076), + [anon_sym_f32] = ACTIONS(2076), + [anon_sym_f64] = ACTIONS(2076), + [anon_sym_bool] = ACTIONS(2076), + [anon_sym_str] = ACTIONS(2076), + [anon_sym_char] = ACTIONS(2076), + [anon_sym_DASH] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_PIPE] = ACTIONS(2074), + [anon_sym_LT] = ACTIONS(2074), + [anon_sym_DOT_DOT] = ACTIONS(2074), + [anon_sym_COLON_COLON] = ACTIONS(2074), + [anon_sym_POUND] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2076), + [anon_sym_async] = ACTIONS(2076), + [anon_sym_break] = ACTIONS(2076), + [anon_sym_const] = ACTIONS(2076), + [anon_sym_continue] = ACTIONS(2076), + [anon_sym_default] = ACTIONS(2076), + [anon_sym_enum] = ACTIONS(2076), + [anon_sym_fn] = ACTIONS(2076), + [anon_sym_for] = ACTIONS(2076), + [anon_sym_gen] = ACTIONS(2076), + [anon_sym_if] = ACTIONS(2076), + [anon_sym_impl] = ACTIONS(2076), + [anon_sym_let] = ACTIONS(2076), + [anon_sym_loop] = ACTIONS(2076), + [anon_sym_match] = ACTIONS(2076), + [anon_sym_mod] = ACTIONS(2076), + [anon_sym_pub] = ACTIONS(2076), + [anon_sym_return] = ACTIONS(2076), + [anon_sym_static] = ACTIONS(2076), + [anon_sym_struct] = ACTIONS(2076), + [anon_sym_trait] = ACTIONS(2076), + [anon_sym_type] = ACTIONS(2076), + [anon_sym_union] = ACTIONS(2076), + [anon_sym_unsafe] = ACTIONS(2076), + [anon_sym_use] = ACTIONS(2076), + [anon_sym_while] = ACTIONS(2076), + [anon_sym_extern] = ACTIONS(2076), + [anon_sym_yield] = ACTIONS(2076), + [anon_sym_move] = ACTIONS(2076), + [anon_sym_try] = ACTIONS(2076), + [sym_integer_literal] = ACTIONS(2074), + [aux_sym_string_literal_token1] = ACTIONS(2074), + [sym_char_literal] = ACTIONS(2074), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2076), + [sym_super] = ACTIONS(2076), + [sym_crate] = ACTIONS(2076), + [sym_metavariable] = ACTIONS(2074), + [sym__raw_string_literal_start] = ACTIONS(2074), + [sym_float_literal] = ACTIONS(2074), }, [STATE(582)] = { [sym_line_comment] = STATE(582), [sym_block_comment] = STATE(582), - [ts_builtin_sym_end] = ACTIONS(2282), - [sym_identifier] = ACTIONS(2284), - [anon_sym_SEMI] = ACTIONS(2282), - [anon_sym_macro_rules_BANG] = ACTIONS(2282), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_LBRACK] = ACTIONS(2282), - [anon_sym_LBRACE] = ACTIONS(2282), - [anon_sym_RBRACE] = ACTIONS(2282), - [anon_sym_STAR] = ACTIONS(2282), - [anon_sym_u8] = ACTIONS(2284), - [anon_sym_i8] = ACTIONS(2284), - [anon_sym_u16] = ACTIONS(2284), - [anon_sym_i16] = ACTIONS(2284), - [anon_sym_u32] = ACTIONS(2284), - [anon_sym_i32] = ACTIONS(2284), - [anon_sym_u64] = ACTIONS(2284), - [anon_sym_i64] = ACTIONS(2284), - [anon_sym_u128] = ACTIONS(2284), - [anon_sym_i128] = ACTIONS(2284), - [anon_sym_isize] = ACTIONS(2284), - [anon_sym_usize] = ACTIONS(2284), - [anon_sym_f32] = ACTIONS(2284), - [anon_sym_f64] = ACTIONS(2284), - [anon_sym_bool] = ACTIONS(2284), - [anon_sym_str] = ACTIONS(2284), - [anon_sym_char] = ACTIONS(2284), - [anon_sym_DASH] = ACTIONS(2282), - [anon_sym_BANG] = ACTIONS(2282), - [anon_sym_AMP] = ACTIONS(2282), - [anon_sym_PIPE] = ACTIONS(2282), - [anon_sym_LT] = ACTIONS(2282), - [anon_sym_DOT_DOT] = ACTIONS(2282), - [anon_sym_COLON_COLON] = ACTIONS(2282), - [anon_sym_POUND] = ACTIONS(2282), - [anon_sym_SQUOTE] = ACTIONS(2284), - [anon_sym_async] = ACTIONS(2284), - [anon_sym_break] = ACTIONS(2284), - [anon_sym_const] = ACTIONS(2284), - [anon_sym_continue] = ACTIONS(2284), - [anon_sym_default] = ACTIONS(2284), - [anon_sym_enum] = ACTIONS(2284), - [anon_sym_fn] = ACTIONS(2284), - [anon_sym_for] = ACTIONS(2284), - [anon_sym_gen] = ACTIONS(2284), - [anon_sym_if] = ACTIONS(2284), - [anon_sym_impl] = ACTIONS(2284), - [anon_sym_let] = ACTIONS(2284), - [anon_sym_loop] = ACTIONS(2284), - [anon_sym_match] = ACTIONS(2284), - [anon_sym_mod] = ACTIONS(2284), - [anon_sym_pub] = ACTIONS(2284), - [anon_sym_return] = ACTIONS(2284), - [anon_sym_static] = ACTIONS(2284), - [anon_sym_struct] = ACTIONS(2284), - [anon_sym_trait] = ACTIONS(2284), - [anon_sym_type] = ACTIONS(2284), - [anon_sym_union] = ACTIONS(2284), - [anon_sym_unsafe] = ACTIONS(2284), - [anon_sym_use] = ACTIONS(2284), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_extern] = ACTIONS(2284), - [anon_sym_yield] = ACTIONS(2284), - [anon_sym_move] = ACTIONS(2284), - [anon_sym_try] = ACTIONS(2284), - [sym_integer_literal] = ACTIONS(2282), - [aux_sym_string_literal_token1] = ACTIONS(2282), - [sym_char_literal] = ACTIONS(2282), - [anon_sym_true] = ACTIONS(2284), - [anon_sym_false] = ACTIONS(2284), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2284), - [sym_super] = ACTIONS(2284), - [sym_crate] = ACTIONS(2284), - [sym_metavariable] = ACTIONS(2282), - [sym__raw_string_literal_start] = ACTIONS(2282), - [sym_float_literal] = ACTIONS(2282), + [ts_builtin_sym_end] = ACTIONS(2078), + [sym_identifier] = ACTIONS(2080), + [anon_sym_SEMI] = ACTIONS(2078), + [anon_sym_macro_rules_BANG] = ACTIONS(2078), + [anon_sym_LPAREN] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2078), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_RBRACE] = ACTIONS(2078), + [anon_sym_STAR] = ACTIONS(2078), + [anon_sym_u8] = ACTIONS(2080), + [anon_sym_i8] = ACTIONS(2080), + [anon_sym_u16] = ACTIONS(2080), + [anon_sym_i16] = ACTIONS(2080), + [anon_sym_u32] = ACTIONS(2080), + [anon_sym_i32] = ACTIONS(2080), + [anon_sym_u64] = ACTIONS(2080), + [anon_sym_i64] = ACTIONS(2080), + [anon_sym_u128] = ACTIONS(2080), + [anon_sym_i128] = ACTIONS(2080), + [anon_sym_isize] = ACTIONS(2080), + [anon_sym_usize] = ACTIONS(2080), + [anon_sym_f32] = ACTIONS(2080), + [anon_sym_f64] = ACTIONS(2080), + [anon_sym_bool] = ACTIONS(2080), + [anon_sym_str] = ACTIONS(2080), + [anon_sym_char] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2078), + [anon_sym_BANG] = ACTIONS(2078), + [anon_sym_AMP] = ACTIONS(2078), + [anon_sym_PIPE] = ACTIONS(2078), + [anon_sym_LT] = ACTIONS(2078), + [anon_sym_DOT_DOT] = ACTIONS(2078), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_POUND] = ACTIONS(2078), + [anon_sym_SQUOTE] = ACTIONS(2080), + [anon_sym_async] = ACTIONS(2080), + [anon_sym_break] = ACTIONS(2080), + [anon_sym_const] = ACTIONS(2080), + [anon_sym_continue] = ACTIONS(2080), + [anon_sym_default] = ACTIONS(2080), + [anon_sym_enum] = ACTIONS(2080), + [anon_sym_fn] = ACTIONS(2080), + [anon_sym_for] = ACTIONS(2080), + [anon_sym_gen] = ACTIONS(2080), + [anon_sym_if] = ACTIONS(2080), + [anon_sym_impl] = ACTIONS(2080), + [anon_sym_let] = ACTIONS(2080), + [anon_sym_loop] = ACTIONS(2080), + [anon_sym_match] = ACTIONS(2080), + [anon_sym_mod] = ACTIONS(2080), + [anon_sym_pub] = ACTIONS(2080), + [anon_sym_return] = ACTIONS(2080), + [anon_sym_static] = ACTIONS(2080), + [anon_sym_struct] = ACTIONS(2080), + [anon_sym_trait] = ACTIONS(2080), + [anon_sym_type] = ACTIONS(2080), + [anon_sym_union] = ACTIONS(2080), + [anon_sym_unsafe] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(2080), + [anon_sym_while] = ACTIONS(2080), + [anon_sym_extern] = ACTIONS(2080), + [anon_sym_yield] = ACTIONS(2080), + [anon_sym_move] = ACTIONS(2080), + [anon_sym_try] = ACTIONS(2080), + [sym_integer_literal] = ACTIONS(2078), + [aux_sym_string_literal_token1] = ACTIONS(2078), + [sym_char_literal] = ACTIONS(2078), + [anon_sym_true] = ACTIONS(2080), + [anon_sym_false] = ACTIONS(2080), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2080), + [sym_super] = ACTIONS(2080), + [sym_crate] = ACTIONS(2080), + [sym_metavariable] = ACTIONS(2078), + [sym__raw_string_literal_start] = ACTIONS(2078), + [sym_float_literal] = ACTIONS(2078), }, [STATE(583)] = { [sym_line_comment] = STATE(583), [sym_block_comment] = STATE(583), - [ts_builtin_sym_end] = ACTIONS(2286), - [sym_identifier] = ACTIONS(2288), - [anon_sym_SEMI] = ACTIONS(2286), - [anon_sym_macro_rules_BANG] = ACTIONS(2286), - [anon_sym_LPAREN] = ACTIONS(2286), - [anon_sym_LBRACK] = ACTIONS(2286), - [anon_sym_LBRACE] = ACTIONS(2286), - [anon_sym_RBRACE] = ACTIONS(2286), - [anon_sym_STAR] = ACTIONS(2286), - [anon_sym_u8] = ACTIONS(2288), - [anon_sym_i8] = ACTIONS(2288), - [anon_sym_u16] = ACTIONS(2288), - [anon_sym_i16] = ACTIONS(2288), - [anon_sym_u32] = ACTIONS(2288), - [anon_sym_i32] = ACTIONS(2288), - [anon_sym_u64] = ACTIONS(2288), - [anon_sym_i64] = ACTIONS(2288), - [anon_sym_u128] = ACTIONS(2288), - [anon_sym_i128] = ACTIONS(2288), - [anon_sym_isize] = ACTIONS(2288), - [anon_sym_usize] = ACTIONS(2288), - [anon_sym_f32] = ACTIONS(2288), - [anon_sym_f64] = ACTIONS(2288), - [anon_sym_bool] = ACTIONS(2288), - [anon_sym_str] = ACTIONS(2288), - [anon_sym_char] = ACTIONS(2288), - [anon_sym_DASH] = ACTIONS(2286), - [anon_sym_BANG] = ACTIONS(2286), - [anon_sym_AMP] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2286), - [anon_sym_LT] = ACTIONS(2286), - [anon_sym_DOT_DOT] = ACTIONS(2286), - [anon_sym_COLON_COLON] = ACTIONS(2286), - [anon_sym_POUND] = ACTIONS(2286), - [anon_sym_SQUOTE] = ACTIONS(2288), - [anon_sym_async] = ACTIONS(2288), - [anon_sym_break] = ACTIONS(2288), - [anon_sym_const] = ACTIONS(2288), - [anon_sym_continue] = ACTIONS(2288), - [anon_sym_default] = ACTIONS(2288), - [anon_sym_enum] = ACTIONS(2288), - [anon_sym_fn] = ACTIONS(2288), - [anon_sym_for] = ACTIONS(2288), - [anon_sym_gen] = ACTIONS(2288), - [anon_sym_if] = ACTIONS(2288), - [anon_sym_impl] = ACTIONS(2288), - [anon_sym_let] = ACTIONS(2288), - [anon_sym_loop] = ACTIONS(2288), - [anon_sym_match] = ACTIONS(2288), - [anon_sym_mod] = ACTIONS(2288), - [anon_sym_pub] = ACTIONS(2288), - [anon_sym_return] = ACTIONS(2288), - [anon_sym_static] = ACTIONS(2288), - [anon_sym_struct] = ACTIONS(2288), - [anon_sym_trait] = ACTIONS(2288), - [anon_sym_type] = ACTIONS(2288), - [anon_sym_union] = ACTIONS(2288), - [anon_sym_unsafe] = ACTIONS(2288), - [anon_sym_use] = ACTIONS(2288), - [anon_sym_while] = ACTIONS(2288), - [anon_sym_extern] = ACTIONS(2288), - [anon_sym_yield] = ACTIONS(2288), - [anon_sym_move] = ACTIONS(2288), - [anon_sym_try] = ACTIONS(2288), - [sym_integer_literal] = ACTIONS(2286), - [aux_sym_string_literal_token1] = ACTIONS(2286), - [sym_char_literal] = ACTIONS(2286), - [anon_sym_true] = ACTIONS(2288), - [anon_sym_false] = ACTIONS(2288), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2288), - [sym_super] = ACTIONS(2288), - [sym_crate] = ACTIONS(2288), - [sym_metavariable] = ACTIONS(2286), - [sym__raw_string_literal_start] = ACTIONS(2286), - [sym_float_literal] = ACTIONS(2286), + [ts_builtin_sym_end] = ACTIONS(2082), + [sym_identifier] = ACTIONS(2084), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_macro_rules_BANG] = ACTIONS(2082), + [anon_sym_LPAREN] = ACTIONS(2082), + [anon_sym_LBRACK] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_STAR] = ACTIONS(2082), + [anon_sym_u8] = ACTIONS(2084), + [anon_sym_i8] = ACTIONS(2084), + [anon_sym_u16] = ACTIONS(2084), + [anon_sym_i16] = ACTIONS(2084), + [anon_sym_u32] = ACTIONS(2084), + [anon_sym_i32] = ACTIONS(2084), + [anon_sym_u64] = ACTIONS(2084), + [anon_sym_i64] = ACTIONS(2084), + [anon_sym_u128] = ACTIONS(2084), + [anon_sym_i128] = ACTIONS(2084), + [anon_sym_isize] = ACTIONS(2084), + [anon_sym_usize] = ACTIONS(2084), + [anon_sym_f32] = ACTIONS(2084), + [anon_sym_f64] = ACTIONS(2084), + [anon_sym_bool] = ACTIONS(2084), + [anon_sym_str] = ACTIONS(2084), + [anon_sym_char] = ACTIONS(2084), + [anon_sym_DASH] = ACTIONS(2082), + [anon_sym_BANG] = ACTIONS(2082), + [anon_sym_AMP] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_LT] = ACTIONS(2082), + [anon_sym_DOT_DOT] = ACTIONS(2082), + [anon_sym_COLON_COLON] = ACTIONS(2082), + [anon_sym_POUND] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_async] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), + [anon_sym_fn] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_gen] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_impl] = ACTIONS(2084), + [anon_sym_let] = ACTIONS(2084), + [anon_sym_loop] = ACTIONS(2084), + [anon_sym_match] = ACTIONS(2084), + [anon_sym_mod] = ACTIONS(2084), + [anon_sym_pub] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(2084), + [anon_sym_trait] = ACTIONS(2084), + [anon_sym_type] = ACTIONS(2084), + [anon_sym_union] = ACTIONS(2084), + [anon_sym_unsafe] = ACTIONS(2084), + [anon_sym_use] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [anon_sym_extern] = ACTIONS(2084), + [anon_sym_yield] = ACTIONS(2084), + [anon_sym_move] = ACTIONS(2084), + [anon_sym_try] = ACTIONS(2084), + [sym_integer_literal] = ACTIONS(2082), + [aux_sym_string_literal_token1] = ACTIONS(2082), + [sym_char_literal] = ACTIONS(2082), + [anon_sym_true] = ACTIONS(2084), + [anon_sym_false] = ACTIONS(2084), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2084), + [sym_super] = ACTIONS(2084), + [sym_crate] = ACTIONS(2084), + [sym_metavariable] = ACTIONS(2082), + [sym__raw_string_literal_start] = ACTIONS(2082), + [sym_float_literal] = ACTIONS(2082), }, [STATE(584)] = { [sym_line_comment] = STATE(584), [sym_block_comment] = STATE(584), - [ts_builtin_sym_end] = ACTIONS(2290), - [sym_identifier] = ACTIONS(2292), - [anon_sym_SEMI] = ACTIONS(2290), - [anon_sym_macro_rules_BANG] = ACTIONS(2290), - [anon_sym_LPAREN] = ACTIONS(2290), - [anon_sym_LBRACK] = ACTIONS(2290), - [anon_sym_LBRACE] = ACTIONS(2290), - [anon_sym_RBRACE] = ACTIONS(2290), - [anon_sym_STAR] = ACTIONS(2290), - [anon_sym_u8] = ACTIONS(2292), - [anon_sym_i8] = ACTIONS(2292), - [anon_sym_u16] = ACTIONS(2292), - [anon_sym_i16] = ACTIONS(2292), - [anon_sym_u32] = ACTIONS(2292), - [anon_sym_i32] = ACTIONS(2292), - [anon_sym_u64] = ACTIONS(2292), - [anon_sym_i64] = ACTIONS(2292), - [anon_sym_u128] = ACTIONS(2292), - [anon_sym_i128] = ACTIONS(2292), - [anon_sym_isize] = ACTIONS(2292), - [anon_sym_usize] = ACTIONS(2292), - [anon_sym_f32] = ACTIONS(2292), - [anon_sym_f64] = ACTIONS(2292), - [anon_sym_bool] = ACTIONS(2292), - [anon_sym_str] = ACTIONS(2292), - [anon_sym_char] = ACTIONS(2292), - [anon_sym_DASH] = ACTIONS(2290), - [anon_sym_BANG] = ACTIONS(2290), - [anon_sym_AMP] = ACTIONS(2290), - [anon_sym_PIPE] = ACTIONS(2290), - [anon_sym_LT] = ACTIONS(2290), - [anon_sym_DOT_DOT] = ACTIONS(2290), - [anon_sym_COLON_COLON] = ACTIONS(2290), - [anon_sym_POUND] = ACTIONS(2290), - [anon_sym_SQUOTE] = ACTIONS(2292), - [anon_sym_async] = ACTIONS(2292), - [anon_sym_break] = ACTIONS(2292), - [anon_sym_const] = ACTIONS(2292), - [anon_sym_continue] = ACTIONS(2292), - [anon_sym_default] = ACTIONS(2292), - [anon_sym_enum] = ACTIONS(2292), - [anon_sym_fn] = ACTIONS(2292), - [anon_sym_for] = ACTIONS(2292), - [anon_sym_gen] = ACTIONS(2292), - [anon_sym_if] = ACTIONS(2292), - [anon_sym_impl] = ACTIONS(2292), - [anon_sym_let] = ACTIONS(2292), - [anon_sym_loop] = ACTIONS(2292), - [anon_sym_match] = ACTIONS(2292), - [anon_sym_mod] = ACTIONS(2292), - [anon_sym_pub] = ACTIONS(2292), - [anon_sym_return] = ACTIONS(2292), - [anon_sym_static] = ACTIONS(2292), - [anon_sym_struct] = ACTIONS(2292), - [anon_sym_trait] = ACTIONS(2292), - [anon_sym_type] = ACTIONS(2292), - [anon_sym_union] = ACTIONS(2292), - [anon_sym_unsafe] = ACTIONS(2292), - [anon_sym_use] = ACTIONS(2292), - [anon_sym_while] = ACTIONS(2292), - [anon_sym_extern] = ACTIONS(2292), - [anon_sym_yield] = ACTIONS(2292), - [anon_sym_move] = ACTIONS(2292), - [anon_sym_try] = ACTIONS(2292), - [sym_integer_literal] = ACTIONS(2290), - [aux_sym_string_literal_token1] = ACTIONS(2290), - [sym_char_literal] = ACTIONS(2290), - [anon_sym_true] = ACTIONS(2292), - [anon_sym_false] = ACTIONS(2292), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2292), - [sym_super] = ACTIONS(2292), - [sym_crate] = ACTIONS(2292), - [sym_metavariable] = ACTIONS(2290), - [sym__raw_string_literal_start] = ACTIONS(2290), - [sym_float_literal] = ACTIONS(2290), + [ts_builtin_sym_end] = ACTIONS(2086), + [sym_identifier] = ACTIONS(2088), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_macro_rules_BANG] = ACTIONS(2086), + [anon_sym_LPAREN] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_RBRACE] = ACTIONS(2086), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_u8] = ACTIONS(2088), + [anon_sym_i8] = ACTIONS(2088), + [anon_sym_u16] = ACTIONS(2088), + [anon_sym_i16] = ACTIONS(2088), + [anon_sym_u32] = ACTIONS(2088), + [anon_sym_i32] = ACTIONS(2088), + [anon_sym_u64] = ACTIONS(2088), + [anon_sym_i64] = ACTIONS(2088), + [anon_sym_u128] = ACTIONS(2088), + [anon_sym_i128] = ACTIONS(2088), + [anon_sym_isize] = ACTIONS(2088), + [anon_sym_usize] = ACTIONS(2088), + [anon_sym_f32] = ACTIONS(2088), + [anon_sym_f64] = ACTIONS(2088), + [anon_sym_bool] = ACTIONS(2088), + [anon_sym_str] = ACTIONS(2088), + [anon_sym_char] = ACTIONS(2088), + [anon_sym_DASH] = ACTIONS(2086), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_PIPE] = ACTIONS(2086), + [anon_sym_LT] = ACTIONS(2086), + [anon_sym_DOT_DOT] = ACTIONS(2086), + [anon_sym_COLON_COLON] = ACTIONS(2086), + [anon_sym_POUND] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2088), + [anon_sym_async] = ACTIONS(2088), + [anon_sym_break] = ACTIONS(2088), + [anon_sym_const] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2088), + [anon_sym_default] = ACTIONS(2088), + [anon_sym_enum] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2088), + [anon_sym_gen] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_impl] = ACTIONS(2088), + [anon_sym_let] = ACTIONS(2088), + [anon_sym_loop] = ACTIONS(2088), + [anon_sym_match] = ACTIONS(2088), + [anon_sym_mod] = ACTIONS(2088), + [anon_sym_pub] = ACTIONS(2088), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_static] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2088), + [anon_sym_trait] = ACTIONS(2088), + [anon_sym_type] = ACTIONS(2088), + [anon_sym_union] = ACTIONS(2088), + [anon_sym_unsafe] = ACTIONS(2088), + [anon_sym_use] = ACTIONS(2088), + [anon_sym_while] = ACTIONS(2088), + [anon_sym_extern] = ACTIONS(2088), + [anon_sym_yield] = ACTIONS(2088), + [anon_sym_move] = ACTIONS(2088), + [anon_sym_try] = ACTIONS(2088), + [sym_integer_literal] = ACTIONS(2086), + [aux_sym_string_literal_token1] = ACTIONS(2086), + [sym_char_literal] = ACTIONS(2086), + [anon_sym_true] = ACTIONS(2088), + [anon_sym_false] = ACTIONS(2088), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2088), + [sym_super] = ACTIONS(2088), + [sym_crate] = ACTIONS(2088), + [sym_metavariable] = ACTIONS(2086), + [sym__raw_string_literal_start] = ACTIONS(2086), + [sym_float_literal] = ACTIONS(2086), }, [STATE(585)] = { [sym_line_comment] = STATE(585), [sym_block_comment] = STATE(585), - [ts_builtin_sym_end] = ACTIONS(2294), - [sym_identifier] = ACTIONS(2296), - [anon_sym_SEMI] = ACTIONS(2294), - [anon_sym_macro_rules_BANG] = ACTIONS(2294), - [anon_sym_LPAREN] = ACTIONS(2294), - [anon_sym_LBRACK] = ACTIONS(2294), - [anon_sym_LBRACE] = ACTIONS(2294), - [anon_sym_RBRACE] = ACTIONS(2294), - [anon_sym_STAR] = ACTIONS(2294), - [anon_sym_u8] = ACTIONS(2296), - [anon_sym_i8] = ACTIONS(2296), - [anon_sym_u16] = ACTIONS(2296), - [anon_sym_i16] = ACTIONS(2296), - [anon_sym_u32] = ACTIONS(2296), - [anon_sym_i32] = ACTIONS(2296), - [anon_sym_u64] = ACTIONS(2296), - [anon_sym_i64] = ACTIONS(2296), - [anon_sym_u128] = ACTIONS(2296), - [anon_sym_i128] = ACTIONS(2296), - [anon_sym_isize] = ACTIONS(2296), - [anon_sym_usize] = ACTIONS(2296), - [anon_sym_f32] = ACTIONS(2296), - [anon_sym_f64] = ACTIONS(2296), - [anon_sym_bool] = ACTIONS(2296), - [anon_sym_str] = ACTIONS(2296), - [anon_sym_char] = ACTIONS(2296), - [anon_sym_DASH] = ACTIONS(2294), - [anon_sym_BANG] = ACTIONS(2294), - [anon_sym_AMP] = ACTIONS(2294), - [anon_sym_PIPE] = ACTIONS(2294), - [anon_sym_LT] = ACTIONS(2294), - [anon_sym_DOT_DOT] = ACTIONS(2294), - [anon_sym_COLON_COLON] = ACTIONS(2294), - [anon_sym_POUND] = ACTIONS(2294), - [anon_sym_SQUOTE] = ACTIONS(2296), - [anon_sym_async] = ACTIONS(2296), - [anon_sym_break] = ACTIONS(2296), - [anon_sym_const] = ACTIONS(2296), - [anon_sym_continue] = ACTIONS(2296), - [anon_sym_default] = ACTIONS(2296), - [anon_sym_enum] = ACTIONS(2296), - [anon_sym_fn] = ACTIONS(2296), - [anon_sym_for] = ACTIONS(2296), - [anon_sym_gen] = ACTIONS(2296), - [anon_sym_if] = ACTIONS(2296), - [anon_sym_impl] = ACTIONS(2296), - [anon_sym_let] = ACTIONS(2296), - [anon_sym_loop] = ACTIONS(2296), - [anon_sym_match] = ACTIONS(2296), - [anon_sym_mod] = ACTIONS(2296), - [anon_sym_pub] = ACTIONS(2296), - [anon_sym_return] = ACTIONS(2296), - [anon_sym_static] = ACTIONS(2296), - [anon_sym_struct] = ACTIONS(2296), - [anon_sym_trait] = ACTIONS(2296), - [anon_sym_type] = ACTIONS(2296), - [anon_sym_union] = ACTIONS(2296), - [anon_sym_unsafe] = ACTIONS(2296), - [anon_sym_use] = ACTIONS(2296), - [anon_sym_while] = ACTIONS(2296), - [anon_sym_extern] = ACTIONS(2296), - [anon_sym_yield] = ACTIONS(2296), - [anon_sym_move] = ACTIONS(2296), - [anon_sym_try] = ACTIONS(2296), - [sym_integer_literal] = ACTIONS(2294), - [aux_sym_string_literal_token1] = ACTIONS(2294), - [sym_char_literal] = ACTIONS(2294), - [anon_sym_true] = ACTIONS(2296), - [anon_sym_false] = ACTIONS(2296), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2296), - [sym_super] = ACTIONS(2296), - [sym_crate] = ACTIONS(2296), - [sym_metavariable] = ACTIONS(2294), - [sym__raw_string_literal_start] = ACTIONS(2294), - [sym_float_literal] = ACTIONS(2294), + [ts_builtin_sym_end] = ACTIONS(2090), + [sym_identifier] = ACTIONS(2092), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_macro_rules_BANG] = ACTIONS(2090), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_u8] = ACTIONS(2092), + [anon_sym_i8] = ACTIONS(2092), + [anon_sym_u16] = ACTIONS(2092), + [anon_sym_i16] = ACTIONS(2092), + [anon_sym_u32] = ACTIONS(2092), + [anon_sym_i32] = ACTIONS(2092), + [anon_sym_u64] = ACTIONS(2092), + [anon_sym_i64] = ACTIONS(2092), + [anon_sym_u128] = ACTIONS(2092), + [anon_sym_i128] = ACTIONS(2092), + [anon_sym_isize] = ACTIONS(2092), + [anon_sym_usize] = ACTIONS(2092), + [anon_sym_f32] = ACTIONS(2092), + [anon_sym_f64] = ACTIONS(2092), + [anon_sym_bool] = ACTIONS(2092), + [anon_sym_str] = ACTIONS(2092), + [anon_sym_char] = ACTIONS(2092), + [anon_sym_DASH] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_PIPE] = ACTIONS(2090), + [anon_sym_LT] = ACTIONS(2090), + [anon_sym_DOT_DOT] = ACTIONS(2090), + [anon_sym_COLON_COLON] = ACTIONS(2090), + [anon_sym_POUND] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2092), + [anon_sym_async] = ACTIONS(2092), + [anon_sym_break] = ACTIONS(2092), + [anon_sym_const] = ACTIONS(2092), + [anon_sym_continue] = ACTIONS(2092), + [anon_sym_default] = ACTIONS(2092), + [anon_sym_enum] = ACTIONS(2092), + [anon_sym_fn] = ACTIONS(2092), + [anon_sym_for] = ACTIONS(2092), + [anon_sym_gen] = ACTIONS(2092), + [anon_sym_if] = ACTIONS(2092), + [anon_sym_impl] = ACTIONS(2092), + [anon_sym_let] = ACTIONS(2092), + [anon_sym_loop] = ACTIONS(2092), + [anon_sym_match] = ACTIONS(2092), + [anon_sym_mod] = ACTIONS(2092), + [anon_sym_pub] = ACTIONS(2092), + [anon_sym_return] = ACTIONS(2092), + [anon_sym_static] = ACTIONS(2092), + [anon_sym_struct] = ACTIONS(2092), + [anon_sym_trait] = ACTIONS(2092), + [anon_sym_type] = ACTIONS(2092), + [anon_sym_union] = ACTIONS(2092), + [anon_sym_unsafe] = ACTIONS(2092), + [anon_sym_use] = ACTIONS(2092), + [anon_sym_while] = ACTIONS(2092), + [anon_sym_extern] = ACTIONS(2092), + [anon_sym_yield] = ACTIONS(2092), + [anon_sym_move] = ACTIONS(2092), + [anon_sym_try] = ACTIONS(2092), + [sym_integer_literal] = ACTIONS(2090), + [aux_sym_string_literal_token1] = ACTIONS(2090), + [sym_char_literal] = ACTIONS(2090), + [anon_sym_true] = ACTIONS(2092), + [anon_sym_false] = ACTIONS(2092), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2092), + [sym_super] = ACTIONS(2092), + [sym_crate] = ACTIONS(2092), + [sym_metavariable] = ACTIONS(2090), + [sym__raw_string_literal_start] = ACTIONS(2090), + [sym_float_literal] = ACTIONS(2090), }, [STATE(586)] = { [sym_line_comment] = STATE(586), [sym_block_comment] = STATE(586), - [ts_builtin_sym_end] = ACTIONS(2298), - [sym_identifier] = ACTIONS(2300), - [anon_sym_SEMI] = ACTIONS(2298), - [anon_sym_macro_rules_BANG] = ACTIONS(2298), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_LBRACK] = ACTIONS(2298), - [anon_sym_LBRACE] = ACTIONS(2298), - [anon_sym_RBRACE] = ACTIONS(2298), - [anon_sym_STAR] = ACTIONS(2298), - [anon_sym_u8] = ACTIONS(2300), - [anon_sym_i8] = ACTIONS(2300), - [anon_sym_u16] = ACTIONS(2300), - [anon_sym_i16] = ACTIONS(2300), - [anon_sym_u32] = ACTIONS(2300), - [anon_sym_i32] = ACTIONS(2300), - [anon_sym_u64] = ACTIONS(2300), - [anon_sym_i64] = ACTIONS(2300), - [anon_sym_u128] = ACTIONS(2300), - [anon_sym_i128] = ACTIONS(2300), - [anon_sym_isize] = ACTIONS(2300), - [anon_sym_usize] = ACTIONS(2300), - [anon_sym_f32] = ACTIONS(2300), - [anon_sym_f64] = ACTIONS(2300), - [anon_sym_bool] = ACTIONS(2300), - [anon_sym_str] = ACTIONS(2300), - [anon_sym_char] = ACTIONS(2300), - [anon_sym_DASH] = ACTIONS(2298), - [anon_sym_BANG] = ACTIONS(2298), - [anon_sym_AMP] = ACTIONS(2298), - [anon_sym_PIPE] = ACTIONS(2298), - [anon_sym_LT] = ACTIONS(2298), - [anon_sym_DOT_DOT] = ACTIONS(2298), - [anon_sym_COLON_COLON] = ACTIONS(2298), - [anon_sym_POUND] = ACTIONS(2298), - [anon_sym_SQUOTE] = ACTIONS(2300), - [anon_sym_async] = ACTIONS(2300), - [anon_sym_break] = ACTIONS(2300), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_continue] = ACTIONS(2300), - [anon_sym_default] = ACTIONS(2300), - [anon_sym_enum] = ACTIONS(2300), - [anon_sym_fn] = ACTIONS(2300), - [anon_sym_for] = ACTIONS(2300), - [anon_sym_gen] = ACTIONS(2300), - [anon_sym_if] = ACTIONS(2300), - [anon_sym_impl] = ACTIONS(2300), - [anon_sym_let] = ACTIONS(2300), - [anon_sym_loop] = ACTIONS(2300), - [anon_sym_match] = ACTIONS(2300), - [anon_sym_mod] = ACTIONS(2300), - [anon_sym_pub] = ACTIONS(2300), - [anon_sym_return] = ACTIONS(2300), - [anon_sym_static] = ACTIONS(2300), - [anon_sym_struct] = ACTIONS(2300), - [anon_sym_trait] = ACTIONS(2300), - [anon_sym_type] = ACTIONS(2300), - [anon_sym_union] = ACTIONS(2300), - [anon_sym_unsafe] = ACTIONS(2300), - [anon_sym_use] = ACTIONS(2300), - [anon_sym_while] = ACTIONS(2300), - [anon_sym_extern] = ACTIONS(2300), - [anon_sym_yield] = ACTIONS(2300), - [anon_sym_move] = ACTIONS(2300), - [anon_sym_try] = ACTIONS(2300), - [sym_integer_literal] = ACTIONS(2298), - [aux_sym_string_literal_token1] = ACTIONS(2298), - [sym_char_literal] = ACTIONS(2298), - [anon_sym_true] = ACTIONS(2300), - [anon_sym_false] = ACTIONS(2300), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2300), - [sym_super] = ACTIONS(2300), - [sym_crate] = ACTIONS(2300), - [sym_metavariable] = ACTIONS(2298), - [sym__raw_string_literal_start] = ACTIONS(2298), - [sym_float_literal] = ACTIONS(2298), + [ts_builtin_sym_end] = ACTIONS(2094), + [sym_identifier] = ACTIONS(2096), + [anon_sym_SEMI] = ACTIONS(2094), + [anon_sym_macro_rules_BANG] = ACTIONS(2094), + [anon_sym_LPAREN] = ACTIONS(2094), + [anon_sym_LBRACK] = ACTIONS(2094), + [anon_sym_LBRACE] = ACTIONS(2094), + [anon_sym_RBRACE] = ACTIONS(2094), + [anon_sym_STAR] = ACTIONS(2094), + [anon_sym_u8] = ACTIONS(2096), + [anon_sym_i8] = ACTIONS(2096), + [anon_sym_u16] = ACTIONS(2096), + [anon_sym_i16] = ACTIONS(2096), + [anon_sym_u32] = ACTIONS(2096), + [anon_sym_i32] = ACTIONS(2096), + [anon_sym_u64] = ACTIONS(2096), + [anon_sym_i64] = ACTIONS(2096), + [anon_sym_u128] = ACTIONS(2096), + [anon_sym_i128] = ACTIONS(2096), + [anon_sym_isize] = ACTIONS(2096), + [anon_sym_usize] = ACTIONS(2096), + [anon_sym_f32] = ACTIONS(2096), + [anon_sym_f64] = ACTIONS(2096), + [anon_sym_bool] = ACTIONS(2096), + [anon_sym_str] = ACTIONS(2096), + [anon_sym_char] = ACTIONS(2096), + [anon_sym_DASH] = ACTIONS(2094), + [anon_sym_BANG] = ACTIONS(2094), + [anon_sym_AMP] = ACTIONS(2094), + [anon_sym_PIPE] = ACTIONS(2094), + [anon_sym_LT] = ACTIONS(2094), + [anon_sym_DOT_DOT] = ACTIONS(2094), + [anon_sym_COLON_COLON] = ACTIONS(2094), + [anon_sym_POUND] = ACTIONS(2094), + [anon_sym_SQUOTE] = ACTIONS(2096), + [anon_sym_async] = ACTIONS(2096), + [anon_sym_break] = ACTIONS(2096), + [anon_sym_const] = ACTIONS(2096), + [anon_sym_continue] = ACTIONS(2096), + [anon_sym_default] = ACTIONS(2096), + [anon_sym_enum] = ACTIONS(2096), + [anon_sym_fn] = ACTIONS(2096), + [anon_sym_for] = ACTIONS(2096), + [anon_sym_gen] = ACTIONS(2096), + [anon_sym_if] = ACTIONS(2096), + [anon_sym_impl] = ACTIONS(2096), + [anon_sym_let] = ACTIONS(2096), + [anon_sym_loop] = ACTIONS(2096), + [anon_sym_match] = ACTIONS(2096), + [anon_sym_mod] = ACTIONS(2096), + [anon_sym_pub] = ACTIONS(2096), + [anon_sym_return] = ACTIONS(2096), + [anon_sym_static] = ACTIONS(2096), + [anon_sym_struct] = ACTIONS(2096), + [anon_sym_trait] = ACTIONS(2096), + [anon_sym_type] = ACTIONS(2096), + [anon_sym_union] = ACTIONS(2096), + [anon_sym_unsafe] = ACTIONS(2096), + [anon_sym_use] = ACTIONS(2096), + [anon_sym_while] = ACTIONS(2096), + [anon_sym_extern] = ACTIONS(2096), + [anon_sym_yield] = ACTIONS(2096), + [anon_sym_move] = ACTIONS(2096), + [anon_sym_try] = ACTIONS(2096), + [sym_integer_literal] = ACTIONS(2094), + [aux_sym_string_literal_token1] = ACTIONS(2094), + [sym_char_literal] = ACTIONS(2094), + [anon_sym_true] = ACTIONS(2096), + [anon_sym_false] = ACTIONS(2096), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2096), + [sym_super] = ACTIONS(2096), + [sym_crate] = ACTIONS(2096), + [sym_metavariable] = ACTIONS(2094), + [sym__raw_string_literal_start] = ACTIONS(2094), + [sym_float_literal] = ACTIONS(2094), }, [STATE(587)] = { [sym_line_comment] = STATE(587), [sym_block_comment] = STATE(587), - [ts_builtin_sym_end] = ACTIONS(2302), - [sym_identifier] = ACTIONS(2304), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_macro_rules_BANG] = ACTIONS(2302), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_LBRACK] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_RBRACE] = ACTIONS(2302), - [anon_sym_STAR] = ACTIONS(2302), - [anon_sym_u8] = ACTIONS(2304), - [anon_sym_i8] = ACTIONS(2304), - [anon_sym_u16] = ACTIONS(2304), - [anon_sym_i16] = ACTIONS(2304), - [anon_sym_u32] = ACTIONS(2304), - [anon_sym_i32] = ACTIONS(2304), - [anon_sym_u64] = ACTIONS(2304), - [anon_sym_i64] = ACTIONS(2304), - [anon_sym_u128] = ACTIONS(2304), - [anon_sym_i128] = ACTIONS(2304), - [anon_sym_isize] = ACTIONS(2304), - [anon_sym_usize] = ACTIONS(2304), - [anon_sym_f32] = ACTIONS(2304), - [anon_sym_f64] = ACTIONS(2304), - [anon_sym_bool] = ACTIONS(2304), - [anon_sym_str] = ACTIONS(2304), - [anon_sym_char] = ACTIONS(2304), - [anon_sym_DASH] = ACTIONS(2302), - [anon_sym_BANG] = ACTIONS(2302), - [anon_sym_AMP] = ACTIONS(2302), - [anon_sym_PIPE] = ACTIONS(2302), - [anon_sym_LT] = ACTIONS(2302), - [anon_sym_DOT_DOT] = ACTIONS(2302), - [anon_sym_COLON_COLON] = ACTIONS(2302), - [anon_sym_POUND] = ACTIONS(2302), - [anon_sym_SQUOTE] = ACTIONS(2304), - [anon_sym_async] = ACTIONS(2304), - [anon_sym_break] = ACTIONS(2304), - [anon_sym_const] = ACTIONS(2304), - [anon_sym_continue] = ACTIONS(2304), - [anon_sym_default] = ACTIONS(2304), - [anon_sym_enum] = ACTIONS(2304), - [anon_sym_fn] = ACTIONS(2304), - [anon_sym_for] = ACTIONS(2304), - [anon_sym_gen] = ACTIONS(2304), - [anon_sym_if] = ACTIONS(2304), - [anon_sym_impl] = ACTIONS(2304), - [anon_sym_let] = ACTIONS(2304), - [anon_sym_loop] = ACTIONS(2304), - [anon_sym_match] = ACTIONS(2304), - [anon_sym_mod] = ACTIONS(2304), - [anon_sym_pub] = ACTIONS(2304), - [anon_sym_return] = ACTIONS(2304), - [anon_sym_static] = ACTIONS(2304), - [anon_sym_struct] = ACTIONS(2304), - [anon_sym_trait] = ACTIONS(2304), - [anon_sym_type] = ACTIONS(2304), - [anon_sym_union] = ACTIONS(2304), - [anon_sym_unsafe] = ACTIONS(2304), - [anon_sym_use] = ACTIONS(2304), - [anon_sym_while] = ACTIONS(2304), - [anon_sym_extern] = ACTIONS(2304), - [anon_sym_yield] = ACTIONS(2304), - [anon_sym_move] = ACTIONS(2304), - [anon_sym_try] = ACTIONS(2304), - [sym_integer_literal] = ACTIONS(2302), - [aux_sym_string_literal_token1] = ACTIONS(2302), - [sym_char_literal] = ACTIONS(2302), - [anon_sym_true] = ACTIONS(2304), - [anon_sym_false] = ACTIONS(2304), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2304), - [sym_super] = ACTIONS(2304), - [sym_crate] = ACTIONS(2304), - [sym_metavariable] = ACTIONS(2302), - [sym__raw_string_literal_start] = ACTIONS(2302), - [sym_float_literal] = ACTIONS(2302), + [ts_builtin_sym_end] = ACTIONS(2098), + [sym_identifier] = ACTIONS(2100), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_macro_rules_BANG] = ACTIONS(2098), + [anon_sym_LPAREN] = ACTIONS(2098), + [anon_sym_LBRACK] = ACTIONS(2098), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2098), + [anon_sym_STAR] = ACTIONS(2098), + [anon_sym_u8] = ACTIONS(2100), + [anon_sym_i8] = ACTIONS(2100), + [anon_sym_u16] = ACTIONS(2100), + [anon_sym_i16] = ACTIONS(2100), + [anon_sym_u32] = ACTIONS(2100), + [anon_sym_i32] = ACTIONS(2100), + [anon_sym_u64] = ACTIONS(2100), + [anon_sym_i64] = ACTIONS(2100), + [anon_sym_u128] = ACTIONS(2100), + [anon_sym_i128] = ACTIONS(2100), + [anon_sym_isize] = ACTIONS(2100), + [anon_sym_usize] = ACTIONS(2100), + [anon_sym_f32] = ACTIONS(2100), + [anon_sym_f64] = ACTIONS(2100), + [anon_sym_bool] = ACTIONS(2100), + [anon_sym_str] = ACTIONS(2100), + [anon_sym_char] = ACTIONS(2100), + [anon_sym_DASH] = ACTIONS(2098), + [anon_sym_BANG] = ACTIONS(2098), + [anon_sym_AMP] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_LT] = ACTIONS(2098), + [anon_sym_DOT_DOT] = ACTIONS(2098), + [anon_sym_COLON_COLON] = ACTIONS(2098), + [anon_sym_POUND] = ACTIONS(2098), + [anon_sym_SQUOTE] = ACTIONS(2100), + [anon_sym_async] = ACTIONS(2100), + [anon_sym_break] = ACTIONS(2100), + [anon_sym_const] = ACTIONS(2100), + [anon_sym_continue] = ACTIONS(2100), + [anon_sym_default] = ACTIONS(2100), + [anon_sym_enum] = ACTIONS(2100), + [anon_sym_fn] = ACTIONS(2100), + [anon_sym_for] = ACTIONS(2100), + [anon_sym_gen] = ACTIONS(2100), + [anon_sym_if] = ACTIONS(2100), + [anon_sym_impl] = ACTIONS(2100), + [anon_sym_let] = ACTIONS(2100), + [anon_sym_loop] = ACTIONS(2100), + [anon_sym_match] = ACTIONS(2100), + [anon_sym_mod] = ACTIONS(2100), + [anon_sym_pub] = ACTIONS(2100), + [anon_sym_return] = ACTIONS(2100), + [anon_sym_static] = ACTIONS(2100), + [anon_sym_struct] = ACTIONS(2100), + [anon_sym_trait] = ACTIONS(2100), + [anon_sym_type] = ACTIONS(2100), + [anon_sym_union] = ACTIONS(2100), + [anon_sym_unsafe] = ACTIONS(2100), + [anon_sym_use] = ACTIONS(2100), + [anon_sym_while] = ACTIONS(2100), + [anon_sym_extern] = ACTIONS(2100), + [anon_sym_yield] = ACTIONS(2100), + [anon_sym_move] = ACTIONS(2100), + [anon_sym_try] = ACTIONS(2100), + [sym_integer_literal] = ACTIONS(2098), + [aux_sym_string_literal_token1] = ACTIONS(2098), + [sym_char_literal] = ACTIONS(2098), + [anon_sym_true] = ACTIONS(2100), + [anon_sym_false] = ACTIONS(2100), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2100), + [sym_super] = ACTIONS(2100), + [sym_crate] = ACTIONS(2100), + [sym_metavariable] = ACTIONS(2098), + [sym__raw_string_literal_start] = ACTIONS(2098), + [sym_float_literal] = ACTIONS(2098), }, [STATE(588)] = { [sym_line_comment] = STATE(588), [sym_block_comment] = STATE(588), - [ts_builtin_sym_end] = ACTIONS(2306), - [sym_identifier] = ACTIONS(2308), - [anon_sym_SEMI] = ACTIONS(2306), - [anon_sym_macro_rules_BANG] = ACTIONS(2306), - [anon_sym_LPAREN] = ACTIONS(2306), - [anon_sym_LBRACK] = ACTIONS(2306), - [anon_sym_LBRACE] = ACTIONS(2306), - [anon_sym_RBRACE] = ACTIONS(2306), - [anon_sym_STAR] = ACTIONS(2306), - [anon_sym_u8] = ACTIONS(2308), - [anon_sym_i8] = ACTIONS(2308), - [anon_sym_u16] = ACTIONS(2308), - [anon_sym_i16] = ACTIONS(2308), - [anon_sym_u32] = ACTIONS(2308), - [anon_sym_i32] = ACTIONS(2308), - [anon_sym_u64] = ACTIONS(2308), - [anon_sym_i64] = ACTIONS(2308), - [anon_sym_u128] = ACTIONS(2308), - [anon_sym_i128] = ACTIONS(2308), - [anon_sym_isize] = ACTIONS(2308), - [anon_sym_usize] = ACTIONS(2308), - [anon_sym_f32] = ACTIONS(2308), - [anon_sym_f64] = ACTIONS(2308), - [anon_sym_bool] = ACTIONS(2308), - [anon_sym_str] = ACTIONS(2308), - [anon_sym_char] = ACTIONS(2308), - [anon_sym_DASH] = ACTIONS(2306), - [anon_sym_BANG] = ACTIONS(2306), - [anon_sym_AMP] = ACTIONS(2306), - [anon_sym_PIPE] = ACTIONS(2306), - [anon_sym_LT] = ACTIONS(2306), - [anon_sym_DOT_DOT] = ACTIONS(2306), - [anon_sym_COLON_COLON] = ACTIONS(2306), - [anon_sym_POUND] = ACTIONS(2306), - [anon_sym_SQUOTE] = ACTIONS(2308), - [anon_sym_async] = ACTIONS(2308), - [anon_sym_break] = ACTIONS(2308), - [anon_sym_const] = ACTIONS(2308), - [anon_sym_continue] = ACTIONS(2308), - [anon_sym_default] = ACTIONS(2308), - [anon_sym_enum] = ACTIONS(2308), - [anon_sym_fn] = ACTIONS(2308), - [anon_sym_for] = ACTIONS(2308), - [anon_sym_gen] = ACTIONS(2308), - [anon_sym_if] = ACTIONS(2308), - [anon_sym_impl] = ACTIONS(2308), - [anon_sym_let] = ACTIONS(2308), - [anon_sym_loop] = ACTIONS(2308), - [anon_sym_match] = ACTIONS(2308), - [anon_sym_mod] = ACTIONS(2308), - [anon_sym_pub] = ACTIONS(2308), - [anon_sym_return] = ACTIONS(2308), - [anon_sym_static] = ACTIONS(2308), - [anon_sym_struct] = ACTIONS(2308), - [anon_sym_trait] = ACTIONS(2308), - [anon_sym_type] = ACTIONS(2308), - [anon_sym_union] = ACTIONS(2308), - [anon_sym_unsafe] = ACTIONS(2308), - [anon_sym_use] = ACTIONS(2308), - [anon_sym_while] = ACTIONS(2308), - [anon_sym_extern] = ACTIONS(2308), - [anon_sym_yield] = ACTIONS(2308), - [anon_sym_move] = ACTIONS(2308), - [anon_sym_try] = ACTIONS(2308), - [sym_integer_literal] = ACTIONS(2306), - [aux_sym_string_literal_token1] = ACTIONS(2306), - [sym_char_literal] = ACTIONS(2306), - [anon_sym_true] = ACTIONS(2308), - [anon_sym_false] = ACTIONS(2308), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2308), - [sym_super] = ACTIONS(2308), - [sym_crate] = ACTIONS(2308), - [sym_metavariable] = ACTIONS(2306), - [sym__raw_string_literal_start] = ACTIONS(2306), - [sym_float_literal] = ACTIONS(2306), + [ts_builtin_sym_end] = ACTIONS(2102), + [sym_identifier] = ACTIONS(2104), + [anon_sym_SEMI] = ACTIONS(2102), + [anon_sym_macro_rules_BANG] = ACTIONS(2102), + [anon_sym_LPAREN] = ACTIONS(2102), + [anon_sym_LBRACK] = ACTIONS(2102), + [anon_sym_LBRACE] = ACTIONS(2102), + [anon_sym_RBRACE] = ACTIONS(2102), + [anon_sym_STAR] = ACTIONS(2102), + [anon_sym_u8] = ACTIONS(2104), + [anon_sym_i8] = ACTIONS(2104), + [anon_sym_u16] = ACTIONS(2104), + [anon_sym_i16] = ACTIONS(2104), + [anon_sym_u32] = ACTIONS(2104), + [anon_sym_i32] = ACTIONS(2104), + [anon_sym_u64] = ACTIONS(2104), + [anon_sym_i64] = ACTIONS(2104), + [anon_sym_u128] = ACTIONS(2104), + [anon_sym_i128] = ACTIONS(2104), + [anon_sym_isize] = ACTIONS(2104), + [anon_sym_usize] = ACTIONS(2104), + [anon_sym_f32] = ACTIONS(2104), + [anon_sym_f64] = ACTIONS(2104), + [anon_sym_bool] = ACTIONS(2104), + [anon_sym_str] = ACTIONS(2104), + [anon_sym_char] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2102), + [anon_sym_BANG] = ACTIONS(2102), + [anon_sym_AMP] = ACTIONS(2102), + [anon_sym_PIPE] = ACTIONS(2102), + [anon_sym_LT] = ACTIONS(2102), + [anon_sym_DOT_DOT] = ACTIONS(2102), + [anon_sym_COLON_COLON] = ACTIONS(2102), + [anon_sym_POUND] = ACTIONS(2102), + [anon_sym_SQUOTE] = ACTIONS(2104), + [anon_sym_async] = ACTIONS(2104), + [anon_sym_break] = ACTIONS(2104), + [anon_sym_const] = ACTIONS(2104), + [anon_sym_continue] = ACTIONS(2104), + [anon_sym_default] = ACTIONS(2104), + [anon_sym_enum] = ACTIONS(2104), + [anon_sym_fn] = ACTIONS(2104), + [anon_sym_for] = ACTIONS(2104), + [anon_sym_gen] = ACTIONS(2104), + [anon_sym_if] = ACTIONS(2104), + [anon_sym_impl] = ACTIONS(2104), + [anon_sym_let] = ACTIONS(2104), + [anon_sym_loop] = ACTIONS(2104), + [anon_sym_match] = ACTIONS(2104), + [anon_sym_mod] = ACTIONS(2104), + [anon_sym_pub] = ACTIONS(2104), + [anon_sym_return] = ACTIONS(2104), + [anon_sym_static] = ACTIONS(2104), + [anon_sym_struct] = ACTIONS(2104), + [anon_sym_trait] = ACTIONS(2104), + [anon_sym_type] = ACTIONS(2104), + [anon_sym_union] = ACTIONS(2104), + [anon_sym_unsafe] = ACTIONS(2104), + [anon_sym_use] = ACTIONS(2104), + [anon_sym_while] = ACTIONS(2104), + [anon_sym_extern] = ACTIONS(2104), + [anon_sym_yield] = ACTIONS(2104), + [anon_sym_move] = ACTIONS(2104), + [anon_sym_try] = ACTIONS(2104), + [sym_integer_literal] = ACTIONS(2102), + [aux_sym_string_literal_token1] = ACTIONS(2102), + [sym_char_literal] = ACTIONS(2102), + [anon_sym_true] = ACTIONS(2104), + [anon_sym_false] = ACTIONS(2104), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2104), + [sym_super] = ACTIONS(2104), + [sym_crate] = ACTIONS(2104), + [sym_metavariable] = ACTIONS(2102), + [sym__raw_string_literal_start] = ACTIONS(2102), + [sym_float_literal] = ACTIONS(2102), }, [STATE(589)] = { [sym_line_comment] = STATE(589), [sym_block_comment] = STATE(589), - [ts_builtin_sym_end] = ACTIONS(2310), - [sym_identifier] = ACTIONS(2312), - [anon_sym_SEMI] = ACTIONS(2310), - [anon_sym_macro_rules_BANG] = ACTIONS(2310), - [anon_sym_LPAREN] = ACTIONS(2310), - [anon_sym_LBRACK] = ACTIONS(2310), - [anon_sym_LBRACE] = ACTIONS(2310), - [anon_sym_RBRACE] = ACTIONS(2310), - [anon_sym_STAR] = ACTIONS(2310), - [anon_sym_u8] = ACTIONS(2312), - [anon_sym_i8] = ACTIONS(2312), - [anon_sym_u16] = ACTIONS(2312), - [anon_sym_i16] = ACTIONS(2312), - [anon_sym_u32] = ACTIONS(2312), - [anon_sym_i32] = ACTIONS(2312), - [anon_sym_u64] = ACTIONS(2312), - [anon_sym_i64] = ACTIONS(2312), - [anon_sym_u128] = ACTIONS(2312), - [anon_sym_i128] = ACTIONS(2312), - [anon_sym_isize] = ACTIONS(2312), - [anon_sym_usize] = ACTIONS(2312), - [anon_sym_f32] = ACTIONS(2312), - [anon_sym_f64] = ACTIONS(2312), - [anon_sym_bool] = ACTIONS(2312), - [anon_sym_str] = ACTIONS(2312), - [anon_sym_char] = ACTIONS(2312), - [anon_sym_DASH] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2310), - [anon_sym_AMP] = ACTIONS(2310), - [anon_sym_PIPE] = ACTIONS(2310), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_DOT_DOT] = ACTIONS(2310), - [anon_sym_COLON_COLON] = ACTIONS(2310), - [anon_sym_POUND] = ACTIONS(2310), - [anon_sym_SQUOTE] = ACTIONS(2312), - [anon_sym_async] = ACTIONS(2312), - [anon_sym_break] = ACTIONS(2312), - [anon_sym_const] = ACTIONS(2312), - [anon_sym_continue] = ACTIONS(2312), - [anon_sym_default] = ACTIONS(2312), - [anon_sym_enum] = ACTIONS(2312), - [anon_sym_fn] = ACTIONS(2312), - [anon_sym_for] = ACTIONS(2312), - [anon_sym_gen] = ACTIONS(2312), - [anon_sym_if] = ACTIONS(2312), - [anon_sym_impl] = ACTIONS(2312), - [anon_sym_let] = ACTIONS(2312), - [anon_sym_loop] = ACTIONS(2312), - [anon_sym_match] = ACTIONS(2312), - [anon_sym_mod] = ACTIONS(2312), - [anon_sym_pub] = ACTIONS(2312), - [anon_sym_return] = ACTIONS(2312), - [anon_sym_static] = ACTIONS(2312), - [anon_sym_struct] = ACTIONS(2312), - [anon_sym_trait] = ACTIONS(2312), - [anon_sym_type] = ACTIONS(2312), - [anon_sym_union] = ACTIONS(2312), - [anon_sym_unsafe] = ACTIONS(2312), - [anon_sym_use] = ACTIONS(2312), - [anon_sym_while] = ACTIONS(2312), - [anon_sym_extern] = ACTIONS(2312), - [anon_sym_yield] = ACTIONS(2312), - [anon_sym_move] = ACTIONS(2312), - [anon_sym_try] = ACTIONS(2312), - [sym_integer_literal] = ACTIONS(2310), - [aux_sym_string_literal_token1] = ACTIONS(2310), - [sym_char_literal] = ACTIONS(2310), - [anon_sym_true] = ACTIONS(2312), - [anon_sym_false] = ACTIONS(2312), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2312), - [sym_super] = ACTIONS(2312), - [sym_crate] = ACTIONS(2312), - [sym_metavariable] = ACTIONS(2310), - [sym__raw_string_literal_start] = ACTIONS(2310), - [sym_float_literal] = ACTIONS(2310), + [ts_builtin_sym_end] = ACTIONS(2106), + [sym_identifier] = ACTIONS(2108), + [anon_sym_SEMI] = ACTIONS(2106), + [anon_sym_macro_rules_BANG] = ACTIONS(2106), + [anon_sym_LPAREN] = ACTIONS(2106), + [anon_sym_LBRACK] = ACTIONS(2106), + [anon_sym_LBRACE] = ACTIONS(2106), + [anon_sym_RBRACE] = ACTIONS(2106), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym_u8] = ACTIONS(2108), + [anon_sym_i8] = ACTIONS(2108), + [anon_sym_u16] = ACTIONS(2108), + [anon_sym_i16] = ACTIONS(2108), + [anon_sym_u32] = ACTIONS(2108), + [anon_sym_i32] = ACTIONS(2108), + [anon_sym_u64] = ACTIONS(2108), + [anon_sym_i64] = ACTIONS(2108), + [anon_sym_u128] = ACTIONS(2108), + [anon_sym_i128] = ACTIONS(2108), + [anon_sym_isize] = ACTIONS(2108), + [anon_sym_usize] = ACTIONS(2108), + [anon_sym_f32] = ACTIONS(2108), + [anon_sym_f64] = ACTIONS(2108), + [anon_sym_bool] = ACTIONS(2108), + [anon_sym_str] = ACTIONS(2108), + [anon_sym_char] = ACTIONS(2108), + [anon_sym_DASH] = ACTIONS(2106), + [anon_sym_BANG] = ACTIONS(2106), + [anon_sym_AMP] = ACTIONS(2106), + [anon_sym_PIPE] = ACTIONS(2106), + [anon_sym_LT] = ACTIONS(2106), + [anon_sym_DOT_DOT] = ACTIONS(2106), + [anon_sym_COLON_COLON] = ACTIONS(2106), + [anon_sym_POUND] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_async] = ACTIONS(2108), + [anon_sym_break] = ACTIONS(2108), + [anon_sym_const] = ACTIONS(2108), + [anon_sym_continue] = ACTIONS(2108), + [anon_sym_default] = ACTIONS(2108), + [anon_sym_enum] = ACTIONS(2108), + [anon_sym_fn] = ACTIONS(2108), + [anon_sym_for] = ACTIONS(2108), + [anon_sym_gen] = ACTIONS(2108), + [anon_sym_if] = ACTIONS(2108), + [anon_sym_impl] = ACTIONS(2108), + [anon_sym_let] = ACTIONS(2108), + [anon_sym_loop] = ACTIONS(2108), + [anon_sym_match] = ACTIONS(2108), + [anon_sym_mod] = ACTIONS(2108), + [anon_sym_pub] = ACTIONS(2108), + [anon_sym_return] = ACTIONS(2108), + [anon_sym_static] = ACTIONS(2108), + [anon_sym_struct] = ACTIONS(2108), + [anon_sym_trait] = ACTIONS(2108), + [anon_sym_type] = ACTIONS(2108), + [anon_sym_union] = ACTIONS(2108), + [anon_sym_unsafe] = ACTIONS(2108), + [anon_sym_use] = ACTIONS(2108), + [anon_sym_while] = ACTIONS(2108), + [anon_sym_extern] = ACTIONS(2108), + [anon_sym_yield] = ACTIONS(2108), + [anon_sym_move] = ACTIONS(2108), + [anon_sym_try] = ACTIONS(2108), + [sym_integer_literal] = ACTIONS(2106), + [aux_sym_string_literal_token1] = ACTIONS(2106), + [sym_char_literal] = ACTIONS(2106), + [anon_sym_true] = ACTIONS(2108), + [anon_sym_false] = ACTIONS(2108), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2108), + [sym_super] = ACTIONS(2108), + [sym_crate] = ACTIONS(2108), + [sym_metavariable] = ACTIONS(2106), + [sym__raw_string_literal_start] = ACTIONS(2106), + [sym_float_literal] = ACTIONS(2106), }, [STATE(590)] = { [sym_line_comment] = STATE(590), [sym_block_comment] = STATE(590), - [ts_builtin_sym_end] = ACTIONS(2314), - [sym_identifier] = ACTIONS(2316), - [anon_sym_SEMI] = ACTIONS(2314), - [anon_sym_macro_rules_BANG] = ACTIONS(2314), - [anon_sym_LPAREN] = ACTIONS(2314), - [anon_sym_LBRACK] = ACTIONS(2314), - [anon_sym_LBRACE] = ACTIONS(2314), - [anon_sym_RBRACE] = ACTIONS(2314), - [anon_sym_STAR] = ACTIONS(2314), - [anon_sym_u8] = ACTIONS(2316), - [anon_sym_i8] = ACTIONS(2316), - [anon_sym_u16] = ACTIONS(2316), - [anon_sym_i16] = ACTIONS(2316), - [anon_sym_u32] = ACTIONS(2316), - [anon_sym_i32] = ACTIONS(2316), - [anon_sym_u64] = ACTIONS(2316), - [anon_sym_i64] = ACTIONS(2316), - [anon_sym_u128] = ACTIONS(2316), - [anon_sym_i128] = ACTIONS(2316), - [anon_sym_isize] = ACTIONS(2316), - [anon_sym_usize] = ACTIONS(2316), - [anon_sym_f32] = ACTIONS(2316), - [anon_sym_f64] = ACTIONS(2316), - [anon_sym_bool] = ACTIONS(2316), - [anon_sym_str] = ACTIONS(2316), - [anon_sym_char] = ACTIONS(2316), - [anon_sym_DASH] = ACTIONS(2314), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_AMP] = ACTIONS(2314), - [anon_sym_PIPE] = ACTIONS(2314), - [anon_sym_LT] = ACTIONS(2314), - [anon_sym_DOT_DOT] = ACTIONS(2314), - [anon_sym_COLON_COLON] = ACTIONS(2314), - [anon_sym_POUND] = ACTIONS(2314), - [anon_sym_SQUOTE] = ACTIONS(2316), - [anon_sym_async] = ACTIONS(2316), - [anon_sym_break] = ACTIONS(2316), - [anon_sym_const] = ACTIONS(2316), - [anon_sym_continue] = ACTIONS(2316), - [anon_sym_default] = ACTIONS(2316), - [anon_sym_enum] = ACTIONS(2316), - [anon_sym_fn] = ACTIONS(2316), - [anon_sym_for] = ACTIONS(2316), - [anon_sym_gen] = ACTIONS(2316), - [anon_sym_if] = ACTIONS(2316), - [anon_sym_impl] = ACTIONS(2316), - [anon_sym_let] = ACTIONS(2316), - [anon_sym_loop] = ACTIONS(2316), - [anon_sym_match] = ACTIONS(2316), - [anon_sym_mod] = ACTIONS(2316), - [anon_sym_pub] = ACTIONS(2316), - [anon_sym_return] = ACTIONS(2316), - [anon_sym_static] = ACTIONS(2316), - [anon_sym_struct] = ACTIONS(2316), - [anon_sym_trait] = ACTIONS(2316), - [anon_sym_type] = ACTIONS(2316), - [anon_sym_union] = ACTIONS(2316), - [anon_sym_unsafe] = ACTIONS(2316), - [anon_sym_use] = ACTIONS(2316), - [anon_sym_while] = ACTIONS(2316), - [anon_sym_extern] = ACTIONS(2316), - [anon_sym_yield] = ACTIONS(2316), - [anon_sym_move] = ACTIONS(2316), - [anon_sym_try] = ACTIONS(2316), - [sym_integer_literal] = ACTIONS(2314), - [aux_sym_string_literal_token1] = ACTIONS(2314), - [sym_char_literal] = ACTIONS(2314), - [anon_sym_true] = ACTIONS(2316), - [anon_sym_false] = ACTIONS(2316), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2316), - [sym_super] = ACTIONS(2316), - [sym_crate] = ACTIONS(2316), - [sym_metavariable] = ACTIONS(2314), - [sym__raw_string_literal_start] = ACTIONS(2314), - [sym_float_literal] = ACTIONS(2314), + [ts_builtin_sym_end] = ACTIONS(2110), + [sym_identifier] = ACTIONS(2112), + [anon_sym_SEMI] = ACTIONS(2110), + [anon_sym_macro_rules_BANG] = ACTIONS(2110), + [anon_sym_LPAREN] = ACTIONS(2110), + [anon_sym_LBRACK] = ACTIONS(2110), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_RBRACE] = ACTIONS(2110), + [anon_sym_STAR] = ACTIONS(2110), + [anon_sym_u8] = ACTIONS(2112), + [anon_sym_i8] = ACTIONS(2112), + [anon_sym_u16] = ACTIONS(2112), + [anon_sym_i16] = ACTIONS(2112), + [anon_sym_u32] = ACTIONS(2112), + [anon_sym_i32] = ACTIONS(2112), + [anon_sym_u64] = ACTIONS(2112), + [anon_sym_i64] = ACTIONS(2112), + [anon_sym_u128] = ACTIONS(2112), + [anon_sym_i128] = ACTIONS(2112), + [anon_sym_isize] = ACTIONS(2112), + [anon_sym_usize] = ACTIONS(2112), + [anon_sym_f32] = ACTIONS(2112), + [anon_sym_f64] = ACTIONS(2112), + [anon_sym_bool] = ACTIONS(2112), + [anon_sym_str] = ACTIONS(2112), + [anon_sym_char] = ACTIONS(2112), + [anon_sym_DASH] = ACTIONS(2110), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_AMP] = ACTIONS(2110), + [anon_sym_PIPE] = ACTIONS(2110), + [anon_sym_LT] = ACTIONS(2110), + [anon_sym_DOT_DOT] = ACTIONS(2110), + [anon_sym_COLON_COLON] = ACTIONS(2110), + [anon_sym_POUND] = ACTIONS(2110), + [anon_sym_SQUOTE] = ACTIONS(2112), + [anon_sym_async] = ACTIONS(2112), + [anon_sym_break] = ACTIONS(2112), + [anon_sym_const] = ACTIONS(2112), + [anon_sym_continue] = ACTIONS(2112), + [anon_sym_default] = ACTIONS(2112), + [anon_sym_enum] = ACTIONS(2112), + [anon_sym_fn] = ACTIONS(2112), + [anon_sym_for] = ACTIONS(2112), + [anon_sym_gen] = ACTIONS(2112), + [anon_sym_if] = ACTIONS(2112), + [anon_sym_impl] = ACTIONS(2112), + [anon_sym_let] = ACTIONS(2112), + [anon_sym_loop] = ACTIONS(2112), + [anon_sym_match] = ACTIONS(2112), + [anon_sym_mod] = ACTIONS(2112), + [anon_sym_pub] = ACTIONS(2112), + [anon_sym_return] = ACTIONS(2112), + [anon_sym_static] = ACTIONS(2112), + [anon_sym_struct] = ACTIONS(2112), + [anon_sym_trait] = ACTIONS(2112), + [anon_sym_type] = ACTIONS(2112), + [anon_sym_union] = ACTIONS(2112), + [anon_sym_unsafe] = ACTIONS(2112), + [anon_sym_use] = ACTIONS(2112), + [anon_sym_while] = ACTIONS(2112), + [anon_sym_extern] = ACTIONS(2112), + [anon_sym_yield] = ACTIONS(2112), + [anon_sym_move] = ACTIONS(2112), + [anon_sym_try] = ACTIONS(2112), + [sym_integer_literal] = ACTIONS(2110), + [aux_sym_string_literal_token1] = ACTIONS(2110), + [sym_char_literal] = ACTIONS(2110), + [anon_sym_true] = ACTIONS(2112), + [anon_sym_false] = ACTIONS(2112), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2112), + [sym_super] = ACTIONS(2112), + [sym_crate] = ACTIONS(2112), + [sym_metavariable] = ACTIONS(2110), + [sym__raw_string_literal_start] = ACTIONS(2110), + [sym_float_literal] = ACTIONS(2110), }, [STATE(591)] = { [sym_line_comment] = STATE(591), [sym_block_comment] = STATE(591), - [ts_builtin_sym_end] = ACTIONS(2318), - [sym_identifier] = ACTIONS(2320), - [anon_sym_SEMI] = ACTIONS(2318), - [anon_sym_macro_rules_BANG] = ACTIONS(2318), - [anon_sym_LPAREN] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(2318), - [anon_sym_LBRACE] = ACTIONS(2318), - [anon_sym_RBRACE] = ACTIONS(2318), - [anon_sym_STAR] = ACTIONS(2318), - [anon_sym_u8] = ACTIONS(2320), - [anon_sym_i8] = ACTIONS(2320), - [anon_sym_u16] = ACTIONS(2320), - [anon_sym_i16] = ACTIONS(2320), - [anon_sym_u32] = ACTIONS(2320), - [anon_sym_i32] = ACTIONS(2320), - [anon_sym_u64] = ACTIONS(2320), - [anon_sym_i64] = ACTIONS(2320), - [anon_sym_u128] = ACTIONS(2320), - [anon_sym_i128] = ACTIONS(2320), - [anon_sym_isize] = ACTIONS(2320), - [anon_sym_usize] = ACTIONS(2320), - [anon_sym_f32] = ACTIONS(2320), - [anon_sym_f64] = ACTIONS(2320), - [anon_sym_bool] = ACTIONS(2320), - [anon_sym_str] = ACTIONS(2320), - [anon_sym_char] = ACTIONS(2320), - [anon_sym_DASH] = ACTIONS(2318), - [anon_sym_BANG] = ACTIONS(2318), - [anon_sym_AMP] = ACTIONS(2318), - [anon_sym_PIPE] = ACTIONS(2318), - [anon_sym_LT] = ACTIONS(2318), - [anon_sym_DOT_DOT] = ACTIONS(2318), - [anon_sym_COLON_COLON] = ACTIONS(2318), - [anon_sym_POUND] = ACTIONS(2318), - [anon_sym_SQUOTE] = ACTIONS(2320), - [anon_sym_async] = ACTIONS(2320), - [anon_sym_break] = ACTIONS(2320), - [anon_sym_const] = ACTIONS(2320), - [anon_sym_continue] = ACTIONS(2320), - [anon_sym_default] = ACTIONS(2320), - [anon_sym_enum] = ACTIONS(2320), - [anon_sym_fn] = ACTIONS(2320), - [anon_sym_for] = ACTIONS(2320), - [anon_sym_gen] = ACTIONS(2320), - [anon_sym_if] = ACTIONS(2320), - [anon_sym_impl] = ACTIONS(2320), - [anon_sym_let] = ACTIONS(2320), - [anon_sym_loop] = ACTIONS(2320), - [anon_sym_match] = ACTIONS(2320), - [anon_sym_mod] = ACTIONS(2320), - [anon_sym_pub] = ACTIONS(2320), - [anon_sym_return] = ACTIONS(2320), - [anon_sym_static] = ACTIONS(2320), - [anon_sym_struct] = ACTIONS(2320), - [anon_sym_trait] = ACTIONS(2320), - [anon_sym_type] = ACTIONS(2320), - [anon_sym_union] = ACTIONS(2320), - [anon_sym_unsafe] = ACTIONS(2320), - [anon_sym_use] = ACTIONS(2320), - [anon_sym_while] = ACTIONS(2320), - [anon_sym_extern] = ACTIONS(2320), - [anon_sym_yield] = ACTIONS(2320), - [anon_sym_move] = ACTIONS(2320), - [anon_sym_try] = ACTIONS(2320), - [sym_integer_literal] = ACTIONS(2318), - [aux_sym_string_literal_token1] = ACTIONS(2318), - [sym_char_literal] = ACTIONS(2318), - [anon_sym_true] = ACTIONS(2320), - [anon_sym_false] = ACTIONS(2320), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2320), - [sym_super] = ACTIONS(2320), - [sym_crate] = ACTIONS(2320), - [sym_metavariable] = ACTIONS(2318), - [sym__raw_string_literal_start] = ACTIONS(2318), - [sym_float_literal] = ACTIONS(2318), + [ts_builtin_sym_end] = ACTIONS(2114), + [sym_identifier] = ACTIONS(2116), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym_macro_rules_BANG] = ACTIONS(2114), + [anon_sym_LPAREN] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(2114), + [anon_sym_LBRACE] = ACTIONS(2114), + [anon_sym_RBRACE] = ACTIONS(2114), + [anon_sym_STAR] = ACTIONS(2114), + [anon_sym_u8] = ACTIONS(2116), + [anon_sym_i8] = ACTIONS(2116), + [anon_sym_u16] = ACTIONS(2116), + [anon_sym_i16] = ACTIONS(2116), + [anon_sym_u32] = ACTIONS(2116), + [anon_sym_i32] = ACTIONS(2116), + [anon_sym_u64] = ACTIONS(2116), + [anon_sym_i64] = ACTIONS(2116), + [anon_sym_u128] = ACTIONS(2116), + [anon_sym_i128] = ACTIONS(2116), + [anon_sym_isize] = ACTIONS(2116), + [anon_sym_usize] = ACTIONS(2116), + [anon_sym_f32] = ACTIONS(2116), + [anon_sym_f64] = ACTIONS(2116), + [anon_sym_bool] = ACTIONS(2116), + [anon_sym_str] = ACTIONS(2116), + [anon_sym_char] = ACTIONS(2116), + [anon_sym_DASH] = ACTIONS(2114), + [anon_sym_BANG] = ACTIONS(2114), + [anon_sym_AMP] = ACTIONS(2114), + [anon_sym_PIPE] = ACTIONS(2114), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_DOT_DOT] = ACTIONS(2114), + [anon_sym_COLON_COLON] = ACTIONS(2114), + [anon_sym_POUND] = ACTIONS(2114), + [anon_sym_SQUOTE] = ACTIONS(2116), + [anon_sym_async] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), + [anon_sym_fn] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_gen] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_impl] = ACTIONS(2116), + [anon_sym_let] = ACTIONS(2116), + [anon_sym_loop] = ACTIONS(2116), + [anon_sym_match] = ACTIONS(2116), + [anon_sym_mod] = ACTIONS(2116), + [anon_sym_pub] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_struct] = ACTIONS(2116), + [anon_sym_trait] = ACTIONS(2116), + [anon_sym_type] = ACTIONS(2116), + [anon_sym_union] = ACTIONS(2116), + [anon_sym_unsafe] = ACTIONS(2116), + [anon_sym_use] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_extern] = ACTIONS(2116), + [anon_sym_yield] = ACTIONS(2116), + [anon_sym_move] = ACTIONS(2116), + [anon_sym_try] = ACTIONS(2116), + [sym_integer_literal] = ACTIONS(2114), + [aux_sym_string_literal_token1] = ACTIONS(2114), + [sym_char_literal] = ACTIONS(2114), + [anon_sym_true] = ACTIONS(2116), + [anon_sym_false] = ACTIONS(2116), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2116), + [sym_super] = ACTIONS(2116), + [sym_crate] = ACTIONS(2116), + [sym_metavariable] = ACTIONS(2114), + [sym__raw_string_literal_start] = ACTIONS(2114), + [sym_float_literal] = ACTIONS(2114), }, [STATE(592)] = { [sym_line_comment] = STATE(592), [sym_block_comment] = STATE(592), - [ts_builtin_sym_end] = ACTIONS(2322), - [sym_identifier] = ACTIONS(2324), - [anon_sym_SEMI] = ACTIONS(2322), - [anon_sym_macro_rules_BANG] = ACTIONS(2322), - [anon_sym_LPAREN] = ACTIONS(2322), - [anon_sym_LBRACK] = ACTIONS(2322), - [anon_sym_LBRACE] = ACTIONS(2322), - [anon_sym_RBRACE] = ACTIONS(2322), - [anon_sym_STAR] = ACTIONS(2322), - [anon_sym_u8] = ACTIONS(2324), - [anon_sym_i8] = ACTIONS(2324), - [anon_sym_u16] = ACTIONS(2324), - [anon_sym_i16] = ACTIONS(2324), - [anon_sym_u32] = ACTIONS(2324), - [anon_sym_i32] = ACTIONS(2324), - [anon_sym_u64] = ACTIONS(2324), - [anon_sym_i64] = ACTIONS(2324), - [anon_sym_u128] = ACTIONS(2324), - [anon_sym_i128] = ACTIONS(2324), - [anon_sym_isize] = ACTIONS(2324), - [anon_sym_usize] = ACTIONS(2324), - [anon_sym_f32] = ACTIONS(2324), - [anon_sym_f64] = ACTIONS(2324), - [anon_sym_bool] = ACTIONS(2324), - [anon_sym_str] = ACTIONS(2324), - [anon_sym_char] = ACTIONS(2324), - [anon_sym_DASH] = ACTIONS(2322), - [anon_sym_BANG] = ACTIONS(2322), - [anon_sym_AMP] = ACTIONS(2322), - [anon_sym_PIPE] = ACTIONS(2322), - [anon_sym_LT] = ACTIONS(2322), - [anon_sym_DOT_DOT] = ACTIONS(2322), - [anon_sym_COLON_COLON] = ACTIONS(2322), - [anon_sym_POUND] = ACTIONS(2322), - [anon_sym_SQUOTE] = ACTIONS(2324), - [anon_sym_async] = ACTIONS(2324), - [anon_sym_break] = ACTIONS(2324), - [anon_sym_const] = ACTIONS(2324), - [anon_sym_continue] = ACTIONS(2324), - [anon_sym_default] = ACTIONS(2324), - [anon_sym_enum] = ACTIONS(2324), - [anon_sym_fn] = ACTIONS(2324), - [anon_sym_for] = ACTIONS(2324), - [anon_sym_gen] = ACTIONS(2324), - [anon_sym_if] = ACTIONS(2324), - [anon_sym_impl] = ACTIONS(2324), - [anon_sym_let] = ACTIONS(2324), - [anon_sym_loop] = ACTIONS(2324), - [anon_sym_match] = ACTIONS(2324), - [anon_sym_mod] = ACTIONS(2324), - [anon_sym_pub] = ACTIONS(2324), - [anon_sym_return] = ACTIONS(2324), - [anon_sym_static] = ACTIONS(2324), - [anon_sym_struct] = ACTIONS(2324), - [anon_sym_trait] = ACTIONS(2324), - [anon_sym_type] = ACTIONS(2324), - [anon_sym_union] = ACTIONS(2324), - [anon_sym_unsafe] = ACTIONS(2324), - [anon_sym_use] = ACTIONS(2324), - [anon_sym_while] = ACTIONS(2324), - [anon_sym_extern] = ACTIONS(2324), - [anon_sym_yield] = ACTIONS(2324), - [anon_sym_move] = ACTIONS(2324), - [anon_sym_try] = ACTIONS(2324), - [sym_integer_literal] = ACTIONS(2322), - [aux_sym_string_literal_token1] = ACTIONS(2322), - [sym_char_literal] = ACTIONS(2322), - [anon_sym_true] = ACTIONS(2324), - [anon_sym_false] = ACTIONS(2324), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2324), - [sym_super] = ACTIONS(2324), - [sym_crate] = ACTIONS(2324), - [sym_metavariable] = ACTIONS(2322), - [sym__raw_string_literal_start] = ACTIONS(2322), - [sym_float_literal] = ACTIONS(2322), + [ts_builtin_sym_end] = ACTIONS(2118), + [sym_identifier] = ACTIONS(2120), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym_macro_rules_BANG] = ACTIONS(2118), + [anon_sym_LPAREN] = ACTIONS(2118), + [anon_sym_LBRACK] = ACTIONS(2118), + [anon_sym_LBRACE] = ACTIONS(2118), + [anon_sym_RBRACE] = ACTIONS(2118), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_u8] = ACTIONS(2120), + [anon_sym_i8] = ACTIONS(2120), + [anon_sym_u16] = ACTIONS(2120), + [anon_sym_i16] = ACTIONS(2120), + [anon_sym_u32] = ACTIONS(2120), + [anon_sym_i32] = ACTIONS(2120), + [anon_sym_u64] = ACTIONS(2120), + [anon_sym_i64] = ACTIONS(2120), + [anon_sym_u128] = ACTIONS(2120), + [anon_sym_i128] = ACTIONS(2120), + [anon_sym_isize] = ACTIONS(2120), + [anon_sym_usize] = ACTIONS(2120), + [anon_sym_f32] = ACTIONS(2120), + [anon_sym_f64] = ACTIONS(2120), + [anon_sym_bool] = ACTIONS(2120), + [anon_sym_str] = ACTIONS(2120), + [anon_sym_char] = ACTIONS(2120), + [anon_sym_DASH] = ACTIONS(2118), + [anon_sym_BANG] = ACTIONS(2118), + [anon_sym_AMP] = ACTIONS(2118), + [anon_sym_PIPE] = ACTIONS(2118), + [anon_sym_LT] = ACTIONS(2118), + [anon_sym_DOT_DOT] = ACTIONS(2118), + [anon_sym_COLON_COLON] = ACTIONS(2118), + [anon_sym_POUND] = ACTIONS(2118), + [anon_sym_SQUOTE] = ACTIONS(2120), + [anon_sym_async] = ACTIONS(2120), + [anon_sym_break] = ACTIONS(2120), + [anon_sym_const] = ACTIONS(2120), + [anon_sym_continue] = ACTIONS(2120), + [anon_sym_default] = ACTIONS(2120), + [anon_sym_enum] = ACTIONS(2120), + [anon_sym_fn] = ACTIONS(2120), + [anon_sym_for] = ACTIONS(2120), + [anon_sym_gen] = ACTIONS(2120), + [anon_sym_if] = ACTIONS(2120), + [anon_sym_impl] = ACTIONS(2120), + [anon_sym_let] = ACTIONS(2120), + [anon_sym_loop] = ACTIONS(2120), + [anon_sym_match] = ACTIONS(2120), + [anon_sym_mod] = ACTIONS(2120), + [anon_sym_pub] = ACTIONS(2120), + [anon_sym_return] = ACTIONS(2120), + [anon_sym_static] = ACTIONS(2120), + [anon_sym_struct] = ACTIONS(2120), + [anon_sym_trait] = ACTIONS(2120), + [anon_sym_type] = ACTIONS(2120), + [anon_sym_union] = ACTIONS(2120), + [anon_sym_unsafe] = ACTIONS(2120), + [anon_sym_use] = ACTIONS(2120), + [anon_sym_while] = ACTIONS(2120), + [anon_sym_extern] = ACTIONS(2120), + [anon_sym_yield] = ACTIONS(2120), + [anon_sym_move] = ACTIONS(2120), + [anon_sym_try] = ACTIONS(2120), + [sym_integer_literal] = ACTIONS(2118), + [aux_sym_string_literal_token1] = ACTIONS(2118), + [sym_char_literal] = ACTIONS(2118), + [anon_sym_true] = ACTIONS(2120), + [anon_sym_false] = ACTIONS(2120), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2120), + [sym_super] = ACTIONS(2120), + [sym_crate] = ACTIONS(2120), + [sym_metavariable] = ACTIONS(2118), + [sym__raw_string_literal_start] = ACTIONS(2118), + [sym_float_literal] = ACTIONS(2118), }, [STATE(593)] = { + [sym_attribute_item] = STATE(825), [sym_line_comment] = STATE(593), [sym_block_comment] = STATE(593), - [ts_builtin_sym_end] = ACTIONS(1453), - [sym_identifier] = ACTIONS(1455), - [anon_sym_SEMI] = ACTIONS(1453), - [anon_sym_macro_rules_BANG] = ACTIONS(1453), - [anon_sym_LPAREN] = ACTIONS(1453), - [anon_sym_LBRACK] = ACTIONS(1453), - [anon_sym_LBRACE] = ACTIONS(1453), - [anon_sym_RBRACE] = ACTIONS(1453), - [anon_sym_STAR] = ACTIONS(1453), - [anon_sym_u8] = ACTIONS(1455), - [anon_sym_i8] = ACTIONS(1455), - [anon_sym_u16] = ACTIONS(1455), - [anon_sym_i16] = ACTIONS(1455), - [anon_sym_u32] = ACTIONS(1455), - [anon_sym_i32] = ACTIONS(1455), - [anon_sym_u64] = ACTIONS(1455), - [anon_sym_i64] = ACTIONS(1455), - [anon_sym_u128] = ACTIONS(1455), - [anon_sym_i128] = ACTIONS(1455), - [anon_sym_isize] = ACTIONS(1455), - [anon_sym_usize] = ACTIONS(1455), - [anon_sym_f32] = ACTIONS(1455), - [anon_sym_f64] = ACTIONS(1455), - [anon_sym_bool] = ACTIONS(1455), - [anon_sym_str] = ACTIONS(1455), - [anon_sym_char] = ACTIONS(1455), - [anon_sym_DASH] = ACTIONS(1453), - [anon_sym_BANG] = ACTIONS(1453), - [anon_sym_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1453), - [anon_sym_LT] = ACTIONS(1453), - [anon_sym_DOT_DOT] = ACTIONS(1453), - [anon_sym_COLON_COLON] = ACTIONS(1453), - [anon_sym_POUND] = ACTIONS(1453), - [anon_sym_SQUOTE] = ACTIONS(1455), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_break] = ACTIONS(1455), - [anon_sym_const] = ACTIONS(1455), - [anon_sym_continue] = ACTIONS(1455), - [anon_sym_default] = ACTIONS(1455), - [anon_sym_enum] = ACTIONS(1455), - [anon_sym_fn] = ACTIONS(1455), - [anon_sym_for] = ACTIONS(1455), - [anon_sym_gen] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1455), - [anon_sym_impl] = ACTIONS(1455), - [anon_sym_let] = ACTIONS(1455), - [anon_sym_loop] = ACTIONS(1455), - [anon_sym_match] = ACTIONS(1455), - [anon_sym_mod] = ACTIONS(1455), - [anon_sym_pub] = ACTIONS(1455), - [anon_sym_return] = ACTIONS(1455), - [anon_sym_static] = ACTIONS(1455), - [anon_sym_struct] = ACTIONS(1455), - [anon_sym_trait] = ACTIONS(1455), - [anon_sym_type] = ACTIONS(1455), - [anon_sym_union] = ACTIONS(1455), - [anon_sym_unsafe] = ACTIONS(1455), - [anon_sym_use] = ACTIONS(1455), - [anon_sym_while] = ACTIONS(1455), - [anon_sym_extern] = ACTIONS(1455), - [anon_sym_yield] = ACTIONS(1455), - [anon_sym_move] = ACTIONS(1455), - [anon_sym_try] = ACTIONS(1455), - [sym_integer_literal] = ACTIONS(1453), - [aux_sym_string_literal_token1] = ACTIONS(1453), - [sym_char_literal] = ACTIONS(1453), - [anon_sym_true] = ACTIONS(1455), - [anon_sym_false] = ACTIONS(1455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1455), - [sym_super] = ACTIONS(1455), - [sym_crate] = ACTIONS(1455), - [sym_metavariable] = ACTIONS(1453), - [sym__raw_string_literal_start] = ACTIONS(1453), - [sym_float_literal] = ACTIONS(1453), + [aux_sym_attributes_repeat1] = STATE(593), + [sym_identifier] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(2124), + [anon_sym_macro_rules_BANG] = ACTIONS(2124), + [anon_sym_LPAREN] = ACTIONS(2124), + [anon_sym_LBRACK] = ACTIONS(2124), + [anon_sym_LBRACE] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(2124), + [anon_sym_u8] = ACTIONS(2122), + [anon_sym_i8] = ACTIONS(2122), + [anon_sym_u16] = ACTIONS(2122), + [anon_sym_i16] = ACTIONS(2122), + [anon_sym_u32] = ACTIONS(2122), + [anon_sym_i32] = ACTIONS(2122), + [anon_sym_u64] = ACTIONS(2122), + [anon_sym_i64] = ACTIONS(2122), + [anon_sym_u128] = ACTIONS(2122), + [anon_sym_i128] = ACTIONS(2122), + [anon_sym_isize] = ACTIONS(2122), + [anon_sym_usize] = ACTIONS(2122), + [anon_sym_f32] = ACTIONS(2122), + [anon_sym_f64] = ACTIONS(2122), + [anon_sym_bool] = ACTIONS(2122), + [anon_sym_str] = ACTIONS(2122), + [anon_sym_char] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_AMP] = ACTIONS(2124), + [anon_sym_PIPE] = ACTIONS(2124), + [anon_sym_LT] = ACTIONS(2124), + [anon_sym_DOT_DOT] = ACTIONS(2124), + [anon_sym_COLON_COLON] = ACTIONS(2124), + [anon_sym_POUND] = ACTIONS(2126), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_async] = ACTIONS(2122), + [anon_sym_break] = ACTIONS(2122), + [anon_sym_const] = ACTIONS(2122), + [anon_sym_continue] = ACTIONS(2122), + [anon_sym_default] = ACTIONS(2122), + [anon_sym_enum] = ACTIONS(2122), + [anon_sym_fn] = ACTIONS(2122), + [anon_sym_for] = ACTIONS(2122), + [anon_sym_gen] = ACTIONS(2122), + [anon_sym_if] = ACTIONS(2122), + [anon_sym_impl] = ACTIONS(2122), + [anon_sym_let] = ACTIONS(2122), + [anon_sym_loop] = ACTIONS(2122), + [anon_sym_match] = ACTIONS(2122), + [anon_sym_mod] = ACTIONS(2122), + [anon_sym_pub] = ACTIONS(2122), + [anon_sym_return] = ACTIONS(2122), + [anon_sym_static] = ACTIONS(2122), + [anon_sym_struct] = ACTIONS(2122), + [anon_sym_trait] = ACTIONS(2122), + [anon_sym_type] = ACTIONS(2122), + [anon_sym_union] = ACTIONS(2122), + [anon_sym_unsafe] = ACTIONS(2122), + [anon_sym_use] = ACTIONS(2122), + [anon_sym_while] = ACTIONS(2122), + [anon_sym_extern] = ACTIONS(2122), + [anon_sym_yield] = ACTIONS(2122), + [anon_sym_move] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2122), + [sym_integer_literal] = ACTIONS(2124), + [aux_sym_string_literal_token1] = ACTIONS(2124), + [sym_char_literal] = ACTIONS(2124), + [anon_sym_true] = ACTIONS(2122), + [anon_sym_false] = ACTIONS(2122), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2122), + [sym_super] = ACTIONS(2122), + [sym_crate] = ACTIONS(2122), + [sym_metavariable] = ACTIONS(2124), + [sym__raw_string_literal_start] = ACTIONS(2124), + [sym_float_literal] = ACTIONS(2124), }, [STATE(594)] = { [sym_line_comment] = STATE(594), [sym_block_comment] = STATE(594), - [ts_builtin_sym_end] = ACTIONS(2326), - [sym_identifier] = ACTIONS(2328), - [anon_sym_SEMI] = ACTIONS(2326), - [anon_sym_macro_rules_BANG] = ACTIONS(2326), - [anon_sym_LPAREN] = ACTIONS(2326), - [anon_sym_LBRACK] = ACTIONS(2326), - [anon_sym_LBRACE] = ACTIONS(2326), - [anon_sym_RBRACE] = ACTIONS(2326), - [anon_sym_STAR] = ACTIONS(2326), - [anon_sym_u8] = ACTIONS(2328), - [anon_sym_i8] = ACTIONS(2328), - [anon_sym_u16] = ACTIONS(2328), - [anon_sym_i16] = ACTIONS(2328), - [anon_sym_u32] = ACTIONS(2328), - [anon_sym_i32] = ACTIONS(2328), - [anon_sym_u64] = ACTIONS(2328), - [anon_sym_i64] = ACTIONS(2328), - [anon_sym_u128] = ACTIONS(2328), - [anon_sym_i128] = ACTIONS(2328), - [anon_sym_isize] = ACTIONS(2328), - [anon_sym_usize] = ACTIONS(2328), - [anon_sym_f32] = ACTIONS(2328), - [anon_sym_f64] = ACTIONS(2328), - [anon_sym_bool] = ACTIONS(2328), - [anon_sym_str] = ACTIONS(2328), - [anon_sym_char] = ACTIONS(2328), - [anon_sym_DASH] = ACTIONS(2326), - [anon_sym_BANG] = ACTIONS(2326), - [anon_sym_AMP] = ACTIONS(2326), - [anon_sym_PIPE] = ACTIONS(2326), - [anon_sym_LT] = ACTIONS(2326), - [anon_sym_DOT_DOT] = ACTIONS(2326), - [anon_sym_COLON_COLON] = ACTIONS(2326), - [anon_sym_POUND] = ACTIONS(2326), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_async] = ACTIONS(2328), - [anon_sym_break] = ACTIONS(2328), - [anon_sym_const] = ACTIONS(2328), - [anon_sym_continue] = ACTIONS(2328), - [anon_sym_default] = ACTIONS(2328), - [anon_sym_enum] = ACTIONS(2328), - [anon_sym_fn] = ACTIONS(2328), - [anon_sym_for] = ACTIONS(2328), - [anon_sym_gen] = ACTIONS(2328), - [anon_sym_if] = ACTIONS(2328), - [anon_sym_impl] = ACTIONS(2328), - [anon_sym_let] = ACTIONS(2328), - [anon_sym_loop] = ACTIONS(2328), - [anon_sym_match] = ACTIONS(2328), - [anon_sym_mod] = ACTIONS(2328), - [anon_sym_pub] = ACTIONS(2328), - [anon_sym_return] = ACTIONS(2328), - [anon_sym_static] = ACTIONS(2328), - [anon_sym_struct] = ACTIONS(2328), - [anon_sym_trait] = ACTIONS(2328), - [anon_sym_type] = ACTIONS(2328), - [anon_sym_union] = ACTIONS(2328), - [anon_sym_unsafe] = ACTIONS(2328), - [anon_sym_use] = ACTIONS(2328), - [anon_sym_while] = ACTIONS(2328), - [anon_sym_extern] = ACTIONS(2328), - [anon_sym_yield] = ACTIONS(2328), - [anon_sym_move] = ACTIONS(2328), - [anon_sym_try] = ACTIONS(2328), - [sym_integer_literal] = ACTIONS(2326), - [aux_sym_string_literal_token1] = ACTIONS(2326), - [sym_char_literal] = ACTIONS(2326), - [anon_sym_true] = ACTIONS(2328), - [anon_sym_false] = ACTIONS(2328), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2328), - [sym_super] = ACTIONS(2328), - [sym_crate] = ACTIONS(2328), - [sym_metavariable] = ACTIONS(2326), - [sym__raw_string_literal_start] = ACTIONS(2326), - [sym_float_literal] = ACTIONS(2326), + [ts_builtin_sym_end] = ACTIONS(2129), + [sym_identifier] = ACTIONS(2131), + [anon_sym_SEMI] = ACTIONS(2129), + [anon_sym_macro_rules_BANG] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(2129), + [anon_sym_LBRACK] = ACTIONS(2129), + [anon_sym_LBRACE] = ACTIONS(2129), + [anon_sym_RBRACE] = ACTIONS(2129), + [anon_sym_STAR] = ACTIONS(2129), + [anon_sym_u8] = ACTIONS(2131), + [anon_sym_i8] = ACTIONS(2131), + [anon_sym_u16] = ACTIONS(2131), + [anon_sym_i16] = ACTIONS(2131), + [anon_sym_u32] = ACTIONS(2131), + [anon_sym_i32] = ACTIONS(2131), + [anon_sym_u64] = ACTIONS(2131), + [anon_sym_i64] = ACTIONS(2131), + [anon_sym_u128] = ACTIONS(2131), + [anon_sym_i128] = ACTIONS(2131), + [anon_sym_isize] = ACTIONS(2131), + [anon_sym_usize] = ACTIONS(2131), + [anon_sym_f32] = ACTIONS(2131), + [anon_sym_f64] = ACTIONS(2131), + [anon_sym_bool] = ACTIONS(2131), + [anon_sym_str] = ACTIONS(2131), + [anon_sym_char] = ACTIONS(2131), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_PIPE] = ACTIONS(2129), + [anon_sym_LT] = ACTIONS(2129), + [anon_sym_DOT_DOT] = ACTIONS(2129), + [anon_sym_COLON_COLON] = ACTIONS(2129), + [anon_sym_POUND] = ACTIONS(2129), + [anon_sym_SQUOTE] = ACTIONS(2131), + [anon_sym_async] = ACTIONS(2131), + [anon_sym_break] = ACTIONS(2131), + [anon_sym_const] = ACTIONS(2131), + [anon_sym_continue] = ACTIONS(2131), + [anon_sym_default] = ACTIONS(2131), + [anon_sym_enum] = ACTIONS(2131), + [anon_sym_fn] = ACTIONS(2131), + [anon_sym_for] = ACTIONS(2131), + [anon_sym_gen] = ACTIONS(2131), + [anon_sym_if] = ACTIONS(2131), + [anon_sym_impl] = ACTIONS(2131), + [anon_sym_let] = ACTIONS(2131), + [anon_sym_loop] = ACTIONS(2131), + [anon_sym_match] = ACTIONS(2131), + [anon_sym_mod] = ACTIONS(2131), + [anon_sym_pub] = ACTIONS(2131), + [anon_sym_return] = ACTIONS(2131), + [anon_sym_static] = ACTIONS(2131), + [anon_sym_struct] = ACTIONS(2131), + [anon_sym_trait] = ACTIONS(2131), + [anon_sym_type] = ACTIONS(2131), + [anon_sym_union] = ACTIONS(2131), + [anon_sym_unsafe] = ACTIONS(2131), + [anon_sym_use] = ACTIONS(2131), + [anon_sym_while] = ACTIONS(2131), + [anon_sym_extern] = ACTIONS(2131), + [anon_sym_yield] = ACTIONS(2131), + [anon_sym_move] = ACTIONS(2131), + [anon_sym_try] = ACTIONS(2131), + [sym_integer_literal] = ACTIONS(2129), + [aux_sym_string_literal_token1] = ACTIONS(2129), + [sym_char_literal] = ACTIONS(2129), + [anon_sym_true] = ACTIONS(2131), + [anon_sym_false] = ACTIONS(2131), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2131), + [sym_super] = ACTIONS(2131), + [sym_crate] = ACTIONS(2131), + [sym_metavariable] = ACTIONS(2129), + [sym__raw_string_literal_start] = ACTIONS(2129), + [sym_float_literal] = ACTIONS(2129), }, [STATE(595)] = { [sym_line_comment] = STATE(595), [sym_block_comment] = STATE(595), - [ts_builtin_sym_end] = ACTIONS(2330), - [sym_identifier] = ACTIONS(2332), - [anon_sym_SEMI] = ACTIONS(2330), - [anon_sym_macro_rules_BANG] = ACTIONS(2330), - [anon_sym_LPAREN] = ACTIONS(2330), - [anon_sym_LBRACK] = ACTIONS(2330), - [anon_sym_LBRACE] = ACTIONS(2330), - [anon_sym_RBRACE] = ACTIONS(2330), - [anon_sym_STAR] = ACTIONS(2330), - [anon_sym_u8] = ACTIONS(2332), - [anon_sym_i8] = ACTIONS(2332), - [anon_sym_u16] = ACTIONS(2332), - [anon_sym_i16] = ACTIONS(2332), - [anon_sym_u32] = ACTIONS(2332), - [anon_sym_i32] = ACTIONS(2332), - [anon_sym_u64] = ACTIONS(2332), - [anon_sym_i64] = ACTIONS(2332), - [anon_sym_u128] = ACTIONS(2332), - [anon_sym_i128] = ACTIONS(2332), - [anon_sym_isize] = ACTIONS(2332), - [anon_sym_usize] = ACTIONS(2332), - [anon_sym_f32] = ACTIONS(2332), - [anon_sym_f64] = ACTIONS(2332), - [anon_sym_bool] = ACTIONS(2332), - [anon_sym_str] = ACTIONS(2332), - [anon_sym_char] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2330), - [anon_sym_AMP] = ACTIONS(2330), - [anon_sym_PIPE] = ACTIONS(2330), - [anon_sym_LT] = ACTIONS(2330), - [anon_sym_DOT_DOT] = ACTIONS(2330), - [anon_sym_COLON_COLON] = ACTIONS(2330), - [anon_sym_POUND] = ACTIONS(2330), - [anon_sym_SQUOTE] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_default] = ACTIONS(2332), - [anon_sym_enum] = ACTIONS(2332), - [anon_sym_fn] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_gen] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_impl] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_loop] = ACTIONS(2332), - [anon_sym_match] = ACTIONS(2332), - [anon_sym_mod] = ACTIONS(2332), - [anon_sym_pub] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_struct] = ACTIONS(2332), - [anon_sym_trait] = ACTIONS(2332), - [anon_sym_type] = ACTIONS(2332), - [anon_sym_union] = ACTIONS(2332), - [anon_sym_unsafe] = ACTIONS(2332), - [anon_sym_use] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_extern] = ACTIONS(2332), - [anon_sym_yield] = ACTIONS(2332), - [anon_sym_move] = ACTIONS(2332), - [anon_sym_try] = ACTIONS(2332), - [sym_integer_literal] = ACTIONS(2330), - [aux_sym_string_literal_token1] = ACTIONS(2330), - [sym_char_literal] = ACTIONS(2330), - [anon_sym_true] = ACTIONS(2332), - [anon_sym_false] = ACTIONS(2332), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2332), - [sym_super] = ACTIONS(2332), - [sym_crate] = ACTIONS(2332), - [sym_metavariable] = ACTIONS(2330), - [sym__raw_string_literal_start] = ACTIONS(2330), - [sym_float_literal] = ACTIONS(2330), + [ts_builtin_sym_end] = ACTIONS(2133), + [sym_identifier] = ACTIONS(2135), + [anon_sym_SEMI] = ACTIONS(2133), + [anon_sym_macro_rules_BANG] = ACTIONS(2133), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(2133), + [anon_sym_RBRACE] = ACTIONS(2133), + [anon_sym_STAR] = ACTIONS(2133), + [anon_sym_u8] = ACTIONS(2135), + [anon_sym_i8] = ACTIONS(2135), + [anon_sym_u16] = ACTIONS(2135), + [anon_sym_i16] = ACTIONS(2135), + [anon_sym_u32] = ACTIONS(2135), + [anon_sym_i32] = ACTIONS(2135), + [anon_sym_u64] = ACTIONS(2135), + [anon_sym_i64] = ACTIONS(2135), + [anon_sym_u128] = ACTIONS(2135), + [anon_sym_i128] = ACTIONS(2135), + [anon_sym_isize] = ACTIONS(2135), + [anon_sym_usize] = ACTIONS(2135), + [anon_sym_f32] = ACTIONS(2135), + [anon_sym_f64] = ACTIONS(2135), + [anon_sym_bool] = ACTIONS(2135), + [anon_sym_str] = ACTIONS(2135), + [anon_sym_char] = ACTIONS(2135), + [anon_sym_DASH] = ACTIONS(2133), + [anon_sym_BANG] = ACTIONS(2133), + [anon_sym_AMP] = ACTIONS(2133), + [anon_sym_PIPE] = ACTIONS(2133), + [anon_sym_LT] = ACTIONS(2133), + [anon_sym_DOT_DOT] = ACTIONS(2133), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym_POUND] = ACTIONS(2133), + [anon_sym_SQUOTE] = ACTIONS(2135), + [anon_sym_async] = ACTIONS(2135), + [anon_sym_break] = ACTIONS(2135), + [anon_sym_const] = ACTIONS(2135), + [anon_sym_continue] = ACTIONS(2135), + [anon_sym_default] = ACTIONS(2135), + [anon_sym_enum] = ACTIONS(2135), + [anon_sym_fn] = ACTIONS(2135), + [anon_sym_for] = ACTIONS(2135), + [anon_sym_gen] = ACTIONS(2135), + [anon_sym_if] = ACTIONS(2135), + [anon_sym_impl] = ACTIONS(2135), + [anon_sym_let] = ACTIONS(2135), + [anon_sym_loop] = ACTIONS(2135), + [anon_sym_match] = ACTIONS(2135), + [anon_sym_mod] = ACTIONS(2135), + [anon_sym_pub] = ACTIONS(2135), + [anon_sym_return] = ACTIONS(2135), + [anon_sym_static] = ACTIONS(2135), + [anon_sym_struct] = ACTIONS(2135), + [anon_sym_trait] = ACTIONS(2135), + [anon_sym_type] = ACTIONS(2135), + [anon_sym_union] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2135), + [anon_sym_use] = ACTIONS(2135), + [anon_sym_while] = ACTIONS(2135), + [anon_sym_extern] = ACTIONS(2135), + [anon_sym_yield] = ACTIONS(2135), + [anon_sym_move] = ACTIONS(2135), + [anon_sym_try] = ACTIONS(2135), + [sym_integer_literal] = ACTIONS(2133), + [aux_sym_string_literal_token1] = ACTIONS(2133), + [sym_char_literal] = ACTIONS(2133), + [anon_sym_true] = ACTIONS(2135), + [anon_sym_false] = ACTIONS(2135), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2135), + [sym_super] = ACTIONS(2135), + [sym_crate] = ACTIONS(2135), + [sym_metavariable] = ACTIONS(2133), + [sym__raw_string_literal_start] = ACTIONS(2133), + [sym_float_literal] = ACTIONS(2133), }, [STATE(596)] = { [sym_line_comment] = STATE(596), [sym_block_comment] = STATE(596), - [ts_builtin_sym_end] = ACTIONS(2334), - [sym_identifier] = ACTIONS(2336), - [anon_sym_SEMI] = ACTIONS(2334), - [anon_sym_macro_rules_BANG] = ACTIONS(2334), - [anon_sym_LPAREN] = ACTIONS(2334), - [anon_sym_LBRACK] = ACTIONS(2334), - [anon_sym_LBRACE] = ACTIONS(2334), - [anon_sym_RBRACE] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2334), - [anon_sym_u8] = ACTIONS(2336), - [anon_sym_i8] = ACTIONS(2336), - [anon_sym_u16] = ACTIONS(2336), - [anon_sym_i16] = ACTIONS(2336), - [anon_sym_u32] = ACTIONS(2336), - [anon_sym_i32] = ACTIONS(2336), - [anon_sym_u64] = ACTIONS(2336), - [anon_sym_i64] = ACTIONS(2336), - [anon_sym_u128] = ACTIONS(2336), - [anon_sym_i128] = ACTIONS(2336), - [anon_sym_isize] = ACTIONS(2336), - [anon_sym_usize] = ACTIONS(2336), - [anon_sym_f32] = ACTIONS(2336), - [anon_sym_f64] = ACTIONS(2336), - [anon_sym_bool] = ACTIONS(2336), - [anon_sym_str] = ACTIONS(2336), - [anon_sym_char] = ACTIONS(2336), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_BANG] = ACTIONS(2334), - [anon_sym_AMP] = ACTIONS(2334), - [anon_sym_PIPE] = ACTIONS(2334), - [anon_sym_LT] = ACTIONS(2334), - [anon_sym_DOT_DOT] = ACTIONS(2334), - [anon_sym_COLON_COLON] = ACTIONS(2334), - [anon_sym_POUND] = ACTIONS(2334), - [anon_sym_SQUOTE] = ACTIONS(2336), - [anon_sym_async] = ACTIONS(2336), - [anon_sym_break] = ACTIONS(2336), - [anon_sym_const] = ACTIONS(2336), - [anon_sym_continue] = ACTIONS(2336), - [anon_sym_default] = ACTIONS(2336), - [anon_sym_enum] = ACTIONS(2336), - [anon_sym_fn] = ACTIONS(2336), - [anon_sym_for] = ACTIONS(2336), - [anon_sym_gen] = ACTIONS(2336), - [anon_sym_if] = ACTIONS(2336), - [anon_sym_impl] = ACTIONS(2336), - [anon_sym_let] = ACTIONS(2336), - [anon_sym_loop] = ACTIONS(2336), - [anon_sym_match] = ACTIONS(2336), - [anon_sym_mod] = ACTIONS(2336), - [anon_sym_pub] = ACTIONS(2336), - [anon_sym_return] = ACTIONS(2336), - [anon_sym_static] = ACTIONS(2336), - [anon_sym_struct] = ACTIONS(2336), - [anon_sym_trait] = ACTIONS(2336), - [anon_sym_type] = ACTIONS(2336), - [anon_sym_union] = ACTIONS(2336), - [anon_sym_unsafe] = ACTIONS(2336), - [anon_sym_use] = ACTIONS(2336), - [anon_sym_while] = ACTIONS(2336), - [anon_sym_extern] = ACTIONS(2336), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_move] = ACTIONS(2336), - [anon_sym_try] = ACTIONS(2336), - [sym_integer_literal] = ACTIONS(2334), - [aux_sym_string_literal_token1] = ACTIONS(2334), - [sym_char_literal] = ACTIONS(2334), - [anon_sym_true] = ACTIONS(2336), - [anon_sym_false] = ACTIONS(2336), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2336), - [sym_super] = ACTIONS(2336), - [sym_crate] = ACTIONS(2336), - [sym_metavariable] = ACTIONS(2334), - [sym__raw_string_literal_start] = ACTIONS(2334), - [sym_float_literal] = ACTIONS(2334), + [ts_builtin_sym_end] = ACTIONS(2137), + [sym_identifier] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2137), + [anon_sym_macro_rules_BANG] = ACTIONS(2137), + [anon_sym_LPAREN] = ACTIONS(2137), + [anon_sym_LBRACK] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(2137), + [anon_sym_RBRACE] = ACTIONS(2137), + [anon_sym_STAR] = ACTIONS(2137), + [anon_sym_u8] = ACTIONS(2139), + [anon_sym_i8] = ACTIONS(2139), + [anon_sym_u16] = ACTIONS(2139), + [anon_sym_i16] = ACTIONS(2139), + [anon_sym_u32] = ACTIONS(2139), + [anon_sym_i32] = ACTIONS(2139), + [anon_sym_u64] = ACTIONS(2139), + [anon_sym_i64] = ACTIONS(2139), + [anon_sym_u128] = ACTIONS(2139), + [anon_sym_i128] = ACTIONS(2139), + [anon_sym_isize] = ACTIONS(2139), + [anon_sym_usize] = ACTIONS(2139), + [anon_sym_f32] = ACTIONS(2139), + [anon_sym_f64] = ACTIONS(2139), + [anon_sym_bool] = ACTIONS(2139), + [anon_sym_str] = ACTIONS(2139), + [anon_sym_char] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2137), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_AMP] = ACTIONS(2137), + [anon_sym_PIPE] = ACTIONS(2137), + [anon_sym_LT] = ACTIONS(2137), + [anon_sym_DOT_DOT] = ACTIONS(2137), + [anon_sym_COLON_COLON] = ACTIONS(2137), + [anon_sym_POUND] = ACTIONS(2137), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_default] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), + [anon_sym_fn] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_gen] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_impl] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_loop] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_mod] = ACTIONS(2139), + [anon_sym_pub] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_static] = ACTIONS(2139), + [anon_sym_struct] = ACTIONS(2139), + [anon_sym_trait] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_union] = ACTIONS(2139), + [anon_sym_unsafe] = ACTIONS(2139), + [anon_sym_use] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [anon_sym_extern] = ACTIONS(2139), + [anon_sym_yield] = ACTIONS(2139), + [anon_sym_move] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(2139), + [sym_integer_literal] = ACTIONS(2137), + [aux_sym_string_literal_token1] = ACTIONS(2137), + [sym_char_literal] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(2139), + [anon_sym_false] = ACTIONS(2139), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_crate] = ACTIONS(2139), + [sym_metavariable] = ACTIONS(2137), + [sym__raw_string_literal_start] = ACTIONS(2137), + [sym_float_literal] = ACTIONS(2137), }, [STATE(597)] = { [sym_line_comment] = STATE(597), [sym_block_comment] = STATE(597), - [ts_builtin_sym_end] = ACTIONS(2338), - [sym_identifier] = ACTIONS(2340), - [anon_sym_SEMI] = ACTIONS(2338), - [anon_sym_macro_rules_BANG] = ACTIONS(2338), - [anon_sym_LPAREN] = ACTIONS(2338), - [anon_sym_LBRACK] = ACTIONS(2338), - [anon_sym_LBRACE] = ACTIONS(2338), - [anon_sym_RBRACE] = ACTIONS(2338), - [anon_sym_STAR] = ACTIONS(2338), - [anon_sym_u8] = ACTIONS(2340), - [anon_sym_i8] = ACTIONS(2340), - [anon_sym_u16] = ACTIONS(2340), - [anon_sym_i16] = ACTIONS(2340), - [anon_sym_u32] = ACTIONS(2340), - [anon_sym_i32] = ACTIONS(2340), - [anon_sym_u64] = ACTIONS(2340), - [anon_sym_i64] = ACTIONS(2340), - [anon_sym_u128] = ACTIONS(2340), - [anon_sym_i128] = ACTIONS(2340), - [anon_sym_isize] = ACTIONS(2340), - [anon_sym_usize] = ACTIONS(2340), - [anon_sym_f32] = ACTIONS(2340), - [anon_sym_f64] = ACTIONS(2340), - [anon_sym_bool] = ACTIONS(2340), - [anon_sym_str] = ACTIONS(2340), - [anon_sym_char] = ACTIONS(2340), - [anon_sym_DASH] = ACTIONS(2338), - [anon_sym_BANG] = ACTIONS(2338), - [anon_sym_AMP] = ACTIONS(2338), - [anon_sym_PIPE] = ACTIONS(2338), - [anon_sym_LT] = ACTIONS(2338), - [anon_sym_DOT_DOT] = ACTIONS(2338), - [anon_sym_COLON_COLON] = ACTIONS(2338), - [anon_sym_POUND] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_async] = ACTIONS(2340), - [anon_sym_break] = ACTIONS(2340), - [anon_sym_const] = ACTIONS(2340), - [anon_sym_continue] = ACTIONS(2340), - [anon_sym_default] = ACTIONS(2340), - [anon_sym_enum] = ACTIONS(2340), - [anon_sym_fn] = ACTIONS(2340), - [anon_sym_for] = ACTIONS(2340), - [anon_sym_gen] = ACTIONS(2340), - [anon_sym_if] = ACTIONS(2340), - [anon_sym_impl] = ACTIONS(2340), - [anon_sym_let] = ACTIONS(2340), - [anon_sym_loop] = ACTIONS(2340), - [anon_sym_match] = ACTIONS(2340), - [anon_sym_mod] = ACTIONS(2340), - [anon_sym_pub] = ACTIONS(2340), - [anon_sym_return] = ACTIONS(2340), - [anon_sym_static] = ACTIONS(2340), - [anon_sym_struct] = ACTIONS(2340), - [anon_sym_trait] = ACTIONS(2340), - [anon_sym_type] = ACTIONS(2340), - [anon_sym_union] = ACTIONS(2340), - [anon_sym_unsafe] = ACTIONS(2340), - [anon_sym_use] = ACTIONS(2340), - [anon_sym_while] = ACTIONS(2340), - [anon_sym_extern] = ACTIONS(2340), - [anon_sym_yield] = ACTIONS(2340), - [anon_sym_move] = ACTIONS(2340), - [anon_sym_try] = ACTIONS(2340), - [sym_integer_literal] = ACTIONS(2338), - [aux_sym_string_literal_token1] = ACTIONS(2338), - [sym_char_literal] = ACTIONS(2338), - [anon_sym_true] = ACTIONS(2340), - [anon_sym_false] = ACTIONS(2340), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2340), - [sym_super] = ACTIONS(2340), - [sym_crate] = ACTIONS(2340), - [sym_metavariable] = ACTIONS(2338), - [sym__raw_string_literal_start] = ACTIONS(2338), - [sym_float_literal] = ACTIONS(2338), + [ts_builtin_sym_end] = ACTIONS(2141), + [sym_identifier] = ACTIONS(2143), + [anon_sym_SEMI] = ACTIONS(2141), + [anon_sym_macro_rules_BANG] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(2141), + [anon_sym_LBRACE] = ACTIONS(2141), + [anon_sym_RBRACE] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_u8] = ACTIONS(2143), + [anon_sym_i8] = ACTIONS(2143), + [anon_sym_u16] = ACTIONS(2143), + [anon_sym_i16] = ACTIONS(2143), + [anon_sym_u32] = ACTIONS(2143), + [anon_sym_i32] = ACTIONS(2143), + [anon_sym_u64] = ACTIONS(2143), + [anon_sym_i64] = ACTIONS(2143), + [anon_sym_u128] = ACTIONS(2143), + [anon_sym_i128] = ACTIONS(2143), + [anon_sym_isize] = ACTIONS(2143), + [anon_sym_usize] = ACTIONS(2143), + [anon_sym_f32] = ACTIONS(2143), + [anon_sym_f64] = ACTIONS(2143), + [anon_sym_bool] = ACTIONS(2143), + [anon_sym_str] = ACTIONS(2143), + [anon_sym_char] = ACTIONS(2143), + [anon_sym_DASH] = ACTIONS(2141), + [anon_sym_BANG] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_PIPE] = ACTIONS(2141), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_DOT_DOT] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2141), + [anon_sym_POUND] = ACTIONS(2141), + [anon_sym_SQUOTE] = ACTIONS(2143), + [anon_sym_async] = ACTIONS(2143), + [anon_sym_break] = ACTIONS(2143), + [anon_sym_const] = ACTIONS(2143), + [anon_sym_continue] = ACTIONS(2143), + [anon_sym_default] = ACTIONS(2143), + [anon_sym_enum] = ACTIONS(2143), + [anon_sym_fn] = ACTIONS(2143), + [anon_sym_for] = ACTIONS(2143), + [anon_sym_gen] = ACTIONS(2143), + [anon_sym_if] = ACTIONS(2143), + [anon_sym_impl] = ACTIONS(2143), + [anon_sym_let] = ACTIONS(2143), + [anon_sym_loop] = ACTIONS(2143), + [anon_sym_match] = ACTIONS(2143), + [anon_sym_mod] = ACTIONS(2143), + [anon_sym_pub] = ACTIONS(2143), + [anon_sym_return] = ACTIONS(2143), + [anon_sym_static] = ACTIONS(2143), + [anon_sym_struct] = ACTIONS(2143), + [anon_sym_trait] = ACTIONS(2143), + [anon_sym_type] = ACTIONS(2143), + [anon_sym_union] = ACTIONS(2143), + [anon_sym_unsafe] = ACTIONS(2143), + [anon_sym_use] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2143), + [anon_sym_extern] = ACTIONS(2143), + [anon_sym_yield] = ACTIONS(2143), + [anon_sym_move] = ACTIONS(2143), + [anon_sym_try] = ACTIONS(2143), + [sym_integer_literal] = ACTIONS(2141), + [aux_sym_string_literal_token1] = ACTIONS(2141), + [sym_char_literal] = ACTIONS(2141), + [anon_sym_true] = ACTIONS(2143), + [anon_sym_false] = ACTIONS(2143), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2143), + [sym_super] = ACTIONS(2143), + [sym_crate] = ACTIONS(2143), + [sym_metavariable] = ACTIONS(2141), + [sym__raw_string_literal_start] = ACTIONS(2141), + [sym_float_literal] = ACTIONS(2141), }, [STATE(598)] = { [sym_line_comment] = STATE(598), [sym_block_comment] = STATE(598), - [ts_builtin_sym_end] = ACTIONS(2342), - [sym_identifier] = ACTIONS(2344), - [anon_sym_SEMI] = ACTIONS(2342), - [anon_sym_macro_rules_BANG] = ACTIONS(2342), - [anon_sym_LPAREN] = ACTIONS(2342), - [anon_sym_LBRACK] = ACTIONS(2342), - [anon_sym_LBRACE] = ACTIONS(2342), - [anon_sym_RBRACE] = ACTIONS(2342), - [anon_sym_STAR] = ACTIONS(2342), - [anon_sym_u8] = ACTIONS(2344), - [anon_sym_i8] = ACTIONS(2344), - [anon_sym_u16] = ACTIONS(2344), - [anon_sym_i16] = ACTIONS(2344), - [anon_sym_u32] = ACTIONS(2344), - [anon_sym_i32] = ACTIONS(2344), - [anon_sym_u64] = ACTIONS(2344), - [anon_sym_i64] = ACTIONS(2344), - [anon_sym_u128] = ACTIONS(2344), - [anon_sym_i128] = ACTIONS(2344), - [anon_sym_isize] = ACTIONS(2344), - [anon_sym_usize] = ACTIONS(2344), - [anon_sym_f32] = ACTIONS(2344), - [anon_sym_f64] = ACTIONS(2344), - [anon_sym_bool] = ACTIONS(2344), - [anon_sym_str] = ACTIONS(2344), - [anon_sym_char] = ACTIONS(2344), - [anon_sym_DASH] = ACTIONS(2342), - [anon_sym_BANG] = ACTIONS(2342), - [anon_sym_AMP] = ACTIONS(2342), - [anon_sym_PIPE] = ACTIONS(2342), - [anon_sym_LT] = ACTIONS(2342), - [anon_sym_DOT_DOT] = ACTIONS(2342), - [anon_sym_COLON_COLON] = ACTIONS(2342), - [anon_sym_POUND] = ACTIONS(2342), - [anon_sym_SQUOTE] = ACTIONS(2344), - [anon_sym_async] = ACTIONS(2344), - [anon_sym_break] = ACTIONS(2344), - [anon_sym_const] = ACTIONS(2344), - [anon_sym_continue] = ACTIONS(2344), - [anon_sym_default] = ACTIONS(2344), - [anon_sym_enum] = ACTIONS(2344), - [anon_sym_fn] = ACTIONS(2344), - [anon_sym_for] = ACTIONS(2344), - [anon_sym_gen] = ACTIONS(2344), - [anon_sym_if] = ACTIONS(2344), - [anon_sym_impl] = ACTIONS(2344), - [anon_sym_let] = ACTIONS(2344), - [anon_sym_loop] = ACTIONS(2344), - [anon_sym_match] = ACTIONS(2344), - [anon_sym_mod] = ACTIONS(2344), - [anon_sym_pub] = ACTIONS(2344), - [anon_sym_return] = ACTIONS(2344), - [anon_sym_static] = ACTIONS(2344), - [anon_sym_struct] = ACTIONS(2344), - [anon_sym_trait] = ACTIONS(2344), - [anon_sym_type] = ACTIONS(2344), - [anon_sym_union] = ACTIONS(2344), - [anon_sym_unsafe] = ACTIONS(2344), - [anon_sym_use] = ACTIONS(2344), - [anon_sym_while] = ACTIONS(2344), - [anon_sym_extern] = ACTIONS(2344), - [anon_sym_yield] = ACTIONS(2344), - [anon_sym_move] = ACTIONS(2344), - [anon_sym_try] = ACTIONS(2344), - [sym_integer_literal] = ACTIONS(2342), - [aux_sym_string_literal_token1] = ACTIONS(2342), - [sym_char_literal] = ACTIONS(2342), - [anon_sym_true] = ACTIONS(2344), - [anon_sym_false] = ACTIONS(2344), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2344), - [sym_super] = ACTIONS(2344), - [sym_crate] = ACTIONS(2344), - [sym_metavariable] = ACTIONS(2342), - [sym__raw_string_literal_start] = ACTIONS(2342), - [sym_float_literal] = ACTIONS(2342), + [ts_builtin_sym_end] = ACTIONS(2145), + [sym_identifier] = ACTIONS(2147), + [anon_sym_SEMI] = ACTIONS(2145), + [anon_sym_macro_rules_BANG] = ACTIONS(2145), + [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2145), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_RBRACE] = ACTIONS(2145), + [anon_sym_STAR] = ACTIONS(2145), + [anon_sym_u8] = ACTIONS(2147), + [anon_sym_i8] = ACTIONS(2147), + [anon_sym_u16] = ACTIONS(2147), + [anon_sym_i16] = ACTIONS(2147), + [anon_sym_u32] = ACTIONS(2147), + [anon_sym_i32] = ACTIONS(2147), + [anon_sym_u64] = ACTIONS(2147), + [anon_sym_i64] = ACTIONS(2147), + [anon_sym_u128] = ACTIONS(2147), + [anon_sym_i128] = ACTIONS(2147), + [anon_sym_isize] = ACTIONS(2147), + [anon_sym_usize] = ACTIONS(2147), + [anon_sym_f32] = ACTIONS(2147), + [anon_sym_f64] = ACTIONS(2147), + [anon_sym_bool] = ACTIONS(2147), + [anon_sym_str] = ACTIONS(2147), + [anon_sym_char] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2145), + [anon_sym_BANG] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(2145), + [anon_sym_PIPE] = ACTIONS(2145), + [anon_sym_LT] = ACTIONS(2145), + [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_COLON_COLON] = ACTIONS(2145), + [anon_sym_POUND] = ACTIONS(2145), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_default] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_gen] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_impl] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_loop] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_mod] = ACTIONS(2147), + [anon_sym_pub] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_trait] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_union] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_use] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [anon_sym_extern] = ACTIONS(2147), + [anon_sym_yield] = ACTIONS(2147), + [anon_sym_move] = ACTIONS(2147), + [anon_sym_try] = ACTIONS(2147), + [sym_integer_literal] = ACTIONS(2145), + [aux_sym_string_literal_token1] = ACTIONS(2145), + [sym_char_literal] = ACTIONS(2145), + [anon_sym_true] = ACTIONS(2147), + [anon_sym_false] = ACTIONS(2147), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_crate] = ACTIONS(2147), + [sym_metavariable] = ACTIONS(2145), + [sym__raw_string_literal_start] = ACTIONS(2145), + [sym_float_literal] = ACTIONS(2145), }, [STATE(599)] = { [sym_line_comment] = STATE(599), [sym_block_comment] = STATE(599), - [ts_builtin_sym_end] = ACTIONS(2346), - [sym_identifier] = ACTIONS(2348), - [anon_sym_SEMI] = ACTIONS(2346), - [anon_sym_macro_rules_BANG] = ACTIONS(2346), - [anon_sym_LPAREN] = ACTIONS(2346), - [anon_sym_LBRACK] = ACTIONS(2346), - [anon_sym_LBRACE] = ACTIONS(2346), - [anon_sym_RBRACE] = ACTIONS(2346), - [anon_sym_STAR] = ACTIONS(2346), - [anon_sym_u8] = ACTIONS(2348), - [anon_sym_i8] = ACTIONS(2348), - [anon_sym_u16] = ACTIONS(2348), - [anon_sym_i16] = ACTIONS(2348), - [anon_sym_u32] = ACTIONS(2348), - [anon_sym_i32] = ACTIONS(2348), - [anon_sym_u64] = ACTIONS(2348), - [anon_sym_i64] = ACTIONS(2348), - [anon_sym_u128] = ACTIONS(2348), - [anon_sym_i128] = ACTIONS(2348), - [anon_sym_isize] = ACTIONS(2348), - [anon_sym_usize] = ACTIONS(2348), - [anon_sym_f32] = ACTIONS(2348), - [anon_sym_f64] = ACTIONS(2348), - [anon_sym_bool] = ACTIONS(2348), - [anon_sym_str] = ACTIONS(2348), - [anon_sym_char] = ACTIONS(2348), - [anon_sym_DASH] = ACTIONS(2346), - [anon_sym_BANG] = ACTIONS(2346), - [anon_sym_AMP] = ACTIONS(2346), - [anon_sym_PIPE] = ACTIONS(2346), - [anon_sym_LT] = ACTIONS(2346), - [anon_sym_DOT_DOT] = ACTIONS(2346), - [anon_sym_COLON_COLON] = ACTIONS(2346), - [anon_sym_POUND] = ACTIONS(2346), - [anon_sym_SQUOTE] = ACTIONS(2348), - [anon_sym_async] = ACTIONS(2348), - [anon_sym_break] = ACTIONS(2348), - [anon_sym_const] = ACTIONS(2348), - [anon_sym_continue] = ACTIONS(2348), - [anon_sym_default] = ACTIONS(2348), - [anon_sym_enum] = ACTIONS(2348), - [anon_sym_fn] = ACTIONS(2348), - [anon_sym_for] = ACTIONS(2348), - [anon_sym_gen] = ACTIONS(2348), - [anon_sym_if] = ACTIONS(2348), - [anon_sym_impl] = ACTIONS(2348), - [anon_sym_let] = ACTIONS(2348), - [anon_sym_loop] = ACTIONS(2348), - [anon_sym_match] = ACTIONS(2348), - [anon_sym_mod] = ACTIONS(2348), - [anon_sym_pub] = ACTIONS(2348), - [anon_sym_return] = ACTIONS(2348), - [anon_sym_static] = ACTIONS(2348), - [anon_sym_struct] = ACTIONS(2348), - [anon_sym_trait] = ACTIONS(2348), - [anon_sym_type] = ACTIONS(2348), - [anon_sym_union] = ACTIONS(2348), - [anon_sym_unsafe] = ACTIONS(2348), - [anon_sym_use] = ACTIONS(2348), - [anon_sym_while] = ACTIONS(2348), - [anon_sym_extern] = ACTIONS(2348), - [anon_sym_yield] = ACTIONS(2348), - [anon_sym_move] = ACTIONS(2348), - [anon_sym_try] = ACTIONS(2348), - [sym_integer_literal] = ACTIONS(2346), - [aux_sym_string_literal_token1] = ACTIONS(2346), - [sym_char_literal] = ACTIONS(2346), - [anon_sym_true] = ACTIONS(2348), - [anon_sym_false] = ACTIONS(2348), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2348), - [sym_super] = ACTIONS(2348), - [sym_crate] = ACTIONS(2348), - [sym_metavariable] = ACTIONS(2346), - [sym__raw_string_literal_start] = ACTIONS(2346), - [sym_float_literal] = ACTIONS(2346), + [ts_builtin_sym_end] = ACTIONS(2149), + [sym_identifier] = ACTIONS(2151), + [anon_sym_SEMI] = ACTIONS(2149), + [anon_sym_macro_rules_BANG] = ACTIONS(2149), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2149), + [anon_sym_RBRACE] = ACTIONS(2149), + [anon_sym_STAR] = ACTIONS(2149), + [anon_sym_u8] = ACTIONS(2151), + [anon_sym_i8] = ACTIONS(2151), + [anon_sym_u16] = ACTIONS(2151), + [anon_sym_i16] = ACTIONS(2151), + [anon_sym_u32] = ACTIONS(2151), + [anon_sym_i32] = ACTIONS(2151), + [anon_sym_u64] = ACTIONS(2151), + [anon_sym_i64] = ACTIONS(2151), + [anon_sym_u128] = ACTIONS(2151), + [anon_sym_i128] = ACTIONS(2151), + [anon_sym_isize] = ACTIONS(2151), + [anon_sym_usize] = ACTIONS(2151), + [anon_sym_f32] = ACTIONS(2151), + [anon_sym_f64] = ACTIONS(2151), + [anon_sym_bool] = ACTIONS(2151), + [anon_sym_str] = ACTIONS(2151), + [anon_sym_char] = ACTIONS(2151), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_BANG] = ACTIONS(2149), + [anon_sym_AMP] = ACTIONS(2149), + [anon_sym_PIPE] = ACTIONS(2149), + [anon_sym_LT] = ACTIONS(2149), + [anon_sym_DOT_DOT] = ACTIONS(2149), + [anon_sym_COLON_COLON] = ACTIONS(2149), + [anon_sym_POUND] = ACTIONS(2149), + [anon_sym_SQUOTE] = ACTIONS(2151), + [anon_sym_async] = ACTIONS(2151), + [anon_sym_break] = ACTIONS(2151), + [anon_sym_const] = ACTIONS(2151), + [anon_sym_continue] = ACTIONS(2151), + [anon_sym_default] = ACTIONS(2151), + [anon_sym_enum] = ACTIONS(2151), + [anon_sym_fn] = ACTIONS(2151), + [anon_sym_for] = ACTIONS(2151), + [anon_sym_gen] = ACTIONS(2151), + [anon_sym_if] = ACTIONS(2151), + [anon_sym_impl] = ACTIONS(2151), + [anon_sym_let] = ACTIONS(2151), + [anon_sym_loop] = ACTIONS(2151), + [anon_sym_match] = ACTIONS(2151), + [anon_sym_mod] = ACTIONS(2151), + [anon_sym_pub] = ACTIONS(2151), + [anon_sym_return] = ACTIONS(2151), + [anon_sym_static] = ACTIONS(2151), + [anon_sym_struct] = ACTIONS(2151), + [anon_sym_trait] = ACTIONS(2151), + [anon_sym_type] = ACTIONS(2151), + [anon_sym_union] = ACTIONS(2151), + [anon_sym_unsafe] = ACTIONS(2151), + [anon_sym_use] = ACTIONS(2151), + [anon_sym_while] = ACTIONS(2151), + [anon_sym_extern] = ACTIONS(2151), + [anon_sym_yield] = ACTIONS(2151), + [anon_sym_move] = ACTIONS(2151), + [anon_sym_try] = ACTIONS(2151), + [sym_integer_literal] = ACTIONS(2149), + [aux_sym_string_literal_token1] = ACTIONS(2149), + [sym_char_literal] = ACTIONS(2149), + [anon_sym_true] = ACTIONS(2151), + [anon_sym_false] = ACTIONS(2151), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2151), + [sym_super] = ACTIONS(2151), + [sym_crate] = ACTIONS(2151), + [sym_metavariable] = ACTIONS(2149), + [sym__raw_string_literal_start] = ACTIONS(2149), + [sym_float_literal] = ACTIONS(2149), }, [STATE(600)] = { [sym_line_comment] = STATE(600), [sym_block_comment] = STATE(600), - [ts_builtin_sym_end] = ACTIONS(1437), - [sym_identifier] = ACTIONS(1439), - [anon_sym_SEMI] = ACTIONS(1437), - [anon_sym_macro_rules_BANG] = ACTIONS(1437), - [anon_sym_LPAREN] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1437), - [anon_sym_LBRACE] = ACTIONS(1437), - [anon_sym_RBRACE] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_u8] = ACTIONS(1439), - [anon_sym_i8] = ACTIONS(1439), - [anon_sym_u16] = ACTIONS(1439), - [anon_sym_i16] = ACTIONS(1439), - [anon_sym_u32] = ACTIONS(1439), - [anon_sym_i32] = ACTIONS(1439), - [anon_sym_u64] = ACTIONS(1439), - [anon_sym_i64] = ACTIONS(1439), - [anon_sym_u128] = ACTIONS(1439), - [anon_sym_i128] = ACTIONS(1439), - [anon_sym_isize] = ACTIONS(1439), - [anon_sym_usize] = ACTIONS(1439), - [anon_sym_f32] = ACTIONS(1439), - [anon_sym_f64] = ACTIONS(1439), - [anon_sym_bool] = ACTIONS(1439), - [anon_sym_str] = ACTIONS(1439), - [anon_sym_char] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_DOT_DOT] = ACTIONS(1437), - [anon_sym_COLON_COLON] = ACTIONS(1437), - [anon_sym_POUND] = ACTIONS(1437), - [anon_sym_SQUOTE] = ACTIONS(1439), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_break] = ACTIONS(1439), - [anon_sym_const] = ACTIONS(1439), - [anon_sym_continue] = ACTIONS(1439), - [anon_sym_default] = ACTIONS(1439), - [anon_sym_enum] = ACTIONS(1439), - [anon_sym_fn] = ACTIONS(1439), - [anon_sym_for] = ACTIONS(1439), - [anon_sym_gen] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1439), - [anon_sym_impl] = ACTIONS(1439), - [anon_sym_let] = ACTIONS(1439), - [anon_sym_loop] = ACTIONS(1439), - [anon_sym_match] = ACTIONS(1439), - [anon_sym_mod] = ACTIONS(1439), - [anon_sym_pub] = ACTIONS(1439), - [anon_sym_return] = ACTIONS(1439), - [anon_sym_static] = ACTIONS(1439), - [anon_sym_struct] = ACTIONS(1439), - [anon_sym_trait] = ACTIONS(1439), - [anon_sym_type] = ACTIONS(1439), - [anon_sym_union] = ACTIONS(1439), - [anon_sym_unsafe] = ACTIONS(1439), - [anon_sym_use] = ACTIONS(1439), - [anon_sym_while] = ACTIONS(1439), - [anon_sym_extern] = ACTIONS(1439), - [anon_sym_yield] = ACTIONS(1439), - [anon_sym_move] = ACTIONS(1439), - [anon_sym_try] = ACTIONS(1439), - [sym_integer_literal] = ACTIONS(1437), - [aux_sym_string_literal_token1] = ACTIONS(1437), - [sym_char_literal] = ACTIONS(1437), - [anon_sym_true] = ACTIONS(1439), - [anon_sym_false] = ACTIONS(1439), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1439), - [sym_super] = ACTIONS(1439), - [sym_crate] = ACTIONS(1439), - [sym_metavariable] = ACTIONS(1437), - [sym__raw_string_literal_start] = ACTIONS(1437), - [sym_float_literal] = ACTIONS(1437), + [ts_builtin_sym_end] = ACTIONS(2153), + [sym_identifier] = ACTIONS(2155), + [anon_sym_SEMI] = ACTIONS(2153), + [anon_sym_macro_rules_BANG] = ACTIONS(2153), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_LBRACK] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_RBRACE] = ACTIONS(2153), + [anon_sym_STAR] = ACTIONS(2153), + [anon_sym_u8] = ACTIONS(2155), + [anon_sym_i8] = ACTIONS(2155), + [anon_sym_u16] = ACTIONS(2155), + [anon_sym_i16] = ACTIONS(2155), + [anon_sym_u32] = ACTIONS(2155), + [anon_sym_i32] = ACTIONS(2155), + [anon_sym_u64] = ACTIONS(2155), + [anon_sym_i64] = ACTIONS(2155), + [anon_sym_u128] = ACTIONS(2155), + [anon_sym_i128] = ACTIONS(2155), + [anon_sym_isize] = ACTIONS(2155), + [anon_sym_usize] = ACTIONS(2155), + [anon_sym_f32] = ACTIONS(2155), + [anon_sym_f64] = ACTIONS(2155), + [anon_sym_bool] = ACTIONS(2155), + [anon_sym_str] = ACTIONS(2155), + [anon_sym_char] = ACTIONS(2155), + [anon_sym_DASH] = ACTIONS(2153), + [anon_sym_BANG] = ACTIONS(2153), + [anon_sym_AMP] = ACTIONS(2153), + [anon_sym_PIPE] = ACTIONS(2153), + [anon_sym_LT] = ACTIONS(2153), + [anon_sym_DOT_DOT] = ACTIONS(2153), + [anon_sym_COLON_COLON] = ACTIONS(2153), + [anon_sym_POUND] = ACTIONS(2153), + [anon_sym_SQUOTE] = ACTIONS(2155), + [anon_sym_async] = ACTIONS(2155), + [anon_sym_break] = ACTIONS(2155), + [anon_sym_const] = ACTIONS(2155), + [anon_sym_continue] = ACTIONS(2155), + [anon_sym_default] = ACTIONS(2155), + [anon_sym_enum] = ACTIONS(2155), + [anon_sym_fn] = ACTIONS(2155), + [anon_sym_for] = ACTIONS(2155), + [anon_sym_gen] = ACTIONS(2155), + [anon_sym_if] = ACTIONS(2155), + [anon_sym_impl] = ACTIONS(2155), + [anon_sym_let] = ACTIONS(2155), + [anon_sym_loop] = ACTIONS(2155), + [anon_sym_match] = ACTIONS(2155), + [anon_sym_mod] = ACTIONS(2155), + [anon_sym_pub] = ACTIONS(2155), + [anon_sym_return] = ACTIONS(2155), + [anon_sym_static] = ACTIONS(2155), + [anon_sym_struct] = ACTIONS(2155), + [anon_sym_trait] = ACTIONS(2155), + [anon_sym_type] = ACTIONS(2155), + [anon_sym_union] = ACTIONS(2155), + [anon_sym_unsafe] = ACTIONS(2155), + [anon_sym_use] = ACTIONS(2155), + [anon_sym_while] = ACTIONS(2155), + [anon_sym_extern] = ACTIONS(2155), + [anon_sym_yield] = ACTIONS(2155), + [anon_sym_move] = ACTIONS(2155), + [anon_sym_try] = ACTIONS(2155), + [sym_integer_literal] = ACTIONS(2153), + [aux_sym_string_literal_token1] = ACTIONS(2153), + [sym_char_literal] = ACTIONS(2153), + [anon_sym_true] = ACTIONS(2155), + [anon_sym_false] = ACTIONS(2155), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2155), + [sym_super] = ACTIONS(2155), + [sym_crate] = ACTIONS(2155), + [sym_metavariable] = ACTIONS(2153), + [sym__raw_string_literal_start] = ACTIONS(2153), + [sym_float_literal] = ACTIONS(2153), }, [STATE(601)] = { [sym_line_comment] = STATE(601), [sym_block_comment] = STATE(601), - [ts_builtin_sym_end] = ACTIONS(2350), - [sym_identifier] = ACTIONS(2352), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_macro_rules_BANG] = ACTIONS(2350), - [anon_sym_LPAREN] = ACTIONS(2350), - [anon_sym_LBRACK] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_RBRACE] = ACTIONS(2350), - [anon_sym_STAR] = ACTIONS(2350), - [anon_sym_u8] = ACTIONS(2352), - [anon_sym_i8] = ACTIONS(2352), - [anon_sym_u16] = ACTIONS(2352), - [anon_sym_i16] = ACTIONS(2352), - [anon_sym_u32] = ACTIONS(2352), - [anon_sym_i32] = ACTIONS(2352), - [anon_sym_u64] = ACTIONS(2352), - [anon_sym_i64] = ACTIONS(2352), - [anon_sym_u128] = ACTIONS(2352), - [anon_sym_i128] = ACTIONS(2352), - [anon_sym_isize] = ACTIONS(2352), - [anon_sym_usize] = ACTIONS(2352), - [anon_sym_f32] = ACTIONS(2352), - [anon_sym_f64] = ACTIONS(2352), - [anon_sym_bool] = ACTIONS(2352), - [anon_sym_str] = ACTIONS(2352), - [anon_sym_char] = ACTIONS(2352), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_BANG] = ACTIONS(2350), - [anon_sym_AMP] = ACTIONS(2350), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_DOT_DOT] = ACTIONS(2350), - [anon_sym_COLON_COLON] = ACTIONS(2350), - [anon_sym_POUND] = ACTIONS(2350), - [anon_sym_SQUOTE] = ACTIONS(2352), - [anon_sym_async] = ACTIONS(2352), - [anon_sym_break] = ACTIONS(2352), - [anon_sym_const] = ACTIONS(2352), - [anon_sym_continue] = ACTIONS(2352), - [anon_sym_default] = ACTIONS(2352), - [anon_sym_enum] = ACTIONS(2352), - [anon_sym_fn] = ACTIONS(2352), - [anon_sym_for] = ACTIONS(2352), - [anon_sym_gen] = ACTIONS(2352), - [anon_sym_if] = ACTIONS(2352), - [anon_sym_impl] = ACTIONS(2352), - [anon_sym_let] = ACTIONS(2352), - [anon_sym_loop] = ACTIONS(2352), - [anon_sym_match] = ACTIONS(2352), - [anon_sym_mod] = ACTIONS(2352), - [anon_sym_pub] = ACTIONS(2352), - [anon_sym_return] = ACTIONS(2352), - [anon_sym_static] = ACTIONS(2352), - [anon_sym_struct] = ACTIONS(2352), - [anon_sym_trait] = ACTIONS(2352), - [anon_sym_type] = ACTIONS(2352), - [anon_sym_union] = ACTIONS(2352), - [anon_sym_unsafe] = ACTIONS(2352), - [anon_sym_use] = ACTIONS(2352), - [anon_sym_while] = ACTIONS(2352), - [anon_sym_extern] = ACTIONS(2352), - [anon_sym_yield] = ACTIONS(2352), - [anon_sym_move] = ACTIONS(2352), - [anon_sym_try] = ACTIONS(2352), - [sym_integer_literal] = ACTIONS(2350), - [aux_sym_string_literal_token1] = ACTIONS(2350), - [sym_char_literal] = ACTIONS(2350), - [anon_sym_true] = ACTIONS(2352), - [anon_sym_false] = ACTIONS(2352), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2352), - [sym_super] = ACTIONS(2352), - [sym_crate] = ACTIONS(2352), - [sym_metavariable] = ACTIONS(2350), - [sym__raw_string_literal_start] = ACTIONS(2350), - [sym_float_literal] = ACTIONS(2350), + [ts_builtin_sym_end] = ACTIONS(2157), + [sym_identifier] = ACTIONS(2159), + [anon_sym_SEMI] = ACTIONS(2157), + [anon_sym_macro_rules_BANG] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_LBRACK] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_RBRACE] = ACTIONS(2157), + [anon_sym_STAR] = ACTIONS(2157), + [anon_sym_u8] = ACTIONS(2159), + [anon_sym_i8] = ACTIONS(2159), + [anon_sym_u16] = ACTIONS(2159), + [anon_sym_i16] = ACTIONS(2159), + [anon_sym_u32] = ACTIONS(2159), + [anon_sym_i32] = ACTIONS(2159), + [anon_sym_u64] = ACTIONS(2159), + [anon_sym_i64] = ACTIONS(2159), + [anon_sym_u128] = ACTIONS(2159), + [anon_sym_i128] = ACTIONS(2159), + [anon_sym_isize] = ACTIONS(2159), + [anon_sym_usize] = ACTIONS(2159), + [anon_sym_f32] = ACTIONS(2159), + [anon_sym_f64] = ACTIONS(2159), + [anon_sym_bool] = ACTIONS(2159), + [anon_sym_str] = ACTIONS(2159), + [anon_sym_char] = ACTIONS(2159), + [anon_sym_DASH] = ACTIONS(2157), + [anon_sym_BANG] = ACTIONS(2157), + [anon_sym_AMP] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LT] = ACTIONS(2157), + [anon_sym_DOT_DOT] = ACTIONS(2157), + [anon_sym_COLON_COLON] = ACTIONS(2157), + [anon_sym_POUND] = ACTIONS(2157), + [anon_sym_SQUOTE] = ACTIONS(2159), + [anon_sym_async] = ACTIONS(2159), + [anon_sym_break] = ACTIONS(2159), + [anon_sym_const] = ACTIONS(2159), + [anon_sym_continue] = ACTIONS(2159), + [anon_sym_default] = ACTIONS(2159), + [anon_sym_enum] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(2159), + [anon_sym_for] = ACTIONS(2159), + [anon_sym_gen] = ACTIONS(2159), + [anon_sym_if] = ACTIONS(2159), + [anon_sym_impl] = ACTIONS(2159), + [anon_sym_let] = ACTIONS(2159), + [anon_sym_loop] = ACTIONS(2159), + [anon_sym_match] = ACTIONS(2159), + [anon_sym_mod] = ACTIONS(2159), + [anon_sym_pub] = ACTIONS(2159), + [anon_sym_return] = ACTIONS(2159), + [anon_sym_static] = ACTIONS(2159), + [anon_sym_struct] = ACTIONS(2159), + [anon_sym_trait] = ACTIONS(2159), + [anon_sym_type] = ACTIONS(2159), + [anon_sym_union] = ACTIONS(2159), + [anon_sym_unsafe] = ACTIONS(2159), + [anon_sym_use] = ACTIONS(2159), + [anon_sym_while] = ACTIONS(2159), + [anon_sym_extern] = ACTIONS(2159), + [anon_sym_yield] = ACTIONS(2159), + [anon_sym_move] = ACTIONS(2159), + [anon_sym_try] = ACTIONS(2159), + [sym_integer_literal] = ACTIONS(2157), + [aux_sym_string_literal_token1] = ACTIONS(2157), + [sym_char_literal] = ACTIONS(2157), + [anon_sym_true] = ACTIONS(2159), + [anon_sym_false] = ACTIONS(2159), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2159), + [sym_super] = ACTIONS(2159), + [sym_crate] = ACTIONS(2159), + [sym_metavariable] = ACTIONS(2157), + [sym__raw_string_literal_start] = ACTIONS(2157), + [sym_float_literal] = ACTIONS(2157), }, [STATE(602)] = { [sym_line_comment] = STATE(602), [sym_block_comment] = STATE(602), - [ts_builtin_sym_end] = ACTIONS(2354), - [sym_identifier] = ACTIONS(2356), - [anon_sym_SEMI] = ACTIONS(2354), - [anon_sym_macro_rules_BANG] = ACTIONS(2354), - [anon_sym_LPAREN] = ACTIONS(2354), - [anon_sym_LBRACK] = ACTIONS(2354), - [anon_sym_LBRACE] = ACTIONS(2354), - [anon_sym_RBRACE] = ACTIONS(2354), - [anon_sym_STAR] = ACTIONS(2354), - [anon_sym_u8] = ACTIONS(2356), - [anon_sym_i8] = ACTIONS(2356), - [anon_sym_u16] = ACTIONS(2356), - [anon_sym_i16] = ACTIONS(2356), - [anon_sym_u32] = ACTIONS(2356), - [anon_sym_i32] = ACTIONS(2356), - [anon_sym_u64] = ACTIONS(2356), - [anon_sym_i64] = ACTIONS(2356), - [anon_sym_u128] = ACTIONS(2356), - [anon_sym_i128] = ACTIONS(2356), - [anon_sym_isize] = ACTIONS(2356), - [anon_sym_usize] = ACTIONS(2356), - [anon_sym_f32] = ACTIONS(2356), - [anon_sym_f64] = ACTIONS(2356), - [anon_sym_bool] = ACTIONS(2356), - [anon_sym_str] = ACTIONS(2356), - [anon_sym_char] = ACTIONS(2356), - [anon_sym_DASH] = ACTIONS(2354), - [anon_sym_BANG] = ACTIONS(2354), - [anon_sym_AMP] = ACTIONS(2354), - [anon_sym_PIPE] = ACTIONS(2354), - [anon_sym_LT] = ACTIONS(2354), - [anon_sym_DOT_DOT] = ACTIONS(2354), - [anon_sym_COLON_COLON] = ACTIONS(2354), - [anon_sym_POUND] = ACTIONS(2354), - [anon_sym_SQUOTE] = ACTIONS(2356), - [anon_sym_async] = ACTIONS(2356), - [anon_sym_break] = ACTIONS(2356), - [anon_sym_const] = ACTIONS(2356), - [anon_sym_continue] = ACTIONS(2356), - [anon_sym_default] = ACTIONS(2356), - [anon_sym_enum] = ACTIONS(2356), - [anon_sym_fn] = ACTIONS(2356), - [anon_sym_for] = ACTIONS(2356), - [anon_sym_gen] = ACTIONS(2356), - [anon_sym_if] = ACTIONS(2356), - [anon_sym_impl] = ACTIONS(2356), - [anon_sym_let] = ACTIONS(2356), - [anon_sym_loop] = ACTIONS(2356), - [anon_sym_match] = ACTIONS(2356), - [anon_sym_mod] = ACTIONS(2356), - [anon_sym_pub] = ACTIONS(2356), - [anon_sym_return] = ACTIONS(2356), - [anon_sym_static] = ACTIONS(2356), - [anon_sym_struct] = ACTIONS(2356), - [anon_sym_trait] = ACTIONS(2356), - [anon_sym_type] = ACTIONS(2356), - [anon_sym_union] = ACTIONS(2356), - [anon_sym_unsafe] = ACTIONS(2356), - [anon_sym_use] = ACTIONS(2356), - [anon_sym_while] = ACTIONS(2356), - [anon_sym_extern] = ACTIONS(2356), - [anon_sym_yield] = ACTIONS(2356), - [anon_sym_move] = ACTIONS(2356), - [anon_sym_try] = ACTIONS(2356), - [sym_integer_literal] = ACTIONS(2354), - [aux_sym_string_literal_token1] = ACTIONS(2354), - [sym_char_literal] = ACTIONS(2354), - [anon_sym_true] = ACTIONS(2356), - [anon_sym_false] = ACTIONS(2356), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2356), - [sym_super] = ACTIONS(2356), - [sym_crate] = ACTIONS(2356), - [sym_metavariable] = ACTIONS(2354), - [sym__raw_string_literal_start] = ACTIONS(2354), - [sym_float_literal] = ACTIONS(2354), + [ts_builtin_sym_end] = ACTIONS(2161), + [sym_identifier] = ACTIONS(2163), + [anon_sym_SEMI] = ACTIONS(2161), + [anon_sym_macro_rules_BANG] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_RBRACE] = ACTIONS(2161), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_u8] = ACTIONS(2163), + [anon_sym_i8] = ACTIONS(2163), + [anon_sym_u16] = ACTIONS(2163), + [anon_sym_i16] = ACTIONS(2163), + [anon_sym_u32] = ACTIONS(2163), + [anon_sym_i32] = ACTIONS(2163), + [anon_sym_u64] = ACTIONS(2163), + [anon_sym_i64] = ACTIONS(2163), + [anon_sym_u128] = ACTIONS(2163), + [anon_sym_i128] = ACTIONS(2163), + [anon_sym_isize] = ACTIONS(2163), + [anon_sym_usize] = ACTIONS(2163), + [anon_sym_f32] = ACTIONS(2163), + [anon_sym_f64] = ACTIONS(2163), + [anon_sym_bool] = ACTIONS(2163), + [anon_sym_str] = ACTIONS(2163), + [anon_sym_char] = ACTIONS(2163), + [anon_sym_DASH] = ACTIONS(2161), + [anon_sym_BANG] = ACTIONS(2161), + [anon_sym_AMP] = ACTIONS(2161), + [anon_sym_PIPE] = ACTIONS(2161), + [anon_sym_LT] = ACTIONS(2161), + [anon_sym_DOT_DOT] = ACTIONS(2161), + [anon_sym_COLON_COLON] = ACTIONS(2161), + [anon_sym_POUND] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2163), + [anon_sym_async] = ACTIONS(2163), + [anon_sym_break] = ACTIONS(2163), + [anon_sym_const] = ACTIONS(2163), + [anon_sym_continue] = ACTIONS(2163), + [anon_sym_default] = ACTIONS(2163), + [anon_sym_enum] = ACTIONS(2163), + [anon_sym_fn] = ACTIONS(2163), + [anon_sym_for] = ACTIONS(2163), + [anon_sym_gen] = ACTIONS(2163), + [anon_sym_if] = ACTIONS(2163), + [anon_sym_impl] = ACTIONS(2163), + [anon_sym_let] = ACTIONS(2163), + [anon_sym_loop] = ACTIONS(2163), + [anon_sym_match] = ACTIONS(2163), + [anon_sym_mod] = ACTIONS(2163), + [anon_sym_pub] = ACTIONS(2163), + [anon_sym_return] = ACTIONS(2163), + [anon_sym_static] = ACTIONS(2163), + [anon_sym_struct] = ACTIONS(2163), + [anon_sym_trait] = ACTIONS(2163), + [anon_sym_type] = ACTIONS(2163), + [anon_sym_union] = ACTIONS(2163), + [anon_sym_unsafe] = ACTIONS(2163), + [anon_sym_use] = ACTIONS(2163), + [anon_sym_while] = ACTIONS(2163), + [anon_sym_extern] = ACTIONS(2163), + [anon_sym_yield] = ACTIONS(2163), + [anon_sym_move] = ACTIONS(2163), + [anon_sym_try] = ACTIONS(2163), + [sym_integer_literal] = ACTIONS(2161), + [aux_sym_string_literal_token1] = ACTIONS(2161), + [sym_char_literal] = ACTIONS(2161), + [anon_sym_true] = ACTIONS(2163), + [anon_sym_false] = ACTIONS(2163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2163), + [sym_super] = ACTIONS(2163), + [sym_crate] = ACTIONS(2163), + [sym_metavariable] = ACTIONS(2161), + [sym__raw_string_literal_start] = ACTIONS(2161), + [sym_float_literal] = ACTIONS(2161), }, [STATE(603)] = { [sym_line_comment] = STATE(603), [sym_block_comment] = STATE(603), - [ts_builtin_sym_end] = ACTIONS(2358), - [sym_identifier] = ACTIONS(2360), - [anon_sym_SEMI] = ACTIONS(2358), - [anon_sym_macro_rules_BANG] = ACTIONS(2358), - [anon_sym_LPAREN] = ACTIONS(2358), - [anon_sym_LBRACK] = ACTIONS(2358), - [anon_sym_LBRACE] = ACTIONS(2358), - [anon_sym_RBRACE] = ACTIONS(2358), - [anon_sym_STAR] = ACTIONS(2358), - [anon_sym_u8] = ACTIONS(2360), - [anon_sym_i8] = ACTIONS(2360), - [anon_sym_u16] = ACTIONS(2360), - [anon_sym_i16] = ACTIONS(2360), - [anon_sym_u32] = ACTIONS(2360), - [anon_sym_i32] = ACTIONS(2360), - [anon_sym_u64] = ACTIONS(2360), - [anon_sym_i64] = ACTIONS(2360), - [anon_sym_u128] = ACTIONS(2360), - [anon_sym_i128] = ACTIONS(2360), - [anon_sym_isize] = ACTIONS(2360), - [anon_sym_usize] = ACTIONS(2360), - [anon_sym_f32] = ACTIONS(2360), - [anon_sym_f64] = ACTIONS(2360), - [anon_sym_bool] = ACTIONS(2360), - [anon_sym_str] = ACTIONS(2360), - [anon_sym_char] = ACTIONS(2360), - [anon_sym_DASH] = ACTIONS(2358), - [anon_sym_BANG] = ACTIONS(2358), - [anon_sym_AMP] = ACTIONS(2358), - [anon_sym_PIPE] = ACTIONS(2358), - [anon_sym_LT] = ACTIONS(2358), - [anon_sym_DOT_DOT] = ACTIONS(2358), - [anon_sym_COLON_COLON] = ACTIONS(2358), - [anon_sym_POUND] = ACTIONS(2358), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_async] = ACTIONS(2360), - [anon_sym_break] = ACTIONS(2360), - [anon_sym_const] = ACTIONS(2360), - [anon_sym_continue] = ACTIONS(2360), - [anon_sym_default] = ACTIONS(2360), - [anon_sym_enum] = ACTIONS(2360), - [anon_sym_fn] = ACTIONS(2360), - [anon_sym_for] = ACTIONS(2360), - [anon_sym_gen] = ACTIONS(2360), - [anon_sym_if] = ACTIONS(2360), - [anon_sym_impl] = ACTIONS(2360), - [anon_sym_let] = ACTIONS(2360), - [anon_sym_loop] = ACTIONS(2360), - [anon_sym_match] = ACTIONS(2360), - [anon_sym_mod] = ACTIONS(2360), - [anon_sym_pub] = ACTIONS(2360), - [anon_sym_return] = ACTIONS(2360), - [anon_sym_static] = ACTIONS(2360), - [anon_sym_struct] = ACTIONS(2360), - [anon_sym_trait] = ACTIONS(2360), - [anon_sym_type] = ACTIONS(2360), - [anon_sym_union] = ACTIONS(2360), - [anon_sym_unsafe] = ACTIONS(2360), - [anon_sym_use] = ACTIONS(2360), - [anon_sym_while] = ACTIONS(2360), - [anon_sym_extern] = ACTIONS(2360), - [anon_sym_yield] = ACTIONS(2360), - [anon_sym_move] = ACTIONS(2360), - [anon_sym_try] = ACTIONS(2360), - [sym_integer_literal] = ACTIONS(2358), - [aux_sym_string_literal_token1] = ACTIONS(2358), - [sym_char_literal] = ACTIONS(2358), - [anon_sym_true] = ACTIONS(2360), - [anon_sym_false] = ACTIONS(2360), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2360), - [sym_super] = ACTIONS(2360), - [sym_crate] = ACTIONS(2360), - [sym_metavariable] = ACTIONS(2358), - [sym__raw_string_literal_start] = ACTIONS(2358), - [sym_float_literal] = ACTIONS(2358), + [ts_builtin_sym_end] = ACTIONS(2165), + [sym_identifier] = ACTIONS(2167), + [anon_sym_SEMI] = ACTIONS(2165), + [anon_sym_macro_rules_BANG] = ACTIONS(2165), + [anon_sym_LPAREN] = ACTIONS(2165), + [anon_sym_LBRACK] = ACTIONS(2165), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_RBRACE] = ACTIONS(2165), + [anon_sym_STAR] = ACTIONS(2165), + [anon_sym_u8] = ACTIONS(2167), + [anon_sym_i8] = ACTIONS(2167), + [anon_sym_u16] = ACTIONS(2167), + [anon_sym_i16] = ACTIONS(2167), + [anon_sym_u32] = ACTIONS(2167), + [anon_sym_i32] = ACTIONS(2167), + [anon_sym_u64] = ACTIONS(2167), + [anon_sym_i64] = ACTIONS(2167), + [anon_sym_u128] = ACTIONS(2167), + [anon_sym_i128] = ACTIONS(2167), + [anon_sym_isize] = ACTIONS(2167), + [anon_sym_usize] = ACTIONS(2167), + [anon_sym_f32] = ACTIONS(2167), + [anon_sym_f64] = ACTIONS(2167), + [anon_sym_bool] = ACTIONS(2167), + [anon_sym_str] = ACTIONS(2167), + [anon_sym_char] = ACTIONS(2167), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_BANG] = ACTIONS(2165), + [anon_sym_AMP] = ACTIONS(2165), + [anon_sym_PIPE] = ACTIONS(2165), + [anon_sym_LT] = ACTIONS(2165), + [anon_sym_DOT_DOT] = ACTIONS(2165), + [anon_sym_COLON_COLON] = ACTIONS(2165), + [anon_sym_POUND] = ACTIONS(2165), + [anon_sym_SQUOTE] = ACTIONS(2167), + [anon_sym_async] = ACTIONS(2167), + [anon_sym_break] = ACTIONS(2167), + [anon_sym_const] = ACTIONS(2167), + [anon_sym_continue] = ACTIONS(2167), + [anon_sym_default] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2167), + [anon_sym_fn] = ACTIONS(2167), + [anon_sym_for] = ACTIONS(2167), + [anon_sym_gen] = ACTIONS(2167), + [anon_sym_if] = ACTIONS(2167), + [anon_sym_impl] = ACTIONS(2167), + [anon_sym_let] = ACTIONS(2167), + [anon_sym_loop] = ACTIONS(2167), + [anon_sym_match] = ACTIONS(2167), + [anon_sym_mod] = ACTIONS(2167), + [anon_sym_pub] = ACTIONS(2167), + [anon_sym_return] = ACTIONS(2167), + [anon_sym_static] = ACTIONS(2167), + [anon_sym_struct] = ACTIONS(2167), + [anon_sym_trait] = ACTIONS(2167), + [anon_sym_type] = ACTIONS(2167), + [anon_sym_union] = ACTIONS(2167), + [anon_sym_unsafe] = ACTIONS(2167), + [anon_sym_use] = ACTIONS(2167), + [anon_sym_while] = ACTIONS(2167), + [anon_sym_extern] = ACTIONS(2167), + [anon_sym_yield] = ACTIONS(2167), + [anon_sym_move] = ACTIONS(2167), + [anon_sym_try] = ACTIONS(2167), + [sym_integer_literal] = ACTIONS(2165), + [aux_sym_string_literal_token1] = ACTIONS(2165), + [sym_char_literal] = ACTIONS(2165), + [anon_sym_true] = ACTIONS(2167), + [anon_sym_false] = ACTIONS(2167), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2167), + [sym_super] = ACTIONS(2167), + [sym_crate] = ACTIONS(2167), + [sym_metavariable] = ACTIONS(2165), + [sym__raw_string_literal_start] = ACTIONS(2165), + [sym_float_literal] = ACTIONS(2165), }, [STATE(604)] = { [sym_line_comment] = STATE(604), [sym_block_comment] = STATE(604), - [ts_builtin_sym_end] = ACTIONS(2362), - [sym_identifier] = ACTIONS(2364), - [anon_sym_SEMI] = ACTIONS(2362), - [anon_sym_macro_rules_BANG] = ACTIONS(2362), - [anon_sym_LPAREN] = ACTIONS(2362), - [anon_sym_LBRACK] = ACTIONS(2362), - [anon_sym_LBRACE] = ACTIONS(2362), - [anon_sym_RBRACE] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2362), - [anon_sym_u8] = ACTIONS(2364), - [anon_sym_i8] = ACTIONS(2364), - [anon_sym_u16] = ACTIONS(2364), - [anon_sym_i16] = ACTIONS(2364), - [anon_sym_u32] = ACTIONS(2364), - [anon_sym_i32] = ACTIONS(2364), - [anon_sym_u64] = ACTIONS(2364), - [anon_sym_i64] = ACTIONS(2364), - [anon_sym_u128] = ACTIONS(2364), - [anon_sym_i128] = ACTIONS(2364), - [anon_sym_isize] = ACTIONS(2364), - [anon_sym_usize] = ACTIONS(2364), - [anon_sym_f32] = ACTIONS(2364), - [anon_sym_f64] = ACTIONS(2364), - [anon_sym_bool] = ACTIONS(2364), - [anon_sym_str] = ACTIONS(2364), - [anon_sym_char] = ACTIONS(2364), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_BANG] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2362), - [anon_sym_PIPE] = ACTIONS(2362), - [anon_sym_LT] = ACTIONS(2362), - [anon_sym_DOT_DOT] = ACTIONS(2362), - [anon_sym_COLON_COLON] = ACTIONS(2362), - [anon_sym_POUND] = ACTIONS(2362), - [anon_sym_SQUOTE] = ACTIONS(2364), - [anon_sym_async] = ACTIONS(2364), - [anon_sym_break] = ACTIONS(2364), - [anon_sym_const] = ACTIONS(2364), - [anon_sym_continue] = ACTIONS(2364), - [anon_sym_default] = ACTIONS(2364), - [anon_sym_enum] = ACTIONS(2364), - [anon_sym_fn] = ACTIONS(2364), - [anon_sym_for] = ACTIONS(2364), - [anon_sym_gen] = ACTIONS(2364), - [anon_sym_if] = ACTIONS(2364), - [anon_sym_impl] = ACTIONS(2364), - [anon_sym_let] = ACTIONS(2364), - [anon_sym_loop] = ACTIONS(2364), - [anon_sym_match] = ACTIONS(2364), - [anon_sym_mod] = ACTIONS(2364), - [anon_sym_pub] = ACTIONS(2364), - [anon_sym_return] = ACTIONS(2364), - [anon_sym_static] = ACTIONS(2364), - [anon_sym_struct] = ACTIONS(2364), - [anon_sym_trait] = ACTIONS(2364), - [anon_sym_type] = ACTIONS(2364), - [anon_sym_union] = ACTIONS(2364), - [anon_sym_unsafe] = ACTIONS(2364), - [anon_sym_use] = ACTIONS(2364), - [anon_sym_while] = ACTIONS(2364), - [anon_sym_extern] = ACTIONS(2364), - [anon_sym_yield] = ACTIONS(2364), - [anon_sym_move] = ACTIONS(2364), - [anon_sym_try] = ACTIONS(2364), - [sym_integer_literal] = ACTIONS(2362), - [aux_sym_string_literal_token1] = ACTIONS(2362), - [sym_char_literal] = ACTIONS(2362), - [anon_sym_true] = ACTIONS(2364), - [anon_sym_false] = ACTIONS(2364), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2364), - [sym_super] = ACTIONS(2364), - [sym_crate] = ACTIONS(2364), - [sym_metavariable] = ACTIONS(2362), - [sym__raw_string_literal_start] = ACTIONS(2362), - [sym_float_literal] = ACTIONS(2362), + [ts_builtin_sym_end] = ACTIONS(2169), + [sym_identifier] = ACTIONS(2171), + [anon_sym_SEMI] = ACTIONS(2169), + [anon_sym_macro_rules_BANG] = ACTIONS(2169), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2169), + [anon_sym_RBRACE] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(2169), + [anon_sym_u8] = ACTIONS(2171), + [anon_sym_i8] = ACTIONS(2171), + [anon_sym_u16] = ACTIONS(2171), + [anon_sym_i16] = ACTIONS(2171), + [anon_sym_u32] = ACTIONS(2171), + [anon_sym_i32] = ACTIONS(2171), + [anon_sym_u64] = ACTIONS(2171), + [anon_sym_i64] = ACTIONS(2171), + [anon_sym_u128] = ACTIONS(2171), + [anon_sym_i128] = ACTIONS(2171), + [anon_sym_isize] = ACTIONS(2171), + [anon_sym_usize] = ACTIONS(2171), + [anon_sym_f32] = ACTIONS(2171), + [anon_sym_f64] = ACTIONS(2171), + [anon_sym_bool] = ACTIONS(2171), + [anon_sym_str] = ACTIONS(2171), + [anon_sym_char] = ACTIONS(2171), + [anon_sym_DASH] = ACTIONS(2169), + [anon_sym_BANG] = ACTIONS(2169), + [anon_sym_AMP] = ACTIONS(2169), + [anon_sym_PIPE] = ACTIONS(2169), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_DOT_DOT] = ACTIONS(2169), + [anon_sym_COLON_COLON] = ACTIONS(2169), + [anon_sym_POUND] = ACTIONS(2169), + [anon_sym_SQUOTE] = ACTIONS(2171), + [anon_sym_async] = ACTIONS(2171), + [anon_sym_break] = ACTIONS(2171), + [anon_sym_const] = ACTIONS(2171), + [anon_sym_continue] = ACTIONS(2171), + [anon_sym_default] = ACTIONS(2171), + [anon_sym_enum] = ACTIONS(2171), + [anon_sym_fn] = ACTIONS(2171), + [anon_sym_for] = ACTIONS(2171), + [anon_sym_gen] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(2171), + [anon_sym_impl] = ACTIONS(2171), + [anon_sym_let] = ACTIONS(2171), + [anon_sym_loop] = ACTIONS(2171), + [anon_sym_match] = ACTIONS(2171), + [anon_sym_mod] = ACTIONS(2171), + [anon_sym_pub] = ACTIONS(2171), + [anon_sym_return] = ACTIONS(2171), + [anon_sym_static] = ACTIONS(2171), + [anon_sym_struct] = ACTIONS(2171), + [anon_sym_trait] = ACTIONS(2171), + [anon_sym_type] = ACTIONS(2171), + [anon_sym_union] = ACTIONS(2171), + [anon_sym_unsafe] = ACTIONS(2171), + [anon_sym_use] = ACTIONS(2171), + [anon_sym_while] = ACTIONS(2171), + [anon_sym_extern] = ACTIONS(2171), + [anon_sym_yield] = ACTIONS(2171), + [anon_sym_move] = ACTIONS(2171), + [anon_sym_try] = ACTIONS(2171), + [sym_integer_literal] = ACTIONS(2169), + [aux_sym_string_literal_token1] = ACTIONS(2169), + [sym_char_literal] = ACTIONS(2169), + [anon_sym_true] = ACTIONS(2171), + [anon_sym_false] = ACTIONS(2171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2171), + [sym_super] = ACTIONS(2171), + [sym_crate] = ACTIONS(2171), + [sym_metavariable] = ACTIONS(2169), + [sym__raw_string_literal_start] = ACTIONS(2169), + [sym_float_literal] = ACTIONS(2169), }, [STATE(605)] = { [sym_line_comment] = STATE(605), [sym_block_comment] = STATE(605), - [ts_builtin_sym_end] = ACTIONS(2366), - [sym_identifier] = ACTIONS(2368), - [anon_sym_SEMI] = ACTIONS(2366), - [anon_sym_macro_rules_BANG] = ACTIONS(2366), - [anon_sym_LPAREN] = ACTIONS(2366), - [anon_sym_LBRACK] = ACTIONS(2366), - [anon_sym_LBRACE] = ACTIONS(2366), - [anon_sym_RBRACE] = ACTIONS(2366), - [anon_sym_STAR] = ACTIONS(2366), - [anon_sym_u8] = ACTIONS(2368), - [anon_sym_i8] = ACTIONS(2368), - [anon_sym_u16] = ACTIONS(2368), - [anon_sym_i16] = ACTIONS(2368), - [anon_sym_u32] = ACTIONS(2368), - [anon_sym_i32] = ACTIONS(2368), - [anon_sym_u64] = ACTIONS(2368), - [anon_sym_i64] = ACTIONS(2368), - [anon_sym_u128] = ACTIONS(2368), - [anon_sym_i128] = ACTIONS(2368), - [anon_sym_isize] = ACTIONS(2368), - [anon_sym_usize] = ACTIONS(2368), - [anon_sym_f32] = ACTIONS(2368), - [anon_sym_f64] = ACTIONS(2368), - [anon_sym_bool] = ACTIONS(2368), - [anon_sym_str] = ACTIONS(2368), - [anon_sym_char] = ACTIONS(2368), - [anon_sym_DASH] = ACTIONS(2366), - [anon_sym_BANG] = ACTIONS(2366), - [anon_sym_AMP] = ACTIONS(2366), - [anon_sym_PIPE] = ACTIONS(2366), - [anon_sym_LT] = ACTIONS(2366), - [anon_sym_DOT_DOT] = ACTIONS(2366), - [anon_sym_COLON_COLON] = ACTIONS(2366), - [anon_sym_POUND] = ACTIONS(2366), - [anon_sym_SQUOTE] = ACTIONS(2368), - [anon_sym_async] = ACTIONS(2368), - [anon_sym_break] = ACTIONS(2368), - [anon_sym_const] = ACTIONS(2368), - [anon_sym_continue] = ACTIONS(2368), - [anon_sym_default] = ACTIONS(2368), - [anon_sym_enum] = ACTIONS(2368), - [anon_sym_fn] = ACTIONS(2368), - [anon_sym_for] = ACTIONS(2368), - [anon_sym_gen] = ACTIONS(2368), - [anon_sym_if] = ACTIONS(2368), - [anon_sym_impl] = ACTIONS(2368), - [anon_sym_let] = ACTIONS(2368), - [anon_sym_loop] = ACTIONS(2368), - [anon_sym_match] = ACTIONS(2368), - [anon_sym_mod] = ACTIONS(2368), - [anon_sym_pub] = ACTIONS(2368), - [anon_sym_return] = ACTIONS(2368), - [anon_sym_static] = ACTIONS(2368), - [anon_sym_struct] = ACTIONS(2368), - [anon_sym_trait] = ACTIONS(2368), - [anon_sym_type] = ACTIONS(2368), - [anon_sym_union] = ACTIONS(2368), - [anon_sym_unsafe] = ACTIONS(2368), - [anon_sym_use] = ACTIONS(2368), - [anon_sym_while] = ACTIONS(2368), - [anon_sym_extern] = ACTIONS(2368), - [anon_sym_yield] = ACTIONS(2368), - [anon_sym_move] = ACTIONS(2368), - [anon_sym_try] = ACTIONS(2368), - [sym_integer_literal] = ACTIONS(2366), - [aux_sym_string_literal_token1] = ACTIONS(2366), - [sym_char_literal] = ACTIONS(2366), - [anon_sym_true] = ACTIONS(2368), - [anon_sym_false] = ACTIONS(2368), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2368), - [sym_super] = ACTIONS(2368), - [sym_crate] = ACTIONS(2368), - [sym_metavariable] = ACTIONS(2366), - [sym__raw_string_literal_start] = ACTIONS(2366), - [sym_float_literal] = ACTIONS(2366), + [ts_builtin_sym_end] = ACTIONS(2173), + [sym_identifier] = ACTIONS(2175), + [anon_sym_SEMI] = ACTIONS(2173), + [anon_sym_macro_rules_BANG] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_RBRACE] = ACTIONS(2173), + [anon_sym_STAR] = ACTIONS(2173), + [anon_sym_u8] = ACTIONS(2175), + [anon_sym_i8] = ACTIONS(2175), + [anon_sym_u16] = ACTIONS(2175), + [anon_sym_i16] = ACTIONS(2175), + [anon_sym_u32] = ACTIONS(2175), + [anon_sym_i32] = ACTIONS(2175), + [anon_sym_u64] = ACTIONS(2175), + [anon_sym_i64] = ACTIONS(2175), + [anon_sym_u128] = ACTIONS(2175), + [anon_sym_i128] = ACTIONS(2175), + [anon_sym_isize] = ACTIONS(2175), + [anon_sym_usize] = ACTIONS(2175), + [anon_sym_f32] = ACTIONS(2175), + [anon_sym_f64] = ACTIONS(2175), + [anon_sym_bool] = ACTIONS(2175), + [anon_sym_str] = ACTIONS(2175), + [anon_sym_char] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_BANG] = ACTIONS(2173), + [anon_sym_AMP] = ACTIONS(2173), + [anon_sym_PIPE] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_DOT_DOT] = ACTIONS(2173), + [anon_sym_COLON_COLON] = ACTIONS(2173), + [anon_sym_POUND] = ACTIONS(2173), + [anon_sym_SQUOTE] = ACTIONS(2175), + [anon_sym_async] = ACTIONS(2175), + [anon_sym_break] = ACTIONS(2175), + [anon_sym_const] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2175), + [anon_sym_default] = ACTIONS(2175), + [anon_sym_enum] = ACTIONS(2175), + [anon_sym_fn] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_gen] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_impl] = ACTIONS(2175), + [anon_sym_let] = ACTIONS(2175), + [anon_sym_loop] = ACTIONS(2175), + [anon_sym_match] = ACTIONS(2175), + [anon_sym_mod] = ACTIONS(2175), + [anon_sym_pub] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_static] = ACTIONS(2175), + [anon_sym_struct] = ACTIONS(2175), + [anon_sym_trait] = ACTIONS(2175), + [anon_sym_type] = ACTIONS(2175), + [anon_sym_union] = ACTIONS(2175), + [anon_sym_unsafe] = ACTIONS(2175), + [anon_sym_use] = ACTIONS(2175), + [anon_sym_while] = ACTIONS(2175), + [anon_sym_extern] = ACTIONS(2175), + [anon_sym_yield] = ACTIONS(2175), + [anon_sym_move] = ACTIONS(2175), + [anon_sym_try] = ACTIONS(2175), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2173), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2175), + [anon_sym_false] = ACTIONS(2175), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2175), + [sym_super] = ACTIONS(2175), + [sym_crate] = ACTIONS(2175), + [sym_metavariable] = ACTIONS(2173), + [sym__raw_string_literal_start] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), }, [STATE(606)] = { [sym_line_comment] = STATE(606), [sym_block_comment] = STATE(606), - [ts_builtin_sym_end] = ACTIONS(2370), - [sym_identifier] = ACTIONS(2372), - [anon_sym_SEMI] = ACTIONS(2370), - [anon_sym_macro_rules_BANG] = ACTIONS(2370), - [anon_sym_LPAREN] = ACTIONS(2370), - [anon_sym_LBRACK] = ACTIONS(2370), - [anon_sym_LBRACE] = ACTIONS(2370), - [anon_sym_RBRACE] = ACTIONS(2370), - [anon_sym_STAR] = ACTIONS(2370), - [anon_sym_u8] = ACTIONS(2372), - [anon_sym_i8] = ACTIONS(2372), - [anon_sym_u16] = ACTIONS(2372), - [anon_sym_i16] = ACTIONS(2372), - [anon_sym_u32] = ACTIONS(2372), - [anon_sym_i32] = ACTIONS(2372), - [anon_sym_u64] = ACTIONS(2372), - [anon_sym_i64] = ACTIONS(2372), - [anon_sym_u128] = ACTIONS(2372), - [anon_sym_i128] = ACTIONS(2372), - [anon_sym_isize] = ACTIONS(2372), - [anon_sym_usize] = ACTIONS(2372), - [anon_sym_f32] = ACTIONS(2372), - [anon_sym_f64] = ACTIONS(2372), - [anon_sym_bool] = ACTIONS(2372), - [anon_sym_str] = ACTIONS(2372), - [anon_sym_char] = ACTIONS(2372), - [anon_sym_DASH] = ACTIONS(2370), - [anon_sym_BANG] = ACTIONS(2370), - [anon_sym_AMP] = ACTIONS(2370), - [anon_sym_PIPE] = ACTIONS(2370), - [anon_sym_LT] = ACTIONS(2370), - [anon_sym_DOT_DOT] = ACTIONS(2370), - [anon_sym_COLON_COLON] = ACTIONS(2370), - [anon_sym_POUND] = ACTIONS(2370), - [anon_sym_SQUOTE] = ACTIONS(2372), - [anon_sym_async] = ACTIONS(2372), - [anon_sym_break] = ACTIONS(2372), - [anon_sym_const] = ACTIONS(2372), - [anon_sym_continue] = ACTIONS(2372), - [anon_sym_default] = ACTIONS(2372), - [anon_sym_enum] = ACTIONS(2372), - [anon_sym_fn] = ACTIONS(2372), - [anon_sym_for] = ACTIONS(2372), - [anon_sym_gen] = ACTIONS(2372), - [anon_sym_if] = ACTIONS(2372), - [anon_sym_impl] = ACTIONS(2372), - [anon_sym_let] = ACTIONS(2372), - [anon_sym_loop] = ACTIONS(2372), - [anon_sym_match] = ACTIONS(2372), - [anon_sym_mod] = ACTIONS(2372), - [anon_sym_pub] = ACTIONS(2372), - [anon_sym_return] = ACTIONS(2372), - [anon_sym_static] = ACTIONS(2372), - [anon_sym_struct] = ACTIONS(2372), - [anon_sym_trait] = ACTIONS(2372), - [anon_sym_type] = ACTIONS(2372), - [anon_sym_union] = ACTIONS(2372), - [anon_sym_unsafe] = ACTIONS(2372), - [anon_sym_use] = ACTIONS(2372), - [anon_sym_while] = ACTIONS(2372), - [anon_sym_extern] = ACTIONS(2372), - [anon_sym_yield] = ACTIONS(2372), - [anon_sym_move] = ACTIONS(2372), - [anon_sym_try] = ACTIONS(2372), - [sym_integer_literal] = ACTIONS(2370), - [aux_sym_string_literal_token1] = ACTIONS(2370), - [sym_char_literal] = ACTIONS(2370), - [anon_sym_true] = ACTIONS(2372), - [anon_sym_false] = ACTIONS(2372), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2372), - [sym_super] = ACTIONS(2372), - [sym_crate] = ACTIONS(2372), - [sym_metavariable] = ACTIONS(2370), - [sym__raw_string_literal_start] = ACTIONS(2370), - [sym_float_literal] = ACTIONS(2370), + [ts_builtin_sym_end] = ACTIONS(2177), + [sym_identifier] = ACTIONS(2179), + [anon_sym_SEMI] = ACTIONS(2177), + [anon_sym_macro_rules_BANG] = ACTIONS(2177), + [anon_sym_LPAREN] = ACTIONS(2177), + [anon_sym_LBRACK] = ACTIONS(2177), + [anon_sym_LBRACE] = ACTIONS(2177), + [anon_sym_RBRACE] = ACTIONS(2177), + [anon_sym_STAR] = ACTIONS(2177), + [anon_sym_u8] = ACTIONS(2179), + [anon_sym_i8] = ACTIONS(2179), + [anon_sym_u16] = ACTIONS(2179), + [anon_sym_i16] = ACTIONS(2179), + [anon_sym_u32] = ACTIONS(2179), + [anon_sym_i32] = ACTIONS(2179), + [anon_sym_u64] = ACTIONS(2179), + [anon_sym_i64] = ACTIONS(2179), + [anon_sym_u128] = ACTIONS(2179), + [anon_sym_i128] = ACTIONS(2179), + [anon_sym_isize] = ACTIONS(2179), + [anon_sym_usize] = ACTIONS(2179), + [anon_sym_f32] = ACTIONS(2179), + [anon_sym_f64] = ACTIONS(2179), + [anon_sym_bool] = ACTIONS(2179), + [anon_sym_str] = ACTIONS(2179), + [anon_sym_char] = ACTIONS(2179), + [anon_sym_DASH] = ACTIONS(2177), + [anon_sym_BANG] = ACTIONS(2177), + [anon_sym_AMP] = ACTIONS(2177), + [anon_sym_PIPE] = ACTIONS(2177), + [anon_sym_LT] = ACTIONS(2177), + [anon_sym_DOT_DOT] = ACTIONS(2177), + [anon_sym_COLON_COLON] = ACTIONS(2177), + [anon_sym_POUND] = ACTIONS(2177), + [anon_sym_SQUOTE] = ACTIONS(2179), + [anon_sym_async] = ACTIONS(2179), + [anon_sym_break] = ACTIONS(2179), + [anon_sym_const] = ACTIONS(2179), + [anon_sym_continue] = ACTIONS(2179), + [anon_sym_default] = ACTIONS(2179), + [anon_sym_enum] = ACTIONS(2179), + [anon_sym_fn] = ACTIONS(2179), + [anon_sym_for] = ACTIONS(2179), + [anon_sym_gen] = ACTIONS(2179), + [anon_sym_if] = ACTIONS(2179), + [anon_sym_impl] = ACTIONS(2179), + [anon_sym_let] = ACTIONS(2179), + [anon_sym_loop] = ACTIONS(2179), + [anon_sym_match] = ACTIONS(2179), + [anon_sym_mod] = ACTIONS(2179), + [anon_sym_pub] = ACTIONS(2179), + [anon_sym_return] = ACTIONS(2179), + [anon_sym_static] = ACTIONS(2179), + [anon_sym_struct] = ACTIONS(2179), + [anon_sym_trait] = ACTIONS(2179), + [anon_sym_type] = ACTIONS(2179), + [anon_sym_union] = ACTIONS(2179), + [anon_sym_unsafe] = ACTIONS(2179), + [anon_sym_use] = ACTIONS(2179), + [anon_sym_while] = ACTIONS(2179), + [anon_sym_extern] = ACTIONS(2179), + [anon_sym_yield] = ACTIONS(2179), + [anon_sym_move] = ACTIONS(2179), + [anon_sym_try] = ACTIONS(2179), + [sym_integer_literal] = ACTIONS(2177), + [aux_sym_string_literal_token1] = ACTIONS(2177), + [sym_char_literal] = ACTIONS(2177), + [anon_sym_true] = ACTIONS(2179), + [anon_sym_false] = ACTIONS(2179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2179), + [sym_super] = ACTIONS(2179), + [sym_crate] = ACTIONS(2179), + [sym_metavariable] = ACTIONS(2177), + [sym__raw_string_literal_start] = ACTIONS(2177), + [sym_float_literal] = ACTIONS(2177), }, [STATE(607)] = { [sym_line_comment] = STATE(607), [sym_block_comment] = STATE(607), - [ts_builtin_sym_end] = ACTIONS(2374), - [sym_identifier] = ACTIONS(2376), - [anon_sym_SEMI] = ACTIONS(2374), - [anon_sym_macro_rules_BANG] = ACTIONS(2374), - [anon_sym_LPAREN] = ACTIONS(2374), - [anon_sym_LBRACK] = ACTIONS(2374), - [anon_sym_LBRACE] = ACTIONS(2374), - [anon_sym_RBRACE] = ACTIONS(2374), - [anon_sym_STAR] = ACTIONS(2374), - [anon_sym_u8] = ACTIONS(2376), - [anon_sym_i8] = ACTIONS(2376), - [anon_sym_u16] = ACTIONS(2376), - [anon_sym_i16] = ACTIONS(2376), - [anon_sym_u32] = ACTIONS(2376), - [anon_sym_i32] = ACTIONS(2376), - [anon_sym_u64] = ACTIONS(2376), - [anon_sym_i64] = ACTIONS(2376), - [anon_sym_u128] = ACTIONS(2376), - [anon_sym_i128] = ACTIONS(2376), - [anon_sym_isize] = ACTIONS(2376), - [anon_sym_usize] = ACTIONS(2376), - [anon_sym_f32] = ACTIONS(2376), - [anon_sym_f64] = ACTIONS(2376), - [anon_sym_bool] = ACTIONS(2376), - [anon_sym_str] = ACTIONS(2376), - [anon_sym_char] = ACTIONS(2376), - [anon_sym_DASH] = ACTIONS(2374), - [anon_sym_BANG] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(2374), - [anon_sym_PIPE] = ACTIONS(2374), - [anon_sym_LT] = ACTIONS(2374), - [anon_sym_DOT_DOT] = ACTIONS(2374), - [anon_sym_COLON_COLON] = ACTIONS(2374), - [anon_sym_POUND] = ACTIONS(2374), - [anon_sym_SQUOTE] = ACTIONS(2376), - [anon_sym_async] = ACTIONS(2376), - [anon_sym_break] = ACTIONS(2376), - [anon_sym_const] = ACTIONS(2376), - [anon_sym_continue] = ACTIONS(2376), - [anon_sym_default] = ACTIONS(2376), - [anon_sym_enum] = ACTIONS(2376), - [anon_sym_fn] = ACTIONS(2376), - [anon_sym_for] = ACTIONS(2376), - [anon_sym_gen] = ACTIONS(2376), - [anon_sym_if] = ACTIONS(2376), - [anon_sym_impl] = ACTIONS(2376), - [anon_sym_let] = ACTIONS(2376), - [anon_sym_loop] = ACTIONS(2376), - [anon_sym_match] = ACTIONS(2376), - [anon_sym_mod] = ACTIONS(2376), - [anon_sym_pub] = ACTIONS(2376), - [anon_sym_return] = ACTIONS(2376), - [anon_sym_static] = ACTIONS(2376), - [anon_sym_struct] = ACTIONS(2376), - [anon_sym_trait] = ACTIONS(2376), - [anon_sym_type] = ACTIONS(2376), - [anon_sym_union] = ACTIONS(2376), - [anon_sym_unsafe] = ACTIONS(2376), - [anon_sym_use] = ACTIONS(2376), - [anon_sym_while] = ACTIONS(2376), - [anon_sym_extern] = ACTIONS(2376), - [anon_sym_yield] = ACTIONS(2376), - [anon_sym_move] = ACTIONS(2376), - [anon_sym_try] = ACTIONS(2376), - [sym_integer_literal] = ACTIONS(2374), - [aux_sym_string_literal_token1] = ACTIONS(2374), - [sym_char_literal] = ACTIONS(2374), - [anon_sym_true] = ACTIONS(2376), - [anon_sym_false] = ACTIONS(2376), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2376), - [sym_super] = ACTIONS(2376), - [sym_crate] = ACTIONS(2376), - [sym_metavariable] = ACTIONS(2374), - [sym__raw_string_literal_start] = ACTIONS(2374), - [sym_float_literal] = ACTIONS(2374), + [ts_builtin_sym_end] = ACTIONS(2181), + [sym_identifier] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2181), + [anon_sym_macro_rules_BANG] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_RBRACE] = ACTIONS(2181), + [anon_sym_STAR] = ACTIONS(2181), + [anon_sym_u8] = ACTIONS(2183), + [anon_sym_i8] = ACTIONS(2183), + [anon_sym_u16] = ACTIONS(2183), + [anon_sym_i16] = ACTIONS(2183), + [anon_sym_u32] = ACTIONS(2183), + [anon_sym_i32] = ACTIONS(2183), + [anon_sym_u64] = ACTIONS(2183), + [anon_sym_i64] = ACTIONS(2183), + [anon_sym_u128] = ACTIONS(2183), + [anon_sym_i128] = ACTIONS(2183), + [anon_sym_isize] = ACTIONS(2183), + [anon_sym_usize] = ACTIONS(2183), + [anon_sym_f32] = ACTIONS(2183), + [anon_sym_f64] = ACTIONS(2183), + [anon_sym_bool] = ACTIONS(2183), + [anon_sym_str] = ACTIONS(2183), + [anon_sym_char] = ACTIONS(2183), + [anon_sym_DASH] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(2181), + [anon_sym_AMP] = ACTIONS(2181), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_LT] = ACTIONS(2181), + [anon_sym_DOT_DOT] = ACTIONS(2181), + [anon_sym_COLON_COLON] = ACTIONS(2181), + [anon_sym_POUND] = ACTIONS(2181), + [anon_sym_SQUOTE] = ACTIONS(2183), + [anon_sym_async] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_const] = ACTIONS(2183), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_default] = ACTIONS(2183), + [anon_sym_enum] = ACTIONS(2183), + [anon_sym_fn] = ACTIONS(2183), + [anon_sym_for] = ACTIONS(2183), + [anon_sym_gen] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2183), + [anon_sym_impl] = ACTIONS(2183), + [anon_sym_let] = ACTIONS(2183), + [anon_sym_loop] = ACTIONS(2183), + [anon_sym_match] = ACTIONS(2183), + [anon_sym_mod] = ACTIONS(2183), + [anon_sym_pub] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2183), + [anon_sym_static] = ACTIONS(2183), + [anon_sym_struct] = ACTIONS(2183), + [anon_sym_trait] = ACTIONS(2183), + [anon_sym_type] = ACTIONS(2183), + [anon_sym_union] = ACTIONS(2183), + [anon_sym_unsafe] = ACTIONS(2183), + [anon_sym_use] = ACTIONS(2183), + [anon_sym_while] = ACTIONS(2183), + [anon_sym_extern] = ACTIONS(2183), + [anon_sym_yield] = ACTIONS(2183), + [anon_sym_move] = ACTIONS(2183), + [anon_sym_try] = ACTIONS(2183), + [sym_integer_literal] = ACTIONS(2181), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2181), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2183), + [sym_super] = ACTIONS(2183), + [sym_crate] = ACTIONS(2183), + [sym_metavariable] = ACTIONS(2181), + [sym__raw_string_literal_start] = ACTIONS(2181), + [sym_float_literal] = ACTIONS(2181), }, [STATE(608)] = { [sym_line_comment] = STATE(608), [sym_block_comment] = STATE(608), - [ts_builtin_sym_end] = ACTIONS(2378), - [sym_identifier] = ACTIONS(2380), - [anon_sym_SEMI] = ACTIONS(2378), - [anon_sym_macro_rules_BANG] = ACTIONS(2378), - [anon_sym_LPAREN] = ACTIONS(2378), - [anon_sym_LBRACK] = ACTIONS(2378), - [anon_sym_LBRACE] = ACTIONS(2378), - [anon_sym_RBRACE] = ACTIONS(2378), - [anon_sym_STAR] = ACTIONS(2378), - [anon_sym_u8] = ACTIONS(2380), - [anon_sym_i8] = ACTIONS(2380), - [anon_sym_u16] = ACTIONS(2380), - [anon_sym_i16] = ACTIONS(2380), - [anon_sym_u32] = ACTIONS(2380), - [anon_sym_i32] = ACTIONS(2380), - [anon_sym_u64] = ACTIONS(2380), - [anon_sym_i64] = ACTIONS(2380), - [anon_sym_u128] = ACTIONS(2380), - [anon_sym_i128] = ACTIONS(2380), - [anon_sym_isize] = ACTIONS(2380), - [anon_sym_usize] = ACTIONS(2380), - [anon_sym_f32] = ACTIONS(2380), - [anon_sym_f64] = ACTIONS(2380), - [anon_sym_bool] = ACTIONS(2380), - [anon_sym_str] = ACTIONS(2380), - [anon_sym_char] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2378), - [anon_sym_BANG] = ACTIONS(2378), - [anon_sym_AMP] = ACTIONS(2378), - [anon_sym_PIPE] = ACTIONS(2378), - [anon_sym_LT] = ACTIONS(2378), - [anon_sym_DOT_DOT] = ACTIONS(2378), - [anon_sym_COLON_COLON] = ACTIONS(2378), - [anon_sym_POUND] = ACTIONS(2378), - [anon_sym_SQUOTE] = ACTIONS(2380), - [anon_sym_async] = ACTIONS(2380), - [anon_sym_break] = ACTIONS(2380), - [anon_sym_const] = ACTIONS(2380), - [anon_sym_continue] = ACTIONS(2380), - [anon_sym_default] = ACTIONS(2380), - [anon_sym_enum] = ACTIONS(2380), - [anon_sym_fn] = ACTIONS(2380), - [anon_sym_for] = ACTIONS(2380), - [anon_sym_gen] = ACTIONS(2380), - [anon_sym_if] = ACTIONS(2380), - [anon_sym_impl] = ACTIONS(2380), - [anon_sym_let] = ACTIONS(2380), - [anon_sym_loop] = ACTIONS(2380), - [anon_sym_match] = ACTIONS(2380), - [anon_sym_mod] = ACTIONS(2380), - [anon_sym_pub] = ACTIONS(2380), - [anon_sym_return] = ACTIONS(2380), - [anon_sym_static] = ACTIONS(2380), - [anon_sym_struct] = ACTIONS(2380), - [anon_sym_trait] = ACTIONS(2380), - [anon_sym_type] = ACTIONS(2380), - [anon_sym_union] = ACTIONS(2380), - [anon_sym_unsafe] = ACTIONS(2380), - [anon_sym_use] = ACTIONS(2380), - [anon_sym_while] = ACTIONS(2380), - [anon_sym_extern] = ACTIONS(2380), - [anon_sym_yield] = ACTIONS(2380), - [anon_sym_move] = ACTIONS(2380), - [anon_sym_try] = ACTIONS(2380), - [sym_integer_literal] = ACTIONS(2378), - [aux_sym_string_literal_token1] = ACTIONS(2378), - [sym_char_literal] = ACTIONS(2378), - [anon_sym_true] = ACTIONS(2380), - [anon_sym_false] = ACTIONS(2380), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2380), - [sym_super] = ACTIONS(2380), - [sym_crate] = ACTIONS(2380), - [sym_metavariable] = ACTIONS(2378), - [sym__raw_string_literal_start] = ACTIONS(2378), - [sym_float_literal] = ACTIONS(2378), + [ts_builtin_sym_end] = ACTIONS(2185), + [sym_identifier] = ACTIONS(2187), + [anon_sym_SEMI] = ACTIONS(2185), + [anon_sym_macro_rules_BANG] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_RBRACE] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2185), + [anon_sym_u8] = ACTIONS(2187), + [anon_sym_i8] = ACTIONS(2187), + [anon_sym_u16] = ACTIONS(2187), + [anon_sym_i16] = ACTIONS(2187), + [anon_sym_u32] = ACTIONS(2187), + [anon_sym_i32] = ACTIONS(2187), + [anon_sym_u64] = ACTIONS(2187), + [anon_sym_i64] = ACTIONS(2187), + [anon_sym_u128] = ACTIONS(2187), + [anon_sym_i128] = ACTIONS(2187), + [anon_sym_isize] = ACTIONS(2187), + [anon_sym_usize] = ACTIONS(2187), + [anon_sym_f32] = ACTIONS(2187), + [anon_sym_f64] = ACTIONS(2187), + [anon_sym_bool] = ACTIONS(2187), + [anon_sym_str] = ACTIONS(2187), + [anon_sym_char] = ACTIONS(2187), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_BANG] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2185), + [anon_sym_PIPE] = ACTIONS(2185), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_DOT_DOT] = ACTIONS(2185), + [anon_sym_COLON_COLON] = ACTIONS(2185), + [anon_sym_POUND] = ACTIONS(2185), + [anon_sym_SQUOTE] = ACTIONS(2187), + [anon_sym_async] = ACTIONS(2187), + [anon_sym_break] = ACTIONS(2187), + [anon_sym_const] = ACTIONS(2187), + [anon_sym_continue] = ACTIONS(2187), + [anon_sym_default] = ACTIONS(2187), + [anon_sym_enum] = ACTIONS(2187), + [anon_sym_fn] = ACTIONS(2187), + [anon_sym_for] = ACTIONS(2187), + [anon_sym_gen] = ACTIONS(2187), + [anon_sym_if] = ACTIONS(2187), + [anon_sym_impl] = ACTIONS(2187), + [anon_sym_let] = ACTIONS(2187), + [anon_sym_loop] = ACTIONS(2187), + [anon_sym_match] = ACTIONS(2187), + [anon_sym_mod] = ACTIONS(2187), + [anon_sym_pub] = ACTIONS(2187), + [anon_sym_return] = ACTIONS(2187), + [anon_sym_static] = ACTIONS(2187), + [anon_sym_struct] = ACTIONS(2187), + [anon_sym_trait] = ACTIONS(2187), + [anon_sym_type] = ACTIONS(2187), + [anon_sym_union] = ACTIONS(2187), + [anon_sym_unsafe] = ACTIONS(2187), + [anon_sym_use] = ACTIONS(2187), + [anon_sym_while] = ACTIONS(2187), + [anon_sym_extern] = ACTIONS(2187), + [anon_sym_yield] = ACTIONS(2187), + [anon_sym_move] = ACTIONS(2187), + [anon_sym_try] = ACTIONS(2187), + [sym_integer_literal] = ACTIONS(2185), + [aux_sym_string_literal_token1] = ACTIONS(2185), + [sym_char_literal] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2187), + [anon_sym_false] = ACTIONS(2187), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2187), + [sym_super] = ACTIONS(2187), + [sym_crate] = ACTIONS(2187), + [sym_metavariable] = ACTIONS(2185), + [sym__raw_string_literal_start] = ACTIONS(2185), + [sym_float_literal] = ACTIONS(2185), }, [STATE(609)] = { [sym_line_comment] = STATE(609), [sym_block_comment] = STATE(609), - [ts_builtin_sym_end] = ACTIONS(2382), - [sym_identifier] = ACTIONS(2384), - [anon_sym_SEMI] = ACTIONS(2382), - [anon_sym_macro_rules_BANG] = ACTIONS(2382), - [anon_sym_LPAREN] = ACTIONS(2382), - [anon_sym_LBRACK] = ACTIONS(2382), - [anon_sym_LBRACE] = ACTIONS(2382), - [anon_sym_RBRACE] = ACTIONS(2382), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_u8] = ACTIONS(2384), - [anon_sym_i8] = ACTIONS(2384), - [anon_sym_u16] = ACTIONS(2384), - [anon_sym_i16] = ACTIONS(2384), - [anon_sym_u32] = ACTIONS(2384), - [anon_sym_i32] = ACTIONS(2384), - [anon_sym_u64] = ACTIONS(2384), - [anon_sym_i64] = ACTIONS(2384), - [anon_sym_u128] = ACTIONS(2384), - [anon_sym_i128] = ACTIONS(2384), - [anon_sym_isize] = ACTIONS(2384), - [anon_sym_usize] = ACTIONS(2384), - [anon_sym_f32] = ACTIONS(2384), - [anon_sym_f64] = ACTIONS(2384), - [anon_sym_bool] = ACTIONS(2384), - [anon_sym_str] = ACTIONS(2384), - [anon_sym_char] = ACTIONS(2384), - [anon_sym_DASH] = ACTIONS(2382), - [anon_sym_BANG] = ACTIONS(2382), - [anon_sym_AMP] = ACTIONS(2382), - [anon_sym_PIPE] = ACTIONS(2382), - [anon_sym_LT] = ACTIONS(2382), - [anon_sym_DOT_DOT] = ACTIONS(2382), - [anon_sym_COLON_COLON] = ACTIONS(2382), - [anon_sym_POUND] = ACTIONS(2382), - [anon_sym_SQUOTE] = ACTIONS(2384), - [anon_sym_async] = ACTIONS(2384), - [anon_sym_break] = ACTIONS(2384), - [anon_sym_const] = ACTIONS(2384), - [anon_sym_continue] = ACTIONS(2384), - [anon_sym_default] = ACTIONS(2384), - [anon_sym_enum] = ACTIONS(2384), - [anon_sym_fn] = ACTIONS(2384), - [anon_sym_for] = ACTIONS(2384), - [anon_sym_gen] = ACTIONS(2384), - [anon_sym_if] = ACTIONS(2384), - [anon_sym_impl] = ACTIONS(2384), - [anon_sym_let] = ACTIONS(2384), - [anon_sym_loop] = ACTIONS(2384), - [anon_sym_match] = ACTIONS(2384), - [anon_sym_mod] = ACTIONS(2384), - [anon_sym_pub] = ACTIONS(2384), - [anon_sym_return] = ACTIONS(2384), - [anon_sym_static] = ACTIONS(2384), - [anon_sym_struct] = ACTIONS(2384), - [anon_sym_trait] = ACTIONS(2384), - [anon_sym_type] = ACTIONS(2384), - [anon_sym_union] = ACTIONS(2384), - [anon_sym_unsafe] = ACTIONS(2384), - [anon_sym_use] = ACTIONS(2384), - [anon_sym_while] = ACTIONS(2384), - [anon_sym_extern] = ACTIONS(2384), - [anon_sym_yield] = ACTIONS(2384), - [anon_sym_move] = ACTIONS(2384), - [anon_sym_try] = ACTIONS(2384), - [sym_integer_literal] = ACTIONS(2382), - [aux_sym_string_literal_token1] = ACTIONS(2382), - [sym_char_literal] = ACTIONS(2382), - [anon_sym_true] = ACTIONS(2384), - [anon_sym_false] = ACTIONS(2384), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2384), - [sym_super] = ACTIONS(2384), - [sym_crate] = ACTIONS(2384), - [sym_metavariable] = ACTIONS(2382), - [sym__raw_string_literal_start] = ACTIONS(2382), - [sym_float_literal] = ACTIONS(2382), + [ts_builtin_sym_end] = ACTIONS(2189), + [sym_identifier] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2189), + [anon_sym_macro_rules_BANG] = ACTIONS(2189), + [anon_sym_LPAREN] = ACTIONS(2189), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_LBRACE] = ACTIONS(2189), + [anon_sym_RBRACE] = ACTIONS(2189), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2191), + [anon_sym_i8] = ACTIONS(2191), + [anon_sym_u16] = ACTIONS(2191), + [anon_sym_i16] = ACTIONS(2191), + [anon_sym_u32] = ACTIONS(2191), + [anon_sym_i32] = ACTIONS(2191), + [anon_sym_u64] = ACTIONS(2191), + [anon_sym_i64] = ACTIONS(2191), + [anon_sym_u128] = ACTIONS(2191), + [anon_sym_i128] = ACTIONS(2191), + [anon_sym_isize] = ACTIONS(2191), + [anon_sym_usize] = ACTIONS(2191), + [anon_sym_f32] = ACTIONS(2191), + [anon_sym_f64] = ACTIONS(2191), + [anon_sym_bool] = ACTIONS(2191), + [anon_sym_str] = ACTIONS(2191), + [anon_sym_char] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2189), + [anon_sym_AMP] = ACTIONS(2189), + [anon_sym_PIPE] = ACTIONS(2189), + [anon_sym_LT] = ACTIONS(2189), + [anon_sym_DOT_DOT] = ACTIONS(2189), + [anon_sym_COLON_COLON] = ACTIONS(2189), + [anon_sym_POUND] = ACTIONS(2189), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_default] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [anon_sym_fn] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_gen] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_impl] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_loop] = ACTIONS(2191), + [anon_sym_match] = ACTIONS(2191), + [anon_sym_mod] = ACTIONS(2191), + [anon_sym_pub] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_struct] = ACTIONS(2191), + [anon_sym_trait] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_union] = ACTIONS(2191), + [anon_sym_unsafe] = ACTIONS(2191), + [anon_sym_use] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_extern] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_move] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2189), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2191), + [anon_sym_false] = ACTIONS(2191), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_crate] = ACTIONS(2191), + [sym_metavariable] = ACTIONS(2189), + [sym__raw_string_literal_start] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), }, [STATE(610)] = { [sym_line_comment] = STATE(610), [sym_block_comment] = STATE(610), - [ts_builtin_sym_end] = ACTIONS(2386), - [sym_identifier] = ACTIONS(2388), - [anon_sym_SEMI] = ACTIONS(2386), - [anon_sym_macro_rules_BANG] = ACTIONS(2386), - [anon_sym_LPAREN] = ACTIONS(2386), - [anon_sym_LBRACK] = ACTIONS(2386), - [anon_sym_LBRACE] = ACTIONS(2386), - [anon_sym_RBRACE] = ACTIONS(2386), - [anon_sym_STAR] = ACTIONS(2386), - [anon_sym_u8] = ACTIONS(2388), - [anon_sym_i8] = ACTIONS(2388), - [anon_sym_u16] = ACTIONS(2388), - [anon_sym_i16] = ACTIONS(2388), - [anon_sym_u32] = ACTIONS(2388), - [anon_sym_i32] = ACTIONS(2388), - [anon_sym_u64] = ACTIONS(2388), - [anon_sym_i64] = ACTIONS(2388), - [anon_sym_u128] = ACTIONS(2388), - [anon_sym_i128] = ACTIONS(2388), - [anon_sym_isize] = ACTIONS(2388), - [anon_sym_usize] = ACTIONS(2388), - [anon_sym_f32] = ACTIONS(2388), - [anon_sym_f64] = ACTIONS(2388), - [anon_sym_bool] = ACTIONS(2388), - [anon_sym_str] = ACTIONS(2388), - [anon_sym_char] = ACTIONS(2388), - [anon_sym_DASH] = ACTIONS(2386), - [anon_sym_BANG] = ACTIONS(2386), - [anon_sym_AMP] = ACTIONS(2386), - [anon_sym_PIPE] = ACTIONS(2386), - [anon_sym_LT] = ACTIONS(2386), - [anon_sym_DOT_DOT] = ACTIONS(2386), - [anon_sym_COLON_COLON] = ACTIONS(2386), - [anon_sym_POUND] = ACTIONS(2386), - [anon_sym_SQUOTE] = ACTIONS(2388), - [anon_sym_async] = ACTIONS(2388), - [anon_sym_break] = ACTIONS(2388), - [anon_sym_const] = ACTIONS(2388), - [anon_sym_continue] = ACTIONS(2388), - [anon_sym_default] = ACTIONS(2388), - [anon_sym_enum] = ACTIONS(2388), - [anon_sym_fn] = ACTIONS(2388), - [anon_sym_for] = ACTIONS(2388), - [anon_sym_gen] = ACTIONS(2388), - [anon_sym_if] = ACTIONS(2388), - [anon_sym_impl] = ACTIONS(2388), - [anon_sym_let] = ACTIONS(2388), - [anon_sym_loop] = ACTIONS(2388), - [anon_sym_match] = ACTIONS(2388), - [anon_sym_mod] = ACTIONS(2388), - [anon_sym_pub] = ACTIONS(2388), - [anon_sym_return] = ACTIONS(2388), - [anon_sym_static] = ACTIONS(2388), - [anon_sym_struct] = ACTIONS(2388), - [anon_sym_trait] = ACTIONS(2388), - [anon_sym_type] = ACTIONS(2388), - [anon_sym_union] = ACTIONS(2388), - [anon_sym_unsafe] = ACTIONS(2388), - [anon_sym_use] = ACTIONS(2388), - [anon_sym_while] = ACTIONS(2388), - [anon_sym_extern] = ACTIONS(2388), - [anon_sym_yield] = ACTIONS(2388), - [anon_sym_move] = ACTIONS(2388), - [anon_sym_try] = ACTIONS(2388), - [sym_integer_literal] = ACTIONS(2386), - [aux_sym_string_literal_token1] = ACTIONS(2386), - [sym_char_literal] = ACTIONS(2386), - [anon_sym_true] = ACTIONS(2388), - [anon_sym_false] = ACTIONS(2388), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2388), - [sym_super] = ACTIONS(2388), - [sym_crate] = ACTIONS(2388), - [sym_metavariable] = ACTIONS(2386), - [sym__raw_string_literal_start] = ACTIONS(2386), - [sym_float_literal] = ACTIONS(2386), + [ts_builtin_sym_end] = ACTIONS(2193), + [sym_identifier] = ACTIONS(2195), + [anon_sym_SEMI] = ACTIONS(2193), + [anon_sym_macro_rules_BANG] = ACTIONS(2193), + [anon_sym_LPAREN] = ACTIONS(2193), + [anon_sym_LBRACK] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_RBRACE] = ACTIONS(2193), + [anon_sym_STAR] = ACTIONS(2193), + [anon_sym_u8] = ACTIONS(2195), + [anon_sym_i8] = ACTIONS(2195), + [anon_sym_u16] = ACTIONS(2195), + [anon_sym_i16] = ACTIONS(2195), + [anon_sym_u32] = ACTIONS(2195), + [anon_sym_i32] = ACTIONS(2195), + [anon_sym_u64] = ACTIONS(2195), + [anon_sym_i64] = ACTIONS(2195), + [anon_sym_u128] = ACTIONS(2195), + [anon_sym_i128] = ACTIONS(2195), + [anon_sym_isize] = ACTIONS(2195), + [anon_sym_usize] = ACTIONS(2195), + [anon_sym_f32] = ACTIONS(2195), + [anon_sym_f64] = ACTIONS(2195), + [anon_sym_bool] = ACTIONS(2195), + [anon_sym_str] = ACTIONS(2195), + [anon_sym_char] = ACTIONS(2195), + [anon_sym_DASH] = ACTIONS(2193), + [anon_sym_BANG] = ACTIONS(2193), + [anon_sym_AMP] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2193), + [anon_sym_LT] = ACTIONS(2193), + [anon_sym_DOT_DOT] = ACTIONS(2193), + [anon_sym_COLON_COLON] = ACTIONS(2193), + [anon_sym_POUND] = ACTIONS(2193), + [anon_sym_SQUOTE] = ACTIONS(2195), + [anon_sym_async] = ACTIONS(2195), + [anon_sym_break] = ACTIONS(2195), + [anon_sym_const] = ACTIONS(2195), + [anon_sym_continue] = ACTIONS(2195), + [anon_sym_default] = ACTIONS(2195), + [anon_sym_enum] = ACTIONS(2195), + [anon_sym_fn] = ACTIONS(2195), + [anon_sym_for] = ACTIONS(2195), + [anon_sym_gen] = ACTIONS(2195), + [anon_sym_if] = ACTIONS(2195), + [anon_sym_impl] = ACTIONS(2195), + [anon_sym_let] = ACTIONS(2195), + [anon_sym_loop] = ACTIONS(2195), + [anon_sym_match] = ACTIONS(2195), + [anon_sym_mod] = ACTIONS(2195), + [anon_sym_pub] = ACTIONS(2195), + [anon_sym_return] = ACTIONS(2195), + [anon_sym_static] = ACTIONS(2195), + [anon_sym_struct] = ACTIONS(2195), + [anon_sym_trait] = ACTIONS(2195), + [anon_sym_type] = ACTIONS(2195), + [anon_sym_union] = ACTIONS(2195), + [anon_sym_unsafe] = ACTIONS(2195), + [anon_sym_use] = ACTIONS(2195), + [anon_sym_while] = ACTIONS(2195), + [anon_sym_extern] = ACTIONS(2195), + [anon_sym_yield] = ACTIONS(2195), + [anon_sym_move] = ACTIONS(2195), + [anon_sym_try] = ACTIONS(2195), + [sym_integer_literal] = ACTIONS(2193), + [aux_sym_string_literal_token1] = ACTIONS(2193), + [sym_char_literal] = ACTIONS(2193), + [anon_sym_true] = ACTIONS(2195), + [anon_sym_false] = ACTIONS(2195), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2195), + [sym_super] = ACTIONS(2195), + [sym_crate] = ACTIONS(2195), + [sym_metavariable] = ACTIONS(2193), + [sym__raw_string_literal_start] = ACTIONS(2193), + [sym_float_literal] = ACTIONS(2193), }, [STATE(611)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym_closure_expression] = STATE(3249), - [sym_closure_parameters] = STATE(217), - [sym__pattern] = STATE(2952), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(611), [sym_block_comment] = STATE(611), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_async] = ACTIONS(1741), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_static] = ACTIONS(1423), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [anon_sym_move] = ACTIONS(1427), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [ts_builtin_sym_end] = ACTIONS(2197), + [sym_identifier] = ACTIONS(2199), + [anon_sym_SEMI] = ACTIONS(2197), + [anon_sym_macro_rules_BANG] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_STAR] = ACTIONS(2197), + [anon_sym_u8] = ACTIONS(2199), + [anon_sym_i8] = ACTIONS(2199), + [anon_sym_u16] = ACTIONS(2199), + [anon_sym_i16] = ACTIONS(2199), + [anon_sym_u32] = ACTIONS(2199), + [anon_sym_i32] = ACTIONS(2199), + [anon_sym_u64] = ACTIONS(2199), + [anon_sym_i64] = ACTIONS(2199), + [anon_sym_u128] = ACTIONS(2199), + [anon_sym_i128] = ACTIONS(2199), + [anon_sym_isize] = ACTIONS(2199), + [anon_sym_usize] = ACTIONS(2199), + [anon_sym_f32] = ACTIONS(2199), + [anon_sym_f64] = ACTIONS(2199), + [anon_sym_bool] = ACTIONS(2199), + [anon_sym_str] = ACTIONS(2199), + [anon_sym_char] = ACTIONS(2199), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_BANG] = ACTIONS(2197), + [anon_sym_AMP] = ACTIONS(2197), + [anon_sym_PIPE] = ACTIONS(2197), + [anon_sym_LT] = ACTIONS(2197), + [anon_sym_DOT_DOT] = ACTIONS(2197), + [anon_sym_COLON_COLON] = ACTIONS(2197), + [anon_sym_POUND] = ACTIONS(2197), + [anon_sym_SQUOTE] = ACTIONS(2199), + [anon_sym_async] = ACTIONS(2199), + [anon_sym_break] = ACTIONS(2199), + [anon_sym_const] = ACTIONS(2199), + [anon_sym_continue] = ACTIONS(2199), + [anon_sym_default] = ACTIONS(2199), + [anon_sym_enum] = ACTIONS(2199), + [anon_sym_fn] = ACTIONS(2199), + [anon_sym_for] = ACTIONS(2199), + [anon_sym_gen] = ACTIONS(2199), + [anon_sym_if] = ACTIONS(2199), + [anon_sym_impl] = ACTIONS(2199), + [anon_sym_let] = ACTIONS(2199), + [anon_sym_loop] = ACTIONS(2199), + [anon_sym_match] = ACTIONS(2199), + [anon_sym_mod] = ACTIONS(2199), + [anon_sym_pub] = ACTIONS(2199), + [anon_sym_return] = ACTIONS(2199), + [anon_sym_static] = ACTIONS(2199), + [anon_sym_struct] = ACTIONS(2199), + [anon_sym_trait] = ACTIONS(2199), + [anon_sym_type] = ACTIONS(2199), + [anon_sym_union] = ACTIONS(2199), + [anon_sym_unsafe] = ACTIONS(2199), + [anon_sym_use] = ACTIONS(2199), + [anon_sym_while] = ACTIONS(2199), + [anon_sym_extern] = ACTIONS(2199), + [anon_sym_yield] = ACTIONS(2199), + [anon_sym_move] = ACTIONS(2199), + [anon_sym_try] = ACTIONS(2199), + [sym_integer_literal] = ACTIONS(2197), + [aux_sym_string_literal_token1] = ACTIONS(2197), + [sym_char_literal] = ACTIONS(2197), + [anon_sym_true] = ACTIONS(2199), + [anon_sym_false] = ACTIONS(2199), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2199), + [sym_super] = ACTIONS(2199), + [sym_crate] = ACTIONS(2199), + [sym_metavariable] = ACTIONS(2197), + [sym__raw_string_literal_start] = ACTIONS(2197), + [sym_float_literal] = ACTIONS(2197), }, [STATE(612)] = { [sym_line_comment] = STATE(612), [sym_block_comment] = STATE(612), - [ts_builtin_sym_end] = ACTIONS(1445), - [sym_identifier] = ACTIONS(1447), - [anon_sym_SEMI] = ACTIONS(1445), - [anon_sym_macro_rules_BANG] = ACTIONS(1445), - [anon_sym_LPAREN] = ACTIONS(1445), - [anon_sym_LBRACK] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(1445), - [anon_sym_RBRACE] = ACTIONS(1445), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1447), - [anon_sym_i8] = ACTIONS(1447), - [anon_sym_u16] = ACTIONS(1447), - [anon_sym_i16] = ACTIONS(1447), - [anon_sym_u32] = ACTIONS(1447), - [anon_sym_i32] = ACTIONS(1447), - [anon_sym_u64] = ACTIONS(1447), - [anon_sym_i64] = ACTIONS(1447), - [anon_sym_u128] = ACTIONS(1447), - [anon_sym_i128] = ACTIONS(1447), - [anon_sym_isize] = ACTIONS(1447), - [anon_sym_usize] = ACTIONS(1447), - [anon_sym_f32] = ACTIONS(1447), - [anon_sym_f64] = ACTIONS(1447), - [anon_sym_bool] = ACTIONS(1447), - [anon_sym_str] = ACTIONS(1447), - [anon_sym_char] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_PIPE] = ACTIONS(1445), - [anon_sym_LT] = ACTIONS(1445), - [anon_sym_DOT_DOT] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1445), - [anon_sym_POUND] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [anon_sym_async] = ACTIONS(1447), - [anon_sym_break] = ACTIONS(1447), - [anon_sym_const] = ACTIONS(1447), - [anon_sym_continue] = ACTIONS(1447), - [anon_sym_default] = ACTIONS(1447), - [anon_sym_enum] = ACTIONS(1447), - [anon_sym_fn] = ACTIONS(1447), - [anon_sym_for] = ACTIONS(1447), - [anon_sym_gen] = ACTIONS(1447), - [anon_sym_if] = ACTIONS(1447), - [anon_sym_impl] = ACTIONS(1447), - [anon_sym_let] = ACTIONS(1447), - [anon_sym_loop] = ACTIONS(1447), - [anon_sym_match] = ACTIONS(1447), - [anon_sym_mod] = ACTIONS(1447), - [anon_sym_pub] = ACTIONS(1447), - [anon_sym_return] = ACTIONS(1447), - [anon_sym_static] = ACTIONS(1447), - [anon_sym_struct] = ACTIONS(1447), - [anon_sym_trait] = ACTIONS(1447), - [anon_sym_type] = ACTIONS(1447), - [anon_sym_union] = ACTIONS(1447), - [anon_sym_unsafe] = ACTIONS(1447), - [anon_sym_use] = ACTIONS(1447), - [anon_sym_while] = ACTIONS(1447), - [anon_sym_extern] = ACTIONS(1447), - [anon_sym_yield] = ACTIONS(1447), - [anon_sym_move] = ACTIONS(1447), - [anon_sym_try] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [aux_sym_string_literal_token1] = ACTIONS(1445), - [sym_char_literal] = ACTIONS(1445), - [anon_sym_true] = ACTIONS(1447), - [anon_sym_false] = ACTIONS(1447), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1447), - [sym_super] = ACTIONS(1447), - [sym_crate] = ACTIONS(1447), - [sym_metavariable] = ACTIONS(1445), - [sym__raw_string_literal_start] = ACTIONS(1445), - [sym_float_literal] = ACTIONS(1445), + [ts_builtin_sym_end] = ACTIONS(2201), + [sym_identifier] = ACTIONS(2203), + [anon_sym_SEMI] = ACTIONS(2201), + [anon_sym_macro_rules_BANG] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2201), + [anon_sym_LBRACK] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(2201), + [anon_sym_RBRACE] = ACTIONS(2201), + [anon_sym_STAR] = ACTIONS(2201), + [anon_sym_u8] = ACTIONS(2203), + [anon_sym_i8] = ACTIONS(2203), + [anon_sym_u16] = ACTIONS(2203), + [anon_sym_i16] = ACTIONS(2203), + [anon_sym_u32] = ACTIONS(2203), + [anon_sym_i32] = ACTIONS(2203), + [anon_sym_u64] = ACTIONS(2203), + [anon_sym_i64] = ACTIONS(2203), + [anon_sym_u128] = ACTIONS(2203), + [anon_sym_i128] = ACTIONS(2203), + [anon_sym_isize] = ACTIONS(2203), + [anon_sym_usize] = ACTIONS(2203), + [anon_sym_f32] = ACTIONS(2203), + [anon_sym_f64] = ACTIONS(2203), + [anon_sym_bool] = ACTIONS(2203), + [anon_sym_str] = ACTIONS(2203), + [anon_sym_char] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_BANG] = ACTIONS(2201), + [anon_sym_AMP] = ACTIONS(2201), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_LT] = ACTIONS(2201), + [anon_sym_DOT_DOT] = ACTIONS(2201), + [anon_sym_COLON_COLON] = ACTIONS(2201), + [anon_sym_POUND] = ACTIONS(2201), + [anon_sym_SQUOTE] = ACTIONS(2203), + [anon_sym_async] = ACTIONS(2203), + [anon_sym_break] = ACTIONS(2203), + [anon_sym_const] = ACTIONS(2203), + [anon_sym_continue] = ACTIONS(2203), + [anon_sym_default] = ACTIONS(2203), + [anon_sym_enum] = ACTIONS(2203), + [anon_sym_fn] = ACTIONS(2203), + [anon_sym_for] = ACTIONS(2203), + [anon_sym_gen] = ACTIONS(2203), + [anon_sym_if] = ACTIONS(2203), + [anon_sym_impl] = ACTIONS(2203), + [anon_sym_let] = ACTIONS(2203), + [anon_sym_loop] = ACTIONS(2203), + [anon_sym_match] = ACTIONS(2203), + [anon_sym_mod] = ACTIONS(2203), + [anon_sym_pub] = ACTIONS(2203), + [anon_sym_return] = ACTIONS(2203), + [anon_sym_static] = ACTIONS(2203), + [anon_sym_struct] = ACTIONS(2203), + [anon_sym_trait] = ACTIONS(2203), + [anon_sym_type] = ACTIONS(2203), + [anon_sym_union] = ACTIONS(2203), + [anon_sym_unsafe] = ACTIONS(2203), + [anon_sym_use] = ACTIONS(2203), + [anon_sym_while] = ACTIONS(2203), + [anon_sym_extern] = ACTIONS(2203), + [anon_sym_yield] = ACTIONS(2203), + [anon_sym_move] = ACTIONS(2203), + [anon_sym_try] = ACTIONS(2203), + [sym_integer_literal] = ACTIONS(2201), + [aux_sym_string_literal_token1] = ACTIONS(2201), + [sym_char_literal] = ACTIONS(2201), + [anon_sym_true] = ACTIONS(2203), + [anon_sym_false] = ACTIONS(2203), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2203), + [sym_super] = ACTIONS(2203), + [sym_crate] = ACTIONS(2203), + [sym_metavariable] = ACTIONS(2201), + [sym__raw_string_literal_start] = ACTIONS(2201), + [sym_float_literal] = ACTIONS(2201), }, [STATE(613)] = { [sym_line_comment] = STATE(613), [sym_block_comment] = STATE(613), - [ts_builtin_sym_end] = ACTIONS(2390), - [sym_identifier] = ACTIONS(2392), - [anon_sym_SEMI] = ACTIONS(2390), - [anon_sym_macro_rules_BANG] = ACTIONS(2390), - [anon_sym_LPAREN] = ACTIONS(2390), - [anon_sym_LBRACK] = ACTIONS(2390), - [anon_sym_LBRACE] = ACTIONS(2390), - [anon_sym_RBRACE] = ACTIONS(2390), - [anon_sym_STAR] = ACTIONS(2390), - [anon_sym_u8] = ACTIONS(2392), - [anon_sym_i8] = ACTIONS(2392), - [anon_sym_u16] = ACTIONS(2392), - [anon_sym_i16] = ACTIONS(2392), - [anon_sym_u32] = ACTIONS(2392), - [anon_sym_i32] = ACTIONS(2392), - [anon_sym_u64] = ACTIONS(2392), - [anon_sym_i64] = ACTIONS(2392), - [anon_sym_u128] = ACTIONS(2392), - [anon_sym_i128] = ACTIONS(2392), - [anon_sym_isize] = ACTIONS(2392), - [anon_sym_usize] = ACTIONS(2392), - [anon_sym_f32] = ACTIONS(2392), - [anon_sym_f64] = ACTIONS(2392), - [anon_sym_bool] = ACTIONS(2392), - [anon_sym_str] = ACTIONS(2392), - [anon_sym_char] = ACTIONS(2392), - [anon_sym_DASH] = ACTIONS(2390), - [anon_sym_BANG] = ACTIONS(2390), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_PIPE] = ACTIONS(2390), - [anon_sym_LT] = ACTIONS(2390), - [anon_sym_DOT_DOT] = ACTIONS(2390), - [anon_sym_COLON_COLON] = ACTIONS(2390), - [anon_sym_POUND] = ACTIONS(2390), - [anon_sym_SQUOTE] = ACTIONS(2392), - [anon_sym_async] = ACTIONS(2392), - [anon_sym_break] = ACTIONS(2392), - [anon_sym_const] = ACTIONS(2392), - [anon_sym_continue] = ACTIONS(2392), - [anon_sym_default] = ACTIONS(2392), - [anon_sym_enum] = ACTIONS(2392), - [anon_sym_fn] = ACTIONS(2392), - [anon_sym_for] = ACTIONS(2392), - [anon_sym_gen] = ACTIONS(2392), - [anon_sym_if] = ACTIONS(2392), - [anon_sym_impl] = ACTIONS(2392), - [anon_sym_let] = ACTIONS(2392), - [anon_sym_loop] = ACTIONS(2392), - [anon_sym_match] = ACTIONS(2392), - [anon_sym_mod] = ACTIONS(2392), - [anon_sym_pub] = ACTIONS(2392), - [anon_sym_return] = ACTIONS(2392), - [anon_sym_static] = ACTIONS(2392), - [anon_sym_struct] = ACTIONS(2392), - [anon_sym_trait] = ACTIONS(2392), - [anon_sym_type] = ACTIONS(2392), - [anon_sym_union] = ACTIONS(2392), - [anon_sym_unsafe] = ACTIONS(2392), - [anon_sym_use] = ACTIONS(2392), - [anon_sym_while] = ACTIONS(2392), - [anon_sym_extern] = ACTIONS(2392), - [anon_sym_yield] = ACTIONS(2392), - [anon_sym_move] = ACTIONS(2392), - [anon_sym_try] = ACTIONS(2392), - [sym_integer_literal] = ACTIONS(2390), - [aux_sym_string_literal_token1] = ACTIONS(2390), - [sym_char_literal] = ACTIONS(2390), - [anon_sym_true] = ACTIONS(2392), - [anon_sym_false] = ACTIONS(2392), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2392), - [sym_super] = ACTIONS(2392), - [sym_crate] = ACTIONS(2392), - [sym_metavariable] = ACTIONS(2390), - [sym__raw_string_literal_start] = ACTIONS(2390), - [sym_float_literal] = ACTIONS(2390), + [ts_builtin_sym_end] = ACTIONS(2205), + [sym_identifier] = ACTIONS(2207), + [anon_sym_SEMI] = ACTIONS(2205), + [anon_sym_macro_rules_BANG] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2205), + [anon_sym_RBRACE] = ACTIONS(2205), + [anon_sym_STAR] = ACTIONS(2205), + [anon_sym_u8] = ACTIONS(2207), + [anon_sym_i8] = ACTIONS(2207), + [anon_sym_u16] = ACTIONS(2207), + [anon_sym_i16] = ACTIONS(2207), + [anon_sym_u32] = ACTIONS(2207), + [anon_sym_i32] = ACTIONS(2207), + [anon_sym_u64] = ACTIONS(2207), + [anon_sym_i64] = ACTIONS(2207), + [anon_sym_u128] = ACTIONS(2207), + [anon_sym_i128] = ACTIONS(2207), + [anon_sym_isize] = ACTIONS(2207), + [anon_sym_usize] = ACTIONS(2207), + [anon_sym_f32] = ACTIONS(2207), + [anon_sym_f64] = ACTIONS(2207), + [anon_sym_bool] = ACTIONS(2207), + [anon_sym_str] = ACTIONS(2207), + [anon_sym_char] = ACTIONS(2207), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2205), + [anon_sym_AMP] = ACTIONS(2205), + [anon_sym_PIPE] = ACTIONS(2205), + [anon_sym_LT] = ACTIONS(2205), + [anon_sym_DOT_DOT] = ACTIONS(2205), + [anon_sym_COLON_COLON] = ACTIONS(2205), + [anon_sym_POUND] = ACTIONS(2205), + [anon_sym_SQUOTE] = ACTIONS(2207), + [anon_sym_async] = ACTIONS(2207), + [anon_sym_break] = ACTIONS(2207), + [anon_sym_const] = ACTIONS(2207), + [anon_sym_continue] = ACTIONS(2207), + [anon_sym_default] = ACTIONS(2207), + [anon_sym_enum] = ACTIONS(2207), + [anon_sym_fn] = ACTIONS(2207), + [anon_sym_for] = ACTIONS(2207), + [anon_sym_gen] = ACTIONS(2207), + [anon_sym_if] = ACTIONS(2207), + [anon_sym_impl] = ACTIONS(2207), + [anon_sym_let] = ACTIONS(2207), + [anon_sym_loop] = ACTIONS(2207), + [anon_sym_match] = ACTIONS(2207), + [anon_sym_mod] = ACTIONS(2207), + [anon_sym_pub] = ACTIONS(2207), + [anon_sym_return] = ACTIONS(2207), + [anon_sym_static] = ACTIONS(2207), + [anon_sym_struct] = ACTIONS(2207), + [anon_sym_trait] = ACTIONS(2207), + [anon_sym_type] = ACTIONS(2207), + [anon_sym_union] = ACTIONS(2207), + [anon_sym_unsafe] = ACTIONS(2207), + [anon_sym_use] = ACTIONS(2207), + [anon_sym_while] = ACTIONS(2207), + [anon_sym_extern] = ACTIONS(2207), + [anon_sym_yield] = ACTIONS(2207), + [anon_sym_move] = ACTIONS(2207), + [anon_sym_try] = ACTIONS(2207), + [sym_integer_literal] = ACTIONS(2205), + [aux_sym_string_literal_token1] = ACTIONS(2205), + [sym_char_literal] = ACTIONS(2205), + [anon_sym_true] = ACTIONS(2207), + [anon_sym_false] = ACTIONS(2207), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2207), + [sym_super] = ACTIONS(2207), + [sym_crate] = ACTIONS(2207), + [sym_metavariable] = ACTIONS(2205), + [sym__raw_string_literal_start] = ACTIONS(2205), + [sym_float_literal] = ACTIONS(2205), }, [STATE(614)] = { [sym_line_comment] = STATE(614), [sym_block_comment] = STATE(614), - [ts_builtin_sym_end] = ACTIONS(1449), - [sym_identifier] = ACTIONS(1451), - [anon_sym_SEMI] = ACTIONS(1449), - [anon_sym_macro_rules_BANG] = ACTIONS(1449), - [anon_sym_LPAREN] = ACTIONS(1449), - [anon_sym_LBRACK] = ACTIONS(1449), - [anon_sym_LBRACE] = ACTIONS(1449), - [anon_sym_RBRACE] = ACTIONS(1449), - [anon_sym_STAR] = ACTIONS(1449), - [anon_sym_u8] = ACTIONS(1451), - [anon_sym_i8] = ACTIONS(1451), - [anon_sym_u16] = ACTIONS(1451), - [anon_sym_i16] = ACTIONS(1451), - [anon_sym_u32] = ACTIONS(1451), - [anon_sym_i32] = ACTIONS(1451), - [anon_sym_u64] = ACTIONS(1451), - [anon_sym_i64] = ACTIONS(1451), - [anon_sym_u128] = ACTIONS(1451), - [anon_sym_i128] = ACTIONS(1451), - [anon_sym_isize] = ACTIONS(1451), - [anon_sym_usize] = ACTIONS(1451), - [anon_sym_f32] = ACTIONS(1451), - [anon_sym_f64] = ACTIONS(1451), - [anon_sym_bool] = ACTIONS(1451), - [anon_sym_str] = ACTIONS(1451), - [anon_sym_char] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_BANG] = ACTIONS(1449), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1449), - [anon_sym_LT] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1449), - [anon_sym_COLON_COLON] = ACTIONS(1449), - [anon_sym_POUND] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [anon_sym_async] = ACTIONS(1451), - [anon_sym_break] = ACTIONS(1451), - [anon_sym_const] = ACTIONS(1451), - [anon_sym_continue] = ACTIONS(1451), - [anon_sym_default] = ACTIONS(1451), - [anon_sym_enum] = ACTIONS(1451), - [anon_sym_fn] = ACTIONS(1451), - [anon_sym_for] = ACTIONS(1451), - [anon_sym_gen] = ACTIONS(1451), - [anon_sym_if] = ACTIONS(1451), - [anon_sym_impl] = ACTIONS(1451), - [anon_sym_let] = ACTIONS(1451), - [anon_sym_loop] = ACTIONS(1451), - [anon_sym_match] = ACTIONS(1451), - [anon_sym_mod] = ACTIONS(1451), - [anon_sym_pub] = ACTIONS(1451), - [anon_sym_return] = ACTIONS(1451), - [anon_sym_static] = ACTIONS(1451), - [anon_sym_struct] = ACTIONS(1451), - [anon_sym_trait] = ACTIONS(1451), - [anon_sym_type] = ACTIONS(1451), - [anon_sym_union] = ACTIONS(1451), - [anon_sym_unsafe] = ACTIONS(1451), - [anon_sym_use] = ACTIONS(1451), - [anon_sym_while] = ACTIONS(1451), - [anon_sym_extern] = ACTIONS(1451), - [anon_sym_yield] = ACTIONS(1451), - [anon_sym_move] = ACTIONS(1451), - [anon_sym_try] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [aux_sym_string_literal_token1] = ACTIONS(1449), - [sym_char_literal] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1451), - [sym_super] = ACTIONS(1451), - [sym_crate] = ACTIONS(1451), - [sym_metavariable] = ACTIONS(1449), - [sym__raw_string_literal_start] = ACTIONS(1449), - [sym_float_literal] = ACTIONS(1449), + [ts_builtin_sym_end] = ACTIONS(1343), + [sym_identifier] = ACTIONS(1345), + [anon_sym_SEMI] = ACTIONS(1343), + [anon_sym_macro_rules_BANG] = ACTIONS(1343), + [anon_sym_LPAREN] = ACTIONS(1343), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1343), + [anon_sym_RBRACE] = ACTIONS(1343), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_u8] = ACTIONS(1345), + [anon_sym_i8] = ACTIONS(1345), + [anon_sym_u16] = ACTIONS(1345), + [anon_sym_i16] = ACTIONS(1345), + [anon_sym_u32] = ACTIONS(1345), + [anon_sym_i32] = ACTIONS(1345), + [anon_sym_u64] = ACTIONS(1345), + [anon_sym_i64] = ACTIONS(1345), + [anon_sym_u128] = ACTIONS(1345), + [anon_sym_i128] = ACTIONS(1345), + [anon_sym_isize] = ACTIONS(1345), + [anon_sym_usize] = ACTIONS(1345), + [anon_sym_f32] = ACTIONS(1345), + [anon_sym_f64] = ACTIONS(1345), + [anon_sym_bool] = ACTIONS(1345), + [anon_sym_str] = ACTIONS(1345), + [anon_sym_char] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1343), + [anon_sym_AMP] = ACTIONS(1343), + [anon_sym_PIPE] = ACTIONS(1343), + [anon_sym_LT] = ACTIONS(1343), + [anon_sym_DOT_DOT] = ACTIONS(1343), + [anon_sym_COLON_COLON] = ACTIONS(1343), + [anon_sym_POUND] = ACTIONS(1343), + [anon_sym_SQUOTE] = ACTIONS(1345), + [anon_sym_async] = ACTIONS(1345), + [anon_sym_break] = ACTIONS(1345), + [anon_sym_const] = ACTIONS(1345), + [anon_sym_continue] = ACTIONS(1345), + [anon_sym_default] = ACTIONS(1345), + [anon_sym_enum] = ACTIONS(1345), + [anon_sym_fn] = ACTIONS(1345), + [anon_sym_for] = ACTIONS(1345), + [anon_sym_gen] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1345), + [anon_sym_impl] = ACTIONS(1345), + [anon_sym_let] = ACTIONS(1345), + [anon_sym_loop] = ACTIONS(1345), + [anon_sym_match] = ACTIONS(1345), + [anon_sym_mod] = ACTIONS(1345), + [anon_sym_pub] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1345), + [anon_sym_static] = ACTIONS(1345), + [anon_sym_struct] = ACTIONS(1345), + [anon_sym_trait] = ACTIONS(1345), + [anon_sym_type] = ACTIONS(1345), + [anon_sym_union] = ACTIONS(1345), + [anon_sym_unsafe] = ACTIONS(1345), + [anon_sym_use] = ACTIONS(1345), + [anon_sym_while] = ACTIONS(1345), + [anon_sym_extern] = ACTIONS(1345), + [anon_sym_yield] = ACTIONS(1345), + [anon_sym_move] = ACTIONS(1345), + [anon_sym_try] = ACTIONS(1345), + [sym_integer_literal] = ACTIONS(1343), + [aux_sym_string_literal_token1] = ACTIONS(1343), + [sym_char_literal] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1345), + [anon_sym_false] = ACTIONS(1345), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1345), + [sym_super] = ACTIONS(1345), + [sym_crate] = ACTIONS(1345), + [sym_metavariable] = ACTIONS(1343), + [sym__raw_string_literal_start] = ACTIONS(1343), + [sym_float_literal] = ACTIONS(1343), }, [STATE(615)] = { [sym_line_comment] = STATE(615), [sym_block_comment] = STATE(615), - [ts_builtin_sym_end] = ACTIONS(2394), - [sym_identifier] = ACTIONS(2396), - [anon_sym_SEMI] = ACTIONS(2394), - [anon_sym_macro_rules_BANG] = ACTIONS(2394), - [anon_sym_LPAREN] = ACTIONS(2394), - [anon_sym_LBRACK] = ACTIONS(2394), - [anon_sym_LBRACE] = ACTIONS(2394), - [anon_sym_RBRACE] = ACTIONS(2394), - [anon_sym_STAR] = ACTIONS(2394), - [anon_sym_u8] = ACTIONS(2396), - [anon_sym_i8] = ACTIONS(2396), - [anon_sym_u16] = ACTIONS(2396), - [anon_sym_i16] = ACTIONS(2396), - [anon_sym_u32] = ACTIONS(2396), - [anon_sym_i32] = ACTIONS(2396), - [anon_sym_u64] = ACTIONS(2396), - [anon_sym_i64] = ACTIONS(2396), - [anon_sym_u128] = ACTIONS(2396), - [anon_sym_i128] = ACTIONS(2396), - [anon_sym_isize] = ACTIONS(2396), - [anon_sym_usize] = ACTIONS(2396), - [anon_sym_f32] = ACTIONS(2396), - [anon_sym_f64] = ACTIONS(2396), - [anon_sym_bool] = ACTIONS(2396), - [anon_sym_str] = ACTIONS(2396), - [anon_sym_char] = ACTIONS(2396), - [anon_sym_DASH] = ACTIONS(2394), - [anon_sym_BANG] = ACTIONS(2394), - [anon_sym_AMP] = ACTIONS(2394), - [anon_sym_PIPE] = ACTIONS(2394), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_DOT_DOT] = ACTIONS(2394), - [anon_sym_COLON_COLON] = ACTIONS(2394), - [anon_sym_POUND] = ACTIONS(2394), - [anon_sym_SQUOTE] = ACTIONS(2396), - [anon_sym_async] = ACTIONS(2396), - [anon_sym_break] = ACTIONS(2396), - [anon_sym_const] = ACTIONS(2396), - [anon_sym_continue] = ACTIONS(2396), - [anon_sym_default] = ACTIONS(2396), - [anon_sym_enum] = ACTIONS(2396), - [anon_sym_fn] = ACTIONS(2396), - [anon_sym_for] = ACTIONS(2396), - [anon_sym_gen] = ACTIONS(2396), - [anon_sym_if] = ACTIONS(2396), - [anon_sym_impl] = ACTIONS(2396), - [anon_sym_let] = ACTIONS(2396), - [anon_sym_loop] = ACTIONS(2396), - [anon_sym_match] = ACTIONS(2396), - [anon_sym_mod] = ACTIONS(2396), - [anon_sym_pub] = ACTIONS(2396), - [anon_sym_return] = ACTIONS(2396), - [anon_sym_static] = ACTIONS(2396), - [anon_sym_struct] = ACTIONS(2396), - [anon_sym_trait] = ACTIONS(2396), - [anon_sym_type] = ACTIONS(2396), - [anon_sym_union] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(2396), - [anon_sym_use] = ACTIONS(2396), - [anon_sym_while] = ACTIONS(2396), - [anon_sym_extern] = ACTIONS(2396), - [anon_sym_yield] = ACTIONS(2396), - [anon_sym_move] = ACTIONS(2396), - [anon_sym_try] = ACTIONS(2396), - [sym_integer_literal] = ACTIONS(2394), - [aux_sym_string_literal_token1] = ACTIONS(2394), - [sym_char_literal] = ACTIONS(2394), - [anon_sym_true] = ACTIONS(2396), - [anon_sym_false] = ACTIONS(2396), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2396), - [sym_super] = ACTIONS(2396), - [sym_crate] = ACTIONS(2396), - [sym_metavariable] = ACTIONS(2394), - [sym__raw_string_literal_start] = ACTIONS(2394), - [sym_float_literal] = ACTIONS(2394), + [ts_builtin_sym_end] = ACTIONS(2209), + [sym_identifier] = ACTIONS(2211), + [anon_sym_SEMI] = ACTIONS(2209), + [anon_sym_macro_rules_BANG] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2209), + [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(2209), + [anon_sym_RBRACE] = ACTIONS(2209), + [anon_sym_STAR] = ACTIONS(2209), + [anon_sym_u8] = ACTIONS(2211), + [anon_sym_i8] = ACTIONS(2211), + [anon_sym_u16] = ACTIONS(2211), + [anon_sym_i16] = ACTIONS(2211), + [anon_sym_u32] = ACTIONS(2211), + [anon_sym_i32] = ACTIONS(2211), + [anon_sym_u64] = ACTIONS(2211), + [anon_sym_i64] = ACTIONS(2211), + [anon_sym_u128] = ACTIONS(2211), + [anon_sym_i128] = ACTIONS(2211), + [anon_sym_isize] = ACTIONS(2211), + [anon_sym_usize] = ACTIONS(2211), + [anon_sym_f32] = ACTIONS(2211), + [anon_sym_f64] = ACTIONS(2211), + [anon_sym_bool] = ACTIONS(2211), + [anon_sym_str] = ACTIONS(2211), + [anon_sym_char] = ACTIONS(2211), + [anon_sym_DASH] = ACTIONS(2209), + [anon_sym_BANG] = ACTIONS(2209), + [anon_sym_AMP] = ACTIONS(2209), + [anon_sym_PIPE] = ACTIONS(2209), + [anon_sym_LT] = ACTIONS(2209), + [anon_sym_DOT_DOT] = ACTIONS(2209), + [anon_sym_COLON_COLON] = ACTIONS(2209), + [anon_sym_POUND] = ACTIONS(2209), + [anon_sym_SQUOTE] = ACTIONS(2211), + [anon_sym_async] = ACTIONS(2211), + [anon_sym_break] = ACTIONS(2211), + [anon_sym_const] = ACTIONS(2211), + [anon_sym_continue] = ACTIONS(2211), + [anon_sym_default] = ACTIONS(2211), + [anon_sym_enum] = ACTIONS(2211), + [anon_sym_fn] = ACTIONS(2211), + [anon_sym_for] = ACTIONS(2211), + [anon_sym_gen] = ACTIONS(2211), + [anon_sym_if] = ACTIONS(2211), + [anon_sym_impl] = ACTIONS(2211), + [anon_sym_let] = ACTIONS(2211), + [anon_sym_loop] = ACTIONS(2211), + [anon_sym_match] = ACTIONS(2211), + [anon_sym_mod] = ACTIONS(2211), + [anon_sym_pub] = ACTIONS(2211), + [anon_sym_return] = ACTIONS(2211), + [anon_sym_static] = ACTIONS(2211), + [anon_sym_struct] = ACTIONS(2211), + [anon_sym_trait] = ACTIONS(2211), + [anon_sym_type] = ACTIONS(2211), + [anon_sym_union] = ACTIONS(2211), + [anon_sym_unsafe] = ACTIONS(2211), + [anon_sym_use] = ACTIONS(2211), + [anon_sym_while] = ACTIONS(2211), + [anon_sym_extern] = ACTIONS(2211), + [anon_sym_yield] = ACTIONS(2211), + [anon_sym_move] = ACTIONS(2211), + [anon_sym_try] = ACTIONS(2211), + [sym_integer_literal] = ACTIONS(2209), + [aux_sym_string_literal_token1] = ACTIONS(2209), + [sym_char_literal] = ACTIONS(2209), + [anon_sym_true] = ACTIONS(2211), + [anon_sym_false] = ACTIONS(2211), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2211), + [sym_super] = ACTIONS(2211), + [sym_crate] = ACTIONS(2211), + [sym_metavariable] = ACTIONS(2209), + [sym__raw_string_literal_start] = ACTIONS(2209), + [sym_float_literal] = ACTIONS(2209), }, [STATE(616)] = { [sym_line_comment] = STATE(616), [sym_block_comment] = STATE(616), - [ts_builtin_sym_end] = ACTIONS(1433), - [sym_identifier] = ACTIONS(1435), - [anon_sym_SEMI] = ACTIONS(1433), - [anon_sym_macro_rules_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(1433), - [anon_sym_LBRACK] = ACTIONS(1433), - [anon_sym_LBRACE] = ACTIONS(1433), - [anon_sym_RBRACE] = ACTIONS(1433), - [anon_sym_STAR] = ACTIONS(1433), - [anon_sym_u8] = ACTIONS(1435), - [anon_sym_i8] = ACTIONS(1435), - [anon_sym_u16] = ACTIONS(1435), - [anon_sym_i16] = ACTIONS(1435), - [anon_sym_u32] = ACTIONS(1435), - [anon_sym_i32] = ACTIONS(1435), - [anon_sym_u64] = ACTIONS(1435), - [anon_sym_i64] = ACTIONS(1435), - [anon_sym_u128] = ACTIONS(1435), - [anon_sym_i128] = ACTIONS(1435), - [anon_sym_isize] = ACTIONS(1435), - [anon_sym_usize] = ACTIONS(1435), - [anon_sym_f32] = ACTIONS(1435), - [anon_sym_f64] = ACTIONS(1435), - [anon_sym_bool] = ACTIONS(1435), - [anon_sym_str] = ACTIONS(1435), - [anon_sym_char] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1433), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_AMP] = ACTIONS(1433), - [anon_sym_PIPE] = ACTIONS(1433), - [anon_sym_LT] = ACTIONS(1433), - [anon_sym_DOT_DOT] = ACTIONS(1433), - [anon_sym_COLON_COLON] = ACTIONS(1433), - [anon_sym_POUND] = ACTIONS(1433), - [anon_sym_SQUOTE] = ACTIONS(1435), - [anon_sym_async] = ACTIONS(1435), - [anon_sym_break] = ACTIONS(1435), - [anon_sym_const] = ACTIONS(1435), - [anon_sym_continue] = ACTIONS(1435), - [anon_sym_default] = ACTIONS(1435), - [anon_sym_enum] = ACTIONS(1435), - [anon_sym_fn] = ACTIONS(1435), - [anon_sym_for] = ACTIONS(1435), - [anon_sym_gen] = ACTIONS(1435), - [anon_sym_if] = ACTIONS(1435), - [anon_sym_impl] = ACTIONS(1435), - [anon_sym_let] = ACTIONS(1435), - [anon_sym_loop] = ACTIONS(1435), - [anon_sym_match] = ACTIONS(1435), - [anon_sym_mod] = ACTIONS(1435), - [anon_sym_pub] = ACTIONS(1435), - [anon_sym_return] = ACTIONS(1435), - [anon_sym_static] = ACTIONS(1435), - [anon_sym_struct] = ACTIONS(1435), - [anon_sym_trait] = ACTIONS(1435), - [anon_sym_type] = ACTIONS(1435), - [anon_sym_union] = ACTIONS(1435), - [anon_sym_unsafe] = ACTIONS(1435), - [anon_sym_use] = ACTIONS(1435), - [anon_sym_while] = ACTIONS(1435), - [anon_sym_extern] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1435), - [anon_sym_move] = ACTIONS(1435), - [anon_sym_try] = ACTIONS(1435), - [sym_integer_literal] = ACTIONS(1433), - [aux_sym_string_literal_token1] = ACTIONS(1433), - [sym_char_literal] = ACTIONS(1433), - [anon_sym_true] = ACTIONS(1435), - [anon_sym_false] = ACTIONS(1435), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1435), - [sym_super] = ACTIONS(1435), - [sym_crate] = ACTIONS(1435), - [sym_metavariable] = ACTIONS(1433), - [sym__raw_string_literal_start] = ACTIONS(1433), - [sym_float_literal] = ACTIONS(1433), + [ts_builtin_sym_end] = ACTIONS(2213), + [sym_identifier] = ACTIONS(2215), + [anon_sym_SEMI] = ACTIONS(2213), + [anon_sym_macro_rules_BANG] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_RBRACE] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2213), + [anon_sym_u8] = ACTIONS(2215), + [anon_sym_i8] = ACTIONS(2215), + [anon_sym_u16] = ACTIONS(2215), + [anon_sym_i16] = ACTIONS(2215), + [anon_sym_u32] = ACTIONS(2215), + [anon_sym_i32] = ACTIONS(2215), + [anon_sym_u64] = ACTIONS(2215), + [anon_sym_i64] = ACTIONS(2215), + [anon_sym_u128] = ACTIONS(2215), + [anon_sym_i128] = ACTIONS(2215), + [anon_sym_isize] = ACTIONS(2215), + [anon_sym_usize] = ACTIONS(2215), + [anon_sym_f32] = ACTIONS(2215), + [anon_sym_f64] = ACTIONS(2215), + [anon_sym_bool] = ACTIONS(2215), + [anon_sym_str] = ACTIONS(2215), + [anon_sym_char] = ACTIONS(2215), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_BANG] = ACTIONS(2213), + [anon_sym_AMP] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_DOT_DOT] = ACTIONS(2213), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_POUND] = ACTIONS(2213), + [anon_sym_SQUOTE] = ACTIONS(2215), + [anon_sym_async] = ACTIONS(2215), + [anon_sym_break] = ACTIONS(2215), + [anon_sym_const] = ACTIONS(2215), + [anon_sym_continue] = ACTIONS(2215), + [anon_sym_default] = ACTIONS(2215), + [anon_sym_enum] = ACTIONS(2215), + [anon_sym_fn] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2215), + [anon_sym_gen] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2215), + [anon_sym_impl] = ACTIONS(2215), + [anon_sym_let] = ACTIONS(2215), + [anon_sym_loop] = ACTIONS(2215), + [anon_sym_match] = ACTIONS(2215), + [anon_sym_mod] = ACTIONS(2215), + [anon_sym_pub] = ACTIONS(2215), + [anon_sym_return] = ACTIONS(2215), + [anon_sym_static] = ACTIONS(2215), + [anon_sym_struct] = ACTIONS(2215), + [anon_sym_trait] = ACTIONS(2215), + [anon_sym_type] = ACTIONS(2215), + [anon_sym_union] = ACTIONS(2215), + [anon_sym_unsafe] = ACTIONS(2215), + [anon_sym_use] = ACTIONS(2215), + [anon_sym_while] = ACTIONS(2215), + [anon_sym_extern] = ACTIONS(2215), + [anon_sym_yield] = ACTIONS(2215), + [anon_sym_move] = ACTIONS(2215), + [anon_sym_try] = ACTIONS(2215), + [sym_integer_literal] = ACTIONS(2213), + [aux_sym_string_literal_token1] = ACTIONS(2213), + [sym_char_literal] = ACTIONS(2213), + [anon_sym_true] = ACTIONS(2215), + [anon_sym_false] = ACTIONS(2215), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2215), + [sym_super] = ACTIONS(2215), + [sym_crate] = ACTIONS(2215), + [sym_metavariable] = ACTIONS(2213), + [sym__raw_string_literal_start] = ACTIONS(2213), + [sym_float_literal] = ACTIONS(2213), }, [STATE(617)] = { [sym_line_comment] = STATE(617), [sym_block_comment] = STATE(617), - [ts_builtin_sym_end] = ACTIONS(1441), - [sym_identifier] = ACTIONS(1443), - [anon_sym_SEMI] = ACTIONS(1441), - [anon_sym_macro_rules_BANG] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1441), - [anon_sym_LBRACE] = ACTIONS(1441), - [anon_sym_RBRACE] = ACTIONS(1441), - [anon_sym_STAR] = ACTIONS(1441), - [anon_sym_u8] = ACTIONS(1443), - [anon_sym_i8] = ACTIONS(1443), - [anon_sym_u16] = ACTIONS(1443), - [anon_sym_i16] = ACTIONS(1443), - [anon_sym_u32] = ACTIONS(1443), - [anon_sym_i32] = ACTIONS(1443), - [anon_sym_u64] = ACTIONS(1443), - [anon_sym_i64] = ACTIONS(1443), - [anon_sym_u128] = ACTIONS(1443), - [anon_sym_i128] = ACTIONS(1443), - [anon_sym_isize] = ACTIONS(1443), - [anon_sym_usize] = ACTIONS(1443), - [anon_sym_f32] = ACTIONS(1443), - [anon_sym_f64] = ACTIONS(1443), - [anon_sym_bool] = ACTIONS(1443), - [anon_sym_str] = ACTIONS(1443), - [anon_sym_char] = ACTIONS(1443), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_AMP] = ACTIONS(1441), - [anon_sym_PIPE] = ACTIONS(1441), - [anon_sym_LT] = ACTIONS(1441), - [anon_sym_DOT_DOT] = ACTIONS(1441), - [anon_sym_COLON_COLON] = ACTIONS(1441), - [anon_sym_POUND] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [anon_sym_async] = ACTIONS(1443), - [anon_sym_break] = ACTIONS(1443), - [anon_sym_const] = ACTIONS(1443), - [anon_sym_continue] = ACTIONS(1443), - [anon_sym_default] = ACTIONS(1443), - [anon_sym_enum] = ACTIONS(1443), - [anon_sym_fn] = ACTIONS(1443), - [anon_sym_for] = ACTIONS(1443), - [anon_sym_gen] = ACTIONS(1443), - [anon_sym_if] = ACTIONS(1443), - [anon_sym_impl] = ACTIONS(1443), - [anon_sym_let] = ACTIONS(1443), - [anon_sym_loop] = ACTIONS(1443), - [anon_sym_match] = ACTIONS(1443), - [anon_sym_mod] = ACTIONS(1443), - [anon_sym_pub] = ACTIONS(1443), - [anon_sym_return] = ACTIONS(1443), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_struct] = ACTIONS(1443), - [anon_sym_trait] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_union] = ACTIONS(1443), - [anon_sym_unsafe] = ACTIONS(1443), - [anon_sym_use] = ACTIONS(1443), - [anon_sym_while] = ACTIONS(1443), - [anon_sym_extern] = ACTIONS(1443), - [anon_sym_yield] = ACTIONS(1443), - [anon_sym_move] = ACTIONS(1443), - [anon_sym_try] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [aux_sym_string_literal_token1] = ACTIONS(1441), - [sym_char_literal] = ACTIONS(1441), - [anon_sym_true] = ACTIONS(1443), - [anon_sym_false] = ACTIONS(1443), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1443), - [sym_super] = ACTIONS(1443), - [sym_crate] = ACTIONS(1443), - [sym_metavariable] = ACTIONS(1441), - [sym__raw_string_literal_start] = ACTIONS(1441), - [sym_float_literal] = ACTIONS(1441), + [ts_builtin_sym_end] = ACTIONS(2217), + [sym_identifier] = ACTIONS(2219), + [anon_sym_SEMI] = ACTIONS(2217), + [anon_sym_macro_rules_BANG] = ACTIONS(2217), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_RBRACE] = ACTIONS(2217), + [anon_sym_STAR] = ACTIONS(2217), + [anon_sym_u8] = ACTIONS(2219), + [anon_sym_i8] = ACTIONS(2219), + [anon_sym_u16] = ACTIONS(2219), + [anon_sym_i16] = ACTIONS(2219), + [anon_sym_u32] = ACTIONS(2219), + [anon_sym_i32] = ACTIONS(2219), + [anon_sym_u64] = ACTIONS(2219), + [anon_sym_i64] = ACTIONS(2219), + [anon_sym_u128] = ACTIONS(2219), + [anon_sym_i128] = ACTIONS(2219), + [anon_sym_isize] = ACTIONS(2219), + [anon_sym_usize] = ACTIONS(2219), + [anon_sym_f32] = ACTIONS(2219), + [anon_sym_f64] = ACTIONS(2219), + [anon_sym_bool] = ACTIONS(2219), + [anon_sym_str] = ACTIONS(2219), + [anon_sym_char] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2217), + [anon_sym_BANG] = ACTIONS(2217), + [anon_sym_AMP] = ACTIONS(2217), + [anon_sym_PIPE] = ACTIONS(2217), + [anon_sym_LT] = ACTIONS(2217), + [anon_sym_DOT_DOT] = ACTIONS(2217), + [anon_sym_COLON_COLON] = ACTIONS(2217), + [anon_sym_POUND] = ACTIONS(2217), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(2219), + [anon_sym_break] = ACTIONS(2219), + [anon_sym_const] = ACTIONS(2219), + [anon_sym_continue] = ACTIONS(2219), + [anon_sym_default] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2219), + [anon_sym_fn] = ACTIONS(2219), + [anon_sym_for] = ACTIONS(2219), + [anon_sym_gen] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(2219), + [anon_sym_impl] = ACTIONS(2219), + [anon_sym_let] = ACTIONS(2219), + [anon_sym_loop] = ACTIONS(2219), + [anon_sym_match] = ACTIONS(2219), + [anon_sym_mod] = ACTIONS(2219), + [anon_sym_pub] = ACTIONS(2219), + [anon_sym_return] = ACTIONS(2219), + [anon_sym_static] = ACTIONS(2219), + [anon_sym_struct] = ACTIONS(2219), + [anon_sym_trait] = ACTIONS(2219), + [anon_sym_type] = ACTIONS(2219), + [anon_sym_union] = ACTIONS(2219), + [anon_sym_unsafe] = ACTIONS(2219), + [anon_sym_use] = ACTIONS(2219), + [anon_sym_while] = ACTIONS(2219), + [anon_sym_extern] = ACTIONS(2219), + [anon_sym_yield] = ACTIONS(2219), + [anon_sym_move] = ACTIONS(2219), + [anon_sym_try] = ACTIONS(2219), + [sym_integer_literal] = ACTIONS(2217), + [aux_sym_string_literal_token1] = ACTIONS(2217), + [sym_char_literal] = ACTIONS(2217), + [anon_sym_true] = ACTIONS(2219), + [anon_sym_false] = ACTIONS(2219), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2219), + [sym_super] = ACTIONS(2219), + [sym_crate] = ACTIONS(2219), + [sym_metavariable] = ACTIONS(2217), + [sym__raw_string_literal_start] = ACTIONS(2217), + [sym_float_literal] = ACTIONS(2217), }, [STATE(618)] = { [sym_line_comment] = STATE(618), [sym_block_comment] = STATE(618), - [ts_builtin_sym_end] = ACTIONS(2398), - [sym_identifier] = ACTIONS(2400), - [anon_sym_SEMI] = ACTIONS(2398), - [anon_sym_macro_rules_BANG] = ACTIONS(2398), - [anon_sym_LPAREN] = ACTIONS(2398), - [anon_sym_LBRACK] = ACTIONS(2398), - [anon_sym_LBRACE] = ACTIONS(2398), - [anon_sym_RBRACE] = ACTIONS(2398), - [anon_sym_STAR] = ACTIONS(2398), - [anon_sym_u8] = ACTIONS(2400), - [anon_sym_i8] = ACTIONS(2400), - [anon_sym_u16] = ACTIONS(2400), - [anon_sym_i16] = ACTIONS(2400), - [anon_sym_u32] = ACTIONS(2400), - [anon_sym_i32] = ACTIONS(2400), - [anon_sym_u64] = ACTIONS(2400), - [anon_sym_i64] = ACTIONS(2400), - [anon_sym_u128] = ACTIONS(2400), - [anon_sym_i128] = ACTIONS(2400), - [anon_sym_isize] = ACTIONS(2400), - [anon_sym_usize] = ACTIONS(2400), - [anon_sym_f32] = ACTIONS(2400), - [anon_sym_f64] = ACTIONS(2400), - [anon_sym_bool] = ACTIONS(2400), - [anon_sym_str] = ACTIONS(2400), - [anon_sym_char] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2398), - [anon_sym_BANG] = ACTIONS(2398), - [anon_sym_AMP] = ACTIONS(2398), - [anon_sym_PIPE] = ACTIONS(2398), - [anon_sym_LT] = ACTIONS(2398), - [anon_sym_DOT_DOT] = ACTIONS(2398), - [anon_sym_COLON_COLON] = ACTIONS(2398), - [anon_sym_POUND] = ACTIONS(2398), - [anon_sym_SQUOTE] = ACTIONS(2400), - [anon_sym_async] = ACTIONS(2400), - [anon_sym_break] = ACTIONS(2400), - [anon_sym_const] = ACTIONS(2400), - [anon_sym_continue] = ACTIONS(2400), - [anon_sym_default] = ACTIONS(2400), - [anon_sym_enum] = ACTIONS(2400), - [anon_sym_fn] = ACTIONS(2400), - [anon_sym_for] = ACTIONS(2400), - [anon_sym_gen] = ACTIONS(2400), - [anon_sym_if] = ACTIONS(2400), - [anon_sym_impl] = ACTIONS(2400), - [anon_sym_let] = ACTIONS(2400), - [anon_sym_loop] = ACTIONS(2400), - [anon_sym_match] = ACTIONS(2400), - [anon_sym_mod] = ACTIONS(2400), - [anon_sym_pub] = ACTIONS(2400), - [anon_sym_return] = ACTIONS(2400), - [anon_sym_static] = ACTIONS(2400), - [anon_sym_struct] = ACTIONS(2400), - [anon_sym_trait] = ACTIONS(2400), - [anon_sym_type] = ACTIONS(2400), - [anon_sym_union] = ACTIONS(2400), - [anon_sym_unsafe] = ACTIONS(2400), - [anon_sym_use] = ACTIONS(2400), - [anon_sym_while] = ACTIONS(2400), - [anon_sym_extern] = ACTIONS(2400), - [anon_sym_yield] = ACTIONS(2400), - [anon_sym_move] = ACTIONS(2400), - [anon_sym_try] = ACTIONS(2400), - [sym_integer_literal] = ACTIONS(2398), - [aux_sym_string_literal_token1] = ACTIONS(2398), - [sym_char_literal] = ACTIONS(2398), - [anon_sym_true] = ACTIONS(2400), - [anon_sym_false] = ACTIONS(2400), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2400), - [sym_super] = ACTIONS(2400), - [sym_crate] = ACTIONS(2400), - [sym_metavariable] = ACTIONS(2398), - [sym__raw_string_literal_start] = ACTIONS(2398), - [sym_float_literal] = ACTIONS(2398), + [ts_builtin_sym_end] = ACTIONS(2221), + [sym_identifier] = ACTIONS(2223), + [anon_sym_SEMI] = ACTIONS(2221), + [anon_sym_macro_rules_BANG] = ACTIONS(2221), + [anon_sym_LPAREN] = ACTIONS(2221), + [anon_sym_LBRACK] = ACTIONS(2221), + [anon_sym_LBRACE] = ACTIONS(2221), + [anon_sym_RBRACE] = ACTIONS(2221), + [anon_sym_STAR] = ACTIONS(2221), + [anon_sym_u8] = ACTIONS(2223), + [anon_sym_i8] = ACTIONS(2223), + [anon_sym_u16] = ACTIONS(2223), + [anon_sym_i16] = ACTIONS(2223), + [anon_sym_u32] = ACTIONS(2223), + [anon_sym_i32] = ACTIONS(2223), + [anon_sym_u64] = ACTIONS(2223), + [anon_sym_i64] = ACTIONS(2223), + [anon_sym_u128] = ACTIONS(2223), + [anon_sym_i128] = ACTIONS(2223), + [anon_sym_isize] = ACTIONS(2223), + [anon_sym_usize] = ACTIONS(2223), + [anon_sym_f32] = ACTIONS(2223), + [anon_sym_f64] = ACTIONS(2223), + [anon_sym_bool] = ACTIONS(2223), + [anon_sym_str] = ACTIONS(2223), + [anon_sym_char] = ACTIONS(2223), + [anon_sym_DASH] = ACTIONS(2221), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), + [anon_sym_PIPE] = ACTIONS(2221), + [anon_sym_LT] = ACTIONS(2221), + [anon_sym_DOT_DOT] = ACTIONS(2221), + [anon_sym_COLON_COLON] = ACTIONS(2221), + [anon_sym_POUND] = ACTIONS(2221), + [anon_sym_SQUOTE] = ACTIONS(2223), + [anon_sym_async] = ACTIONS(2223), + [anon_sym_break] = ACTIONS(2223), + [anon_sym_const] = ACTIONS(2223), + [anon_sym_continue] = ACTIONS(2223), + [anon_sym_default] = ACTIONS(2223), + [anon_sym_enum] = ACTIONS(2223), + [anon_sym_fn] = ACTIONS(2223), + [anon_sym_for] = ACTIONS(2223), + [anon_sym_gen] = ACTIONS(2223), + [anon_sym_if] = ACTIONS(2223), + [anon_sym_impl] = ACTIONS(2223), + [anon_sym_let] = ACTIONS(2223), + [anon_sym_loop] = ACTIONS(2223), + [anon_sym_match] = ACTIONS(2223), + [anon_sym_mod] = ACTIONS(2223), + [anon_sym_pub] = ACTIONS(2223), + [anon_sym_return] = ACTIONS(2223), + [anon_sym_static] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2223), + [anon_sym_trait] = ACTIONS(2223), + [anon_sym_type] = ACTIONS(2223), + [anon_sym_union] = ACTIONS(2223), + [anon_sym_unsafe] = ACTIONS(2223), + [anon_sym_use] = ACTIONS(2223), + [anon_sym_while] = ACTIONS(2223), + [anon_sym_extern] = ACTIONS(2223), + [anon_sym_yield] = ACTIONS(2223), + [anon_sym_move] = ACTIONS(2223), + [anon_sym_try] = ACTIONS(2223), + [sym_integer_literal] = ACTIONS(2221), + [aux_sym_string_literal_token1] = ACTIONS(2221), + [sym_char_literal] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(2223), + [anon_sym_false] = ACTIONS(2223), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2223), + [sym_super] = ACTIONS(2223), + [sym_crate] = ACTIONS(2223), + [sym_metavariable] = ACTIONS(2221), + [sym__raw_string_literal_start] = ACTIONS(2221), + [sym_float_literal] = ACTIONS(2221), }, [STATE(619)] = { [sym_line_comment] = STATE(619), [sym_block_comment] = STATE(619), - [ts_builtin_sym_end] = ACTIONS(2402), - [sym_identifier] = ACTIONS(2404), - [anon_sym_SEMI] = ACTIONS(2402), - [anon_sym_macro_rules_BANG] = ACTIONS(2402), - [anon_sym_LPAREN] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(2402), - [anon_sym_LBRACE] = ACTIONS(2402), - [anon_sym_RBRACE] = ACTIONS(2402), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_u8] = ACTIONS(2404), - [anon_sym_i8] = ACTIONS(2404), - [anon_sym_u16] = ACTIONS(2404), - [anon_sym_i16] = ACTIONS(2404), - [anon_sym_u32] = ACTIONS(2404), - [anon_sym_i32] = ACTIONS(2404), - [anon_sym_u64] = ACTIONS(2404), - [anon_sym_i64] = ACTIONS(2404), - [anon_sym_u128] = ACTIONS(2404), - [anon_sym_i128] = ACTIONS(2404), - [anon_sym_isize] = ACTIONS(2404), - [anon_sym_usize] = ACTIONS(2404), - [anon_sym_f32] = ACTIONS(2404), - [anon_sym_f64] = ACTIONS(2404), - [anon_sym_bool] = ACTIONS(2404), - [anon_sym_str] = ACTIONS(2404), - [anon_sym_char] = ACTIONS(2404), - [anon_sym_DASH] = ACTIONS(2402), - [anon_sym_BANG] = ACTIONS(2402), - [anon_sym_AMP] = ACTIONS(2402), - [anon_sym_PIPE] = ACTIONS(2402), - [anon_sym_LT] = ACTIONS(2402), - [anon_sym_DOT_DOT] = ACTIONS(2402), - [anon_sym_COLON_COLON] = ACTIONS(2402), - [anon_sym_POUND] = ACTIONS(2402), - [anon_sym_SQUOTE] = ACTIONS(2404), - [anon_sym_async] = ACTIONS(2404), - [anon_sym_break] = ACTIONS(2404), - [anon_sym_const] = ACTIONS(2404), - [anon_sym_continue] = ACTIONS(2404), - [anon_sym_default] = ACTIONS(2404), - [anon_sym_enum] = ACTIONS(2404), - [anon_sym_fn] = ACTIONS(2404), - [anon_sym_for] = ACTIONS(2404), - [anon_sym_gen] = ACTIONS(2404), - [anon_sym_if] = ACTIONS(2404), - [anon_sym_impl] = ACTIONS(2404), - [anon_sym_let] = ACTIONS(2404), - [anon_sym_loop] = ACTIONS(2404), - [anon_sym_match] = ACTIONS(2404), - [anon_sym_mod] = ACTIONS(2404), - [anon_sym_pub] = ACTIONS(2404), - [anon_sym_return] = ACTIONS(2404), - [anon_sym_static] = ACTIONS(2404), - [anon_sym_struct] = ACTIONS(2404), - [anon_sym_trait] = ACTIONS(2404), - [anon_sym_type] = ACTIONS(2404), - [anon_sym_union] = ACTIONS(2404), - [anon_sym_unsafe] = ACTIONS(2404), - [anon_sym_use] = ACTIONS(2404), - [anon_sym_while] = ACTIONS(2404), - [anon_sym_extern] = ACTIONS(2404), - [anon_sym_yield] = ACTIONS(2404), - [anon_sym_move] = ACTIONS(2404), - [anon_sym_try] = ACTIONS(2404), - [sym_integer_literal] = ACTIONS(2402), - [aux_sym_string_literal_token1] = ACTIONS(2402), - [sym_char_literal] = ACTIONS(2402), - [anon_sym_true] = ACTIONS(2404), - [anon_sym_false] = ACTIONS(2404), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2404), - [sym_super] = ACTIONS(2404), - [sym_crate] = ACTIONS(2404), - [sym_metavariable] = ACTIONS(2402), - [sym__raw_string_literal_start] = ACTIONS(2402), - [sym_float_literal] = ACTIONS(2402), + [ts_builtin_sym_end] = ACTIONS(2225), + [sym_identifier] = ACTIONS(2227), + [anon_sym_SEMI] = ACTIONS(2225), + [anon_sym_macro_rules_BANG] = ACTIONS(2225), + [anon_sym_LPAREN] = ACTIONS(2225), + [anon_sym_LBRACK] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(2225), + [anon_sym_RBRACE] = ACTIONS(2225), + [anon_sym_STAR] = ACTIONS(2225), + [anon_sym_u8] = ACTIONS(2227), + [anon_sym_i8] = ACTIONS(2227), + [anon_sym_u16] = ACTIONS(2227), + [anon_sym_i16] = ACTIONS(2227), + [anon_sym_u32] = ACTIONS(2227), + [anon_sym_i32] = ACTIONS(2227), + [anon_sym_u64] = ACTIONS(2227), + [anon_sym_i64] = ACTIONS(2227), + [anon_sym_u128] = ACTIONS(2227), + [anon_sym_i128] = ACTIONS(2227), + [anon_sym_isize] = ACTIONS(2227), + [anon_sym_usize] = ACTIONS(2227), + [anon_sym_f32] = ACTIONS(2227), + [anon_sym_f64] = ACTIONS(2227), + [anon_sym_bool] = ACTIONS(2227), + [anon_sym_str] = ACTIONS(2227), + [anon_sym_char] = ACTIONS(2227), + [anon_sym_DASH] = ACTIONS(2225), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_AMP] = ACTIONS(2225), + [anon_sym_PIPE] = ACTIONS(2225), + [anon_sym_LT] = ACTIONS(2225), + [anon_sym_DOT_DOT] = ACTIONS(2225), + [anon_sym_COLON_COLON] = ACTIONS(2225), + [anon_sym_POUND] = ACTIONS(2225), + [anon_sym_SQUOTE] = ACTIONS(2227), + [anon_sym_async] = ACTIONS(2227), + [anon_sym_break] = ACTIONS(2227), + [anon_sym_const] = ACTIONS(2227), + [anon_sym_continue] = ACTIONS(2227), + [anon_sym_default] = ACTIONS(2227), + [anon_sym_enum] = ACTIONS(2227), + [anon_sym_fn] = ACTIONS(2227), + [anon_sym_for] = ACTIONS(2227), + [anon_sym_gen] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(2227), + [anon_sym_impl] = ACTIONS(2227), + [anon_sym_let] = ACTIONS(2227), + [anon_sym_loop] = ACTIONS(2227), + [anon_sym_match] = ACTIONS(2227), + [anon_sym_mod] = ACTIONS(2227), + [anon_sym_pub] = ACTIONS(2227), + [anon_sym_return] = ACTIONS(2227), + [anon_sym_static] = ACTIONS(2227), + [anon_sym_struct] = ACTIONS(2227), + [anon_sym_trait] = ACTIONS(2227), + [anon_sym_type] = ACTIONS(2227), + [anon_sym_union] = ACTIONS(2227), + [anon_sym_unsafe] = ACTIONS(2227), + [anon_sym_use] = ACTIONS(2227), + [anon_sym_while] = ACTIONS(2227), + [anon_sym_extern] = ACTIONS(2227), + [anon_sym_yield] = ACTIONS(2227), + [anon_sym_move] = ACTIONS(2227), + [anon_sym_try] = ACTIONS(2227), + [sym_integer_literal] = ACTIONS(2225), + [aux_sym_string_literal_token1] = ACTIONS(2225), + [sym_char_literal] = ACTIONS(2225), + [anon_sym_true] = ACTIONS(2227), + [anon_sym_false] = ACTIONS(2227), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2227), + [sym_super] = ACTIONS(2227), + [sym_crate] = ACTIONS(2227), + [sym_metavariable] = ACTIONS(2225), + [sym__raw_string_literal_start] = ACTIONS(2225), + [sym_float_literal] = ACTIONS(2225), }, [STATE(620)] = { [sym_line_comment] = STATE(620), [sym_block_comment] = STATE(620), - [ts_builtin_sym_end] = ACTIONS(2406), - [sym_identifier] = ACTIONS(2408), - [anon_sym_SEMI] = ACTIONS(2406), - [anon_sym_macro_rules_BANG] = ACTIONS(2406), - [anon_sym_LPAREN] = ACTIONS(2406), - [anon_sym_LBRACK] = ACTIONS(2406), - [anon_sym_LBRACE] = ACTIONS(2406), - [anon_sym_RBRACE] = ACTIONS(2406), - [anon_sym_STAR] = ACTIONS(2406), - [anon_sym_u8] = ACTIONS(2408), - [anon_sym_i8] = ACTIONS(2408), - [anon_sym_u16] = ACTIONS(2408), - [anon_sym_i16] = ACTIONS(2408), - [anon_sym_u32] = ACTIONS(2408), - [anon_sym_i32] = ACTIONS(2408), - [anon_sym_u64] = ACTIONS(2408), - [anon_sym_i64] = ACTIONS(2408), - [anon_sym_u128] = ACTIONS(2408), - [anon_sym_i128] = ACTIONS(2408), - [anon_sym_isize] = ACTIONS(2408), - [anon_sym_usize] = ACTIONS(2408), - [anon_sym_f32] = ACTIONS(2408), - [anon_sym_f64] = ACTIONS(2408), - [anon_sym_bool] = ACTIONS(2408), - [anon_sym_str] = ACTIONS(2408), - [anon_sym_char] = ACTIONS(2408), - [anon_sym_DASH] = ACTIONS(2406), - [anon_sym_BANG] = ACTIONS(2406), - [anon_sym_AMP] = ACTIONS(2406), - [anon_sym_PIPE] = ACTIONS(2406), - [anon_sym_LT] = ACTIONS(2406), - [anon_sym_DOT_DOT] = ACTIONS(2406), - [anon_sym_COLON_COLON] = ACTIONS(2406), - [anon_sym_POUND] = ACTIONS(2406), - [anon_sym_SQUOTE] = ACTIONS(2408), - [anon_sym_async] = ACTIONS(2408), - [anon_sym_break] = ACTIONS(2408), - [anon_sym_const] = ACTIONS(2408), - [anon_sym_continue] = ACTIONS(2408), - [anon_sym_default] = ACTIONS(2408), - [anon_sym_enum] = ACTIONS(2408), - [anon_sym_fn] = ACTIONS(2408), - [anon_sym_for] = ACTIONS(2408), - [anon_sym_gen] = ACTIONS(2408), - [anon_sym_if] = ACTIONS(2408), - [anon_sym_impl] = ACTIONS(2408), - [anon_sym_let] = ACTIONS(2408), - [anon_sym_loop] = ACTIONS(2408), - [anon_sym_match] = ACTIONS(2408), - [anon_sym_mod] = ACTIONS(2408), - [anon_sym_pub] = ACTIONS(2408), - [anon_sym_return] = ACTIONS(2408), - [anon_sym_static] = ACTIONS(2408), - [anon_sym_struct] = ACTIONS(2408), - [anon_sym_trait] = ACTIONS(2408), - [anon_sym_type] = ACTIONS(2408), - [anon_sym_union] = ACTIONS(2408), - [anon_sym_unsafe] = ACTIONS(2408), - [anon_sym_use] = ACTIONS(2408), - [anon_sym_while] = ACTIONS(2408), - [anon_sym_extern] = ACTIONS(2408), - [anon_sym_yield] = ACTIONS(2408), - [anon_sym_move] = ACTIONS(2408), - [anon_sym_try] = ACTIONS(2408), - [sym_integer_literal] = ACTIONS(2406), - [aux_sym_string_literal_token1] = ACTIONS(2406), - [sym_char_literal] = ACTIONS(2406), - [anon_sym_true] = ACTIONS(2408), - [anon_sym_false] = ACTIONS(2408), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2408), - [sym_super] = ACTIONS(2408), - [sym_crate] = ACTIONS(2408), - [sym_metavariable] = ACTIONS(2406), - [sym__raw_string_literal_start] = ACTIONS(2406), - [sym_float_literal] = ACTIONS(2406), + [ts_builtin_sym_end] = ACTIONS(2229), + [sym_identifier] = ACTIONS(2231), + [anon_sym_SEMI] = ACTIONS(2229), + [anon_sym_macro_rules_BANG] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2229), + [anon_sym_u8] = ACTIONS(2231), + [anon_sym_i8] = ACTIONS(2231), + [anon_sym_u16] = ACTIONS(2231), + [anon_sym_i16] = ACTIONS(2231), + [anon_sym_u32] = ACTIONS(2231), + [anon_sym_i32] = ACTIONS(2231), + [anon_sym_u64] = ACTIONS(2231), + [anon_sym_i64] = ACTIONS(2231), + [anon_sym_u128] = ACTIONS(2231), + [anon_sym_i128] = ACTIONS(2231), + [anon_sym_isize] = ACTIONS(2231), + [anon_sym_usize] = ACTIONS(2231), + [anon_sym_f32] = ACTIONS(2231), + [anon_sym_f64] = ACTIONS(2231), + [anon_sym_bool] = ACTIONS(2231), + [anon_sym_str] = ACTIONS(2231), + [anon_sym_char] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_BANG] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2229), + [anon_sym_PIPE] = ACTIONS(2229), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_COLON_COLON] = ACTIONS(2229), + [anon_sym_POUND] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2231), + [anon_sym_async] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(2231), + [anon_sym_const] = ACTIONS(2231), + [anon_sym_continue] = ACTIONS(2231), + [anon_sym_default] = ACTIONS(2231), + [anon_sym_enum] = ACTIONS(2231), + [anon_sym_fn] = ACTIONS(2231), + [anon_sym_for] = ACTIONS(2231), + [anon_sym_gen] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2231), + [anon_sym_impl] = ACTIONS(2231), + [anon_sym_let] = ACTIONS(2231), + [anon_sym_loop] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2231), + [anon_sym_mod] = ACTIONS(2231), + [anon_sym_pub] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_static] = ACTIONS(2231), + [anon_sym_struct] = ACTIONS(2231), + [anon_sym_trait] = ACTIONS(2231), + [anon_sym_type] = ACTIONS(2231), + [anon_sym_union] = ACTIONS(2231), + [anon_sym_unsafe] = ACTIONS(2231), + [anon_sym_use] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [anon_sym_extern] = ACTIONS(2231), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_move] = ACTIONS(2231), + [anon_sym_try] = ACTIONS(2231), + [sym_integer_literal] = ACTIONS(2229), + [aux_sym_string_literal_token1] = ACTIONS(2229), + [sym_char_literal] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2231), + [anon_sym_false] = ACTIONS(2231), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2231), + [sym_super] = ACTIONS(2231), + [sym_crate] = ACTIONS(2231), + [sym_metavariable] = ACTIONS(2229), + [sym__raw_string_literal_start] = ACTIONS(2229), + [sym_float_literal] = ACTIONS(2229), }, [STATE(621)] = { [sym_line_comment] = STATE(621), [sym_block_comment] = STATE(621), - [ts_builtin_sym_end] = ACTIONS(2410), - [sym_identifier] = ACTIONS(2412), - [anon_sym_SEMI] = ACTIONS(2410), - [anon_sym_macro_rules_BANG] = ACTIONS(2410), - [anon_sym_LPAREN] = ACTIONS(2410), - [anon_sym_LBRACK] = ACTIONS(2410), - [anon_sym_LBRACE] = ACTIONS(2410), - [anon_sym_RBRACE] = ACTIONS(2410), - [anon_sym_STAR] = ACTIONS(2410), - [anon_sym_u8] = ACTIONS(2412), - [anon_sym_i8] = ACTIONS(2412), - [anon_sym_u16] = ACTIONS(2412), - [anon_sym_i16] = ACTIONS(2412), - [anon_sym_u32] = ACTIONS(2412), - [anon_sym_i32] = ACTIONS(2412), - [anon_sym_u64] = ACTIONS(2412), - [anon_sym_i64] = ACTIONS(2412), - [anon_sym_u128] = ACTIONS(2412), - [anon_sym_i128] = ACTIONS(2412), - [anon_sym_isize] = ACTIONS(2412), - [anon_sym_usize] = ACTIONS(2412), - [anon_sym_f32] = ACTIONS(2412), - [anon_sym_f64] = ACTIONS(2412), - [anon_sym_bool] = ACTIONS(2412), - [anon_sym_str] = ACTIONS(2412), - [anon_sym_char] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2410), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_PIPE] = ACTIONS(2410), - [anon_sym_LT] = ACTIONS(2410), - [anon_sym_DOT_DOT] = ACTIONS(2410), - [anon_sym_COLON_COLON] = ACTIONS(2410), - [anon_sym_POUND] = ACTIONS(2410), - [anon_sym_SQUOTE] = ACTIONS(2412), - [anon_sym_async] = ACTIONS(2412), - [anon_sym_break] = ACTIONS(2412), - [anon_sym_const] = ACTIONS(2412), - [anon_sym_continue] = ACTIONS(2412), - [anon_sym_default] = ACTIONS(2412), - [anon_sym_enum] = ACTIONS(2412), - [anon_sym_fn] = ACTIONS(2412), - [anon_sym_for] = ACTIONS(2412), - [anon_sym_gen] = ACTIONS(2412), - [anon_sym_if] = ACTIONS(2412), - [anon_sym_impl] = ACTIONS(2412), - [anon_sym_let] = ACTIONS(2412), - [anon_sym_loop] = ACTIONS(2412), - [anon_sym_match] = ACTIONS(2412), - [anon_sym_mod] = ACTIONS(2412), - [anon_sym_pub] = ACTIONS(2412), - [anon_sym_return] = ACTIONS(2412), - [anon_sym_static] = ACTIONS(2412), - [anon_sym_struct] = ACTIONS(2412), - [anon_sym_trait] = ACTIONS(2412), - [anon_sym_type] = ACTIONS(2412), - [anon_sym_union] = ACTIONS(2412), - [anon_sym_unsafe] = ACTIONS(2412), - [anon_sym_use] = ACTIONS(2412), - [anon_sym_while] = ACTIONS(2412), - [anon_sym_extern] = ACTIONS(2412), - [anon_sym_yield] = ACTIONS(2412), - [anon_sym_move] = ACTIONS(2412), - [anon_sym_try] = ACTIONS(2412), - [sym_integer_literal] = ACTIONS(2410), - [aux_sym_string_literal_token1] = ACTIONS(2410), - [sym_char_literal] = ACTIONS(2410), - [anon_sym_true] = ACTIONS(2412), - [anon_sym_false] = ACTIONS(2412), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2412), - [sym_super] = ACTIONS(2412), - [sym_crate] = ACTIONS(2412), - [sym_metavariable] = ACTIONS(2410), - [sym__raw_string_literal_start] = ACTIONS(2410), - [sym_float_literal] = ACTIONS(2410), + [ts_builtin_sym_end] = ACTIONS(2233), + [sym_identifier] = ACTIONS(2235), + [anon_sym_SEMI] = ACTIONS(2233), + [anon_sym_macro_rules_BANG] = ACTIONS(2233), + [anon_sym_LPAREN] = ACTIONS(2233), + [anon_sym_LBRACK] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(2233), + [anon_sym_RBRACE] = ACTIONS(2233), + [anon_sym_STAR] = ACTIONS(2233), + [anon_sym_u8] = ACTIONS(2235), + [anon_sym_i8] = ACTIONS(2235), + [anon_sym_u16] = ACTIONS(2235), + [anon_sym_i16] = ACTIONS(2235), + [anon_sym_u32] = ACTIONS(2235), + [anon_sym_i32] = ACTIONS(2235), + [anon_sym_u64] = ACTIONS(2235), + [anon_sym_i64] = ACTIONS(2235), + [anon_sym_u128] = ACTIONS(2235), + [anon_sym_i128] = ACTIONS(2235), + [anon_sym_isize] = ACTIONS(2235), + [anon_sym_usize] = ACTIONS(2235), + [anon_sym_f32] = ACTIONS(2235), + [anon_sym_f64] = ACTIONS(2235), + [anon_sym_bool] = ACTIONS(2235), + [anon_sym_str] = ACTIONS(2235), + [anon_sym_char] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2233), + [anon_sym_BANG] = ACTIONS(2233), + [anon_sym_AMP] = ACTIONS(2233), + [anon_sym_PIPE] = ACTIONS(2233), + [anon_sym_LT] = ACTIONS(2233), + [anon_sym_DOT_DOT] = ACTIONS(2233), + [anon_sym_COLON_COLON] = ACTIONS(2233), + [anon_sym_POUND] = ACTIONS(2233), + [anon_sym_SQUOTE] = ACTIONS(2235), + [anon_sym_async] = ACTIONS(2235), + [anon_sym_break] = ACTIONS(2235), + [anon_sym_const] = ACTIONS(2235), + [anon_sym_continue] = ACTIONS(2235), + [anon_sym_default] = ACTIONS(2235), + [anon_sym_enum] = ACTIONS(2235), + [anon_sym_fn] = ACTIONS(2235), + [anon_sym_for] = ACTIONS(2235), + [anon_sym_gen] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2235), + [anon_sym_impl] = ACTIONS(2235), + [anon_sym_let] = ACTIONS(2235), + [anon_sym_loop] = ACTIONS(2235), + [anon_sym_match] = ACTIONS(2235), + [anon_sym_mod] = ACTIONS(2235), + [anon_sym_pub] = ACTIONS(2235), + [anon_sym_return] = ACTIONS(2235), + [anon_sym_static] = ACTIONS(2235), + [anon_sym_struct] = ACTIONS(2235), + [anon_sym_trait] = ACTIONS(2235), + [anon_sym_type] = ACTIONS(2235), + [anon_sym_union] = ACTIONS(2235), + [anon_sym_unsafe] = ACTIONS(2235), + [anon_sym_use] = ACTIONS(2235), + [anon_sym_while] = ACTIONS(2235), + [anon_sym_extern] = ACTIONS(2235), + [anon_sym_yield] = ACTIONS(2235), + [anon_sym_move] = ACTIONS(2235), + [anon_sym_try] = ACTIONS(2235), + [sym_integer_literal] = ACTIONS(2233), + [aux_sym_string_literal_token1] = ACTIONS(2233), + [sym_char_literal] = ACTIONS(2233), + [anon_sym_true] = ACTIONS(2235), + [anon_sym_false] = ACTIONS(2235), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2235), + [sym_super] = ACTIONS(2235), + [sym_crate] = ACTIONS(2235), + [sym_metavariable] = ACTIONS(2233), + [sym__raw_string_literal_start] = ACTIONS(2233), + [sym_float_literal] = ACTIONS(2233), }, [STATE(622)] = { [sym_line_comment] = STATE(622), [sym_block_comment] = STATE(622), - [ts_builtin_sym_end] = ACTIONS(2414), - [sym_identifier] = ACTIONS(2416), - [anon_sym_SEMI] = ACTIONS(2414), - [anon_sym_macro_rules_BANG] = ACTIONS(2414), - [anon_sym_LPAREN] = ACTIONS(2414), - [anon_sym_LBRACK] = ACTIONS(2414), - [anon_sym_LBRACE] = ACTIONS(2414), - [anon_sym_RBRACE] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(2414), - [anon_sym_u8] = ACTIONS(2416), - [anon_sym_i8] = ACTIONS(2416), - [anon_sym_u16] = ACTIONS(2416), - [anon_sym_i16] = ACTIONS(2416), - [anon_sym_u32] = ACTIONS(2416), - [anon_sym_i32] = ACTIONS(2416), - [anon_sym_u64] = ACTIONS(2416), - [anon_sym_i64] = ACTIONS(2416), - [anon_sym_u128] = ACTIONS(2416), - [anon_sym_i128] = ACTIONS(2416), - [anon_sym_isize] = ACTIONS(2416), - [anon_sym_usize] = ACTIONS(2416), - [anon_sym_f32] = ACTIONS(2416), - [anon_sym_f64] = ACTIONS(2416), - [anon_sym_bool] = ACTIONS(2416), - [anon_sym_str] = ACTIONS(2416), - [anon_sym_char] = ACTIONS(2416), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_BANG] = ACTIONS(2414), - [anon_sym_AMP] = ACTIONS(2414), - [anon_sym_PIPE] = ACTIONS(2414), - [anon_sym_LT] = ACTIONS(2414), - [anon_sym_DOT_DOT] = ACTIONS(2414), - [anon_sym_COLON_COLON] = ACTIONS(2414), - [anon_sym_POUND] = ACTIONS(2414), - [anon_sym_SQUOTE] = ACTIONS(2416), - [anon_sym_async] = ACTIONS(2416), - [anon_sym_break] = ACTIONS(2416), - [anon_sym_const] = ACTIONS(2416), - [anon_sym_continue] = ACTIONS(2416), - [anon_sym_default] = ACTIONS(2416), - [anon_sym_enum] = ACTIONS(2416), - [anon_sym_fn] = ACTIONS(2416), - [anon_sym_for] = ACTIONS(2416), - [anon_sym_gen] = ACTIONS(2416), - [anon_sym_if] = ACTIONS(2416), - [anon_sym_impl] = ACTIONS(2416), - [anon_sym_let] = ACTIONS(2416), - [anon_sym_loop] = ACTIONS(2416), - [anon_sym_match] = ACTIONS(2416), - [anon_sym_mod] = ACTIONS(2416), - [anon_sym_pub] = ACTIONS(2416), - [anon_sym_return] = ACTIONS(2416), - [anon_sym_static] = ACTIONS(2416), - [anon_sym_struct] = ACTIONS(2416), - [anon_sym_trait] = ACTIONS(2416), - [anon_sym_type] = ACTIONS(2416), - [anon_sym_union] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(2416), - [anon_sym_use] = ACTIONS(2416), - [anon_sym_while] = ACTIONS(2416), - [anon_sym_extern] = ACTIONS(2416), - [anon_sym_yield] = ACTIONS(2416), - [anon_sym_move] = ACTIONS(2416), - [anon_sym_try] = ACTIONS(2416), - [sym_integer_literal] = ACTIONS(2414), - [aux_sym_string_literal_token1] = ACTIONS(2414), - [sym_char_literal] = ACTIONS(2414), - [anon_sym_true] = ACTIONS(2416), - [anon_sym_false] = ACTIONS(2416), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2416), - [sym_super] = ACTIONS(2416), - [sym_crate] = ACTIONS(2416), - [sym_metavariable] = ACTIONS(2414), - [sym__raw_string_literal_start] = ACTIONS(2414), - [sym_float_literal] = ACTIONS(2414), + [ts_builtin_sym_end] = ACTIONS(2237), + [sym_identifier] = ACTIONS(2239), + [anon_sym_SEMI] = ACTIONS(2237), + [anon_sym_macro_rules_BANG] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2237), + [anon_sym_RBRACE] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2237), + [anon_sym_u8] = ACTIONS(2239), + [anon_sym_i8] = ACTIONS(2239), + [anon_sym_u16] = ACTIONS(2239), + [anon_sym_i16] = ACTIONS(2239), + [anon_sym_u32] = ACTIONS(2239), + [anon_sym_i32] = ACTIONS(2239), + [anon_sym_u64] = ACTIONS(2239), + [anon_sym_i64] = ACTIONS(2239), + [anon_sym_u128] = ACTIONS(2239), + [anon_sym_i128] = ACTIONS(2239), + [anon_sym_isize] = ACTIONS(2239), + [anon_sym_usize] = ACTIONS(2239), + [anon_sym_f32] = ACTIONS(2239), + [anon_sym_f64] = ACTIONS(2239), + [anon_sym_bool] = ACTIONS(2239), + [anon_sym_str] = ACTIONS(2239), + [anon_sym_char] = ACTIONS(2239), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2237), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_PIPE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2237), + [anon_sym_DOT_DOT] = ACTIONS(2237), + [anon_sym_COLON_COLON] = ACTIONS(2237), + [anon_sym_POUND] = ACTIONS(2237), + [anon_sym_SQUOTE] = ACTIONS(2239), + [anon_sym_async] = ACTIONS(2239), + [anon_sym_break] = ACTIONS(2239), + [anon_sym_const] = ACTIONS(2239), + [anon_sym_continue] = ACTIONS(2239), + [anon_sym_default] = ACTIONS(2239), + [anon_sym_enum] = ACTIONS(2239), + [anon_sym_fn] = ACTIONS(2239), + [anon_sym_for] = ACTIONS(2239), + [anon_sym_gen] = ACTIONS(2239), + [anon_sym_if] = ACTIONS(2239), + [anon_sym_impl] = ACTIONS(2239), + [anon_sym_let] = ACTIONS(2239), + [anon_sym_loop] = ACTIONS(2239), + [anon_sym_match] = ACTIONS(2239), + [anon_sym_mod] = ACTIONS(2239), + [anon_sym_pub] = ACTIONS(2239), + [anon_sym_return] = ACTIONS(2239), + [anon_sym_static] = ACTIONS(2239), + [anon_sym_struct] = ACTIONS(2239), + [anon_sym_trait] = ACTIONS(2239), + [anon_sym_type] = ACTIONS(2239), + [anon_sym_union] = ACTIONS(2239), + [anon_sym_unsafe] = ACTIONS(2239), + [anon_sym_use] = ACTIONS(2239), + [anon_sym_while] = ACTIONS(2239), + [anon_sym_extern] = ACTIONS(2239), + [anon_sym_yield] = ACTIONS(2239), + [anon_sym_move] = ACTIONS(2239), + [anon_sym_try] = ACTIONS(2239), + [sym_integer_literal] = ACTIONS(2237), + [aux_sym_string_literal_token1] = ACTIONS(2237), + [sym_char_literal] = ACTIONS(2237), + [anon_sym_true] = ACTIONS(2239), + [anon_sym_false] = ACTIONS(2239), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2239), + [sym_super] = ACTIONS(2239), + [sym_crate] = ACTIONS(2239), + [sym_metavariable] = ACTIONS(2237), + [sym__raw_string_literal_start] = ACTIONS(2237), + [sym_float_literal] = ACTIONS(2237), }, [STATE(623)] = { [sym_line_comment] = STATE(623), [sym_block_comment] = STATE(623), - [ts_builtin_sym_end] = ACTIONS(2418), - [sym_identifier] = ACTIONS(2420), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_macro_rules_BANG] = ACTIONS(2418), - [anon_sym_LPAREN] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_RBRACE] = ACTIONS(2418), - [anon_sym_STAR] = ACTIONS(2418), - [anon_sym_u8] = ACTIONS(2420), - [anon_sym_i8] = ACTIONS(2420), - [anon_sym_u16] = ACTIONS(2420), - [anon_sym_i16] = ACTIONS(2420), - [anon_sym_u32] = ACTIONS(2420), - [anon_sym_i32] = ACTIONS(2420), - [anon_sym_u64] = ACTIONS(2420), - [anon_sym_i64] = ACTIONS(2420), - [anon_sym_u128] = ACTIONS(2420), - [anon_sym_i128] = ACTIONS(2420), - [anon_sym_isize] = ACTIONS(2420), - [anon_sym_usize] = ACTIONS(2420), - [anon_sym_f32] = ACTIONS(2420), - [anon_sym_f64] = ACTIONS(2420), - [anon_sym_bool] = ACTIONS(2420), - [anon_sym_str] = ACTIONS(2420), - [anon_sym_char] = ACTIONS(2420), - [anon_sym_DASH] = ACTIONS(2418), - [anon_sym_BANG] = ACTIONS(2418), - [anon_sym_AMP] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_LT] = ACTIONS(2418), - [anon_sym_DOT_DOT] = ACTIONS(2418), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_POUND] = ACTIONS(2418), - [anon_sym_SQUOTE] = ACTIONS(2420), - [anon_sym_async] = ACTIONS(2420), - [anon_sym_break] = ACTIONS(2420), - [anon_sym_const] = ACTIONS(2420), - [anon_sym_continue] = ACTIONS(2420), - [anon_sym_default] = ACTIONS(2420), - [anon_sym_enum] = ACTIONS(2420), - [anon_sym_fn] = ACTIONS(2420), - [anon_sym_for] = ACTIONS(2420), - [anon_sym_gen] = ACTIONS(2420), - [anon_sym_if] = ACTIONS(2420), - [anon_sym_impl] = ACTIONS(2420), - [anon_sym_let] = ACTIONS(2420), - [anon_sym_loop] = ACTIONS(2420), - [anon_sym_match] = ACTIONS(2420), - [anon_sym_mod] = ACTIONS(2420), - [anon_sym_pub] = ACTIONS(2420), - [anon_sym_return] = ACTIONS(2420), - [anon_sym_static] = ACTIONS(2420), - [anon_sym_struct] = ACTIONS(2420), - [anon_sym_trait] = ACTIONS(2420), - [anon_sym_type] = ACTIONS(2420), - [anon_sym_union] = ACTIONS(2420), - [anon_sym_unsafe] = ACTIONS(2420), - [anon_sym_use] = ACTIONS(2420), - [anon_sym_while] = ACTIONS(2420), - [anon_sym_extern] = ACTIONS(2420), - [anon_sym_yield] = ACTIONS(2420), - [anon_sym_move] = ACTIONS(2420), - [anon_sym_try] = ACTIONS(2420), - [sym_integer_literal] = ACTIONS(2418), - [aux_sym_string_literal_token1] = ACTIONS(2418), - [sym_char_literal] = ACTIONS(2418), - [anon_sym_true] = ACTIONS(2420), - [anon_sym_false] = ACTIONS(2420), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2420), - [sym_super] = ACTIONS(2420), - [sym_crate] = ACTIONS(2420), - [sym_metavariable] = ACTIONS(2418), - [sym__raw_string_literal_start] = ACTIONS(2418), - [sym_float_literal] = ACTIONS(2418), + [ts_builtin_sym_end] = ACTIONS(2241), + [sym_identifier] = ACTIONS(2243), + [anon_sym_SEMI] = ACTIONS(2241), + [anon_sym_macro_rules_BANG] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(2241), + [anon_sym_LBRACK] = ACTIONS(2241), + [anon_sym_LBRACE] = ACTIONS(2241), + [anon_sym_RBRACE] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_u8] = ACTIONS(2243), + [anon_sym_i8] = ACTIONS(2243), + [anon_sym_u16] = ACTIONS(2243), + [anon_sym_i16] = ACTIONS(2243), + [anon_sym_u32] = ACTIONS(2243), + [anon_sym_i32] = ACTIONS(2243), + [anon_sym_u64] = ACTIONS(2243), + [anon_sym_i64] = ACTIONS(2243), + [anon_sym_u128] = ACTIONS(2243), + [anon_sym_i128] = ACTIONS(2243), + [anon_sym_isize] = ACTIONS(2243), + [anon_sym_usize] = ACTIONS(2243), + [anon_sym_f32] = ACTIONS(2243), + [anon_sym_f64] = ACTIONS(2243), + [anon_sym_bool] = ACTIONS(2243), + [anon_sym_str] = ACTIONS(2243), + [anon_sym_char] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2241), + [anon_sym_BANG] = ACTIONS(2241), + [anon_sym_AMP] = ACTIONS(2241), + [anon_sym_PIPE] = ACTIONS(2241), + [anon_sym_LT] = ACTIONS(2241), + [anon_sym_DOT_DOT] = ACTIONS(2241), + [anon_sym_COLON_COLON] = ACTIONS(2241), + [anon_sym_POUND] = ACTIONS(2241), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(2243), + [anon_sym_break] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(2243), + [anon_sym_continue] = ACTIONS(2243), + [anon_sym_default] = ACTIONS(2243), + [anon_sym_enum] = ACTIONS(2243), + [anon_sym_fn] = ACTIONS(2243), + [anon_sym_for] = ACTIONS(2243), + [anon_sym_gen] = ACTIONS(2243), + [anon_sym_if] = ACTIONS(2243), + [anon_sym_impl] = ACTIONS(2243), + [anon_sym_let] = ACTIONS(2243), + [anon_sym_loop] = ACTIONS(2243), + [anon_sym_match] = ACTIONS(2243), + [anon_sym_mod] = ACTIONS(2243), + [anon_sym_pub] = ACTIONS(2243), + [anon_sym_return] = ACTIONS(2243), + [anon_sym_static] = ACTIONS(2243), + [anon_sym_struct] = ACTIONS(2243), + [anon_sym_trait] = ACTIONS(2243), + [anon_sym_type] = ACTIONS(2243), + [anon_sym_union] = ACTIONS(2243), + [anon_sym_unsafe] = ACTIONS(2243), + [anon_sym_use] = ACTIONS(2243), + [anon_sym_while] = ACTIONS(2243), + [anon_sym_extern] = ACTIONS(2243), + [anon_sym_yield] = ACTIONS(2243), + [anon_sym_move] = ACTIONS(2243), + [anon_sym_try] = ACTIONS(2243), + [sym_integer_literal] = ACTIONS(2241), + [aux_sym_string_literal_token1] = ACTIONS(2241), + [sym_char_literal] = ACTIONS(2241), + [anon_sym_true] = ACTIONS(2243), + [anon_sym_false] = ACTIONS(2243), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2243), + [sym_super] = ACTIONS(2243), + [sym_crate] = ACTIONS(2243), + [sym_metavariable] = ACTIONS(2241), + [sym__raw_string_literal_start] = ACTIONS(2241), + [sym_float_literal] = ACTIONS(2241), }, [STATE(624)] = { [sym_line_comment] = STATE(624), [sym_block_comment] = STATE(624), - [ts_builtin_sym_end] = ACTIONS(2422), - [sym_identifier] = ACTIONS(2424), - [anon_sym_SEMI] = ACTIONS(2422), - [anon_sym_macro_rules_BANG] = ACTIONS(2422), - [anon_sym_LPAREN] = ACTIONS(2422), - [anon_sym_LBRACK] = ACTIONS(2422), - [anon_sym_LBRACE] = ACTIONS(2422), - [anon_sym_RBRACE] = ACTIONS(2422), - [anon_sym_STAR] = ACTIONS(2422), - [anon_sym_u8] = ACTIONS(2424), - [anon_sym_i8] = ACTIONS(2424), - [anon_sym_u16] = ACTIONS(2424), - [anon_sym_i16] = ACTIONS(2424), - [anon_sym_u32] = ACTIONS(2424), - [anon_sym_i32] = ACTIONS(2424), - [anon_sym_u64] = ACTIONS(2424), - [anon_sym_i64] = ACTIONS(2424), - [anon_sym_u128] = ACTIONS(2424), - [anon_sym_i128] = ACTIONS(2424), - [anon_sym_isize] = ACTIONS(2424), - [anon_sym_usize] = ACTIONS(2424), - [anon_sym_f32] = ACTIONS(2424), - [anon_sym_f64] = ACTIONS(2424), - [anon_sym_bool] = ACTIONS(2424), - [anon_sym_str] = ACTIONS(2424), - [anon_sym_char] = ACTIONS(2424), - [anon_sym_DASH] = ACTIONS(2422), - [anon_sym_BANG] = ACTIONS(2422), - [anon_sym_AMP] = ACTIONS(2422), - [anon_sym_PIPE] = ACTIONS(2422), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_DOT_DOT] = ACTIONS(2422), - [anon_sym_COLON_COLON] = ACTIONS(2422), - [anon_sym_POUND] = ACTIONS(2422), - [anon_sym_SQUOTE] = ACTIONS(2424), - [anon_sym_async] = ACTIONS(2424), - [anon_sym_break] = ACTIONS(2424), - [anon_sym_const] = ACTIONS(2424), - [anon_sym_continue] = ACTIONS(2424), - [anon_sym_default] = ACTIONS(2424), - [anon_sym_enum] = ACTIONS(2424), - [anon_sym_fn] = ACTIONS(2424), - [anon_sym_for] = ACTIONS(2424), - [anon_sym_gen] = ACTIONS(2424), - [anon_sym_if] = ACTIONS(2424), - [anon_sym_impl] = ACTIONS(2424), - [anon_sym_let] = ACTIONS(2424), - [anon_sym_loop] = ACTIONS(2424), - [anon_sym_match] = ACTIONS(2424), - [anon_sym_mod] = ACTIONS(2424), - [anon_sym_pub] = ACTIONS(2424), - [anon_sym_return] = ACTIONS(2424), - [anon_sym_static] = ACTIONS(2424), - [anon_sym_struct] = ACTIONS(2424), - [anon_sym_trait] = ACTIONS(2424), - [anon_sym_type] = ACTIONS(2424), - [anon_sym_union] = ACTIONS(2424), - [anon_sym_unsafe] = ACTIONS(2424), - [anon_sym_use] = ACTIONS(2424), - [anon_sym_while] = ACTIONS(2424), - [anon_sym_extern] = ACTIONS(2424), - [anon_sym_yield] = ACTIONS(2424), - [anon_sym_move] = ACTIONS(2424), - [anon_sym_try] = ACTIONS(2424), - [sym_integer_literal] = ACTIONS(2422), - [aux_sym_string_literal_token1] = ACTIONS(2422), - [sym_char_literal] = ACTIONS(2422), - [anon_sym_true] = ACTIONS(2424), - [anon_sym_false] = ACTIONS(2424), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2424), - [sym_super] = ACTIONS(2424), - [sym_crate] = ACTIONS(2424), - [sym_metavariable] = ACTIONS(2422), - [sym__raw_string_literal_start] = ACTIONS(2422), - [sym_float_literal] = ACTIONS(2422), + [ts_builtin_sym_end] = ACTIONS(2245), + [sym_identifier] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2245), + [anon_sym_macro_rules_BANG] = ACTIONS(2245), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2245), + [anon_sym_LBRACE] = ACTIONS(2245), + [anon_sym_RBRACE] = ACTIONS(2245), + [anon_sym_STAR] = ACTIONS(2245), + [anon_sym_u8] = ACTIONS(2247), + [anon_sym_i8] = ACTIONS(2247), + [anon_sym_u16] = ACTIONS(2247), + [anon_sym_i16] = ACTIONS(2247), + [anon_sym_u32] = ACTIONS(2247), + [anon_sym_i32] = ACTIONS(2247), + [anon_sym_u64] = ACTIONS(2247), + [anon_sym_i64] = ACTIONS(2247), + [anon_sym_u128] = ACTIONS(2247), + [anon_sym_i128] = ACTIONS(2247), + [anon_sym_isize] = ACTIONS(2247), + [anon_sym_usize] = ACTIONS(2247), + [anon_sym_f32] = ACTIONS(2247), + [anon_sym_f64] = ACTIONS(2247), + [anon_sym_bool] = ACTIONS(2247), + [anon_sym_str] = ACTIONS(2247), + [anon_sym_char] = ACTIONS(2247), + [anon_sym_DASH] = ACTIONS(2245), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), + [anon_sym_PIPE] = ACTIONS(2245), + [anon_sym_LT] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2245), + [anon_sym_COLON_COLON] = ACTIONS(2245), + [anon_sym_POUND] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2247), + [anon_sym_async] = ACTIONS(2247), + [anon_sym_break] = ACTIONS(2247), + [anon_sym_const] = ACTIONS(2247), + [anon_sym_continue] = ACTIONS(2247), + [anon_sym_default] = ACTIONS(2247), + [anon_sym_enum] = ACTIONS(2247), + [anon_sym_fn] = ACTIONS(2247), + [anon_sym_for] = ACTIONS(2247), + [anon_sym_gen] = ACTIONS(2247), + [anon_sym_if] = ACTIONS(2247), + [anon_sym_impl] = ACTIONS(2247), + [anon_sym_let] = ACTIONS(2247), + [anon_sym_loop] = ACTIONS(2247), + [anon_sym_match] = ACTIONS(2247), + [anon_sym_mod] = ACTIONS(2247), + [anon_sym_pub] = ACTIONS(2247), + [anon_sym_return] = ACTIONS(2247), + [anon_sym_static] = ACTIONS(2247), + [anon_sym_struct] = ACTIONS(2247), + [anon_sym_trait] = ACTIONS(2247), + [anon_sym_type] = ACTIONS(2247), + [anon_sym_union] = ACTIONS(2247), + [anon_sym_unsafe] = ACTIONS(2247), + [anon_sym_use] = ACTIONS(2247), + [anon_sym_while] = ACTIONS(2247), + [anon_sym_extern] = ACTIONS(2247), + [anon_sym_yield] = ACTIONS(2247), + [anon_sym_move] = ACTIONS(2247), + [anon_sym_try] = ACTIONS(2247), + [sym_integer_literal] = ACTIONS(2245), + [aux_sym_string_literal_token1] = ACTIONS(2245), + [sym_char_literal] = ACTIONS(2245), + [anon_sym_true] = ACTIONS(2247), + [anon_sym_false] = ACTIONS(2247), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2247), + [sym_super] = ACTIONS(2247), + [sym_crate] = ACTIONS(2247), + [sym_metavariable] = ACTIONS(2245), + [sym__raw_string_literal_start] = ACTIONS(2245), + [sym_float_literal] = ACTIONS(2245), }, [STATE(625)] = { [sym_line_comment] = STATE(625), [sym_block_comment] = STATE(625), - [ts_builtin_sym_end] = ACTIONS(2426), - [sym_identifier] = ACTIONS(2428), - [anon_sym_SEMI] = ACTIONS(2426), - [anon_sym_macro_rules_BANG] = ACTIONS(2426), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_LBRACK] = ACTIONS(2426), - [anon_sym_LBRACE] = ACTIONS(2426), - [anon_sym_RBRACE] = ACTIONS(2426), - [anon_sym_STAR] = ACTIONS(2426), - [anon_sym_u8] = ACTIONS(2428), - [anon_sym_i8] = ACTIONS(2428), - [anon_sym_u16] = ACTIONS(2428), - [anon_sym_i16] = ACTIONS(2428), - [anon_sym_u32] = ACTIONS(2428), - [anon_sym_i32] = ACTIONS(2428), - [anon_sym_u64] = ACTIONS(2428), - [anon_sym_i64] = ACTIONS(2428), - [anon_sym_u128] = ACTIONS(2428), - [anon_sym_i128] = ACTIONS(2428), - [anon_sym_isize] = ACTIONS(2428), - [anon_sym_usize] = ACTIONS(2428), - [anon_sym_f32] = ACTIONS(2428), - [anon_sym_f64] = ACTIONS(2428), - [anon_sym_bool] = ACTIONS(2428), - [anon_sym_str] = ACTIONS(2428), - [anon_sym_char] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2426), - [anon_sym_BANG] = ACTIONS(2426), - [anon_sym_AMP] = ACTIONS(2426), - [anon_sym_PIPE] = ACTIONS(2426), - [anon_sym_LT] = ACTIONS(2426), - [anon_sym_DOT_DOT] = ACTIONS(2426), - [anon_sym_COLON_COLON] = ACTIONS(2426), - [anon_sym_POUND] = ACTIONS(2426), - [anon_sym_SQUOTE] = ACTIONS(2428), - [anon_sym_async] = ACTIONS(2428), - [anon_sym_break] = ACTIONS(2428), - [anon_sym_const] = ACTIONS(2428), - [anon_sym_continue] = ACTIONS(2428), - [anon_sym_default] = ACTIONS(2428), - [anon_sym_enum] = ACTIONS(2428), - [anon_sym_fn] = ACTIONS(2428), - [anon_sym_for] = ACTIONS(2428), - [anon_sym_gen] = ACTIONS(2428), - [anon_sym_if] = ACTIONS(2428), - [anon_sym_impl] = ACTIONS(2428), - [anon_sym_let] = ACTIONS(2428), - [anon_sym_loop] = ACTIONS(2428), - [anon_sym_match] = ACTIONS(2428), - [anon_sym_mod] = ACTIONS(2428), - [anon_sym_pub] = ACTIONS(2428), - [anon_sym_return] = ACTIONS(2428), - [anon_sym_static] = ACTIONS(2428), - [anon_sym_struct] = ACTIONS(2428), - [anon_sym_trait] = ACTIONS(2428), - [anon_sym_type] = ACTIONS(2428), - [anon_sym_union] = ACTIONS(2428), - [anon_sym_unsafe] = ACTIONS(2428), - [anon_sym_use] = ACTIONS(2428), - [anon_sym_while] = ACTIONS(2428), - [anon_sym_extern] = ACTIONS(2428), - [anon_sym_yield] = ACTIONS(2428), - [anon_sym_move] = ACTIONS(2428), - [anon_sym_try] = ACTIONS(2428), - [sym_integer_literal] = ACTIONS(2426), - [aux_sym_string_literal_token1] = ACTIONS(2426), - [sym_char_literal] = ACTIONS(2426), - [anon_sym_true] = ACTIONS(2428), - [anon_sym_false] = ACTIONS(2428), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2428), - [sym_super] = ACTIONS(2428), - [sym_crate] = ACTIONS(2428), - [sym_metavariable] = ACTIONS(2426), - [sym__raw_string_literal_start] = ACTIONS(2426), - [sym_float_literal] = ACTIONS(2426), + [ts_builtin_sym_end] = ACTIONS(2249), + [sym_identifier] = ACTIONS(2251), + [anon_sym_SEMI] = ACTIONS(2249), + [anon_sym_macro_rules_BANG] = ACTIONS(2249), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_LBRACK] = ACTIONS(2249), + [anon_sym_LBRACE] = ACTIONS(2249), + [anon_sym_RBRACE] = ACTIONS(2249), + [anon_sym_STAR] = ACTIONS(2249), + [anon_sym_u8] = ACTIONS(2251), + [anon_sym_i8] = ACTIONS(2251), + [anon_sym_u16] = ACTIONS(2251), + [anon_sym_i16] = ACTIONS(2251), + [anon_sym_u32] = ACTIONS(2251), + [anon_sym_i32] = ACTIONS(2251), + [anon_sym_u64] = ACTIONS(2251), + [anon_sym_i64] = ACTIONS(2251), + [anon_sym_u128] = ACTIONS(2251), + [anon_sym_i128] = ACTIONS(2251), + [anon_sym_isize] = ACTIONS(2251), + [anon_sym_usize] = ACTIONS(2251), + [anon_sym_f32] = ACTIONS(2251), + [anon_sym_f64] = ACTIONS(2251), + [anon_sym_bool] = ACTIONS(2251), + [anon_sym_str] = ACTIONS(2251), + [anon_sym_char] = ACTIONS(2251), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(2249), + [anon_sym_AMP] = ACTIONS(2249), + [anon_sym_PIPE] = ACTIONS(2249), + [anon_sym_LT] = ACTIONS(2249), + [anon_sym_DOT_DOT] = ACTIONS(2249), + [anon_sym_COLON_COLON] = ACTIONS(2249), + [anon_sym_POUND] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_async] = ACTIONS(2251), + [anon_sym_break] = ACTIONS(2251), + [anon_sym_const] = ACTIONS(2251), + [anon_sym_continue] = ACTIONS(2251), + [anon_sym_default] = ACTIONS(2251), + [anon_sym_enum] = ACTIONS(2251), + [anon_sym_fn] = ACTIONS(2251), + [anon_sym_for] = ACTIONS(2251), + [anon_sym_gen] = ACTIONS(2251), + [anon_sym_if] = ACTIONS(2251), + [anon_sym_impl] = ACTIONS(2251), + [anon_sym_let] = ACTIONS(2251), + [anon_sym_loop] = ACTIONS(2251), + [anon_sym_match] = ACTIONS(2251), + [anon_sym_mod] = ACTIONS(2251), + [anon_sym_pub] = ACTIONS(2251), + [anon_sym_return] = ACTIONS(2251), + [anon_sym_static] = ACTIONS(2251), + [anon_sym_struct] = ACTIONS(2251), + [anon_sym_trait] = ACTIONS(2251), + [anon_sym_type] = ACTIONS(2251), + [anon_sym_union] = ACTIONS(2251), + [anon_sym_unsafe] = ACTIONS(2251), + [anon_sym_use] = ACTIONS(2251), + [anon_sym_while] = ACTIONS(2251), + [anon_sym_extern] = ACTIONS(2251), + [anon_sym_yield] = ACTIONS(2251), + [anon_sym_move] = ACTIONS(2251), + [anon_sym_try] = ACTIONS(2251), + [sym_integer_literal] = ACTIONS(2249), + [aux_sym_string_literal_token1] = ACTIONS(2249), + [sym_char_literal] = ACTIONS(2249), + [anon_sym_true] = ACTIONS(2251), + [anon_sym_false] = ACTIONS(2251), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2251), + [sym_super] = ACTIONS(2251), + [sym_crate] = ACTIONS(2251), + [sym_metavariable] = ACTIONS(2249), + [sym__raw_string_literal_start] = ACTIONS(2249), + [sym_float_literal] = ACTIONS(2249), }, [STATE(626)] = { [sym_line_comment] = STATE(626), [sym_block_comment] = STATE(626), - [ts_builtin_sym_end] = ACTIONS(2430), - [sym_identifier] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2430), - [anon_sym_macro_rules_BANG] = ACTIONS(2430), - [anon_sym_LPAREN] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(2430), - [anon_sym_LBRACE] = ACTIONS(2430), - [anon_sym_RBRACE] = ACTIONS(2430), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_u8] = ACTIONS(2432), - [anon_sym_i8] = ACTIONS(2432), - [anon_sym_u16] = ACTIONS(2432), - [anon_sym_i16] = ACTIONS(2432), - [anon_sym_u32] = ACTIONS(2432), - [anon_sym_i32] = ACTIONS(2432), - [anon_sym_u64] = ACTIONS(2432), - [anon_sym_i64] = ACTIONS(2432), - [anon_sym_u128] = ACTIONS(2432), - [anon_sym_i128] = ACTIONS(2432), - [anon_sym_isize] = ACTIONS(2432), - [anon_sym_usize] = ACTIONS(2432), - [anon_sym_f32] = ACTIONS(2432), - [anon_sym_f64] = ACTIONS(2432), - [anon_sym_bool] = ACTIONS(2432), - [anon_sym_str] = ACTIONS(2432), - [anon_sym_char] = ACTIONS(2432), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_BANG] = ACTIONS(2430), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_DOT_DOT] = ACTIONS(2430), - [anon_sym_COLON_COLON] = ACTIONS(2430), - [anon_sym_POUND] = ACTIONS(2430), - [anon_sym_SQUOTE] = ACTIONS(2432), - [anon_sym_async] = ACTIONS(2432), - [anon_sym_break] = ACTIONS(2432), - [anon_sym_const] = ACTIONS(2432), - [anon_sym_continue] = ACTIONS(2432), - [anon_sym_default] = ACTIONS(2432), - [anon_sym_enum] = ACTIONS(2432), - [anon_sym_fn] = ACTIONS(2432), - [anon_sym_for] = ACTIONS(2432), - [anon_sym_gen] = ACTIONS(2432), - [anon_sym_if] = ACTIONS(2432), - [anon_sym_impl] = ACTIONS(2432), - [anon_sym_let] = ACTIONS(2432), - [anon_sym_loop] = ACTIONS(2432), - [anon_sym_match] = ACTIONS(2432), - [anon_sym_mod] = ACTIONS(2432), - [anon_sym_pub] = ACTIONS(2432), - [anon_sym_return] = ACTIONS(2432), - [anon_sym_static] = ACTIONS(2432), - [anon_sym_struct] = ACTIONS(2432), - [anon_sym_trait] = ACTIONS(2432), - [anon_sym_type] = ACTIONS(2432), - [anon_sym_union] = ACTIONS(2432), - [anon_sym_unsafe] = ACTIONS(2432), - [anon_sym_use] = ACTIONS(2432), - [anon_sym_while] = ACTIONS(2432), - [anon_sym_extern] = ACTIONS(2432), - [anon_sym_yield] = ACTIONS(2432), - [anon_sym_move] = ACTIONS(2432), - [anon_sym_try] = ACTIONS(2432), - [sym_integer_literal] = ACTIONS(2430), - [aux_sym_string_literal_token1] = ACTIONS(2430), - [sym_char_literal] = ACTIONS(2430), - [anon_sym_true] = ACTIONS(2432), - [anon_sym_false] = ACTIONS(2432), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2432), - [sym_super] = ACTIONS(2432), - [sym_crate] = ACTIONS(2432), - [sym_metavariable] = ACTIONS(2430), - [sym__raw_string_literal_start] = ACTIONS(2430), - [sym_float_literal] = ACTIONS(2430), + [ts_builtin_sym_end] = ACTIONS(2253), + [sym_identifier] = ACTIONS(2255), + [anon_sym_SEMI] = ACTIONS(2253), + [anon_sym_macro_rules_BANG] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_LBRACK] = ACTIONS(2253), + [anon_sym_LBRACE] = ACTIONS(2253), + [anon_sym_RBRACE] = ACTIONS(2253), + [anon_sym_STAR] = ACTIONS(2253), + [anon_sym_u8] = ACTIONS(2255), + [anon_sym_i8] = ACTIONS(2255), + [anon_sym_u16] = ACTIONS(2255), + [anon_sym_i16] = ACTIONS(2255), + [anon_sym_u32] = ACTIONS(2255), + [anon_sym_i32] = ACTIONS(2255), + [anon_sym_u64] = ACTIONS(2255), + [anon_sym_i64] = ACTIONS(2255), + [anon_sym_u128] = ACTIONS(2255), + [anon_sym_i128] = ACTIONS(2255), + [anon_sym_isize] = ACTIONS(2255), + [anon_sym_usize] = ACTIONS(2255), + [anon_sym_f32] = ACTIONS(2255), + [anon_sym_f64] = ACTIONS(2255), + [anon_sym_bool] = ACTIONS(2255), + [anon_sym_str] = ACTIONS(2255), + [anon_sym_char] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2253), + [anon_sym_BANG] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(2253), + [anon_sym_PIPE] = ACTIONS(2253), + [anon_sym_LT] = ACTIONS(2253), + [anon_sym_DOT_DOT] = ACTIONS(2253), + [anon_sym_COLON_COLON] = ACTIONS(2253), + [anon_sym_POUND] = ACTIONS(2253), + [anon_sym_SQUOTE] = ACTIONS(2255), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_break] = ACTIONS(2255), + [anon_sym_const] = ACTIONS(2255), + [anon_sym_continue] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(2255), + [anon_sym_enum] = ACTIONS(2255), + [anon_sym_fn] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(2255), + [anon_sym_gen] = ACTIONS(2255), + [anon_sym_if] = ACTIONS(2255), + [anon_sym_impl] = ACTIONS(2255), + [anon_sym_let] = ACTIONS(2255), + [anon_sym_loop] = ACTIONS(2255), + [anon_sym_match] = ACTIONS(2255), + [anon_sym_mod] = ACTIONS(2255), + [anon_sym_pub] = ACTIONS(2255), + [anon_sym_return] = ACTIONS(2255), + [anon_sym_static] = ACTIONS(2255), + [anon_sym_struct] = ACTIONS(2255), + [anon_sym_trait] = ACTIONS(2255), + [anon_sym_type] = ACTIONS(2255), + [anon_sym_union] = ACTIONS(2255), + [anon_sym_unsafe] = ACTIONS(2255), + [anon_sym_use] = ACTIONS(2255), + [anon_sym_while] = ACTIONS(2255), + [anon_sym_extern] = ACTIONS(2255), + [anon_sym_yield] = ACTIONS(2255), + [anon_sym_move] = ACTIONS(2255), + [anon_sym_try] = ACTIONS(2255), + [sym_integer_literal] = ACTIONS(2253), + [aux_sym_string_literal_token1] = ACTIONS(2253), + [sym_char_literal] = ACTIONS(2253), + [anon_sym_true] = ACTIONS(2255), + [anon_sym_false] = ACTIONS(2255), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2255), + [sym_super] = ACTIONS(2255), + [sym_crate] = ACTIONS(2255), + [sym_metavariable] = ACTIONS(2253), + [sym__raw_string_literal_start] = ACTIONS(2253), + [sym_float_literal] = ACTIONS(2253), }, [STATE(627)] = { [sym_line_comment] = STATE(627), [sym_block_comment] = STATE(627), - [ts_builtin_sym_end] = ACTIONS(2434), - [sym_identifier] = ACTIONS(2436), - [anon_sym_SEMI] = ACTIONS(2434), - [anon_sym_macro_rules_BANG] = ACTIONS(2434), - [anon_sym_LPAREN] = ACTIONS(2434), - [anon_sym_LBRACK] = ACTIONS(2434), - [anon_sym_LBRACE] = ACTIONS(2434), - [anon_sym_RBRACE] = ACTIONS(2434), - [anon_sym_STAR] = ACTIONS(2434), - [anon_sym_u8] = ACTIONS(2436), - [anon_sym_i8] = ACTIONS(2436), - [anon_sym_u16] = ACTIONS(2436), - [anon_sym_i16] = ACTIONS(2436), - [anon_sym_u32] = ACTIONS(2436), - [anon_sym_i32] = ACTIONS(2436), - [anon_sym_u64] = ACTIONS(2436), - [anon_sym_i64] = ACTIONS(2436), - [anon_sym_u128] = ACTIONS(2436), - [anon_sym_i128] = ACTIONS(2436), - [anon_sym_isize] = ACTIONS(2436), - [anon_sym_usize] = ACTIONS(2436), - [anon_sym_f32] = ACTIONS(2436), - [anon_sym_f64] = ACTIONS(2436), - [anon_sym_bool] = ACTIONS(2436), - [anon_sym_str] = ACTIONS(2436), - [anon_sym_char] = ACTIONS(2436), - [anon_sym_DASH] = ACTIONS(2434), - [anon_sym_BANG] = ACTIONS(2434), - [anon_sym_AMP] = ACTIONS(2434), - [anon_sym_PIPE] = ACTIONS(2434), - [anon_sym_LT] = ACTIONS(2434), - [anon_sym_DOT_DOT] = ACTIONS(2434), - [anon_sym_COLON_COLON] = ACTIONS(2434), - [anon_sym_POUND] = ACTIONS(2434), - [anon_sym_SQUOTE] = ACTIONS(2436), - [anon_sym_async] = ACTIONS(2436), - [anon_sym_break] = ACTIONS(2436), - [anon_sym_const] = ACTIONS(2436), - [anon_sym_continue] = ACTIONS(2436), - [anon_sym_default] = ACTIONS(2436), - [anon_sym_enum] = ACTIONS(2436), - [anon_sym_fn] = ACTIONS(2436), - [anon_sym_for] = ACTIONS(2436), - [anon_sym_gen] = ACTIONS(2436), - [anon_sym_if] = ACTIONS(2436), - [anon_sym_impl] = ACTIONS(2436), - [anon_sym_let] = ACTIONS(2436), - [anon_sym_loop] = ACTIONS(2436), - [anon_sym_match] = ACTIONS(2436), - [anon_sym_mod] = ACTIONS(2436), - [anon_sym_pub] = ACTIONS(2436), - [anon_sym_return] = ACTIONS(2436), - [anon_sym_static] = ACTIONS(2436), - [anon_sym_struct] = ACTIONS(2436), - [anon_sym_trait] = ACTIONS(2436), - [anon_sym_type] = ACTIONS(2436), - [anon_sym_union] = ACTIONS(2436), - [anon_sym_unsafe] = ACTIONS(2436), - [anon_sym_use] = ACTIONS(2436), - [anon_sym_while] = ACTIONS(2436), - [anon_sym_extern] = ACTIONS(2436), - [anon_sym_yield] = ACTIONS(2436), - [anon_sym_move] = ACTIONS(2436), - [anon_sym_try] = ACTIONS(2436), - [sym_integer_literal] = ACTIONS(2434), - [aux_sym_string_literal_token1] = ACTIONS(2434), - [sym_char_literal] = ACTIONS(2434), - [anon_sym_true] = ACTIONS(2436), - [anon_sym_false] = ACTIONS(2436), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2436), - [sym_super] = ACTIONS(2436), - [sym_crate] = ACTIONS(2436), - [sym_metavariable] = ACTIONS(2434), - [sym__raw_string_literal_start] = ACTIONS(2434), - [sym_float_literal] = ACTIONS(2434), + [ts_builtin_sym_end] = ACTIONS(2257), + [sym_identifier] = ACTIONS(2259), + [anon_sym_SEMI] = ACTIONS(2257), + [anon_sym_macro_rules_BANG] = ACTIONS(2257), + [anon_sym_LPAREN] = ACTIONS(2257), + [anon_sym_LBRACK] = ACTIONS(2257), + [anon_sym_LBRACE] = ACTIONS(2257), + [anon_sym_RBRACE] = ACTIONS(2257), + [anon_sym_STAR] = ACTIONS(2257), + [anon_sym_u8] = ACTIONS(2259), + [anon_sym_i8] = ACTIONS(2259), + [anon_sym_u16] = ACTIONS(2259), + [anon_sym_i16] = ACTIONS(2259), + [anon_sym_u32] = ACTIONS(2259), + [anon_sym_i32] = ACTIONS(2259), + [anon_sym_u64] = ACTIONS(2259), + [anon_sym_i64] = ACTIONS(2259), + [anon_sym_u128] = ACTIONS(2259), + [anon_sym_i128] = ACTIONS(2259), + [anon_sym_isize] = ACTIONS(2259), + [anon_sym_usize] = ACTIONS(2259), + [anon_sym_f32] = ACTIONS(2259), + [anon_sym_f64] = ACTIONS(2259), + [anon_sym_bool] = ACTIONS(2259), + [anon_sym_str] = ACTIONS(2259), + [anon_sym_char] = ACTIONS(2259), + [anon_sym_DASH] = ACTIONS(2257), + [anon_sym_BANG] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2257), + [anon_sym_PIPE] = ACTIONS(2257), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_DOT_DOT] = ACTIONS(2257), + [anon_sym_COLON_COLON] = ACTIONS(2257), + [anon_sym_POUND] = ACTIONS(2257), + [anon_sym_SQUOTE] = ACTIONS(2259), + [anon_sym_async] = ACTIONS(2259), + [anon_sym_break] = ACTIONS(2259), + [anon_sym_const] = ACTIONS(2259), + [anon_sym_continue] = ACTIONS(2259), + [anon_sym_default] = ACTIONS(2259), + [anon_sym_enum] = ACTIONS(2259), + [anon_sym_fn] = ACTIONS(2259), + [anon_sym_for] = ACTIONS(2259), + [anon_sym_gen] = ACTIONS(2259), + [anon_sym_if] = ACTIONS(2259), + [anon_sym_impl] = ACTIONS(2259), + [anon_sym_let] = ACTIONS(2259), + [anon_sym_loop] = ACTIONS(2259), + [anon_sym_match] = ACTIONS(2259), + [anon_sym_mod] = ACTIONS(2259), + [anon_sym_pub] = ACTIONS(2259), + [anon_sym_return] = ACTIONS(2259), + [anon_sym_static] = ACTIONS(2259), + [anon_sym_struct] = ACTIONS(2259), + [anon_sym_trait] = ACTIONS(2259), + [anon_sym_type] = ACTIONS(2259), + [anon_sym_union] = ACTIONS(2259), + [anon_sym_unsafe] = ACTIONS(2259), + [anon_sym_use] = ACTIONS(2259), + [anon_sym_while] = ACTIONS(2259), + [anon_sym_extern] = ACTIONS(2259), + [anon_sym_yield] = ACTIONS(2259), + [anon_sym_move] = ACTIONS(2259), + [anon_sym_try] = ACTIONS(2259), + [sym_integer_literal] = ACTIONS(2257), + [aux_sym_string_literal_token1] = ACTIONS(2257), + [sym_char_literal] = ACTIONS(2257), + [anon_sym_true] = ACTIONS(2259), + [anon_sym_false] = ACTIONS(2259), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2259), + [sym_super] = ACTIONS(2259), + [sym_crate] = ACTIONS(2259), + [sym_metavariable] = ACTIONS(2257), + [sym__raw_string_literal_start] = ACTIONS(2257), + [sym_float_literal] = ACTIONS(2257), }, [STATE(628)] = { [sym_line_comment] = STATE(628), [sym_block_comment] = STATE(628), - [ts_builtin_sym_end] = ACTIONS(2438), - [sym_identifier] = ACTIONS(2440), - [anon_sym_SEMI] = ACTIONS(2438), - [anon_sym_macro_rules_BANG] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2438), - [anon_sym_LBRACK] = ACTIONS(2438), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_RBRACE] = ACTIONS(2438), - [anon_sym_STAR] = ACTIONS(2438), - [anon_sym_u8] = ACTIONS(2440), - [anon_sym_i8] = ACTIONS(2440), - [anon_sym_u16] = ACTIONS(2440), - [anon_sym_i16] = ACTIONS(2440), - [anon_sym_u32] = ACTIONS(2440), - [anon_sym_i32] = ACTIONS(2440), - [anon_sym_u64] = ACTIONS(2440), - [anon_sym_i64] = ACTIONS(2440), - [anon_sym_u128] = ACTIONS(2440), - [anon_sym_i128] = ACTIONS(2440), - [anon_sym_isize] = ACTIONS(2440), - [anon_sym_usize] = ACTIONS(2440), - [anon_sym_f32] = ACTIONS(2440), - [anon_sym_f64] = ACTIONS(2440), - [anon_sym_bool] = ACTIONS(2440), - [anon_sym_str] = ACTIONS(2440), - [anon_sym_char] = ACTIONS(2440), - [anon_sym_DASH] = ACTIONS(2438), - [anon_sym_BANG] = ACTIONS(2438), - [anon_sym_AMP] = ACTIONS(2438), - [anon_sym_PIPE] = ACTIONS(2438), - [anon_sym_LT] = ACTIONS(2438), - [anon_sym_DOT_DOT] = ACTIONS(2438), - [anon_sym_COLON_COLON] = ACTIONS(2438), - [anon_sym_POUND] = ACTIONS(2438), - [anon_sym_SQUOTE] = ACTIONS(2440), - [anon_sym_async] = ACTIONS(2440), - [anon_sym_break] = ACTIONS(2440), - [anon_sym_const] = ACTIONS(2440), - [anon_sym_continue] = ACTIONS(2440), - [anon_sym_default] = ACTIONS(2440), - [anon_sym_enum] = ACTIONS(2440), - [anon_sym_fn] = ACTIONS(2440), - [anon_sym_for] = ACTIONS(2440), - [anon_sym_gen] = ACTIONS(2440), - [anon_sym_if] = ACTIONS(2440), - [anon_sym_impl] = ACTIONS(2440), - [anon_sym_let] = ACTIONS(2440), - [anon_sym_loop] = ACTIONS(2440), - [anon_sym_match] = ACTIONS(2440), - [anon_sym_mod] = ACTIONS(2440), - [anon_sym_pub] = ACTIONS(2440), - [anon_sym_return] = ACTIONS(2440), - [anon_sym_static] = ACTIONS(2440), - [anon_sym_struct] = ACTIONS(2440), - [anon_sym_trait] = ACTIONS(2440), - [anon_sym_type] = ACTIONS(2440), - [anon_sym_union] = ACTIONS(2440), - [anon_sym_unsafe] = ACTIONS(2440), - [anon_sym_use] = ACTIONS(2440), - [anon_sym_while] = ACTIONS(2440), - [anon_sym_extern] = ACTIONS(2440), - [anon_sym_yield] = ACTIONS(2440), - [anon_sym_move] = ACTIONS(2440), - [anon_sym_try] = ACTIONS(2440), - [sym_integer_literal] = ACTIONS(2438), - [aux_sym_string_literal_token1] = ACTIONS(2438), - [sym_char_literal] = ACTIONS(2438), - [anon_sym_true] = ACTIONS(2440), - [anon_sym_false] = ACTIONS(2440), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2440), - [sym_super] = ACTIONS(2440), - [sym_crate] = ACTIONS(2440), - [sym_metavariable] = ACTIONS(2438), - [sym__raw_string_literal_start] = ACTIONS(2438), - [sym_float_literal] = ACTIONS(2438), + [ts_builtin_sym_end] = ACTIONS(2261), + [sym_identifier] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2261), + [anon_sym_macro_rules_BANG] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(2261), + [anon_sym_LBRACK] = ACTIONS(2261), + [anon_sym_LBRACE] = ACTIONS(2261), + [anon_sym_RBRACE] = ACTIONS(2261), + [anon_sym_STAR] = ACTIONS(2261), + [anon_sym_u8] = ACTIONS(2263), + [anon_sym_i8] = ACTIONS(2263), + [anon_sym_u16] = ACTIONS(2263), + [anon_sym_i16] = ACTIONS(2263), + [anon_sym_u32] = ACTIONS(2263), + [anon_sym_i32] = ACTIONS(2263), + [anon_sym_u64] = ACTIONS(2263), + [anon_sym_i64] = ACTIONS(2263), + [anon_sym_u128] = ACTIONS(2263), + [anon_sym_i128] = ACTIONS(2263), + [anon_sym_isize] = ACTIONS(2263), + [anon_sym_usize] = ACTIONS(2263), + [anon_sym_f32] = ACTIONS(2263), + [anon_sym_f64] = ACTIONS(2263), + [anon_sym_bool] = ACTIONS(2263), + [anon_sym_str] = ACTIONS(2263), + [anon_sym_char] = ACTIONS(2263), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_BANG] = ACTIONS(2261), + [anon_sym_AMP] = ACTIONS(2261), + [anon_sym_PIPE] = ACTIONS(2261), + [anon_sym_LT] = ACTIONS(2261), + [anon_sym_DOT_DOT] = ACTIONS(2261), + [anon_sym_COLON_COLON] = ACTIONS(2261), + [anon_sym_POUND] = ACTIONS(2261), + [anon_sym_SQUOTE] = ACTIONS(2263), + [anon_sym_async] = ACTIONS(2263), + [anon_sym_break] = ACTIONS(2263), + [anon_sym_const] = ACTIONS(2263), + [anon_sym_continue] = ACTIONS(2263), + [anon_sym_default] = ACTIONS(2263), + [anon_sym_enum] = ACTIONS(2263), + [anon_sym_fn] = ACTIONS(2263), + [anon_sym_for] = ACTIONS(2263), + [anon_sym_gen] = ACTIONS(2263), + [anon_sym_if] = ACTIONS(2263), + [anon_sym_impl] = ACTIONS(2263), + [anon_sym_let] = ACTIONS(2263), + [anon_sym_loop] = ACTIONS(2263), + [anon_sym_match] = ACTIONS(2263), + [anon_sym_mod] = ACTIONS(2263), + [anon_sym_pub] = ACTIONS(2263), + [anon_sym_return] = ACTIONS(2263), + [anon_sym_static] = ACTIONS(2263), + [anon_sym_struct] = ACTIONS(2263), + [anon_sym_trait] = ACTIONS(2263), + [anon_sym_type] = ACTIONS(2263), + [anon_sym_union] = ACTIONS(2263), + [anon_sym_unsafe] = ACTIONS(2263), + [anon_sym_use] = ACTIONS(2263), + [anon_sym_while] = ACTIONS(2263), + [anon_sym_extern] = ACTIONS(2263), + [anon_sym_yield] = ACTIONS(2263), + [anon_sym_move] = ACTIONS(2263), + [anon_sym_try] = ACTIONS(2263), + [sym_integer_literal] = ACTIONS(2261), + [aux_sym_string_literal_token1] = ACTIONS(2261), + [sym_char_literal] = ACTIONS(2261), + [anon_sym_true] = ACTIONS(2263), + [anon_sym_false] = ACTIONS(2263), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2263), + [sym_super] = ACTIONS(2263), + [sym_crate] = ACTIONS(2263), + [sym_metavariable] = ACTIONS(2261), + [sym__raw_string_literal_start] = ACTIONS(2261), + [sym_float_literal] = ACTIONS(2261), }, [STATE(629)] = { [sym_line_comment] = STATE(629), [sym_block_comment] = STATE(629), - [ts_builtin_sym_end] = ACTIONS(2442), - [sym_identifier] = ACTIONS(2444), - [anon_sym_SEMI] = ACTIONS(2442), - [anon_sym_macro_rules_BANG] = ACTIONS(2442), - [anon_sym_LPAREN] = ACTIONS(2442), - [anon_sym_LBRACK] = ACTIONS(2442), - [anon_sym_LBRACE] = ACTIONS(2442), - [anon_sym_RBRACE] = ACTIONS(2442), - [anon_sym_STAR] = ACTIONS(2442), - [anon_sym_u8] = ACTIONS(2444), - [anon_sym_i8] = ACTIONS(2444), - [anon_sym_u16] = ACTIONS(2444), - [anon_sym_i16] = ACTIONS(2444), - [anon_sym_u32] = ACTIONS(2444), - [anon_sym_i32] = ACTIONS(2444), - [anon_sym_u64] = ACTIONS(2444), - [anon_sym_i64] = ACTIONS(2444), - [anon_sym_u128] = ACTIONS(2444), - [anon_sym_i128] = ACTIONS(2444), - [anon_sym_isize] = ACTIONS(2444), - [anon_sym_usize] = ACTIONS(2444), - [anon_sym_f32] = ACTIONS(2444), - [anon_sym_f64] = ACTIONS(2444), - [anon_sym_bool] = ACTIONS(2444), - [anon_sym_str] = ACTIONS(2444), - [anon_sym_char] = ACTIONS(2444), - [anon_sym_DASH] = ACTIONS(2442), - [anon_sym_BANG] = ACTIONS(2442), - [anon_sym_AMP] = ACTIONS(2442), - [anon_sym_PIPE] = ACTIONS(2442), - [anon_sym_LT] = ACTIONS(2442), - [anon_sym_DOT_DOT] = ACTIONS(2442), - [anon_sym_COLON_COLON] = ACTIONS(2442), - [anon_sym_POUND] = ACTIONS(2442), - [anon_sym_SQUOTE] = ACTIONS(2444), - [anon_sym_async] = ACTIONS(2444), - [anon_sym_break] = ACTIONS(2444), - [anon_sym_const] = ACTIONS(2444), - [anon_sym_continue] = ACTIONS(2444), - [anon_sym_default] = ACTIONS(2444), - [anon_sym_enum] = ACTIONS(2444), - [anon_sym_fn] = ACTIONS(2444), - [anon_sym_for] = ACTIONS(2444), - [anon_sym_gen] = ACTIONS(2444), - [anon_sym_if] = ACTIONS(2444), - [anon_sym_impl] = ACTIONS(2444), - [anon_sym_let] = ACTIONS(2444), - [anon_sym_loop] = ACTIONS(2444), - [anon_sym_match] = ACTIONS(2444), - [anon_sym_mod] = ACTIONS(2444), - [anon_sym_pub] = ACTIONS(2444), - [anon_sym_return] = ACTIONS(2444), - [anon_sym_static] = ACTIONS(2444), - [anon_sym_struct] = ACTIONS(2444), - [anon_sym_trait] = ACTIONS(2444), - [anon_sym_type] = ACTIONS(2444), - [anon_sym_union] = ACTIONS(2444), - [anon_sym_unsafe] = ACTIONS(2444), - [anon_sym_use] = ACTIONS(2444), - [anon_sym_while] = ACTIONS(2444), - [anon_sym_extern] = ACTIONS(2444), - [anon_sym_yield] = ACTIONS(2444), - [anon_sym_move] = ACTIONS(2444), - [anon_sym_try] = ACTIONS(2444), - [sym_integer_literal] = ACTIONS(2442), - [aux_sym_string_literal_token1] = ACTIONS(2442), - [sym_char_literal] = ACTIONS(2442), - [anon_sym_true] = ACTIONS(2444), - [anon_sym_false] = ACTIONS(2444), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2444), - [sym_super] = ACTIONS(2444), - [sym_crate] = ACTIONS(2444), - [sym_metavariable] = ACTIONS(2442), - [sym__raw_string_literal_start] = ACTIONS(2442), - [sym_float_literal] = ACTIONS(2442), + [ts_builtin_sym_end] = ACTIONS(2265), + [sym_identifier] = ACTIONS(2267), + [anon_sym_SEMI] = ACTIONS(2265), + [anon_sym_macro_rules_BANG] = ACTIONS(2265), + [anon_sym_LPAREN] = ACTIONS(2265), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_LBRACE] = ACTIONS(2265), + [anon_sym_RBRACE] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(2265), + [anon_sym_u8] = ACTIONS(2267), + [anon_sym_i8] = ACTIONS(2267), + [anon_sym_u16] = ACTIONS(2267), + [anon_sym_i16] = ACTIONS(2267), + [anon_sym_u32] = ACTIONS(2267), + [anon_sym_i32] = ACTIONS(2267), + [anon_sym_u64] = ACTIONS(2267), + [anon_sym_i64] = ACTIONS(2267), + [anon_sym_u128] = ACTIONS(2267), + [anon_sym_i128] = ACTIONS(2267), + [anon_sym_isize] = ACTIONS(2267), + [anon_sym_usize] = ACTIONS(2267), + [anon_sym_f32] = ACTIONS(2267), + [anon_sym_f64] = ACTIONS(2267), + [anon_sym_bool] = ACTIONS(2267), + [anon_sym_str] = ACTIONS(2267), + [anon_sym_char] = ACTIONS(2267), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_BANG] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(2265), + [anon_sym_PIPE] = ACTIONS(2265), + [anon_sym_LT] = ACTIONS(2265), + [anon_sym_DOT_DOT] = ACTIONS(2265), + [anon_sym_COLON_COLON] = ACTIONS(2265), + [anon_sym_POUND] = ACTIONS(2265), + [anon_sym_SQUOTE] = ACTIONS(2267), + [anon_sym_async] = ACTIONS(2267), + [anon_sym_break] = ACTIONS(2267), + [anon_sym_const] = ACTIONS(2267), + [anon_sym_continue] = ACTIONS(2267), + [anon_sym_default] = ACTIONS(2267), + [anon_sym_enum] = ACTIONS(2267), + [anon_sym_fn] = ACTIONS(2267), + [anon_sym_for] = ACTIONS(2267), + [anon_sym_gen] = ACTIONS(2267), + [anon_sym_if] = ACTIONS(2267), + [anon_sym_impl] = ACTIONS(2267), + [anon_sym_let] = ACTIONS(2267), + [anon_sym_loop] = ACTIONS(2267), + [anon_sym_match] = ACTIONS(2267), + [anon_sym_mod] = ACTIONS(2267), + [anon_sym_pub] = ACTIONS(2267), + [anon_sym_return] = ACTIONS(2267), + [anon_sym_static] = ACTIONS(2267), + [anon_sym_struct] = ACTIONS(2267), + [anon_sym_trait] = ACTIONS(2267), + [anon_sym_type] = ACTIONS(2267), + [anon_sym_union] = ACTIONS(2267), + [anon_sym_unsafe] = ACTIONS(2267), + [anon_sym_use] = ACTIONS(2267), + [anon_sym_while] = ACTIONS(2267), + [anon_sym_extern] = ACTIONS(2267), + [anon_sym_yield] = ACTIONS(2267), + [anon_sym_move] = ACTIONS(2267), + [anon_sym_try] = ACTIONS(2267), + [sym_integer_literal] = ACTIONS(2265), + [aux_sym_string_literal_token1] = ACTIONS(2265), + [sym_char_literal] = ACTIONS(2265), + [anon_sym_true] = ACTIONS(2267), + [anon_sym_false] = ACTIONS(2267), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2267), + [sym_super] = ACTIONS(2267), + [sym_crate] = ACTIONS(2267), + [sym_metavariable] = ACTIONS(2265), + [sym__raw_string_literal_start] = ACTIONS(2265), + [sym_float_literal] = ACTIONS(2265), }, [STATE(630)] = { [sym_line_comment] = STATE(630), [sym_block_comment] = STATE(630), - [ts_builtin_sym_end] = ACTIONS(2446), - [sym_identifier] = ACTIONS(2448), - [anon_sym_SEMI] = ACTIONS(2446), - [anon_sym_macro_rules_BANG] = ACTIONS(2446), - [anon_sym_LPAREN] = ACTIONS(2446), - [anon_sym_LBRACK] = ACTIONS(2446), - [anon_sym_LBRACE] = ACTIONS(2446), - [anon_sym_RBRACE] = ACTIONS(2446), - [anon_sym_STAR] = ACTIONS(2446), - [anon_sym_u8] = ACTIONS(2448), - [anon_sym_i8] = ACTIONS(2448), - [anon_sym_u16] = ACTIONS(2448), - [anon_sym_i16] = ACTIONS(2448), - [anon_sym_u32] = ACTIONS(2448), - [anon_sym_i32] = ACTIONS(2448), - [anon_sym_u64] = ACTIONS(2448), - [anon_sym_i64] = ACTIONS(2448), - [anon_sym_u128] = ACTIONS(2448), - [anon_sym_i128] = ACTIONS(2448), - [anon_sym_isize] = ACTIONS(2448), - [anon_sym_usize] = ACTIONS(2448), - [anon_sym_f32] = ACTIONS(2448), - [anon_sym_f64] = ACTIONS(2448), - [anon_sym_bool] = ACTIONS(2448), - [anon_sym_str] = ACTIONS(2448), - [anon_sym_char] = ACTIONS(2448), - [anon_sym_DASH] = ACTIONS(2446), - [anon_sym_BANG] = ACTIONS(2446), - [anon_sym_AMP] = ACTIONS(2446), - [anon_sym_PIPE] = ACTIONS(2446), - [anon_sym_LT] = ACTIONS(2446), - [anon_sym_DOT_DOT] = ACTIONS(2446), - [anon_sym_COLON_COLON] = ACTIONS(2446), - [anon_sym_POUND] = ACTIONS(2446), - [anon_sym_SQUOTE] = ACTIONS(2448), - [anon_sym_async] = ACTIONS(2448), - [anon_sym_break] = ACTIONS(2448), - [anon_sym_const] = ACTIONS(2448), - [anon_sym_continue] = ACTIONS(2448), - [anon_sym_default] = ACTIONS(2448), - [anon_sym_enum] = ACTIONS(2448), - [anon_sym_fn] = ACTIONS(2448), - [anon_sym_for] = ACTIONS(2448), - [anon_sym_gen] = ACTIONS(2448), - [anon_sym_if] = ACTIONS(2448), - [anon_sym_impl] = ACTIONS(2448), - [anon_sym_let] = ACTIONS(2448), - [anon_sym_loop] = ACTIONS(2448), - [anon_sym_match] = ACTIONS(2448), - [anon_sym_mod] = ACTIONS(2448), - [anon_sym_pub] = ACTIONS(2448), - [anon_sym_return] = ACTIONS(2448), - [anon_sym_static] = ACTIONS(2448), - [anon_sym_struct] = ACTIONS(2448), - [anon_sym_trait] = ACTIONS(2448), - [anon_sym_type] = ACTIONS(2448), - [anon_sym_union] = ACTIONS(2448), - [anon_sym_unsafe] = ACTIONS(2448), - [anon_sym_use] = ACTIONS(2448), - [anon_sym_while] = ACTIONS(2448), - [anon_sym_extern] = ACTIONS(2448), - [anon_sym_yield] = ACTIONS(2448), - [anon_sym_move] = ACTIONS(2448), - [anon_sym_try] = ACTIONS(2448), - [sym_integer_literal] = ACTIONS(2446), - [aux_sym_string_literal_token1] = ACTIONS(2446), - [sym_char_literal] = ACTIONS(2446), - [anon_sym_true] = ACTIONS(2448), - [anon_sym_false] = ACTIONS(2448), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2448), - [sym_super] = ACTIONS(2448), - [sym_crate] = ACTIONS(2448), - [sym_metavariable] = ACTIONS(2446), - [sym__raw_string_literal_start] = ACTIONS(2446), - [sym_float_literal] = ACTIONS(2446), + [ts_builtin_sym_end] = ACTIONS(2269), + [sym_identifier] = ACTIONS(2271), + [anon_sym_SEMI] = ACTIONS(2269), + [anon_sym_macro_rules_BANG] = ACTIONS(2269), + [anon_sym_LPAREN] = ACTIONS(2269), + [anon_sym_LBRACK] = ACTIONS(2269), + [anon_sym_LBRACE] = ACTIONS(2269), + [anon_sym_RBRACE] = ACTIONS(2269), + [anon_sym_STAR] = ACTIONS(2269), + [anon_sym_u8] = ACTIONS(2271), + [anon_sym_i8] = ACTIONS(2271), + [anon_sym_u16] = ACTIONS(2271), + [anon_sym_i16] = ACTIONS(2271), + [anon_sym_u32] = ACTIONS(2271), + [anon_sym_i32] = ACTIONS(2271), + [anon_sym_u64] = ACTIONS(2271), + [anon_sym_i64] = ACTIONS(2271), + [anon_sym_u128] = ACTIONS(2271), + [anon_sym_i128] = ACTIONS(2271), + [anon_sym_isize] = ACTIONS(2271), + [anon_sym_usize] = ACTIONS(2271), + [anon_sym_f32] = ACTIONS(2271), + [anon_sym_f64] = ACTIONS(2271), + [anon_sym_bool] = ACTIONS(2271), + [anon_sym_str] = ACTIONS(2271), + [anon_sym_char] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2269), + [anon_sym_BANG] = ACTIONS(2269), + [anon_sym_AMP] = ACTIONS(2269), + [anon_sym_PIPE] = ACTIONS(2269), + [anon_sym_LT] = ACTIONS(2269), + [anon_sym_DOT_DOT] = ACTIONS(2269), + [anon_sym_COLON_COLON] = ACTIONS(2269), + [anon_sym_POUND] = ACTIONS(2269), + [anon_sym_SQUOTE] = ACTIONS(2271), + [anon_sym_async] = ACTIONS(2271), + [anon_sym_break] = ACTIONS(2271), + [anon_sym_const] = ACTIONS(2271), + [anon_sym_continue] = ACTIONS(2271), + [anon_sym_default] = ACTIONS(2271), + [anon_sym_enum] = ACTIONS(2271), + [anon_sym_fn] = ACTIONS(2271), + [anon_sym_for] = ACTIONS(2271), + [anon_sym_gen] = ACTIONS(2271), + [anon_sym_if] = ACTIONS(2271), + [anon_sym_impl] = ACTIONS(2271), + [anon_sym_let] = ACTIONS(2271), + [anon_sym_loop] = ACTIONS(2271), + [anon_sym_match] = ACTIONS(2271), + [anon_sym_mod] = ACTIONS(2271), + [anon_sym_pub] = ACTIONS(2271), + [anon_sym_return] = ACTIONS(2271), + [anon_sym_static] = ACTIONS(2271), + [anon_sym_struct] = ACTIONS(2271), + [anon_sym_trait] = ACTIONS(2271), + [anon_sym_type] = ACTIONS(2271), + [anon_sym_union] = ACTIONS(2271), + [anon_sym_unsafe] = ACTIONS(2271), + [anon_sym_use] = ACTIONS(2271), + [anon_sym_while] = ACTIONS(2271), + [anon_sym_extern] = ACTIONS(2271), + [anon_sym_yield] = ACTIONS(2271), + [anon_sym_move] = ACTIONS(2271), + [anon_sym_try] = ACTIONS(2271), + [sym_integer_literal] = ACTIONS(2269), + [aux_sym_string_literal_token1] = ACTIONS(2269), + [sym_char_literal] = ACTIONS(2269), + [anon_sym_true] = ACTIONS(2271), + [anon_sym_false] = ACTIONS(2271), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2271), + [sym_super] = ACTIONS(2271), + [sym_crate] = ACTIONS(2271), + [sym_metavariable] = ACTIONS(2269), + [sym__raw_string_literal_start] = ACTIONS(2269), + [sym_float_literal] = ACTIONS(2269), }, [STATE(631)] = { [sym_line_comment] = STATE(631), [sym_block_comment] = STATE(631), - [ts_builtin_sym_end] = ACTIONS(2450), - [sym_identifier] = ACTIONS(2452), - [anon_sym_SEMI] = ACTIONS(2450), - [anon_sym_macro_rules_BANG] = ACTIONS(2450), - [anon_sym_LPAREN] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(2450), - [anon_sym_LBRACE] = ACTIONS(2450), - [anon_sym_RBRACE] = ACTIONS(2450), - [anon_sym_STAR] = ACTIONS(2450), - [anon_sym_u8] = ACTIONS(2452), - [anon_sym_i8] = ACTIONS(2452), - [anon_sym_u16] = ACTIONS(2452), - [anon_sym_i16] = ACTIONS(2452), - [anon_sym_u32] = ACTIONS(2452), - [anon_sym_i32] = ACTIONS(2452), - [anon_sym_u64] = ACTIONS(2452), - [anon_sym_i64] = ACTIONS(2452), - [anon_sym_u128] = ACTIONS(2452), - [anon_sym_i128] = ACTIONS(2452), - [anon_sym_isize] = ACTIONS(2452), - [anon_sym_usize] = ACTIONS(2452), - [anon_sym_f32] = ACTIONS(2452), - [anon_sym_f64] = ACTIONS(2452), - [anon_sym_bool] = ACTIONS(2452), - [anon_sym_str] = ACTIONS(2452), - [anon_sym_char] = ACTIONS(2452), - [anon_sym_DASH] = ACTIONS(2450), - [anon_sym_BANG] = ACTIONS(2450), - [anon_sym_AMP] = ACTIONS(2450), - [anon_sym_PIPE] = ACTIONS(2450), - [anon_sym_LT] = ACTIONS(2450), - [anon_sym_DOT_DOT] = ACTIONS(2450), - [anon_sym_COLON_COLON] = ACTIONS(2450), - [anon_sym_POUND] = ACTIONS(2450), - [anon_sym_SQUOTE] = ACTIONS(2452), - [anon_sym_async] = ACTIONS(2452), - [anon_sym_break] = ACTIONS(2452), - [anon_sym_const] = ACTIONS(2452), - [anon_sym_continue] = ACTIONS(2452), - [anon_sym_default] = ACTIONS(2452), - [anon_sym_enum] = ACTIONS(2452), - [anon_sym_fn] = ACTIONS(2452), - [anon_sym_for] = ACTIONS(2452), - [anon_sym_gen] = ACTIONS(2452), - [anon_sym_if] = ACTIONS(2452), - [anon_sym_impl] = ACTIONS(2452), - [anon_sym_let] = ACTIONS(2452), - [anon_sym_loop] = ACTIONS(2452), - [anon_sym_match] = ACTIONS(2452), - [anon_sym_mod] = ACTIONS(2452), - [anon_sym_pub] = ACTIONS(2452), - [anon_sym_return] = ACTIONS(2452), - [anon_sym_static] = ACTIONS(2452), - [anon_sym_struct] = ACTIONS(2452), - [anon_sym_trait] = ACTIONS(2452), - [anon_sym_type] = ACTIONS(2452), - [anon_sym_union] = ACTIONS(2452), - [anon_sym_unsafe] = ACTIONS(2452), - [anon_sym_use] = ACTIONS(2452), - [anon_sym_while] = ACTIONS(2452), - [anon_sym_extern] = ACTIONS(2452), - [anon_sym_yield] = ACTIONS(2452), - [anon_sym_move] = ACTIONS(2452), - [anon_sym_try] = ACTIONS(2452), - [sym_integer_literal] = ACTIONS(2450), - [aux_sym_string_literal_token1] = ACTIONS(2450), - [sym_char_literal] = ACTIONS(2450), - [anon_sym_true] = ACTIONS(2452), - [anon_sym_false] = ACTIONS(2452), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2452), - [sym_super] = ACTIONS(2452), - [sym_crate] = ACTIONS(2452), - [sym_metavariable] = ACTIONS(2450), - [sym__raw_string_literal_start] = ACTIONS(2450), - [sym_float_literal] = ACTIONS(2450), + [ts_builtin_sym_end] = ACTIONS(2273), + [sym_identifier] = ACTIONS(2275), + [anon_sym_SEMI] = ACTIONS(2273), + [anon_sym_macro_rules_BANG] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2273), + [anon_sym_LBRACK] = ACTIONS(2273), + [anon_sym_LBRACE] = ACTIONS(2273), + [anon_sym_RBRACE] = ACTIONS(2273), + [anon_sym_STAR] = ACTIONS(2273), + [anon_sym_u8] = ACTIONS(2275), + [anon_sym_i8] = ACTIONS(2275), + [anon_sym_u16] = ACTIONS(2275), + [anon_sym_i16] = ACTIONS(2275), + [anon_sym_u32] = ACTIONS(2275), + [anon_sym_i32] = ACTIONS(2275), + [anon_sym_u64] = ACTIONS(2275), + [anon_sym_i64] = ACTIONS(2275), + [anon_sym_u128] = ACTIONS(2275), + [anon_sym_i128] = ACTIONS(2275), + [anon_sym_isize] = ACTIONS(2275), + [anon_sym_usize] = ACTIONS(2275), + [anon_sym_f32] = ACTIONS(2275), + [anon_sym_f64] = ACTIONS(2275), + [anon_sym_bool] = ACTIONS(2275), + [anon_sym_str] = ACTIONS(2275), + [anon_sym_char] = ACTIONS(2275), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_BANG] = ACTIONS(2273), + [anon_sym_AMP] = ACTIONS(2273), + [anon_sym_PIPE] = ACTIONS(2273), + [anon_sym_LT] = ACTIONS(2273), + [anon_sym_DOT_DOT] = ACTIONS(2273), + [anon_sym_COLON_COLON] = ACTIONS(2273), + [anon_sym_POUND] = ACTIONS(2273), + [anon_sym_SQUOTE] = ACTIONS(2275), + [anon_sym_async] = ACTIONS(2275), + [anon_sym_break] = ACTIONS(2275), + [anon_sym_const] = ACTIONS(2275), + [anon_sym_continue] = ACTIONS(2275), + [anon_sym_default] = ACTIONS(2275), + [anon_sym_enum] = ACTIONS(2275), + [anon_sym_fn] = ACTIONS(2275), + [anon_sym_for] = ACTIONS(2275), + [anon_sym_gen] = ACTIONS(2275), + [anon_sym_if] = ACTIONS(2275), + [anon_sym_impl] = ACTIONS(2275), + [anon_sym_let] = ACTIONS(2275), + [anon_sym_loop] = ACTIONS(2275), + [anon_sym_match] = ACTIONS(2275), + [anon_sym_mod] = ACTIONS(2275), + [anon_sym_pub] = ACTIONS(2275), + [anon_sym_return] = ACTIONS(2275), + [anon_sym_static] = ACTIONS(2275), + [anon_sym_struct] = ACTIONS(2275), + [anon_sym_trait] = ACTIONS(2275), + [anon_sym_type] = ACTIONS(2275), + [anon_sym_union] = ACTIONS(2275), + [anon_sym_unsafe] = ACTIONS(2275), + [anon_sym_use] = ACTIONS(2275), + [anon_sym_while] = ACTIONS(2275), + [anon_sym_extern] = ACTIONS(2275), + [anon_sym_yield] = ACTIONS(2275), + [anon_sym_move] = ACTIONS(2275), + [anon_sym_try] = ACTIONS(2275), + [sym_integer_literal] = ACTIONS(2273), + [aux_sym_string_literal_token1] = ACTIONS(2273), + [sym_char_literal] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(2275), + [anon_sym_false] = ACTIONS(2275), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2275), + [sym_super] = ACTIONS(2275), + [sym_crate] = ACTIONS(2275), + [sym_metavariable] = ACTIONS(2273), + [sym__raw_string_literal_start] = ACTIONS(2273), + [sym_float_literal] = ACTIONS(2273), }, [STATE(632)] = { + [sym_attribute_item] = STATE(1389), + [sym_attributes] = STATE(883), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym_visibility_modifier] = STATE(944), + [sym__type] = STATE(2923), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(632), [sym_block_comment] = STATE(632), - [ts_builtin_sym_end] = ACTIONS(2454), - [sym_identifier] = ACTIONS(2456), - [anon_sym_SEMI] = ACTIONS(2454), - [anon_sym_macro_rules_BANG] = ACTIONS(2454), - [anon_sym_LPAREN] = ACTIONS(2454), - [anon_sym_LBRACK] = ACTIONS(2454), - [anon_sym_LBRACE] = ACTIONS(2454), - [anon_sym_RBRACE] = ACTIONS(2454), - [anon_sym_STAR] = ACTIONS(2454), - [anon_sym_u8] = ACTIONS(2456), - [anon_sym_i8] = ACTIONS(2456), - [anon_sym_u16] = ACTIONS(2456), - [anon_sym_i16] = ACTIONS(2456), - [anon_sym_u32] = ACTIONS(2456), - [anon_sym_i32] = ACTIONS(2456), - [anon_sym_u64] = ACTIONS(2456), - [anon_sym_i64] = ACTIONS(2456), - [anon_sym_u128] = ACTIONS(2456), - [anon_sym_i128] = ACTIONS(2456), - [anon_sym_isize] = ACTIONS(2456), - [anon_sym_usize] = ACTIONS(2456), - [anon_sym_f32] = ACTIONS(2456), - [anon_sym_f64] = ACTIONS(2456), - [anon_sym_bool] = ACTIONS(2456), - [anon_sym_str] = ACTIONS(2456), - [anon_sym_char] = ACTIONS(2456), - [anon_sym_DASH] = ACTIONS(2454), - [anon_sym_BANG] = ACTIONS(2454), - [anon_sym_AMP] = ACTIONS(2454), - [anon_sym_PIPE] = ACTIONS(2454), - [anon_sym_LT] = ACTIONS(2454), - [anon_sym_DOT_DOT] = ACTIONS(2454), - [anon_sym_COLON_COLON] = ACTIONS(2454), - [anon_sym_POUND] = ACTIONS(2454), - [anon_sym_SQUOTE] = ACTIONS(2456), - [anon_sym_async] = ACTIONS(2456), - [anon_sym_break] = ACTIONS(2456), - [anon_sym_const] = ACTIONS(2456), - [anon_sym_continue] = ACTIONS(2456), - [anon_sym_default] = ACTIONS(2456), - [anon_sym_enum] = ACTIONS(2456), - [anon_sym_fn] = ACTIONS(2456), - [anon_sym_for] = ACTIONS(2456), - [anon_sym_gen] = ACTIONS(2456), - [anon_sym_if] = ACTIONS(2456), - [anon_sym_impl] = ACTIONS(2456), - [anon_sym_let] = ACTIONS(2456), - [anon_sym_loop] = ACTIONS(2456), - [anon_sym_match] = ACTIONS(2456), - [anon_sym_mod] = ACTIONS(2456), - [anon_sym_pub] = ACTIONS(2456), - [anon_sym_return] = ACTIONS(2456), - [anon_sym_static] = ACTIONS(2456), - [anon_sym_struct] = ACTIONS(2456), - [anon_sym_trait] = ACTIONS(2456), - [anon_sym_type] = ACTIONS(2456), - [anon_sym_union] = ACTIONS(2456), - [anon_sym_unsafe] = ACTIONS(2456), - [anon_sym_use] = ACTIONS(2456), - [anon_sym_while] = ACTIONS(2456), - [anon_sym_extern] = ACTIONS(2456), - [anon_sym_yield] = ACTIONS(2456), - [anon_sym_move] = ACTIONS(2456), - [anon_sym_try] = ACTIONS(2456), - [sym_integer_literal] = ACTIONS(2454), - [aux_sym_string_literal_token1] = ACTIONS(2454), - [sym_char_literal] = ACTIONS(2454), - [anon_sym_true] = ACTIONS(2456), - [anon_sym_false] = ACTIONS(2456), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2456), - [sym_super] = ACTIONS(2456), - [sym_crate] = ACTIONS(2456), - [sym_metavariable] = ACTIONS(2454), - [sym__raw_string_literal_start] = ACTIONS(2454), - [sym_float_literal] = ACTIONS(2454), + [aux_sym_attributes_repeat1] = STATE(1138), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_RPAREN] = ACTIONS(2279), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COMMA] = ACTIONS(2283), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_POUND] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_pub] = ACTIONS(2289), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(2291), + [sym_metavariable] = ACTIONS(1553), }, [STATE(633)] = { [sym_line_comment] = STATE(633), [sym_block_comment] = STATE(633), - [ts_builtin_sym_end] = ACTIONS(2458), - [sym_identifier] = ACTIONS(2460), - [anon_sym_SEMI] = ACTIONS(2458), - [anon_sym_macro_rules_BANG] = ACTIONS(2458), - [anon_sym_LPAREN] = ACTIONS(2458), - [anon_sym_LBRACK] = ACTIONS(2458), - [anon_sym_LBRACE] = ACTIONS(2458), - [anon_sym_RBRACE] = ACTIONS(2458), - [anon_sym_STAR] = ACTIONS(2458), - [anon_sym_u8] = ACTIONS(2460), - [anon_sym_i8] = ACTIONS(2460), - [anon_sym_u16] = ACTIONS(2460), - [anon_sym_i16] = ACTIONS(2460), - [anon_sym_u32] = ACTIONS(2460), - [anon_sym_i32] = ACTIONS(2460), - [anon_sym_u64] = ACTIONS(2460), - [anon_sym_i64] = ACTIONS(2460), - [anon_sym_u128] = ACTIONS(2460), - [anon_sym_i128] = ACTIONS(2460), - [anon_sym_isize] = ACTIONS(2460), - [anon_sym_usize] = ACTIONS(2460), - [anon_sym_f32] = ACTIONS(2460), - [anon_sym_f64] = ACTIONS(2460), - [anon_sym_bool] = ACTIONS(2460), - [anon_sym_str] = ACTIONS(2460), - [anon_sym_char] = ACTIONS(2460), - [anon_sym_DASH] = ACTIONS(2458), - [anon_sym_BANG] = ACTIONS(2458), - [anon_sym_AMP] = ACTIONS(2458), - [anon_sym_PIPE] = ACTIONS(2458), - [anon_sym_LT] = ACTIONS(2458), - [anon_sym_DOT_DOT] = ACTIONS(2458), - [anon_sym_COLON_COLON] = ACTIONS(2458), - [anon_sym_POUND] = ACTIONS(2458), - [anon_sym_SQUOTE] = ACTIONS(2460), - [anon_sym_async] = ACTIONS(2460), - [anon_sym_break] = ACTIONS(2460), - [anon_sym_const] = ACTIONS(2460), - [anon_sym_continue] = ACTIONS(2460), - [anon_sym_default] = ACTIONS(2460), - [anon_sym_enum] = ACTIONS(2460), - [anon_sym_fn] = ACTIONS(2460), - [anon_sym_for] = ACTIONS(2460), - [anon_sym_gen] = ACTIONS(2460), - [anon_sym_if] = ACTIONS(2460), - [anon_sym_impl] = ACTIONS(2460), - [anon_sym_let] = ACTIONS(2460), - [anon_sym_loop] = ACTIONS(2460), - [anon_sym_match] = ACTIONS(2460), - [anon_sym_mod] = ACTIONS(2460), - [anon_sym_pub] = ACTIONS(2460), - [anon_sym_return] = ACTIONS(2460), - [anon_sym_static] = ACTIONS(2460), - [anon_sym_struct] = ACTIONS(2460), - [anon_sym_trait] = ACTIONS(2460), - [anon_sym_type] = ACTIONS(2460), - [anon_sym_union] = ACTIONS(2460), - [anon_sym_unsafe] = ACTIONS(2460), - [anon_sym_use] = ACTIONS(2460), - [anon_sym_while] = ACTIONS(2460), - [anon_sym_extern] = ACTIONS(2460), - [anon_sym_yield] = ACTIONS(2460), - [anon_sym_move] = ACTIONS(2460), - [anon_sym_try] = ACTIONS(2460), - [sym_integer_literal] = ACTIONS(2458), - [aux_sym_string_literal_token1] = ACTIONS(2458), - [sym_char_literal] = ACTIONS(2458), - [anon_sym_true] = ACTIONS(2460), - [anon_sym_false] = ACTIONS(2460), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2460), - [sym_super] = ACTIONS(2460), - [sym_crate] = ACTIONS(2460), - [sym_metavariable] = ACTIONS(2458), - [sym__raw_string_literal_start] = ACTIONS(2458), - [sym_float_literal] = ACTIONS(2458), + [ts_builtin_sym_end] = ACTIONS(2293), + [sym_identifier] = ACTIONS(2295), + [anon_sym_SEMI] = ACTIONS(2293), + [anon_sym_macro_rules_BANG] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(2293), + [anon_sym_LBRACK] = ACTIONS(2293), + [anon_sym_LBRACE] = ACTIONS(2293), + [anon_sym_RBRACE] = ACTIONS(2293), + [anon_sym_STAR] = ACTIONS(2293), + [anon_sym_u8] = ACTIONS(2295), + [anon_sym_i8] = ACTIONS(2295), + [anon_sym_u16] = ACTIONS(2295), + [anon_sym_i16] = ACTIONS(2295), + [anon_sym_u32] = ACTIONS(2295), + [anon_sym_i32] = ACTIONS(2295), + [anon_sym_u64] = ACTIONS(2295), + [anon_sym_i64] = ACTIONS(2295), + [anon_sym_u128] = ACTIONS(2295), + [anon_sym_i128] = ACTIONS(2295), + [anon_sym_isize] = ACTIONS(2295), + [anon_sym_usize] = ACTIONS(2295), + [anon_sym_f32] = ACTIONS(2295), + [anon_sym_f64] = ACTIONS(2295), + [anon_sym_bool] = ACTIONS(2295), + [anon_sym_str] = ACTIONS(2295), + [anon_sym_char] = ACTIONS(2295), + [anon_sym_DASH] = ACTIONS(2293), + [anon_sym_BANG] = ACTIONS(2293), + [anon_sym_AMP] = ACTIONS(2293), + [anon_sym_PIPE] = ACTIONS(2293), + [anon_sym_LT] = ACTIONS(2293), + [anon_sym_DOT_DOT] = ACTIONS(2293), + [anon_sym_COLON_COLON] = ACTIONS(2293), + [anon_sym_POUND] = ACTIONS(2293), + [anon_sym_SQUOTE] = ACTIONS(2295), + [anon_sym_async] = ACTIONS(2295), + [anon_sym_break] = ACTIONS(2295), + [anon_sym_const] = ACTIONS(2295), + [anon_sym_continue] = ACTIONS(2295), + [anon_sym_default] = ACTIONS(2295), + [anon_sym_enum] = ACTIONS(2295), + [anon_sym_fn] = ACTIONS(2295), + [anon_sym_for] = ACTIONS(2295), + [anon_sym_gen] = ACTIONS(2295), + [anon_sym_if] = ACTIONS(2295), + [anon_sym_impl] = ACTIONS(2295), + [anon_sym_let] = ACTIONS(2295), + [anon_sym_loop] = ACTIONS(2295), + [anon_sym_match] = ACTIONS(2295), + [anon_sym_mod] = ACTIONS(2295), + [anon_sym_pub] = ACTIONS(2295), + [anon_sym_return] = ACTIONS(2295), + [anon_sym_static] = ACTIONS(2295), + [anon_sym_struct] = ACTIONS(2295), + [anon_sym_trait] = ACTIONS(2295), + [anon_sym_type] = ACTIONS(2295), + [anon_sym_union] = ACTIONS(2295), + [anon_sym_unsafe] = ACTIONS(2295), + [anon_sym_use] = ACTIONS(2295), + [anon_sym_while] = ACTIONS(2295), + [anon_sym_extern] = ACTIONS(2295), + [anon_sym_yield] = ACTIONS(2295), + [anon_sym_move] = ACTIONS(2295), + [anon_sym_try] = ACTIONS(2295), + [sym_integer_literal] = ACTIONS(2293), + [aux_sym_string_literal_token1] = ACTIONS(2293), + [sym_char_literal] = ACTIONS(2293), + [anon_sym_true] = ACTIONS(2295), + [anon_sym_false] = ACTIONS(2295), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2295), + [sym_super] = ACTIONS(2295), + [sym_crate] = ACTIONS(2295), + [sym_metavariable] = ACTIONS(2293), + [sym__raw_string_literal_start] = ACTIONS(2293), + [sym_float_literal] = ACTIONS(2293), }, [STATE(634)] = { [sym_line_comment] = STATE(634), [sym_block_comment] = STATE(634), - [ts_builtin_sym_end] = ACTIONS(2462), - [sym_identifier] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2462), - [anon_sym_macro_rules_BANG] = ACTIONS(2462), - [anon_sym_LPAREN] = ACTIONS(2462), - [anon_sym_LBRACK] = ACTIONS(2462), - [anon_sym_LBRACE] = ACTIONS(2462), - [anon_sym_RBRACE] = ACTIONS(2462), - [anon_sym_STAR] = ACTIONS(2462), - [anon_sym_u8] = ACTIONS(2464), - [anon_sym_i8] = ACTIONS(2464), - [anon_sym_u16] = ACTIONS(2464), - [anon_sym_i16] = ACTIONS(2464), - [anon_sym_u32] = ACTIONS(2464), - [anon_sym_i32] = ACTIONS(2464), - [anon_sym_u64] = ACTIONS(2464), - [anon_sym_i64] = ACTIONS(2464), - [anon_sym_u128] = ACTIONS(2464), - [anon_sym_i128] = ACTIONS(2464), - [anon_sym_isize] = ACTIONS(2464), - [anon_sym_usize] = ACTIONS(2464), - [anon_sym_f32] = ACTIONS(2464), - [anon_sym_f64] = ACTIONS(2464), - [anon_sym_bool] = ACTIONS(2464), - [anon_sym_str] = ACTIONS(2464), - [anon_sym_char] = ACTIONS(2464), - [anon_sym_DASH] = ACTIONS(2462), - [anon_sym_BANG] = ACTIONS(2462), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_PIPE] = ACTIONS(2462), - [anon_sym_LT] = ACTIONS(2462), - [anon_sym_DOT_DOT] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2462), - [anon_sym_POUND] = ACTIONS(2462), - [anon_sym_SQUOTE] = ACTIONS(2464), - [anon_sym_async] = ACTIONS(2464), - [anon_sym_break] = ACTIONS(2464), - [anon_sym_const] = ACTIONS(2464), - [anon_sym_continue] = ACTIONS(2464), - [anon_sym_default] = ACTIONS(2464), - [anon_sym_enum] = ACTIONS(2464), - [anon_sym_fn] = ACTIONS(2464), - [anon_sym_for] = ACTIONS(2464), - [anon_sym_gen] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2464), - [anon_sym_impl] = ACTIONS(2464), - [anon_sym_let] = ACTIONS(2464), - [anon_sym_loop] = ACTIONS(2464), - [anon_sym_match] = ACTIONS(2464), - [anon_sym_mod] = ACTIONS(2464), - [anon_sym_pub] = ACTIONS(2464), - [anon_sym_return] = ACTIONS(2464), - [anon_sym_static] = ACTIONS(2464), - [anon_sym_struct] = ACTIONS(2464), - [anon_sym_trait] = ACTIONS(2464), - [anon_sym_type] = ACTIONS(2464), - [anon_sym_union] = ACTIONS(2464), - [anon_sym_unsafe] = ACTIONS(2464), - [anon_sym_use] = ACTIONS(2464), - [anon_sym_while] = ACTIONS(2464), - [anon_sym_extern] = ACTIONS(2464), - [anon_sym_yield] = ACTIONS(2464), - [anon_sym_move] = ACTIONS(2464), - [anon_sym_try] = ACTIONS(2464), - [sym_integer_literal] = ACTIONS(2462), - [aux_sym_string_literal_token1] = ACTIONS(2462), - [sym_char_literal] = ACTIONS(2462), - [anon_sym_true] = ACTIONS(2464), - [anon_sym_false] = ACTIONS(2464), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2464), - [sym_super] = ACTIONS(2464), - [sym_crate] = ACTIONS(2464), - [sym_metavariable] = ACTIONS(2462), - [sym__raw_string_literal_start] = ACTIONS(2462), - [sym_float_literal] = ACTIONS(2462), + [ts_builtin_sym_end] = ACTIONS(2297), + [sym_identifier] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2297), + [anon_sym_macro_rules_BANG] = ACTIONS(2297), + [anon_sym_LPAREN] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(2297), + [anon_sym_LBRACE] = ACTIONS(2297), + [anon_sym_RBRACE] = ACTIONS(2297), + [anon_sym_STAR] = ACTIONS(2297), + [anon_sym_u8] = ACTIONS(2299), + [anon_sym_i8] = ACTIONS(2299), + [anon_sym_u16] = ACTIONS(2299), + [anon_sym_i16] = ACTIONS(2299), + [anon_sym_u32] = ACTIONS(2299), + [anon_sym_i32] = ACTIONS(2299), + [anon_sym_u64] = ACTIONS(2299), + [anon_sym_i64] = ACTIONS(2299), + [anon_sym_u128] = ACTIONS(2299), + [anon_sym_i128] = ACTIONS(2299), + [anon_sym_isize] = ACTIONS(2299), + [anon_sym_usize] = ACTIONS(2299), + [anon_sym_f32] = ACTIONS(2299), + [anon_sym_f64] = ACTIONS(2299), + [anon_sym_bool] = ACTIONS(2299), + [anon_sym_str] = ACTIONS(2299), + [anon_sym_char] = ACTIONS(2299), + [anon_sym_DASH] = ACTIONS(2297), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_PIPE] = ACTIONS(2297), + [anon_sym_LT] = ACTIONS(2297), + [anon_sym_DOT_DOT] = ACTIONS(2297), + [anon_sym_COLON_COLON] = ACTIONS(2297), + [anon_sym_POUND] = ACTIONS(2297), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(2299), + [anon_sym_break] = ACTIONS(2299), + [anon_sym_const] = ACTIONS(2299), + [anon_sym_continue] = ACTIONS(2299), + [anon_sym_default] = ACTIONS(2299), + [anon_sym_enum] = ACTIONS(2299), + [anon_sym_fn] = ACTIONS(2299), + [anon_sym_for] = ACTIONS(2299), + [anon_sym_gen] = ACTIONS(2299), + [anon_sym_if] = ACTIONS(2299), + [anon_sym_impl] = ACTIONS(2299), + [anon_sym_let] = ACTIONS(2299), + [anon_sym_loop] = ACTIONS(2299), + [anon_sym_match] = ACTIONS(2299), + [anon_sym_mod] = ACTIONS(2299), + [anon_sym_pub] = ACTIONS(2299), + [anon_sym_return] = ACTIONS(2299), + [anon_sym_static] = ACTIONS(2299), + [anon_sym_struct] = ACTIONS(2299), + [anon_sym_trait] = ACTIONS(2299), + [anon_sym_type] = ACTIONS(2299), + [anon_sym_union] = ACTIONS(2299), + [anon_sym_unsafe] = ACTIONS(2299), + [anon_sym_use] = ACTIONS(2299), + [anon_sym_while] = ACTIONS(2299), + [anon_sym_extern] = ACTIONS(2299), + [anon_sym_yield] = ACTIONS(2299), + [anon_sym_move] = ACTIONS(2299), + [anon_sym_try] = ACTIONS(2299), + [sym_integer_literal] = ACTIONS(2297), + [aux_sym_string_literal_token1] = ACTIONS(2297), + [sym_char_literal] = ACTIONS(2297), + [anon_sym_true] = ACTIONS(2299), + [anon_sym_false] = ACTIONS(2299), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2299), + [sym_super] = ACTIONS(2299), + [sym_crate] = ACTIONS(2299), + [sym_metavariable] = ACTIONS(2297), + [sym__raw_string_literal_start] = ACTIONS(2297), + [sym_float_literal] = ACTIONS(2297), }, [STATE(635)] = { [sym_line_comment] = STATE(635), [sym_block_comment] = STATE(635), - [ts_builtin_sym_end] = ACTIONS(2466), - [sym_identifier] = ACTIONS(2468), - [anon_sym_SEMI] = ACTIONS(2466), - [anon_sym_macro_rules_BANG] = ACTIONS(2466), - [anon_sym_LPAREN] = ACTIONS(2466), - [anon_sym_LBRACK] = ACTIONS(2466), - [anon_sym_LBRACE] = ACTIONS(2466), - [anon_sym_RBRACE] = ACTIONS(2466), - [anon_sym_STAR] = ACTIONS(2466), - [anon_sym_u8] = ACTIONS(2468), - [anon_sym_i8] = ACTIONS(2468), - [anon_sym_u16] = ACTIONS(2468), - [anon_sym_i16] = ACTIONS(2468), - [anon_sym_u32] = ACTIONS(2468), - [anon_sym_i32] = ACTIONS(2468), - [anon_sym_u64] = ACTIONS(2468), - [anon_sym_i64] = ACTIONS(2468), - [anon_sym_u128] = ACTIONS(2468), - [anon_sym_i128] = ACTIONS(2468), - [anon_sym_isize] = ACTIONS(2468), - [anon_sym_usize] = ACTIONS(2468), - [anon_sym_f32] = ACTIONS(2468), - [anon_sym_f64] = ACTIONS(2468), - [anon_sym_bool] = ACTIONS(2468), - [anon_sym_str] = ACTIONS(2468), - [anon_sym_char] = ACTIONS(2468), - [anon_sym_DASH] = ACTIONS(2466), - [anon_sym_BANG] = ACTIONS(2466), - [anon_sym_AMP] = ACTIONS(2466), - [anon_sym_PIPE] = ACTIONS(2466), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_DOT_DOT] = ACTIONS(2466), - [anon_sym_COLON_COLON] = ACTIONS(2466), - [anon_sym_POUND] = ACTIONS(2466), - [anon_sym_SQUOTE] = ACTIONS(2468), - [anon_sym_async] = ACTIONS(2468), - [anon_sym_break] = ACTIONS(2468), - [anon_sym_const] = ACTIONS(2468), - [anon_sym_continue] = ACTIONS(2468), - [anon_sym_default] = ACTIONS(2468), - [anon_sym_enum] = ACTIONS(2468), - [anon_sym_fn] = ACTIONS(2468), - [anon_sym_for] = ACTIONS(2468), - [anon_sym_gen] = ACTIONS(2468), - [anon_sym_if] = ACTIONS(2468), - [anon_sym_impl] = ACTIONS(2468), - [anon_sym_let] = ACTIONS(2468), - [anon_sym_loop] = ACTIONS(2468), - [anon_sym_match] = ACTIONS(2468), - [anon_sym_mod] = ACTIONS(2468), - [anon_sym_pub] = ACTIONS(2468), - [anon_sym_return] = ACTIONS(2468), - [anon_sym_static] = ACTIONS(2468), - [anon_sym_struct] = ACTIONS(2468), - [anon_sym_trait] = ACTIONS(2468), - [anon_sym_type] = ACTIONS(2468), - [anon_sym_union] = ACTIONS(2468), - [anon_sym_unsafe] = ACTIONS(2468), - [anon_sym_use] = ACTIONS(2468), - [anon_sym_while] = ACTIONS(2468), - [anon_sym_extern] = ACTIONS(2468), - [anon_sym_yield] = ACTIONS(2468), - [anon_sym_move] = ACTIONS(2468), - [anon_sym_try] = ACTIONS(2468), - [sym_integer_literal] = ACTIONS(2466), - [aux_sym_string_literal_token1] = ACTIONS(2466), - [sym_char_literal] = ACTIONS(2466), - [anon_sym_true] = ACTIONS(2468), - [anon_sym_false] = ACTIONS(2468), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2468), - [sym_super] = ACTIONS(2468), - [sym_crate] = ACTIONS(2468), - [sym_metavariable] = ACTIONS(2466), - [sym__raw_string_literal_start] = ACTIONS(2466), - [sym_float_literal] = ACTIONS(2466), + [ts_builtin_sym_end] = ACTIONS(1335), + [sym_identifier] = ACTIONS(1337), + [anon_sym_SEMI] = ACTIONS(1335), + [anon_sym_macro_rules_BANG] = ACTIONS(1335), + [anon_sym_LPAREN] = ACTIONS(1335), + [anon_sym_LBRACK] = ACTIONS(1335), + [anon_sym_LBRACE] = ACTIONS(1335), + [anon_sym_RBRACE] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1335), + [anon_sym_u8] = ACTIONS(1337), + [anon_sym_i8] = ACTIONS(1337), + [anon_sym_u16] = ACTIONS(1337), + [anon_sym_i16] = ACTIONS(1337), + [anon_sym_u32] = ACTIONS(1337), + [anon_sym_i32] = ACTIONS(1337), + [anon_sym_u64] = ACTIONS(1337), + [anon_sym_i64] = ACTIONS(1337), + [anon_sym_u128] = ACTIONS(1337), + [anon_sym_i128] = ACTIONS(1337), + [anon_sym_isize] = ACTIONS(1337), + [anon_sym_usize] = ACTIONS(1337), + [anon_sym_f32] = ACTIONS(1337), + [anon_sym_f64] = ACTIONS(1337), + [anon_sym_bool] = ACTIONS(1337), + [anon_sym_str] = ACTIONS(1337), + [anon_sym_char] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1335), + [anon_sym_PIPE] = ACTIONS(1335), + [anon_sym_LT] = ACTIONS(1335), + [anon_sym_DOT_DOT] = ACTIONS(1335), + [anon_sym_COLON_COLON] = ACTIONS(1335), + [anon_sym_POUND] = ACTIONS(1335), + [anon_sym_SQUOTE] = ACTIONS(1337), + [anon_sym_async] = ACTIONS(1337), + [anon_sym_break] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1337), + [anon_sym_continue] = ACTIONS(1337), + [anon_sym_default] = ACTIONS(1337), + [anon_sym_enum] = ACTIONS(1337), + [anon_sym_fn] = ACTIONS(1337), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1337), + [anon_sym_if] = ACTIONS(1337), + [anon_sym_impl] = ACTIONS(1337), + [anon_sym_let] = ACTIONS(1337), + [anon_sym_loop] = ACTIONS(1337), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_mod] = ACTIONS(1337), + [anon_sym_pub] = ACTIONS(1337), + [anon_sym_return] = ACTIONS(1337), + [anon_sym_static] = ACTIONS(1337), + [anon_sym_struct] = ACTIONS(1337), + [anon_sym_trait] = ACTIONS(1337), + [anon_sym_type] = ACTIONS(1337), + [anon_sym_union] = ACTIONS(1337), + [anon_sym_unsafe] = ACTIONS(1337), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_while] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1337), + [anon_sym_yield] = ACTIONS(1337), + [anon_sym_move] = ACTIONS(1337), + [anon_sym_try] = ACTIONS(1337), + [sym_integer_literal] = ACTIONS(1335), + [aux_sym_string_literal_token1] = ACTIONS(1335), + [sym_char_literal] = ACTIONS(1335), + [anon_sym_true] = ACTIONS(1337), + [anon_sym_false] = ACTIONS(1337), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1337), + [sym_super] = ACTIONS(1337), + [sym_crate] = ACTIONS(1337), + [sym_metavariable] = ACTIONS(1335), + [sym__raw_string_literal_start] = ACTIONS(1335), + [sym_float_literal] = ACTIONS(1335), }, [STATE(636)] = { [sym_line_comment] = STATE(636), [sym_block_comment] = STATE(636), - [ts_builtin_sym_end] = ACTIONS(2470), - [sym_identifier] = ACTIONS(2472), - [anon_sym_SEMI] = ACTIONS(2470), - [anon_sym_macro_rules_BANG] = ACTIONS(2470), - [anon_sym_LPAREN] = ACTIONS(2470), - [anon_sym_LBRACK] = ACTIONS(2470), - [anon_sym_LBRACE] = ACTIONS(2470), - [anon_sym_RBRACE] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(2470), - [anon_sym_u8] = ACTIONS(2472), - [anon_sym_i8] = ACTIONS(2472), - [anon_sym_u16] = ACTIONS(2472), - [anon_sym_i16] = ACTIONS(2472), - [anon_sym_u32] = ACTIONS(2472), - [anon_sym_i32] = ACTIONS(2472), - [anon_sym_u64] = ACTIONS(2472), - [anon_sym_i64] = ACTIONS(2472), - [anon_sym_u128] = ACTIONS(2472), - [anon_sym_i128] = ACTIONS(2472), - [anon_sym_isize] = ACTIONS(2472), - [anon_sym_usize] = ACTIONS(2472), - [anon_sym_f32] = ACTIONS(2472), - [anon_sym_f64] = ACTIONS(2472), - [anon_sym_bool] = ACTIONS(2472), - [anon_sym_str] = ACTIONS(2472), - [anon_sym_char] = ACTIONS(2472), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_BANG] = ACTIONS(2470), - [anon_sym_AMP] = ACTIONS(2470), - [anon_sym_PIPE] = ACTIONS(2470), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_DOT_DOT] = ACTIONS(2470), - [anon_sym_COLON_COLON] = ACTIONS(2470), - [anon_sym_POUND] = ACTIONS(2470), - [anon_sym_SQUOTE] = ACTIONS(2472), - [anon_sym_async] = ACTIONS(2472), - [anon_sym_break] = ACTIONS(2472), - [anon_sym_const] = ACTIONS(2472), - [anon_sym_continue] = ACTIONS(2472), - [anon_sym_default] = ACTIONS(2472), - [anon_sym_enum] = ACTIONS(2472), - [anon_sym_fn] = ACTIONS(2472), - [anon_sym_for] = ACTIONS(2472), - [anon_sym_gen] = ACTIONS(2472), - [anon_sym_if] = ACTIONS(2472), - [anon_sym_impl] = ACTIONS(2472), - [anon_sym_let] = ACTIONS(2472), - [anon_sym_loop] = ACTIONS(2472), - [anon_sym_match] = ACTIONS(2472), - [anon_sym_mod] = ACTIONS(2472), - [anon_sym_pub] = ACTIONS(2472), - [anon_sym_return] = ACTIONS(2472), - [anon_sym_static] = ACTIONS(2472), - [anon_sym_struct] = ACTIONS(2472), - [anon_sym_trait] = ACTIONS(2472), - [anon_sym_type] = ACTIONS(2472), - [anon_sym_union] = ACTIONS(2472), - [anon_sym_unsafe] = ACTIONS(2472), - [anon_sym_use] = ACTIONS(2472), - [anon_sym_while] = ACTIONS(2472), - [anon_sym_extern] = ACTIONS(2472), - [anon_sym_yield] = ACTIONS(2472), - [anon_sym_move] = ACTIONS(2472), - [anon_sym_try] = ACTIONS(2472), - [sym_integer_literal] = ACTIONS(2470), - [aux_sym_string_literal_token1] = ACTIONS(2470), - [sym_char_literal] = ACTIONS(2470), - [anon_sym_true] = ACTIONS(2472), - [anon_sym_false] = ACTIONS(2472), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2472), - [sym_super] = ACTIONS(2472), - [sym_crate] = ACTIONS(2472), - [sym_metavariable] = ACTIONS(2470), - [sym__raw_string_literal_start] = ACTIONS(2470), - [sym_float_literal] = ACTIONS(2470), + [ts_builtin_sym_end] = ACTIONS(2301), + [sym_identifier] = ACTIONS(2303), + [anon_sym_SEMI] = ACTIONS(2301), + [anon_sym_macro_rules_BANG] = ACTIONS(2301), + [anon_sym_LPAREN] = ACTIONS(2301), + [anon_sym_LBRACK] = ACTIONS(2301), + [anon_sym_LBRACE] = ACTIONS(2301), + [anon_sym_RBRACE] = ACTIONS(2301), + [anon_sym_STAR] = ACTIONS(2301), + [anon_sym_u8] = ACTIONS(2303), + [anon_sym_i8] = ACTIONS(2303), + [anon_sym_u16] = ACTIONS(2303), + [anon_sym_i16] = ACTIONS(2303), + [anon_sym_u32] = ACTIONS(2303), + [anon_sym_i32] = ACTIONS(2303), + [anon_sym_u64] = ACTIONS(2303), + [anon_sym_i64] = ACTIONS(2303), + [anon_sym_u128] = ACTIONS(2303), + [anon_sym_i128] = ACTIONS(2303), + [anon_sym_isize] = ACTIONS(2303), + [anon_sym_usize] = ACTIONS(2303), + [anon_sym_f32] = ACTIONS(2303), + [anon_sym_f64] = ACTIONS(2303), + [anon_sym_bool] = ACTIONS(2303), + [anon_sym_str] = ACTIONS(2303), + [anon_sym_char] = ACTIONS(2303), + [anon_sym_DASH] = ACTIONS(2301), + [anon_sym_BANG] = ACTIONS(2301), + [anon_sym_AMP] = ACTIONS(2301), + [anon_sym_PIPE] = ACTIONS(2301), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_DOT_DOT] = ACTIONS(2301), + [anon_sym_COLON_COLON] = ACTIONS(2301), + [anon_sym_POUND] = ACTIONS(2301), + [anon_sym_SQUOTE] = ACTIONS(2303), + [anon_sym_async] = ACTIONS(2303), + [anon_sym_break] = ACTIONS(2303), + [anon_sym_const] = ACTIONS(2303), + [anon_sym_continue] = ACTIONS(2303), + [anon_sym_default] = ACTIONS(2303), + [anon_sym_enum] = ACTIONS(2303), + [anon_sym_fn] = ACTIONS(2303), + [anon_sym_for] = ACTIONS(2303), + [anon_sym_gen] = ACTIONS(2303), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_impl] = ACTIONS(2303), + [anon_sym_let] = ACTIONS(2303), + [anon_sym_loop] = ACTIONS(2303), + [anon_sym_match] = ACTIONS(2303), + [anon_sym_mod] = ACTIONS(2303), + [anon_sym_pub] = ACTIONS(2303), + [anon_sym_return] = ACTIONS(2303), + [anon_sym_static] = ACTIONS(2303), + [anon_sym_struct] = ACTIONS(2303), + [anon_sym_trait] = ACTIONS(2303), + [anon_sym_type] = ACTIONS(2303), + [anon_sym_union] = ACTIONS(2303), + [anon_sym_unsafe] = ACTIONS(2303), + [anon_sym_use] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(2303), + [anon_sym_extern] = ACTIONS(2303), + [anon_sym_yield] = ACTIONS(2303), + [anon_sym_move] = ACTIONS(2303), + [anon_sym_try] = ACTIONS(2303), + [sym_integer_literal] = ACTIONS(2301), + [aux_sym_string_literal_token1] = ACTIONS(2301), + [sym_char_literal] = ACTIONS(2301), + [anon_sym_true] = ACTIONS(2303), + [anon_sym_false] = ACTIONS(2303), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2303), + [sym_super] = ACTIONS(2303), + [sym_crate] = ACTIONS(2303), + [sym_metavariable] = ACTIONS(2301), + [sym__raw_string_literal_start] = ACTIONS(2301), + [sym_float_literal] = ACTIONS(2301), }, [STATE(637)] = { [sym_line_comment] = STATE(637), [sym_block_comment] = STATE(637), - [ts_builtin_sym_end] = ACTIONS(2474), - [sym_identifier] = ACTIONS(2476), - [anon_sym_SEMI] = ACTIONS(2474), - [anon_sym_macro_rules_BANG] = ACTIONS(2474), - [anon_sym_LPAREN] = ACTIONS(2474), - [anon_sym_LBRACK] = ACTIONS(2474), - [anon_sym_LBRACE] = ACTIONS(2474), - [anon_sym_RBRACE] = ACTIONS(2474), - [anon_sym_STAR] = ACTIONS(2474), - [anon_sym_u8] = ACTIONS(2476), - [anon_sym_i8] = ACTIONS(2476), - [anon_sym_u16] = ACTIONS(2476), - [anon_sym_i16] = ACTIONS(2476), - [anon_sym_u32] = ACTIONS(2476), - [anon_sym_i32] = ACTIONS(2476), - [anon_sym_u64] = ACTIONS(2476), - [anon_sym_i64] = ACTIONS(2476), - [anon_sym_u128] = ACTIONS(2476), - [anon_sym_i128] = ACTIONS(2476), - [anon_sym_isize] = ACTIONS(2476), - [anon_sym_usize] = ACTIONS(2476), - [anon_sym_f32] = ACTIONS(2476), - [anon_sym_f64] = ACTIONS(2476), - [anon_sym_bool] = ACTIONS(2476), - [anon_sym_str] = ACTIONS(2476), - [anon_sym_char] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2474), - [anon_sym_BANG] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(2474), - [anon_sym_PIPE] = ACTIONS(2474), - [anon_sym_LT] = ACTIONS(2474), - [anon_sym_DOT_DOT] = ACTIONS(2474), - [anon_sym_COLON_COLON] = ACTIONS(2474), - [anon_sym_POUND] = ACTIONS(2474), - [anon_sym_SQUOTE] = ACTIONS(2476), - [anon_sym_async] = ACTIONS(2476), - [anon_sym_break] = ACTIONS(2476), - [anon_sym_const] = ACTIONS(2476), - [anon_sym_continue] = ACTIONS(2476), - [anon_sym_default] = ACTIONS(2476), - [anon_sym_enum] = ACTIONS(2476), - [anon_sym_fn] = ACTIONS(2476), - [anon_sym_for] = ACTIONS(2476), - [anon_sym_gen] = ACTIONS(2476), - [anon_sym_if] = ACTIONS(2476), - [anon_sym_impl] = ACTIONS(2476), - [anon_sym_let] = ACTIONS(2476), - [anon_sym_loop] = ACTIONS(2476), - [anon_sym_match] = ACTIONS(2476), - [anon_sym_mod] = ACTIONS(2476), - [anon_sym_pub] = ACTIONS(2476), - [anon_sym_return] = ACTIONS(2476), - [anon_sym_static] = ACTIONS(2476), - [anon_sym_struct] = ACTIONS(2476), - [anon_sym_trait] = ACTIONS(2476), - [anon_sym_type] = ACTIONS(2476), - [anon_sym_union] = ACTIONS(2476), - [anon_sym_unsafe] = ACTIONS(2476), - [anon_sym_use] = ACTIONS(2476), - [anon_sym_while] = ACTIONS(2476), - [anon_sym_extern] = ACTIONS(2476), - [anon_sym_yield] = ACTIONS(2476), - [anon_sym_move] = ACTIONS(2476), - [anon_sym_try] = ACTIONS(2476), - [sym_integer_literal] = ACTIONS(2474), - [aux_sym_string_literal_token1] = ACTIONS(2474), - [sym_char_literal] = ACTIONS(2474), - [anon_sym_true] = ACTIONS(2476), - [anon_sym_false] = ACTIONS(2476), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2476), - [sym_super] = ACTIONS(2476), - [sym_crate] = ACTIONS(2476), - [sym_metavariable] = ACTIONS(2474), - [sym__raw_string_literal_start] = ACTIONS(2474), - [sym_float_literal] = ACTIONS(2474), + [ts_builtin_sym_end] = ACTIONS(2305), + [sym_identifier] = ACTIONS(2307), + [anon_sym_SEMI] = ACTIONS(2305), + [anon_sym_macro_rules_BANG] = ACTIONS(2305), + [anon_sym_LPAREN] = ACTIONS(2305), + [anon_sym_LBRACK] = ACTIONS(2305), + [anon_sym_LBRACE] = ACTIONS(2305), + [anon_sym_RBRACE] = ACTIONS(2305), + [anon_sym_STAR] = ACTIONS(2305), + [anon_sym_u8] = ACTIONS(2307), + [anon_sym_i8] = ACTIONS(2307), + [anon_sym_u16] = ACTIONS(2307), + [anon_sym_i16] = ACTIONS(2307), + [anon_sym_u32] = ACTIONS(2307), + [anon_sym_i32] = ACTIONS(2307), + [anon_sym_u64] = ACTIONS(2307), + [anon_sym_i64] = ACTIONS(2307), + [anon_sym_u128] = ACTIONS(2307), + [anon_sym_i128] = ACTIONS(2307), + [anon_sym_isize] = ACTIONS(2307), + [anon_sym_usize] = ACTIONS(2307), + [anon_sym_f32] = ACTIONS(2307), + [anon_sym_f64] = ACTIONS(2307), + [anon_sym_bool] = ACTIONS(2307), + [anon_sym_str] = ACTIONS(2307), + [anon_sym_char] = ACTIONS(2307), + [anon_sym_DASH] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(2305), + [anon_sym_AMP] = ACTIONS(2305), + [anon_sym_PIPE] = ACTIONS(2305), + [anon_sym_LT] = ACTIONS(2305), + [anon_sym_DOT_DOT] = ACTIONS(2305), + [anon_sym_COLON_COLON] = ACTIONS(2305), + [anon_sym_POUND] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2307), + [anon_sym_async] = ACTIONS(2307), + [anon_sym_break] = ACTIONS(2307), + [anon_sym_const] = ACTIONS(2307), + [anon_sym_continue] = ACTIONS(2307), + [anon_sym_default] = ACTIONS(2307), + [anon_sym_enum] = ACTIONS(2307), + [anon_sym_fn] = ACTIONS(2307), + [anon_sym_for] = ACTIONS(2307), + [anon_sym_gen] = ACTIONS(2307), + [anon_sym_if] = ACTIONS(2307), + [anon_sym_impl] = ACTIONS(2307), + [anon_sym_let] = ACTIONS(2307), + [anon_sym_loop] = ACTIONS(2307), + [anon_sym_match] = ACTIONS(2307), + [anon_sym_mod] = ACTIONS(2307), + [anon_sym_pub] = ACTIONS(2307), + [anon_sym_return] = ACTIONS(2307), + [anon_sym_static] = ACTIONS(2307), + [anon_sym_struct] = ACTIONS(2307), + [anon_sym_trait] = ACTIONS(2307), + [anon_sym_type] = ACTIONS(2307), + [anon_sym_union] = ACTIONS(2307), + [anon_sym_unsafe] = ACTIONS(2307), + [anon_sym_use] = ACTIONS(2307), + [anon_sym_while] = ACTIONS(2307), + [anon_sym_extern] = ACTIONS(2307), + [anon_sym_yield] = ACTIONS(2307), + [anon_sym_move] = ACTIONS(2307), + [anon_sym_try] = ACTIONS(2307), + [sym_integer_literal] = ACTIONS(2305), + [aux_sym_string_literal_token1] = ACTIONS(2305), + [sym_char_literal] = ACTIONS(2305), + [anon_sym_true] = ACTIONS(2307), + [anon_sym_false] = ACTIONS(2307), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2307), + [sym_super] = ACTIONS(2307), + [sym_crate] = ACTIONS(2307), + [sym_metavariable] = ACTIONS(2305), + [sym__raw_string_literal_start] = ACTIONS(2305), + [sym_float_literal] = ACTIONS(2305), }, [STATE(638)] = { [sym_line_comment] = STATE(638), [sym_block_comment] = STATE(638), - [ts_builtin_sym_end] = ACTIONS(2478), - [sym_identifier] = ACTIONS(2480), - [anon_sym_SEMI] = ACTIONS(2478), - [anon_sym_macro_rules_BANG] = ACTIONS(2478), - [anon_sym_LPAREN] = ACTIONS(2478), - [anon_sym_LBRACK] = ACTIONS(2478), - [anon_sym_LBRACE] = ACTIONS(2478), - [anon_sym_RBRACE] = ACTIONS(2478), - [anon_sym_STAR] = ACTIONS(2478), - [anon_sym_u8] = ACTIONS(2480), - [anon_sym_i8] = ACTIONS(2480), - [anon_sym_u16] = ACTIONS(2480), - [anon_sym_i16] = ACTIONS(2480), - [anon_sym_u32] = ACTIONS(2480), - [anon_sym_i32] = ACTIONS(2480), - [anon_sym_u64] = ACTIONS(2480), - [anon_sym_i64] = ACTIONS(2480), - [anon_sym_u128] = ACTIONS(2480), - [anon_sym_i128] = ACTIONS(2480), - [anon_sym_isize] = ACTIONS(2480), - [anon_sym_usize] = ACTIONS(2480), - [anon_sym_f32] = ACTIONS(2480), - [anon_sym_f64] = ACTIONS(2480), - [anon_sym_bool] = ACTIONS(2480), - [anon_sym_str] = ACTIONS(2480), - [anon_sym_char] = ACTIONS(2480), - [anon_sym_DASH] = ACTIONS(2478), - [anon_sym_BANG] = ACTIONS(2478), - [anon_sym_AMP] = ACTIONS(2478), - [anon_sym_PIPE] = ACTIONS(2478), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_DOT_DOT] = ACTIONS(2478), - [anon_sym_COLON_COLON] = ACTIONS(2478), - [anon_sym_POUND] = ACTIONS(2478), - [anon_sym_SQUOTE] = ACTIONS(2480), - [anon_sym_async] = ACTIONS(2480), - [anon_sym_break] = ACTIONS(2480), - [anon_sym_const] = ACTIONS(2480), - [anon_sym_continue] = ACTIONS(2480), - [anon_sym_default] = ACTIONS(2480), - [anon_sym_enum] = ACTIONS(2480), - [anon_sym_fn] = ACTIONS(2480), - [anon_sym_for] = ACTIONS(2480), - [anon_sym_gen] = ACTIONS(2480), - [anon_sym_if] = ACTIONS(2480), - [anon_sym_impl] = ACTIONS(2480), - [anon_sym_let] = ACTIONS(2480), - [anon_sym_loop] = ACTIONS(2480), - [anon_sym_match] = ACTIONS(2480), - [anon_sym_mod] = ACTIONS(2480), - [anon_sym_pub] = ACTIONS(2480), - [anon_sym_return] = ACTIONS(2480), - [anon_sym_static] = ACTIONS(2480), - [anon_sym_struct] = ACTIONS(2480), - [anon_sym_trait] = ACTIONS(2480), - [anon_sym_type] = ACTIONS(2480), - [anon_sym_union] = ACTIONS(2480), - [anon_sym_unsafe] = ACTIONS(2480), - [anon_sym_use] = ACTIONS(2480), - [anon_sym_while] = ACTIONS(2480), - [anon_sym_extern] = ACTIONS(2480), - [anon_sym_yield] = ACTIONS(2480), - [anon_sym_move] = ACTIONS(2480), - [anon_sym_try] = ACTIONS(2480), - [sym_integer_literal] = ACTIONS(2478), - [aux_sym_string_literal_token1] = ACTIONS(2478), - [sym_char_literal] = ACTIONS(2478), - [anon_sym_true] = ACTIONS(2480), - [anon_sym_false] = ACTIONS(2480), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2480), - [sym_super] = ACTIONS(2480), - [sym_crate] = ACTIONS(2480), - [sym_metavariable] = ACTIONS(2478), - [sym__raw_string_literal_start] = ACTIONS(2478), - [sym_float_literal] = ACTIONS(2478), + [ts_builtin_sym_end] = ACTIONS(2309), + [sym_identifier] = ACTIONS(2311), + [anon_sym_SEMI] = ACTIONS(2309), + [anon_sym_macro_rules_BANG] = ACTIONS(2309), + [anon_sym_LPAREN] = ACTIONS(2309), + [anon_sym_LBRACK] = ACTIONS(2309), + [anon_sym_LBRACE] = ACTIONS(2309), + [anon_sym_RBRACE] = ACTIONS(2309), + [anon_sym_STAR] = ACTIONS(2309), + [anon_sym_u8] = ACTIONS(2311), + [anon_sym_i8] = ACTIONS(2311), + [anon_sym_u16] = ACTIONS(2311), + [anon_sym_i16] = ACTIONS(2311), + [anon_sym_u32] = ACTIONS(2311), + [anon_sym_i32] = ACTIONS(2311), + [anon_sym_u64] = ACTIONS(2311), + [anon_sym_i64] = ACTIONS(2311), + [anon_sym_u128] = ACTIONS(2311), + [anon_sym_i128] = ACTIONS(2311), + [anon_sym_isize] = ACTIONS(2311), + [anon_sym_usize] = ACTIONS(2311), + [anon_sym_f32] = ACTIONS(2311), + [anon_sym_f64] = ACTIONS(2311), + [anon_sym_bool] = ACTIONS(2311), + [anon_sym_str] = ACTIONS(2311), + [anon_sym_char] = ACTIONS(2311), + [anon_sym_DASH] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_PIPE] = ACTIONS(2309), + [anon_sym_LT] = ACTIONS(2309), + [anon_sym_DOT_DOT] = ACTIONS(2309), + [anon_sym_COLON_COLON] = ACTIONS(2309), + [anon_sym_POUND] = ACTIONS(2309), + [anon_sym_SQUOTE] = ACTIONS(2311), + [anon_sym_async] = ACTIONS(2311), + [anon_sym_break] = ACTIONS(2311), + [anon_sym_const] = ACTIONS(2311), + [anon_sym_continue] = ACTIONS(2311), + [anon_sym_default] = ACTIONS(2311), + [anon_sym_enum] = ACTIONS(2311), + [anon_sym_fn] = ACTIONS(2311), + [anon_sym_for] = ACTIONS(2311), + [anon_sym_gen] = ACTIONS(2311), + [anon_sym_if] = ACTIONS(2311), + [anon_sym_impl] = ACTIONS(2311), + [anon_sym_let] = ACTIONS(2311), + [anon_sym_loop] = ACTIONS(2311), + [anon_sym_match] = ACTIONS(2311), + [anon_sym_mod] = ACTIONS(2311), + [anon_sym_pub] = ACTIONS(2311), + [anon_sym_return] = ACTIONS(2311), + [anon_sym_static] = ACTIONS(2311), + [anon_sym_struct] = ACTIONS(2311), + [anon_sym_trait] = ACTIONS(2311), + [anon_sym_type] = ACTIONS(2311), + [anon_sym_union] = ACTIONS(2311), + [anon_sym_unsafe] = ACTIONS(2311), + [anon_sym_use] = ACTIONS(2311), + [anon_sym_while] = ACTIONS(2311), + [anon_sym_extern] = ACTIONS(2311), + [anon_sym_yield] = ACTIONS(2311), + [anon_sym_move] = ACTIONS(2311), + [anon_sym_try] = ACTIONS(2311), + [sym_integer_literal] = ACTIONS(2309), + [aux_sym_string_literal_token1] = ACTIONS(2309), + [sym_char_literal] = ACTIONS(2309), + [anon_sym_true] = ACTIONS(2311), + [anon_sym_false] = ACTIONS(2311), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2311), + [sym_super] = ACTIONS(2311), + [sym_crate] = ACTIONS(2311), + [sym_metavariable] = ACTIONS(2309), + [sym__raw_string_literal_start] = ACTIONS(2309), + [sym_float_literal] = ACTIONS(2309), }, [STATE(639)] = { [sym_line_comment] = STATE(639), [sym_block_comment] = STATE(639), - [ts_builtin_sym_end] = ACTIONS(2482), - [sym_identifier] = ACTIONS(2484), - [anon_sym_SEMI] = ACTIONS(2482), - [anon_sym_macro_rules_BANG] = ACTIONS(2482), - [anon_sym_LPAREN] = ACTIONS(2482), - [anon_sym_LBRACK] = ACTIONS(2482), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_RBRACE] = ACTIONS(2482), - [anon_sym_STAR] = ACTIONS(2482), - [anon_sym_u8] = ACTIONS(2484), - [anon_sym_i8] = ACTIONS(2484), - [anon_sym_u16] = ACTIONS(2484), - [anon_sym_i16] = ACTIONS(2484), - [anon_sym_u32] = ACTIONS(2484), - [anon_sym_i32] = ACTIONS(2484), - [anon_sym_u64] = ACTIONS(2484), - [anon_sym_i64] = ACTIONS(2484), - [anon_sym_u128] = ACTIONS(2484), - [anon_sym_i128] = ACTIONS(2484), - [anon_sym_isize] = ACTIONS(2484), - [anon_sym_usize] = ACTIONS(2484), - [anon_sym_f32] = ACTIONS(2484), - [anon_sym_f64] = ACTIONS(2484), - [anon_sym_bool] = ACTIONS(2484), - [anon_sym_str] = ACTIONS(2484), - [anon_sym_char] = ACTIONS(2484), - [anon_sym_DASH] = ACTIONS(2482), - [anon_sym_BANG] = ACTIONS(2482), - [anon_sym_AMP] = ACTIONS(2482), - [anon_sym_PIPE] = ACTIONS(2482), - [anon_sym_LT] = ACTIONS(2482), - [anon_sym_DOT_DOT] = ACTIONS(2482), - [anon_sym_COLON_COLON] = ACTIONS(2482), - [anon_sym_POUND] = ACTIONS(2482), - [anon_sym_SQUOTE] = ACTIONS(2484), - [anon_sym_async] = ACTIONS(2484), - [anon_sym_break] = ACTIONS(2484), - [anon_sym_const] = ACTIONS(2484), - [anon_sym_continue] = ACTIONS(2484), - [anon_sym_default] = ACTIONS(2484), - [anon_sym_enum] = ACTIONS(2484), - [anon_sym_fn] = ACTIONS(2484), - [anon_sym_for] = ACTIONS(2484), - [anon_sym_gen] = ACTIONS(2484), - [anon_sym_if] = ACTIONS(2484), - [anon_sym_impl] = ACTIONS(2484), - [anon_sym_let] = ACTIONS(2484), - [anon_sym_loop] = ACTIONS(2484), - [anon_sym_match] = ACTIONS(2484), - [anon_sym_mod] = ACTIONS(2484), - [anon_sym_pub] = ACTIONS(2484), - [anon_sym_return] = ACTIONS(2484), - [anon_sym_static] = ACTIONS(2484), - [anon_sym_struct] = ACTIONS(2484), - [anon_sym_trait] = ACTIONS(2484), - [anon_sym_type] = ACTIONS(2484), - [anon_sym_union] = ACTIONS(2484), - [anon_sym_unsafe] = ACTIONS(2484), - [anon_sym_use] = ACTIONS(2484), - [anon_sym_while] = ACTIONS(2484), - [anon_sym_extern] = ACTIONS(2484), - [anon_sym_yield] = ACTIONS(2484), - [anon_sym_move] = ACTIONS(2484), - [anon_sym_try] = ACTIONS(2484), - [sym_integer_literal] = ACTIONS(2482), - [aux_sym_string_literal_token1] = ACTIONS(2482), - [sym_char_literal] = ACTIONS(2482), - [anon_sym_true] = ACTIONS(2484), - [anon_sym_false] = ACTIONS(2484), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2484), - [sym_super] = ACTIONS(2484), - [sym_crate] = ACTIONS(2484), - [sym_metavariable] = ACTIONS(2482), - [sym__raw_string_literal_start] = ACTIONS(2482), - [sym_float_literal] = ACTIONS(2482), + [ts_builtin_sym_end] = ACTIONS(2313), + [sym_identifier] = ACTIONS(2315), + [anon_sym_SEMI] = ACTIONS(2313), + [anon_sym_macro_rules_BANG] = ACTIONS(2313), + [anon_sym_LPAREN] = ACTIONS(2313), + [anon_sym_LBRACK] = ACTIONS(2313), + [anon_sym_LBRACE] = ACTIONS(2313), + [anon_sym_RBRACE] = ACTIONS(2313), + [anon_sym_STAR] = ACTIONS(2313), + [anon_sym_u8] = ACTIONS(2315), + [anon_sym_i8] = ACTIONS(2315), + [anon_sym_u16] = ACTIONS(2315), + [anon_sym_i16] = ACTIONS(2315), + [anon_sym_u32] = ACTIONS(2315), + [anon_sym_i32] = ACTIONS(2315), + [anon_sym_u64] = ACTIONS(2315), + [anon_sym_i64] = ACTIONS(2315), + [anon_sym_u128] = ACTIONS(2315), + [anon_sym_i128] = ACTIONS(2315), + [anon_sym_isize] = ACTIONS(2315), + [anon_sym_usize] = ACTIONS(2315), + [anon_sym_f32] = ACTIONS(2315), + [anon_sym_f64] = ACTIONS(2315), + [anon_sym_bool] = ACTIONS(2315), + [anon_sym_str] = ACTIONS(2315), + [anon_sym_char] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_BANG] = ACTIONS(2313), + [anon_sym_AMP] = ACTIONS(2313), + [anon_sym_PIPE] = ACTIONS(2313), + [anon_sym_LT] = ACTIONS(2313), + [anon_sym_DOT_DOT] = ACTIONS(2313), + [anon_sym_COLON_COLON] = ACTIONS(2313), + [anon_sym_POUND] = ACTIONS(2313), + [anon_sym_SQUOTE] = ACTIONS(2315), + [anon_sym_async] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(2315), + [anon_sym_const] = ACTIONS(2315), + [anon_sym_continue] = ACTIONS(2315), + [anon_sym_default] = ACTIONS(2315), + [anon_sym_enum] = ACTIONS(2315), + [anon_sym_fn] = ACTIONS(2315), + [anon_sym_for] = ACTIONS(2315), + [anon_sym_gen] = ACTIONS(2315), + [anon_sym_if] = ACTIONS(2315), + [anon_sym_impl] = ACTIONS(2315), + [anon_sym_let] = ACTIONS(2315), + [anon_sym_loop] = ACTIONS(2315), + [anon_sym_match] = ACTIONS(2315), + [anon_sym_mod] = ACTIONS(2315), + [anon_sym_pub] = ACTIONS(2315), + [anon_sym_return] = ACTIONS(2315), + [anon_sym_static] = ACTIONS(2315), + [anon_sym_struct] = ACTIONS(2315), + [anon_sym_trait] = ACTIONS(2315), + [anon_sym_type] = ACTIONS(2315), + [anon_sym_union] = ACTIONS(2315), + [anon_sym_unsafe] = ACTIONS(2315), + [anon_sym_use] = ACTIONS(2315), + [anon_sym_while] = ACTIONS(2315), + [anon_sym_extern] = ACTIONS(2315), + [anon_sym_yield] = ACTIONS(2315), + [anon_sym_move] = ACTIONS(2315), + [anon_sym_try] = ACTIONS(2315), + [sym_integer_literal] = ACTIONS(2313), + [aux_sym_string_literal_token1] = ACTIONS(2313), + [sym_char_literal] = ACTIONS(2313), + [anon_sym_true] = ACTIONS(2315), + [anon_sym_false] = ACTIONS(2315), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2315), + [sym_super] = ACTIONS(2315), + [sym_crate] = ACTIONS(2315), + [sym_metavariable] = ACTIONS(2313), + [sym__raw_string_literal_start] = ACTIONS(2313), + [sym_float_literal] = ACTIONS(2313), }, [STATE(640)] = { [sym_line_comment] = STATE(640), [sym_block_comment] = STATE(640), - [ts_builtin_sym_end] = ACTIONS(2486), - [sym_identifier] = ACTIONS(2488), - [anon_sym_SEMI] = ACTIONS(2486), - [anon_sym_macro_rules_BANG] = ACTIONS(2486), - [anon_sym_LPAREN] = ACTIONS(2486), - [anon_sym_LBRACK] = ACTIONS(2486), - [anon_sym_LBRACE] = ACTIONS(2486), - [anon_sym_RBRACE] = ACTIONS(2486), - [anon_sym_STAR] = ACTIONS(2486), - [anon_sym_u8] = ACTIONS(2488), - [anon_sym_i8] = ACTIONS(2488), - [anon_sym_u16] = ACTIONS(2488), - [anon_sym_i16] = ACTIONS(2488), - [anon_sym_u32] = ACTIONS(2488), - [anon_sym_i32] = ACTIONS(2488), - [anon_sym_u64] = ACTIONS(2488), - [anon_sym_i64] = ACTIONS(2488), - [anon_sym_u128] = ACTIONS(2488), - [anon_sym_i128] = ACTIONS(2488), - [anon_sym_isize] = ACTIONS(2488), - [anon_sym_usize] = ACTIONS(2488), - [anon_sym_f32] = ACTIONS(2488), - [anon_sym_f64] = ACTIONS(2488), - [anon_sym_bool] = ACTIONS(2488), - [anon_sym_str] = ACTIONS(2488), - [anon_sym_char] = ACTIONS(2488), - [anon_sym_DASH] = ACTIONS(2486), - [anon_sym_BANG] = ACTIONS(2486), - [anon_sym_AMP] = ACTIONS(2486), - [anon_sym_PIPE] = ACTIONS(2486), - [anon_sym_LT] = ACTIONS(2486), - [anon_sym_DOT_DOT] = ACTIONS(2486), - [anon_sym_COLON_COLON] = ACTIONS(2486), - [anon_sym_POUND] = ACTIONS(2486), - [anon_sym_SQUOTE] = ACTIONS(2488), - [anon_sym_async] = ACTIONS(2488), - [anon_sym_break] = ACTIONS(2488), - [anon_sym_const] = ACTIONS(2488), - [anon_sym_continue] = ACTIONS(2488), - [anon_sym_default] = ACTIONS(2488), - [anon_sym_enum] = ACTIONS(2488), - [anon_sym_fn] = ACTIONS(2488), - [anon_sym_for] = ACTIONS(2488), - [anon_sym_gen] = ACTIONS(2488), - [anon_sym_if] = ACTIONS(2488), - [anon_sym_impl] = ACTIONS(2488), - [anon_sym_let] = ACTIONS(2488), - [anon_sym_loop] = ACTIONS(2488), - [anon_sym_match] = ACTIONS(2488), - [anon_sym_mod] = ACTIONS(2488), - [anon_sym_pub] = ACTIONS(2488), - [anon_sym_return] = ACTIONS(2488), - [anon_sym_static] = ACTIONS(2488), - [anon_sym_struct] = ACTIONS(2488), - [anon_sym_trait] = ACTIONS(2488), - [anon_sym_type] = ACTIONS(2488), - [anon_sym_union] = ACTIONS(2488), - [anon_sym_unsafe] = ACTIONS(2488), - [anon_sym_use] = ACTIONS(2488), - [anon_sym_while] = ACTIONS(2488), - [anon_sym_extern] = ACTIONS(2488), - [anon_sym_yield] = ACTIONS(2488), - [anon_sym_move] = ACTIONS(2488), - [anon_sym_try] = ACTIONS(2488), - [sym_integer_literal] = ACTIONS(2486), - [aux_sym_string_literal_token1] = ACTIONS(2486), - [sym_char_literal] = ACTIONS(2486), - [anon_sym_true] = ACTIONS(2488), - [anon_sym_false] = ACTIONS(2488), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2488), - [sym_super] = ACTIONS(2488), - [sym_crate] = ACTIONS(2488), - [sym_metavariable] = ACTIONS(2486), - [sym__raw_string_literal_start] = ACTIONS(2486), - [sym_float_literal] = ACTIONS(2486), + [ts_builtin_sym_end] = ACTIONS(2317), + [sym_identifier] = ACTIONS(2319), + [anon_sym_SEMI] = ACTIONS(2317), + [anon_sym_macro_rules_BANG] = ACTIONS(2317), + [anon_sym_LPAREN] = ACTIONS(2317), + [anon_sym_LBRACK] = ACTIONS(2317), + [anon_sym_LBRACE] = ACTIONS(2317), + [anon_sym_RBRACE] = ACTIONS(2317), + [anon_sym_STAR] = ACTIONS(2317), + [anon_sym_u8] = ACTIONS(2319), + [anon_sym_i8] = ACTIONS(2319), + [anon_sym_u16] = ACTIONS(2319), + [anon_sym_i16] = ACTIONS(2319), + [anon_sym_u32] = ACTIONS(2319), + [anon_sym_i32] = ACTIONS(2319), + [anon_sym_u64] = ACTIONS(2319), + [anon_sym_i64] = ACTIONS(2319), + [anon_sym_u128] = ACTIONS(2319), + [anon_sym_i128] = ACTIONS(2319), + [anon_sym_isize] = ACTIONS(2319), + [anon_sym_usize] = ACTIONS(2319), + [anon_sym_f32] = ACTIONS(2319), + [anon_sym_f64] = ACTIONS(2319), + [anon_sym_bool] = ACTIONS(2319), + [anon_sym_str] = ACTIONS(2319), + [anon_sym_char] = ACTIONS(2319), + [anon_sym_DASH] = ACTIONS(2317), + [anon_sym_BANG] = ACTIONS(2317), + [anon_sym_AMP] = ACTIONS(2317), + [anon_sym_PIPE] = ACTIONS(2317), + [anon_sym_LT] = ACTIONS(2317), + [anon_sym_DOT_DOT] = ACTIONS(2317), + [anon_sym_COLON_COLON] = ACTIONS(2317), + [anon_sym_POUND] = ACTIONS(2317), + [anon_sym_SQUOTE] = ACTIONS(2319), + [anon_sym_async] = ACTIONS(2319), + [anon_sym_break] = ACTIONS(2319), + [anon_sym_const] = ACTIONS(2319), + [anon_sym_continue] = ACTIONS(2319), + [anon_sym_default] = ACTIONS(2319), + [anon_sym_enum] = ACTIONS(2319), + [anon_sym_fn] = ACTIONS(2319), + [anon_sym_for] = ACTIONS(2319), + [anon_sym_gen] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(2319), + [anon_sym_impl] = ACTIONS(2319), + [anon_sym_let] = ACTIONS(2319), + [anon_sym_loop] = ACTIONS(2319), + [anon_sym_match] = ACTIONS(2319), + [anon_sym_mod] = ACTIONS(2319), + [anon_sym_pub] = ACTIONS(2319), + [anon_sym_return] = ACTIONS(2319), + [anon_sym_static] = ACTIONS(2319), + [anon_sym_struct] = ACTIONS(2319), + [anon_sym_trait] = ACTIONS(2319), + [anon_sym_type] = ACTIONS(2319), + [anon_sym_union] = ACTIONS(2319), + [anon_sym_unsafe] = ACTIONS(2319), + [anon_sym_use] = ACTIONS(2319), + [anon_sym_while] = ACTIONS(2319), + [anon_sym_extern] = ACTIONS(2319), + [anon_sym_yield] = ACTIONS(2319), + [anon_sym_move] = ACTIONS(2319), + [anon_sym_try] = ACTIONS(2319), + [sym_integer_literal] = ACTIONS(2317), + [aux_sym_string_literal_token1] = ACTIONS(2317), + [sym_char_literal] = ACTIONS(2317), + [anon_sym_true] = ACTIONS(2319), + [anon_sym_false] = ACTIONS(2319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2319), + [sym_super] = ACTIONS(2319), + [sym_crate] = ACTIONS(2319), + [sym_metavariable] = ACTIONS(2317), + [sym__raw_string_literal_start] = ACTIONS(2317), + [sym_float_literal] = ACTIONS(2317), }, [STATE(641)] = { [sym_line_comment] = STATE(641), [sym_block_comment] = STATE(641), - [ts_builtin_sym_end] = ACTIONS(2490), - [sym_identifier] = ACTIONS(2492), - [anon_sym_SEMI] = ACTIONS(2490), - [anon_sym_macro_rules_BANG] = ACTIONS(2490), - [anon_sym_LPAREN] = ACTIONS(2490), - [anon_sym_LBRACK] = ACTIONS(2490), - [anon_sym_LBRACE] = ACTIONS(2490), - [anon_sym_RBRACE] = ACTIONS(2490), - [anon_sym_STAR] = ACTIONS(2490), - [anon_sym_u8] = ACTIONS(2492), - [anon_sym_i8] = ACTIONS(2492), - [anon_sym_u16] = ACTIONS(2492), - [anon_sym_i16] = ACTIONS(2492), - [anon_sym_u32] = ACTIONS(2492), - [anon_sym_i32] = ACTIONS(2492), - [anon_sym_u64] = ACTIONS(2492), - [anon_sym_i64] = ACTIONS(2492), - [anon_sym_u128] = ACTIONS(2492), - [anon_sym_i128] = ACTIONS(2492), - [anon_sym_isize] = ACTIONS(2492), - [anon_sym_usize] = ACTIONS(2492), - [anon_sym_f32] = ACTIONS(2492), - [anon_sym_f64] = ACTIONS(2492), - [anon_sym_bool] = ACTIONS(2492), - [anon_sym_str] = ACTIONS(2492), - [anon_sym_char] = ACTIONS(2492), - [anon_sym_DASH] = ACTIONS(2490), - [anon_sym_BANG] = ACTIONS(2490), - [anon_sym_AMP] = ACTIONS(2490), - [anon_sym_PIPE] = ACTIONS(2490), - [anon_sym_LT] = ACTIONS(2490), - [anon_sym_DOT_DOT] = ACTIONS(2490), - [anon_sym_COLON_COLON] = ACTIONS(2490), - [anon_sym_POUND] = ACTIONS(2490), - [anon_sym_SQUOTE] = ACTIONS(2492), - [anon_sym_async] = ACTIONS(2492), - [anon_sym_break] = ACTIONS(2492), - [anon_sym_const] = ACTIONS(2492), - [anon_sym_continue] = ACTIONS(2492), - [anon_sym_default] = ACTIONS(2492), - [anon_sym_enum] = ACTIONS(2492), - [anon_sym_fn] = ACTIONS(2492), - [anon_sym_for] = ACTIONS(2492), - [anon_sym_gen] = ACTIONS(2492), - [anon_sym_if] = ACTIONS(2492), - [anon_sym_impl] = ACTIONS(2492), - [anon_sym_let] = ACTIONS(2492), - [anon_sym_loop] = ACTIONS(2492), - [anon_sym_match] = ACTIONS(2492), - [anon_sym_mod] = ACTIONS(2492), - [anon_sym_pub] = ACTIONS(2492), - [anon_sym_return] = ACTIONS(2492), - [anon_sym_static] = ACTIONS(2492), - [anon_sym_struct] = ACTIONS(2492), - [anon_sym_trait] = ACTIONS(2492), - [anon_sym_type] = ACTIONS(2492), - [anon_sym_union] = ACTIONS(2492), - [anon_sym_unsafe] = ACTIONS(2492), - [anon_sym_use] = ACTIONS(2492), - [anon_sym_while] = ACTIONS(2492), - [anon_sym_extern] = ACTIONS(2492), - [anon_sym_yield] = ACTIONS(2492), - [anon_sym_move] = ACTIONS(2492), - [anon_sym_try] = ACTIONS(2492), - [sym_integer_literal] = ACTIONS(2490), - [aux_sym_string_literal_token1] = ACTIONS(2490), - [sym_char_literal] = ACTIONS(2490), - [anon_sym_true] = ACTIONS(2492), - [anon_sym_false] = ACTIONS(2492), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2492), - [sym_super] = ACTIONS(2492), - [sym_crate] = ACTIONS(2492), - [sym_metavariable] = ACTIONS(2490), - [sym__raw_string_literal_start] = ACTIONS(2490), - [sym_float_literal] = ACTIONS(2490), + [ts_builtin_sym_end] = ACTIONS(2321), + [sym_identifier] = ACTIONS(2323), + [anon_sym_SEMI] = ACTIONS(2321), + [anon_sym_macro_rules_BANG] = ACTIONS(2321), + [anon_sym_LPAREN] = ACTIONS(2321), + [anon_sym_LBRACK] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2321), + [anon_sym_RBRACE] = ACTIONS(2321), + [anon_sym_STAR] = ACTIONS(2321), + [anon_sym_u8] = ACTIONS(2323), + [anon_sym_i8] = ACTIONS(2323), + [anon_sym_u16] = ACTIONS(2323), + [anon_sym_i16] = ACTIONS(2323), + [anon_sym_u32] = ACTIONS(2323), + [anon_sym_i32] = ACTIONS(2323), + [anon_sym_u64] = ACTIONS(2323), + [anon_sym_i64] = ACTIONS(2323), + [anon_sym_u128] = ACTIONS(2323), + [anon_sym_i128] = ACTIONS(2323), + [anon_sym_isize] = ACTIONS(2323), + [anon_sym_usize] = ACTIONS(2323), + [anon_sym_f32] = ACTIONS(2323), + [anon_sym_f64] = ACTIONS(2323), + [anon_sym_bool] = ACTIONS(2323), + [anon_sym_str] = ACTIONS(2323), + [anon_sym_char] = ACTIONS(2323), + [anon_sym_DASH] = ACTIONS(2321), + [anon_sym_BANG] = ACTIONS(2321), + [anon_sym_AMP] = ACTIONS(2321), + [anon_sym_PIPE] = ACTIONS(2321), + [anon_sym_LT] = ACTIONS(2321), + [anon_sym_DOT_DOT] = ACTIONS(2321), + [anon_sym_COLON_COLON] = ACTIONS(2321), + [anon_sym_POUND] = ACTIONS(2321), + [anon_sym_SQUOTE] = ACTIONS(2323), + [anon_sym_async] = ACTIONS(2323), + [anon_sym_break] = ACTIONS(2323), + [anon_sym_const] = ACTIONS(2323), + [anon_sym_continue] = ACTIONS(2323), + [anon_sym_default] = ACTIONS(2323), + [anon_sym_enum] = ACTIONS(2323), + [anon_sym_fn] = ACTIONS(2323), + [anon_sym_for] = ACTIONS(2323), + [anon_sym_gen] = ACTIONS(2323), + [anon_sym_if] = ACTIONS(2323), + [anon_sym_impl] = ACTIONS(2323), + [anon_sym_let] = ACTIONS(2323), + [anon_sym_loop] = ACTIONS(2323), + [anon_sym_match] = ACTIONS(2323), + [anon_sym_mod] = ACTIONS(2323), + [anon_sym_pub] = ACTIONS(2323), + [anon_sym_return] = ACTIONS(2323), + [anon_sym_static] = ACTIONS(2323), + [anon_sym_struct] = ACTIONS(2323), + [anon_sym_trait] = ACTIONS(2323), + [anon_sym_type] = ACTIONS(2323), + [anon_sym_union] = ACTIONS(2323), + [anon_sym_unsafe] = ACTIONS(2323), + [anon_sym_use] = ACTIONS(2323), + [anon_sym_while] = ACTIONS(2323), + [anon_sym_extern] = ACTIONS(2323), + [anon_sym_yield] = ACTIONS(2323), + [anon_sym_move] = ACTIONS(2323), + [anon_sym_try] = ACTIONS(2323), + [sym_integer_literal] = ACTIONS(2321), + [aux_sym_string_literal_token1] = ACTIONS(2321), + [sym_char_literal] = ACTIONS(2321), + [anon_sym_true] = ACTIONS(2323), + [anon_sym_false] = ACTIONS(2323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2323), + [sym_super] = ACTIONS(2323), + [sym_crate] = ACTIONS(2323), + [sym_metavariable] = ACTIONS(2321), + [sym__raw_string_literal_start] = ACTIONS(2321), + [sym_float_literal] = ACTIONS(2321), }, [STATE(642)] = { [sym_line_comment] = STATE(642), [sym_block_comment] = STATE(642), - [ts_builtin_sym_end] = ACTIONS(2494), - [sym_identifier] = ACTIONS(2496), - [anon_sym_SEMI] = ACTIONS(2494), - [anon_sym_macro_rules_BANG] = ACTIONS(2494), - [anon_sym_LPAREN] = ACTIONS(2494), - [anon_sym_LBRACK] = ACTIONS(2494), - [anon_sym_LBRACE] = ACTIONS(2494), - [anon_sym_RBRACE] = ACTIONS(2494), - [anon_sym_STAR] = ACTIONS(2494), - [anon_sym_u8] = ACTIONS(2496), - [anon_sym_i8] = ACTIONS(2496), - [anon_sym_u16] = ACTIONS(2496), - [anon_sym_i16] = ACTIONS(2496), - [anon_sym_u32] = ACTIONS(2496), - [anon_sym_i32] = ACTIONS(2496), - [anon_sym_u64] = ACTIONS(2496), - [anon_sym_i64] = ACTIONS(2496), - [anon_sym_u128] = ACTIONS(2496), - [anon_sym_i128] = ACTIONS(2496), - [anon_sym_isize] = ACTIONS(2496), - [anon_sym_usize] = ACTIONS(2496), - [anon_sym_f32] = ACTIONS(2496), - [anon_sym_f64] = ACTIONS(2496), - [anon_sym_bool] = ACTIONS(2496), - [anon_sym_str] = ACTIONS(2496), - [anon_sym_char] = ACTIONS(2496), - [anon_sym_DASH] = ACTIONS(2494), - [anon_sym_BANG] = ACTIONS(2494), - [anon_sym_AMP] = ACTIONS(2494), - [anon_sym_PIPE] = ACTIONS(2494), - [anon_sym_LT] = ACTIONS(2494), - [anon_sym_DOT_DOT] = ACTIONS(2494), - [anon_sym_COLON_COLON] = ACTIONS(2494), - [anon_sym_POUND] = ACTIONS(2494), - [anon_sym_SQUOTE] = ACTIONS(2496), - [anon_sym_async] = ACTIONS(2496), - [anon_sym_break] = ACTIONS(2496), - [anon_sym_const] = ACTIONS(2496), - [anon_sym_continue] = ACTIONS(2496), - [anon_sym_default] = ACTIONS(2496), - [anon_sym_enum] = ACTIONS(2496), - [anon_sym_fn] = ACTIONS(2496), - [anon_sym_for] = ACTIONS(2496), - [anon_sym_gen] = ACTIONS(2496), - [anon_sym_if] = ACTIONS(2496), - [anon_sym_impl] = ACTIONS(2496), - [anon_sym_let] = ACTIONS(2496), - [anon_sym_loop] = ACTIONS(2496), - [anon_sym_match] = ACTIONS(2496), - [anon_sym_mod] = ACTIONS(2496), - [anon_sym_pub] = ACTIONS(2496), - [anon_sym_return] = ACTIONS(2496), - [anon_sym_static] = ACTIONS(2496), - [anon_sym_struct] = ACTIONS(2496), - [anon_sym_trait] = ACTIONS(2496), - [anon_sym_type] = ACTIONS(2496), - [anon_sym_union] = ACTIONS(2496), - [anon_sym_unsafe] = ACTIONS(2496), - [anon_sym_use] = ACTIONS(2496), - [anon_sym_while] = ACTIONS(2496), - [anon_sym_extern] = ACTIONS(2496), - [anon_sym_yield] = ACTIONS(2496), - [anon_sym_move] = ACTIONS(2496), - [anon_sym_try] = ACTIONS(2496), - [sym_integer_literal] = ACTIONS(2494), - [aux_sym_string_literal_token1] = ACTIONS(2494), - [sym_char_literal] = ACTIONS(2494), - [anon_sym_true] = ACTIONS(2496), - [anon_sym_false] = ACTIONS(2496), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2496), - [sym_super] = ACTIONS(2496), - [sym_crate] = ACTIONS(2496), - [sym_metavariable] = ACTIONS(2494), - [sym__raw_string_literal_start] = ACTIONS(2494), - [sym_float_literal] = ACTIONS(2494), + [ts_builtin_sym_end] = ACTIONS(1327), + [sym_identifier] = ACTIONS(1329), + [anon_sym_SEMI] = ACTIONS(1327), + [anon_sym_macro_rules_BANG] = ACTIONS(1327), + [anon_sym_LPAREN] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1327), + [anon_sym_RBRACE] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1327), + [anon_sym_u8] = ACTIONS(1329), + [anon_sym_i8] = ACTIONS(1329), + [anon_sym_u16] = ACTIONS(1329), + [anon_sym_i16] = ACTIONS(1329), + [anon_sym_u32] = ACTIONS(1329), + [anon_sym_i32] = ACTIONS(1329), + [anon_sym_u64] = ACTIONS(1329), + [anon_sym_i64] = ACTIONS(1329), + [anon_sym_u128] = ACTIONS(1329), + [anon_sym_i128] = ACTIONS(1329), + [anon_sym_isize] = ACTIONS(1329), + [anon_sym_usize] = ACTIONS(1329), + [anon_sym_f32] = ACTIONS(1329), + [anon_sym_f64] = ACTIONS(1329), + [anon_sym_bool] = ACTIONS(1329), + [anon_sym_str] = ACTIONS(1329), + [anon_sym_char] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1327), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_PIPE] = ACTIONS(1327), + [anon_sym_LT] = ACTIONS(1327), + [anon_sym_DOT_DOT] = ACTIONS(1327), + [anon_sym_COLON_COLON] = ACTIONS(1327), + [anon_sym_POUND] = ACTIONS(1327), + [anon_sym_SQUOTE] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_break] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_continue] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1329), + [anon_sym_enum] = ACTIONS(1329), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1329), + [anon_sym_gen] = ACTIONS(1329), + [anon_sym_if] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1329), + [anon_sym_let] = ACTIONS(1329), + [anon_sym_loop] = ACTIONS(1329), + [anon_sym_match] = ACTIONS(1329), + [anon_sym_mod] = ACTIONS(1329), + [anon_sym_pub] = ACTIONS(1329), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_static] = ACTIONS(1329), + [anon_sym_struct] = ACTIONS(1329), + [anon_sym_trait] = ACTIONS(1329), + [anon_sym_type] = ACTIONS(1329), + [anon_sym_union] = ACTIONS(1329), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_use] = ACTIONS(1329), + [anon_sym_while] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1329), + [anon_sym_yield] = ACTIONS(1329), + [anon_sym_move] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(1329), + [sym_integer_literal] = ACTIONS(1327), + [aux_sym_string_literal_token1] = ACTIONS(1327), + [sym_char_literal] = ACTIONS(1327), + [anon_sym_true] = ACTIONS(1329), + [anon_sym_false] = ACTIONS(1329), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1329), + [sym_super] = ACTIONS(1329), + [sym_crate] = ACTIONS(1329), + [sym_metavariable] = ACTIONS(1327), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1327), }, [STATE(643)] = { [sym_line_comment] = STATE(643), [sym_block_comment] = STATE(643), - [ts_builtin_sym_end] = ACTIONS(2498), - [sym_identifier] = ACTIONS(2500), - [anon_sym_SEMI] = ACTIONS(2498), - [anon_sym_macro_rules_BANG] = ACTIONS(2498), - [anon_sym_LPAREN] = ACTIONS(2498), - [anon_sym_LBRACK] = ACTIONS(2498), - [anon_sym_LBRACE] = ACTIONS(2498), - [anon_sym_RBRACE] = ACTIONS(2498), - [anon_sym_STAR] = ACTIONS(2498), - [anon_sym_u8] = ACTIONS(2500), - [anon_sym_i8] = ACTIONS(2500), - [anon_sym_u16] = ACTIONS(2500), - [anon_sym_i16] = ACTIONS(2500), - [anon_sym_u32] = ACTIONS(2500), - [anon_sym_i32] = ACTIONS(2500), - [anon_sym_u64] = ACTIONS(2500), - [anon_sym_i64] = ACTIONS(2500), - [anon_sym_u128] = ACTIONS(2500), - [anon_sym_i128] = ACTIONS(2500), - [anon_sym_isize] = ACTIONS(2500), - [anon_sym_usize] = ACTIONS(2500), - [anon_sym_f32] = ACTIONS(2500), - [anon_sym_f64] = ACTIONS(2500), - [anon_sym_bool] = ACTIONS(2500), - [anon_sym_str] = ACTIONS(2500), - [anon_sym_char] = ACTIONS(2500), - [anon_sym_DASH] = ACTIONS(2498), - [anon_sym_BANG] = ACTIONS(2498), - [anon_sym_AMP] = ACTIONS(2498), - [anon_sym_PIPE] = ACTIONS(2498), - [anon_sym_LT] = ACTIONS(2498), - [anon_sym_DOT_DOT] = ACTIONS(2498), - [anon_sym_COLON_COLON] = ACTIONS(2498), - [anon_sym_POUND] = ACTIONS(2498), - [anon_sym_SQUOTE] = ACTIONS(2500), - [anon_sym_async] = ACTIONS(2500), - [anon_sym_break] = ACTIONS(2500), - [anon_sym_const] = ACTIONS(2500), - [anon_sym_continue] = ACTIONS(2500), - [anon_sym_default] = ACTIONS(2500), - [anon_sym_enum] = ACTIONS(2500), - [anon_sym_fn] = ACTIONS(2500), - [anon_sym_for] = ACTIONS(2500), - [anon_sym_gen] = ACTIONS(2500), - [anon_sym_if] = ACTIONS(2500), - [anon_sym_impl] = ACTIONS(2500), - [anon_sym_let] = ACTIONS(2500), - [anon_sym_loop] = ACTIONS(2500), - [anon_sym_match] = ACTIONS(2500), - [anon_sym_mod] = ACTIONS(2500), - [anon_sym_pub] = ACTIONS(2500), - [anon_sym_return] = ACTIONS(2500), - [anon_sym_static] = ACTIONS(2500), - [anon_sym_struct] = ACTIONS(2500), - [anon_sym_trait] = ACTIONS(2500), - [anon_sym_type] = ACTIONS(2500), - [anon_sym_union] = ACTIONS(2500), - [anon_sym_unsafe] = ACTIONS(2500), - [anon_sym_use] = ACTIONS(2500), - [anon_sym_while] = ACTIONS(2500), - [anon_sym_extern] = ACTIONS(2500), - [anon_sym_yield] = ACTIONS(2500), - [anon_sym_move] = ACTIONS(2500), - [anon_sym_try] = ACTIONS(2500), - [sym_integer_literal] = ACTIONS(2498), - [aux_sym_string_literal_token1] = ACTIONS(2498), - [sym_char_literal] = ACTIONS(2498), - [anon_sym_true] = ACTIONS(2500), - [anon_sym_false] = ACTIONS(2500), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2500), - [sym_super] = ACTIONS(2500), - [sym_crate] = ACTIONS(2500), - [sym_metavariable] = ACTIONS(2498), - [sym__raw_string_literal_start] = ACTIONS(2498), - [sym_float_literal] = ACTIONS(2498), + [ts_builtin_sym_end] = ACTIONS(1339), + [sym_identifier] = ACTIONS(1341), + [anon_sym_SEMI] = ACTIONS(1339), + [anon_sym_macro_rules_BANG] = ACTIONS(1339), + [anon_sym_LPAREN] = ACTIONS(1339), + [anon_sym_LBRACK] = ACTIONS(1339), + [anon_sym_LBRACE] = ACTIONS(1339), + [anon_sym_RBRACE] = ACTIONS(1339), + [anon_sym_STAR] = ACTIONS(1339), + [anon_sym_u8] = ACTIONS(1341), + [anon_sym_i8] = ACTIONS(1341), + [anon_sym_u16] = ACTIONS(1341), + [anon_sym_i16] = ACTIONS(1341), + [anon_sym_u32] = ACTIONS(1341), + [anon_sym_i32] = ACTIONS(1341), + [anon_sym_u64] = ACTIONS(1341), + [anon_sym_i64] = ACTIONS(1341), + [anon_sym_u128] = ACTIONS(1341), + [anon_sym_i128] = ACTIONS(1341), + [anon_sym_isize] = ACTIONS(1341), + [anon_sym_usize] = ACTIONS(1341), + [anon_sym_f32] = ACTIONS(1341), + [anon_sym_f64] = ACTIONS(1341), + [anon_sym_bool] = ACTIONS(1341), + [anon_sym_str] = ACTIONS(1341), + [anon_sym_char] = ACTIONS(1341), + [anon_sym_DASH] = ACTIONS(1339), + [anon_sym_BANG] = ACTIONS(1339), + [anon_sym_AMP] = ACTIONS(1339), + [anon_sym_PIPE] = ACTIONS(1339), + [anon_sym_LT] = ACTIONS(1339), + [anon_sym_DOT_DOT] = ACTIONS(1339), + [anon_sym_COLON_COLON] = ACTIONS(1339), + [anon_sym_POUND] = ACTIONS(1339), + [anon_sym_SQUOTE] = ACTIONS(1341), + [anon_sym_async] = ACTIONS(1341), + [anon_sym_break] = ACTIONS(1341), + [anon_sym_const] = ACTIONS(1341), + [anon_sym_continue] = ACTIONS(1341), + [anon_sym_default] = ACTIONS(1341), + [anon_sym_enum] = ACTIONS(1341), + [anon_sym_fn] = ACTIONS(1341), + [anon_sym_for] = ACTIONS(1341), + [anon_sym_gen] = ACTIONS(1341), + [anon_sym_if] = ACTIONS(1341), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_let] = ACTIONS(1341), + [anon_sym_loop] = ACTIONS(1341), + [anon_sym_match] = ACTIONS(1341), + [anon_sym_mod] = ACTIONS(1341), + [anon_sym_pub] = ACTIONS(1341), + [anon_sym_return] = ACTIONS(1341), + [anon_sym_static] = ACTIONS(1341), + [anon_sym_struct] = ACTIONS(1341), + [anon_sym_trait] = ACTIONS(1341), + [anon_sym_type] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(1341), + [anon_sym_use] = ACTIONS(1341), + [anon_sym_while] = ACTIONS(1341), + [anon_sym_extern] = ACTIONS(1341), + [anon_sym_yield] = ACTIONS(1341), + [anon_sym_move] = ACTIONS(1341), + [anon_sym_try] = ACTIONS(1341), + [sym_integer_literal] = ACTIONS(1339), + [aux_sym_string_literal_token1] = ACTIONS(1339), + [sym_char_literal] = ACTIONS(1339), + [anon_sym_true] = ACTIONS(1341), + [anon_sym_false] = ACTIONS(1341), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1341), + [sym_super] = ACTIONS(1341), + [sym_crate] = ACTIONS(1341), + [sym_metavariable] = ACTIONS(1339), + [sym__raw_string_literal_start] = ACTIONS(1339), + [sym_float_literal] = ACTIONS(1339), }, [STATE(644)] = { - [sym_attribute_item] = STATE(1145), - [sym_inner_attribute_item] = STATE(1145), - [sym_bracketed_type] = STATE(3695), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3416), - [sym_macro_invocation] = STATE(2883), - [sym_scoped_identifier] = STATE(2241), - [sym_scoped_type_identifier] = STATE(3110), - [sym_match_pattern] = STATE(3708), - [sym_const_block] = STATE(2883), - [sym__pattern] = STATE(2909), - [sym_generic_pattern] = STATE(2883), - [sym_tuple_pattern] = STATE(2883), - [sym_slice_pattern] = STATE(2883), - [sym_tuple_struct_pattern] = STATE(2883), - [sym_struct_pattern] = STATE(2883), - [sym_remaining_field_pattern] = STATE(2883), - [sym_mut_pattern] = STATE(2883), - [sym_range_pattern] = STATE(2883), - [sym_ref_pattern] = STATE(2883), - [sym_captured_pattern] = STATE(2883), - [sym_reference_pattern] = STATE(2883), - [sym_or_pattern] = STATE(2883), - [sym__literal_pattern] = STATE(2449), - [sym_negative_literal] = STATE(2408), - [sym_string_literal] = STATE(2408), - [sym_raw_string_literal] = STATE(2408), - [sym_boolean_literal] = STATE(2408), [sym_line_comment] = STATE(644), [sym_block_comment] = STATE(644), - [aux_sym_match_arm_repeat1] = STATE(1077), - [sym_identifier] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_u8] = ACTIONS(1679), - [anon_sym_i8] = ACTIONS(1679), - [anon_sym_u16] = ACTIONS(1679), - [anon_sym_i16] = ACTIONS(1679), - [anon_sym_u32] = ACTIONS(1679), - [anon_sym_i32] = ACTIONS(1679), - [anon_sym_u64] = ACTIONS(1679), - [anon_sym_i64] = ACTIONS(1679), - [anon_sym_u128] = ACTIONS(1679), - [anon_sym_i128] = ACTIONS(1679), - [anon_sym_isize] = ACTIONS(1679), - [anon_sym_usize] = ACTIONS(1679), - [anon_sym_f32] = ACTIONS(1679), - [anon_sym_f64] = ACTIONS(1679), - [anon_sym_bool] = ACTIONS(1679), - [anon_sym_str] = ACTIONS(1679), - [anon_sym_char] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), - [anon_sym_COLON_COLON] = ACTIONS(1693), - [anon_sym_POUND] = ACTIONS(1695), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_gen] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [sym_mutable_specifier] = ACTIONS(1703), - [sym_integer_literal] = ACTIONS(1705), - [aux_sym_string_literal_token1] = ACTIONS(1707), - [sym_char_literal] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1709), - [anon_sym_false] = ACTIONS(1709), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1711), - [sym_super] = ACTIONS(1711), - [sym_crate] = ACTIONS(1711), - [sym_metavariable] = ACTIONS(1713), - [sym__raw_string_literal_start] = ACTIONS(1715), - [sym_float_literal] = ACTIONS(1705), + [ts_builtin_sym_end] = ACTIONS(2325), + [sym_identifier] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2325), + [anon_sym_macro_rules_BANG] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(2325), + [anon_sym_LBRACK] = ACTIONS(2325), + [anon_sym_LBRACE] = ACTIONS(2325), + [anon_sym_RBRACE] = ACTIONS(2325), + [anon_sym_STAR] = ACTIONS(2325), + [anon_sym_u8] = ACTIONS(2327), + [anon_sym_i8] = ACTIONS(2327), + [anon_sym_u16] = ACTIONS(2327), + [anon_sym_i16] = ACTIONS(2327), + [anon_sym_u32] = ACTIONS(2327), + [anon_sym_i32] = ACTIONS(2327), + [anon_sym_u64] = ACTIONS(2327), + [anon_sym_i64] = ACTIONS(2327), + [anon_sym_u128] = ACTIONS(2327), + [anon_sym_i128] = ACTIONS(2327), + [anon_sym_isize] = ACTIONS(2327), + [anon_sym_usize] = ACTIONS(2327), + [anon_sym_f32] = ACTIONS(2327), + [anon_sym_f64] = ACTIONS(2327), + [anon_sym_bool] = ACTIONS(2327), + [anon_sym_str] = ACTIONS(2327), + [anon_sym_char] = ACTIONS(2327), + [anon_sym_DASH] = ACTIONS(2325), + [anon_sym_BANG] = ACTIONS(2325), + [anon_sym_AMP] = ACTIONS(2325), + [anon_sym_PIPE] = ACTIONS(2325), + [anon_sym_LT] = ACTIONS(2325), + [anon_sym_DOT_DOT] = ACTIONS(2325), + [anon_sym_COLON_COLON] = ACTIONS(2325), + [anon_sym_POUND] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2327), + [anon_sym_async] = ACTIONS(2327), + [anon_sym_break] = ACTIONS(2327), + [anon_sym_const] = ACTIONS(2327), + [anon_sym_continue] = ACTIONS(2327), + [anon_sym_default] = ACTIONS(2327), + [anon_sym_enum] = ACTIONS(2327), + [anon_sym_fn] = ACTIONS(2327), + [anon_sym_for] = ACTIONS(2327), + [anon_sym_gen] = ACTIONS(2327), + [anon_sym_if] = ACTIONS(2327), + [anon_sym_impl] = ACTIONS(2327), + [anon_sym_let] = ACTIONS(2327), + [anon_sym_loop] = ACTIONS(2327), + [anon_sym_match] = ACTIONS(2327), + [anon_sym_mod] = ACTIONS(2327), + [anon_sym_pub] = ACTIONS(2327), + [anon_sym_return] = ACTIONS(2327), + [anon_sym_static] = ACTIONS(2327), + [anon_sym_struct] = ACTIONS(2327), + [anon_sym_trait] = ACTIONS(2327), + [anon_sym_type] = ACTIONS(2327), + [anon_sym_union] = ACTIONS(2327), + [anon_sym_unsafe] = ACTIONS(2327), + [anon_sym_use] = ACTIONS(2327), + [anon_sym_while] = ACTIONS(2327), + [anon_sym_extern] = ACTIONS(2327), + [anon_sym_yield] = ACTIONS(2327), + [anon_sym_move] = ACTIONS(2327), + [anon_sym_try] = ACTIONS(2327), + [sym_integer_literal] = ACTIONS(2325), + [aux_sym_string_literal_token1] = ACTIONS(2325), + [sym_char_literal] = ACTIONS(2325), + [anon_sym_true] = ACTIONS(2327), + [anon_sym_false] = ACTIONS(2327), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2327), + [sym_super] = ACTIONS(2327), + [sym_crate] = ACTIONS(2327), + [sym_metavariable] = ACTIONS(2325), + [sym__raw_string_literal_start] = ACTIONS(2325), + [sym_float_literal] = ACTIONS(2325), }, [STATE(645)] = { - [sym_empty_statement] = STATE(1170), - [sym_macro_definition] = STATE(1170), - [sym_attribute_item] = STATE(1170), - [sym_inner_attribute_item] = STATE(1170), - [sym_mod_item] = STATE(1170), - [sym_foreign_mod_item] = STATE(1170), - [sym_struct_item] = STATE(1170), - [sym_union_item] = STATE(1170), - [sym_enum_item] = STATE(1170), - [sym_extern_crate_declaration] = STATE(1170), - [sym_const_item] = STATE(1170), - [sym_static_item] = STATE(1170), - [sym_type_item] = STATE(1170), - [sym_function_item] = STATE(1170), - [sym_function_signature_item] = STATE(1170), - [sym_function_modifiers] = STATE(3781), - [sym_impl_item] = STATE(1170), - [sym_trait_item] = STATE(1170), - [sym_associated_type] = STATE(1170), - [sym_let_declaration] = STATE(1170), - [sym_use_declaration] = STATE(1170), - [sym_extern_modifier] = STATE(2235), - [sym_visibility_modifier] = STATE(2021), - [sym_bracketed_type] = STATE(3732), - [sym_generic_type_with_turbofish] = STATE(3800), - [sym_macro_invocation] = STATE(1170), - [sym_scoped_identifier] = STATE(3326), [sym_line_comment] = STATE(645), [sym_block_comment] = STATE(645), - [aux_sym_declaration_list_repeat1] = STATE(651), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2090), - [anon_sym_macro_rules_BANG] = ACTIONS(2092), - [anon_sym_RBRACE] = ACTIONS(2502), - [anon_sym_u8] = ACTIONS(2096), - [anon_sym_i8] = ACTIONS(2096), - [anon_sym_u16] = ACTIONS(2096), - [anon_sym_i16] = ACTIONS(2096), - [anon_sym_u32] = ACTIONS(2096), - [anon_sym_i32] = ACTIONS(2096), - [anon_sym_u64] = ACTIONS(2096), - [anon_sym_i64] = ACTIONS(2096), - [anon_sym_u128] = ACTIONS(2096), - [anon_sym_i128] = ACTIONS(2096), - [anon_sym_isize] = ACTIONS(2096), - [anon_sym_usize] = ACTIONS(2096), - [anon_sym_f32] = ACTIONS(2096), - [anon_sym_f64] = ACTIONS(2096), - [anon_sym_bool] = ACTIONS(2096), - [anon_sym_str] = ACTIONS(2096), - [anon_sym_char] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2098), - [anon_sym_POUND] = ACTIONS(2100), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(2102), - [anon_sym_default] = ACTIONS(2104), - [anon_sym_enum] = ACTIONS(2106), - [anon_sym_fn] = ACTIONS(2108), - [anon_sym_gen] = ACTIONS(2110), - [anon_sym_impl] = ACTIONS(2112), - [anon_sym_let] = ACTIONS(2114), - [anon_sym_mod] = ACTIONS(2116), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2118), - [anon_sym_struct] = ACTIONS(2120), - [anon_sym_trait] = ACTIONS(2122), - [anon_sym_type] = ACTIONS(2124), - [anon_sym_union] = ACTIONS(2126), - [anon_sym_unsafe] = ACTIONS(2128), - [anon_sym_use] = ACTIONS(2130), - [anon_sym_extern] = ACTIONS(2132), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2134), - [sym_super] = ACTIONS(2134), - [sym_crate] = ACTIONS(2136), - [sym_metavariable] = ACTIONS(2138), + [ts_builtin_sym_end] = ACTIONS(2329), + [sym_identifier] = ACTIONS(2331), + [anon_sym_SEMI] = ACTIONS(2329), + [anon_sym_macro_rules_BANG] = ACTIONS(2329), + [anon_sym_LPAREN] = ACTIONS(2329), + [anon_sym_LBRACK] = ACTIONS(2329), + [anon_sym_LBRACE] = ACTIONS(2329), + [anon_sym_RBRACE] = ACTIONS(2329), + [anon_sym_STAR] = ACTIONS(2329), + [anon_sym_u8] = ACTIONS(2331), + [anon_sym_i8] = ACTIONS(2331), + [anon_sym_u16] = ACTIONS(2331), + [anon_sym_i16] = ACTIONS(2331), + [anon_sym_u32] = ACTIONS(2331), + [anon_sym_i32] = ACTIONS(2331), + [anon_sym_u64] = ACTIONS(2331), + [anon_sym_i64] = ACTIONS(2331), + [anon_sym_u128] = ACTIONS(2331), + [anon_sym_i128] = ACTIONS(2331), + [anon_sym_isize] = ACTIONS(2331), + [anon_sym_usize] = ACTIONS(2331), + [anon_sym_f32] = ACTIONS(2331), + [anon_sym_f64] = ACTIONS(2331), + [anon_sym_bool] = ACTIONS(2331), + [anon_sym_str] = ACTIONS(2331), + [anon_sym_char] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_BANG] = ACTIONS(2329), + [anon_sym_AMP] = ACTIONS(2329), + [anon_sym_PIPE] = ACTIONS(2329), + [anon_sym_LT] = ACTIONS(2329), + [anon_sym_DOT_DOT] = ACTIONS(2329), + [anon_sym_COLON_COLON] = ACTIONS(2329), + [anon_sym_POUND] = ACTIONS(2329), + [anon_sym_SQUOTE] = ACTIONS(2331), + [anon_sym_async] = ACTIONS(2331), + [anon_sym_break] = ACTIONS(2331), + [anon_sym_const] = ACTIONS(2331), + [anon_sym_continue] = ACTIONS(2331), + [anon_sym_default] = ACTIONS(2331), + [anon_sym_enum] = ACTIONS(2331), + [anon_sym_fn] = ACTIONS(2331), + [anon_sym_for] = ACTIONS(2331), + [anon_sym_gen] = ACTIONS(2331), + [anon_sym_if] = ACTIONS(2331), + [anon_sym_impl] = ACTIONS(2331), + [anon_sym_let] = ACTIONS(2331), + [anon_sym_loop] = ACTIONS(2331), + [anon_sym_match] = ACTIONS(2331), + [anon_sym_mod] = ACTIONS(2331), + [anon_sym_pub] = ACTIONS(2331), + [anon_sym_return] = ACTIONS(2331), + [anon_sym_static] = ACTIONS(2331), + [anon_sym_struct] = ACTIONS(2331), + [anon_sym_trait] = ACTIONS(2331), + [anon_sym_type] = ACTIONS(2331), + [anon_sym_union] = ACTIONS(2331), + [anon_sym_unsafe] = ACTIONS(2331), + [anon_sym_use] = ACTIONS(2331), + [anon_sym_while] = ACTIONS(2331), + [anon_sym_extern] = ACTIONS(2331), + [anon_sym_yield] = ACTIONS(2331), + [anon_sym_move] = ACTIONS(2331), + [anon_sym_try] = ACTIONS(2331), + [sym_integer_literal] = ACTIONS(2329), + [aux_sym_string_literal_token1] = ACTIONS(2329), + [sym_char_literal] = ACTIONS(2329), + [anon_sym_true] = ACTIONS(2331), + [anon_sym_false] = ACTIONS(2331), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2331), + [sym_super] = ACTIONS(2331), + [sym_crate] = ACTIONS(2331), + [sym_metavariable] = ACTIONS(2329), + [sym__raw_string_literal_start] = ACTIONS(2329), + [sym_float_literal] = ACTIONS(2329), }, [STATE(646)] = { [sym_line_comment] = STATE(646), [sym_block_comment] = STATE(646), - [ts_builtin_sym_end] = ACTIONS(2504), - [sym_identifier] = ACTIONS(2506), - [anon_sym_SEMI] = ACTIONS(2504), - [anon_sym_macro_rules_BANG] = ACTIONS(2504), - [anon_sym_LPAREN] = ACTIONS(2504), - [anon_sym_LBRACK] = ACTIONS(2504), - [anon_sym_LBRACE] = ACTIONS(2504), - [anon_sym_RBRACE] = ACTIONS(2504), - [anon_sym_STAR] = ACTIONS(2504), - [anon_sym_u8] = ACTIONS(2506), - [anon_sym_i8] = ACTIONS(2506), - [anon_sym_u16] = ACTIONS(2506), - [anon_sym_i16] = ACTIONS(2506), - [anon_sym_u32] = ACTIONS(2506), - [anon_sym_i32] = ACTIONS(2506), - [anon_sym_u64] = ACTIONS(2506), - [anon_sym_i64] = ACTIONS(2506), - [anon_sym_u128] = ACTIONS(2506), - [anon_sym_i128] = ACTIONS(2506), - [anon_sym_isize] = ACTIONS(2506), - [anon_sym_usize] = ACTIONS(2506), - [anon_sym_f32] = ACTIONS(2506), - [anon_sym_f64] = ACTIONS(2506), - [anon_sym_bool] = ACTIONS(2506), - [anon_sym_str] = ACTIONS(2506), - [anon_sym_char] = ACTIONS(2506), - [anon_sym_DASH] = ACTIONS(2504), - [anon_sym_BANG] = ACTIONS(2504), - [anon_sym_AMP] = ACTIONS(2504), - [anon_sym_PIPE] = ACTIONS(2504), - [anon_sym_LT] = ACTIONS(2504), - [anon_sym_DOT_DOT] = ACTIONS(2504), - [anon_sym_COLON_COLON] = ACTIONS(2504), - [anon_sym_POUND] = ACTIONS(2504), - [anon_sym_SQUOTE] = ACTIONS(2506), - [anon_sym_async] = ACTIONS(2506), - [anon_sym_break] = ACTIONS(2506), - [anon_sym_const] = ACTIONS(2506), - [anon_sym_continue] = ACTIONS(2506), - [anon_sym_default] = ACTIONS(2506), - [anon_sym_enum] = ACTIONS(2506), - [anon_sym_fn] = ACTIONS(2506), - [anon_sym_for] = ACTIONS(2506), - [anon_sym_gen] = ACTIONS(2506), - [anon_sym_if] = ACTIONS(2506), - [anon_sym_impl] = ACTIONS(2506), - [anon_sym_let] = ACTIONS(2506), - [anon_sym_loop] = ACTIONS(2506), - [anon_sym_match] = ACTIONS(2506), - [anon_sym_mod] = ACTIONS(2506), - [anon_sym_pub] = ACTIONS(2506), - [anon_sym_return] = ACTIONS(2506), - [anon_sym_static] = ACTIONS(2506), - [anon_sym_struct] = ACTIONS(2506), - [anon_sym_trait] = ACTIONS(2506), - [anon_sym_type] = ACTIONS(2506), - [anon_sym_union] = ACTIONS(2506), - [anon_sym_unsafe] = ACTIONS(2506), - [anon_sym_use] = ACTIONS(2506), - [anon_sym_while] = ACTIONS(2506), - [anon_sym_extern] = ACTIONS(2506), - [anon_sym_yield] = ACTIONS(2506), - [anon_sym_move] = ACTIONS(2506), - [anon_sym_try] = ACTIONS(2506), - [sym_integer_literal] = ACTIONS(2504), - [aux_sym_string_literal_token1] = ACTIONS(2504), - [sym_char_literal] = ACTIONS(2504), - [anon_sym_true] = ACTIONS(2506), - [anon_sym_false] = ACTIONS(2506), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2506), - [sym_super] = ACTIONS(2506), - [sym_crate] = ACTIONS(2506), - [sym_metavariable] = ACTIONS(2504), - [sym__raw_string_literal_start] = ACTIONS(2504), - [sym_float_literal] = ACTIONS(2504), + [ts_builtin_sym_end] = ACTIONS(2333), + [sym_identifier] = ACTIONS(2335), + [anon_sym_SEMI] = ACTIONS(2333), + [anon_sym_macro_rules_BANG] = ACTIONS(2333), + [anon_sym_LPAREN] = ACTIONS(2333), + [anon_sym_LBRACK] = ACTIONS(2333), + [anon_sym_LBRACE] = ACTIONS(2333), + [anon_sym_RBRACE] = ACTIONS(2333), + [anon_sym_STAR] = ACTIONS(2333), + [anon_sym_u8] = ACTIONS(2335), + [anon_sym_i8] = ACTIONS(2335), + [anon_sym_u16] = ACTIONS(2335), + [anon_sym_i16] = ACTIONS(2335), + [anon_sym_u32] = ACTIONS(2335), + [anon_sym_i32] = ACTIONS(2335), + [anon_sym_u64] = ACTIONS(2335), + [anon_sym_i64] = ACTIONS(2335), + [anon_sym_u128] = ACTIONS(2335), + [anon_sym_i128] = ACTIONS(2335), + [anon_sym_isize] = ACTIONS(2335), + [anon_sym_usize] = ACTIONS(2335), + [anon_sym_f32] = ACTIONS(2335), + [anon_sym_f64] = ACTIONS(2335), + [anon_sym_bool] = ACTIONS(2335), + [anon_sym_str] = ACTIONS(2335), + [anon_sym_char] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(2333), + [anon_sym_BANG] = ACTIONS(2333), + [anon_sym_AMP] = ACTIONS(2333), + [anon_sym_PIPE] = ACTIONS(2333), + [anon_sym_LT] = ACTIONS(2333), + [anon_sym_DOT_DOT] = ACTIONS(2333), + [anon_sym_COLON_COLON] = ACTIONS(2333), + [anon_sym_POUND] = ACTIONS(2333), + [anon_sym_SQUOTE] = ACTIONS(2335), + [anon_sym_async] = ACTIONS(2335), + [anon_sym_break] = ACTIONS(2335), + [anon_sym_const] = ACTIONS(2335), + [anon_sym_continue] = ACTIONS(2335), + [anon_sym_default] = ACTIONS(2335), + [anon_sym_enum] = ACTIONS(2335), + [anon_sym_fn] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(2335), + [anon_sym_gen] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(2335), + [anon_sym_impl] = ACTIONS(2335), + [anon_sym_let] = ACTIONS(2335), + [anon_sym_loop] = ACTIONS(2335), + [anon_sym_match] = ACTIONS(2335), + [anon_sym_mod] = ACTIONS(2335), + [anon_sym_pub] = ACTIONS(2335), + [anon_sym_return] = ACTIONS(2335), + [anon_sym_static] = ACTIONS(2335), + [anon_sym_struct] = ACTIONS(2335), + [anon_sym_trait] = ACTIONS(2335), + [anon_sym_type] = ACTIONS(2335), + [anon_sym_union] = ACTIONS(2335), + [anon_sym_unsafe] = ACTIONS(2335), + [anon_sym_use] = ACTIONS(2335), + [anon_sym_while] = ACTIONS(2335), + [anon_sym_extern] = ACTIONS(2335), + [anon_sym_yield] = ACTIONS(2335), + [anon_sym_move] = ACTIONS(2335), + [anon_sym_try] = ACTIONS(2335), + [sym_integer_literal] = ACTIONS(2333), + [aux_sym_string_literal_token1] = ACTIONS(2333), + [sym_char_literal] = ACTIONS(2333), + [anon_sym_true] = ACTIONS(2335), + [anon_sym_false] = ACTIONS(2335), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2335), + [sym_super] = ACTIONS(2335), + [sym_crate] = ACTIONS(2335), + [sym_metavariable] = ACTIONS(2333), + [sym__raw_string_literal_start] = ACTIONS(2333), + [sym_float_literal] = ACTIONS(2333), }, [STATE(647)] = { [sym_line_comment] = STATE(647), [sym_block_comment] = STATE(647), - [ts_builtin_sym_end] = ACTIONS(2508), - [sym_identifier] = ACTIONS(2510), - [anon_sym_SEMI] = ACTIONS(2508), - [anon_sym_macro_rules_BANG] = ACTIONS(2508), - [anon_sym_LPAREN] = ACTIONS(2508), - [anon_sym_LBRACK] = ACTIONS(2508), - [anon_sym_LBRACE] = ACTIONS(2508), - [anon_sym_RBRACE] = ACTIONS(2508), - [anon_sym_STAR] = ACTIONS(2508), - [anon_sym_u8] = ACTIONS(2510), - [anon_sym_i8] = ACTIONS(2510), - [anon_sym_u16] = ACTIONS(2510), - [anon_sym_i16] = ACTIONS(2510), - [anon_sym_u32] = ACTIONS(2510), - [anon_sym_i32] = ACTIONS(2510), - [anon_sym_u64] = ACTIONS(2510), - [anon_sym_i64] = ACTIONS(2510), - [anon_sym_u128] = ACTIONS(2510), - [anon_sym_i128] = ACTIONS(2510), - [anon_sym_isize] = ACTIONS(2510), - [anon_sym_usize] = ACTIONS(2510), - [anon_sym_f32] = ACTIONS(2510), - [anon_sym_f64] = ACTIONS(2510), - [anon_sym_bool] = ACTIONS(2510), - [anon_sym_str] = ACTIONS(2510), - [anon_sym_char] = ACTIONS(2510), - [anon_sym_DASH] = ACTIONS(2508), - [anon_sym_BANG] = ACTIONS(2508), - [anon_sym_AMP] = ACTIONS(2508), - [anon_sym_PIPE] = ACTIONS(2508), - [anon_sym_LT] = ACTIONS(2508), - [anon_sym_DOT_DOT] = ACTIONS(2508), - [anon_sym_COLON_COLON] = ACTIONS(2508), - [anon_sym_POUND] = ACTIONS(2508), - [anon_sym_SQUOTE] = ACTIONS(2510), - [anon_sym_async] = ACTIONS(2510), - [anon_sym_break] = ACTIONS(2510), - [anon_sym_const] = ACTIONS(2510), - [anon_sym_continue] = ACTIONS(2510), - [anon_sym_default] = ACTIONS(2510), - [anon_sym_enum] = ACTIONS(2510), - [anon_sym_fn] = ACTIONS(2510), - [anon_sym_for] = ACTIONS(2510), - [anon_sym_gen] = ACTIONS(2510), - [anon_sym_if] = ACTIONS(2510), - [anon_sym_impl] = ACTIONS(2510), - [anon_sym_let] = ACTIONS(2510), - [anon_sym_loop] = ACTIONS(2510), - [anon_sym_match] = ACTIONS(2510), - [anon_sym_mod] = ACTIONS(2510), - [anon_sym_pub] = ACTIONS(2510), - [anon_sym_return] = ACTIONS(2510), - [anon_sym_static] = ACTIONS(2510), - [anon_sym_struct] = ACTIONS(2510), - [anon_sym_trait] = ACTIONS(2510), - [anon_sym_type] = ACTIONS(2510), - [anon_sym_union] = ACTIONS(2510), - [anon_sym_unsafe] = ACTIONS(2510), - [anon_sym_use] = ACTIONS(2510), - [anon_sym_while] = ACTIONS(2510), - [anon_sym_extern] = ACTIONS(2510), - [anon_sym_yield] = ACTIONS(2510), - [anon_sym_move] = ACTIONS(2510), - [anon_sym_try] = ACTIONS(2510), - [sym_integer_literal] = ACTIONS(2508), - [aux_sym_string_literal_token1] = ACTIONS(2508), - [sym_char_literal] = ACTIONS(2508), - [anon_sym_true] = ACTIONS(2510), - [anon_sym_false] = ACTIONS(2510), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2510), - [sym_super] = ACTIONS(2510), - [sym_crate] = ACTIONS(2510), - [sym_metavariable] = ACTIONS(2508), - [sym__raw_string_literal_start] = ACTIONS(2508), - [sym_float_literal] = ACTIONS(2508), + [ts_builtin_sym_end] = ACTIONS(2337), + [sym_identifier] = ACTIONS(2339), + [anon_sym_SEMI] = ACTIONS(2337), + [anon_sym_macro_rules_BANG] = ACTIONS(2337), + [anon_sym_LPAREN] = ACTIONS(2337), + [anon_sym_LBRACK] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [anon_sym_RBRACE] = ACTIONS(2337), + [anon_sym_STAR] = ACTIONS(2337), + [anon_sym_u8] = ACTIONS(2339), + [anon_sym_i8] = ACTIONS(2339), + [anon_sym_u16] = ACTIONS(2339), + [anon_sym_i16] = ACTIONS(2339), + [anon_sym_u32] = ACTIONS(2339), + [anon_sym_i32] = ACTIONS(2339), + [anon_sym_u64] = ACTIONS(2339), + [anon_sym_i64] = ACTIONS(2339), + [anon_sym_u128] = ACTIONS(2339), + [anon_sym_i128] = ACTIONS(2339), + [anon_sym_isize] = ACTIONS(2339), + [anon_sym_usize] = ACTIONS(2339), + [anon_sym_f32] = ACTIONS(2339), + [anon_sym_f64] = ACTIONS(2339), + [anon_sym_bool] = ACTIONS(2339), + [anon_sym_str] = ACTIONS(2339), + [anon_sym_char] = ACTIONS(2339), + [anon_sym_DASH] = ACTIONS(2337), + [anon_sym_BANG] = ACTIONS(2337), + [anon_sym_AMP] = ACTIONS(2337), + [anon_sym_PIPE] = ACTIONS(2337), + [anon_sym_LT] = ACTIONS(2337), + [anon_sym_DOT_DOT] = ACTIONS(2337), + [anon_sym_COLON_COLON] = ACTIONS(2337), + [anon_sym_POUND] = ACTIONS(2337), + [anon_sym_SQUOTE] = ACTIONS(2339), + [anon_sym_async] = ACTIONS(2339), + [anon_sym_break] = ACTIONS(2339), + [anon_sym_const] = ACTIONS(2339), + [anon_sym_continue] = ACTIONS(2339), + [anon_sym_default] = ACTIONS(2339), + [anon_sym_enum] = ACTIONS(2339), + [anon_sym_fn] = ACTIONS(2339), + [anon_sym_for] = ACTIONS(2339), + [anon_sym_gen] = ACTIONS(2339), + [anon_sym_if] = ACTIONS(2339), + [anon_sym_impl] = ACTIONS(2339), + [anon_sym_let] = ACTIONS(2339), + [anon_sym_loop] = ACTIONS(2339), + [anon_sym_match] = ACTIONS(2339), + [anon_sym_mod] = ACTIONS(2339), + [anon_sym_pub] = ACTIONS(2339), + [anon_sym_return] = ACTIONS(2339), + [anon_sym_static] = ACTIONS(2339), + [anon_sym_struct] = ACTIONS(2339), + [anon_sym_trait] = ACTIONS(2339), + [anon_sym_type] = ACTIONS(2339), + [anon_sym_union] = ACTIONS(2339), + [anon_sym_unsafe] = ACTIONS(2339), + [anon_sym_use] = ACTIONS(2339), + [anon_sym_while] = ACTIONS(2339), + [anon_sym_extern] = ACTIONS(2339), + [anon_sym_yield] = ACTIONS(2339), + [anon_sym_move] = ACTIONS(2339), + [anon_sym_try] = ACTIONS(2339), + [sym_integer_literal] = ACTIONS(2337), + [aux_sym_string_literal_token1] = ACTIONS(2337), + [sym_char_literal] = ACTIONS(2337), + [anon_sym_true] = ACTIONS(2339), + [anon_sym_false] = ACTIONS(2339), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2339), + [sym_super] = ACTIONS(2339), + [sym_crate] = ACTIONS(2339), + [sym_metavariable] = ACTIONS(2337), + [sym__raw_string_literal_start] = ACTIONS(2337), + [sym_float_literal] = ACTIONS(2337), }, [STATE(648)] = { [sym_line_comment] = STATE(648), [sym_block_comment] = STATE(648), - [ts_builtin_sym_end] = ACTIONS(2512), - [sym_identifier] = ACTIONS(2514), - [anon_sym_SEMI] = ACTIONS(2512), - [anon_sym_macro_rules_BANG] = ACTIONS(2512), - [anon_sym_LPAREN] = ACTIONS(2512), - [anon_sym_LBRACK] = ACTIONS(2512), - [anon_sym_LBRACE] = ACTIONS(2512), - [anon_sym_RBRACE] = ACTIONS(2512), - [anon_sym_STAR] = ACTIONS(2512), - [anon_sym_u8] = ACTIONS(2514), - [anon_sym_i8] = ACTIONS(2514), - [anon_sym_u16] = ACTIONS(2514), - [anon_sym_i16] = ACTIONS(2514), - [anon_sym_u32] = ACTIONS(2514), - [anon_sym_i32] = ACTIONS(2514), - [anon_sym_u64] = ACTIONS(2514), - [anon_sym_i64] = ACTIONS(2514), - [anon_sym_u128] = ACTIONS(2514), - [anon_sym_i128] = ACTIONS(2514), - [anon_sym_isize] = ACTIONS(2514), - [anon_sym_usize] = ACTIONS(2514), - [anon_sym_f32] = ACTIONS(2514), - [anon_sym_f64] = ACTIONS(2514), - [anon_sym_bool] = ACTIONS(2514), - [anon_sym_str] = ACTIONS(2514), - [anon_sym_char] = ACTIONS(2514), - [anon_sym_DASH] = ACTIONS(2512), - [anon_sym_BANG] = ACTIONS(2512), - [anon_sym_AMP] = ACTIONS(2512), - [anon_sym_PIPE] = ACTIONS(2512), - [anon_sym_LT] = ACTIONS(2512), - [anon_sym_DOT_DOT] = ACTIONS(2512), - [anon_sym_COLON_COLON] = ACTIONS(2512), - [anon_sym_POUND] = ACTIONS(2512), - [anon_sym_SQUOTE] = ACTIONS(2514), - [anon_sym_async] = ACTIONS(2514), - [anon_sym_break] = ACTIONS(2514), - [anon_sym_const] = ACTIONS(2514), - [anon_sym_continue] = ACTIONS(2514), - [anon_sym_default] = ACTIONS(2514), - [anon_sym_enum] = ACTIONS(2514), - [anon_sym_fn] = ACTIONS(2514), - [anon_sym_for] = ACTIONS(2514), - [anon_sym_gen] = ACTIONS(2514), - [anon_sym_if] = ACTIONS(2514), - [anon_sym_impl] = ACTIONS(2514), - [anon_sym_let] = ACTIONS(2514), - [anon_sym_loop] = ACTIONS(2514), - [anon_sym_match] = ACTIONS(2514), - [anon_sym_mod] = ACTIONS(2514), - [anon_sym_pub] = ACTIONS(2514), - [anon_sym_return] = ACTIONS(2514), - [anon_sym_static] = ACTIONS(2514), - [anon_sym_struct] = ACTIONS(2514), - [anon_sym_trait] = ACTIONS(2514), - [anon_sym_type] = ACTIONS(2514), - [anon_sym_union] = ACTIONS(2514), - [anon_sym_unsafe] = ACTIONS(2514), - [anon_sym_use] = ACTIONS(2514), - [anon_sym_while] = ACTIONS(2514), - [anon_sym_extern] = ACTIONS(2514), - [anon_sym_yield] = ACTIONS(2514), - [anon_sym_move] = ACTIONS(2514), - [anon_sym_try] = ACTIONS(2514), - [sym_integer_literal] = ACTIONS(2512), - [aux_sym_string_literal_token1] = ACTIONS(2512), - [sym_char_literal] = ACTIONS(2512), - [anon_sym_true] = ACTIONS(2514), - [anon_sym_false] = ACTIONS(2514), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2514), - [sym_super] = ACTIONS(2514), - [sym_crate] = ACTIONS(2514), - [sym_metavariable] = ACTIONS(2512), - [sym__raw_string_literal_start] = ACTIONS(2512), - [sym_float_literal] = ACTIONS(2512), + [ts_builtin_sym_end] = ACTIONS(2341), + [sym_identifier] = ACTIONS(2343), + [anon_sym_SEMI] = ACTIONS(2341), + [anon_sym_macro_rules_BANG] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2341), + [anon_sym_RBRACE] = ACTIONS(2341), + [anon_sym_STAR] = ACTIONS(2341), + [anon_sym_u8] = ACTIONS(2343), + [anon_sym_i8] = ACTIONS(2343), + [anon_sym_u16] = ACTIONS(2343), + [anon_sym_i16] = ACTIONS(2343), + [anon_sym_u32] = ACTIONS(2343), + [anon_sym_i32] = ACTIONS(2343), + [anon_sym_u64] = ACTIONS(2343), + [anon_sym_i64] = ACTIONS(2343), + [anon_sym_u128] = ACTIONS(2343), + [anon_sym_i128] = ACTIONS(2343), + [anon_sym_isize] = ACTIONS(2343), + [anon_sym_usize] = ACTIONS(2343), + [anon_sym_f32] = ACTIONS(2343), + [anon_sym_f64] = ACTIONS(2343), + [anon_sym_bool] = ACTIONS(2343), + [anon_sym_str] = ACTIONS(2343), + [anon_sym_char] = ACTIONS(2343), + [anon_sym_DASH] = ACTIONS(2341), + [anon_sym_BANG] = ACTIONS(2341), + [anon_sym_AMP] = ACTIONS(2341), + [anon_sym_PIPE] = ACTIONS(2341), + [anon_sym_LT] = ACTIONS(2341), + [anon_sym_DOT_DOT] = ACTIONS(2341), + [anon_sym_COLON_COLON] = ACTIONS(2341), + [anon_sym_POUND] = ACTIONS(2341), + [anon_sym_SQUOTE] = ACTIONS(2343), + [anon_sym_async] = ACTIONS(2343), + [anon_sym_break] = ACTIONS(2343), + [anon_sym_const] = ACTIONS(2343), + [anon_sym_continue] = ACTIONS(2343), + [anon_sym_default] = ACTIONS(2343), + [anon_sym_enum] = ACTIONS(2343), + [anon_sym_fn] = ACTIONS(2343), + [anon_sym_for] = ACTIONS(2343), + [anon_sym_gen] = ACTIONS(2343), + [anon_sym_if] = ACTIONS(2343), + [anon_sym_impl] = ACTIONS(2343), + [anon_sym_let] = ACTIONS(2343), + [anon_sym_loop] = ACTIONS(2343), + [anon_sym_match] = ACTIONS(2343), + [anon_sym_mod] = ACTIONS(2343), + [anon_sym_pub] = ACTIONS(2343), + [anon_sym_return] = ACTIONS(2343), + [anon_sym_static] = ACTIONS(2343), + [anon_sym_struct] = ACTIONS(2343), + [anon_sym_trait] = ACTIONS(2343), + [anon_sym_type] = ACTIONS(2343), + [anon_sym_union] = ACTIONS(2343), + [anon_sym_unsafe] = ACTIONS(2343), + [anon_sym_use] = ACTIONS(2343), + [anon_sym_while] = ACTIONS(2343), + [anon_sym_extern] = ACTIONS(2343), + [anon_sym_yield] = ACTIONS(2343), + [anon_sym_move] = ACTIONS(2343), + [anon_sym_try] = ACTIONS(2343), + [sym_integer_literal] = ACTIONS(2341), + [aux_sym_string_literal_token1] = ACTIONS(2341), + [sym_char_literal] = ACTIONS(2341), + [anon_sym_true] = ACTIONS(2343), + [anon_sym_false] = ACTIONS(2343), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2343), + [sym_super] = ACTIONS(2343), + [sym_crate] = ACTIONS(2343), + [sym_metavariable] = ACTIONS(2341), + [sym__raw_string_literal_start] = ACTIONS(2341), + [sym_float_literal] = ACTIONS(2341), }, [STATE(649)] = { [sym_line_comment] = STATE(649), [sym_block_comment] = STATE(649), - [ts_builtin_sym_end] = ACTIONS(2516), - [sym_identifier] = ACTIONS(2518), - [anon_sym_SEMI] = ACTIONS(2516), - [anon_sym_macro_rules_BANG] = ACTIONS(2516), - [anon_sym_LPAREN] = ACTIONS(2516), - [anon_sym_LBRACK] = ACTIONS(2516), - [anon_sym_LBRACE] = ACTIONS(2516), - [anon_sym_RBRACE] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(2516), - [anon_sym_u8] = ACTIONS(2518), - [anon_sym_i8] = ACTIONS(2518), - [anon_sym_u16] = ACTIONS(2518), - [anon_sym_i16] = ACTIONS(2518), - [anon_sym_u32] = ACTIONS(2518), - [anon_sym_i32] = ACTIONS(2518), - [anon_sym_u64] = ACTIONS(2518), - [anon_sym_i64] = ACTIONS(2518), - [anon_sym_u128] = ACTIONS(2518), - [anon_sym_i128] = ACTIONS(2518), - [anon_sym_isize] = ACTIONS(2518), - [anon_sym_usize] = ACTIONS(2518), - [anon_sym_f32] = ACTIONS(2518), - [anon_sym_f64] = ACTIONS(2518), - [anon_sym_bool] = ACTIONS(2518), - [anon_sym_str] = ACTIONS(2518), - [anon_sym_char] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2516), - [anon_sym_BANG] = ACTIONS(2516), - [anon_sym_AMP] = ACTIONS(2516), - [anon_sym_PIPE] = ACTIONS(2516), - [anon_sym_LT] = ACTIONS(2516), - [anon_sym_DOT_DOT] = ACTIONS(2516), - [anon_sym_COLON_COLON] = ACTIONS(2516), - [anon_sym_POUND] = ACTIONS(2516), - [anon_sym_SQUOTE] = ACTIONS(2518), - [anon_sym_async] = ACTIONS(2518), - [anon_sym_break] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(2518), - [anon_sym_continue] = ACTIONS(2518), - [anon_sym_default] = ACTIONS(2518), - [anon_sym_enum] = ACTIONS(2518), - [anon_sym_fn] = ACTIONS(2518), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_gen] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_impl] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_loop] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_mod] = ACTIONS(2518), - [anon_sym_pub] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_static] = ACTIONS(2518), - [anon_sym_struct] = ACTIONS(2518), - [anon_sym_trait] = ACTIONS(2518), - [anon_sym_type] = ACTIONS(2518), - [anon_sym_union] = ACTIONS(2518), - [anon_sym_unsafe] = ACTIONS(2518), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_extern] = ACTIONS(2518), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_move] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [sym_integer_literal] = ACTIONS(2516), - [aux_sym_string_literal_token1] = ACTIONS(2516), - [sym_char_literal] = ACTIONS(2516), - [anon_sym_true] = ACTIONS(2518), - [anon_sym_false] = ACTIONS(2518), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2518), - [sym_super] = ACTIONS(2518), - [sym_crate] = ACTIONS(2518), - [sym_metavariable] = ACTIONS(2516), - [sym__raw_string_literal_start] = ACTIONS(2516), - [sym_float_literal] = ACTIONS(2516), + [ts_builtin_sym_end] = ACTIONS(2345), + [sym_identifier] = ACTIONS(2347), + [anon_sym_SEMI] = ACTIONS(2345), + [anon_sym_macro_rules_BANG] = ACTIONS(2345), + [anon_sym_LPAREN] = ACTIONS(2345), + [anon_sym_LBRACK] = ACTIONS(2345), + [anon_sym_LBRACE] = ACTIONS(2345), + [anon_sym_RBRACE] = ACTIONS(2345), + [anon_sym_STAR] = ACTIONS(2345), + [anon_sym_u8] = ACTIONS(2347), + [anon_sym_i8] = ACTIONS(2347), + [anon_sym_u16] = ACTIONS(2347), + [anon_sym_i16] = ACTIONS(2347), + [anon_sym_u32] = ACTIONS(2347), + [anon_sym_i32] = ACTIONS(2347), + [anon_sym_u64] = ACTIONS(2347), + [anon_sym_i64] = ACTIONS(2347), + [anon_sym_u128] = ACTIONS(2347), + [anon_sym_i128] = ACTIONS(2347), + [anon_sym_isize] = ACTIONS(2347), + [anon_sym_usize] = ACTIONS(2347), + [anon_sym_f32] = ACTIONS(2347), + [anon_sym_f64] = ACTIONS(2347), + [anon_sym_bool] = ACTIONS(2347), + [anon_sym_str] = ACTIONS(2347), + [anon_sym_char] = ACTIONS(2347), + [anon_sym_DASH] = ACTIONS(2345), + [anon_sym_BANG] = ACTIONS(2345), + [anon_sym_AMP] = ACTIONS(2345), + [anon_sym_PIPE] = ACTIONS(2345), + [anon_sym_LT] = ACTIONS(2345), + [anon_sym_DOT_DOT] = ACTIONS(2345), + [anon_sym_COLON_COLON] = ACTIONS(2345), + [anon_sym_POUND] = ACTIONS(2345), + [anon_sym_SQUOTE] = ACTIONS(2347), + [anon_sym_async] = ACTIONS(2347), + [anon_sym_break] = ACTIONS(2347), + [anon_sym_const] = ACTIONS(2347), + [anon_sym_continue] = ACTIONS(2347), + [anon_sym_default] = ACTIONS(2347), + [anon_sym_enum] = ACTIONS(2347), + [anon_sym_fn] = ACTIONS(2347), + [anon_sym_for] = ACTIONS(2347), + [anon_sym_gen] = ACTIONS(2347), + [anon_sym_if] = ACTIONS(2347), + [anon_sym_impl] = ACTIONS(2347), + [anon_sym_let] = ACTIONS(2347), + [anon_sym_loop] = ACTIONS(2347), + [anon_sym_match] = ACTIONS(2347), + [anon_sym_mod] = ACTIONS(2347), + [anon_sym_pub] = ACTIONS(2347), + [anon_sym_return] = ACTIONS(2347), + [anon_sym_static] = ACTIONS(2347), + [anon_sym_struct] = ACTIONS(2347), + [anon_sym_trait] = ACTIONS(2347), + [anon_sym_type] = ACTIONS(2347), + [anon_sym_union] = ACTIONS(2347), + [anon_sym_unsafe] = ACTIONS(2347), + [anon_sym_use] = ACTIONS(2347), + [anon_sym_while] = ACTIONS(2347), + [anon_sym_extern] = ACTIONS(2347), + [anon_sym_yield] = ACTIONS(2347), + [anon_sym_move] = ACTIONS(2347), + [anon_sym_try] = ACTIONS(2347), + [sym_integer_literal] = ACTIONS(2345), + [aux_sym_string_literal_token1] = ACTIONS(2345), + [sym_char_literal] = ACTIONS(2345), + [anon_sym_true] = ACTIONS(2347), + [anon_sym_false] = ACTIONS(2347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2347), + [sym_super] = ACTIONS(2347), + [sym_crate] = ACTIONS(2347), + [sym_metavariable] = ACTIONS(2345), + [sym__raw_string_literal_start] = ACTIONS(2345), + [sym_float_literal] = ACTIONS(2345), }, [STATE(650)] = { [sym_line_comment] = STATE(650), [sym_block_comment] = STATE(650), - [ts_builtin_sym_end] = ACTIONS(2520), - [sym_identifier] = ACTIONS(2522), - [anon_sym_SEMI] = ACTIONS(2520), - [anon_sym_macro_rules_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2520), - [anon_sym_RBRACE] = ACTIONS(2520), - [anon_sym_STAR] = ACTIONS(2520), - [anon_sym_u8] = ACTIONS(2522), - [anon_sym_i8] = ACTIONS(2522), - [anon_sym_u16] = ACTIONS(2522), - [anon_sym_i16] = ACTIONS(2522), - [anon_sym_u32] = ACTIONS(2522), - [anon_sym_i32] = ACTIONS(2522), - [anon_sym_u64] = ACTIONS(2522), - [anon_sym_i64] = ACTIONS(2522), - [anon_sym_u128] = ACTIONS(2522), - [anon_sym_i128] = ACTIONS(2522), - [anon_sym_isize] = ACTIONS(2522), - [anon_sym_usize] = ACTIONS(2522), - [anon_sym_f32] = ACTIONS(2522), - [anon_sym_f64] = ACTIONS(2522), - [anon_sym_bool] = ACTIONS(2522), - [anon_sym_str] = ACTIONS(2522), - [anon_sym_char] = ACTIONS(2522), - [anon_sym_DASH] = ACTIONS(2520), - [anon_sym_BANG] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2520), - [anon_sym_PIPE] = ACTIONS(2520), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_DOT_DOT] = ACTIONS(2520), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_POUND] = ACTIONS(2520), - [anon_sym_SQUOTE] = ACTIONS(2522), - [anon_sym_async] = ACTIONS(2522), - [anon_sym_break] = ACTIONS(2522), - [anon_sym_const] = ACTIONS(2522), - [anon_sym_continue] = ACTIONS(2522), - [anon_sym_default] = ACTIONS(2522), - [anon_sym_enum] = ACTIONS(2522), - [anon_sym_fn] = ACTIONS(2522), - [anon_sym_for] = ACTIONS(2522), - [anon_sym_gen] = ACTIONS(2522), - [anon_sym_if] = ACTIONS(2522), - [anon_sym_impl] = ACTIONS(2522), - [anon_sym_let] = ACTIONS(2522), - [anon_sym_loop] = ACTIONS(2522), - [anon_sym_match] = ACTIONS(2522), - [anon_sym_mod] = ACTIONS(2522), - [anon_sym_pub] = ACTIONS(2522), - [anon_sym_return] = ACTIONS(2522), - [anon_sym_static] = ACTIONS(2522), - [anon_sym_struct] = ACTIONS(2522), - [anon_sym_trait] = ACTIONS(2522), - [anon_sym_type] = ACTIONS(2522), - [anon_sym_union] = ACTIONS(2522), - [anon_sym_unsafe] = ACTIONS(2522), - [anon_sym_use] = ACTIONS(2522), - [anon_sym_while] = ACTIONS(2522), - [anon_sym_extern] = ACTIONS(2522), - [anon_sym_yield] = ACTIONS(2522), - [anon_sym_move] = ACTIONS(2522), - [anon_sym_try] = ACTIONS(2522), - [sym_integer_literal] = ACTIONS(2520), - [aux_sym_string_literal_token1] = ACTIONS(2520), - [sym_char_literal] = ACTIONS(2520), - [anon_sym_true] = ACTIONS(2522), - [anon_sym_false] = ACTIONS(2522), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2522), - [sym_super] = ACTIONS(2522), - [sym_crate] = ACTIONS(2522), - [sym_metavariable] = ACTIONS(2520), - [sym__raw_string_literal_start] = ACTIONS(2520), - [sym_float_literal] = ACTIONS(2520), + [ts_builtin_sym_end] = ACTIONS(2349), + [sym_identifier] = ACTIONS(2351), + [anon_sym_SEMI] = ACTIONS(2349), + [anon_sym_macro_rules_BANG] = ACTIONS(2349), + [anon_sym_LPAREN] = ACTIONS(2349), + [anon_sym_LBRACK] = ACTIONS(2349), + [anon_sym_LBRACE] = ACTIONS(2349), + [anon_sym_RBRACE] = ACTIONS(2349), + [anon_sym_STAR] = ACTIONS(2349), + [anon_sym_u8] = ACTIONS(2351), + [anon_sym_i8] = ACTIONS(2351), + [anon_sym_u16] = ACTIONS(2351), + [anon_sym_i16] = ACTIONS(2351), + [anon_sym_u32] = ACTIONS(2351), + [anon_sym_i32] = ACTIONS(2351), + [anon_sym_u64] = ACTIONS(2351), + [anon_sym_i64] = ACTIONS(2351), + [anon_sym_u128] = ACTIONS(2351), + [anon_sym_i128] = ACTIONS(2351), + [anon_sym_isize] = ACTIONS(2351), + [anon_sym_usize] = ACTIONS(2351), + [anon_sym_f32] = ACTIONS(2351), + [anon_sym_f64] = ACTIONS(2351), + [anon_sym_bool] = ACTIONS(2351), + [anon_sym_str] = ACTIONS(2351), + [anon_sym_char] = ACTIONS(2351), + [anon_sym_DASH] = ACTIONS(2349), + [anon_sym_BANG] = ACTIONS(2349), + [anon_sym_AMP] = ACTIONS(2349), + [anon_sym_PIPE] = ACTIONS(2349), + [anon_sym_LT] = ACTIONS(2349), + [anon_sym_DOT_DOT] = ACTIONS(2349), + [anon_sym_COLON_COLON] = ACTIONS(2349), + [anon_sym_POUND] = ACTIONS(2349), + [anon_sym_SQUOTE] = ACTIONS(2351), + [anon_sym_async] = ACTIONS(2351), + [anon_sym_break] = ACTIONS(2351), + [anon_sym_const] = ACTIONS(2351), + [anon_sym_continue] = ACTIONS(2351), + [anon_sym_default] = ACTIONS(2351), + [anon_sym_enum] = ACTIONS(2351), + [anon_sym_fn] = ACTIONS(2351), + [anon_sym_for] = ACTIONS(2351), + [anon_sym_gen] = ACTIONS(2351), + [anon_sym_if] = ACTIONS(2351), + [anon_sym_impl] = ACTIONS(2351), + [anon_sym_let] = ACTIONS(2351), + [anon_sym_loop] = ACTIONS(2351), + [anon_sym_match] = ACTIONS(2351), + [anon_sym_mod] = ACTIONS(2351), + [anon_sym_pub] = ACTIONS(2351), + [anon_sym_return] = ACTIONS(2351), + [anon_sym_static] = ACTIONS(2351), + [anon_sym_struct] = ACTIONS(2351), + [anon_sym_trait] = ACTIONS(2351), + [anon_sym_type] = ACTIONS(2351), + [anon_sym_union] = ACTIONS(2351), + [anon_sym_unsafe] = ACTIONS(2351), + [anon_sym_use] = ACTIONS(2351), + [anon_sym_while] = ACTIONS(2351), + [anon_sym_extern] = ACTIONS(2351), + [anon_sym_yield] = ACTIONS(2351), + [anon_sym_move] = ACTIONS(2351), + [anon_sym_try] = ACTIONS(2351), + [sym_integer_literal] = ACTIONS(2349), + [aux_sym_string_literal_token1] = ACTIONS(2349), + [sym_char_literal] = ACTIONS(2349), + [anon_sym_true] = ACTIONS(2351), + [anon_sym_false] = ACTIONS(2351), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2351), + [sym_super] = ACTIONS(2351), + [sym_crate] = ACTIONS(2351), + [sym_metavariable] = ACTIONS(2349), + [sym__raw_string_literal_start] = ACTIONS(2349), + [sym_float_literal] = ACTIONS(2349), }, [STATE(651)] = { - [sym_empty_statement] = STATE(1170), - [sym_macro_definition] = STATE(1170), - [sym_attribute_item] = STATE(1170), - [sym_inner_attribute_item] = STATE(1170), - [sym_mod_item] = STATE(1170), - [sym_foreign_mod_item] = STATE(1170), - [sym_struct_item] = STATE(1170), - [sym_union_item] = STATE(1170), - [sym_enum_item] = STATE(1170), - [sym_extern_crate_declaration] = STATE(1170), - [sym_const_item] = STATE(1170), - [sym_static_item] = STATE(1170), - [sym_type_item] = STATE(1170), - [sym_function_item] = STATE(1170), - [sym_function_signature_item] = STATE(1170), - [sym_function_modifiers] = STATE(3781), - [sym_impl_item] = STATE(1170), - [sym_trait_item] = STATE(1170), - [sym_associated_type] = STATE(1170), - [sym_let_declaration] = STATE(1170), - [sym_use_declaration] = STATE(1170), - [sym_extern_modifier] = STATE(2235), - [sym_visibility_modifier] = STATE(2021), - [sym_bracketed_type] = STATE(3732), - [sym_generic_type_with_turbofish] = STATE(3800), - [sym_macro_invocation] = STATE(1170), - [sym_scoped_identifier] = STATE(3326), [sym_line_comment] = STATE(651), [sym_block_comment] = STATE(651), - [aux_sym_declaration_list_repeat1] = STATE(531), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2090), - [anon_sym_macro_rules_BANG] = ACTIONS(2092), - [anon_sym_RBRACE] = ACTIONS(2524), - [anon_sym_u8] = ACTIONS(2096), - [anon_sym_i8] = ACTIONS(2096), - [anon_sym_u16] = ACTIONS(2096), - [anon_sym_i16] = ACTIONS(2096), - [anon_sym_u32] = ACTIONS(2096), - [anon_sym_i32] = ACTIONS(2096), - [anon_sym_u64] = ACTIONS(2096), - [anon_sym_i64] = ACTIONS(2096), - [anon_sym_u128] = ACTIONS(2096), - [anon_sym_i128] = ACTIONS(2096), - [anon_sym_isize] = ACTIONS(2096), - [anon_sym_usize] = ACTIONS(2096), - [anon_sym_f32] = ACTIONS(2096), - [anon_sym_f64] = ACTIONS(2096), - [anon_sym_bool] = ACTIONS(2096), - [anon_sym_str] = ACTIONS(2096), - [anon_sym_char] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2098), - [anon_sym_POUND] = ACTIONS(2100), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(2102), - [anon_sym_default] = ACTIONS(2104), - [anon_sym_enum] = ACTIONS(2106), - [anon_sym_fn] = ACTIONS(2108), - [anon_sym_gen] = ACTIONS(2110), - [anon_sym_impl] = ACTIONS(2112), - [anon_sym_let] = ACTIONS(2114), - [anon_sym_mod] = ACTIONS(2116), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2118), - [anon_sym_struct] = ACTIONS(2120), - [anon_sym_trait] = ACTIONS(2122), - [anon_sym_type] = ACTIONS(2124), - [anon_sym_union] = ACTIONS(2126), - [anon_sym_unsafe] = ACTIONS(2128), - [anon_sym_use] = ACTIONS(2130), - [anon_sym_extern] = ACTIONS(2132), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2134), - [sym_super] = ACTIONS(2134), - [sym_crate] = ACTIONS(2136), - [sym_metavariable] = ACTIONS(2138), + [ts_builtin_sym_end] = ACTIONS(2353), + [sym_identifier] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2353), + [anon_sym_macro_rules_BANG] = ACTIONS(2353), + [anon_sym_LPAREN] = ACTIONS(2353), + [anon_sym_LBRACK] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2353), + [anon_sym_RBRACE] = ACTIONS(2353), + [anon_sym_STAR] = ACTIONS(2353), + [anon_sym_u8] = ACTIONS(2355), + [anon_sym_i8] = ACTIONS(2355), + [anon_sym_u16] = ACTIONS(2355), + [anon_sym_i16] = ACTIONS(2355), + [anon_sym_u32] = ACTIONS(2355), + [anon_sym_i32] = ACTIONS(2355), + [anon_sym_u64] = ACTIONS(2355), + [anon_sym_i64] = ACTIONS(2355), + [anon_sym_u128] = ACTIONS(2355), + [anon_sym_i128] = ACTIONS(2355), + [anon_sym_isize] = ACTIONS(2355), + [anon_sym_usize] = ACTIONS(2355), + [anon_sym_f32] = ACTIONS(2355), + [anon_sym_f64] = ACTIONS(2355), + [anon_sym_bool] = ACTIONS(2355), + [anon_sym_str] = ACTIONS(2355), + [anon_sym_char] = ACTIONS(2355), + [anon_sym_DASH] = ACTIONS(2353), + [anon_sym_BANG] = ACTIONS(2353), + [anon_sym_AMP] = ACTIONS(2353), + [anon_sym_PIPE] = ACTIONS(2353), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_DOT_DOT] = ACTIONS(2353), + [anon_sym_COLON_COLON] = ACTIONS(2353), + [anon_sym_POUND] = ACTIONS(2353), + [anon_sym_SQUOTE] = ACTIONS(2355), + [anon_sym_async] = ACTIONS(2355), + [anon_sym_break] = ACTIONS(2355), + [anon_sym_const] = ACTIONS(2355), + [anon_sym_continue] = ACTIONS(2355), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_enum] = ACTIONS(2355), + [anon_sym_fn] = ACTIONS(2355), + [anon_sym_for] = ACTIONS(2355), + [anon_sym_gen] = ACTIONS(2355), + [anon_sym_if] = ACTIONS(2355), + [anon_sym_impl] = ACTIONS(2355), + [anon_sym_let] = ACTIONS(2355), + [anon_sym_loop] = ACTIONS(2355), + [anon_sym_match] = ACTIONS(2355), + [anon_sym_mod] = ACTIONS(2355), + [anon_sym_pub] = ACTIONS(2355), + [anon_sym_return] = ACTIONS(2355), + [anon_sym_static] = ACTIONS(2355), + [anon_sym_struct] = ACTIONS(2355), + [anon_sym_trait] = ACTIONS(2355), + [anon_sym_type] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), + [anon_sym_unsafe] = ACTIONS(2355), + [anon_sym_use] = ACTIONS(2355), + [anon_sym_while] = ACTIONS(2355), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym_yield] = ACTIONS(2355), + [anon_sym_move] = ACTIONS(2355), + [anon_sym_try] = ACTIONS(2355), + [sym_integer_literal] = ACTIONS(2353), + [aux_sym_string_literal_token1] = ACTIONS(2353), + [sym_char_literal] = ACTIONS(2353), + [anon_sym_true] = ACTIONS(2355), + [anon_sym_false] = ACTIONS(2355), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2355), + [sym_super] = ACTIONS(2355), + [sym_crate] = ACTIONS(2355), + [sym_metavariable] = ACTIONS(2353), + [sym__raw_string_literal_start] = ACTIONS(2353), + [sym_float_literal] = ACTIONS(2353), }, [STATE(652)] = { + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym_closure_expression] = STATE(3355), + [sym_closure_parameters] = STATE(188), + [sym__pattern] = STATE(3006), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(652), [sym_block_comment] = STATE(652), - [ts_builtin_sym_end] = ACTIONS(2526), - [sym_identifier] = ACTIONS(2528), - [anon_sym_SEMI] = ACTIONS(2526), - [anon_sym_macro_rules_BANG] = ACTIONS(2526), - [anon_sym_LPAREN] = ACTIONS(2526), - [anon_sym_LBRACK] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2526), - [anon_sym_RBRACE] = ACTIONS(2526), - [anon_sym_STAR] = ACTIONS(2526), - [anon_sym_u8] = ACTIONS(2528), - [anon_sym_i8] = ACTIONS(2528), - [anon_sym_u16] = ACTIONS(2528), - [anon_sym_i16] = ACTIONS(2528), - [anon_sym_u32] = ACTIONS(2528), - [anon_sym_i32] = ACTIONS(2528), - [anon_sym_u64] = ACTIONS(2528), - [anon_sym_i64] = ACTIONS(2528), - [anon_sym_u128] = ACTIONS(2528), - [anon_sym_i128] = ACTIONS(2528), - [anon_sym_isize] = ACTIONS(2528), - [anon_sym_usize] = ACTIONS(2528), - [anon_sym_f32] = ACTIONS(2528), - [anon_sym_f64] = ACTIONS(2528), - [anon_sym_bool] = ACTIONS(2528), - [anon_sym_str] = ACTIONS(2528), - [anon_sym_char] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2526), - [anon_sym_BANG] = ACTIONS(2526), - [anon_sym_AMP] = ACTIONS(2526), - [anon_sym_PIPE] = ACTIONS(2526), - [anon_sym_LT] = ACTIONS(2526), - [anon_sym_DOT_DOT] = ACTIONS(2526), - [anon_sym_COLON_COLON] = ACTIONS(2526), - [anon_sym_POUND] = ACTIONS(2526), - [anon_sym_SQUOTE] = ACTIONS(2528), - [anon_sym_async] = ACTIONS(2528), - [anon_sym_break] = ACTIONS(2528), - [anon_sym_const] = ACTIONS(2528), - [anon_sym_continue] = ACTIONS(2528), - [anon_sym_default] = ACTIONS(2528), - [anon_sym_enum] = ACTIONS(2528), - [anon_sym_fn] = ACTIONS(2528), - [anon_sym_for] = ACTIONS(2528), - [anon_sym_gen] = ACTIONS(2528), - [anon_sym_if] = ACTIONS(2528), - [anon_sym_impl] = ACTIONS(2528), - [anon_sym_let] = ACTIONS(2528), - [anon_sym_loop] = ACTIONS(2528), - [anon_sym_match] = ACTIONS(2528), - [anon_sym_mod] = ACTIONS(2528), - [anon_sym_pub] = ACTIONS(2528), - [anon_sym_return] = ACTIONS(2528), - [anon_sym_static] = ACTIONS(2528), - [anon_sym_struct] = ACTIONS(2528), - [anon_sym_trait] = ACTIONS(2528), - [anon_sym_type] = ACTIONS(2528), - [anon_sym_union] = ACTIONS(2528), - [anon_sym_unsafe] = ACTIONS(2528), - [anon_sym_use] = ACTIONS(2528), - [anon_sym_while] = ACTIONS(2528), - [anon_sym_extern] = ACTIONS(2528), - [anon_sym_yield] = ACTIONS(2528), - [anon_sym_move] = ACTIONS(2528), - [anon_sym_try] = ACTIONS(2528), - [sym_integer_literal] = ACTIONS(2526), - [aux_sym_string_literal_token1] = ACTIONS(2526), - [sym_char_literal] = ACTIONS(2526), - [anon_sym_true] = ACTIONS(2528), - [anon_sym_false] = ACTIONS(2528), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2528), - [sym_super] = ACTIONS(2528), - [sym_crate] = ACTIONS(2528), - [sym_metavariable] = ACTIONS(2526), - [sym__raw_string_literal_start] = ACTIONS(2526), - [sym_float_literal] = ACTIONS(2526), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_async] = ACTIONS(1874), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_static] = ACTIONS(1311), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [anon_sym_move] = ACTIONS(1315), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(653)] = { [sym_line_comment] = STATE(653), [sym_block_comment] = STATE(653), - [ts_builtin_sym_end] = ACTIONS(2530), - [sym_identifier] = ACTIONS(2532), - [anon_sym_SEMI] = ACTIONS(2530), - [anon_sym_macro_rules_BANG] = ACTIONS(2530), - [anon_sym_LPAREN] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(2530), - [anon_sym_LBRACE] = ACTIONS(2530), - [anon_sym_RBRACE] = ACTIONS(2530), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_u8] = ACTIONS(2532), - [anon_sym_i8] = ACTIONS(2532), - [anon_sym_u16] = ACTIONS(2532), - [anon_sym_i16] = ACTIONS(2532), - [anon_sym_u32] = ACTIONS(2532), - [anon_sym_i32] = ACTIONS(2532), - [anon_sym_u64] = ACTIONS(2532), - [anon_sym_i64] = ACTIONS(2532), - [anon_sym_u128] = ACTIONS(2532), - [anon_sym_i128] = ACTIONS(2532), - [anon_sym_isize] = ACTIONS(2532), - [anon_sym_usize] = ACTIONS(2532), - [anon_sym_f32] = ACTIONS(2532), - [anon_sym_f64] = ACTIONS(2532), - [anon_sym_bool] = ACTIONS(2532), - [anon_sym_str] = ACTIONS(2532), - [anon_sym_char] = ACTIONS(2532), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_BANG] = ACTIONS(2530), - [anon_sym_AMP] = ACTIONS(2530), - [anon_sym_PIPE] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2530), - [anon_sym_DOT_DOT] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2530), - [anon_sym_POUND] = ACTIONS(2530), - [anon_sym_SQUOTE] = ACTIONS(2532), - [anon_sym_async] = ACTIONS(2532), - [anon_sym_break] = ACTIONS(2532), - [anon_sym_const] = ACTIONS(2532), - [anon_sym_continue] = ACTIONS(2532), - [anon_sym_default] = ACTIONS(2532), - [anon_sym_enum] = ACTIONS(2532), - [anon_sym_fn] = ACTIONS(2532), - [anon_sym_for] = ACTIONS(2532), - [anon_sym_gen] = ACTIONS(2532), - [anon_sym_if] = ACTIONS(2532), - [anon_sym_impl] = ACTIONS(2532), - [anon_sym_let] = ACTIONS(2532), - [anon_sym_loop] = ACTIONS(2532), - [anon_sym_match] = ACTIONS(2532), - [anon_sym_mod] = ACTIONS(2532), - [anon_sym_pub] = ACTIONS(2532), - [anon_sym_return] = ACTIONS(2532), - [anon_sym_static] = ACTIONS(2532), - [anon_sym_struct] = ACTIONS(2532), - [anon_sym_trait] = ACTIONS(2532), - [anon_sym_type] = ACTIONS(2532), - [anon_sym_union] = ACTIONS(2532), - [anon_sym_unsafe] = ACTIONS(2532), - [anon_sym_use] = ACTIONS(2532), - [anon_sym_while] = ACTIONS(2532), - [anon_sym_extern] = ACTIONS(2532), - [anon_sym_yield] = ACTIONS(2532), - [anon_sym_move] = ACTIONS(2532), - [anon_sym_try] = ACTIONS(2532), - [sym_integer_literal] = ACTIONS(2530), - [aux_sym_string_literal_token1] = ACTIONS(2530), - [sym_char_literal] = ACTIONS(2530), - [anon_sym_true] = ACTIONS(2532), - [anon_sym_false] = ACTIONS(2532), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2532), - [sym_super] = ACTIONS(2532), - [sym_crate] = ACTIONS(2532), - [sym_metavariable] = ACTIONS(2530), - [sym__raw_string_literal_start] = ACTIONS(2530), - [sym_float_literal] = ACTIONS(2530), + [ts_builtin_sym_end] = ACTIONS(2357), + [sym_identifier] = ACTIONS(2359), + [anon_sym_SEMI] = ACTIONS(2357), + [anon_sym_macro_rules_BANG] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2357), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LBRACE] = ACTIONS(2357), + [anon_sym_RBRACE] = ACTIONS(2357), + [anon_sym_STAR] = ACTIONS(2357), + [anon_sym_u8] = ACTIONS(2359), + [anon_sym_i8] = ACTIONS(2359), + [anon_sym_u16] = ACTIONS(2359), + [anon_sym_i16] = ACTIONS(2359), + [anon_sym_u32] = ACTIONS(2359), + [anon_sym_i32] = ACTIONS(2359), + [anon_sym_u64] = ACTIONS(2359), + [anon_sym_i64] = ACTIONS(2359), + [anon_sym_u128] = ACTIONS(2359), + [anon_sym_i128] = ACTIONS(2359), + [anon_sym_isize] = ACTIONS(2359), + [anon_sym_usize] = ACTIONS(2359), + [anon_sym_f32] = ACTIONS(2359), + [anon_sym_f64] = ACTIONS(2359), + [anon_sym_bool] = ACTIONS(2359), + [anon_sym_str] = ACTIONS(2359), + [anon_sym_char] = ACTIONS(2359), + [anon_sym_DASH] = ACTIONS(2357), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_PIPE] = ACTIONS(2357), + [anon_sym_LT] = ACTIONS(2357), + [anon_sym_DOT_DOT] = ACTIONS(2357), + [anon_sym_COLON_COLON] = ACTIONS(2357), + [anon_sym_POUND] = ACTIONS(2357), + [anon_sym_SQUOTE] = ACTIONS(2359), + [anon_sym_async] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(2359), + [anon_sym_const] = ACTIONS(2359), + [anon_sym_continue] = ACTIONS(2359), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_enum] = ACTIONS(2359), + [anon_sym_fn] = ACTIONS(2359), + [anon_sym_for] = ACTIONS(2359), + [anon_sym_gen] = ACTIONS(2359), + [anon_sym_if] = ACTIONS(2359), + [anon_sym_impl] = ACTIONS(2359), + [anon_sym_let] = ACTIONS(2359), + [anon_sym_loop] = ACTIONS(2359), + [anon_sym_match] = ACTIONS(2359), + [anon_sym_mod] = ACTIONS(2359), + [anon_sym_pub] = ACTIONS(2359), + [anon_sym_return] = ACTIONS(2359), + [anon_sym_static] = ACTIONS(2359), + [anon_sym_struct] = ACTIONS(2359), + [anon_sym_trait] = ACTIONS(2359), + [anon_sym_type] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), + [anon_sym_unsafe] = ACTIONS(2359), + [anon_sym_use] = ACTIONS(2359), + [anon_sym_while] = ACTIONS(2359), + [anon_sym_extern] = ACTIONS(2359), + [anon_sym_yield] = ACTIONS(2359), + [anon_sym_move] = ACTIONS(2359), + [anon_sym_try] = ACTIONS(2359), + [sym_integer_literal] = ACTIONS(2357), + [aux_sym_string_literal_token1] = ACTIONS(2357), + [sym_char_literal] = ACTIONS(2357), + [anon_sym_true] = ACTIONS(2359), + [anon_sym_false] = ACTIONS(2359), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2359), + [sym_super] = ACTIONS(2359), + [sym_crate] = ACTIONS(2359), + [sym_metavariable] = ACTIONS(2357), + [sym__raw_string_literal_start] = ACTIONS(2357), + [sym_float_literal] = ACTIONS(2357), }, [STATE(654)] = { [sym_line_comment] = STATE(654), [sym_block_comment] = STATE(654), - [ts_builtin_sym_end] = ACTIONS(2534), - [sym_identifier] = ACTIONS(2536), - [anon_sym_SEMI] = ACTIONS(2534), - [anon_sym_macro_rules_BANG] = ACTIONS(2534), - [anon_sym_LPAREN] = ACTIONS(2534), - [anon_sym_LBRACK] = ACTIONS(2534), - [anon_sym_LBRACE] = ACTIONS(2534), - [anon_sym_RBRACE] = ACTIONS(2534), - [anon_sym_STAR] = ACTIONS(2534), - [anon_sym_u8] = ACTIONS(2536), - [anon_sym_i8] = ACTIONS(2536), - [anon_sym_u16] = ACTIONS(2536), - [anon_sym_i16] = ACTIONS(2536), - [anon_sym_u32] = ACTIONS(2536), - [anon_sym_i32] = ACTIONS(2536), - [anon_sym_u64] = ACTIONS(2536), - [anon_sym_i64] = ACTIONS(2536), - [anon_sym_u128] = ACTIONS(2536), - [anon_sym_i128] = ACTIONS(2536), - [anon_sym_isize] = ACTIONS(2536), - [anon_sym_usize] = ACTIONS(2536), - [anon_sym_f32] = ACTIONS(2536), - [anon_sym_f64] = ACTIONS(2536), - [anon_sym_bool] = ACTIONS(2536), - [anon_sym_str] = ACTIONS(2536), - [anon_sym_char] = ACTIONS(2536), - [anon_sym_DASH] = ACTIONS(2534), - [anon_sym_BANG] = ACTIONS(2534), - [anon_sym_AMP] = ACTIONS(2534), - [anon_sym_PIPE] = ACTIONS(2534), - [anon_sym_LT] = ACTIONS(2534), - [anon_sym_DOT_DOT] = ACTIONS(2534), - [anon_sym_COLON_COLON] = ACTIONS(2534), - [anon_sym_POUND] = ACTIONS(2534), - [anon_sym_SQUOTE] = ACTIONS(2536), - [anon_sym_async] = ACTIONS(2536), - [anon_sym_break] = ACTIONS(2536), - [anon_sym_const] = ACTIONS(2536), - [anon_sym_continue] = ACTIONS(2536), - [anon_sym_default] = ACTIONS(2536), - [anon_sym_enum] = ACTIONS(2536), - [anon_sym_fn] = ACTIONS(2536), - [anon_sym_for] = ACTIONS(2536), - [anon_sym_gen] = ACTIONS(2536), - [anon_sym_if] = ACTIONS(2536), - [anon_sym_impl] = ACTIONS(2536), - [anon_sym_let] = ACTIONS(2536), - [anon_sym_loop] = ACTIONS(2536), - [anon_sym_match] = ACTIONS(2536), - [anon_sym_mod] = ACTIONS(2536), - [anon_sym_pub] = ACTIONS(2536), - [anon_sym_return] = ACTIONS(2536), - [anon_sym_static] = ACTIONS(2536), - [anon_sym_struct] = ACTIONS(2536), - [anon_sym_trait] = ACTIONS(2536), - [anon_sym_type] = ACTIONS(2536), - [anon_sym_union] = ACTIONS(2536), - [anon_sym_unsafe] = ACTIONS(2536), - [anon_sym_use] = ACTIONS(2536), - [anon_sym_while] = ACTIONS(2536), - [anon_sym_extern] = ACTIONS(2536), - [anon_sym_yield] = ACTIONS(2536), - [anon_sym_move] = ACTIONS(2536), - [anon_sym_try] = ACTIONS(2536), - [sym_integer_literal] = ACTIONS(2534), - [aux_sym_string_literal_token1] = ACTIONS(2534), - [sym_char_literal] = ACTIONS(2534), - [anon_sym_true] = ACTIONS(2536), - [anon_sym_false] = ACTIONS(2536), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2536), - [sym_super] = ACTIONS(2536), - [sym_crate] = ACTIONS(2536), - [sym_metavariable] = ACTIONS(2534), - [sym__raw_string_literal_start] = ACTIONS(2534), - [sym_float_literal] = ACTIONS(2534), + [ts_builtin_sym_end] = ACTIONS(2361), + [sym_identifier] = ACTIONS(2363), + [anon_sym_SEMI] = ACTIONS(2361), + [anon_sym_macro_rules_BANG] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2361), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_RBRACE] = ACTIONS(2361), + [anon_sym_STAR] = ACTIONS(2361), + [anon_sym_u8] = ACTIONS(2363), + [anon_sym_i8] = ACTIONS(2363), + [anon_sym_u16] = ACTIONS(2363), + [anon_sym_i16] = ACTIONS(2363), + [anon_sym_u32] = ACTIONS(2363), + [anon_sym_i32] = ACTIONS(2363), + [anon_sym_u64] = ACTIONS(2363), + [anon_sym_i64] = ACTIONS(2363), + [anon_sym_u128] = ACTIONS(2363), + [anon_sym_i128] = ACTIONS(2363), + [anon_sym_isize] = ACTIONS(2363), + [anon_sym_usize] = ACTIONS(2363), + [anon_sym_f32] = ACTIONS(2363), + [anon_sym_f64] = ACTIONS(2363), + [anon_sym_bool] = ACTIONS(2363), + [anon_sym_str] = ACTIONS(2363), + [anon_sym_char] = ACTIONS(2363), + [anon_sym_DASH] = ACTIONS(2361), + [anon_sym_BANG] = ACTIONS(2361), + [anon_sym_AMP] = ACTIONS(2361), + [anon_sym_PIPE] = ACTIONS(2361), + [anon_sym_LT] = ACTIONS(2361), + [anon_sym_DOT_DOT] = ACTIONS(2361), + [anon_sym_COLON_COLON] = ACTIONS(2361), + [anon_sym_POUND] = ACTIONS(2361), + [anon_sym_SQUOTE] = ACTIONS(2363), + [anon_sym_async] = ACTIONS(2363), + [anon_sym_break] = ACTIONS(2363), + [anon_sym_const] = ACTIONS(2363), + [anon_sym_continue] = ACTIONS(2363), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_enum] = ACTIONS(2363), + [anon_sym_fn] = ACTIONS(2363), + [anon_sym_for] = ACTIONS(2363), + [anon_sym_gen] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2363), + [anon_sym_impl] = ACTIONS(2363), + [anon_sym_let] = ACTIONS(2363), + [anon_sym_loop] = ACTIONS(2363), + [anon_sym_match] = ACTIONS(2363), + [anon_sym_mod] = ACTIONS(2363), + [anon_sym_pub] = ACTIONS(2363), + [anon_sym_return] = ACTIONS(2363), + [anon_sym_static] = ACTIONS(2363), + [anon_sym_struct] = ACTIONS(2363), + [anon_sym_trait] = ACTIONS(2363), + [anon_sym_type] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(2363), + [anon_sym_unsafe] = ACTIONS(2363), + [anon_sym_use] = ACTIONS(2363), + [anon_sym_while] = ACTIONS(2363), + [anon_sym_extern] = ACTIONS(2363), + [anon_sym_yield] = ACTIONS(2363), + [anon_sym_move] = ACTIONS(2363), + [anon_sym_try] = ACTIONS(2363), + [sym_integer_literal] = ACTIONS(2361), + [aux_sym_string_literal_token1] = ACTIONS(2361), + [sym_char_literal] = ACTIONS(2361), + [anon_sym_true] = ACTIONS(2363), + [anon_sym_false] = ACTIONS(2363), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2363), + [sym_super] = ACTIONS(2363), + [sym_crate] = ACTIONS(2363), + [sym_metavariable] = ACTIONS(2361), + [sym__raw_string_literal_start] = ACTIONS(2361), + [sym_float_literal] = ACTIONS(2361), }, [STATE(655)] = { [sym_line_comment] = STATE(655), [sym_block_comment] = STATE(655), - [ts_builtin_sym_end] = ACTIONS(2538), - [sym_identifier] = ACTIONS(2540), - [anon_sym_SEMI] = ACTIONS(2538), - [anon_sym_macro_rules_BANG] = ACTIONS(2538), - [anon_sym_LPAREN] = ACTIONS(2538), - [anon_sym_LBRACK] = ACTIONS(2538), - [anon_sym_LBRACE] = ACTIONS(2538), - [anon_sym_RBRACE] = ACTIONS(2538), - [anon_sym_STAR] = ACTIONS(2538), - [anon_sym_u8] = ACTIONS(2540), - [anon_sym_i8] = ACTIONS(2540), - [anon_sym_u16] = ACTIONS(2540), - [anon_sym_i16] = ACTIONS(2540), - [anon_sym_u32] = ACTIONS(2540), - [anon_sym_i32] = ACTIONS(2540), - [anon_sym_u64] = ACTIONS(2540), - [anon_sym_i64] = ACTIONS(2540), - [anon_sym_u128] = ACTIONS(2540), - [anon_sym_i128] = ACTIONS(2540), - [anon_sym_isize] = ACTIONS(2540), - [anon_sym_usize] = ACTIONS(2540), - [anon_sym_f32] = ACTIONS(2540), - [anon_sym_f64] = ACTIONS(2540), - [anon_sym_bool] = ACTIONS(2540), - [anon_sym_str] = ACTIONS(2540), - [anon_sym_char] = ACTIONS(2540), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_BANG] = ACTIONS(2538), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_PIPE] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2538), - [anon_sym_DOT_DOT] = ACTIONS(2538), - [anon_sym_COLON_COLON] = ACTIONS(2538), - [anon_sym_POUND] = ACTIONS(2538), - [anon_sym_SQUOTE] = ACTIONS(2540), - [anon_sym_async] = ACTIONS(2540), - [anon_sym_break] = ACTIONS(2540), - [anon_sym_const] = ACTIONS(2540), - [anon_sym_continue] = ACTIONS(2540), - [anon_sym_default] = ACTIONS(2540), - [anon_sym_enum] = ACTIONS(2540), - [anon_sym_fn] = ACTIONS(2540), - [anon_sym_for] = ACTIONS(2540), - [anon_sym_gen] = ACTIONS(2540), - [anon_sym_if] = ACTIONS(2540), - [anon_sym_impl] = ACTIONS(2540), - [anon_sym_let] = ACTIONS(2540), - [anon_sym_loop] = ACTIONS(2540), - [anon_sym_match] = ACTIONS(2540), - [anon_sym_mod] = ACTIONS(2540), - [anon_sym_pub] = ACTIONS(2540), - [anon_sym_return] = ACTIONS(2540), - [anon_sym_static] = ACTIONS(2540), - [anon_sym_struct] = ACTIONS(2540), - [anon_sym_trait] = ACTIONS(2540), - [anon_sym_type] = ACTIONS(2540), - [anon_sym_union] = ACTIONS(2540), - [anon_sym_unsafe] = ACTIONS(2540), - [anon_sym_use] = ACTIONS(2540), - [anon_sym_while] = ACTIONS(2540), - [anon_sym_extern] = ACTIONS(2540), - [anon_sym_yield] = ACTIONS(2540), - [anon_sym_move] = ACTIONS(2540), - [anon_sym_try] = ACTIONS(2540), - [sym_integer_literal] = ACTIONS(2538), - [aux_sym_string_literal_token1] = ACTIONS(2538), - [sym_char_literal] = ACTIONS(2538), - [anon_sym_true] = ACTIONS(2540), - [anon_sym_false] = ACTIONS(2540), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2540), - [sym_super] = ACTIONS(2540), - [sym_crate] = ACTIONS(2540), - [sym_metavariable] = ACTIONS(2538), - [sym__raw_string_literal_start] = ACTIONS(2538), - [sym_float_literal] = ACTIONS(2538), + [ts_builtin_sym_end] = ACTIONS(2365), + [sym_identifier] = ACTIONS(2367), + [anon_sym_SEMI] = ACTIONS(2365), + [anon_sym_macro_rules_BANG] = ACTIONS(2365), + [anon_sym_LPAREN] = ACTIONS(2365), + [anon_sym_LBRACK] = ACTIONS(2365), + [anon_sym_LBRACE] = ACTIONS(2365), + [anon_sym_RBRACE] = ACTIONS(2365), + [anon_sym_STAR] = ACTIONS(2365), + [anon_sym_u8] = ACTIONS(2367), + [anon_sym_i8] = ACTIONS(2367), + [anon_sym_u16] = ACTIONS(2367), + [anon_sym_i16] = ACTIONS(2367), + [anon_sym_u32] = ACTIONS(2367), + [anon_sym_i32] = ACTIONS(2367), + [anon_sym_u64] = ACTIONS(2367), + [anon_sym_i64] = ACTIONS(2367), + [anon_sym_u128] = ACTIONS(2367), + [anon_sym_i128] = ACTIONS(2367), + [anon_sym_isize] = ACTIONS(2367), + [anon_sym_usize] = ACTIONS(2367), + [anon_sym_f32] = ACTIONS(2367), + [anon_sym_f64] = ACTIONS(2367), + [anon_sym_bool] = ACTIONS(2367), + [anon_sym_str] = ACTIONS(2367), + [anon_sym_char] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2365), + [anon_sym_BANG] = ACTIONS(2365), + [anon_sym_AMP] = ACTIONS(2365), + [anon_sym_PIPE] = ACTIONS(2365), + [anon_sym_LT] = ACTIONS(2365), + [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_COLON_COLON] = ACTIONS(2365), + [anon_sym_POUND] = ACTIONS(2365), + [anon_sym_SQUOTE] = ACTIONS(2367), + [anon_sym_async] = ACTIONS(2367), + [anon_sym_break] = ACTIONS(2367), + [anon_sym_const] = ACTIONS(2367), + [anon_sym_continue] = ACTIONS(2367), + [anon_sym_default] = ACTIONS(2367), + [anon_sym_enum] = ACTIONS(2367), + [anon_sym_fn] = ACTIONS(2367), + [anon_sym_for] = ACTIONS(2367), + [anon_sym_gen] = ACTIONS(2367), + [anon_sym_if] = ACTIONS(2367), + [anon_sym_impl] = ACTIONS(2367), + [anon_sym_let] = ACTIONS(2367), + [anon_sym_loop] = ACTIONS(2367), + [anon_sym_match] = ACTIONS(2367), + [anon_sym_mod] = ACTIONS(2367), + [anon_sym_pub] = ACTIONS(2367), + [anon_sym_return] = ACTIONS(2367), + [anon_sym_static] = ACTIONS(2367), + [anon_sym_struct] = ACTIONS(2367), + [anon_sym_trait] = ACTIONS(2367), + [anon_sym_type] = ACTIONS(2367), + [anon_sym_union] = ACTIONS(2367), + [anon_sym_unsafe] = ACTIONS(2367), + [anon_sym_use] = ACTIONS(2367), + [anon_sym_while] = ACTIONS(2367), + [anon_sym_extern] = ACTIONS(2367), + [anon_sym_yield] = ACTIONS(2367), + [anon_sym_move] = ACTIONS(2367), + [anon_sym_try] = ACTIONS(2367), + [sym_integer_literal] = ACTIONS(2365), + [aux_sym_string_literal_token1] = ACTIONS(2365), + [sym_char_literal] = ACTIONS(2365), + [anon_sym_true] = ACTIONS(2367), + [anon_sym_false] = ACTIONS(2367), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2367), + [sym_super] = ACTIONS(2367), + [sym_crate] = ACTIONS(2367), + [sym_metavariable] = ACTIONS(2365), + [sym__raw_string_literal_start] = ACTIONS(2365), + [sym_float_literal] = ACTIONS(2365), }, [STATE(656)] = { [sym_line_comment] = STATE(656), [sym_block_comment] = STATE(656), - [ts_builtin_sym_end] = ACTIONS(2542), - [sym_identifier] = ACTIONS(2544), - [anon_sym_SEMI] = ACTIONS(2542), - [anon_sym_macro_rules_BANG] = ACTIONS(2542), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_LBRACK] = ACTIONS(2542), - [anon_sym_LBRACE] = ACTIONS(2542), - [anon_sym_RBRACE] = ACTIONS(2542), - [anon_sym_STAR] = ACTIONS(2542), - [anon_sym_u8] = ACTIONS(2544), - [anon_sym_i8] = ACTIONS(2544), - [anon_sym_u16] = ACTIONS(2544), - [anon_sym_i16] = ACTIONS(2544), - [anon_sym_u32] = ACTIONS(2544), - [anon_sym_i32] = ACTIONS(2544), - [anon_sym_u64] = ACTIONS(2544), - [anon_sym_i64] = ACTIONS(2544), - [anon_sym_u128] = ACTIONS(2544), - [anon_sym_i128] = ACTIONS(2544), - [anon_sym_isize] = ACTIONS(2544), - [anon_sym_usize] = ACTIONS(2544), - [anon_sym_f32] = ACTIONS(2544), - [anon_sym_f64] = ACTIONS(2544), - [anon_sym_bool] = ACTIONS(2544), - [anon_sym_str] = ACTIONS(2544), - [anon_sym_char] = ACTIONS(2544), - [anon_sym_DASH] = ACTIONS(2542), - [anon_sym_BANG] = ACTIONS(2542), - [anon_sym_AMP] = ACTIONS(2542), - [anon_sym_PIPE] = ACTIONS(2542), - [anon_sym_LT] = ACTIONS(2542), - [anon_sym_DOT_DOT] = ACTIONS(2542), - [anon_sym_COLON_COLON] = ACTIONS(2542), - [anon_sym_POUND] = ACTIONS(2542), - [anon_sym_SQUOTE] = ACTIONS(2544), - [anon_sym_async] = ACTIONS(2544), - [anon_sym_break] = ACTIONS(2544), - [anon_sym_const] = ACTIONS(2544), - [anon_sym_continue] = ACTIONS(2544), - [anon_sym_default] = ACTIONS(2544), - [anon_sym_enum] = ACTIONS(2544), - [anon_sym_fn] = ACTIONS(2544), - [anon_sym_for] = ACTIONS(2544), - [anon_sym_gen] = ACTIONS(2544), - [anon_sym_if] = ACTIONS(2544), - [anon_sym_impl] = ACTIONS(2544), - [anon_sym_let] = ACTIONS(2544), - [anon_sym_loop] = ACTIONS(2544), - [anon_sym_match] = ACTIONS(2544), - [anon_sym_mod] = ACTIONS(2544), - [anon_sym_pub] = ACTIONS(2544), - [anon_sym_return] = ACTIONS(2544), - [anon_sym_static] = ACTIONS(2544), - [anon_sym_struct] = ACTIONS(2544), - [anon_sym_trait] = ACTIONS(2544), - [anon_sym_type] = ACTIONS(2544), - [anon_sym_union] = ACTIONS(2544), - [anon_sym_unsafe] = ACTIONS(2544), - [anon_sym_use] = ACTIONS(2544), - [anon_sym_while] = ACTIONS(2544), - [anon_sym_extern] = ACTIONS(2544), - [anon_sym_yield] = ACTIONS(2544), - [anon_sym_move] = ACTIONS(2544), - [anon_sym_try] = ACTIONS(2544), - [sym_integer_literal] = ACTIONS(2542), - [aux_sym_string_literal_token1] = ACTIONS(2542), - [sym_char_literal] = ACTIONS(2542), - [anon_sym_true] = ACTIONS(2544), - [anon_sym_false] = ACTIONS(2544), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2544), - [sym_super] = ACTIONS(2544), - [sym_crate] = ACTIONS(2544), - [sym_metavariable] = ACTIONS(2542), - [sym__raw_string_literal_start] = ACTIONS(2542), - [sym_float_literal] = ACTIONS(2542), + [ts_builtin_sym_end] = ACTIONS(2369), + [sym_identifier] = ACTIONS(2371), + [anon_sym_SEMI] = ACTIONS(2369), + [anon_sym_macro_rules_BANG] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(2369), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_RBRACE] = ACTIONS(2369), + [anon_sym_STAR] = ACTIONS(2369), + [anon_sym_u8] = ACTIONS(2371), + [anon_sym_i8] = ACTIONS(2371), + [anon_sym_u16] = ACTIONS(2371), + [anon_sym_i16] = ACTIONS(2371), + [anon_sym_u32] = ACTIONS(2371), + [anon_sym_i32] = ACTIONS(2371), + [anon_sym_u64] = ACTIONS(2371), + [anon_sym_i64] = ACTIONS(2371), + [anon_sym_u128] = ACTIONS(2371), + [anon_sym_i128] = ACTIONS(2371), + [anon_sym_isize] = ACTIONS(2371), + [anon_sym_usize] = ACTIONS(2371), + [anon_sym_f32] = ACTIONS(2371), + [anon_sym_f64] = ACTIONS(2371), + [anon_sym_bool] = ACTIONS(2371), + [anon_sym_str] = ACTIONS(2371), + [anon_sym_char] = ACTIONS(2371), + [anon_sym_DASH] = ACTIONS(2369), + [anon_sym_BANG] = ACTIONS(2369), + [anon_sym_AMP] = ACTIONS(2369), + [anon_sym_PIPE] = ACTIONS(2369), + [anon_sym_LT] = ACTIONS(2369), + [anon_sym_DOT_DOT] = ACTIONS(2369), + [anon_sym_COLON_COLON] = ACTIONS(2369), + [anon_sym_POUND] = ACTIONS(2369), + [anon_sym_SQUOTE] = ACTIONS(2371), + [anon_sym_async] = ACTIONS(2371), + [anon_sym_break] = ACTIONS(2371), + [anon_sym_const] = ACTIONS(2371), + [anon_sym_continue] = ACTIONS(2371), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_enum] = ACTIONS(2371), + [anon_sym_fn] = ACTIONS(2371), + [anon_sym_for] = ACTIONS(2371), + [anon_sym_gen] = ACTIONS(2371), + [anon_sym_if] = ACTIONS(2371), + [anon_sym_impl] = ACTIONS(2371), + [anon_sym_let] = ACTIONS(2371), + [anon_sym_loop] = ACTIONS(2371), + [anon_sym_match] = ACTIONS(2371), + [anon_sym_mod] = ACTIONS(2371), + [anon_sym_pub] = ACTIONS(2371), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_static] = ACTIONS(2371), + [anon_sym_struct] = ACTIONS(2371), + [anon_sym_trait] = ACTIONS(2371), + [anon_sym_type] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), + [anon_sym_unsafe] = ACTIONS(2371), + [anon_sym_use] = ACTIONS(2371), + [anon_sym_while] = ACTIONS(2371), + [anon_sym_extern] = ACTIONS(2371), + [anon_sym_yield] = ACTIONS(2371), + [anon_sym_move] = ACTIONS(2371), + [anon_sym_try] = ACTIONS(2371), + [sym_integer_literal] = ACTIONS(2369), + [aux_sym_string_literal_token1] = ACTIONS(2369), + [sym_char_literal] = ACTIONS(2369), + [anon_sym_true] = ACTIONS(2371), + [anon_sym_false] = ACTIONS(2371), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2371), + [sym_super] = ACTIONS(2371), + [sym_crate] = ACTIONS(2371), + [sym_metavariable] = ACTIONS(2369), + [sym__raw_string_literal_start] = ACTIONS(2369), + [sym_float_literal] = ACTIONS(2369), }, [STATE(657)] = { [sym_line_comment] = STATE(657), [sym_block_comment] = STATE(657), - [ts_builtin_sym_end] = ACTIONS(2546), - [sym_identifier] = ACTIONS(2548), - [anon_sym_SEMI] = ACTIONS(2546), - [anon_sym_macro_rules_BANG] = ACTIONS(2546), - [anon_sym_LPAREN] = ACTIONS(2546), - [anon_sym_LBRACK] = ACTIONS(2546), - [anon_sym_LBRACE] = ACTIONS(2546), - [anon_sym_RBRACE] = ACTIONS(2546), - [anon_sym_STAR] = ACTIONS(2546), - [anon_sym_u8] = ACTIONS(2548), - [anon_sym_i8] = ACTIONS(2548), - [anon_sym_u16] = ACTIONS(2548), - [anon_sym_i16] = ACTIONS(2548), - [anon_sym_u32] = ACTIONS(2548), - [anon_sym_i32] = ACTIONS(2548), - [anon_sym_u64] = ACTIONS(2548), - [anon_sym_i64] = ACTIONS(2548), - [anon_sym_u128] = ACTIONS(2548), - [anon_sym_i128] = ACTIONS(2548), - [anon_sym_isize] = ACTIONS(2548), - [anon_sym_usize] = ACTIONS(2548), - [anon_sym_f32] = ACTIONS(2548), - [anon_sym_f64] = ACTIONS(2548), - [anon_sym_bool] = ACTIONS(2548), - [anon_sym_str] = ACTIONS(2548), - [anon_sym_char] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2546), - [anon_sym_BANG] = ACTIONS(2546), - [anon_sym_AMP] = ACTIONS(2546), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_LT] = ACTIONS(2546), - [anon_sym_DOT_DOT] = ACTIONS(2546), - [anon_sym_COLON_COLON] = ACTIONS(2546), - [anon_sym_POUND] = ACTIONS(2546), - [anon_sym_SQUOTE] = ACTIONS(2548), - [anon_sym_async] = ACTIONS(2548), - [anon_sym_break] = ACTIONS(2548), - [anon_sym_const] = ACTIONS(2548), - [anon_sym_continue] = ACTIONS(2548), - [anon_sym_default] = ACTIONS(2548), - [anon_sym_enum] = ACTIONS(2548), - [anon_sym_fn] = ACTIONS(2548), - [anon_sym_for] = ACTIONS(2548), - [anon_sym_gen] = ACTIONS(2548), - [anon_sym_if] = ACTIONS(2548), - [anon_sym_impl] = ACTIONS(2548), - [anon_sym_let] = ACTIONS(2548), - [anon_sym_loop] = ACTIONS(2548), - [anon_sym_match] = ACTIONS(2548), - [anon_sym_mod] = ACTIONS(2548), - [anon_sym_pub] = ACTIONS(2548), - [anon_sym_return] = ACTIONS(2548), - [anon_sym_static] = ACTIONS(2548), - [anon_sym_struct] = ACTIONS(2548), - [anon_sym_trait] = ACTIONS(2548), - [anon_sym_type] = ACTIONS(2548), - [anon_sym_union] = ACTIONS(2548), - [anon_sym_unsafe] = ACTIONS(2548), - [anon_sym_use] = ACTIONS(2548), - [anon_sym_while] = ACTIONS(2548), - [anon_sym_extern] = ACTIONS(2548), - [anon_sym_yield] = ACTIONS(2548), - [anon_sym_move] = ACTIONS(2548), - [anon_sym_try] = ACTIONS(2548), - [sym_integer_literal] = ACTIONS(2546), - [aux_sym_string_literal_token1] = ACTIONS(2546), - [sym_char_literal] = ACTIONS(2546), - [anon_sym_true] = ACTIONS(2548), - [anon_sym_false] = ACTIONS(2548), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2548), - [sym_super] = ACTIONS(2548), - [sym_crate] = ACTIONS(2548), - [sym_metavariable] = ACTIONS(2546), - [sym__raw_string_literal_start] = ACTIONS(2546), - [sym_float_literal] = ACTIONS(2546), + [ts_builtin_sym_end] = ACTIONS(2373), + [sym_identifier] = ACTIONS(2375), + [anon_sym_SEMI] = ACTIONS(2373), + [anon_sym_macro_rules_BANG] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_LBRACE] = ACTIONS(2373), + [anon_sym_RBRACE] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(2373), + [anon_sym_u8] = ACTIONS(2375), + [anon_sym_i8] = ACTIONS(2375), + [anon_sym_u16] = ACTIONS(2375), + [anon_sym_i16] = ACTIONS(2375), + [anon_sym_u32] = ACTIONS(2375), + [anon_sym_i32] = ACTIONS(2375), + [anon_sym_u64] = ACTIONS(2375), + [anon_sym_i64] = ACTIONS(2375), + [anon_sym_u128] = ACTIONS(2375), + [anon_sym_i128] = ACTIONS(2375), + [anon_sym_isize] = ACTIONS(2375), + [anon_sym_usize] = ACTIONS(2375), + [anon_sym_f32] = ACTIONS(2375), + [anon_sym_f64] = ACTIONS(2375), + [anon_sym_bool] = ACTIONS(2375), + [anon_sym_str] = ACTIONS(2375), + [anon_sym_char] = ACTIONS(2375), + [anon_sym_DASH] = ACTIONS(2373), + [anon_sym_BANG] = ACTIONS(2373), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_PIPE] = ACTIONS(2373), + [anon_sym_LT] = ACTIONS(2373), + [anon_sym_DOT_DOT] = ACTIONS(2373), + [anon_sym_COLON_COLON] = ACTIONS(2373), + [anon_sym_POUND] = ACTIONS(2373), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_async] = ACTIONS(2375), + [anon_sym_break] = ACTIONS(2375), + [anon_sym_const] = ACTIONS(2375), + [anon_sym_continue] = ACTIONS(2375), + [anon_sym_default] = ACTIONS(2375), + [anon_sym_enum] = ACTIONS(2375), + [anon_sym_fn] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(2375), + [anon_sym_gen] = ACTIONS(2375), + [anon_sym_if] = ACTIONS(2375), + [anon_sym_impl] = ACTIONS(2375), + [anon_sym_let] = ACTIONS(2375), + [anon_sym_loop] = ACTIONS(2375), + [anon_sym_match] = ACTIONS(2375), + [anon_sym_mod] = ACTIONS(2375), + [anon_sym_pub] = ACTIONS(2375), + [anon_sym_return] = ACTIONS(2375), + [anon_sym_static] = ACTIONS(2375), + [anon_sym_struct] = ACTIONS(2375), + [anon_sym_trait] = ACTIONS(2375), + [anon_sym_type] = ACTIONS(2375), + [anon_sym_union] = ACTIONS(2375), + [anon_sym_unsafe] = ACTIONS(2375), + [anon_sym_use] = ACTIONS(2375), + [anon_sym_while] = ACTIONS(2375), + [anon_sym_extern] = ACTIONS(2375), + [anon_sym_yield] = ACTIONS(2375), + [anon_sym_move] = ACTIONS(2375), + [anon_sym_try] = ACTIONS(2375), + [sym_integer_literal] = ACTIONS(2373), + [aux_sym_string_literal_token1] = ACTIONS(2373), + [sym_char_literal] = ACTIONS(2373), + [anon_sym_true] = ACTIONS(2375), + [anon_sym_false] = ACTIONS(2375), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2375), + [sym_super] = ACTIONS(2375), + [sym_crate] = ACTIONS(2375), + [sym_metavariable] = ACTIONS(2373), + [sym__raw_string_literal_start] = ACTIONS(2373), + [sym_float_literal] = ACTIONS(2373), }, [STATE(658)] = { [sym_line_comment] = STATE(658), [sym_block_comment] = STATE(658), - [ts_builtin_sym_end] = ACTIONS(2550), - [sym_identifier] = ACTIONS(2552), - [anon_sym_SEMI] = ACTIONS(2550), - [anon_sym_macro_rules_BANG] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(2550), - [anon_sym_LBRACK] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_RBRACE] = ACTIONS(2550), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_u8] = ACTIONS(2552), - [anon_sym_i8] = ACTIONS(2552), - [anon_sym_u16] = ACTIONS(2552), - [anon_sym_i16] = ACTIONS(2552), - [anon_sym_u32] = ACTIONS(2552), - [anon_sym_i32] = ACTIONS(2552), - [anon_sym_u64] = ACTIONS(2552), - [anon_sym_i64] = ACTIONS(2552), - [anon_sym_u128] = ACTIONS(2552), - [anon_sym_i128] = ACTIONS(2552), - [anon_sym_isize] = ACTIONS(2552), - [anon_sym_usize] = ACTIONS(2552), - [anon_sym_f32] = ACTIONS(2552), - [anon_sym_f64] = ACTIONS(2552), - [anon_sym_bool] = ACTIONS(2552), - [anon_sym_str] = ACTIONS(2552), - [anon_sym_char] = ACTIONS(2552), - [anon_sym_DASH] = ACTIONS(2550), - [anon_sym_BANG] = ACTIONS(2550), - [anon_sym_AMP] = ACTIONS(2550), - [anon_sym_PIPE] = ACTIONS(2550), - [anon_sym_LT] = ACTIONS(2550), - [anon_sym_DOT_DOT] = ACTIONS(2550), - [anon_sym_COLON_COLON] = ACTIONS(2550), - [anon_sym_POUND] = ACTIONS(2550), - [anon_sym_SQUOTE] = ACTIONS(2552), - [anon_sym_async] = ACTIONS(2552), - [anon_sym_break] = ACTIONS(2552), - [anon_sym_const] = ACTIONS(2552), - [anon_sym_continue] = ACTIONS(2552), - [anon_sym_default] = ACTIONS(2552), - [anon_sym_enum] = ACTIONS(2552), - [anon_sym_fn] = ACTIONS(2552), - [anon_sym_for] = ACTIONS(2552), - [anon_sym_gen] = ACTIONS(2552), - [anon_sym_if] = ACTIONS(2552), - [anon_sym_impl] = ACTIONS(2552), - [anon_sym_let] = ACTIONS(2552), - [anon_sym_loop] = ACTIONS(2552), - [anon_sym_match] = ACTIONS(2552), - [anon_sym_mod] = ACTIONS(2552), - [anon_sym_pub] = ACTIONS(2552), - [anon_sym_return] = ACTIONS(2552), - [anon_sym_static] = ACTIONS(2552), - [anon_sym_struct] = ACTIONS(2552), - [anon_sym_trait] = ACTIONS(2552), - [anon_sym_type] = ACTIONS(2552), - [anon_sym_union] = ACTIONS(2552), - [anon_sym_unsafe] = ACTIONS(2552), - [anon_sym_use] = ACTIONS(2552), - [anon_sym_while] = ACTIONS(2552), - [anon_sym_extern] = ACTIONS(2552), - [anon_sym_yield] = ACTIONS(2552), - [anon_sym_move] = ACTIONS(2552), - [anon_sym_try] = ACTIONS(2552), - [sym_integer_literal] = ACTIONS(2550), - [aux_sym_string_literal_token1] = ACTIONS(2550), - [sym_char_literal] = ACTIONS(2550), - [anon_sym_true] = ACTIONS(2552), - [anon_sym_false] = ACTIONS(2552), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2552), - [sym_super] = ACTIONS(2552), - [sym_crate] = ACTIONS(2552), - [sym_metavariable] = ACTIONS(2550), - [sym__raw_string_literal_start] = ACTIONS(2550), - [sym_float_literal] = ACTIONS(2550), + [ts_builtin_sym_end] = ACTIONS(2377), + [sym_identifier] = ACTIONS(2379), + [anon_sym_SEMI] = ACTIONS(2377), + [anon_sym_macro_rules_BANG] = ACTIONS(2377), + [anon_sym_LPAREN] = ACTIONS(2377), + [anon_sym_LBRACK] = ACTIONS(2377), + [anon_sym_LBRACE] = ACTIONS(2377), + [anon_sym_RBRACE] = ACTIONS(2377), + [anon_sym_STAR] = ACTIONS(2377), + [anon_sym_u8] = ACTIONS(2379), + [anon_sym_i8] = ACTIONS(2379), + [anon_sym_u16] = ACTIONS(2379), + [anon_sym_i16] = ACTIONS(2379), + [anon_sym_u32] = ACTIONS(2379), + [anon_sym_i32] = ACTIONS(2379), + [anon_sym_u64] = ACTIONS(2379), + [anon_sym_i64] = ACTIONS(2379), + [anon_sym_u128] = ACTIONS(2379), + [anon_sym_i128] = ACTIONS(2379), + [anon_sym_isize] = ACTIONS(2379), + [anon_sym_usize] = ACTIONS(2379), + [anon_sym_f32] = ACTIONS(2379), + [anon_sym_f64] = ACTIONS(2379), + [anon_sym_bool] = ACTIONS(2379), + [anon_sym_str] = ACTIONS(2379), + [anon_sym_char] = ACTIONS(2379), + [anon_sym_DASH] = ACTIONS(2377), + [anon_sym_BANG] = ACTIONS(2377), + [anon_sym_AMP] = ACTIONS(2377), + [anon_sym_PIPE] = ACTIONS(2377), + [anon_sym_LT] = ACTIONS(2377), + [anon_sym_DOT_DOT] = ACTIONS(2377), + [anon_sym_COLON_COLON] = ACTIONS(2377), + [anon_sym_POUND] = ACTIONS(2377), + [anon_sym_SQUOTE] = ACTIONS(2379), + [anon_sym_async] = ACTIONS(2379), + [anon_sym_break] = ACTIONS(2379), + [anon_sym_const] = ACTIONS(2379), + [anon_sym_continue] = ACTIONS(2379), + [anon_sym_default] = ACTIONS(2379), + [anon_sym_enum] = ACTIONS(2379), + [anon_sym_fn] = ACTIONS(2379), + [anon_sym_for] = ACTIONS(2379), + [anon_sym_gen] = ACTIONS(2379), + [anon_sym_if] = ACTIONS(2379), + [anon_sym_impl] = ACTIONS(2379), + [anon_sym_let] = ACTIONS(2379), + [anon_sym_loop] = ACTIONS(2379), + [anon_sym_match] = ACTIONS(2379), + [anon_sym_mod] = ACTIONS(2379), + [anon_sym_pub] = ACTIONS(2379), + [anon_sym_return] = ACTIONS(2379), + [anon_sym_static] = ACTIONS(2379), + [anon_sym_struct] = ACTIONS(2379), + [anon_sym_trait] = ACTIONS(2379), + [anon_sym_type] = ACTIONS(2379), + [anon_sym_union] = ACTIONS(2379), + [anon_sym_unsafe] = ACTIONS(2379), + [anon_sym_use] = ACTIONS(2379), + [anon_sym_while] = ACTIONS(2379), + [anon_sym_extern] = ACTIONS(2379), + [anon_sym_yield] = ACTIONS(2379), + [anon_sym_move] = ACTIONS(2379), + [anon_sym_try] = ACTIONS(2379), + [sym_integer_literal] = ACTIONS(2377), + [aux_sym_string_literal_token1] = ACTIONS(2377), + [sym_char_literal] = ACTIONS(2377), + [anon_sym_true] = ACTIONS(2379), + [anon_sym_false] = ACTIONS(2379), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2379), + [sym_super] = ACTIONS(2379), + [sym_crate] = ACTIONS(2379), + [sym_metavariable] = ACTIONS(2377), + [sym__raw_string_literal_start] = ACTIONS(2377), + [sym_float_literal] = ACTIONS(2377), }, [STATE(659)] = { [sym_line_comment] = STATE(659), [sym_block_comment] = STATE(659), - [ts_builtin_sym_end] = ACTIONS(2554), - [sym_identifier] = ACTIONS(2556), - [anon_sym_SEMI] = ACTIONS(2554), - [anon_sym_macro_rules_BANG] = ACTIONS(2554), - [anon_sym_LPAREN] = ACTIONS(2554), - [anon_sym_LBRACK] = ACTIONS(2554), - [anon_sym_LBRACE] = ACTIONS(2554), - [anon_sym_RBRACE] = ACTIONS(2554), - [anon_sym_STAR] = ACTIONS(2554), - [anon_sym_u8] = ACTIONS(2556), - [anon_sym_i8] = ACTIONS(2556), - [anon_sym_u16] = ACTIONS(2556), - [anon_sym_i16] = ACTIONS(2556), - [anon_sym_u32] = ACTIONS(2556), - [anon_sym_i32] = ACTIONS(2556), - [anon_sym_u64] = ACTIONS(2556), - [anon_sym_i64] = ACTIONS(2556), - [anon_sym_u128] = ACTIONS(2556), - [anon_sym_i128] = ACTIONS(2556), - [anon_sym_isize] = ACTIONS(2556), - [anon_sym_usize] = ACTIONS(2556), - [anon_sym_f32] = ACTIONS(2556), - [anon_sym_f64] = ACTIONS(2556), - [anon_sym_bool] = ACTIONS(2556), - [anon_sym_str] = ACTIONS(2556), - [anon_sym_char] = ACTIONS(2556), - [anon_sym_DASH] = ACTIONS(2554), - [anon_sym_BANG] = ACTIONS(2554), - [anon_sym_AMP] = ACTIONS(2554), - [anon_sym_PIPE] = ACTIONS(2554), - [anon_sym_LT] = ACTIONS(2554), - [anon_sym_DOT_DOT] = ACTIONS(2554), - [anon_sym_COLON_COLON] = ACTIONS(2554), - [anon_sym_POUND] = ACTIONS(2554), - [anon_sym_SQUOTE] = ACTIONS(2556), - [anon_sym_async] = ACTIONS(2556), - [anon_sym_break] = ACTIONS(2556), - [anon_sym_const] = ACTIONS(2556), - [anon_sym_continue] = ACTIONS(2556), - [anon_sym_default] = ACTIONS(2556), - [anon_sym_enum] = ACTIONS(2556), - [anon_sym_fn] = ACTIONS(2556), - [anon_sym_for] = ACTIONS(2556), - [anon_sym_gen] = ACTIONS(2556), - [anon_sym_if] = ACTIONS(2556), - [anon_sym_impl] = ACTIONS(2556), - [anon_sym_let] = ACTIONS(2556), - [anon_sym_loop] = ACTIONS(2556), - [anon_sym_match] = ACTIONS(2556), - [anon_sym_mod] = ACTIONS(2556), - [anon_sym_pub] = ACTIONS(2556), - [anon_sym_return] = ACTIONS(2556), - [anon_sym_static] = ACTIONS(2556), - [anon_sym_struct] = ACTIONS(2556), - [anon_sym_trait] = ACTIONS(2556), - [anon_sym_type] = ACTIONS(2556), - [anon_sym_union] = ACTIONS(2556), - [anon_sym_unsafe] = ACTIONS(2556), - [anon_sym_use] = ACTIONS(2556), - [anon_sym_while] = ACTIONS(2556), - [anon_sym_extern] = ACTIONS(2556), - [anon_sym_yield] = ACTIONS(2556), - [anon_sym_move] = ACTIONS(2556), - [anon_sym_try] = ACTIONS(2556), - [sym_integer_literal] = ACTIONS(2554), - [aux_sym_string_literal_token1] = ACTIONS(2554), - [sym_char_literal] = ACTIONS(2554), - [anon_sym_true] = ACTIONS(2556), - [anon_sym_false] = ACTIONS(2556), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2556), - [sym_super] = ACTIONS(2556), - [sym_crate] = ACTIONS(2556), - [sym_metavariable] = ACTIONS(2554), - [sym__raw_string_literal_start] = ACTIONS(2554), - [sym_float_literal] = ACTIONS(2554), + [ts_builtin_sym_end] = ACTIONS(2381), + [sym_identifier] = ACTIONS(2383), + [anon_sym_SEMI] = ACTIONS(2381), + [anon_sym_macro_rules_BANG] = ACTIONS(2381), + [anon_sym_LPAREN] = ACTIONS(2381), + [anon_sym_LBRACK] = ACTIONS(2381), + [anon_sym_LBRACE] = ACTIONS(2381), + [anon_sym_RBRACE] = ACTIONS(2381), + [anon_sym_STAR] = ACTIONS(2381), + [anon_sym_u8] = ACTIONS(2383), + [anon_sym_i8] = ACTIONS(2383), + [anon_sym_u16] = ACTIONS(2383), + [anon_sym_i16] = ACTIONS(2383), + [anon_sym_u32] = ACTIONS(2383), + [anon_sym_i32] = ACTIONS(2383), + [anon_sym_u64] = ACTIONS(2383), + [anon_sym_i64] = ACTIONS(2383), + [anon_sym_u128] = ACTIONS(2383), + [anon_sym_i128] = ACTIONS(2383), + [anon_sym_isize] = ACTIONS(2383), + [anon_sym_usize] = ACTIONS(2383), + [anon_sym_f32] = ACTIONS(2383), + [anon_sym_f64] = ACTIONS(2383), + [anon_sym_bool] = ACTIONS(2383), + [anon_sym_str] = ACTIONS(2383), + [anon_sym_char] = ACTIONS(2383), + [anon_sym_DASH] = ACTIONS(2381), + [anon_sym_BANG] = ACTIONS(2381), + [anon_sym_AMP] = ACTIONS(2381), + [anon_sym_PIPE] = ACTIONS(2381), + [anon_sym_LT] = ACTIONS(2381), + [anon_sym_DOT_DOT] = ACTIONS(2381), + [anon_sym_COLON_COLON] = ACTIONS(2381), + [anon_sym_POUND] = ACTIONS(2381), + [anon_sym_SQUOTE] = ACTIONS(2383), + [anon_sym_async] = ACTIONS(2383), + [anon_sym_break] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2383), + [anon_sym_continue] = ACTIONS(2383), + [anon_sym_default] = ACTIONS(2383), + [anon_sym_enum] = ACTIONS(2383), + [anon_sym_fn] = ACTIONS(2383), + [anon_sym_for] = ACTIONS(2383), + [anon_sym_gen] = ACTIONS(2383), + [anon_sym_if] = ACTIONS(2383), + [anon_sym_impl] = ACTIONS(2383), + [anon_sym_let] = ACTIONS(2383), + [anon_sym_loop] = ACTIONS(2383), + [anon_sym_match] = ACTIONS(2383), + [anon_sym_mod] = ACTIONS(2383), + [anon_sym_pub] = ACTIONS(2383), + [anon_sym_return] = ACTIONS(2383), + [anon_sym_static] = ACTIONS(2383), + [anon_sym_struct] = ACTIONS(2383), + [anon_sym_trait] = ACTIONS(2383), + [anon_sym_type] = ACTIONS(2383), + [anon_sym_union] = ACTIONS(2383), + [anon_sym_unsafe] = ACTIONS(2383), + [anon_sym_use] = ACTIONS(2383), + [anon_sym_while] = ACTIONS(2383), + [anon_sym_extern] = ACTIONS(2383), + [anon_sym_yield] = ACTIONS(2383), + [anon_sym_move] = ACTIONS(2383), + [anon_sym_try] = ACTIONS(2383), + [sym_integer_literal] = ACTIONS(2381), + [aux_sym_string_literal_token1] = ACTIONS(2381), + [sym_char_literal] = ACTIONS(2381), + [anon_sym_true] = ACTIONS(2383), + [anon_sym_false] = ACTIONS(2383), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2383), + [sym_super] = ACTIONS(2383), + [sym_crate] = ACTIONS(2383), + [sym_metavariable] = ACTIONS(2381), + [sym__raw_string_literal_start] = ACTIONS(2381), + [sym_float_literal] = ACTIONS(2381), }, [STATE(660)] = { [sym_line_comment] = STATE(660), [sym_block_comment] = STATE(660), - [ts_builtin_sym_end] = ACTIONS(2558), - [sym_identifier] = ACTIONS(2560), - [anon_sym_SEMI] = ACTIONS(2558), - [anon_sym_macro_rules_BANG] = ACTIONS(2558), - [anon_sym_LPAREN] = ACTIONS(2558), - [anon_sym_LBRACK] = ACTIONS(2558), - [anon_sym_LBRACE] = ACTIONS(2558), - [anon_sym_RBRACE] = ACTIONS(2558), - [anon_sym_STAR] = ACTIONS(2558), - [anon_sym_u8] = ACTIONS(2560), - [anon_sym_i8] = ACTIONS(2560), - [anon_sym_u16] = ACTIONS(2560), - [anon_sym_i16] = ACTIONS(2560), - [anon_sym_u32] = ACTIONS(2560), - [anon_sym_i32] = ACTIONS(2560), - [anon_sym_u64] = ACTIONS(2560), - [anon_sym_i64] = ACTIONS(2560), - [anon_sym_u128] = ACTIONS(2560), - [anon_sym_i128] = ACTIONS(2560), - [anon_sym_isize] = ACTIONS(2560), - [anon_sym_usize] = ACTIONS(2560), - [anon_sym_f32] = ACTIONS(2560), - [anon_sym_f64] = ACTIONS(2560), - [anon_sym_bool] = ACTIONS(2560), - [anon_sym_str] = ACTIONS(2560), - [anon_sym_char] = ACTIONS(2560), - [anon_sym_DASH] = ACTIONS(2558), - [anon_sym_BANG] = ACTIONS(2558), - [anon_sym_AMP] = ACTIONS(2558), - [anon_sym_PIPE] = ACTIONS(2558), - [anon_sym_LT] = ACTIONS(2558), - [anon_sym_DOT_DOT] = ACTIONS(2558), - [anon_sym_COLON_COLON] = ACTIONS(2558), - [anon_sym_POUND] = ACTIONS(2558), - [anon_sym_SQUOTE] = ACTIONS(2560), - [anon_sym_async] = ACTIONS(2560), - [anon_sym_break] = ACTIONS(2560), - [anon_sym_const] = ACTIONS(2560), - [anon_sym_continue] = ACTIONS(2560), - [anon_sym_default] = ACTIONS(2560), - [anon_sym_enum] = ACTIONS(2560), - [anon_sym_fn] = ACTIONS(2560), - [anon_sym_for] = ACTIONS(2560), - [anon_sym_gen] = ACTIONS(2560), - [anon_sym_if] = ACTIONS(2560), - [anon_sym_impl] = ACTIONS(2560), - [anon_sym_let] = ACTIONS(2560), - [anon_sym_loop] = ACTIONS(2560), - [anon_sym_match] = ACTIONS(2560), - [anon_sym_mod] = ACTIONS(2560), - [anon_sym_pub] = ACTIONS(2560), - [anon_sym_return] = ACTIONS(2560), - [anon_sym_static] = ACTIONS(2560), - [anon_sym_struct] = ACTIONS(2560), - [anon_sym_trait] = ACTIONS(2560), - [anon_sym_type] = ACTIONS(2560), - [anon_sym_union] = ACTIONS(2560), - [anon_sym_unsafe] = ACTIONS(2560), - [anon_sym_use] = ACTIONS(2560), - [anon_sym_while] = ACTIONS(2560), - [anon_sym_extern] = ACTIONS(2560), - [anon_sym_yield] = ACTIONS(2560), - [anon_sym_move] = ACTIONS(2560), - [anon_sym_try] = ACTIONS(2560), - [sym_integer_literal] = ACTIONS(2558), - [aux_sym_string_literal_token1] = ACTIONS(2558), - [sym_char_literal] = ACTIONS(2558), - [anon_sym_true] = ACTIONS(2560), - [anon_sym_false] = ACTIONS(2560), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2560), - [sym_super] = ACTIONS(2560), - [sym_crate] = ACTIONS(2560), - [sym_metavariable] = ACTIONS(2558), - [sym__raw_string_literal_start] = ACTIONS(2558), - [sym_float_literal] = ACTIONS(2558), + [ts_builtin_sym_end] = ACTIONS(2385), + [sym_identifier] = ACTIONS(2387), + [anon_sym_SEMI] = ACTIONS(2385), + [anon_sym_macro_rules_BANG] = ACTIONS(2385), + [anon_sym_LPAREN] = ACTIONS(2385), + [anon_sym_LBRACK] = ACTIONS(2385), + [anon_sym_LBRACE] = ACTIONS(2385), + [anon_sym_RBRACE] = ACTIONS(2385), + [anon_sym_STAR] = ACTIONS(2385), + [anon_sym_u8] = ACTIONS(2387), + [anon_sym_i8] = ACTIONS(2387), + [anon_sym_u16] = ACTIONS(2387), + [anon_sym_i16] = ACTIONS(2387), + [anon_sym_u32] = ACTIONS(2387), + [anon_sym_i32] = ACTIONS(2387), + [anon_sym_u64] = ACTIONS(2387), + [anon_sym_i64] = ACTIONS(2387), + [anon_sym_u128] = ACTIONS(2387), + [anon_sym_i128] = ACTIONS(2387), + [anon_sym_isize] = ACTIONS(2387), + [anon_sym_usize] = ACTIONS(2387), + [anon_sym_f32] = ACTIONS(2387), + [anon_sym_f64] = ACTIONS(2387), + [anon_sym_bool] = ACTIONS(2387), + [anon_sym_str] = ACTIONS(2387), + [anon_sym_char] = ACTIONS(2387), + [anon_sym_DASH] = ACTIONS(2385), + [anon_sym_BANG] = ACTIONS(2385), + [anon_sym_AMP] = ACTIONS(2385), + [anon_sym_PIPE] = ACTIONS(2385), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2385), + [anon_sym_COLON_COLON] = ACTIONS(2385), + [anon_sym_POUND] = ACTIONS(2385), + [anon_sym_SQUOTE] = ACTIONS(2387), + [anon_sym_async] = ACTIONS(2387), + [anon_sym_break] = ACTIONS(2387), + [anon_sym_const] = ACTIONS(2387), + [anon_sym_continue] = ACTIONS(2387), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_enum] = ACTIONS(2387), + [anon_sym_fn] = ACTIONS(2387), + [anon_sym_for] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_if] = ACTIONS(2387), + [anon_sym_impl] = ACTIONS(2387), + [anon_sym_let] = ACTIONS(2387), + [anon_sym_loop] = ACTIONS(2387), + [anon_sym_match] = ACTIONS(2387), + [anon_sym_mod] = ACTIONS(2387), + [anon_sym_pub] = ACTIONS(2387), + [anon_sym_return] = ACTIONS(2387), + [anon_sym_static] = ACTIONS(2387), + [anon_sym_struct] = ACTIONS(2387), + [anon_sym_trait] = ACTIONS(2387), + [anon_sym_type] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_unsafe] = ACTIONS(2387), + [anon_sym_use] = ACTIONS(2387), + [anon_sym_while] = ACTIONS(2387), + [anon_sym_extern] = ACTIONS(2387), + [anon_sym_yield] = ACTIONS(2387), + [anon_sym_move] = ACTIONS(2387), + [anon_sym_try] = ACTIONS(2387), + [sym_integer_literal] = ACTIONS(2385), + [aux_sym_string_literal_token1] = ACTIONS(2385), + [sym_char_literal] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(2387), + [anon_sym_false] = ACTIONS(2387), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2387), + [sym_super] = ACTIONS(2387), + [sym_crate] = ACTIONS(2387), + [sym_metavariable] = ACTIONS(2385), + [sym__raw_string_literal_start] = ACTIONS(2385), + [sym_float_literal] = ACTIONS(2385), }, [STATE(661)] = { [sym_line_comment] = STATE(661), [sym_block_comment] = STATE(661), - [ts_builtin_sym_end] = ACTIONS(2562), - [sym_identifier] = ACTIONS(2564), - [anon_sym_SEMI] = ACTIONS(2562), - [anon_sym_macro_rules_BANG] = ACTIONS(2562), - [anon_sym_LPAREN] = ACTIONS(2562), - [anon_sym_LBRACK] = ACTIONS(2562), - [anon_sym_LBRACE] = ACTIONS(2562), - [anon_sym_RBRACE] = ACTIONS(2562), - [anon_sym_STAR] = ACTIONS(2562), - [anon_sym_u8] = ACTIONS(2564), - [anon_sym_i8] = ACTIONS(2564), - [anon_sym_u16] = ACTIONS(2564), - [anon_sym_i16] = ACTIONS(2564), - [anon_sym_u32] = ACTIONS(2564), - [anon_sym_i32] = ACTIONS(2564), - [anon_sym_u64] = ACTIONS(2564), - [anon_sym_i64] = ACTIONS(2564), - [anon_sym_u128] = ACTIONS(2564), - [anon_sym_i128] = ACTIONS(2564), - [anon_sym_isize] = ACTIONS(2564), - [anon_sym_usize] = ACTIONS(2564), - [anon_sym_f32] = ACTIONS(2564), - [anon_sym_f64] = ACTIONS(2564), - [anon_sym_bool] = ACTIONS(2564), - [anon_sym_str] = ACTIONS(2564), - [anon_sym_char] = ACTIONS(2564), - [anon_sym_DASH] = ACTIONS(2562), - [anon_sym_BANG] = ACTIONS(2562), - [anon_sym_AMP] = ACTIONS(2562), - [anon_sym_PIPE] = ACTIONS(2562), - [anon_sym_LT] = ACTIONS(2562), - [anon_sym_DOT_DOT] = ACTIONS(2562), - [anon_sym_COLON_COLON] = ACTIONS(2562), - [anon_sym_POUND] = ACTIONS(2562), - [anon_sym_SQUOTE] = ACTIONS(2564), - [anon_sym_async] = ACTIONS(2564), - [anon_sym_break] = ACTIONS(2564), - [anon_sym_const] = ACTIONS(2564), - [anon_sym_continue] = ACTIONS(2564), - [anon_sym_default] = ACTIONS(2564), - [anon_sym_enum] = ACTIONS(2564), - [anon_sym_fn] = ACTIONS(2564), - [anon_sym_for] = ACTIONS(2564), - [anon_sym_gen] = ACTIONS(2564), - [anon_sym_if] = ACTIONS(2564), - [anon_sym_impl] = ACTIONS(2564), - [anon_sym_let] = ACTIONS(2564), - [anon_sym_loop] = ACTIONS(2564), - [anon_sym_match] = ACTIONS(2564), - [anon_sym_mod] = ACTIONS(2564), - [anon_sym_pub] = ACTIONS(2564), - [anon_sym_return] = ACTIONS(2564), - [anon_sym_static] = ACTIONS(2564), - [anon_sym_struct] = ACTIONS(2564), - [anon_sym_trait] = ACTIONS(2564), - [anon_sym_type] = ACTIONS(2564), - [anon_sym_union] = ACTIONS(2564), - [anon_sym_unsafe] = ACTIONS(2564), - [anon_sym_use] = ACTIONS(2564), - [anon_sym_while] = ACTIONS(2564), - [anon_sym_extern] = ACTIONS(2564), - [anon_sym_yield] = ACTIONS(2564), - [anon_sym_move] = ACTIONS(2564), - [anon_sym_try] = ACTIONS(2564), - [sym_integer_literal] = ACTIONS(2562), - [aux_sym_string_literal_token1] = ACTIONS(2562), - [sym_char_literal] = ACTIONS(2562), - [anon_sym_true] = ACTIONS(2564), - [anon_sym_false] = ACTIONS(2564), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2564), - [sym_super] = ACTIONS(2564), - [sym_crate] = ACTIONS(2564), - [sym_metavariable] = ACTIONS(2562), - [sym__raw_string_literal_start] = ACTIONS(2562), - [sym_float_literal] = ACTIONS(2562), + [ts_builtin_sym_end] = ACTIONS(2389), + [sym_identifier] = ACTIONS(2391), + [anon_sym_SEMI] = ACTIONS(2389), + [anon_sym_macro_rules_BANG] = ACTIONS(2389), + [anon_sym_LPAREN] = ACTIONS(2389), + [anon_sym_LBRACK] = ACTIONS(2389), + [anon_sym_LBRACE] = ACTIONS(2389), + [anon_sym_RBRACE] = ACTIONS(2389), + [anon_sym_STAR] = ACTIONS(2389), + [anon_sym_u8] = ACTIONS(2391), + [anon_sym_i8] = ACTIONS(2391), + [anon_sym_u16] = ACTIONS(2391), + [anon_sym_i16] = ACTIONS(2391), + [anon_sym_u32] = ACTIONS(2391), + [anon_sym_i32] = ACTIONS(2391), + [anon_sym_u64] = ACTIONS(2391), + [anon_sym_i64] = ACTIONS(2391), + [anon_sym_u128] = ACTIONS(2391), + [anon_sym_i128] = ACTIONS(2391), + [anon_sym_isize] = ACTIONS(2391), + [anon_sym_usize] = ACTIONS(2391), + [anon_sym_f32] = ACTIONS(2391), + [anon_sym_f64] = ACTIONS(2391), + [anon_sym_bool] = ACTIONS(2391), + [anon_sym_str] = ACTIONS(2391), + [anon_sym_char] = ACTIONS(2391), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2389), + [anon_sym_AMP] = ACTIONS(2389), + [anon_sym_PIPE] = ACTIONS(2389), + [anon_sym_LT] = ACTIONS(2389), + [anon_sym_DOT_DOT] = ACTIONS(2389), + [anon_sym_COLON_COLON] = ACTIONS(2389), + [anon_sym_POUND] = ACTIONS(2389), + [anon_sym_SQUOTE] = ACTIONS(2391), + [anon_sym_async] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(2391), + [anon_sym_const] = ACTIONS(2391), + [anon_sym_continue] = ACTIONS(2391), + [anon_sym_default] = ACTIONS(2391), + [anon_sym_enum] = ACTIONS(2391), + [anon_sym_fn] = ACTIONS(2391), + [anon_sym_for] = ACTIONS(2391), + [anon_sym_gen] = ACTIONS(2391), + [anon_sym_if] = ACTIONS(2391), + [anon_sym_impl] = ACTIONS(2391), + [anon_sym_let] = ACTIONS(2391), + [anon_sym_loop] = ACTIONS(2391), + [anon_sym_match] = ACTIONS(2391), + [anon_sym_mod] = ACTIONS(2391), + [anon_sym_pub] = ACTIONS(2391), + [anon_sym_return] = ACTIONS(2391), + [anon_sym_static] = ACTIONS(2391), + [anon_sym_struct] = ACTIONS(2391), + [anon_sym_trait] = ACTIONS(2391), + [anon_sym_type] = ACTIONS(2391), + [anon_sym_union] = ACTIONS(2391), + [anon_sym_unsafe] = ACTIONS(2391), + [anon_sym_use] = ACTIONS(2391), + [anon_sym_while] = ACTIONS(2391), + [anon_sym_extern] = ACTIONS(2391), + [anon_sym_yield] = ACTIONS(2391), + [anon_sym_move] = ACTIONS(2391), + [anon_sym_try] = ACTIONS(2391), + [sym_integer_literal] = ACTIONS(2389), + [aux_sym_string_literal_token1] = ACTIONS(2389), + [sym_char_literal] = ACTIONS(2389), + [anon_sym_true] = ACTIONS(2391), + [anon_sym_false] = ACTIONS(2391), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2391), + [sym_super] = ACTIONS(2391), + [sym_crate] = ACTIONS(2391), + [sym_metavariable] = ACTIONS(2389), + [sym__raw_string_literal_start] = ACTIONS(2389), + [sym_float_literal] = ACTIONS(2389), }, [STATE(662)] = { [sym_line_comment] = STATE(662), [sym_block_comment] = STATE(662), - [ts_builtin_sym_end] = ACTIONS(2566), - [sym_identifier] = ACTIONS(2568), - [anon_sym_SEMI] = ACTIONS(2566), - [anon_sym_macro_rules_BANG] = ACTIONS(2566), - [anon_sym_LPAREN] = ACTIONS(2566), - [anon_sym_LBRACK] = ACTIONS(2566), - [anon_sym_LBRACE] = ACTIONS(2566), - [anon_sym_RBRACE] = ACTIONS(2566), - [anon_sym_STAR] = ACTIONS(2566), - [anon_sym_u8] = ACTIONS(2568), - [anon_sym_i8] = ACTIONS(2568), - [anon_sym_u16] = ACTIONS(2568), - [anon_sym_i16] = ACTIONS(2568), - [anon_sym_u32] = ACTIONS(2568), - [anon_sym_i32] = ACTIONS(2568), - [anon_sym_u64] = ACTIONS(2568), - [anon_sym_i64] = ACTIONS(2568), - [anon_sym_u128] = ACTIONS(2568), - [anon_sym_i128] = ACTIONS(2568), - [anon_sym_isize] = ACTIONS(2568), - [anon_sym_usize] = ACTIONS(2568), - [anon_sym_f32] = ACTIONS(2568), - [anon_sym_f64] = ACTIONS(2568), - [anon_sym_bool] = ACTIONS(2568), - [anon_sym_str] = ACTIONS(2568), - [anon_sym_char] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2566), - [anon_sym_BANG] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(2566), - [anon_sym_PIPE] = ACTIONS(2566), - [anon_sym_LT] = ACTIONS(2566), - [anon_sym_DOT_DOT] = ACTIONS(2566), - [anon_sym_COLON_COLON] = ACTIONS(2566), - [anon_sym_POUND] = ACTIONS(2566), - [anon_sym_SQUOTE] = ACTIONS(2568), - [anon_sym_async] = ACTIONS(2568), - [anon_sym_break] = ACTIONS(2568), - [anon_sym_const] = ACTIONS(2568), - [anon_sym_continue] = ACTIONS(2568), - [anon_sym_default] = ACTIONS(2568), - [anon_sym_enum] = ACTIONS(2568), - [anon_sym_fn] = ACTIONS(2568), - [anon_sym_for] = ACTIONS(2568), - [anon_sym_gen] = ACTIONS(2568), - [anon_sym_if] = ACTIONS(2568), - [anon_sym_impl] = ACTIONS(2568), - [anon_sym_let] = ACTIONS(2568), - [anon_sym_loop] = ACTIONS(2568), - [anon_sym_match] = ACTIONS(2568), - [anon_sym_mod] = ACTIONS(2568), - [anon_sym_pub] = ACTIONS(2568), - [anon_sym_return] = ACTIONS(2568), - [anon_sym_static] = ACTIONS(2568), - [anon_sym_struct] = ACTIONS(2568), - [anon_sym_trait] = ACTIONS(2568), - [anon_sym_type] = ACTIONS(2568), - [anon_sym_union] = ACTIONS(2568), - [anon_sym_unsafe] = ACTIONS(2568), - [anon_sym_use] = ACTIONS(2568), - [anon_sym_while] = ACTIONS(2568), - [anon_sym_extern] = ACTIONS(2568), - [anon_sym_yield] = ACTIONS(2568), - [anon_sym_move] = ACTIONS(2568), - [anon_sym_try] = ACTIONS(2568), - [sym_integer_literal] = ACTIONS(2566), - [aux_sym_string_literal_token1] = ACTIONS(2566), - [sym_char_literal] = ACTIONS(2566), - [anon_sym_true] = ACTIONS(2568), - [anon_sym_false] = ACTIONS(2568), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2568), - [sym_super] = ACTIONS(2568), - [sym_crate] = ACTIONS(2568), - [sym_metavariable] = ACTIONS(2566), - [sym__raw_string_literal_start] = ACTIONS(2566), - [sym_float_literal] = ACTIONS(2566), + [ts_builtin_sym_end] = ACTIONS(2393), + [sym_identifier] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2393), + [anon_sym_macro_rules_BANG] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(2393), + [anon_sym_LBRACK] = ACTIONS(2393), + [anon_sym_LBRACE] = ACTIONS(2393), + [anon_sym_RBRACE] = ACTIONS(2393), + [anon_sym_STAR] = ACTIONS(2393), + [anon_sym_u8] = ACTIONS(2395), + [anon_sym_i8] = ACTIONS(2395), + [anon_sym_u16] = ACTIONS(2395), + [anon_sym_i16] = ACTIONS(2395), + [anon_sym_u32] = ACTIONS(2395), + [anon_sym_i32] = ACTIONS(2395), + [anon_sym_u64] = ACTIONS(2395), + [anon_sym_i64] = ACTIONS(2395), + [anon_sym_u128] = ACTIONS(2395), + [anon_sym_i128] = ACTIONS(2395), + [anon_sym_isize] = ACTIONS(2395), + [anon_sym_usize] = ACTIONS(2395), + [anon_sym_f32] = ACTIONS(2395), + [anon_sym_f64] = ACTIONS(2395), + [anon_sym_bool] = ACTIONS(2395), + [anon_sym_str] = ACTIONS(2395), + [anon_sym_char] = ACTIONS(2395), + [anon_sym_DASH] = ACTIONS(2393), + [anon_sym_BANG] = ACTIONS(2393), + [anon_sym_AMP] = ACTIONS(2393), + [anon_sym_PIPE] = ACTIONS(2393), + [anon_sym_LT] = ACTIONS(2393), + [anon_sym_DOT_DOT] = ACTIONS(2393), + [anon_sym_COLON_COLON] = ACTIONS(2393), + [anon_sym_POUND] = ACTIONS(2393), + [anon_sym_SQUOTE] = ACTIONS(2395), + [anon_sym_async] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_fn] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_gen] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_impl] = ACTIONS(2395), + [anon_sym_let] = ACTIONS(2395), + [anon_sym_loop] = ACTIONS(2395), + [anon_sym_match] = ACTIONS(2395), + [anon_sym_mod] = ACTIONS(2395), + [anon_sym_pub] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_trait] = ACTIONS(2395), + [anon_sym_type] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_unsafe] = ACTIONS(2395), + [anon_sym_use] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym_yield] = ACTIONS(2395), + [anon_sym_move] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [sym_integer_literal] = ACTIONS(2393), + [aux_sym_string_literal_token1] = ACTIONS(2393), + [sym_char_literal] = ACTIONS(2393), + [anon_sym_true] = ACTIONS(2395), + [anon_sym_false] = ACTIONS(2395), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2395), + [sym_super] = ACTIONS(2395), + [sym_crate] = ACTIONS(2395), + [sym_metavariable] = ACTIONS(2393), + [sym__raw_string_literal_start] = ACTIONS(2393), + [sym_float_literal] = ACTIONS(2393), }, [STATE(663)] = { [sym_line_comment] = STATE(663), [sym_block_comment] = STATE(663), - [ts_builtin_sym_end] = ACTIONS(2570), - [sym_identifier] = ACTIONS(2572), - [anon_sym_SEMI] = ACTIONS(2570), - [anon_sym_macro_rules_BANG] = ACTIONS(2570), - [anon_sym_LPAREN] = ACTIONS(2570), - [anon_sym_LBRACK] = ACTIONS(2570), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_RBRACE] = ACTIONS(2570), - [anon_sym_STAR] = ACTIONS(2570), - [anon_sym_u8] = ACTIONS(2572), - [anon_sym_i8] = ACTIONS(2572), - [anon_sym_u16] = ACTIONS(2572), - [anon_sym_i16] = ACTIONS(2572), - [anon_sym_u32] = ACTIONS(2572), - [anon_sym_i32] = ACTIONS(2572), - [anon_sym_u64] = ACTIONS(2572), - [anon_sym_i64] = ACTIONS(2572), - [anon_sym_u128] = ACTIONS(2572), - [anon_sym_i128] = ACTIONS(2572), - [anon_sym_isize] = ACTIONS(2572), - [anon_sym_usize] = ACTIONS(2572), - [anon_sym_f32] = ACTIONS(2572), - [anon_sym_f64] = ACTIONS(2572), - [anon_sym_bool] = ACTIONS(2572), - [anon_sym_str] = ACTIONS(2572), - [anon_sym_char] = ACTIONS(2572), - [anon_sym_DASH] = ACTIONS(2570), - [anon_sym_BANG] = ACTIONS(2570), - [anon_sym_AMP] = ACTIONS(2570), - [anon_sym_PIPE] = ACTIONS(2570), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_DOT_DOT] = ACTIONS(2570), - [anon_sym_COLON_COLON] = ACTIONS(2570), - [anon_sym_POUND] = ACTIONS(2570), - [anon_sym_SQUOTE] = ACTIONS(2572), - [anon_sym_async] = ACTIONS(2572), - [anon_sym_break] = ACTIONS(2572), - [anon_sym_const] = ACTIONS(2572), - [anon_sym_continue] = ACTIONS(2572), - [anon_sym_default] = ACTIONS(2572), - [anon_sym_enum] = ACTIONS(2572), - [anon_sym_fn] = ACTIONS(2572), - [anon_sym_for] = ACTIONS(2572), - [anon_sym_gen] = ACTIONS(2572), - [anon_sym_if] = ACTIONS(2572), - [anon_sym_impl] = ACTIONS(2572), - [anon_sym_let] = ACTIONS(2572), - [anon_sym_loop] = ACTIONS(2572), - [anon_sym_match] = ACTIONS(2572), - [anon_sym_mod] = ACTIONS(2572), - [anon_sym_pub] = ACTIONS(2572), - [anon_sym_return] = ACTIONS(2572), - [anon_sym_static] = ACTIONS(2572), - [anon_sym_struct] = ACTIONS(2572), - [anon_sym_trait] = ACTIONS(2572), - [anon_sym_type] = ACTIONS(2572), - [anon_sym_union] = ACTIONS(2572), - [anon_sym_unsafe] = ACTIONS(2572), - [anon_sym_use] = ACTIONS(2572), - [anon_sym_while] = ACTIONS(2572), - [anon_sym_extern] = ACTIONS(2572), - [anon_sym_yield] = ACTIONS(2572), - [anon_sym_move] = ACTIONS(2572), - [anon_sym_try] = ACTIONS(2572), - [sym_integer_literal] = ACTIONS(2570), - [aux_sym_string_literal_token1] = ACTIONS(2570), - [sym_char_literal] = ACTIONS(2570), - [anon_sym_true] = ACTIONS(2572), - [anon_sym_false] = ACTIONS(2572), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2572), - [sym_super] = ACTIONS(2572), - [sym_crate] = ACTIONS(2572), - [sym_metavariable] = ACTIONS(2570), - [sym__raw_string_literal_start] = ACTIONS(2570), - [sym_float_literal] = ACTIONS(2570), + [ts_builtin_sym_end] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2399), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_macro_rules_BANG] = ACTIONS(2397), + [anon_sym_LPAREN] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2397), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_u8] = ACTIONS(2399), + [anon_sym_i8] = ACTIONS(2399), + [anon_sym_u16] = ACTIONS(2399), + [anon_sym_i16] = ACTIONS(2399), + [anon_sym_u32] = ACTIONS(2399), + [anon_sym_i32] = ACTIONS(2399), + [anon_sym_u64] = ACTIONS(2399), + [anon_sym_i64] = ACTIONS(2399), + [anon_sym_u128] = ACTIONS(2399), + [anon_sym_i128] = ACTIONS(2399), + [anon_sym_isize] = ACTIONS(2399), + [anon_sym_usize] = ACTIONS(2399), + [anon_sym_f32] = ACTIONS(2399), + [anon_sym_f64] = ACTIONS(2399), + [anon_sym_bool] = ACTIONS(2399), + [anon_sym_str] = ACTIONS(2399), + [anon_sym_char] = ACTIONS(2399), + [anon_sym_DASH] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_PIPE] = ACTIONS(2397), + [anon_sym_LT] = ACTIONS(2397), + [anon_sym_DOT_DOT] = ACTIONS(2397), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_POUND] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2399), + [anon_sym_async] = ACTIONS(2399), + [anon_sym_break] = ACTIONS(2399), + [anon_sym_const] = ACTIONS(2399), + [anon_sym_continue] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(2399), + [anon_sym_enum] = ACTIONS(2399), + [anon_sym_fn] = ACTIONS(2399), + [anon_sym_for] = ACTIONS(2399), + [anon_sym_gen] = ACTIONS(2399), + [anon_sym_if] = ACTIONS(2399), + [anon_sym_impl] = ACTIONS(2399), + [anon_sym_let] = ACTIONS(2399), + [anon_sym_loop] = ACTIONS(2399), + [anon_sym_match] = ACTIONS(2399), + [anon_sym_mod] = ACTIONS(2399), + [anon_sym_pub] = ACTIONS(2399), + [anon_sym_return] = ACTIONS(2399), + [anon_sym_static] = ACTIONS(2399), + [anon_sym_struct] = ACTIONS(2399), + [anon_sym_trait] = ACTIONS(2399), + [anon_sym_type] = ACTIONS(2399), + [anon_sym_union] = ACTIONS(2399), + [anon_sym_unsafe] = ACTIONS(2399), + [anon_sym_use] = ACTIONS(2399), + [anon_sym_while] = ACTIONS(2399), + [anon_sym_extern] = ACTIONS(2399), + [anon_sym_yield] = ACTIONS(2399), + [anon_sym_move] = ACTIONS(2399), + [anon_sym_try] = ACTIONS(2399), + [sym_integer_literal] = ACTIONS(2397), + [aux_sym_string_literal_token1] = ACTIONS(2397), + [sym_char_literal] = ACTIONS(2397), + [anon_sym_true] = ACTIONS(2399), + [anon_sym_false] = ACTIONS(2399), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2399), + [sym_super] = ACTIONS(2399), + [sym_crate] = ACTIONS(2399), + [sym_metavariable] = ACTIONS(2397), + [sym__raw_string_literal_start] = ACTIONS(2397), + [sym_float_literal] = ACTIONS(2397), }, [STATE(664)] = { [sym_line_comment] = STATE(664), [sym_block_comment] = STATE(664), - [ts_builtin_sym_end] = ACTIONS(2574), - [sym_identifier] = ACTIONS(2576), - [anon_sym_SEMI] = ACTIONS(2574), - [anon_sym_macro_rules_BANG] = ACTIONS(2574), - [anon_sym_LPAREN] = ACTIONS(2574), - [anon_sym_LBRACK] = ACTIONS(2574), - [anon_sym_LBRACE] = ACTIONS(2574), - [anon_sym_RBRACE] = ACTIONS(2574), - [anon_sym_STAR] = ACTIONS(2574), - [anon_sym_u8] = ACTIONS(2576), - [anon_sym_i8] = ACTIONS(2576), - [anon_sym_u16] = ACTIONS(2576), - [anon_sym_i16] = ACTIONS(2576), - [anon_sym_u32] = ACTIONS(2576), - [anon_sym_i32] = ACTIONS(2576), - [anon_sym_u64] = ACTIONS(2576), - [anon_sym_i64] = ACTIONS(2576), - [anon_sym_u128] = ACTIONS(2576), - [anon_sym_i128] = ACTIONS(2576), - [anon_sym_isize] = ACTIONS(2576), - [anon_sym_usize] = ACTIONS(2576), - [anon_sym_f32] = ACTIONS(2576), - [anon_sym_f64] = ACTIONS(2576), - [anon_sym_bool] = ACTIONS(2576), - [anon_sym_str] = ACTIONS(2576), - [anon_sym_char] = ACTIONS(2576), - [anon_sym_DASH] = ACTIONS(2574), - [anon_sym_BANG] = ACTIONS(2574), - [anon_sym_AMP] = ACTIONS(2574), - [anon_sym_PIPE] = ACTIONS(2574), - [anon_sym_LT] = ACTIONS(2574), - [anon_sym_DOT_DOT] = ACTIONS(2574), - [anon_sym_COLON_COLON] = ACTIONS(2574), - [anon_sym_POUND] = ACTIONS(2574), - [anon_sym_SQUOTE] = ACTIONS(2576), - [anon_sym_async] = ACTIONS(2576), - [anon_sym_break] = ACTIONS(2576), - [anon_sym_const] = ACTIONS(2576), - [anon_sym_continue] = ACTIONS(2576), - [anon_sym_default] = ACTIONS(2576), - [anon_sym_enum] = ACTIONS(2576), - [anon_sym_fn] = ACTIONS(2576), - [anon_sym_for] = ACTIONS(2576), - [anon_sym_gen] = ACTIONS(2576), - [anon_sym_if] = ACTIONS(2576), - [anon_sym_impl] = ACTIONS(2576), - [anon_sym_let] = ACTIONS(2576), - [anon_sym_loop] = ACTIONS(2576), - [anon_sym_match] = ACTIONS(2576), - [anon_sym_mod] = ACTIONS(2576), - [anon_sym_pub] = ACTIONS(2576), - [anon_sym_return] = ACTIONS(2576), - [anon_sym_static] = ACTIONS(2576), - [anon_sym_struct] = ACTIONS(2576), - [anon_sym_trait] = ACTIONS(2576), - [anon_sym_type] = ACTIONS(2576), - [anon_sym_union] = ACTIONS(2576), - [anon_sym_unsafe] = ACTIONS(2576), - [anon_sym_use] = ACTIONS(2576), - [anon_sym_while] = ACTIONS(2576), - [anon_sym_extern] = ACTIONS(2576), - [anon_sym_yield] = ACTIONS(2576), - [anon_sym_move] = ACTIONS(2576), - [anon_sym_try] = ACTIONS(2576), - [sym_integer_literal] = ACTIONS(2574), - [aux_sym_string_literal_token1] = ACTIONS(2574), - [sym_char_literal] = ACTIONS(2574), - [anon_sym_true] = ACTIONS(2576), - [anon_sym_false] = ACTIONS(2576), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2576), - [sym_super] = ACTIONS(2576), - [sym_crate] = ACTIONS(2576), - [sym_metavariable] = ACTIONS(2574), - [sym__raw_string_literal_start] = ACTIONS(2574), - [sym_float_literal] = ACTIONS(2574), + [ts_builtin_sym_end] = ACTIONS(2401), + [sym_identifier] = ACTIONS(2403), + [anon_sym_SEMI] = ACTIONS(2401), + [anon_sym_macro_rules_BANG] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2401), + [anon_sym_LBRACK] = ACTIONS(2401), + [anon_sym_LBRACE] = ACTIONS(2401), + [anon_sym_RBRACE] = ACTIONS(2401), + [anon_sym_STAR] = ACTIONS(2401), + [anon_sym_u8] = ACTIONS(2403), + [anon_sym_i8] = ACTIONS(2403), + [anon_sym_u16] = ACTIONS(2403), + [anon_sym_i16] = ACTIONS(2403), + [anon_sym_u32] = ACTIONS(2403), + [anon_sym_i32] = ACTIONS(2403), + [anon_sym_u64] = ACTIONS(2403), + [anon_sym_i64] = ACTIONS(2403), + [anon_sym_u128] = ACTIONS(2403), + [anon_sym_i128] = ACTIONS(2403), + [anon_sym_isize] = ACTIONS(2403), + [anon_sym_usize] = ACTIONS(2403), + [anon_sym_f32] = ACTIONS(2403), + [anon_sym_f64] = ACTIONS(2403), + [anon_sym_bool] = ACTIONS(2403), + [anon_sym_str] = ACTIONS(2403), + [anon_sym_char] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_BANG] = ACTIONS(2401), + [anon_sym_AMP] = ACTIONS(2401), + [anon_sym_PIPE] = ACTIONS(2401), + [anon_sym_LT] = ACTIONS(2401), + [anon_sym_DOT_DOT] = ACTIONS(2401), + [anon_sym_COLON_COLON] = ACTIONS(2401), + [anon_sym_POUND] = ACTIONS(2401), + [anon_sym_SQUOTE] = ACTIONS(2403), + [anon_sym_async] = ACTIONS(2403), + [anon_sym_break] = ACTIONS(2403), + [anon_sym_const] = ACTIONS(2403), + [anon_sym_continue] = ACTIONS(2403), + [anon_sym_default] = ACTIONS(2403), + [anon_sym_enum] = ACTIONS(2403), + [anon_sym_fn] = ACTIONS(2403), + [anon_sym_for] = ACTIONS(2403), + [anon_sym_gen] = ACTIONS(2403), + [anon_sym_if] = ACTIONS(2403), + [anon_sym_impl] = ACTIONS(2403), + [anon_sym_let] = ACTIONS(2403), + [anon_sym_loop] = ACTIONS(2403), + [anon_sym_match] = ACTIONS(2403), + [anon_sym_mod] = ACTIONS(2403), + [anon_sym_pub] = ACTIONS(2403), + [anon_sym_return] = ACTIONS(2403), + [anon_sym_static] = ACTIONS(2403), + [anon_sym_struct] = ACTIONS(2403), + [anon_sym_trait] = ACTIONS(2403), + [anon_sym_type] = ACTIONS(2403), + [anon_sym_union] = ACTIONS(2403), + [anon_sym_unsafe] = ACTIONS(2403), + [anon_sym_use] = ACTIONS(2403), + [anon_sym_while] = ACTIONS(2403), + [anon_sym_extern] = ACTIONS(2403), + [anon_sym_yield] = ACTIONS(2403), + [anon_sym_move] = ACTIONS(2403), + [anon_sym_try] = ACTIONS(2403), + [sym_integer_literal] = ACTIONS(2401), + [aux_sym_string_literal_token1] = ACTIONS(2401), + [sym_char_literal] = ACTIONS(2401), + [anon_sym_true] = ACTIONS(2403), + [anon_sym_false] = ACTIONS(2403), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2403), + [sym_super] = ACTIONS(2403), + [sym_crate] = ACTIONS(2403), + [sym_metavariable] = ACTIONS(2401), + [sym__raw_string_literal_start] = ACTIONS(2401), + [sym_float_literal] = ACTIONS(2401), }, [STATE(665)] = { [sym_line_comment] = STATE(665), [sym_block_comment] = STATE(665), - [ts_builtin_sym_end] = ACTIONS(2578), - [sym_identifier] = ACTIONS(2580), - [anon_sym_SEMI] = ACTIONS(2578), - [anon_sym_macro_rules_BANG] = ACTIONS(2578), - [anon_sym_LPAREN] = ACTIONS(2578), - [anon_sym_LBRACK] = ACTIONS(2578), - [anon_sym_LBRACE] = ACTIONS(2578), - [anon_sym_RBRACE] = ACTIONS(2578), - [anon_sym_STAR] = ACTIONS(2578), - [anon_sym_u8] = ACTIONS(2580), - [anon_sym_i8] = ACTIONS(2580), - [anon_sym_u16] = ACTIONS(2580), - [anon_sym_i16] = ACTIONS(2580), - [anon_sym_u32] = ACTIONS(2580), - [anon_sym_i32] = ACTIONS(2580), - [anon_sym_u64] = ACTIONS(2580), - [anon_sym_i64] = ACTIONS(2580), - [anon_sym_u128] = ACTIONS(2580), - [anon_sym_i128] = ACTIONS(2580), - [anon_sym_isize] = ACTIONS(2580), - [anon_sym_usize] = ACTIONS(2580), - [anon_sym_f32] = ACTIONS(2580), - [anon_sym_f64] = ACTIONS(2580), - [anon_sym_bool] = ACTIONS(2580), - [anon_sym_str] = ACTIONS(2580), - [anon_sym_char] = ACTIONS(2580), - [anon_sym_DASH] = ACTIONS(2578), - [anon_sym_BANG] = ACTIONS(2578), - [anon_sym_AMP] = ACTIONS(2578), - [anon_sym_PIPE] = ACTIONS(2578), - [anon_sym_LT] = ACTIONS(2578), - [anon_sym_DOT_DOT] = ACTIONS(2578), - [anon_sym_COLON_COLON] = ACTIONS(2578), - [anon_sym_POUND] = ACTIONS(2578), - [anon_sym_SQUOTE] = ACTIONS(2580), - [anon_sym_async] = ACTIONS(2580), - [anon_sym_break] = ACTIONS(2580), - [anon_sym_const] = ACTIONS(2580), - [anon_sym_continue] = ACTIONS(2580), - [anon_sym_default] = ACTIONS(2580), - [anon_sym_enum] = ACTIONS(2580), - [anon_sym_fn] = ACTIONS(2580), - [anon_sym_for] = ACTIONS(2580), - [anon_sym_gen] = ACTIONS(2580), - [anon_sym_if] = ACTIONS(2580), - [anon_sym_impl] = ACTIONS(2580), - [anon_sym_let] = ACTIONS(2580), - [anon_sym_loop] = ACTIONS(2580), - [anon_sym_match] = ACTIONS(2580), - [anon_sym_mod] = ACTIONS(2580), - [anon_sym_pub] = ACTIONS(2580), - [anon_sym_return] = ACTIONS(2580), - [anon_sym_static] = ACTIONS(2580), - [anon_sym_struct] = ACTIONS(2580), - [anon_sym_trait] = ACTIONS(2580), - [anon_sym_type] = ACTIONS(2580), - [anon_sym_union] = ACTIONS(2580), - [anon_sym_unsafe] = ACTIONS(2580), - [anon_sym_use] = ACTIONS(2580), - [anon_sym_while] = ACTIONS(2580), - [anon_sym_extern] = ACTIONS(2580), - [anon_sym_yield] = ACTIONS(2580), - [anon_sym_move] = ACTIONS(2580), - [anon_sym_try] = ACTIONS(2580), - [sym_integer_literal] = ACTIONS(2578), - [aux_sym_string_literal_token1] = ACTIONS(2578), - [sym_char_literal] = ACTIONS(2578), - [anon_sym_true] = ACTIONS(2580), - [anon_sym_false] = ACTIONS(2580), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2580), - [sym_super] = ACTIONS(2580), - [sym_crate] = ACTIONS(2580), - [sym_metavariable] = ACTIONS(2578), - [sym__raw_string_literal_start] = ACTIONS(2578), - [sym_float_literal] = ACTIONS(2578), + [ts_builtin_sym_end] = ACTIONS(2405), + [sym_identifier] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2405), + [anon_sym_macro_rules_BANG] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2405), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_RBRACE] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2405), + [anon_sym_u8] = ACTIONS(2407), + [anon_sym_i8] = ACTIONS(2407), + [anon_sym_u16] = ACTIONS(2407), + [anon_sym_i16] = ACTIONS(2407), + [anon_sym_u32] = ACTIONS(2407), + [anon_sym_i32] = ACTIONS(2407), + [anon_sym_u64] = ACTIONS(2407), + [anon_sym_i64] = ACTIONS(2407), + [anon_sym_u128] = ACTIONS(2407), + [anon_sym_i128] = ACTIONS(2407), + [anon_sym_isize] = ACTIONS(2407), + [anon_sym_usize] = ACTIONS(2407), + [anon_sym_f32] = ACTIONS(2407), + [anon_sym_f64] = ACTIONS(2407), + [anon_sym_bool] = ACTIONS(2407), + [anon_sym_str] = ACTIONS(2407), + [anon_sym_char] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_BANG] = ACTIONS(2405), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_PIPE] = ACTIONS(2405), + [anon_sym_LT] = ACTIONS(2405), + [anon_sym_DOT_DOT] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2405), + [anon_sym_POUND] = ACTIONS(2405), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_async] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(2407), + [anon_sym_const] = ACTIONS(2407), + [anon_sym_continue] = ACTIONS(2407), + [anon_sym_default] = ACTIONS(2407), + [anon_sym_enum] = ACTIONS(2407), + [anon_sym_fn] = ACTIONS(2407), + [anon_sym_for] = ACTIONS(2407), + [anon_sym_gen] = ACTIONS(2407), + [anon_sym_if] = ACTIONS(2407), + [anon_sym_impl] = ACTIONS(2407), + [anon_sym_let] = ACTIONS(2407), + [anon_sym_loop] = ACTIONS(2407), + [anon_sym_match] = ACTIONS(2407), + [anon_sym_mod] = ACTIONS(2407), + [anon_sym_pub] = ACTIONS(2407), + [anon_sym_return] = ACTIONS(2407), + [anon_sym_static] = ACTIONS(2407), + [anon_sym_struct] = ACTIONS(2407), + [anon_sym_trait] = ACTIONS(2407), + [anon_sym_type] = ACTIONS(2407), + [anon_sym_union] = ACTIONS(2407), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_use] = ACTIONS(2407), + [anon_sym_while] = ACTIONS(2407), + [anon_sym_extern] = ACTIONS(2407), + [anon_sym_yield] = ACTIONS(2407), + [anon_sym_move] = ACTIONS(2407), + [anon_sym_try] = ACTIONS(2407), + [sym_integer_literal] = ACTIONS(2405), + [aux_sym_string_literal_token1] = ACTIONS(2405), + [sym_char_literal] = ACTIONS(2405), + [anon_sym_true] = ACTIONS(2407), + [anon_sym_false] = ACTIONS(2407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2407), + [sym_super] = ACTIONS(2407), + [sym_crate] = ACTIONS(2407), + [sym_metavariable] = ACTIONS(2405), + [sym__raw_string_literal_start] = ACTIONS(2405), + [sym_float_literal] = ACTIONS(2405), }, [STATE(666)] = { [sym_line_comment] = STATE(666), [sym_block_comment] = STATE(666), - [ts_builtin_sym_end] = ACTIONS(2582), - [sym_identifier] = ACTIONS(2584), - [anon_sym_SEMI] = ACTIONS(2582), - [anon_sym_macro_rules_BANG] = ACTIONS(2582), - [anon_sym_LPAREN] = ACTIONS(2582), - [anon_sym_LBRACK] = ACTIONS(2582), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_RBRACE] = ACTIONS(2582), - [anon_sym_STAR] = ACTIONS(2582), - [anon_sym_u8] = ACTIONS(2584), - [anon_sym_i8] = ACTIONS(2584), - [anon_sym_u16] = ACTIONS(2584), - [anon_sym_i16] = ACTIONS(2584), - [anon_sym_u32] = ACTIONS(2584), - [anon_sym_i32] = ACTIONS(2584), - [anon_sym_u64] = ACTIONS(2584), - [anon_sym_i64] = ACTIONS(2584), - [anon_sym_u128] = ACTIONS(2584), - [anon_sym_i128] = ACTIONS(2584), - [anon_sym_isize] = ACTIONS(2584), - [anon_sym_usize] = ACTIONS(2584), - [anon_sym_f32] = ACTIONS(2584), - [anon_sym_f64] = ACTIONS(2584), - [anon_sym_bool] = ACTIONS(2584), - [anon_sym_str] = ACTIONS(2584), - [anon_sym_char] = ACTIONS(2584), - [anon_sym_DASH] = ACTIONS(2582), - [anon_sym_BANG] = ACTIONS(2582), - [anon_sym_AMP] = ACTIONS(2582), - [anon_sym_PIPE] = ACTIONS(2582), - [anon_sym_LT] = ACTIONS(2582), - [anon_sym_DOT_DOT] = ACTIONS(2582), - [anon_sym_COLON_COLON] = ACTIONS(2582), - [anon_sym_POUND] = ACTIONS(2582), - [anon_sym_SQUOTE] = ACTIONS(2584), - [anon_sym_async] = ACTIONS(2584), - [anon_sym_break] = ACTIONS(2584), - [anon_sym_const] = ACTIONS(2584), - [anon_sym_continue] = ACTIONS(2584), - [anon_sym_default] = ACTIONS(2584), - [anon_sym_enum] = ACTIONS(2584), - [anon_sym_fn] = ACTIONS(2584), - [anon_sym_for] = ACTIONS(2584), - [anon_sym_gen] = ACTIONS(2584), - [anon_sym_if] = ACTIONS(2584), - [anon_sym_impl] = ACTIONS(2584), - [anon_sym_let] = ACTIONS(2584), - [anon_sym_loop] = ACTIONS(2584), - [anon_sym_match] = ACTIONS(2584), - [anon_sym_mod] = ACTIONS(2584), - [anon_sym_pub] = ACTIONS(2584), - [anon_sym_return] = ACTIONS(2584), - [anon_sym_static] = ACTIONS(2584), - [anon_sym_struct] = ACTIONS(2584), - [anon_sym_trait] = ACTIONS(2584), - [anon_sym_type] = ACTIONS(2584), - [anon_sym_union] = ACTIONS(2584), - [anon_sym_unsafe] = ACTIONS(2584), - [anon_sym_use] = ACTIONS(2584), - [anon_sym_while] = ACTIONS(2584), - [anon_sym_extern] = ACTIONS(2584), - [anon_sym_yield] = ACTIONS(2584), - [anon_sym_move] = ACTIONS(2584), - [anon_sym_try] = ACTIONS(2584), - [sym_integer_literal] = ACTIONS(2582), - [aux_sym_string_literal_token1] = ACTIONS(2582), - [sym_char_literal] = ACTIONS(2582), - [anon_sym_true] = ACTIONS(2584), - [anon_sym_false] = ACTIONS(2584), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2584), - [sym_super] = ACTIONS(2584), - [sym_crate] = ACTIONS(2584), - [sym_metavariable] = ACTIONS(2582), - [sym__raw_string_literal_start] = ACTIONS(2582), - [sym_float_literal] = ACTIONS(2582), + [ts_builtin_sym_end] = ACTIONS(2409), + [sym_identifier] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2409), + [anon_sym_macro_rules_BANG] = ACTIONS(2409), + [anon_sym_LPAREN] = ACTIONS(2409), + [anon_sym_LBRACK] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(2409), + [anon_sym_RBRACE] = ACTIONS(2409), + [anon_sym_STAR] = ACTIONS(2409), + [anon_sym_u8] = ACTIONS(2411), + [anon_sym_i8] = ACTIONS(2411), + [anon_sym_u16] = ACTIONS(2411), + [anon_sym_i16] = ACTIONS(2411), + [anon_sym_u32] = ACTIONS(2411), + [anon_sym_i32] = ACTIONS(2411), + [anon_sym_u64] = ACTIONS(2411), + [anon_sym_i64] = ACTIONS(2411), + [anon_sym_u128] = ACTIONS(2411), + [anon_sym_i128] = ACTIONS(2411), + [anon_sym_isize] = ACTIONS(2411), + [anon_sym_usize] = ACTIONS(2411), + [anon_sym_f32] = ACTIONS(2411), + [anon_sym_f64] = ACTIONS(2411), + [anon_sym_bool] = ACTIONS(2411), + [anon_sym_str] = ACTIONS(2411), + [anon_sym_char] = ACTIONS(2411), + [anon_sym_DASH] = ACTIONS(2409), + [anon_sym_BANG] = ACTIONS(2409), + [anon_sym_AMP] = ACTIONS(2409), + [anon_sym_PIPE] = ACTIONS(2409), + [anon_sym_LT] = ACTIONS(2409), + [anon_sym_DOT_DOT] = ACTIONS(2409), + [anon_sym_COLON_COLON] = ACTIONS(2409), + [anon_sym_POUND] = ACTIONS(2409), + [anon_sym_SQUOTE] = ACTIONS(2411), + [anon_sym_async] = ACTIONS(2411), + [anon_sym_break] = ACTIONS(2411), + [anon_sym_const] = ACTIONS(2411), + [anon_sym_continue] = ACTIONS(2411), + [anon_sym_default] = ACTIONS(2411), + [anon_sym_enum] = ACTIONS(2411), + [anon_sym_fn] = ACTIONS(2411), + [anon_sym_for] = ACTIONS(2411), + [anon_sym_gen] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(2411), + [anon_sym_impl] = ACTIONS(2411), + [anon_sym_let] = ACTIONS(2411), + [anon_sym_loop] = ACTIONS(2411), + [anon_sym_match] = ACTIONS(2411), + [anon_sym_mod] = ACTIONS(2411), + [anon_sym_pub] = ACTIONS(2411), + [anon_sym_return] = ACTIONS(2411), + [anon_sym_static] = ACTIONS(2411), + [anon_sym_struct] = ACTIONS(2411), + [anon_sym_trait] = ACTIONS(2411), + [anon_sym_type] = ACTIONS(2411), + [anon_sym_union] = ACTIONS(2411), + [anon_sym_unsafe] = ACTIONS(2411), + [anon_sym_use] = ACTIONS(2411), + [anon_sym_while] = ACTIONS(2411), + [anon_sym_extern] = ACTIONS(2411), + [anon_sym_yield] = ACTIONS(2411), + [anon_sym_move] = ACTIONS(2411), + [anon_sym_try] = ACTIONS(2411), + [sym_integer_literal] = ACTIONS(2409), + [aux_sym_string_literal_token1] = ACTIONS(2409), + [sym_char_literal] = ACTIONS(2409), + [anon_sym_true] = ACTIONS(2411), + [anon_sym_false] = ACTIONS(2411), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2411), + [sym_super] = ACTIONS(2411), + [sym_crate] = ACTIONS(2411), + [sym_metavariable] = ACTIONS(2409), + [sym__raw_string_literal_start] = ACTIONS(2409), + [sym_float_literal] = ACTIONS(2409), }, [STATE(667)] = { [sym_line_comment] = STATE(667), [sym_block_comment] = STATE(667), - [ts_builtin_sym_end] = ACTIONS(2586), - [sym_identifier] = ACTIONS(2588), - [anon_sym_SEMI] = ACTIONS(2586), - [anon_sym_macro_rules_BANG] = ACTIONS(2586), - [anon_sym_LPAREN] = ACTIONS(2586), - [anon_sym_LBRACK] = ACTIONS(2586), - [anon_sym_LBRACE] = ACTIONS(2586), - [anon_sym_RBRACE] = ACTIONS(2586), - [anon_sym_STAR] = ACTIONS(2586), - [anon_sym_u8] = ACTIONS(2588), - [anon_sym_i8] = ACTIONS(2588), - [anon_sym_u16] = ACTIONS(2588), - [anon_sym_i16] = ACTIONS(2588), - [anon_sym_u32] = ACTIONS(2588), - [anon_sym_i32] = ACTIONS(2588), - [anon_sym_u64] = ACTIONS(2588), - [anon_sym_i64] = ACTIONS(2588), - [anon_sym_u128] = ACTIONS(2588), - [anon_sym_i128] = ACTIONS(2588), - [anon_sym_isize] = ACTIONS(2588), - [anon_sym_usize] = ACTIONS(2588), - [anon_sym_f32] = ACTIONS(2588), - [anon_sym_f64] = ACTIONS(2588), - [anon_sym_bool] = ACTIONS(2588), - [anon_sym_str] = ACTIONS(2588), - [anon_sym_char] = ACTIONS(2588), - [anon_sym_DASH] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(2586), - [anon_sym_AMP] = ACTIONS(2586), - [anon_sym_PIPE] = ACTIONS(2586), - [anon_sym_LT] = ACTIONS(2586), - [anon_sym_DOT_DOT] = ACTIONS(2586), - [anon_sym_COLON_COLON] = ACTIONS(2586), - [anon_sym_POUND] = ACTIONS(2586), - [anon_sym_SQUOTE] = ACTIONS(2588), - [anon_sym_async] = ACTIONS(2588), - [anon_sym_break] = ACTIONS(2588), - [anon_sym_const] = ACTIONS(2588), - [anon_sym_continue] = ACTIONS(2588), - [anon_sym_default] = ACTIONS(2588), - [anon_sym_enum] = ACTIONS(2588), - [anon_sym_fn] = ACTIONS(2588), - [anon_sym_for] = ACTIONS(2588), - [anon_sym_gen] = ACTIONS(2588), - [anon_sym_if] = ACTIONS(2588), - [anon_sym_impl] = ACTIONS(2588), - [anon_sym_let] = ACTIONS(2588), - [anon_sym_loop] = ACTIONS(2588), - [anon_sym_match] = ACTIONS(2588), - [anon_sym_mod] = ACTIONS(2588), - [anon_sym_pub] = ACTIONS(2588), - [anon_sym_return] = ACTIONS(2588), - [anon_sym_static] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(2588), - [anon_sym_trait] = ACTIONS(2588), - [anon_sym_type] = ACTIONS(2588), - [anon_sym_union] = ACTIONS(2588), - [anon_sym_unsafe] = ACTIONS(2588), - [anon_sym_use] = ACTIONS(2588), - [anon_sym_while] = ACTIONS(2588), - [anon_sym_extern] = ACTIONS(2588), - [anon_sym_yield] = ACTIONS(2588), - [anon_sym_move] = ACTIONS(2588), - [anon_sym_try] = ACTIONS(2588), - [sym_integer_literal] = ACTIONS(2586), - [aux_sym_string_literal_token1] = ACTIONS(2586), - [sym_char_literal] = ACTIONS(2586), - [anon_sym_true] = ACTIONS(2588), - [anon_sym_false] = ACTIONS(2588), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2588), - [sym_super] = ACTIONS(2588), - [sym_crate] = ACTIONS(2588), - [sym_metavariable] = ACTIONS(2586), - [sym__raw_string_literal_start] = ACTIONS(2586), - [sym_float_literal] = ACTIONS(2586), + [ts_builtin_sym_end] = ACTIONS(2413), + [sym_identifier] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(2413), + [anon_sym_macro_rules_BANG] = ACTIONS(2413), + [anon_sym_LPAREN] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2413), + [anon_sym_LBRACE] = ACTIONS(2413), + [anon_sym_RBRACE] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(2413), + [anon_sym_u8] = ACTIONS(2415), + [anon_sym_i8] = ACTIONS(2415), + [anon_sym_u16] = ACTIONS(2415), + [anon_sym_i16] = ACTIONS(2415), + [anon_sym_u32] = ACTIONS(2415), + [anon_sym_i32] = ACTIONS(2415), + [anon_sym_u64] = ACTIONS(2415), + [anon_sym_i64] = ACTIONS(2415), + [anon_sym_u128] = ACTIONS(2415), + [anon_sym_i128] = ACTIONS(2415), + [anon_sym_isize] = ACTIONS(2415), + [anon_sym_usize] = ACTIONS(2415), + [anon_sym_f32] = ACTIONS(2415), + [anon_sym_f64] = ACTIONS(2415), + [anon_sym_bool] = ACTIONS(2415), + [anon_sym_str] = ACTIONS(2415), + [anon_sym_char] = ACTIONS(2415), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_PIPE] = ACTIONS(2413), + [anon_sym_LT] = ACTIONS(2413), + [anon_sym_DOT_DOT] = ACTIONS(2413), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_POUND] = ACTIONS(2413), + [anon_sym_SQUOTE] = ACTIONS(2415), + [anon_sym_async] = ACTIONS(2415), + [anon_sym_break] = ACTIONS(2415), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_continue] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2415), + [anon_sym_enum] = ACTIONS(2415), + [anon_sym_fn] = ACTIONS(2415), + [anon_sym_for] = ACTIONS(2415), + [anon_sym_gen] = ACTIONS(2415), + [anon_sym_if] = ACTIONS(2415), + [anon_sym_impl] = ACTIONS(2415), + [anon_sym_let] = ACTIONS(2415), + [anon_sym_loop] = ACTIONS(2415), + [anon_sym_match] = ACTIONS(2415), + [anon_sym_mod] = ACTIONS(2415), + [anon_sym_pub] = ACTIONS(2415), + [anon_sym_return] = ACTIONS(2415), + [anon_sym_static] = ACTIONS(2415), + [anon_sym_struct] = ACTIONS(2415), + [anon_sym_trait] = ACTIONS(2415), + [anon_sym_type] = ACTIONS(2415), + [anon_sym_union] = ACTIONS(2415), + [anon_sym_unsafe] = ACTIONS(2415), + [anon_sym_use] = ACTIONS(2415), + [anon_sym_while] = ACTIONS(2415), + [anon_sym_extern] = ACTIONS(2415), + [anon_sym_yield] = ACTIONS(2415), + [anon_sym_move] = ACTIONS(2415), + [anon_sym_try] = ACTIONS(2415), + [sym_integer_literal] = ACTIONS(2413), + [aux_sym_string_literal_token1] = ACTIONS(2413), + [sym_char_literal] = ACTIONS(2413), + [anon_sym_true] = ACTIONS(2415), + [anon_sym_false] = ACTIONS(2415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2415), + [sym_super] = ACTIONS(2415), + [sym_crate] = ACTIONS(2415), + [sym_metavariable] = ACTIONS(2413), + [sym__raw_string_literal_start] = ACTIONS(2413), + [sym_float_literal] = ACTIONS(2413), }, [STATE(668)] = { [sym_line_comment] = STATE(668), [sym_block_comment] = STATE(668), - [ts_builtin_sym_end] = ACTIONS(2590), - [sym_identifier] = ACTIONS(2592), - [anon_sym_SEMI] = ACTIONS(2590), - [anon_sym_macro_rules_BANG] = ACTIONS(2590), - [anon_sym_LPAREN] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(2590), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_RBRACE] = ACTIONS(2590), - [anon_sym_STAR] = ACTIONS(2590), - [anon_sym_u8] = ACTIONS(2592), - [anon_sym_i8] = ACTIONS(2592), - [anon_sym_u16] = ACTIONS(2592), - [anon_sym_i16] = ACTIONS(2592), - [anon_sym_u32] = ACTIONS(2592), - [anon_sym_i32] = ACTIONS(2592), - [anon_sym_u64] = ACTIONS(2592), - [anon_sym_i64] = ACTIONS(2592), - [anon_sym_u128] = ACTIONS(2592), - [anon_sym_i128] = ACTIONS(2592), - [anon_sym_isize] = ACTIONS(2592), - [anon_sym_usize] = ACTIONS(2592), - [anon_sym_f32] = ACTIONS(2592), - [anon_sym_f64] = ACTIONS(2592), - [anon_sym_bool] = ACTIONS(2592), - [anon_sym_str] = ACTIONS(2592), - [anon_sym_char] = ACTIONS(2592), - [anon_sym_DASH] = ACTIONS(2590), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_AMP] = ACTIONS(2590), - [anon_sym_PIPE] = ACTIONS(2590), - [anon_sym_LT] = ACTIONS(2590), - [anon_sym_DOT_DOT] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(2590), - [anon_sym_POUND] = ACTIONS(2590), - [anon_sym_SQUOTE] = ACTIONS(2592), - [anon_sym_async] = ACTIONS(2592), - [anon_sym_break] = ACTIONS(2592), - [anon_sym_const] = ACTIONS(2592), - [anon_sym_continue] = ACTIONS(2592), - [anon_sym_default] = ACTIONS(2592), - [anon_sym_enum] = ACTIONS(2592), - [anon_sym_fn] = ACTIONS(2592), - [anon_sym_for] = ACTIONS(2592), - [anon_sym_gen] = ACTIONS(2592), - [anon_sym_if] = ACTIONS(2592), - [anon_sym_impl] = ACTIONS(2592), - [anon_sym_let] = ACTIONS(2592), - [anon_sym_loop] = ACTIONS(2592), - [anon_sym_match] = ACTIONS(2592), - [anon_sym_mod] = ACTIONS(2592), - [anon_sym_pub] = ACTIONS(2592), - [anon_sym_return] = ACTIONS(2592), - [anon_sym_static] = ACTIONS(2592), - [anon_sym_struct] = ACTIONS(2592), - [anon_sym_trait] = ACTIONS(2592), - [anon_sym_type] = ACTIONS(2592), - [anon_sym_union] = ACTIONS(2592), - [anon_sym_unsafe] = ACTIONS(2592), - [anon_sym_use] = ACTIONS(2592), - [anon_sym_while] = ACTIONS(2592), - [anon_sym_extern] = ACTIONS(2592), - [anon_sym_yield] = ACTIONS(2592), - [anon_sym_move] = ACTIONS(2592), - [anon_sym_try] = ACTIONS(2592), - [sym_integer_literal] = ACTIONS(2590), - [aux_sym_string_literal_token1] = ACTIONS(2590), - [sym_char_literal] = ACTIONS(2590), - [anon_sym_true] = ACTIONS(2592), - [anon_sym_false] = ACTIONS(2592), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2592), - [sym_super] = ACTIONS(2592), - [sym_crate] = ACTIONS(2592), - [sym_metavariable] = ACTIONS(2590), - [sym__raw_string_literal_start] = ACTIONS(2590), - [sym_float_literal] = ACTIONS(2590), + [ts_builtin_sym_end] = ACTIONS(2417), + [sym_identifier] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2417), + [anon_sym_macro_rules_BANG] = ACTIONS(2417), + [anon_sym_LPAREN] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(2417), + [anon_sym_LBRACE] = ACTIONS(2417), + [anon_sym_RBRACE] = ACTIONS(2417), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_u8] = ACTIONS(2419), + [anon_sym_i8] = ACTIONS(2419), + [anon_sym_u16] = ACTIONS(2419), + [anon_sym_i16] = ACTIONS(2419), + [anon_sym_u32] = ACTIONS(2419), + [anon_sym_i32] = ACTIONS(2419), + [anon_sym_u64] = ACTIONS(2419), + [anon_sym_i64] = ACTIONS(2419), + [anon_sym_u128] = ACTIONS(2419), + [anon_sym_i128] = ACTIONS(2419), + [anon_sym_isize] = ACTIONS(2419), + [anon_sym_usize] = ACTIONS(2419), + [anon_sym_f32] = ACTIONS(2419), + [anon_sym_f64] = ACTIONS(2419), + [anon_sym_bool] = ACTIONS(2419), + [anon_sym_str] = ACTIONS(2419), + [anon_sym_char] = ACTIONS(2419), + [anon_sym_DASH] = ACTIONS(2417), + [anon_sym_BANG] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_PIPE] = ACTIONS(2417), + [anon_sym_LT] = ACTIONS(2417), + [anon_sym_DOT_DOT] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(2417), + [anon_sym_POUND] = ACTIONS(2417), + [anon_sym_SQUOTE] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_break] = ACTIONS(2419), + [anon_sym_const] = ACTIONS(2419), + [anon_sym_continue] = ACTIONS(2419), + [anon_sym_default] = ACTIONS(2419), + [anon_sym_enum] = ACTIONS(2419), + [anon_sym_fn] = ACTIONS(2419), + [anon_sym_for] = ACTIONS(2419), + [anon_sym_gen] = ACTIONS(2419), + [anon_sym_if] = ACTIONS(2419), + [anon_sym_impl] = ACTIONS(2419), + [anon_sym_let] = ACTIONS(2419), + [anon_sym_loop] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_mod] = ACTIONS(2419), + [anon_sym_pub] = ACTIONS(2419), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_static] = ACTIONS(2419), + [anon_sym_struct] = ACTIONS(2419), + [anon_sym_trait] = ACTIONS(2419), + [anon_sym_type] = ACTIONS(2419), + [anon_sym_union] = ACTIONS(2419), + [anon_sym_unsafe] = ACTIONS(2419), + [anon_sym_use] = ACTIONS(2419), + [anon_sym_while] = ACTIONS(2419), + [anon_sym_extern] = ACTIONS(2419), + [anon_sym_yield] = ACTIONS(2419), + [anon_sym_move] = ACTIONS(2419), + [anon_sym_try] = ACTIONS(2419), + [sym_integer_literal] = ACTIONS(2417), + [aux_sym_string_literal_token1] = ACTIONS(2417), + [sym_char_literal] = ACTIONS(2417), + [anon_sym_true] = ACTIONS(2419), + [anon_sym_false] = ACTIONS(2419), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2417), + [sym__raw_string_literal_start] = ACTIONS(2417), + [sym_float_literal] = ACTIONS(2417), }, [STATE(669)] = { [sym_line_comment] = STATE(669), [sym_block_comment] = STATE(669), - [ts_builtin_sym_end] = ACTIONS(2594), - [sym_identifier] = ACTIONS(2596), - [anon_sym_SEMI] = ACTIONS(2594), - [anon_sym_macro_rules_BANG] = ACTIONS(2594), - [anon_sym_LPAREN] = ACTIONS(2594), - [anon_sym_LBRACK] = ACTIONS(2594), - [anon_sym_LBRACE] = ACTIONS(2594), - [anon_sym_RBRACE] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2594), - [anon_sym_u8] = ACTIONS(2596), - [anon_sym_i8] = ACTIONS(2596), - [anon_sym_u16] = ACTIONS(2596), - [anon_sym_i16] = ACTIONS(2596), - [anon_sym_u32] = ACTIONS(2596), - [anon_sym_i32] = ACTIONS(2596), - [anon_sym_u64] = ACTIONS(2596), - [anon_sym_i64] = ACTIONS(2596), - [anon_sym_u128] = ACTIONS(2596), - [anon_sym_i128] = ACTIONS(2596), - [anon_sym_isize] = ACTIONS(2596), - [anon_sym_usize] = ACTIONS(2596), - [anon_sym_f32] = ACTIONS(2596), - [anon_sym_f64] = ACTIONS(2596), - [anon_sym_bool] = ACTIONS(2596), - [anon_sym_str] = ACTIONS(2596), - [anon_sym_char] = ACTIONS(2596), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_BANG] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2594), - [anon_sym_PIPE] = ACTIONS(2594), - [anon_sym_LT] = ACTIONS(2594), - [anon_sym_DOT_DOT] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(2594), - [anon_sym_POUND] = ACTIONS(2594), - [anon_sym_SQUOTE] = ACTIONS(2596), - [anon_sym_async] = ACTIONS(2596), - [anon_sym_break] = ACTIONS(2596), - [anon_sym_const] = ACTIONS(2596), - [anon_sym_continue] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2596), - [anon_sym_enum] = ACTIONS(2596), - [anon_sym_fn] = ACTIONS(2596), - [anon_sym_for] = ACTIONS(2596), - [anon_sym_gen] = ACTIONS(2596), - [anon_sym_if] = ACTIONS(2596), - [anon_sym_impl] = ACTIONS(2596), - [anon_sym_let] = ACTIONS(2596), - [anon_sym_loop] = ACTIONS(2596), - [anon_sym_match] = ACTIONS(2596), - [anon_sym_mod] = ACTIONS(2596), - [anon_sym_pub] = ACTIONS(2596), - [anon_sym_return] = ACTIONS(2596), - [anon_sym_static] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(2596), - [anon_sym_trait] = ACTIONS(2596), - [anon_sym_type] = ACTIONS(2596), - [anon_sym_union] = ACTIONS(2596), - [anon_sym_unsafe] = ACTIONS(2596), - [anon_sym_use] = ACTIONS(2596), - [anon_sym_while] = ACTIONS(2596), - [anon_sym_extern] = ACTIONS(2596), - [anon_sym_yield] = ACTIONS(2596), - [anon_sym_move] = ACTIONS(2596), - [anon_sym_try] = ACTIONS(2596), - [sym_integer_literal] = ACTIONS(2594), - [aux_sym_string_literal_token1] = ACTIONS(2594), - [sym_char_literal] = ACTIONS(2594), - [anon_sym_true] = ACTIONS(2596), - [anon_sym_false] = ACTIONS(2596), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2596), - [sym_super] = ACTIONS(2596), - [sym_crate] = ACTIONS(2596), - [sym_metavariable] = ACTIONS(2594), - [sym__raw_string_literal_start] = ACTIONS(2594), - [sym_float_literal] = ACTIONS(2594), + [ts_builtin_sym_end] = ACTIONS(2421), + [sym_identifier] = ACTIONS(2423), + [anon_sym_SEMI] = ACTIONS(2421), + [anon_sym_macro_rules_BANG] = ACTIONS(2421), + [anon_sym_LPAREN] = ACTIONS(2421), + [anon_sym_LBRACK] = ACTIONS(2421), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_RBRACE] = ACTIONS(2421), + [anon_sym_STAR] = ACTIONS(2421), + [anon_sym_u8] = ACTIONS(2423), + [anon_sym_i8] = ACTIONS(2423), + [anon_sym_u16] = ACTIONS(2423), + [anon_sym_i16] = ACTIONS(2423), + [anon_sym_u32] = ACTIONS(2423), + [anon_sym_i32] = ACTIONS(2423), + [anon_sym_u64] = ACTIONS(2423), + [anon_sym_i64] = ACTIONS(2423), + [anon_sym_u128] = ACTIONS(2423), + [anon_sym_i128] = ACTIONS(2423), + [anon_sym_isize] = ACTIONS(2423), + [anon_sym_usize] = ACTIONS(2423), + [anon_sym_f32] = ACTIONS(2423), + [anon_sym_f64] = ACTIONS(2423), + [anon_sym_bool] = ACTIONS(2423), + [anon_sym_str] = ACTIONS(2423), + [anon_sym_char] = ACTIONS(2423), + [anon_sym_DASH] = ACTIONS(2421), + [anon_sym_BANG] = ACTIONS(2421), + [anon_sym_AMP] = ACTIONS(2421), + [anon_sym_PIPE] = ACTIONS(2421), + [anon_sym_LT] = ACTIONS(2421), + [anon_sym_DOT_DOT] = ACTIONS(2421), + [anon_sym_COLON_COLON] = ACTIONS(2421), + [anon_sym_POUND] = ACTIONS(2421), + [anon_sym_SQUOTE] = ACTIONS(2423), + [anon_sym_async] = ACTIONS(2423), + [anon_sym_break] = ACTIONS(2423), + [anon_sym_const] = ACTIONS(2423), + [anon_sym_continue] = ACTIONS(2423), + [anon_sym_default] = ACTIONS(2423), + [anon_sym_enum] = ACTIONS(2423), + [anon_sym_fn] = ACTIONS(2423), + [anon_sym_for] = ACTIONS(2423), + [anon_sym_gen] = ACTIONS(2423), + [anon_sym_if] = ACTIONS(2423), + [anon_sym_impl] = ACTIONS(2423), + [anon_sym_let] = ACTIONS(2423), + [anon_sym_loop] = ACTIONS(2423), + [anon_sym_match] = ACTIONS(2423), + [anon_sym_mod] = ACTIONS(2423), + [anon_sym_pub] = ACTIONS(2423), + [anon_sym_return] = ACTIONS(2423), + [anon_sym_static] = ACTIONS(2423), + [anon_sym_struct] = ACTIONS(2423), + [anon_sym_trait] = ACTIONS(2423), + [anon_sym_type] = ACTIONS(2423), + [anon_sym_union] = ACTIONS(2423), + [anon_sym_unsafe] = ACTIONS(2423), + [anon_sym_use] = ACTIONS(2423), + [anon_sym_while] = ACTIONS(2423), + [anon_sym_extern] = ACTIONS(2423), + [anon_sym_yield] = ACTIONS(2423), + [anon_sym_move] = ACTIONS(2423), + [anon_sym_try] = ACTIONS(2423), + [sym_integer_literal] = ACTIONS(2421), + [aux_sym_string_literal_token1] = ACTIONS(2421), + [sym_char_literal] = ACTIONS(2421), + [anon_sym_true] = ACTIONS(2423), + [anon_sym_false] = ACTIONS(2423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2423), + [sym_super] = ACTIONS(2423), + [sym_crate] = ACTIONS(2423), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(2421), + [sym_float_literal] = ACTIONS(2421), }, [STATE(670)] = { [sym_line_comment] = STATE(670), [sym_block_comment] = STATE(670), - [ts_builtin_sym_end] = ACTIONS(2598), - [sym_identifier] = ACTIONS(2600), - [anon_sym_SEMI] = ACTIONS(2598), - [anon_sym_macro_rules_BANG] = ACTIONS(2598), - [anon_sym_LPAREN] = ACTIONS(2598), - [anon_sym_LBRACK] = ACTIONS(2598), - [anon_sym_LBRACE] = ACTIONS(2598), - [anon_sym_RBRACE] = ACTIONS(2598), - [anon_sym_STAR] = ACTIONS(2598), - [anon_sym_u8] = ACTIONS(2600), - [anon_sym_i8] = ACTIONS(2600), - [anon_sym_u16] = ACTIONS(2600), - [anon_sym_i16] = ACTIONS(2600), - [anon_sym_u32] = ACTIONS(2600), - [anon_sym_i32] = ACTIONS(2600), - [anon_sym_u64] = ACTIONS(2600), - [anon_sym_i64] = ACTIONS(2600), - [anon_sym_u128] = ACTIONS(2600), - [anon_sym_i128] = ACTIONS(2600), - [anon_sym_isize] = ACTIONS(2600), - [anon_sym_usize] = ACTIONS(2600), - [anon_sym_f32] = ACTIONS(2600), - [anon_sym_f64] = ACTIONS(2600), - [anon_sym_bool] = ACTIONS(2600), - [anon_sym_str] = ACTIONS(2600), - [anon_sym_char] = ACTIONS(2600), - [anon_sym_DASH] = ACTIONS(2598), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_AMP] = ACTIONS(2598), - [anon_sym_PIPE] = ACTIONS(2598), - [anon_sym_LT] = ACTIONS(2598), - [anon_sym_DOT_DOT] = ACTIONS(2598), - [anon_sym_COLON_COLON] = ACTIONS(2598), - [anon_sym_POUND] = ACTIONS(2598), - [anon_sym_SQUOTE] = ACTIONS(2600), - [anon_sym_async] = ACTIONS(2600), - [anon_sym_break] = ACTIONS(2600), - [anon_sym_const] = ACTIONS(2600), - [anon_sym_continue] = ACTIONS(2600), - [anon_sym_default] = ACTIONS(2600), - [anon_sym_enum] = ACTIONS(2600), - [anon_sym_fn] = ACTIONS(2600), - [anon_sym_for] = ACTIONS(2600), - [anon_sym_gen] = ACTIONS(2600), - [anon_sym_if] = ACTIONS(2600), - [anon_sym_impl] = ACTIONS(2600), - [anon_sym_let] = ACTIONS(2600), - [anon_sym_loop] = ACTIONS(2600), - [anon_sym_match] = ACTIONS(2600), - [anon_sym_mod] = ACTIONS(2600), - [anon_sym_pub] = ACTIONS(2600), - [anon_sym_return] = ACTIONS(2600), - [anon_sym_static] = ACTIONS(2600), - [anon_sym_struct] = ACTIONS(2600), - [anon_sym_trait] = ACTIONS(2600), - [anon_sym_type] = ACTIONS(2600), - [anon_sym_union] = ACTIONS(2600), - [anon_sym_unsafe] = ACTIONS(2600), - [anon_sym_use] = ACTIONS(2600), - [anon_sym_while] = ACTIONS(2600), - [anon_sym_extern] = ACTIONS(2600), - [anon_sym_yield] = ACTIONS(2600), - [anon_sym_move] = ACTIONS(2600), - [anon_sym_try] = ACTIONS(2600), - [sym_integer_literal] = ACTIONS(2598), - [aux_sym_string_literal_token1] = ACTIONS(2598), - [sym_char_literal] = ACTIONS(2598), - [anon_sym_true] = ACTIONS(2600), - [anon_sym_false] = ACTIONS(2600), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2600), - [sym_super] = ACTIONS(2600), - [sym_crate] = ACTIONS(2600), - [sym_metavariable] = ACTIONS(2598), - [sym__raw_string_literal_start] = ACTIONS(2598), - [sym_float_literal] = ACTIONS(2598), + [ts_builtin_sym_end] = ACTIONS(2425), + [sym_identifier] = ACTIONS(2427), + [anon_sym_SEMI] = ACTIONS(2425), + [anon_sym_macro_rules_BANG] = ACTIONS(2425), + [anon_sym_LPAREN] = ACTIONS(2425), + [anon_sym_LBRACK] = ACTIONS(2425), + [anon_sym_LBRACE] = ACTIONS(2425), + [anon_sym_RBRACE] = ACTIONS(2425), + [anon_sym_STAR] = ACTIONS(2425), + [anon_sym_u8] = ACTIONS(2427), + [anon_sym_i8] = ACTIONS(2427), + [anon_sym_u16] = ACTIONS(2427), + [anon_sym_i16] = ACTIONS(2427), + [anon_sym_u32] = ACTIONS(2427), + [anon_sym_i32] = ACTIONS(2427), + [anon_sym_u64] = ACTIONS(2427), + [anon_sym_i64] = ACTIONS(2427), + [anon_sym_u128] = ACTIONS(2427), + [anon_sym_i128] = ACTIONS(2427), + [anon_sym_isize] = ACTIONS(2427), + [anon_sym_usize] = ACTIONS(2427), + [anon_sym_f32] = ACTIONS(2427), + [anon_sym_f64] = ACTIONS(2427), + [anon_sym_bool] = ACTIONS(2427), + [anon_sym_str] = ACTIONS(2427), + [anon_sym_char] = ACTIONS(2427), + [anon_sym_DASH] = ACTIONS(2425), + [anon_sym_BANG] = ACTIONS(2425), + [anon_sym_AMP] = ACTIONS(2425), + [anon_sym_PIPE] = ACTIONS(2425), + [anon_sym_LT] = ACTIONS(2425), + [anon_sym_DOT_DOT] = ACTIONS(2425), + [anon_sym_COLON_COLON] = ACTIONS(2425), + [anon_sym_POUND] = ACTIONS(2425), + [anon_sym_SQUOTE] = ACTIONS(2427), + [anon_sym_async] = ACTIONS(2427), + [anon_sym_break] = ACTIONS(2427), + [anon_sym_const] = ACTIONS(2427), + [anon_sym_continue] = ACTIONS(2427), + [anon_sym_default] = ACTIONS(2427), + [anon_sym_enum] = ACTIONS(2427), + [anon_sym_fn] = ACTIONS(2427), + [anon_sym_for] = ACTIONS(2427), + [anon_sym_gen] = ACTIONS(2427), + [anon_sym_if] = ACTIONS(2427), + [anon_sym_impl] = ACTIONS(2427), + [anon_sym_let] = ACTIONS(2427), + [anon_sym_loop] = ACTIONS(2427), + [anon_sym_match] = ACTIONS(2427), + [anon_sym_mod] = ACTIONS(2427), + [anon_sym_pub] = ACTIONS(2427), + [anon_sym_return] = ACTIONS(2427), + [anon_sym_static] = ACTIONS(2427), + [anon_sym_struct] = ACTIONS(2427), + [anon_sym_trait] = ACTIONS(2427), + [anon_sym_type] = ACTIONS(2427), + [anon_sym_union] = ACTIONS(2427), + [anon_sym_unsafe] = ACTIONS(2427), + [anon_sym_use] = ACTIONS(2427), + [anon_sym_while] = ACTIONS(2427), + [anon_sym_extern] = ACTIONS(2427), + [anon_sym_yield] = ACTIONS(2427), + [anon_sym_move] = ACTIONS(2427), + [anon_sym_try] = ACTIONS(2427), + [sym_integer_literal] = ACTIONS(2425), + [aux_sym_string_literal_token1] = ACTIONS(2425), + [sym_char_literal] = ACTIONS(2425), + [anon_sym_true] = ACTIONS(2427), + [anon_sym_false] = ACTIONS(2427), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2427), + [sym_super] = ACTIONS(2427), + [sym_crate] = ACTIONS(2427), + [sym_metavariable] = ACTIONS(2425), + [sym__raw_string_literal_start] = ACTIONS(2425), + [sym_float_literal] = ACTIONS(2425), }, [STATE(671)] = { [sym_line_comment] = STATE(671), [sym_block_comment] = STATE(671), - [ts_builtin_sym_end] = ACTIONS(2602), - [sym_identifier] = ACTIONS(2604), - [anon_sym_SEMI] = ACTIONS(2602), - [anon_sym_macro_rules_BANG] = ACTIONS(2602), - [anon_sym_LPAREN] = ACTIONS(2602), - [anon_sym_LBRACK] = ACTIONS(2602), - [anon_sym_LBRACE] = ACTIONS(2602), - [anon_sym_RBRACE] = ACTIONS(2602), - [anon_sym_STAR] = ACTIONS(2602), - [anon_sym_u8] = ACTIONS(2604), - [anon_sym_i8] = ACTIONS(2604), - [anon_sym_u16] = ACTIONS(2604), - [anon_sym_i16] = ACTIONS(2604), - [anon_sym_u32] = ACTIONS(2604), - [anon_sym_i32] = ACTIONS(2604), - [anon_sym_u64] = ACTIONS(2604), - [anon_sym_i64] = ACTIONS(2604), - [anon_sym_u128] = ACTIONS(2604), - [anon_sym_i128] = ACTIONS(2604), - [anon_sym_isize] = ACTIONS(2604), - [anon_sym_usize] = ACTIONS(2604), - [anon_sym_f32] = ACTIONS(2604), - [anon_sym_f64] = ACTIONS(2604), - [anon_sym_bool] = ACTIONS(2604), - [anon_sym_str] = ACTIONS(2604), - [anon_sym_char] = ACTIONS(2604), - [anon_sym_DASH] = ACTIONS(2602), - [anon_sym_BANG] = ACTIONS(2602), - [anon_sym_AMP] = ACTIONS(2602), - [anon_sym_PIPE] = ACTIONS(2602), - [anon_sym_LT] = ACTIONS(2602), - [anon_sym_DOT_DOT] = ACTIONS(2602), - [anon_sym_COLON_COLON] = ACTIONS(2602), - [anon_sym_POUND] = ACTIONS(2602), - [anon_sym_SQUOTE] = ACTIONS(2604), - [anon_sym_async] = ACTIONS(2604), - [anon_sym_break] = ACTIONS(2604), - [anon_sym_const] = ACTIONS(2604), - [anon_sym_continue] = ACTIONS(2604), - [anon_sym_default] = ACTIONS(2604), - [anon_sym_enum] = ACTIONS(2604), - [anon_sym_fn] = ACTIONS(2604), - [anon_sym_for] = ACTIONS(2604), - [anon_sym_gen] = ACTIONS(2604), - [anon_sym_if] = ACTIONS(2604), - [anon_sym_impl] = ACTIONS(2604), - [anon_sym_let] = ACTIONS(2604), - [anon_sym_loop] = ACTIONS(2604), - [anon_sym_match] = ACTIONS(2604), - [anon_sym_mod] = ACTIONS(2604), - [anon_sym_pub] = ACTIONS(2604), - [anon_sym_return] = ACTIONS(2604), - [anon_sym_static] = ACTIONS(2604), - [anon_sym_struct] = ACTIONS(2604), - [anon_sym_trait] = ACTIONS(2604), - [anon_sym_type] = ACTIONS(2604), - [anon_sym_union] = ACTIONS(2604), - [anon_sym_unsafe] = ACTIONS(2604), - [anon_sym_use] = ACTIONS(2604), - [anon_sym_while] = ACTIONS(2604), - [anon_sym_extern] = ACTIONS(2604), - [anon_sym_yield] = ACTIONS(2604), - [anon_sym_move] = ACTIONS(2604), - [anon_sym_try] = ACTIONS(2604), - [sym_integer_literal] = ACTIONS(2602), - [aux_sym_string_literal_token1] = ACTIONS(2602), - [sym_char_literal] = ACTIONS(2602), - [anon_sym_true] = ACTIONS(2604), - [anon_sym_false] = ACTIONS(2604), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2604), - [sym_super] = ACTIONS(2604), - [sym_crate] = ACTIONS(2604), - [sym_metavariable] = ACTIONS(2602), - [sym__raw_string_literal_start] = ACTIONS(2602), - [sym_float_literal] = ACTIONS(2602), + [ts_builtin_sym_end] = ACTIONS(2429), + [sym_identifier] = ACTIONS(2431), + [anon_sym_SEMI] = ACTIONS(2429), + [anon_sym_macro_rules_BANG] = ACTIONS(2429), + [anon_sym_LPAREN] = ACTIONS(2429), + [anon_sym_LBRACK] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2429), + [anon_sym_RBRACE] = ACTIONS(2429), + [anon_sym_STAR] = ACTIONS(2429), + [anon_sym_u8] = ACTIONS(2431), + [anon_sym_i8] = ACTIONS(2431), + [anon_sym_u16] = ACTIONS(2431), + [anon_sym_i16] = ACTIONS(2431), + [anon_sym_u32] = ACTIONS(2431), + [anon_sym_i32] = ACTIONS(2431), + [anon_sym_u64] = ACTIONS(2431), + [anon_sym_i64] = ACTIONS(2431), + [anon_sym_u128] = ACTIONS(2431), + [anon_sym_i128] = ACTIONS(2431), + [anon_sym_isize] = ACTIONS(2431), + [anon_sym_usize] = ACTIONS(2431), + [anon_sym_f32] = ACTIONS(2431), + [anon_sym_f64] = ACTIONS(2431), + [anon_sym_bool] = ACTIONS(2431), + [anon_sym_str] = ACTIONS(2431), + [anon_sym_char] = ACTIONS(2431), + [anon_sym_DASH] = ACTIONS(2429), + [anon_sym_BANG] = ACTIONS(2429), + [anon_sym_AMP] = ACTIONS(2429), + [anon_sym_PIPE] = ACTIONS(2429), + [anon_sym_LT] = ACTIONS(2429), + [anon_sym_DOT_DOT] = ACTIONS(2429), + [anon_sym_COLON_COLON] = ACTIONS(2429), + [anon_sym_POUND] = ACTIONS(2429), + [anon_sym_SQUOTE] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_break] = ACTIONS(2431), + [anon_sym_const] = ACTIONS(2431), + [anon_sym_continue] = ACTIONS(2431), + [anon_sym_default] = ACTIONS(2431), + [anon_sym_enum] = ACTIONS(2431), + [anon_sym_fn] = ACTIONS(2431), + [anon_sym_for] = ACTIONS(2431), + [anon_sym_gen] = ACTIONS(2431), + [anon_sym_if] = ACTIONS(2431), + [anon_sym_impl] = ACTIONS(2431), + [anon_sym_let] = ACTIONS(2431), + [anon_sym_loop] = ACTIONS(2431), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_mod] = ACTIONS(2431), + [anon_sym_pub] = ACTIONS(2431), + [anon_sym_return] = ACTIONS(2431), + [anon_sym_static] = ACTIONS(2431), + [anon_sym_struct] = ACTIONS(2431), + [anon_sym_trait] = ACTIONS(2431), + [anon_sym_type] = ACTIONS(2431), + [anon_sym_union] = ACTIONS(2431), + [anon_sym_unsafe] = ACTIONS(2431), + [anon_sym_use] = ACTIONS(2431), + [anon_sym_while] = ACTIONS(2431), + [anon_sym_extern] = ACTIONS(2431), + [anon_sym_yield] = ACTIONS(2431), + [anon_sym_move] = ACTIONS(2431), + [anon_sym_try] = ACTIONS(2431), + [sym_integer_literal] = ACTIONS(2429), + [aux_sym_string_literal_token1] = ACTIONS(2429), + [sym_char_literal] = ACTIONS(2429), + [anon_sym_true] = ACTIONS(2431), + [anon_sym_false] = ACTIONS(2431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2431), + [sym_super] = ACTIONS(2431), + [sym_crate] = ACTIONS(2431), + [sym_metavariable] = ACTIONS(2429), + [sym__raw_string_literal_start] = ACTIONS(2429), + [sym_float_literal] = ACTIONS(2429), }, [STATE(672)] = { + [sym_attribute_item] = STATE(1389), + [sym_attributes] = STATE(2389), + [sym_function_modifiers] = STATE(3689), + [sym_removed_trait_bound] = STATE(2138), + [sym_const_parameter] = STATE(3224), + [sym_type_parameter] = STATE(3224), + [sym_lifetime_parameter] = STATE(3224), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2971), + [sym_bracketed_type] = STATE(3816), + [sym_qualified_type] = STATE(3620), + [sym_lifetime] = STATE(2667), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1685), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3674), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2330), [sym_line_comment] = STATE(672), [sym_block_comment] = STATE(672), - [ts_builtin_sym_end] = ACTIONS(2606), - [sym_identifier] = ACTIONS(2608), - [anon_sym_SEMI] = ACTIONS(2606), - [anon_sym_macro_rules_BANG] = ACTIONS(2606), - [anon_sym_LPAREN] = ACTIONS(2606), - [anon_sym_LBRACK] = ACTIONS(2606), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_RBRACE] = ACTIONS(2606), - [anon_sym_STAR] = ACTIONS(2606), - [anon_sym_u8] = ACTIONS(2608), - [anon_sym_i8] = ACTIONS(2608), - [anon_sym_u16] = ACTIONS(2608), - [anon_sym_i16] = ACTIONS(2608), - [anon_sym_u32] = ACTIONS(2608), - [anon_sym_i32] = ACTIONS(2608), - [anon_sym_u64] = ACTIONS(2608), - [anon_sym_i64] = ACTIONS(2608), - [anon_sym_u128] = ACTIONS(2608), - [anon_sym_i128] = ACTIONS(2608), - [anon_sym_isize] = ACTIONS(2608), - [anon_sym_usize] = ACTIONS(2608), - [anon_sym_f32] = ACTIONS(2608), - [anon_sym_f64] = ACTIONS(2608), - [anon_sym_bool] = ACTIONS(2608), - [anon_sym_str] = ACTIONS(2608), - [anon_sym_char] = ACTIONS(2608), - [anon_sym_DASH] = ACTIONS(2606), - [anon_sym_BANG] = ACTIONS(2606), - [anon_sym_AMP] = ACTIONS(2606), - [anon_sym_PIPE] = ACTIONS(2606), - [anon_sym_LT] = ACTIONS(2606), - [anon_sym_DOT_DOT] = ACTIONS(2606), - [anon_sym_COLON_COLON] = ACTIONS(2606), - [anon_sym_POUND] = ACTIONS(2606), - [anon_sym_SQUOTE] = ACTIONS(2608), - [anon_sym_async] = ACTIONS(2608), - [anon_sym_break] = ACTIONS(2608), - [anon_sym_const] = ACTIONS(2608), - [anon_sym_continue] = ACTIONS(2608), - [anon_sym_default] = ACTIONS(2608), - [anon_sym_enum] = ACTIONS(2608), - [anon_sym_fn] = ACTIONS(2608), - [anon_sym_for] = ACTIONS(2608), - [anon_sym_gen] = ACTIONS(2608), - [anon_sym_if] = ACTIONS(2608), - [anon_sym_impl] = ACTIONS(2608), - [anon_sym_let] = ACTIONS(2608), - [anon_sym_loop] = ACTIONS(2608), - [anon_sym_match] = ACTIONS(2608), - [anon_sym_mod] = ACTIONS(2608), - [anon_sym_pub] = ACTIONS(2608), - [anon_sym_return] = ACTIONS(2608), - [anon_sym_static] = ACTIONS(2608), - [anon_sym_struct] = ACTIONS(2608), - [anon_sym_trait] = ACTIONS(2608), - [anon_sym_type] = ACTIONS(2608), - [anon_sym_union] = ACTIONS(2608), - [anon_sym_unsafe] = ACTIONS(2608), - [anon_sym_use] = ACTIONS(2608), - [anon_sym_while] = ACTIONS(2608), - [anon_sym_extern] = ACTIONS(2608), - [anon_sym_yield] = ACTIONS(2608), - [anon_sym_move] = ACTIONS(2608), - [anon_sym_try] = ACTIONS(2608), - [sym_integer_literal] = ACTIONS(2606), - [aux_sym_string_literal_token1] = ACTIONS(2606), - [sym_char_literal] = ACTIONS(2606), - [anon_sym_true] = ACTIONS(2608), - [anon_sym_false] = ACTIONS(2608), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2608), - [sym_super] = ACTIONS(2608), - [sym_crate] = ACTIONS(2608), - [sym_metavariable] = ACTIONS(2606), - [sym__raw_string_literal_start] = ACTIONS(2606), - [sym_float_literal] = ACTIONS(2606), + [aux_sym_attributes_repeat1] = STATE(1138), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2433), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_POUND] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(2435), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(2437), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1547), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(2439), }, [STATE(673)] = { [sym_line_comment] = STATE(673), [sym_block_comment] = STATE(673), - [ts_builtin_sym_end] = ACTIONS(2610), - [sym_identifier] = ACTIONS(2612), - [anon_sym_SEMI] = ACTIONS(2610), - [anon_sym_macro_rules_BANG] = ACTIONS(2610), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LBRACK] = ACTIONS(2610), - [anon_sym_LBRACE] = ACTIONS(2610), - [anon_sym_RBRACE] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(2610), - [anon_sym_u8] = ACTIONS(2612), - [anon_sym_i8] = ACTIONS(2612), - [anon_sym_u16] = ACTIONS(2612), - [anon_sym_i16] = ACTIONS(2612), - [anon_sym_u32] = ACTIONS(2612), - [anon_sym_i32] = ACTIONS(2612), - [anon_sym_u64] = ACTIONS(2612), - [anon_sym_i64] = ACTIONS(2612), - [anon_sym_u128] = ACTIONS(2612), - [anon_sym_i128] = ACTIONS(2612), - [anon_sym_isize] = ACTIONS(2612), - [anon_sym_usize] = ACTIONS(2612), - [anon_sym_f32] = ACTIONS(2612), - [anon_sym_f64] = ACTIONS(2612), - [anon_sym_bool] = ACTIONS(2612), - [anon_sym_str] = ACTIONS(2612), - [anon_sym_char] = ACTIONS(2612), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_BANG] = ACTIONS(2610), - [anon_sym_AMP] = ACTIONS(2610), - [anon_sym_PIPE] = ACTIONS(2610), - [anon_sym_LT] = ACTIONS(2610), - [anon_sym_DOT_DOT] = ACTIONS(2610), - [anon_sym_COLON_COLON] = ACTIONS(2610), - [anon_sym_POUND] = ACTIONS(2610), - [anon_sym_SQUOTE] = ACTIONS(2612), - [anon_sym_async] = ACTIONS(2612), - [anon_sym_break] = ACTIONS(2612), - [anon_sym_const] = ACTIONS(2612), - [anon_sym_continue] = ACTIONS(2612), - [anon_sym_default] = ACTIONS(2612), - [anon_sym_enum] = ACTIONS(2612), - [anon_sym_fn] = ACTIONS(2612), - [anon_sym_for] = ACTIONS(2612), - [anon_sym_gen] = ACTIONS(2612), - [anon_sym_if] = ACTIONS(2612), - [anon_sym_impl] = ACTIONS(2612), - [anon_sym_let] = ACTIONS(2612), - [anon_sym_loop] = ACTIONS(2612), - [anon_sym_match] = ACTIONS(2612), - [anon_sym_mod] = ACTIONS(2612), - [anon_sym_pub] = ACTIONS(2612), - [anon_sym_return] = ACTIONS(2612), - [anon_sym_static] = ACTIONS(2612), - [anon_sym_struct] = ACTIONS(2612), - [anon_sym_trait] = ACTIONS(2612), - [anon_sym_type] = ACTIONS(2612), - [anon_sym_union] = ACTIONS(2612), - [anon_sym_unsafe] = ACTIONS(2612), - [anon_sym_use] = ACTIONS(2612), - [anon_sym_while] = ACTIONS(2612), - [anon_sym_extern] = ACTIONS(2612), - [anon_sym_yield] = ACTIONS(2612), - [anon_sym_move] = ACTIONS(2612), - [anon_sym_try] = ACTIONS(2612), - [sym_integer_literal] = ACTIONS(2610), - [aux_sym_string_literal_token1] = ACTIONS(2610), - [sym_char_literal] = ACTIONS(2610), - [anon_sym_true] = ACTIONS(2612), - [anon_sym_false] = ACTIONS(2612), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2612), - [sym_super] = ACTIONS(2612), - [sym_crate] = ACTIONS(2612), - [sym_metavariable] = ACTIONS(2610), - [sym__raw_string_literal_start] = ACTIONS(2610), - [sym_float_literal] = ACTIONS(2610), + [ts_builtin_sym_end] = ACTIONS(2441), + [sym_identifier] = ACTIONS(2443), + [anon_sym_SEMI] = ACTIONS(2441), + [anon_sym_macro_rules_BANG] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(2441), + [anon_sym_LBRACK] = ACTIONS(2441), + [anon_sym_LBRACE] = ACTIONS(2441), + [anon_sym_RBRACE] = ACTIONS(2441), + [anon_sym_STAR] = ACTIONS(2441), + [anon_sym_u8] = ACTIONS(2443), + [anon_sym_i8] = ACTIONS(2443), + [anon_sym_u16] = ACTIONS(2443), + [anon_sym_i16] = ACTIONS(2443), + [anon_sym_u32] = ACTIONS(2443), + [anon_sym_i32] = ACTIONS(2443), + [anon_sym_u64] = ACTIONS(2443), + [anon_sym_i64] = ACTIONS(2443), + [anon_sym_u128] = ACTIONS(2443), + [anon_sym_i128] = ACTIONS(2443), + [anon_sym_isize] = ACTIONS(2443), + [anon_sym_usize] = ACTIONS(2443), + [anon_sym_f32] = ACTIONS(2443), + [anon_sym_f64] = ACTIONS(2443), + [anon_sym_bool] = ACTIONS(2443), + [anon_sym_str] = ACTIONS(2443), + [anon_sym_char] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2441), + [anon_sym_BANG] = ACTIONS(2441), + [anon_sym_AMP] = ACTIONS(2441), + [anon_sym_PIPE] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2441), + [anon_sym_DOT_DOT] = ACTIONS(2441), + [anon_sym_COLON_COLON] = ACTIONS(2441), + [anon_sym_POUND] = ACTIONS(2441), + [anon_sym_SQUOTE] = ACTIONS(2443), + [anon_sym_async] = ACTIONS(2443), + [anon_sym_break] = ACTIONS(2443), + [anon_sym_const] = ACTIONS(2443), + [anon_sym_continue] = ACTIONS(2443), + [anon_sym_default] = ACTIONS(2443), + [anon_sym_enum] = ACTIONS(2443), + [anon_sym_fn] = ACTIONS(2443), + [anon_sym_for] = ACTIONS(2443), + [anon_sym_gen] = ACTIONS(2443), + [anon_sym_if] = ACTIONS(2443), + [anon_sym_impl] = ACTIONS(2443), + [anon_sym_let] = ACTIONS(2443), + [anon_sym_loop] = ACTIONS(2443), + [anon_sym_match] = ACTIONS(2443), + [anon_sym_mod] = ACTIONS(2443), + [anon_sym_pub] = ACTIONS(2443), + [anon_sym_return] = ACTIONS(2443), + [anon_sym_static] = ACTIONS(2443), + [anon_sym_struct] = ACTIONS(2443), + [anon_sym_trait] = ACTIONS(2443), + [anon_sym_type] = ACTIONS(2443), + [anon_sym_union] = ACTIONS(2443), + [anon_sym_unsafe] = ACTIONS(2443), + [anon_sym_use] = ACTIONS(2443), + [anon_sym_while] = ACTIONS(2443), + [anon_sym_extern] = ACTIONS(2443), + [anon_sym_yield] = ACTIONS(2443), + [anon_sym_move] = ACTIONS(2443), + [anon_sym_try] = ACTIONS(2443), + [sym_integer_literal] = ACTIONS(2441), + [aux_sym_string_literal_token1] = ACTIONS(2441), + [sym_char_literal] = ACTIONS(2441), + [anon_sym_true] = ACTIONS(2443), + [anon_sym_false] = ACTIONS(2443), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2443), + [sym_super] = ACTIONS(2443), + [sym_crate] = ACTIONS(2443), + [sym_metavariable] = ACTIONS(2441), + [sym__raw_string_literal_start] = ACTIONS(2441), + [sym_float_literal] = ACTIONS(2441), }, [STATE(674)] = { [sym_line_comment] = STATE(674), [sym_block_comment] = STATE(674), - [ts_builtin_sym_end] = ACTIONS(2614), - [sym_identifier] = ACTIONS(2616), - [anon_sym_SEMI] = ACTIONS(2614), - [anon_sym_macro_rules_BANG] = ACTIONS(2614), - [anon_sym_LPAREN] = ACTIONS(2614), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2614), - [anon_sym_RBRACE] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2614), - [anon_sym_u8] = ACTIONS(2616), - [anon_sym_i8] = ACTIONS(2616), - [anon_sym_u16] = ACTIONS(2616), - [anon_sym_i16] = ACTIONS(2616), - [anon_sym_u32] = ACTIONS(2616), - [anon_sym_i32] = ACTIONS(2616), - [anon_sym_u64] = ACTIONS(2616), - [anon_sym_i64] = ACTIONS(2616), - [anon_sym_u128] = ACTIONS(2616), - [anon_sym_i128] = ACTIONS(2616), - [anon_sym_isize] = ACTIONS(2616), - [anon_sym_usize] = ACTIONS(2616), - [anon_sym_f32] = ACTIONS(2616), - [anon_sym_f64] = ACTIONS(2616), - [anon_sym_bool] = ACTIONS(2616), - [anon_sym_str] = ACTIONS(2616), - [anon_sym_char] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_BANG] = ACTIONS(2614), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_PIPE] = ACTIONS(2614), - [anon_sym_LT] = ACTIONS(2614), - [anon_sym_DOT_DOT] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2614), - [anon_sym_POUND] = ACTIONS(2614), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_async] = ACTIONS(2616), - [anon_sym_break] = ACTIONS(2616), - [anon_sym_const] = ACTIONS(2616), - [anon_sym_continue] = ACTIONS(2616), - [anon_sym_default] = ACTIONS(2616), - [anon_sym_enum] = ACTIONS(2616), - [anon_sym_fn] = ACTIONS(2616), - [anon_sym_for] = ACTIONS(2616), - [anon_sym_gen] = ACTIONS(2616), - [anon_sym_if] = ACTIONS(2616), - [anon_sym_impl] = ACTIONS(2616), - [anon_sym_let] = ACTIONS(2616), - [anon_sym_loop] = ACTIONS(2616), - [anon_sym_match] = ACTIONS(2616), - [anon_sym_mod] = ACTIONS(2616), - [anon_sym_pub] = ACTIONS(2616), - [anon_sym_return] = ACTIONS(2616), - [anon_sym_static] = ACTIONS(2616), - [anon_sym_struct] = ACTIONS(2616), - [anon_sym_trait] = ACTIONS(2616), - [anon_sym_type] = ACTIONS(2616), - [anon_sym_union] = ACTIONS(2616), - [anon_sym_unsafe] = ACTIONS(2616), - [anon_sym_use] = ACTIONS(2616), - [anon_sym_while] = ACTIONS(2616), - [anon_sym_extern] = ACTIONS(2616), - [anon_sym_yield] = ACTIONS(2616), - [anon_sym_move] = ACTIONS(2616), - [anon_sym_try] = ACTIONS(2616), - [sym_integer_literal] = ACTIONS(2614), - [aux_sym_string_literal_token1] = ACTIONS(2614), - [sym_char_literal] = ACTIONS(2614), - [anon_sym_true] = ACTIONS(2616), - [anon_sym_false] = ACTIONS(2616), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2616), - [sym_super] = ACTIONS(2616), - [sym_crate] = ACTIONS(2616), - [sym_metavariable] = ACTIONS(2614), - [sym__raw_string_literal_start] = ACTIONS(2614), - [sym_float_literal] = ACTIONS(2614), + [ts_builtin_sym_end] = ACTIONS(2445), + [sym_identifier] = ACTIONS(2447), + [anon_sym_SEMI] = ACTIONS(2445), + [anon_sym_macro_rules_BANG] = ACTIONS(2445), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_LBRACK] = ACTIONS(2445), + [anon_sym_LBRACE] = ACTIONS(2445), + [anon_sym_RBRACE] = ACTIONS(2445), + [anon_sym_STAR] = ACTIONS(2445), + [anon_sym_u8] = ACTIONS(2447), + [anon_sym_i8] = ACTIONS(2447), + [anon_sym_u16] = ACTIONS(2447), + [anon_sym_i16] = ACTIONS(2447), + [anon_sym_u32] = ACTIONS(2447), + [anon_sym_i32] = ACTIONS(2447), + [anon_sym_u64] = ACTIONS(2447), + [anon_sym_i64] = ACTIONS(2447), + [anon_sym_u128] = ACTIONS(2447), + [anon_sym_i128] = ACTIONS(2447), + [anon_sym_isize] = ACTIONS(2447), + [anon_sym_usize] = ACTIONS(2447), + [anon_sym_f32] = ACTIONS(2447), + [anon_sym_f64] = ACTIONS(2447), + [anon_sym_bool] = ACTIONS(2447), + [anon_sym_str] = ACTIONS(2447), + [anon_sym_char] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_BANG] = ACTIONS(2445), + [anon_sym_AMP] = ACTIONS(2445), + [anon_sym_PIPE] = ACTIONS(2445), + [anon_sym_LT] = ACTIONS(2445), + [anon_sym_DOT_DOT] = ACTIONS(2445), + [anon_sym_COLON_COLON] = ACTIONS(2445), + [anon_sym_POUND] = ACTIONS(2445), + [anon_sym_SQUOTE] = ACTIONS(2447), + [anon_sym_async] = ACTIONS(2447), + [anon_sym_break] = ACTIONS(2447), + [anon_sym_const] = ACTIONS(2447), + [anon_sym_continue] = ACTIONS(2447), + [anon_sym_default] = ACTIONS(2447), + [anon_sym_enum] = ACTIONS(2447), + [anon_sym_fn] = ACTIONS(2447), + [anon_sym_for] = ACTIONS(2447), + [anon_sym_gen] = ACTIONS(2447), + [anon_sym_if] = ACTIONS(2447), + [anon_sym_impl] = ACTIONS(2447), + [anon_sym_let] = ACTIONS(2447), + [anon_sym_loop] = ACTIONS(2447), + [anon_sym_match] = ACTIONS(2447), + [anon_sym_mod] = ACTIONS(2447), + [anon_sym_pub] = ACTIONS(2447), + [anon_sym_return] = ACTIONS(2447), + [anon_sym_static] = ACTIONS(2447), + [anon_sym_struct] = ACTIONS(2447), + [anon_sym_trait] = ACTIONS(2447), + [anon_sym_type] = ACTIONS(2447), + [anon_sym_union] = ACTIONS(2447), + [anon_sym_unsafe] = ACTIONS(2447), + [anon_sym_use] = ACTIONS(2447), + [anon_sym_while] = ACTIONS(2447), + [anon_sym_extern] = ACTIONS(2447), + [anon_sym_yield] = ACTIONS(2447), + [anon_sym_move] = ACTIONS(2447), + [anon_sym_try] = ACTIONS(2447), + [sym_integer_literal] = ACTIONS(2445), + [aux_sym_string_literal_token1] = ACTIONS(2445), + [sym_char_literal] = ACTIONS(2445), + [anon_sym_true] = ACTIONS(2447), + [anon_sym_false] = ACTIONS(2447), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2447), + [sym_super] = ACTIONS(2447), + [sym_crate] = ACTIONS(2447), + [sym_metavariable] = ACTIONS(2445), + [sym__raw_string_literal_start] = ACTIONS(2445), + [sym_float_literal] = ACTIONS(2445), }, [STATE(675)] = { [sym_line_comment] = STATE(675), [sym_block_comment] = STATE(675), - [ts_builtin_sym_end] = ACTIONS(2618), - [sym_identifier] = ACTIONS(2620), - [anon_sym_SEMI] = ACTIONS(2618), - [anon_sym_macro_rules_BANG] = ACTIONS(2618), - [anon_sym_LPAREN] = ACTIONS(2618), - [anon_sym_LBRACK] = ACTIONS(2618), - [anon_sym_LBRACE] = ACTIONS(2618), - [anon_sym_RBRACE] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(2618), - [anon_sym_u8] = ACTIONS(2620), - [anon_sym_i8] = ACTIONS(2620), - [anon_sym_u16] = ACTIONS(2620), - [anon_sym_i16] = ACTIONS(2620), - [anon_sym_u32] = ACTIONS(2620), - [anon_sym_i32] = ACTIONS(2620), - [anon_sym_u64] = ACTIONS(2620), - [anon_sym_i64] = ACTIONS(2620), - [anon_sym_u128] = ACTIONS(2620), - [anon_sym_i128] = ACTIONS(2620), - [anon_sym_isize] = ACTIONS(2620), - [anon_sym_usize] = ACTIONS(2620), - [anon_sym_f32] = ACTIONS(2620), - [anon_sym_f64] = ACTIONS(2620), - [anon_sym_bool] = ACTIONS(2620), - [anon_sym_str] = ACTIONS(2620), - [anon_sym_char] = ACTIONS(2620), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_BANG] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2618), - [anon_sym_PIPE] = ACTIONS(2618), - [anon_sym_LT] = ACTIONS(2618), - [anon_sym_DOT_DOT] = ACTIONS(2618), - [anon_sym_COLON_COLON] = ACTIONS(2618), - [anon_sym_POUND] = ACTIONS(2618), - [anon_sym_SQUOTE] = ACTIONS(2620), - [anon_sym_async] = ACTIONS(2620), - [anon_sym_break] = ACTIONS(2620), - [anon_sym_const] = ACTIONS(2620), - [anon_sym_continue] = ACTIONS(2620), - [anon_sym_default] = ACTIONS(2620), - [anon_sym_enum] = ACTIONS(2620), - [anon_sym_fn] = ACTIONS(2620), - [anon_sym_for] = ACTIONS(2620), - [anon_sym_gen] = ACTIONS(2620), - [anon_sym_if] = ACTIONS(2620), - [anon_sym_impl] = ACTIONS(2620), - [anon_sym_let] = ACTIONS(2620), - [anon_sym_loop] = ACTIONS(2620), - [anon_sym_match] = ACTIONS(2620), - [anon_sym_mod] = ACTIONS(2620), - [anon_sym_pub] = ACTIONS(2620), - [anon_sym_return] = ACTIONS(2620), - [anon_sym_static] = ACTIONS(2620), - [anon_sym_struct] = ACTIONS(2620), - [anon_sym_trait] = ACTIONS(2620), - [anon_sym_type] = ACTIONS(2620), - [anon_sym_union] = ACTIONS(2620), - [anon_sym_unsafe] = ACTIONS(2620), - [anon_sym_use] = ACTIONS(2620), - [anon_sym_while] = ACTIONS(2620), - [anon_sym_extern] = ACTIONS(2620), - [anon_sym_yield] = ACTIONS(2620), - [anon_sym_move] = ACTIONS(2620), - [anon_sym_try] = ACTIONS(2620), - [sym_integer_literal] = ACTIONS(2618), - [aux_sym_string_literal_token1] = ACTIONS(2618), - [sym_char_literal] = ACTIONS(2618), - [anon_sym_true] = ACTIONS(2620), - [anon_sym_false] = ACTIONS(2620), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2620), - [sym_super] = ACTIONS(2620), - [sym_crate] = ACTIONS(2620), - [sym_metavariable] = ACTIONS(2618), - [sym__raw_string_literal_start] = ACTIONS(2618), - [sym_float_literal] = ACTIONS(2618), + [ts_builtin_sym_end] = ACTIONS(2449), + [sym_identifier] = ACTIONS(2451), + [anon_sym_SEMI] = ACTIONS(2449), + [anon_sym_macro_rules_BANG] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2449), + [anon_sym_LBRACK] = ACTIONS(2449), + [anon_sym_LBRACE] = ACTIONS(2449), + [anon_sym_RBRACE] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2449), + [anon_sym_u8] = ACTIONS(2451), + [anon_sym_i8] = ACTIONS(2451), + [anon_sym_u16] = ACTIONS(2451), + [anon_sym_i16] = ACTIONS(2451), + [anon_sym_u32] = ACTIONS(2451), + [anon_sym_i32] = ACTIONS(2451), + [anon_sym_u64] = ACTIONS(2451), + [anon_sym_i64] = ACTIONS(2451), + [anon_sym_u128] = ACTIONS(2451), + [anon_sym_i128] = ACTIONS(2451), + [anon_sym_isize] = ACTIONS(2451), + [anon_sym_usize] = ACTIONS(2451), + [anon_sym_f32] = ACTIONS(2451), + [anon_sym_f64] = ACTIONS(2451), + [anon_sym_bool] = ACTIONS(2451), + [anon_sym_str] = ACTIONS(2451), + [anon_sym_char] = ACTIONS(2451), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_BANG] = ACTIONS(2449), + [anon_sym_AMP] = ACTIONS(2449), + [anon_sym_PIPE] = ACTIONS(2449), + [anon_sym_LT] = ACTIONS(2449), + [anon_sym_DOT_DOT] = ACTIONS(2449), + [anon_sym_COLON_COLON] = ACTIONS(2449), + [anon_sym_POUND] = ACTIONS(2449), + [anon_sym_SQUOTE] = ACTIONS(2451), + [anon_sym_async] = ACTIONS(2451), + [anon_sym_break] = ACTIONS(2451), + [anon_sym_const] = ACTIONS(2451), + [anon_sym_continue] = ACTIONS(2451), + [anon_sym_default] = ACTIONS(2451), + [anon_sym_enum] = ACTIONS(2451), + [anon_sym_fn] = ACTIONS(2451), + [anon_sym_for] = ACTIONS(2451), + [anon_sym_gen] = ACTIONS(2451), + [anon_sym_if] = ACTIONS(2451), + [anon_sym_impl] = ACTIONS(2451), + [anon_sym_let] = ACTIONS(2451), + [anon_sym_loop] = ACTIONS(2451), + [anon_sym_match] = ACTIONS(2451), + [anon_sym_mod] = ACTIONS(2451), + [anon_sym_pub] = ACTIONS(2451), + [anon_sym_return] = ACTIONS(2451), + [anon_sym_static] = ACTIONS(2451), + [anon_sym_struct] = ACTIONS(2451), + [anon_sym_trait] = ACTIONS(2451), + [anon_sym_type] = ACTIONS(2451), + [anon_sym_union] = ACTIONS(2451), + [anon_sym_unsafe] = ACTIONS(2451), + [anon_sym_use] = ACTIONS(2451), + [anon_sym_while] = ACTIONS(2451), + [anon_sym_extern] = ACTIONS(2451), + [anon_sym_yield] = ACTIONS(2451), + [anon_sym_move] = ACTIONS(2451), + [anon_sym_try] = ACTIONS(2451), + [sym_integer_literal] = ACTIONS(2449), + [aux_sym_string_literal_token1] = ACTIONS(2449), + [sym_char_literal] = ACTIONS(2449), + [anon_sym_true] = ACTIONS(2451), + [anon_sym_false] = ACTIONS(2451), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2451), + [sym_super] = ACTIONS(2451), + [sym_crate] = ACTIONS(2451), + [sym_metavariable] = ACTIONS(2449), + [sym__raw_string_literal_start] = ACTIONS(2449), + [sym_float_literal] = ACTIONS(2449), }, [STATE(676)] = { [sym_line_comment] = STATE(676), [sym_block_comment] = STATE(676), - [ts_builtin_sym_end] = ACTIONS(2622), - [sym_identifier] = ACTIONS(2624), - [anon_sym_SEMI] = ACTIONS(2622), - [anon_sym_macro_rules_BANG] = ACTIONS(2622), - [anon_sym_LPAREN] = ACTIONS(2622), - [anon_sym_LBRACK] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2622), - [anon_sym_RBRACE] = ACTIONS(2622), - [anon_sym_STAR] = ACTIONS(2622), - [anon_sym_u8] = ACTIONS(2624), - [anon_sym_i8] = ACTIONS(2624), - [anon_sym_u16] = ACTIONS(2624), - [anon_sym_i16] = ACTIONS(2624), - [anon_sym_u32] = ACTIONS(2624), - [anon_sym_i32] = ACTIONS(2624), - [anon_sym_u64] = ACTIONS(2624), - [anon_sym_i64] = ACTIONS(2624), - [anon_sym_u128] = ACTIONS(2624), - [anon_sym_i128] = ACTIONS(2624), - [anon_sym_isize] = ACTIONS(2624), - [anon_sym_usize] = ACTIONS(2624), - [anon_sym_f32] = ACTIONS(2624), - [anon_sym_f64] = ACTIONS(2624), - [anon_sym_bool] = ACTIONS(2624), - [anon_sym_str] = ACTIONS(2624), - [anon_sym_char] = ACTIONS(2624), - [anon_sym_DASH] = ACTIONS(2622), - [anon_sym_BANG] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(2622), - [anon_sym_PIPE] = ACTIONS(2622), - [anon_sym_LT] = ACTIONS(2622), - [anon_sym_DOT_DOT] = ACTIONS(2622), - [anon_sym_COLON_COLON] = ACTIONS(2622), - [anon_sym_POUND] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2624), - [anon_sym_async] = ACTIONS(2624), - [anon_sym_break] = ACTIONS(2624), - [anon_sym_const] = ACTIONS(2624), - [anon_sym_continue] = ACTIONS(2624), - [anon_sym_default] = ACTIONS(2624), - [anon_sym_enum] = ACTIONS(2624), - [anon_sym_fn] = ACTIONS(2624), - [anon_sym_for] = ACTIONS(2624), - [anon_sym_gen] = ACTIONS(2624), - [anon_sym_if] = ACTIONS(2624), - [anon_sym_impl] = ACTIONS(2624), - [anon_sym_let] = ACTIONS(2624), - [anon_sym_loop] = ACTIONS(2624), - [anon_sym_match] = ACTIONS(2624), - [anon_sym_mod] = ACTIONS(2624), - [anon_sym_pub] = ACTIONS(2624), - [anon_sym_return] = ACTIONS(2624), - [anon_sym_static] = ACTIONS(2624), - [anon_sym_struct] = ACTIONS(2624), - [anon_sym_trait] = ACTIONS(2624), - [anon_sym_type] = ACTIONS(2624), - [anon_sym_union] = ACTIONS(2624), - [anon_sym_unsafe] = ACTIONS(2624), - [anon_sym_use] = ACTIONS(2624), - [anon_sym_while] = ACTIONS(2624), - [anon_sym_extern] = ACTIONS(2624), - [anon_sym_yield] = ACTIONS(2624), - [anon_sym_move] = ACTIONS(2624), - [anon_sym_try] = ACTIONS(2624), - [sym_integer_literal] = ACTIONS(2622), - [aux_sym_string_literal_token1] = ACTIONS(2622), - [sym_char_literal] = ACTIONS(2622), - [anon_sym_true] = ACTIONS(2624), - [anon_sym_false] = ACTIONS(2624), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2624), - [sym_super] = ACTIONS(2624), - [sym_crate] = ACTIONS(2624), - [sym_metavariable] = ACTIONS(2622), - [sym__raw_string_literal_start] = ACTIONS(2622), - [sym_float_literal] = ACTIONS(2622), + [ts_builtin_sym_end] = ACTIONS(2453), + [sym_identifier] = ACTIONS(2455), + [anon_sym_SEMI] = ACTIONS(2453), + [anon_sym_macro_rules_BANG] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2453), + [anon_sym_LBRACK] = ACTIONS(2453), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_RBRACE] = ACTIONS(2453), + [anon_sym_STAR] = ACTIONS(2453), + [anon_sym_u8] = ACTIONS(2455), + [anon_sym_i8] = ACTIONS(2455), + [anon_sym_u16] = ACTIONS(2455), + [anon_sym_i16] = ACTIONS(2455), + [anon_sym_u32] = ACTIONS(2455), + [anon_sym_i32] = ACTIONS(2455), + [anon_sym_u64] = ACTIONS(2455), + [anon_sym_i64] = ACTIONS(2455), + [anon_sym_u128] = ACTIONS(2455), + [anon_sym_i128] = ACTIONS(2455), + [anon_sym_isize] = ACTIONS(2455), + [anon_sym_usize] = ACTIONS(2455), + [anon_sym_f32] = ACTIONS(2455), + [anon_sym_f64] = ACTIONS(2455), + [anon_sym_bool] = ACTIONS(2455), + [anon_sym_str] = ACTIONS(2455), + [anon_sym_char] = ACTIONS(2455), + [anon_sym_DASH] = ACTIONS(2453), + [anon_sym_BANG] = ACTIONS(2453), + [anon_sym_AMP] = ACTIONS(2453), + [anon_sym_PIPE] = ACTIONS(2453), + [anon_sym_LT] = ACTIONS(2453), + [anon_sym_DOT_DOT] = ACTIONS(2453), + [anon_sym_COLON_COLON] = ACTIONS(2453), + [anon_sym_POUND] = ACTIONS(2453), + [anon_sym_SQUOTE] = ACTIONS(2455), + [anon_sym_async] = ACTIONS(2455), + [anon_sym_break] = ACTIONS(2455), + [anon_sym_const] = ACTIONS(2455), + [anon_sym_continue] = ACTIONS(2455), + [anon_sym_default] = ACTIONS(2455), + [anon_sym_enum] = ACTIONS(2455), + [anon_sym_fn] = ACTIONS(2455), + [anon_sym_for] = ACTIONS(2455), + [anon_sym_gen] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2455), + [anon_sym_impl] = ACTIONS(2455), + [anon_sym_let] = ACTIONS(2455), + [anon_sym_loop] = ACTIONS(2455), + [anon_sym_match] = ACTIONS(2455), + [anon_sym_mod] = ACTIONS(2455), + [anon_sym_pub] = ACTIONS(2455), + [anon_sym_return] = ACTIONS(2455), + [anon_sym_static] = ACTIONS(2455), + [anon_sym_struct] = ACTIONS(2455), + [anon_sym_trait] = ACTIONS(2455), + [anon_sym_type] = ACTIONS(2455), + [anon_sym_union] = ACTIONS(2455), + [anon_sym_unsafe] = ACTIONS(2455), + [anon_sym_use] = ACTIONS(2455), + [anon_sym_while] = ACTIONS(2455), + [anon_sym_extern] = ACTIONS(2455), + [anon_sym_yield] = ACTIONS(2455), + [anon_sym_move] = ACTIONS(2455), + [anon_sym_try] = ACTIONS(2455), + [sym_integer_literal] = ACTIONS(2453), + [aux_sym_string_literal_token1] = ACTIONS(2453), + [sym_char_literal] = ACTIONS(2453), + [anon_sym_true] = ACTIONS(2455), + [anon_sym_false] = ACTIONS(2455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2455), + [sym_super] = ACTIONS(2455), + [sym_crate] = ACTIONS(2455), + [sym_metavariable] = ACTIONS(2453), + [sym__raw_string_literal_start] = ACTIONS(2453), + [sym_float_literal] = ACTIONS(2453), }, [STATE(677)] = { [sym_line_comment] = STATE(677), [sym_block_comment] = STATE(677), - [ts_builtin_sym_end] = ACTIONS(2626), - [sym_identifier] = ACTIONS(2628), - [anon_sym_SEMI] = ACTIONS(2626), - [anon_sym_macro_rules_BANG] = ACTIONS(2626), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_LBRACK] = ACTIONS(2626), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_RBRACE] = ACTIONS(2626), - [anon_sym_STAR] = ACTIONS(2626), - [anon_sym_u8] = ACTIONS(2628), - [anon_sym_i8] = ACTIONS(2628), - [anon_sym_u16] = ACTIONS(2628), - [anon_sym_i16] = ACTIONS(2628), - [anon_sym_u32] = ACTIONS(2628), - [anon_sym_i32] = ACTIONS(2628), - [anon_sym_u64] = ACTIONS(2628), - [anon_sym_i64] = ACTIONS(2628), - [anon_sym_u128] = ACTIONS(2628), - [anon_sym_i128] = ACTIONS(2628), - [anon_sym_isize] = ACTIONS(2628), - [anon_sym_usize] = ACTIONS(2628), - [anon_sym_f32] = ACTIONS(2628), - [anon_sym_f64] = ACTIONS(2628), - [anon_sym_bool] = ACTIONS(2628), - [anon_sym_str] = ACTIONS(2628), - [anon_sym_char] = ACTIONS(2628), - [anon_sym_DASH] = ACTIONS(2626), - [anon_sym_BANG] = ACTIONS(2626), - [anon_sym_AMP] = ACTIONS(2626), - [anon_sym_PIPE] = ACTIONS(2626), - [anon_sym_LT] = ACTIONS(2626), - [anon_sym_DOT_DOT] = ACTIONS(2626), - [anon_sym_COLON_COLON] = ACTIONS(2626), - [anon_sym_POUND] = ACTIONS(2626), - [anon_sym_SQUOTE] = ACTIONS(2628), - [anon_sym_async] = ACTIONS(2628), - [anon_sym_break] = ACTIONS(2628), - [anon_sym_const] = ACTIONS(2628), - [anon_sym_continue] = ACTIONS(2628), - [anon_sym_default] = ACTIONS(2628), - [anon_sym_enum] = ACTIONS(2628), - [anon_sym_fn] = ACTIONS(2628), - [anon_sym_for] = ACTIONS(2628), - [anon_sym_gen] = ACTIONS(2628), - [anon_sym_if] = ACTIONS(2628), - [anon_sym_impl] = ACTIONS(2628), - [anon_sym_let] = ACTIONS(2628), - [anon_sym_loop] = ACTIONS(2628), - [anon_sym_match] = ACTIONS(2628), - [anon_sym_mod] = ACTIONS(2628), - [anon_sym_pub] = ACTIONS(2628), - [anon_sym_return] = ACTIONS(2628), - [anon_sym_static] = ACTIONS(2628), - [anon_sym_struct] = ACTIONS(2628), - [anon_sym_trait] = ACTIONS(2628), - [anon_sym_type] = ACTIONS(2628), - [anon_sym_union] = ACTIONS(2628), - [anon_sym_unsafe] = ACTIONS(2628), - [anon_sym_use] = ACTIONS(2628), - [anon_sym_while] = ACTIONS(2628), - [anon_sym_extern] = ACTIONS(2628), - [anon_sym_yield] = ACTIONS(2628), - [anon_sym_move] = ACTIONS(2628), - [anon_sym_try] = ACTIONS(2628), - [sym_integer_literal] = ACTIONS(2626), - [aux_sym_string_literal_token1] = ACTIONS(2626), - [sym_char_literal] = ACTIONS(2626), - [anon_sym_true] = ACTIONS(2628), - [anon_sym_false] = ACTIONS(2628), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2628), - [sym_super] = ACTIONS(2628), - [sym_crate] = ACTIONS(2628), - [sym_metavariable] = ACTIONS(2626), - [sym__raw_string_literal_start] = ACTIONS(2626), - [sym_float_literal] = ACTIONS(2626), + [ts_builtin_sym_end] = ACTIONS(2457), + [sym_identifier] = ACTIONS(2459), + [anon_sym_SEMI] = ACTIONS(2457), + [anon_sym_macro_rules_BANG] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(2457), + [anon_sym_LBRACK] = ACTIONS(2457), + [anon_sym_LBRACE] = ACTIONS(2457), + [anon_sym_RBRACE] = ACTIONS(2457), + [anon_sym_STAR] = ACTIONS(2457), + [anon_sym_u8] = ACTIONS(2459), + [anon_sym_i8] = ACTIONS(2459), + [anon_sym_u16] = ACTIONS(2459), + [anon_sym_i16] = ACTIONS(2459), + [anon_sym_u32] = ACTIONS(2459), + [anon_sym_i32] = ACTIONS(2459), + [anon_sym_u64] = ACTIONS(2459), + [anon_sym_i64] = ACTIONS(2459), + [anon_sym_u128] = ACTIONS(2459), + [anon_sym_i128] = ACTIONS(2459), + [anon_sym_isize] = ACTIONS(2459), + [anon_sym_usize] = ACTIONS(2459), + [anon_sym_f32] = ACTIONS(2459), + [anon_sym_f64] = ACTIONS(2459), + [anon_sym_bool] = ACTIONS(2459), + [anon_sym_str] = ACTIONS(2459), + [anon_sym_char] = ACTIONS(2459), + [anon_sym_DASH] = ACTIONS(2457), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_PIPE] = ACTIONS(2457), + [anon_sym_LT] = ACTIONS(2457), + [anon_sym_DOT_DOT] = ACTIONS(2457), + [anon_sym_COLON_COLON] = ACTIONS(2457), + [anon_sym_POUND] = ACTIONS(2457), + [anon_sym_SQUOTE] = ACTIONS(2459), + [anon_sym_async] = ACTIONS(2459), + [anon_sym_break] = ACTIONS(2459), + [anon_sym_const] = ACTIONS(2459), + [anon_sym_continue] = ACTIONS(2459), + [anon_sym_default] = ACTIONS(2459), + [anon_sym_enum] = ACTIONS(2459), + [anon_sym_fn] = ACTIONS(2459), + [anon_sym_for] = ACTIONS(2459), + [anon_sym_gen] = ACTIONS(2459), + [anon_sym_if] = ACTIONS(2459), + [anon_sym_impl] = ACTIONS(2459), + [anon_sym_let] = ACTIONS(2459), + [anon_sym_loop] = ACTIONS(2459), + [anon_sym_match] = ACTIONS(2459), + [anon_sym_mod] = ACTIONS(2459), + [anon_sym_pub] = ACTIONS(2459), + [anon_sym_return] = ACTIONS(2459), + [anon_sym_static] = ACTIONS(2459), + [anon_sym_struct] = ACTIONS(2459), + [anon_sym_trait] = ACTIONS(2459), + [anon_sym_type] = ACTIONS(2459), + [anon_sym_union] = ACTIONS(2459), + [anon_sym_unsafe] = ACTIONS(2459), + [anon_sym_use] = ACTIONS(2459), + [anon_sym_while] = ACTIONS(2459), + [anon_sym_extern] = ACTIONS(2459), + [anon_sym_yield] = ACTIONS(2459), + [anon_sym_move] = ACTIONS(2459), + [anon_sym_try] = ACTIONS(2459), + [sym_integer_literal] = ACTIONS(2457), + [aux_sym_string_literal_token1] = ACTIONS(2457), + [sym_char_literal] = ACTIONS(2457), + [anon_sym_true] = ACTIONS(2459), + [anon_sym_false] = ACTIONS(2459), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2459), + [sym_super] = ACTIONS(2459), + [sym_crate] = ACTIONS(2459), + [sym_metavariable] = ACTIONS(2457), + [sym__raw_string_literal_start] = ACTIONS(2457), + [sym_float_literal] = ACTIONS(2457), }, [STATE(678)] = { [sym_line_comment] = STATE(678), [sym_block_comment] = STATE(678), - [ts_builtin_sym_end] = ACTIONS(2630), - [sym_identifier] = ACTIONS(2632), - [anon_sym_SEMI] = ACTIONS(2630), - [anon_sym_macro_rules_BANG] = ACTIONS(2630), - [anon_sym_LPAREN] = ACTIONS(2630), - [anon_sym_LBRACK] = ACTIONS(2630), - [anon_sym_LBRACE] = ACTIONS(2630), - [anon_sym_RBRACE] = ACTIONS(2630), - [anon_sym_STAR] = ACTIONS(2630), - [anon_sym_u8] = ACTIONS(2632), - [anon_sym_i8] = ACTIONS(2632), - [anon_sym_u16] = ACTIONS(2632), - [anon_sym_i16] = ACTIONS(2632), - [anon_sym_u32] = ACTIONS(2632), - [anon_sym_i32] = ACTIONS(2632), - [anon_sym_u64] = ACTIONS(2632), - [anon_sym_i64] = ACTIONS(2632), - [anon_sym_u128] = ACTIONS(2632), - [anon_sym_i128] = ACTIONS(2632), - [anon_sym_isize] = ACTIONS(2632), - [anon_sym_usize] = ACTIONS(2632), - [anon_sym_f32] = ACTIONS(2632), - [anon_sym_f64] = ACTIONS(2632), - [anon_sym_bool] = ACTIONS(2632), - [anon_sym_str] = ACTIONS(2632), - [anon_sym_char] = ACTIONS(2632), - [anon_sym_DASH] = ACTIONS(2630), - [anon_sym_BANG] = ACTIONS(2630), - [anon_sym_AMP] = ACTIONS(2630), - [anon_sym_PIPE] = ACTIONS(2630), - [anon_sym_LT] = ACTIONS(2630), - [anon_sym_DOT_DOT] = ACTIONS(2630), - [anon_sym_COLON_COLON] = ACTIONS(2630), - [anon_sym_POUND] = ACTIONS(2630), - [anon_sym_SQUOTE] = ACTIONS(2632), - [anon_sym_async] = ACTIONS(2632), - [anon_sym_break] = ACTIONS(2632), - [anon_sym_const] = ACTIONS(2632), - [anon_sym_continue] = ACTIONS(2632), - [anon_sym_default] = ACTIONS(2632), - [anon_sym_enum] = ACTIONS(2632), - [anon_sym_fn] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2632), - [anon_sym_gen] = ACTIONS(2632), - [anon_sym_if] = ACTIONS(2632), - [anon_sym_impl] = ACTIONS(2632), - [anon_sym_let] = ACTIONS(2632), - [anon_sym_loop] = ACTIONS(2632), - [anon_sym_match] = ACTIONS(2632), - [anon_sym_mod] = ACTIONS(2632), - [anon_sym_pub] = ACTIONS(2632), - [anon_sym_return] = ACTIONS(2632), - [anon_sym_static] = ACTIONS(2632), - [anon_sym_struct] = ACTIONS(2632), - [anon_sym_trait] = ACTIONS(2632), - [anon_sym_type] = ACTIONS(2632), - [anon_sym_union] = ACTIONS(2632), - [anon_sym_unsafe] = ACTIONS(2632), - [anon_sym_use] = ACTIONS(2632), - [anon_sym_while] = ACTIONS(2632), - [anon_sym_extern] = ACTIONS(2632), - [anon_sym_yield] = ACTIONS(2632), - [anon_sym_move] = ACTIONS(2632), - [anon_sym_try] = ACTIONS(2632), - [sym_integer_literal] = ACTIONS(2630), - [aux_sym_string_literal_token1] = ACTIONS(2630), - [sym_char_literal] = ACTIONS(2630), - [anon_sym_true] = ACTIONS(2632), - [anon_sym_false] = ACTIONS(2632), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2632), - [sym_super] = ACTIONS(2632), - [sym_crate] = ACTIONS(2632), - [sym_metavariable] = ACTIONS(2630), - [sym__raw_string_literal_start] = ACTIONS(2630), - [sym_float_literal] = ACTIONS(2630), + [ts_builtin_sym_end] = ACTIONS(2461), + [sym_identifier] = ACTIONS(2463), + [anon_sym_SEMI] = ACTIONS(2461), + [anon_sym_macro_rules_BANG] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2461), + [anon_sym_LBRACE] = ACTIONS(2461), + [anon_sym_RBRACE] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_u8] = ACTIONS(2463), + [anon_sym_i8] = ACTIONS(2463), + [anon_sym_u16] = ACTIONS(2463), + [anon_sym_i16] = ACTIONS(2463), + [anon_sym_u32] = ACTIONS(2463), + [anon_sym_i32] = ACTIONS(2463), + [anon_sym_u64] = ACTIONS(2463), + [anon_sym_i64] = ACTIONS(2463), + [anon_sym_u128] = ACTIONS(2463), + [anon_sym_i128] = ACTIONS(2463), + [anon_sym_isize] = ACTIONS(2463), + [anon_sym_usize] = ACTIONS(2463), + [anon_sym_f32] = ACTIONS(2463), + [anon_sym_f64] = ACTIONS(2463), + [anon_sym_bool] = ACTIONS(2463), + [anon_sym_str] = ACTIONS(2463), + [anon_sym_char] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(2461), + [anon_sym_BANG] = ACTIONS(2461), + [anon_sym_AMP] = ACTIONS(2461), + [anon_sym_PIPE] = ACTIONS(2461), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_DOT_DOT] = ACTIONS(2461), + [anon_sym_COLON_COLON] = ACTIONS(2461), + [anon_sym_POUND] = ACTIONS(2461), + [anon_sym_SQUOTE] = ACTIONS(2463), + [anon_sym_async] = ACTIONS(2463), + [anon_sym_break] = ACTIONS(2463), + [anon_sym_const] = ACTIONS(2463), + [anon_sym_continue] = ACTIONS(2463), + [anon_sym_default] = ACTIONS(2463), + [anon_sym_enum] = ACTIONS(2463), + [anon_sym_fn] = ACTIONS(2463), + [anon_sym_for] = ACTIONS(2463), + [anon_sym_gen] = ACTIONS(2463), + [anon_sym_if] = ACTIONS(2463), + [anon_sym_impl] = ACTIONS(2463), + [anon_sym_let] = ACTIONS(2463), + [anon_sym_loop] = ACTIONS(2463), + [anon_sym_match] = ACTIONS(2463), + [anon_sym_mod] = ACTIONS(2463), + [anon_sym_pub] = ACTIONS(2463), + [anon_sym_return] = ACTIONS(2463), + [anon_sym_static] = ACTIONS(2463), + [anon_sym_struct] = ACTIONS(2463), + [anon_sym_trait] = ACTIONS(2463), + [anon_sym_type] = ACTIONS(2463), + [anon_sym_union] = ACTIONS(2463), + [anon_sym_unsafe] = ACTIONS(2463), + [anon_sym_use] = ACTIONS(2463), + [anon_sym_while] = ACTIONS(2463), + [anon_sym_extern] = ACTIONS(2463), + [anon_sym_yield] = ACTIONS(2463), + [anon_sym_move] = ACTIONS(2463), + [anon_sym_try] = ACTIONS(2463), + [sym_integer_literal] = ACTIONS(2461), + [aux_sym_string_literal_token1] = ACTIONS(2461), + [sym_char_literal] = ACTIONS(2461), + [anon_sym_true] = ACTIONS(2463), + [anon_sym_false] = ACTIONS(2463), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2463), + [sym_super] = ACTIONS(2463), + [sym_crate] = ACTIONS(2463), + [sym_metavariable] = ACTIONS(2461), + [sym__raw_string_literal_start] = ACTIONS(2461), + [sym_float_literal] = ACTIONS(2461), }, [STATE(679)] = { [sym_line_comment] = STATE(679), [sym_block_comment] = STATE(679), - [ts_builtin_sym_end] = ACTIONS(2634), - [sym_identifier] = ACTIONS(2636), - [anon_sym_SEMI] = ACTIONS(2634), - [anon_sym_macro_rules_BANG] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2634), - [anon_sym_LBRACK] = ACTIONS(2634), - [anon_sym_LBRACE] = ACTIONS(2634), - [anon_sym_RBRACE] = ACTIONS(2634), - [anon_sym_STAR] = ACTIONS(2634), - [anon_sym_u8] = ACTIONS(2636), - [anon_sym_i8] = ACTIONS(2636), - [anon_sym_u16] = ACTIONS(2636), - [anon_sym_i16] = ACTIONS(2636), - [anon_sym_u32] = ACTIONS(2636), - [anon_sym_i32] = ACTIONS(2636), - [anon_sym_u64] = ACTIONS(2636), - [anon_sym_i64] = ACTIONS(2636), - [anon_sym_u128] = ACTIONS(2636), - [anon_sym_i128] = ACTIONS(2636), - [anon_sym_isize] = ACTIONS(2636), - [anon_sym_usize] = ACTIONS(2636), - [anon_sym_f32] = ACTIONS(2636), - [anon_sym_f64] = ACTIONS(2636), - [anon_sym_bool] = ACTIONS(2636), - [anon_sym_str] = ACTIONS(2636), - [anon_sym_char] = ACTIONS(2636), - [anon_sym_DASH] = ACTIONS(2634), - [anon_sym_BANG] = ACTIONS(2634), - [anon_sym_AMP] = ACTIONS(2634), - [anon_sym_PIPE] = ACTIONS(2634), - [anon_sym_LT] = ACTIONS(2634), - [anon_sym_DOT_DOT] = ACTIONS(2634), - [anon_sym_COLON_COLON] = ACTIONS(2634), - [anon_sym_POUND] = ACTIONS(2634), - [anon_sym_SQUOTE] = ACTIONS(2636), - [anon_sym_async] = ACTIONS(2636), - [anon_sym_break] = ACTIONS(2636), - [anon_sym_const] = ACTIONS(2636), - [anon_sym_continue] = ACTIONS(2636), - [anon_sym_default] = ACTIONS(2636), - [anon_sym_enum] = ACTIONS(2636), - [anon_sym_fn] = ACTIONS(2636), - [anon_sym_for] = ACTIONS(2636), - [anon_sym_gen] = ACTIONS(2636), - [anon_sym_if] = ACTIONS(2636), - [anon_sym_impl] = ACTIONS(2636), - [anon_sym_let] = ACTIONS(2636), - [anon_sym_loop] = ACTIONS(2636), - [anon_sym_match] = ACTIONS(2636), - [anon_sym_mod] = ACTIONS(2636), - [anon_sym_pub] = ACTIONS(2636), - [anon_sym_return] = ACTIONS(2636), - [anon_sym_static] = ACTIONS(2636), - [anon_sym_struct] = ACTIONS(2636), - [anon_sym_trait] = ACTIONS(2636), - [anon_sym_type] = ACTIONS(2636), - [anon_sym_union] = ACTIONS(2636), - [anon_sym_unsafe] = ACTIONS(2636), - [anon_sym_use] = ACTIONS(2636), - [anon_sym_while] = ACTIONS(2636), - [anon_sym_extern] = ACTIONS(2636), - [anon_sym_yield] = ACTIONS(2636), - [anon_sym_move] = ACTIONS(2636), - [anon_sym_try] = ACTIONS(2636), - [sym_integer_literal] = ACTIONS(2634), - [aux_sym_string_literal_token1] = ACTIONS(2634), - [sym_char_literal] = ACTIONS(2634), - [anon_sym_true] = ACTIONS(2636), - [anon_sym_false] = ACTIONS(2636), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2636), - [sym_super] = ACTIONS(2636), - [sym_crate] = ACTIONS(2636), - [sym_metavariable] = ACTIONS(2634), - [sym__raw_string_literal_start] = ACTIONS(2634), - [sym_float_literal] = ACTIONS(2634), + [ts_builtin_sym_end] = ACTIONS(2465), + [sym_identifier] = ACTIONS(2467), + [anon_sym_SEMI] = ACTIONS(2465), + [anon_sym_macro_rules_BANG] = ACTIONS(2465), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_LBRACK] = ACTIONS(2465), + [anon_sym_LBRACE] = ACTIONS(2465), + [anon_sym_RBRACE] = ACTIONS(2465), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_u8] = ACTIONS(2467), + [anon_sym_i8] = ACTIONS(2467), + [anon_sym_u16] = ACTIONS(2467), + [anon_sym_i16] = ACTIONS(2467), + [anon_sym_u32] = ACTIONS(2467), + [anon_sym_i32] = ACTIONS(2467), + [anon_sym_u64] = ACTIONS(2467), + [anon_sym_i64] = ACTIONS(2467), + [anon_sym_u128] = ACTIONS(2467), + [anon_sym_i128] = ACTIONS(2467), + [anon_sym_isize] = ACTIONS(2467), + [anon_sym_usize] = ACTIONS(2467), + [anon_sym_f32] = ACTIONS(2467), + [anon_sym_f64] = ACTIONS(2467), + [anon_sym_bool] = ACTIONS(2467), + [anon_sym_str] = ACTIONS(2467), + [anon_sym_char] = ACTIONS(2467), + [anon_sym_DASH] = ACTIONS(2465), + [anon_sym_BANG] = ACTIONS(2465), + [anon_sym_AMP] = ACTIONS(2465), + [anon_sym_PIPE] = ACTIONS(2465), + [anon_sym_LT] = ACTIONS(2465), + [anon_sym_DOT_DOT] = ACTIONS(2465), + [anon_sym_COLON_COLON] = ACTIONS(2465), + [anon_sym_POUND] = ACTIONS(2465), + [anon_sym_SQUOTE] = ACTIONS(2467), + [anon_sym_async] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(2467), + [anon_sym_const] = ACTIONS(2467), + [anon_sym_continue] = ACTIONS(2467), + [anon_sym_default] = ACTIONS(2467), + [anon_sym_enum] = ACTIONS(2467), + [anon_sym_fn] = ACTIONS(2467), + [anon_sym_for] = ACTIONS(2467), + [anon_sym_gen] = ACTIONS(2467), + [anon_sym_if] = ACTIONS(2467), + [anon_sym_impl] = ACTIONS(2467), + [anon_sym_let] = ACTIONS(2467), + [anon_sym_loop] = ACTIONS(2467), + [anon_sym_match] = ACTIONS(2467), + [anon_sym_mod] = ACTIONS(2467), + [anon_sym_pub] = ACTIONS(2467), + [anon_sym_return] = ACTIONS(2467), + [anon_sym_static] = ACTIONS(2467), + [anon_sym_struct] = ACTIONS(2467), + [anon_sym_trait] = ACTIONS(2467), + [anon_sym_type] = ACTIONS(2467), + [anon_sym_union] = ACTIONS(2467), + [anon_sym_unsafe] = ACTIONS(2467), + [anon_sym_use] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2467), + [anon_sym_extern] = ACTIONS(2467), + [anon_sym_yield] = ACTIONS(2467), + [anon_sym_move] = ACTIONS(2467), + [anon_sym_try] = ACTIONS(2467), + [sym_integer_literal] = ACTIONS(2465), + [aux_sym_string_literal_token1] = ACTIONS(2465), + [sym_char_literal] = ACTIONS(2465), + [anon_sym_true] = ACTIONS(2467), + [anon_sym_false] = ACTIONS(2467), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2467), + [sym_super] = ACTIONS(2467), + [sym_crate] = ACTIONS(2467), + [sym_metavariable] = ACTIONS(2465), + [sym__raw_string_literal_start] = ACTIONS(2465), + [sym_float_literal] = ACTIONS(2465), }, [STATE(680)] = { [sym_line_comment] = STATE(680), [sym_block_comment] = STATE(680), - [ts_builtin_sym_end] = ACTIONS(2638), - [sym_identifier] = ACTIONS(2640), - [anon_sym_SEMI] = ACTIONS(2638), - [anon_sym_macro_rules_BANG] = ACTIONS(2638), - [anon_sym_LPAREN] = ACTIONS(2638), - [anon_sym_LBRACK] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2638), - [anon_sym_RBRACE] = ACTIONS(2638), - [anon_sym_STAR] = ACTIONS(2638), - [anon_sym_u8] = ACTIONS(2640), - [anon_sym_i8] = ACTIONS(2640), - [anon_sym_u16] = ACTIONS(2640), - [anon_sym_i16] = ACTIONS(2640), - [anon_sym_u32] = ACTIONS(2640), - [anon_sym_i32] = ACTIONS(2640), - [anon_sym_u64] = ACTIONS(2640), - [anon_sym_i64] = ACTIONS(2640), - [anon_sym_u128] = ACTIONS(2640), - [anon_sym_i128] = ACTIONS(2640), - [anon_sym_isize] = ACTIONS(2640), - [anon_sym_usize] = ACTIONS(2640), - [anon_sym_f32] = ACTIONS(2640), - [anon_sym_f64] = ACTIONS(2640), - [anon_sym_bool] = ACTIONS(2640), - [anon_sym_str] = ACTIONS(2640), - [anon_sym_char] = ACTIONS(2640), - [anon_sym_DASH] = ACTIONS(2638), - [anon_sym_BANG] = ACTIONS(2638), - [anon_sym_AMP] = ACTIONS(2638), - [anon_sym_PIPE] = ACTIONS(2638), - [anon_sym_LT] = ACTIONS(2638), - [anon_sym_DOT_DOT] = ACTIONS(2638), - [anon_sym_COLON_COLON] = ACTIONS(2638), - [anon_sym_POUND] = ACTIONS(2638), - [anon_sym_SQUOTE] = ACTIONS(2640), - [anon_sym_async] = ACTIONS(2640), - [anon_sym_break] = ACTIONS(2640), - [anon_sym_const] = ACTIONS(2640), - [anon_sym_continue] = ACTIONS(2640), - [anon_sym_default] = ACTIONS(2640), - [anon_sym_enum] = ACTIONS(2640), - [anon_sym_fn] = ACTIONS(2640), - [anon_sym_for] = ACTIONS(2640), - [anon_sym_gen] = ACTIONS(2640), - [anon_sym_if] = ACTIONS(2640), - [anon_sym_impl] = ACTIONS(2640), - [anon_sym_let] = ACTIONS(2640), - [anon_sym_loop] = ACTIONS(2640), - [anon_sym_match] = ACTIONS(2640), - [anon_sym_mod] = ACTIONS(2640), - [anon_sym_pub] = ACTIONS(2640), - [anon_sym_return] = ACTIONS(2640), - [anon_sym_static] = ACTIONS(2640), - [anon_sym_struct] = ACTIONS(2640), - [anon_sym_trait] = ACTIONS(2640), - [anon_sym_type] = ACTIONS(2640), - [anon_sym_union] = ACTIONS(2640), - [anon_sym_unsafe] = ACTIONS(2640), - [anon_sym_use] = ACTIONS(2640), - [anon_sym_while] = ACTIONS(2640), - [anon_sym_extern] = ACTIONS(2640), - [anon_sym_yield] = ACTIONS(2640), - [anon_sym_move] = ACTIONS(2640), - [anon_sym_try] = ACTIONS(2640), - [sym_integer_literal] = ACTIONS(2638), - [aux_sym_string_literal_token1] = ACTIONS(2638), - [sym_char_literal] = ACTIONS(2638), - [anon_sym_true] = ACTIONS(2640), - [anon_sym_false] = ACTIONS(2640), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2640), - [sym_super] = ACTIONS(2640), - [sym_crate] = ACTIONS(2640), - [sym_metavariable] = ACTIONS(2638), - [sym__raw_string_literal_start] = ACTIONS(2638), - [sym_float_literal] = ACTIONS(2638), + [ts_builtin_sym_end] = ACTIONS(2469), + [sym_identifier] = ACTIONS(2471), + [anon_sym_SEMI] = ACTIONS(2469), + [anon_sym_macro_rules_BANG] = ACTIONS(2469), + [anon_sym_LPAREN] = ACTIONS(2469), + [anon_sym_LBRACK] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2469), + [anon_sym_RBRACE] = ACTIONS(2469), + [anon_sym_STAR] = ACTIONS(2469), + [anon_sym_u8] = ACTIONS(2471), + [anon_sym_i8] = ACTIONS(2471), + [anon_sym_u16] = ACTIONS(2471), + [anon_sym_i16] = ACTIONS(2471), + [anon_sym_u32] = ACTIONS(2471), + [anon_sym_i32] = ACTIONS(2471), + [anon_sym_u64] = ACTIONS(2471), + [anon_sym_i64] = ACTIONS(2471), + [anon_sym_u128] = ACTIONS(2471), + [anon_sym_i128] = ACTIONS(2471), + [anon_sym_isize] = ACTIONS(2471), + [anon_sym_usize] = ACTIONS(2471), + [anon_sym_f32] = ACTIONS(2471), + [anon_sym_f64] = ACTIONS(2471), + [anon_sym_bool] = ACTIONS(2471), + [anon_sym_str] = ACTIONS(2471), + [anon_sym_char] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_BANG] = ACTIONS(2469), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_PIPE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2469), + [anon_sym_DOT_DOT] = ACTIONS(2469), + [anon_sym_COLON_COLON] = ACTIONS(2469), + [anon_sym_POUND] = ACTIONS(2469), + [anon_sym_SQUOTE] = ACTIONS(2471), + [anon_sym_async] = ACTIONS(2471), + [anon_sym_break] = ACTIONS(2471), + [anon_sym_const] = ACTIONS(2471), + [anon_sym_continue] = ACTIONS(2471), + [anon_sym_default] = ACTIONS(2471), + [anon_sym_enum] = ACTIONS(2471), + [anon_sym_fn] = ACTIONS(2471), + [anon_sym_for] = ACTIONS(2471), + [anon_sym_gen] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(2471), + [anon_sym_impl] = ACTIONS(2471), + [anon_sym_let] = ACTIONS(2471), + [anon_sym_loop] = ACTIONS(2471), + [anon_sym_match] = ACTIONS(2471), + [anon_sym_mod] = ACTIONS(2471), + [anon_sym_pub] = ACTIONS(2471), + [anon_sym_return] = ACTIONS(2471), + [anon_sym_static] = ACTIONS(2471), + [anon_sym_struct] = ACTIONS(2471), + [anon_sym_trait] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_union] = ACTIONS(2471), + [anon_sym_unsafe] = ACTIONS(2471), + [anon_sym_use] = ACTIONS(2471), + [anon_sym_while] = ACTIONS(2471), + [anon_sym_extern] = ACTIONS(2471), + [anon_sym_yield] = ACTIONS(2471), + [anon_sym_move] = ACTIONS(2471), + [anon_sym_try] = ACTIONS(2471), + [sym_integer_literal] = ACTIONS(2469), + [aux_sym_string_literal_token1] = ACTIONS(2469), + [sym_char_literal] = ACTIONS(2469), + [anon_sym_true] = ACTIONS(2471), + [anon_sym_false] = ACTIONS(2471), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2471), + [sym_super] = ACTIONS(2471), + [sym_crate] = ACTIONS(2471), + [sym_metavariable] = ACTIONS(2469), + [sym__raw_string_literal_start] = ACTIONS(2469), + [sym_float_literal] = ACTIONS(2469), }, [STATE(681)] = { [sym_line_comment] = STATE(681), [sym_block_comment] = STATE(681), - [ts_builtin_sym_end] = ACTIONS(2642), - [sym_identifier] = ACTIONS(2644), - [anon_sym_SEMI] = ACTIONS(2642), - [anon_sym_macro_rules_BANG] = ACTIONS(2642), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_LBRACK] = ACTIONS(2642), - [anon_sym_LBRACE] = ACTIONS(2642), - [anon_sym_RBRACE] = ACTIONS(2642), - [anon_sym_STAR] = ACTIONS(2642), - [anon_sym_u8] = ACTIONS(2644), - [anon_sym_i8] = ACTIONS(2644), - [anon_sym_u16] = ACTIONS(2644), - [anon_sym_i16] = ACTIONS(2644), - [anon_sym_u32] = ACTIONS(2644), - [anon_sym_i32] = ACTIONS(2644), - [anon_sym_u64] = ACTIONS(2644), - [anon_sym_i64] = ACTIONS(2644), - [anon_sym_u128] = ACTIONS(2644), - [anon_sym_i128] = ACTIONS(2644), - [anon_sym_isize] = ACTIONS(2644), - [anon_sym_usize] = ACTIONS(2644), - [anon_sym_f32] = ACTIONS(2644), - [anon_sym_f64] = ACTIONS(2644), - [anon_sym_bool] = ACTIONS(2644), - [anon_sym_str] = ACTIONS(2644), - [anon_sym_char] = ACTIONS(2644), - [anon_sym_DASH] = ACTIONS(2642), - [anon_sym_BANG] = ACTIONS(2642), - [anon_sym_AMP] = ACTIONS(2642), - [anon_sym_PIPE] = ACTIONS(2642), - [anon_sym_LT] = ACTIONS(2642), - [anon_sym_DOT_DOT] = ACTIONS(2642), - [anon_sym_COLON_COLON] = ACTIONS(2642), - [anon_sym_POUND] = ACTIONS(2642), - [anon_sym_SQUOTE] = ACTIONS(2644), - [anon_sym_async] = ACTIONS(2644), - [anon_sym_break] = ACTIONS(2644), - [anon_sym_const] = ACTIONS(2644), - [anon_sym_continue] = ACTIONS(2644), - [anon_sym_default] = ACTIONS(2644), - [anon_sym_enum] = ACTIONS(2644), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_for] = ACTIONS(2644), - [anon_sym_gen] = ACTIONS(2644), - [anon_sym_if] = ACTIONS(2644), - [anon_sym_impl] = ACTIONS(2644), - [anon_sym_let] = ACTIONS(2644), - [anon_sym_loop] = ACTIONS(2644), - [anon_sym_match] = ACTIONS(2644), - [anon_sym_mod] = ACTIONS(2644), - [anon_sym_pub] = ACTIONS(2644), - [anon_sym_return] = ACTIONS(2644), - [anon_sym_static] = ACTIONS(2644), - [anon_sym_struct] = ACTIONS(2644), - [anon_sym_trait] = ACTIONS(2644), - [anon_sym_type] = ACTIONS(2644), - [anon_sym_union] = ACTIONS(2644), - [anon_sym_unsafe] = ACTIONS(2644), - [anon_sym_use] = ACTIONS(2644), - [anon_sym_while] = ACTIONS(2644), - [anon_sym_extern] = ACTIONS(2644), - [anon_sym_yield] = ACTIONS(2644), - [anon_sym_move] = ACTIONS(2644), - [anon_sym_try] = ACTIONS(2644), - [sym_integer_literal] = ACTIONS(2642), - [aux_sym_string_literal_token1] = ACTIONS(2642), - [sym_char_literal] = ACTIONS(2642), - [anon_sym_true] = ACTIONS(2644), - [anon_sym_false] = ACTIONS(2644), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2644), - [sym_super] = ACTIONS(2644), - [sym_crate] = ACTIONS(2644), - [sym_metavariable] = ACTIONS(2642), - [sym__raw_string_literal_start] = ACTIONS(2642), - [sym_float_literal] = ACTIONS(2642), + [ts_builtin_sym_end] = ACTIONS(2473), + [sym_identifier] = ACTIONS(2475), + [anon_sym_SEMI] = ACTIONS(2473), + [anon_sym_macro_rules_BANG] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2473), + [anon_sym_LBRACK] = ACTIONS(2473), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_RBRACE] = ACTIONS(2473), + [anon_sym_STAR] = ACTIONS(2473), + [anon_sym_u8] = ACTIONS(2475), + [anon_sym_i8] = ACTIONS(2475), + [anon_sym_u16] = ACTIONS(2475), + [anon_sym_i16] = ACTIONS(2475), + [anon_sym_u32] = ACTIONS(2475), + [anon_sym_i32] = ACTIONS(2475), + [anon_sym_u64] = ACTIONS(2475), + [anon_sym_i64] = ACTIONS(2475), + [anon_sym_u128] = ACTIONS(2475), + [anon_sym_i128] = ACTIONS(2475), + [anon_sym_isize] = ACTIONS(2475), + [anon_sym_usize] = ACTIONS(2475), + [anon_sym_f32] = ACTIONS(2475), + [anon_sym_f64] = ACTIONS(2475), + [anon_sym_bool] = ACTIONS(2475), + [anon_sym_str] = ACTIONS(2475), + [anon_sym_char] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2473), + [anon_sym_BANG] = ACTIONS(2473), + [anon_sym_AMP] = ACTIONS(2473), + [anon_sym_PIPE] = ACTIONS(2473), + [anon_sym_LT] = ACTIONS(2473), + [anon_sym_DOT_DOT] = ACTIONS(2473), + [anon_sym_COLON_COLON] = ACTIONS(2473), + [anon_sym_POUND] = ACTIONS(2473), + [anon_sym_SQUOTE] = ACTIONS(2475), + [anon_sym_async] = ACTIONS(2475), + [anon_sym_break] = ACTIONS(2475), + [anon_sym_const] = ACTIONS(2475), + [anon_sym_continue] = ACTIONS(2475), + [anon_sym_default] = ACTIONS(2475), + [anon_sym_enum] = ACTIONS(2475), + [anon_sym_fn] = ACTIONS(2475), + [anon_sym_for] = ACTIONS(2475), + [anon_sym_gen] = ACTIONS(2475), + [anon_sym_if] = ACTIONS(2475), + [anon_sym_impl] = ACTIONS(2475), + [anon_sym_let] = ACTIONS(2475), + [anon_sym_loop] = ACTIONS(2475), + [anon_sym_match] = ACTIONS(2475), + [anon_sym_mod] = ACTIONS(2475), + [anon_sym_pub] = ACTIONS(2475), + [anon_sym_return] = ACTIONS(2475), + [anon_sym_static] = ACTIONS(2475), + [anon_sym_struct] = ACTIONS(2475), + [anon_sym_trait] = ACTIONS(2475), + [anon_sym_type] = ACTIONS(2475), + [anon_sym_union] = ACTIONS(2475), + [anon_sym_unsafe] = ACTIONS(2475), + [anon_sym_use] = ACTIONS(2475), + [anon_sym_while] = ACTIONS(2475), + [anon_sym_extern] = ACTIONS(2475), + [anon_sym_yield] = ACTIONS(2475), + [anon_sym_move] = ACTIONS(2475), + [anon_sym_try] = ACTIONS(2475), + [sym_integer_literal] = ACTIONS(2473), + [aux_sym_string_literal_token1] = ACTIONS(2473), + [sym_char_literal] = ACTIONS(2473), + [anon_sym_true] = ACTIONS(2475), + [anon_sym_false] = ACTIONS(2475), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2475), + [sym_super] = ACTIONS(2475), + [sym_crate] = ACTIONS(2475), + [sym_metavariable] = ACTIONS(2473), + [sym__raw_string_literal_start] = ACTIONS(2473), + [sym_float_literal] = ACTIONS(2473), }, [STATE(682)] = { [sym_line_comment] = STATE(682), [sym_block_comment] = STATE(682), - [ts_builtin_sym_end] = ACTIONS(2646), - [sym_identifier] = ACTIONS(2648), - [anon_sym_SEMI] = ACTIONS(2646), - [anon_sym_macro_rules_BANG] = ACTIONS(2646), - [anon_sym_LPAREN] = ACTIONS(2646), - [anon_sym_LBRACK] = ACTIONS(2646), - [anon_sym_LBRACE] = ACTIONS(2646), - [anon_sym_RBRACE] = ACTIONS(2646), - [anon_sym_STAR] = ACTIONS(2646), - [anon_sym_u8] = ACTIONS(2648), - [anon_sym_i8] = ACTIONS(2648), - [anon_sym_u16] = ACTIONS(2648), - [anon_sym_i16] = ACTIONS(2648), - [anon_sym_u32] = ACTIONS(2648), - [anon_sym_i32] = ACTIONS(2648), - [anon_sym_u64] = ACTIONS(2648), - [anon_sym_i64] = ACTIONS(2648), - [anon_sym_u128] = ACTIONS(2648), - [anon_sym_i128] = ACTIONS(2648), - [anon_sym_isize] = ACTIONS(2648), - [anon_sym_usize] = ACTIONS(2648), - [anon_sym_f32] = ACTIONS(2648), - [anon_sym_f64] = ACTIONS(2648), - [anon_sym_bool] = ACTIONS(2648), - [anon_sym_str] = ACTIONS(2648), - [anon_sym_char] = ACTIONS(2648), - [anon_sym_DASH] = ACTIONS(2646), - [anon_sym_BANG] = ACTIONS(2646), - [anon_sym_AMP] = ACTIONS(2646), - [anon_sym_PIPE] = ACTIONS(2646), - [anon_sym_LT] = ACTIONS(2646), - [anon_sym_DOT_DOT] = ACTIONS(2646), - [anon_sym_COLON_COLON] = ACTIONS(2646), - [anon_sym_POUND] = ACTIONS(2646), - [anon_sym_SQUOTE] = ACTIONS(2648), - [anon_sym_async] = ACTIONS(2648), - [anon_sym_break] = ACTIONS(2648), - [anon_sym_const] = ACTIONS(2648), - [anon_sym_continue] = ACTIONS(2648), - [anon_sym_default] = ACTIONS(2648), - [anon_sym_enum] = ACTIONS(2648), - [anon_sym_fn] = ACTIONS(2648), - [anon_sym_for] = ACTIONS(2648), - [anon_sym_gen] = ACTIONS(2648), - [anon_sym_if] = ACTIONS(2648), - [anon_sym_impl] = ACTIONS(2648), - [anon_sym_let] = ACTIONS(2648), - [anon_sym_loop] = ACTIONS(2648), - [anon_sym_match] = ACTIONS(2648), - [anon_sym_mod] = ACTIONS(2648), - [anon_sym_pub] = ACTIONS(2648), - [anon_sym_return] = ACTIONS(2648), - [anon_sym_static] = ACTIONS(2648), - [anon_sym_struct] = ACTIONS(2648), - [anon_sym_trait] = ACTIONS(2648), - [anon_sym_type] = ACTIONS(2648), - [anon_sym_union] = ACTIONS(2648), - [anon_sym_unsafe] = ACTIONS(2648), - [anon_sym_use] = ACTIONS(2648), - [anon_sym_while] = ACTIONS(2648), - [anon_sym_extern] = ACTIONS(2648), - [anon_sym_yield] = ACTIONS(2648), - [anon_sym_move] = ACTIONS(2648), - [anon_sym_try] = ACTIONS(2648), - [sym_integer_literal] = ACTIONS(2646), - [aux_sym_string_literal_token1] = ACTIONS(2646), - [sym_char_literal] = ACTIONS(2646), - [anon_sym_true] = ACTIONS(2648), - [anon_sym_false] = ACTIONS(2648), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2648), - [sym_super] = ACTIONS(2648), - [sym_crate] = ACTIONS(2648), - [sym_metavariable] = ACTIONS(2646), - [sym__raw_string_literal_start] = ACTIONS(2646), - [sym_float_literal] = ACTIONS(2646), + [ts_builtin_sym_end] = ACTIONS(2477), + [sym_identifier] = ACTIONS(2479), + [anon_sym_SEMI] = ACTIONS(2477), + [anon_sym_macro_rules_BANG] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_LBRACK] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(2477), + [anon_sym_RBRACE] = ACTIONS(2477), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_u8] = ACTIONS(2479), + [anon_sym_i8] = ACTIONS(2479), + [anon_sym_u16] = ACTIONS(2479), + [anon_sym_i16] = ACTIONS(2479), + [anon_sym_u32] = ACTIONS(2479), + [anon_sym_i32] = ACTIONS(2479), + [anon_sym_u64] = ACTIONS(2479), + [anon_sym_i64] = ACTIONS(2479), + [anon_sym_u128] = ACTIONS(2479), + [anon_sym_i128] = ACTIONS(2479), + [anon_sym_isize] = ACTIONS(2479), + [anon_sym_usize] = ACTIONS(2479), + [anon_sym_f32] = ACTIONS(2479), + [anon_sym_f64] = ACTIONS(2479), + [anon_sym_bool] = ACTIONS(2479), + [anon_sym_str] = ACTIONS(2479), + [anon_sym_char] = ACTIONS(2479), + [anon_sym_DASH] = ACTIONS(2477), + [anon_sym_BANG] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(2477), + [anon_sym_PIPE] = ACTIONS(2477), + [anon_sym_LT] = ACTIONS(2477), + [anon_sym_DOT_DOT] = ACTIONS(2477), + [anon_sym_COLON_COLON] = ACTIONS(2477), + [anon_sym_POUND] = ACTIONS(2477), + [anon_sym_SQUOTE] = ACTIONS(2479), + [anon_sym_async] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2479), + [anon_sym_const] = ACTIONS(2479), + [anon_sym_continue] = ACTIONS(2479), + [anon_sym_default] = ACTIONS(2479), + [anon_sym_enum] = ACTIONS(2479), + [anon_sym_fn] = ACTIONS(2479), + [anon_sym_for] = ACTIONS(2479), + [anon_sym_gen] = ACTIONS(2479), + [anon_sym_if] = ACTIONS(2479), + [anon_sym_impl] = ACTIONS(2479), + [anon_sym_let] = ACTIONS(2479), + [anon_sym_loop] = ACTIONS(2479), + [anon_sym_match] = ACTIONS(2479), + [anon_sym_mod] = ACTIONS(2479), + [anon_sym_pub] = ACTIONS(2479), + [anon_sym_return] = ACTIONS(2479), + [anon_sym_static] = ACTIONS(2479), + [anon_sym_struct] = ACTIONS(2479), + [anon_sym_trait] = ACTIONS(2479), + [anon_sym_type] = ACTIONS(2479), + [anon_sym_union] = ACTIONS(2479), + [anon_sym_unsafe] = ACTIONS(2479), + [anon_sym_use] = ACTIONS(2479), + [anon_sym_while] = ACTIONS(2479), + [anon_sym_extern] = ACTIONS(2479), + [anon_sym_yield] = ACTIONS(2479), + [anon_sym_move] = ACTIONS(2479), + [anon_sym_try] = ACTIONS(2479), + [sym_integer_literal] = ACTIONS(2477), + [aux_sym_string_literal_token1] = ACTIONS(2477), + [sym_char_literal] = ACTIONS(2477), + [anon_sym_true] = ACTIONS(2479), + [anon_sym_false] = ACTIONS(2479), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2479), + [sym_super] = ACTIONS(2479), + [sym_crate] = ACTIONS(2479), + [sym_metavariable] = ACTIONS(2477), + [sym__raw_string_literal_start] = ACTIONS(2477), + [sym_float_literal] = ACTIONS(2477), }, [STATE(683)] = { [sym_line_comment] = STATE(683), [sym_block_comment] = STATE(683), - [ts_builtin_sym_end] = ACTIONS(2650), - [sym_identifier] = ACTIONS(2652), - [anon_sym_SEMI] = ACTIONS(2650), - [anon_sym_macro_rules_BANG] = ACTIONS(2650), - [anon_sym_LPAREN] = ACTIONS(2650), - [anon_sym_LBRACK] = ACTIONS(2650), - [anon_sym_LBRACE] = ACTIONS(2650), - [anon_sym_RBRACE] = ACTIONS(2650), - [anon_sym_STAR] = ACTIONS(2650), - [anon_sym_u8] = ACTIONS(2652), - [anon_sym_i8] = ACTIONS(2652), - [anon_sym_u16] = ACTIONS(2652), - [anon_sym_i16] = ACTIONS(2652), - [anon_sym_u32] = ACTIONS(2652), - [anon_sym_i32] = ACTIONS(2652), - [anon_sym_u64] = ACTIONS(2652), - [anon_sym_i64] = ACTIONS(2652), - [anon_sym_u128] = ACTIONS(2652), - [anon_sym_i128] = ACTIONS(2652), - [anon_sym_isize] = ACTIONS(2652), - [anon_sym_usize] = ACTIONS(2652), - [anon_sym_f32] = ACTIONS(2652), - [anon_sym_f64] = ACTIONS(2652), - [anon_sym_bool] = ACTIONS(2652), - [anon_sym_str] = ACTIONS(2652), - [anon_sym_char] = ACTIONS(2652), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_BANG] = ACTIONS(2650), - [anon_sym_AMP] = ACTIONS(2650), - [anon_sym_PIPE] = ACTIONS(2650), - [anon_sym_LT] = ACTIONS(2650), - [anon_sym_DOT_DOT] = ACTIONS(2650), - [anon_sym_COLON_COLON] = ACTIONS(2650), - [anon_sym_POUND] = ACTIONS(2650), - [anon_sym_SQUOTE] = ACTIONS(2652), - [anon_sym_async] = ACTIONS(2652), - [anon_sym_break] = ACTIONS(2652), - [anon_sym_const] = ACTIONS(2652), - [anon_sym_continue] = ACTIONS(2652), - [anon_sym_default] = ACTIONS(2652), - [anon_sym_enum] = ACTIONS(2652), - [anon_sym_fn] = ACTIONS(2652), - [anon_sym_for] = ACTIONS(2652), - [anon_sym_gen] = ACTIONS(2652), - [anon_sym_if] = ACTIONS(2652), - [anon_sym_impl] = ACTIONS(2652), - [anon_sym_let] = ACTIONS(2652), - [anon_sym_loop] = ACTIONS(2652), - [anon_sym_match] = ACTIONS(2652), - [anon_sym_mod] = ACTIONS(2652), - [anon_sym_pub] = ACTIONS(2652), - [anon_sym_return] = ACTIONS(2652), - [anon_sym_static] = ACTIONS(2652), - [anon_sym_struct] = ACTIONS(2652), - [anon_sym_trait] = ACTIONS(2652), - [anon_sym_type] = ACTIONS(2652), - [anon_sym_union] = ACTIONS(2652), - [anon_sym_unsafe] = ACTIONS(2652), - [anon_sym_use] = ACTIONS(2652), - [anon_sym_while] = ACTIONS(2652), - [anon_sym_extern] = ACTIONS(2652), - [anon_sym_yield] = ACTIONS(2652), - [anon_sym_move] = ACTIONS(2652), - [anon_sym_try] = ACTIONS(2652), - [sym_integer_literal] = ACTIONS(2650), - [aux_sym_string_literal_token1] = ACTIONS(2650), - [sym_char_literal] = ACTIONS(2650), - [anon_sym_true] = ACTIONS(2652), - [anon_sym_false] = ACTIONS(2652), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2652), - [sym_super] = ACTIONS(2652), - [sym_crate] = ACTIONS(2652), - [sym_metavariable] = ACTIONS(2650), - [sym__raw_string_literal_start] = ACTIONS(2650), - [sym_float_literal] = ACTIONS(2650), + [ts_builtin_sym_end] = ACTIONS(2481), + [sym_identifier] = ACTIONS(2483), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_macro_rules_BANG] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2481), + [anon_sym_LBRACK] = ACTIONS(2481), + [anon_sym_LBRACE] = ACTIONS(2481), + [anon_sym_RBRACE] = ACTIONS(2481), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_u8] = ACTIONS(2483), + [anon_sym_i8] = ACTIONS(2483), + [anon_sym_u16] = ACTIONS(2483), + [anon_sym_i16] = ACTIONS(2483), + [anon_sym_u32] = ACTIONS(2483), + [anon_sym_i32] = ACTIONS(2483), + [anon_sym_u64] = ACTIONS(2483), + [anon_sym_i64] = ACTIONS(2483), + [anon_sym_u128] = ACTIONS(2483), + [anon_sym_i128] = ACTIONS(2483), + [anon_sym_isize] = ACTIONS(2483), + [anon_sym_usize] = ACTIONS(2483), + [anon_sym_f32] = ACTIONS(2483), + [anon_sym_f64] = ACTIONS(2483), + [anon_sym_bool] = ACTIONS(2483), + [anon_sym_str] = ACTIONS(2483), + [anon_sym_char] = ACTIONS(2483), + [anon_sym_DASH] = ACTIONS(2481), + [anon_sym_BANG] = ACTIONS(2481), + [anon_sym_AMP] = ACTIONS(2481), + [anon_sym_PIPE] = ACTIONS(2481), + [anon_sym_LT] = ACTIONS(2481), + [anon_sym_DOT_DOT] = ACTIONS(2481), + [anon_sym_COLON_COLON] = ACTIONS(2481), + [anon_sym_POUND] = ACTIONS(2481), + [anon_sym_SQUOTE] = ACTIONS(2483), + [anon_sym_async] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(2483), + [anon_sym_const] = ACTIONS(2483), + [anon_sym_continue] = ACTIONS(2483), + [anon_sym_default] = ACTIONS(2483), + [anon_sym_enum] = ACTIONS(2483), + [anon_sym_fn] = ACTIONS(2483), + [anon_sym_for] = ACTIONS(2483), + [anon_sym_gen] = ACTIONS(2483), + [anon_sym_if] = ACTIONS(2483), + [anon_sym_impl] = ACTIONS(2483), + [anon_sym_let] = ACTIONS(2483), + [anon_sym_loop] = ACTIONS(2483), + [anon_sym_match] = ACTIONS(2483), + [anon_sym_mod] = ACTIONS(2483), + [anon_sym_pub] = ACTIONS(2483), + [anon_sym_return] = ACTIONS(2483), + [anon_sym_static] = ACTIONS(2483), + [anon_sym_struct] = ACTIONS(2483), + [anon_sym_trait] = ACTIONS(2483), + [anon_sym_type] = ACTIONS(2483), + [anon_sym_union] = ACTIONS(2483), + [anon_sym_unsafe] = ACTIONS(2483), + [anon_sym_use] = ACTIONS(2483), + [anon_sym_while] = ACTIONS(2483), + [anon_sym_extern] = ACTIONS(2483), + [anon_sym_yield] = ACTIONS(2483), + [anon_sym_move] = ACTIONS(2483), + [anon_sym_try] = ACTIONS(2483), + [sym_integer_literal] = ACTIONS(2481), + [aux_sym_string_literal_token1] = ACTIONS(2481), + [sym_char_literal] = ACTIONS(2481), + [anon_sym_true] = ACTIONS(2483), + [anon_sym_false] = ACTIONS(2483), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2483), + [sym_super] = ACTIONS(2483), + [sym_crate] = ACTIONS(2483), + [sym_metavariable] = ACTIONS(2481), + [sym__raw_string_literal_start] = ACTIONS(2481), + [sym_float_literal] = ACTIONS(2481), }, [STATE(684)] = { - [sym_attribute_item] = STATE(1145), - [sym_inner_attribute_item] = STATE(1145), - [sym_bracketed_type] = STATE(3695), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3416), - [sym_macro_invocation] = STATE(2883), - [sym_scoped_identifier] = STATE(2241), - [sym_scoped_type_identifier] = STATE(3110), - [sym_match_pattern] = STATE(3647), - [sym_const_block] = STATE(2883), - [sym__pattern] = STATE(2909), - [sym_generic_pattern] = STATE(2883), - [sym_tuple_pattern] = STATE(2883), - [sym_slice_pattern] = STATE(2883), - [sym_tuple_struct_pattern] = STATE(2883), - [sym_struct_pattern] = STATE(2883), - [sym_remaining_field_pattern] = STATE(2883), - [sym_mut_pattern] = STATE(2883), - [sym_range_pattern] = STATE(2883), - [sym_ref_pattern] = STATE(2883), - [sym_captured_pattern] = STATE(2883), - [sym_reference_pattern] = STATE(2883), - [sym_or_pattern] = STATE(2883), - [sym__literal_pattern] = STATE(2449), - [sym_negative_literal] = STATE(2408), - [sym_string_literal] = STATE(2408), - [sym_raw_string_literal] = STATE(2408), - [sym_boolean_literal] = STATE(2408), [sym_line_comment] = STATE(684), [sym_block_comment] = STATE(684), - [aux_sym_match_arm_repeat1] = STATE(1077), - [sym_identifier] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_u8] = ACTIONS(1679), - [anon_sym_i8] = ACTIONS(1679), - [anon_sym_u16] = ACTIONS(1679), - [anon_sym_i16] = ACTIONS(1679), - [anon_sym_u32] = ACTIONS(1679), - [anon_sym_i32] = ACTIONS(1679), - [anon_sym_u64] = ACTIONS(1679), - [anon_sym_i64] = ACTIONS(1679), - [anon_sym_u128] = ACTIONS(1679), - [anon_sym_i128] = ACTIONS(1679), - [anon_sym_isize] = ACTIONS(1679), - [anon_sym_usize] = ACTIONS(1679), - [anon_sym_f32] = ACTIONS(1679), - [anon_sym_f64] = ACTIONS(1679), - [anon_sym_bool] = ACTIONS(1679), - [anon_sym_str] = ACTIONS(1679), - [anon_sym_char] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), - [anon_sym_COLON_COLON] = ACTIONS(1693), - [anon_sym_POUND] = ACTIONS(1695), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_gen] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [sym_mutable_specifier] = ACTIONS(1703), - [sym_integer_literal] = ACTIONS(1705), - [aux_sym_string_literal_token1] = ACTIONS(1707), - [sym_char_literal] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1709), - [anon_sym_false] = ACTIONS(1709), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1711), - [sym_super] = ACTIONS(1711), - [sym_crate] = ACTIONS(1711), - [sym_metavariable] = ACTIONS(1713), - [sym__raw_string_literal_start] = ACTIONS(1715), - [sym_float_literal] = ACTIONS(1705), + [ts_builtin_sym_end] = ACTIONS(2485), + [sym_identifier] = ACTIONS(2487), + [anon_sym_SEMI] = ACTIONS(2485), + [anon_sym_macro_rules_BANG] = ACTIONS(2485), + [anon_sym_LPAREN] = ACTIONS(2485), + [anon_sym_LBRACK] = ACTIONS(2485), + [anon_sym_LBRACE] = ACTIONS(2485), + [anon_sym_RBRACE] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_u8] = ACTIONS(2487), + [anon_sym_i8] = ACTIONS(2487), + [anon_sym_u16] = ACTIONS(2487), + [anon_sym_i16] = ACTIONS(2487), + [anon_sym_u32] = ACTIONS(2487), + [anon_sym_i32] = ACTIONS(2487), + [anon_sym_u64] = ACTIONS(2487), + [anon_sym_i64] = ACTIONS(2487), + [anon_sym_u128] = ACTIONS(2487), + [anon_sym_i128] = ACTIONS(2487), + [anon_sym_isize] = ACTIONS(2487), + [anon_sym_usize] = ACTIONS(2487), + [anon_sym_f32] = ACTIONS(2487), + [anon_sym_f64] = ACTIONS(2487), + [anon_sym_bool] = ACTIONS(2487), + [anon_sym_str] = ACTIONS(2487), + [anon_sym_char] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_BANG] = ACTIONS(2485), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_PIPE] = ACTIONS(2485), + [anon_sym_LT] = ACTIONS(2485), + [anon_sym_DOT_DOT] = ACTIONS(2485), + [anon_sym_COLON_COLON] = ACTIONS(2485), + [anon_sym_POUND] = ACTIONS(2485), + [anon_sym_SQUOTE] = ACTIONS(2487), + [anon_sym_async] = ACTIONS(2487), + [anon_sym_break] = ACTIONS(2487), + [anon_sym_const] = ACTIONS(2487), + [anon_sym_continue] = ACTIONS(2487), + [anon_sym_default] = ACTIONS(2487), + [anon_sym_enum] = ACTIONS(2487), + [anon_sym_fn] = ACTIONS(2487), + [anon_sym_for] = ACTIONS(2487), + [anon_sym_gen] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(2487), + [anon_sym_impl] = ACTIONS(2487), + [anon_sym_let] = ACTIONS(2487), + [anon_sym_loop] = ACTIONS(2487), + [anon_sym_match] = ACTIONS(2487), + [anon_sym_mod] = ACTIONS(2487), + [anon_sym_pub] = ACTIONS(2487), + [anon_sym_return] = ACTIONS(2487), + [anon_sym_static] = ACTIONS(2487), + [anon_sym_struct] = ACTIONS(2487), + [anon_sym_trait] = ACTIONS(2487), + [anon_sym_type] = ACTIONS(2487), + [anon_sym_union] = ACTIONS(2487), + [anon_sym_unsafe] = ACTIONS(2487), + [anon_sym_use] = ACTIONS(2487), + [anon_sym_while] = ACTIONS(2487), + [anon_sym_extern] = ACTIONS(2487), + [anon_sym_yield] = ACTIONS(2487), + [anon_sym_move] = ACTIONS(2487), + [anon_sym_try] = ACTIONS(2487), + [sym_integer_literal] = ACTIONS(2485), + [aux_sym_string_literal_token1] = ACTIONS(2485), + [sym_char_literal] = ACTIONS(2485), + [anon_sym_true] = ACTIONS(2487), + [anon_sym_false] = ACTIONS(2487), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2487), + [sym_super] = ACTIONS(2487), + [sym_crate] = ACTIONS(2487), + [sym_metavariable] = ACTIONS(2485), + [sym__raw_string_literal_start] = ACTIONS(2485), + [sym_float_literal] = ACTIONS(2485), }, [STATE(685)] = { [sym_line_comment] = STATE(685), [sym_block_comment] = STATE(685), - [ts_builtin_sym_end] = ACTIONS(2654), - [sym_identifier] = ACTIONS(2656), - [anon_sym_SEMI] = ACTIONS(2654), - [anon_sym_macro_rules_BANG] = ACTIONS(2654), - [anon_sym_LPAREN] = ACTIONS(2654), - [anon_sym_LBRACK] = ACTIONS(2654), - [anon_sym_LBRACE] = ACTIONS(2654), - [anon_sym_RBRACE] = ACTIONS(2654), - [anon_sym_STAR] = ACTIONS(2654), - [anon_sym_u8] = ACTIONS(2656), - [anon_sym_i8] = ACTIONS(2656), - [anon_sym_u16] = ACTIONS(2656), - [anon_sym_i16] = ACTIONS(2656), - [anon_sym_u32] = ACTIONS(2656), - [anon_sym_i32] = ACTIONS(2656), - [anon_sym_u64] = ACTIONS(2656), - [anon_sym_i64] = ACTIONS(2656), - [anon_sym_u128] = ACTIONS(2656), - [anon_sym_i128] = ACTIONS(2656), - [anon_sym_isize] = ACTIONS(2656), - [anon_sym_usize] = ACTIONS(2656), - [anon_sym_f32] = ACTIONS(2656), - [anon_sym_f64] = ACTIONS(2656), - [anon_sym_bool] = ACTIONS(2656), - [anon_sym_str] = ACTIONS(2656), - [anon_sym_char] = ACTIONS(2656), - [anon_sym_DASH] = ACTIONS(2654), - [anon_sym_BANG] = ACTIONS(2654), - [anon_sym_AMP] = ACTIONS(2654), - [anon_sym_PIPE] = ACTIONS(2654), - [anon_sym_LT] = ACTIONS(2654), - [anon_sym_DOT_DOT] = ACTIONS(2654), - [anon_sym_COLON_COLON] = ACTIONS(2654), - [anon_sym_POUND] = ACTIONS(2654), - [anon_sym_SQUOTE] = ACTIONS(2656), - [anon_sym_async] = ACTIONS(2656), - [anon_sym_break] = ACTIONS(2656), - [anon_sym_const] = ACTIONS(2656), - [anon_sym_continue] = ACTIONS(2656), - [anon_sym_default] = ACTIONS(2656), - [anon_sym_enum] = ACTIONS(2656), - [anon_sym_fn] = ACTIONS(2656), - [anon_sym_for] = ACTIONS(2656), - [anon_sym_gen] = ACTIONS(2656), - [anon_sym_if] = ACTIONS(2656), - [anon_sym_impl] = ACTIONS(2656), - [anon_sym_let] = ACTIONS(2656), - [anon_sym_loop] = ACTIONS(2656), - [anon_sym_match] = ACTIONS(2656), - [anon_sym_mod] = ACTIONS(2656), - [anon_sym_pub] = ACTIONS(2656), - [anon_sym_return] = ACTIONS(2656), - [anon_sym_static] = ACTIONS(2656), - [anon_sym_struct] = ACTIONS(2656), - [anon_sym_trait] = ACTIONS(2656), - [anon_sym_type] = ACTIONS(2656), - [anon_sym_union] = ACTIONS(2656), - [anon_sym_unsafe] = ACTIONS(2656), - [anon_sym_use] = ACTIONS(2656), - [anon_sym_while] = ACTIONS(2656), - [anon_sym_extern] = ACTIONS(2656), - [anon_sym_yield] = ACTIONS(2656), - [anon_sym_move] = ACTIONS(2656), - [anon_sym_try] = ACTIONS(2656), - [sym_integer_literal] = ACTIONS(2654), - [aux_sym_string_literal_token1] = ACTIONS(2654), - [sym_char_literal] = ACTIONS(2654), - [anon_sym_true] = ACTIONS(2656), - [anon_sym_false] = ACTIONS(2656), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2656), - [sym_super] = ACTIONS(2656), - [sym_crate] = ACTIONS(2656), - [sym_metavariable] = ACTIONS(2654), - [sym__raw_string_literal_start] = ACTIONS(2654), - [sym_float_literal] = ACTIONS(2654), + [ts_builtin_sym_end] = ACTIONS(2489), + [sym_identifier] = ACTIONS(2491), + [anon_sym_SEMI] = ACTIONS(2489), + [anon_sym_macro_rules_BANG] = ACTIONS(2489), + [anon_sym_LPAREN] = ACTIONS(2489), + [anon_sym_LBRACK] = ACTIONS(2489), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_RBRACE] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(2489), + [anon_sym_u8] = ACTIONS(2491), + [anon_sym_i8] = ACTIONS(2491), + [anon_sym_u16] = ACTIONS(2491), + [anon_sym_i16] = ACTIONS(2491), + [anon_sym_u32] = ACTIONS(2491), + [anon_sym_i32] = ACTIONS(2491), + [anon_sym_u64] = ACTIONS(2491), + [anon_sym_i64] = ACTIONS(2491), + [anon_sym_u128] = ACTIONS(2491), + [anon_sym_i128] = ACTIONS(2491), + [anon_sym_isize] = ACTIONS(2491), + [anon_sym_usize] = ACTIONS(2491), + [anon_sym_f32] = ACTIONS(2491), + [anon_sym_f64] = ACTIONS(2491), + [anon_sym_bool] = ACTIONS(2491), + [anon_sym_str] = ACTIONS(2491), + [anon_sym_char] = ACTIONS(2491), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_BANG] = ACTIONS(2489), + [anon_sym_AMP] = ACTIONS(2489), + [anon_sym_PIPE] = ACTIONS(2489), + [anon_sym_LT] = ACTIONS(2489), + [anon_sym_DOT_DOT] = ACTIONS(2489), + [anon_sym_COLON_COLON] = ACTIONS(2489), + [anon_sym_POUND] = ACTIONS(2489), + [anon_sym_SQUOTE] = ACTIONS(2491), + [anon_sym_async] = ACTIONS(2491), + [anon_sym_break] = ACTIONS(2491), + [anon_sym_const] = ACTIONS(2491), + [anon_sym_continue] = ACTIONS(2491), + [anon_sym_default] = ACTIONS(2491), + [anon_sym_enum] = ACTIONS(2491), + [anon_sym_fn] = ACTIONS(2491), + [anon_sym_for] = ACTIONS(2491), + [anon_sym_gen] = ACTIONS(2491), + [anon_sym_if] = ACTIONS(2491), + [anon_sym_impl] = ACTIONS(2491), + [anon_sym_let] = ACTIONS(2491), + [anon_sym_loop] = ACTIONS(2491), + [anon_sym_match] = ACTIONS(2491), + [anon_sym_mod] = ACTIONS(2491), + [anon_sym_pub] = ACTIONS(2491), + [anon_sym_return] = ACTIONS(2491), + [anon_sym_static] = ACTIONS(2491), + [anon_sym_struct] = ACTIONS(2491), + [anon_sym_trait] = ACTIONS(2491), + [anon_sym_type] = ACTIONS(2491), + [anon_sym_union] = ACTIONS(2491), + [anon_sym_unsafe] = ACTIONS(2491), + [anon_sym_use] = ACTIONS(2491), + [anon_sym_while] = ACTIONS(2491), + [anon_sym_extern] = ACTIONS(2491), + [anon_sym_yield] = ACTIONS(2491), + [anon_sym_move] = ACTIONS(2491), + [anon_sym_try] = ACTIONS(2491), + [sym_integer_literal] = ACTIONS(2489), + [aux_sym_string_literal_token1] = ACTIONS(2489), + [sym_char_literal] = ACTIONS(2489), + [anon_sym_true] = ACTIONS(2491), + [anon_sym_false] = ACTIONS(2491), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2491), + [sym_super] = ACTIONS(2491), + [sym_crate] = ACTIONS(2491), + [sym_metavariable] = ACTIONS(2489), + [sym__raw_string_literal_start] = ACTIONS(2489), + [sym_float_literal] = ACTIONS(2489), }, [STATE(686)] = { [sym_line_comment] = STATE(686), [sym_block_comment] = STATE(686), - [ts_builtin_sym_end] = ACTIONS(2658), - [sym_identifier] = ACTIONS(2660), - [anon_sym_SEMI] = ACTIONS(2658), - [anon_sym_macro_rules_BANG] = ACTIONS(2658), - [anon_sym_LPAREN] = ACTIONS(2658), - [anon_sym_LBRACK] = ACTIONS(2658), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_RBRACE] = ACTIONS(2658), - [anon_sym_STAR] = ACTIONS(2658), - [anon_sym_u8] = ACTIONS(2660), - [anon_sym_i8] = ACTIONS(2660), - [anon_sym_u16] = ACTIONS(2660), - [anon_sym_i16] = ACTIONS(2660), - [anon_sym_u32] = ACTIONS(2660), - [anon_sym_i32] = ACTIONS(2660), - [anon_sym_u64] = ACTIONS(2660), - [anon_sym_i64] = ACTIONS(2660), - [anon_sym_u128] = ACTIONS(2660), - [anon_sym_i128] = ACTIONS(2660), - [anon_sym_isize] = ACTIONS(2660), - [anon_sym_usize] = ACTIONS(2660), - [anon_sym_f32] = ACTIONS(2660), - [anon_sym_f64] = ACTIONS(2660), - [anon_sym_bool] = ACTIONS(2660), - [anon_sym_str] = ACTIONS(2660), - [anon_sym_char] = ACTIONS(2660), - [anon_sym_DASH] = ACTIONS(2658), - [anon_sym_BANG] = ACTIONS(2658), - [anon_sym_AMP] = ACTIONS(2658), - [anon_sym_PIPE] = ACTIONS(2658), - [anon_sym_LT] = ACTIONS(2658), - [anon_sym_DOT_DOT] = ACTIONS(2658), - [anon_sym_COLON_COLON] = ACTIONS(2658), - [anon_sym_POUND] = ACTIONS(2658), - [anon_sym_SQUOTE] = ACTIONS(2660), - [anon_sym_async] = ACTIONS(2660), - [anon_sym_break] = ACTIONS(2660), - [anon_sym_const] = ACTIONS(2660), - [anon_sym_continue] = ACTIONS(2660), - [anon_sym_default] = ACTIONS(2660), - [anon_sym_enum] = ACTIONS(2660), - [anon_sym_fn] = ACTIONS(2660), - [anon_sym_for] = ACTIONS(2660), - [anon_sym_gen] = ACTIONS(2660), - [anon_sym_if] = ACTIONS(2660), - [anon_sym_impl] = ACTIONS(2660), - [anon_sym_let] = ACTIONS(2660), - [anon_sym_loop] = ACTIONS(2660), - [anon_sym_match] = ACTIONS(2660), - [anon_sym_mod] = ACTIONS(2660), - [anon_sym_pub] = ACTIONS(2660), - [anon_sym_return] = ACTIONS(2660), - [anon_sym_static] = ACTIONS(2660), - [anon_sym_struct] = ACTIONS(2660), - [anon_sym_trait] = ACTIONS(2660), - [anon_sym_type] = ACTIONS(2660), - [anon_sym_union] = ACTIONS(2660), - [anon_sym_unsafe] = ACTIONS(2660), - [anon_sym_use] = ACTIONS(2660), - [anon_sym_while] = ACTIONS(2660), - [anon_sym_extern] = ACTIONS(2660), - [anon_sym_yield] = ACTIONS(2660), - [anon_sym_move] = ACTIONS(2660), - [anon_sym_try] = ACTIONS(2660), - [sym_integer_literal] = ACTIONS(2658), - [aux_sym_string_literal_token1] = ACTIONS(2658), - [sym_char_literal] = ACTIONS(2658), - [anon_sym_true] = ACTIONS(2660), - [anon_sym_false] = ACTIONS(2660), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2660), - [sym_super] = ACTIONS(2660), - [sym_crate] = ACTIONS(2660), - [sym_metavariable] = ACTIONS(2658), - [sym__raw_string_literal_start] = ACTIONS(2658), - [sym_float_literal] = ACTIONS(2658), + [ts_builtin_sym_end] = ACTIONS(2493), + [sym_identifier] = ACTIONS(2495), + [anon_sym_SEMI] = ACTIONS(2493), + [anon_sym_macro_rules_BANG] = ACTIONS(2493), + [anon_sym_LPAREN] = ACTIONS(2493), + [anon_sym_LBRACK] = ACTIONS(2493), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_RBRACE] = ACTIONS(2493), + [anon_sym_STAR] = ACTIONS(2493), + [anon_sym_u8] = ACTIONS(2495), + [anon_sym_i8] = ACTIONS(2495), + [anon_sym_u16] = ACTIONS(2495), + [anon_sym_i16] = ACTIONS(2495), + [anon_sym_u32] = ACTIONS(2495), + [anon_sym_i32] = ACTIONS(2495), + [anon_sym_u64] = ACTIONS(2495), + [anon_sym_i64] = ACTIONS(2495), + [anon_sym_u128] = ACTIONS(2495), + [anon_sym_i128] = ACTIONS(2495), + [anon_sym_isize] = ACTIONS(2495), + [anon_sym_usize] = ACTIONS(2495), + [anon_sym_f32] = ACTIONS(2495), + [anon_sym_f64] = ACTIONS(2495), + [anon_sym_bool] = ACTIONS(2495), + [anon_sym_str] = ACTIONS(2495), + [anon_sym_char] = ACTIONS(2495), + [anon_sym_DASH] = ACTIONS(2493), + [anon_sym_BANG] = ACTIONS(2493), + [anon_sym_AMP] = ACTIONS(2493), + [anon_sym_PIPE] = ACTIONS(2493), + [anon_sym_LT] = ACTIONS(2493), + [anon_sym_DOT_DOT] = ACTIONS(2493), + [anon_sym_COLON_COLON] = ACTIONS(2493), + [anon_sym_POUND] = ACTIONS(2493), + [anon_sym_SQUOTE] = ACTIONS(2495), + [anon_sym_async] = ACTIONS(2495), + [anon_sym_break] = ACTIONS(2495), + [anon_sym_const] = ACTIONS(2495), + [anon_sym_continue] = ACTIONS(2495), + [anon_sym_default] = ACTIONS(2495), + [anon_sym_enum] = ACTIONS(2495), + [anon_sym_fn] = ACTIONS(2495), + [anon_sym_for] = ACTIONS(2495), + [anon_sym_gen] = ACTIONS(2495), + [anon_sym_if] = ACTIONS(2495), + [anon_sym_impl] = ACTIONS(2495), + [anon_sym_let] = ACTIONS(2495), + [anon_sym_loop] = ACTIONS(2495), + [anon_sym_match] = ACTIONS(2495), + [anon_sym_mod] = ACTIONS(2495), + [anon_sym_pub] = ACTIONS(2495), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_static] = ACTIONS(2495), + [anon_sym_struct] = ACTIONS(2495), + [anon_sym_trait] = ACTIONS(2495), + [anon_sym_type] = ACTIONS(2495), + [anon_sym_union] = ACTIONS(2495), + [anon_sym_unsafe] = ACTIONS(2495), + [anon_sym_use] = ACTIONS(2495), + [anon_sym_while] = ACTIONS(2495), + [anon_sym_extern] = ACTIONS(2495), + [anon_sym_yield] = ACTIONS(2495), + [anon_sym_move] = ACTIONS(2495), + [anon_sym_try] = ACTIONS(2495), + [sym_integer_literal] = ACTIONS(2493), + [aux_sym_string_literal_token1] = ACTIONS(2493), + [sym_char_literal] = ACTIONS(2493), + [anon_sym_true] = ACTIONS(2495), + [anon_sym_false] = ACTIONS(2495), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2495), + [sym_super] = ACTIONS(2495), + [sym_crate] = ACTIONS(2495), + [sym_metavariable] = ACTIONS(2493), + [sym__raw_string_literal_start] = ACTIONS(2493), + [sym_float_literal] = ACTIONS(2493), }, [STATE(687)] = { [sym_line_comment] = STATE(687), [sym_block_comment] = STATE(687), - [ts_builtin_sym_end] = ACTIONS(2662), - [sym_identifier] = ACTIONS(2664), - [anon_sym_SEMI] = ACTIONS(2662), - [anon_sym_macro_rules_BANG] = ACTIONS(2662), - [anon_sym_LPAREN] = ACTIONS(2662), - [anon_sym_LBRACK] = ACTIONS(2662), - [anon_sym_LBRACE] = ACTIONS(2662), - [anon_sym_RBRACE] = ACTIONS(2662), - [anon_sym_STAR] = ACTIONS(2662), - [anon_sym_u8] = ACTIONS(2664), - [anon_sym_i8] = ACTIONS(2664), - [anon_sym_u16] = ACTIONS(2664), - [anon_sym_i16] = ACTIONS(2664), - [anon_sym_u32] = ACTIONS(2664), - [anon_sym_i32] = ACTIONS(2664), - [anon_sym_u64] = ACTIONS(2664), - [anon_sym_i64] = ACTIONS(2664), - [anon_sym_u128] = ACTIONS(2664), - [anon_sym_i128] = ACTIONS(2664), - [anon_sym_isize] = ACTIONS(2664), - [anon_sym_usize] = ACTIONS(2664), - [anon_sym_f32] = ACTIONS(2664), - [anon_sym_f64] = ACTIONS(2664), - [anon_sym_bool] = ACTIONS(2664), - [anon_sym_str] = ACTIONS(2664), - [anon_sym_char] = ACTIONS(2664), - [anon_sym_DASH] = ACTIONS(2662), - [anon_sym_BANG] = ACTIONS(2662), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_PIPE] = ACTIONS(2662), - [anon_sym_LT] = ACTIONS(2662), - [anon_sym_DOT_DOT] = ACTIONS(2662), - [anon_sym_COLON_COLON] = ACTIONS(2662), - [anon_sym_POUND] = ACTIONS(2662), - [anon_sym_SQUOTE] = ACTIONS(2664), - [anon_sym_async] = ACTIONS(2664), - [anon_sym_break] = ACTIONS(2664), - [anon_sym_const] = ACTIONS(2664), - [anon_sym_continue] = ACTIONS(2664), - [anon_sym_default] = ACTIONS(2664), - [anon_sym_enum] = ACTIONS(2664), - [anon_sym_fn] = ACTIONS(2664), - [anon_sym_for] = ACTIONS(2664), - [anon_sym_gen] = ACTIONS(2664), - [anon_sym_if] = ACTIONS(2664), - [anon_sym_impl] = ACTIONS(2664), - [anon_sym_let] = ACTIONS(2664), - [anon_sym_loop] = ACTIONS(2664), - [anon_sym_match] = ACTIONS(2664), - [anon_sym_mod] = ACTIONS(2664), - [anon_sym_pub] = ACTIONS(2664), - [anon_sym_return] = ACTIONS(2664), - [anon_sym_static] = ACTIONS(2664), - [anon_sym_struct] = ACTIONS(2664), - [anon_sym_trait] = ACTIONS(2664), - [anon_sym_type] = ACTIONS(2664), - [anon_sym_union] = ACTIONS(2664), - [anon_sym_unsafe] = ACTIONS(2664), - [anon_sym_use] = ACTIONS(2664), - [anon_sym_while] = ACTIONS(2664), - [anon_sym_extern] = ACTIONS(2664), - [anon_sym_yield] = ACTIONS(2664), - [anon_sym_move] = ACTIONS(2664), - [anon_sym_try] = ACTIONS(2664), - [sym_integer_literal] = ACTIONS(2662), - [aux_sym_string_literal_token1] = ACTIONS(2662), - [sym_char_literal] = ACTIONS(2662), - [anon_sym_true] = ACTIONS(2664), - [anon_sym_false] = ACTIONS(2664), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2664), - [sym_super] = ACTIONS(2664), - [sym_crate] = ACTIONS(2664), - [sym_metavariable] = ACTIONS(2662), - [sym__raw_string_literal_start] = ACTIONS(2662), - [sym_float_literal] = ACTIONS(2662), + [ts_builtin_sym_end] = ACTIONS(2497), + [sym_identifier] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_macro_rules_BANG] = ACTIONS(2497), + [anon_sym_LPAREN] = ACTIONS(2497), + [anon_sym_LBRACK] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_RBRACE] = ACTIONS(2497), + [anon_sym_STAR] = ACTIONS(2497), + [anon_sym_u8] = ACTIONS(2499), + [anon_sym_i8] = ACTIONS(2499), + [anon_sym_u16] = ACTIONS(2499), + [anon_sym_i16] = ACTIONS(2499), + [anon_sym_u32] = ACTIONS(2499), + [anon_sym_i32] = ACTIONS(2499), + [anon_sym_u64] = ACTIONS(2499), + [anon_sym_i64] = ACTIONS(2499), + [anon_sym_u128] = ACTIONS(2499), + [anon_sym_i128] = ACTIONS(2499), + [anon_sym_isize] = ACTIONS(2499), + [anon_sym_usize] = ACTIONS(2499), + [anon_sym_f32] = ACTIONS(2499), + [anon_sym_f64] = ACTIONS(2499), + [anon_sym_bool] = ACTIONS(2499), + [anon_sym_str] = ACTIONS(2499), + [anon_sym_char] = ACTIONS(2499), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_BANG] = ACTIONS(2497), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_PIPE] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2497), + [anon_sym_DOT_DOT] = ACTIONS(2497), + [anon_sym_COLON_COLON] = ACTIONS(2497), + [anon_sym_POUND] = ACTIONS(2497), + [anon_sym_SQUOTE] = ACTIONS(2499), + [anon_sym_async] = ACTIONS(2499), + [anon_sym_break] = ACTIONS(2499), + [anon_sym_const] = ACTIONS(2499), + [anon_sym_continue] = ACTIONS(2499), + [anon_sym_default] = ACTIONS(2499), + [anon_sym_enum] = ACTIONS(2499), + [anon_sym_fn] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2499), + [anon_sym_gen] = ACTIONS(2499), + [anon_sym_if] = ACTIONS(2499), + [anon_sym_impl] = ACTIONS(2499), + [anon_sym_let] = ACTIONS(2499), + [anon_sym_loop] = ACTIONS(2499), + [anon_sym_match] = ACTIONS(2499), + [anon_sym_mod] = ACTIONS(2499), + [anon_sym_pub] = ACTIONS(2499), + [anon_sym_return] = ACTIONS(2499), + [anon_sym_static] = ACTIONS(2499), + [anon_sym_struct] = ACTIONS(2499), + [anon_sym_trait] = ACTIONS(2499), + [anon_sym_type] = ACTIONS(2499), + [anon_sym_union] = ACTIONS(2499), + [anon_sym_unsafe] = ACTIONS(2499), + [anon_sym_use] = ACTIONS(2499), + [anon_sym_while] = ACTIONS(2499), + [anon_sym_extern] = ACTIONS(2499), + [anon_sym_yield] = ACTIONS(2499), + [anon_sym_move] = ACTIONS(2499), + [anon_sym_try] = ACTIONS(2499), + [sym_integer_literal] = ACTIONS(2497), + [aux_sym_string_literal_token1] = ACTIONS(2497), + [sym_char_literal] = ACTIONS(2497), + [anon_sym_true] = ACTIONS(2499), + [anon_sym_false] = ACTIONS(2499), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2499), + [sym_super] = ACTIONS(2499), + [sym_crate] = ACTIONS(2499), + [sym_metavariable] = ACTIONS(2497), + [sym__raw_string_literal_start] = ACTIONS(2497), + [sym_float_literal] = ACTIONS(2497), }, [STATE(688)] = { [sym_line_comment] = STATE(688), [sym_block_comment] = STATE(688), - [ts_builtin_sym_end] = ACTIONS(2666), - [sym_identifier] = ACTIONS(2668), - [anon_sym_SEMI] = ACTIONS(2666), - [anon_sym_macro_rules_BANG] = ACTIONS(2666), - [anon_sym_LPAREN] = ACTIONS(2666), - [anon_sym_LBRACK] = ACTIONS(2666), - [anon_sym_LBRACE] = ACTIONS(2666), - [anon_sym_RBRACE] = ACTIONS(2666), - [anon_sym_STAR] = ACTIONS(2666), - [anon_sym_u8] = ACTIONS(2668), - [anon_sym_i8] = ACTIONS(2668), - [anon_sym_u16] = ACTIONS(2668), - [anon_sym_i16] = ACTIONS(2668), - [anon_sym_u32] = ACTIONS(2668), - [anon_sym_i32] = ACTIONS(2668), - [anon_sym_u64] = ACTIONS(2668), - [anon_sym_i64] = ACTIONS(2668), - [anon_sym_u128] = ACTIONS(2668), - [anon_sym_i128] = ACTIONS(2668), - [anon_sym_isize] = ACTIONS(2668), - [anon_sym_usize] = ACTIONS(2668), - [anon_sym_f32] = ACTIONS(2668), - [anon_sym_f64] = ACTIONS(2668), - [anon_sym_bool] = ACTIONS(2668), - [anon_sym_str] = ACTIONS(2668), - [anon_sym_char] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_BANG] = ACTIONS(2666), - [anon_sym_AMP] = ACTIONS(2666), - [anon_sym_PIPE] = ACTIONS(2666), - [anon_sym_LT] = ACTIONS(2666), - [anon_sym_DOT_DOT] = ACTIONS(2666), - [anon_sym_COLON_COLON] = ACTIONS(2666), - [anon_sym_POUND] = ACTIONS(2666), - [anon_sym_SQUOTE] = ACTIONS(2668), - [anon_sym_async] = ACTIONS(2668), - [anon_sym_break] = ACTIONS(2668), - [anon_sym_const] = ACTIONS(2668), - [anon_sym_continue] = ACTIONS(2668), - [anon_sym_default] = ACTIONS(2668), - [anon_sym_enum] = ACTIONS(2668), - [anon_sym_fn] = ACTIONS(2668), - [anon_sym_for] = ACTIONS(2668), - [anon_sym_gen] = ACTIONS(2668), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_impl] = ACTIONS(2668), - [anon_sym_let] = ACTIONS(2668), - [anon_sym_loop] = ACTIONS(2668), - [anon_sym_match] = ACTIONS(2668), - [anon_sym_mod] = ACTIONS(2668), - [anon_sym_pub] = ACTIONS(2668), - [anon_sym_return] = ACTIONS(2668), - [anon_sym_static] = ACTIONS(2668), - [anon_sym_struct] = ACTIONS(2668), - [anon_sym_trait] = ACTIONS(2668), - [anon_sym_type] = ACTIONS(2668), - [anon_sym_union] = ACTIONS(2668), - [anon_sym_unsafe] = ACTIONS(2668), - [anon_sym_use] = ACTIONS(2668), - [anon_sym_while] = ACTIONS(2668), - [anon_sym_extern] = ACTIONS(2668), - [anon_sym_yield] = ACTIONS(2668), - [anon_sym_move] = ACTIONS(2668), - [anon_sym_try] = ACTIONS(2668), - [sym_integer_literal] = ACTIONS(2666), - [aux_sym_string_literal_token1] = ACTIONS(2666), - [sym_char_literal] = ACTIONS(2666), - [anon_sym_true] = ACTIONS(2668), - [anon_sym_false] = ACTIONS(2668), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2668), - [sym_super] = ACTIONS(2668), - [sym_crate] = ACTIONS(2668), - [sym_metavariable] = ACTIONS(2666), - [sym__raw_string_literal_start] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2666), + [ts_builtin_sym_end] = ACTIONS(2501), + [sym_identifier] = ACTIONS(2503), + [anon_sym_SEMI] = ACTIONS(2501), + [anon_sym_macro_rules_BANG] = ACTIONS(2501), + [anon_sym_LPAREN] = ACTIONS(2501), + [anon_sym_LBRACK] = ACTIONS(2501), + [anon_sym_LBRACE] = ACTIONS(2501), + [anon_sym_RBRACE] = ACTIONS(2501), + [anon_sym_STAR] = ACTIONS(2501), + [anon_sym_u8] = ACTIONS(2503), + [anon_sym_i8] = ACTIONS(2503), + [anon_sym_u16] = ACTIONS(2503), + [anon_sym_i16] = ACTIONS(2503), + [anon_sym_u32] = ACTIONS(2503), + [anon_sym_i32] = ACTIONS(2503), + [anon_sym_u64] = ACTIONS(2503), + [anon_sym_i64] = ACTIONS(2503), + [anon_sym_u128] = ACTIONS(2503), + [anon_sym_i128] = ACTIONS(2503), + [anon_sym_isize] = ACTIONS(2503), + [anon_sym_usize] = ACTIONS(2503), + [anon_sym_f32] = ACTIONS(2503), + [anon_sym_f64] = ACTIONS(2503), + [anon_sym_bool] = ACTIONS(2503), + [anon_sym_str] = ACTIONS(2503), + [anon_sym_char] = ACTIONS(2503), + [anon_sym_DASH] = ACTIONS(2501), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_AMP] = ACTIONS(2501), + [anon_sym_PIPE] = ACTIONS(2501), + [anon_sym_LT] = ACTIONS(2501), + [anon_sym_DOT_DOT] = ACTIONS(2501), + [anon_sym_COLON_COLON] = ACTIONS(2501), + [anon_sym_POUND] = ACTIONS(2501), + [anon_sym_SQUOTE] = ACTIONS(2503), + [anon_sym_async] = ACTIONS(2503), + [anon_sym_break] = ACTIONS(2503), + [anon_sym_const] = ACTIONS(2503), + [anon_sym_continue] = ACTIONS(2503), + [anon_sym_default] = ACTIONS(2503), + [anon_sym_enum] = ACTIONS(2503), + [anon_sym_fn] = ACTIONS(2503), + [anon_sym_for] = ACTIONS(2503), + [anon_sym_gen] = ACTIONS(2503), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_impl] = ACTIONS(2503), + [anon_sym_let] = ACTIONS(2503), + [anon_sym_loop] = ACTIONS(2503), + [anon_sym_match] = ACTIONS(2503), + [anon_sym_mod] = ACTIONS(2503), + [anon_sym_pub] = ACTIONS(2503), + [anon_sym_return] = ACTIONS(2503), + [anon_sym_static] = ACTIONS(2503), + [anon_sym_struct] = ACTIONS(2503), + [anon_sym_trait] = ACTIONS(2503), + [anon_sym_type] = ACTIONS(2503), + [anon_sym_union] = ACTIONS(2503), + [anon_sym_unsafe] = ACTIONS(2503), + [anon_sym_use] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(2503), + [anon_sym_extern] = ACTIONS(2503), + [anon_sym_yield] = ACTIONS(2503), + [anon_sym_move] = ACTIONS(2503), + [anon_sym_try] = ACTIONS(2503), + [sym_integer_literal] = ACTIONS(2501), + [aux_sym_string_literal_token1] = ACTIONS(2501), + [sym_char_literal] = ACTIONS(2501), + [anon_sym_true] = ACTIONS(2503), + [anon_sym_false] = ACTIONS(2503), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2503), + [sym_super] = ACTIONS(2503), + [sym_crate] = ACTIONS(2503), + [sym_metavariable] = ACTIONS(2501), + [sym__raw_string_literal_start] = ACTIONS(2501), + [sym_float_literal] = ACTIONS(2501), }, [STATE(689)] = { [sym_line_comment] = STATE(689), [sym_block_comment] = STATE(689), - [ts_builtin_sym_end] = ACTIONS(2670), - [sym_identifier] = ACTIONS(2672), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_macro_rules_BANG] = ACTIONS(2670), - [anon_sym_LPAREN] = ACTIONS(2670), - [anon_sym_LBRACK] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_RBRACE] = ACTIONS(2670), - [anon_sym_STAR] = ACTIONS(2670), - [anon_sym_u8] = ACTIONS(2672), - [anon_sym_i8] = ACTIONS(2672), - [anon_sym_u16] = ACTIONS(2672), - [anon_sym_i16] = ACTIONS(2672), - [anon_sym_u32] = ACTIONS(2672), - [anon_sym_i32] = ACTIONS(2672), - [anon_sym_u64] = ACTIONS(2672), - [anon_sym_i64] = ACTIONS(2672), - [anon_sym_u128] = ACTIONS(2672), - [anon_sym_i128] = ACTIONS(2672), - [anon_sym_isize] = ACTIONS(2672), - [anon_sym_usize] = ACTIONS(2672), - [anon_sym_f32] = ACTIONS(2672), - [anon_sym_f64] = ACTIONS(2672), - [anon_sym_bool] = ACTIONS(2672), - [anon_sym_str] = ACTIONS(2672), - [anon_sym_char] = ACTIONS(2672), - [anon_sym_DASH] = ACTIONS(2670), - [anon_sym_BANG] = ACTIONS(2670), - [anon_sym_AMP] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_LT] = ACTIONS(2670), - [anon_sym_DOT_DOT] = ACTIONS(2670), - [anon_sym_COLON_COLON] = ACTIONS(2670), - [anon_sym_POUND] = ACTIONS(2670), - [anon_sym_SQUOTE] = ACTIONS(2672), - [anon_sym_async] = ACTIONS(2672), - [anon_sym_break] = ACTIONS(2672), - [anon_sym_const] = ACTIONS(2672), - [anon_sym_continue] = ACTIONS(2672), - [anon_sym_default] = ACTIONS(2672), - [anon_sym_enum] = ACTIONS(2672), - [anon_sym_fn] = ACTIONS(2672), - [anon_sym_for] = ACTIONS(2672), - [anon_sym_gen] = ACTIONS(2672), - [anon_sym_if] = ACTIONS(2672), - [anon_sym_impl] = ACTIONS(2672), - [anon_sym_let] = ACTIONS(2672), - [anon_sym_loop] = ACTIONS(2672), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_mod] = ACTIONS(2672), - [anon_sym_pub] = ACTIONS(2672), - [anon_sym_return] = ACTIONS(2672), - [anon_sym_static] = ACTIONS(2672), - [anon_sym_struct] = ACTIONS(2672), - [anon_sym_trait] = ACTIONS(2672), - [anon_sym_type] = ACTIONS(2672), - [anon_sym_union] = ACTIONS(2672), - [anon_sym_unsafe] = ACTIONS(2672), - [anon_sym_use] = ACTIONS(2672), - [anon_sym_while] = ACTIONS(2672), - [anon_sym_extern] = ACTIONS(2672), - [anon_sym_yield] = ACTIONS(2672), - [anon_sym_move] = ACTIONS(2672), - [anon_sym_try] = ACTIONS(2672), - [sym_integer_literal] = ACTIONS(2670), - [aux_sym_string_literal_token1] = ACTIONS(2670), - [sym_char_literal] = ACTIONS(2670), - [anon_sym_true] = ACTIONS(2672), - [anon_sym_false] = ACTIONS(2672), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2672), - [sym_super] = ACTIONS(2672), - [sym_crate] = ACTIONS(2672), - [sym_metavariable] = ACTIONS(2670), - [sym__raw_string_literal_start] = ACTIONS(2670), - [sym_float_literal] = ACTIONS(2670), + [ts_builtin_sym_end] = ACTIONS(2505), + [sym_identifier] = ACTIONS(2507), + [anon_sym_SEMI] = ACTIONS(2505), + [anon_sym_macro_rules_BANG] = ACTIONS(2505), + [anon_sym_LPAREN] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(2505), + [anon_sym_LBRACE] = ACTIONS(2505), + [anon_sym_RBRACE] = ACTIONS(2505), + [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_u8] = ACTIONS(2507), + [anon_sym_i8] = ACTIONS(2507), + [anon_sym_u16] = ACTIONS(2507), + [anon_sym_i16] = ACTIONS(2507), + [anon_sym_u32] = ACTIONS(2507), + [anon_sym_i32] = ACTIONS(2507), + [anon_sym_u64] = ACTIONS(2507), + [anon_sym_i64] = ACTIONS(2507), + [anon_sym_u128] = ACTIONS(2507), + [anon_sym_i128] = ACTIONS(2507), + [anon_sym_isize] = ACTIONS(2507), + [anon_sym_usize] = ACTIONS(2507), + [anon_sym_f32] = ACTIONS(2507), + [anon_sym_f64] = ACTIONS(2507), + [anon_sym_bool] = ACTIONS(2507), + [anon_sym_str] = ACTIONS(2507), + [anon_sym_char] = ACTIONS(2507), + [anon_sym_DASH] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_AMP] = ACTIONS(2505), + [anon_sym_PIPE] = ACTIONS(2505), + [anon_sym_LT] = ACTIONS(2505), + [anon_sym_DOT_DOT] = ACTIONS(2505), + [anon_sym_COLON_COLON] = ACTIONS(2505), + [anon_sym_POUND] = ACTIONS(2505), + [anon_sym_SQUOTE] = ACTIONS(2507), + [anon_sym_async] = ACTIONS(2507), + [anon_sym_break] = ACTIONS(2507), + [anon_sym_const] = ACTIONS(2507), + [anon_sym_continue] = ACTIONS(2507), + [anon_sym_default] = ACTIONS(2507), + [anon_sym_enum] = ACTIONS(2507), + [anon_sym_fn] = ACTIONS(2507), + [anon_sym_for] = ACTIONS(2507), + [anon_sym_gen] = ACTIONS(2507), + [anon_sym_if] = ACTIONS(2507), + [anon_sym_impl] = ACTIONS(2507), + [anon_sym_let] = ACTIONS(2507), + [anon_sym_loop] = ACTIONS(2507), + [anon_sym_match] = ACTIONS(2507), + [anon_sym_mod] = ACTIONS(2507), + [anon_sym_pub] = ACTIONS(2507), + [anon_sym_return] = ACTIONS(2507), + [anon_sym_static] = ACTIONS(2507), + [anon_sym_struct] = ACTIONS(2507), + [anon_sym_trait] = ACTIONS(2507), + [anon_sym_type] = ACTIONS(2507), + [anon_sym_union] = ACTIONS(2507), + [anon_sym_unsafe] = ACTIONS(2507), + [anon_sym_use] = ACTIONS(2507), + [anon_sym_while] = ACTIONS(2507), + [anon_sym_extern] = ACTIONS(2507), + [anon_sym_yield] = ACTIONS(2507), + [anon_sym_move] = ACTIONS(2507), + [anon_sym_try] = ACTIONS(2507), + [sym_integer_literal] = ACTIONS(2505), + [aux_sym_string_literal_token1] = ACTIONS(2505), + [sym_char_literal] = ACTIONS(2505), + [anon_sym_true] = ACTIONS(2507), + [anon_sym_false] = ACTIONS(2507), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2507), + [sym_super] = ACTIONS(2507), + [sym_crate] = ACTIONS(2507), + [sym_metavariable] = ACTIONS(2505), + [sym__raw_string_literal_start] = ACTIONS(2505), + [sym_float_literal] = ACTIONS(2505), }, [STATE(690)] = { [sym_line_comment] = STATE(690), [sym_block_comment] = STATE(690), - [ts_builtin_sym_end] = ACTIONS(2674), - [sym_identifier] = ACTIONS(2676), - [anon_sym_SEMI] = ACTIONS(2674), - [anon_sym_macro_rules_BANG] = ACTIONS(2674), - [anon_sym_LPAREN] = ACTIONS(2674), - [anon_sym_LBRACK] = ACTIONS(2674), - [anon_sym_LBRACE] = ACTIONS(2674), - [anon_sym_RBRACE] = ACTIONS(2674), - [anon_sym_STAR] = ACTIONS(2674), - [anon_sym_u8] = ACTIONS(2676), - [anon_sym_i8] = ACTIONS(2676), - [anon_sym_u16] = ACTIONS(2676), - [anon_sym_i16] = ACTIONS(2676), - [anon_sym_u32] = ACTIONS(2676), - [anon_sym_i32] = ACTIONS(2676), - [anon_sym_u64] = ACTIONS(2676), - [anon_sym_i64] = ACTIONS(2676), - [anon_sym_u128] = ACTIONS(2676), - [anon_sym_i128] = ACTIONS(2676), - [anon_sym_isize] = ACTIONS(2676), - [anon_sym_usize] = ACTIONS(2676), - [anon_sym_f32] = ACTIONS(2676), - [anon_sym_f64] = ACTIONS(2676), - [anon_sym_bool] = ACTIONS(2676), - [anon_sym_str] = ACTIONS(2676), - [anon_sym_char] = ACTIONS(2676), - [anon_sym_DASH] = ACTIONS(2674), - [anon_sym_BANG] = ACTIONS(2674), - [anon_sym_AMP] = ACTIONS(2674), - [anon_sym_PIPE] = ACTIONS(2674), - [anon_sym_LT] = ACTIONS(2674), - [anon_sym_DOT_DOT] = ACTIONS(2674), - [anon_sym_COLON_COLON] = ACTIONS(2674), - [anon_sym_POUND] = ACTIONS(2674), - [anon_sym_SQUOTE] = ACTIONS(2676), - [anon_sym_async] = ACTIONS(2676), - [anon_sym_break] = ACTIONS(2676), - [anon_sym_const] = ACTIONS(2676), - [anon_sym_continue] = ACTIONS(2676), - [anon_sym_default] = ACTIONS(2676), - [anon_sym_enum] = ACTIONS(2676), - [anon_sym_fn] = ACTIONS(2676), - [anon_sym_for] = ACTIONS(2676), - [anon_sym_gen] = ACTIONS(2676), - [anon_sym_if] = ACTIONS(2676), - [anon_sym_impl] = ACTIONS(2676), - [anon_sym_let] = ACTIONS(2676), - [anon_sym_loop] = ACTIONS(2676), - [anon_sym_match] = ACTIONS(2676), - [anon_sym_mod] = ACTIONS(2676), - [anon_sym_pub] = ACTIONS(2676), - [anon_sym_return] = ACTIONS(2676), - [anon_sym_static] = ACTIONS(2676), - [anon_sym_struct] = ACTIONS(2676), - [anon_sym_trait] = ACTIONS(2676), - [anon_sym_type] = ACTIONS(2676), - [anon_sym_union] = ACTIONS(2676), - [anon_sym_unsafe] = ACTIONS(2676), - [anon_sym_use] = ACTIONS(2676), - [anon_sym_while] = ACTIONS(2676), - [anon_sym_extern] = ACTIONS(2676), - [anon_sym_yield] = ACTIONS(2676), - [anon_sym_move] = ACTIONS(2676), - [anon_sym_try] = ACTIONS(2676), - [sym_integer_literal] = ACTIONS(2674), - [aux_sym_string_literal_token1] = ACTIONS(2674), - [sym_char_literal] = ACTIONS(2674), - [anon_sym_true] = ACTIONS(2676), - [anon_sym_false] = ACTIONS(2676), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2676), - [sym_super] = ACTIONS(2676), - [sym_crate] = ACTIONS(2676), - [sym_metavariable] = ACTIONS(2674), - [sym__raw_string_literal_start] = ACTIONS(2674), - [sym_float_literal] = ACTIONS(2674), + [ts_builtin_sym_end] = ACTIONS(2509), + [sym_identifier] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2509), + [anon_sym_macro_rules_BANG] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(2509), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_RBRACE] = ACTIONS(2509), + [anon_sym_STAR] = ACTIONS(2509), + [anon_sym_u8] = ACTIONS(2511), + [anon_sym_i8] = ACTIONS(2511), + [anon_sym_u16] = ACTIONS(2511), + [anon_sym_i16] = ACTIONS(2511), + [anon_sym_u32] = ACTIONS(2511), + [anon_sym_i32] = ACTIONS(2511), + [anon_sym_u64] = ACTIONS(2511), + [anon_sym_i64] = ACTIONS(2511), + [anon_sym_u128] = ACTIONS(2511), + [anon_sym_i128] = ACTIONS(2511), + [anon_sym_isize] = ACTIONS(2511), + [anon_sym_usize] = ACTIONS(2511), + [anon_sym_f32] = ACTIONS(2511), + [anon_sym_f64] = ACTIONS(2511), + [anon_sym_bool] = ACTIONS(2511), + [anon_sym_str] = ACTIONS(2511), + [anon_sym_char] = ACTIONS(2511), + [anon_sym_DASH] = ACTIONS(2509), + [anon_sym_BANG] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(2509), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_LT] = ACTIONS(2509), + [anon_sym_DOT_DOT] = ACTIONS(2509), + [anon_sym_COLON_COLON] = ACTIONS(2509), + [anon_sym_POUND] = ACTIONS(2509), + [anon_sym_SQUOTE] = ACTIONS(2511), + [anon_sym_async] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_fn] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_gen] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_impl] = ACTIONS(2511), + [anon_sym_let] = ACTIONS(2511), + [anon_sym_loop] = ACTIONS(2511), + [anon_sym_match] = ACTIONS(2511), + [anon_sym_mod] = ACTIONS(2511), + [anon_sym_pub] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_trait] = ACTIONS(2511), + [anon_sym_type] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_unsafe] = ACTIONS(2511), + [anon_sym_use] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2511), + [anon_sym_move] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [sym_integer_literal] = ACTIONS(2509), + [aux_sym_string_literal_token1] = ACTIONS(2509), + [sym_char_literal] = ACTIONS(2509), + [anon_sym_true] = ACTIONS(2511), + [anon_sym_false] = ACTIONS(2511), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2511), + [sym_super] = ACTIONS(2511), + [sym_crate] = ACTIONS(2511), + [sym_metavariable] = ACTIONS(2509), + [sym__raw_string_literal_start] = ACTIONS(2509), + [sym_float_literal] = ACTIONS(2509), }, [STATE(691)] = { [sym_line_comment] = STATE(691), [sym_block_comment] = STATE(691), - [ts_builtin_sym_end] = ACTIONS(2678), - [sym_identifier] = ACTIONS(2680), - [anon_sym_SEMI] = ACTIONS(2678), - [anon_sym_macro_rules_BANG] = ACTIONS(2678), - [anon_sym_LPAREN] = ACTIONS(2678), - [anon_sym_LBRACK] = ACTIONS(2678), - [anon_sym_LBRACE] = ACTIONS(2678), - [anon_sym_RBRACE] = ACTIONS(2678), - [anon_sym_STAR] = ACTIONS(2678), - [anon_sym_u8] = ACTIONS(2680), - [anon_sym_i8] = ACTIONS(2680), - [anon_sym_u16] = ACTIONS(2680), - [anon_sym_i16] = ACTIONS(2680), - [anon_sym_u32] = ACTIONS(2680), - [anon_sym_i32] = ACTIONS(2680), - [anon_sym_u64] = ACTIONS(2680), - [anon_sym_i64] = ACTIONS(2680), - [anon_sym_u128] = ACTIONS(2680), - [anon_sym_i128] = ACTIONS(2680), - [anon_sym_isize] = ACTIONS(2680), - [anon_sym_usize] = ACTIONS(2680), - [anon_sym_f32] = ACTIONS(2680), - [anon_sym_f64] = ACTIONS(2680), - [anon_sym_bool] = ACTIONS(2680), - [anon_sym_str] = ACTIONS(2680), - [anon_sym_char] = ACTIONS(2680), - [anon_sym_DASH] = ACTIONS(2678), - [anon_sym_BANG] = ACTIONS(2678), - [anon_sym_AMP] = ACTIONS(2678), - [anon_sym_PIPE] = ACTIONS(2678), - [anon_sym_LT] = ACTIONS(2678), - [anon_sym_DOT_DOT] = ACTIONS(2678), - [anon_sym_COLON_COLON] = ACTIONS(2678), - [anon_sym_POUND] = ACTIONS(2678), - [anon_sym_SQUOTE] = ACTIONS(2680), - [anon_sym_async] = ACTIONS(2680), - [anon_sym_break] = ACTIONS(2680), - [anon_sym_const] = ACTIONS(2680), - [anon_sym_continue] = ACTIONS(2680), - [anon_sym_default] = ACTIONS(2680), - [anon_sym_enum] = ACTIONS(2680), - [anon_sym_fn] = ACTIONS(2680), - [anon_sym_for] = ACTIONS(2680), - [anon_sym_gen] = ACTIONS(2680), - [anon_sym_if] = ACTIONS(2680), - [anon_sym_impl] = ACTIONS(2680), - [anon_sym_let] = ACTIONS(2680), - [anon_sym_loop] = ACTIONS(2680), - [anon_sym_match] = ACTIONS(2680), - [anon_sym_mod] = ACTIONS(2680), - [anon_sym_pub] = ACTIONS(2680), - [anon_sym_return] = ACTIONS(2680), - [anon_sym_static] = ACTIONS(2680), - [anon_sym_struct] = ACTIONS(2680), - [anon_sym_trait] = ACTIONS(2680), - [anon_sym_type] = ACTIONS(2680), - [anon_sym_union] = ACTIONS(2680), - [anon_sym_unsafe] = ACTIONS(2680), - [anon_sym_use] = ACTIONS(2680), - [anon_sym_while] = ACTIONS(2680), - [anon_sym_extern] = ACTIONS(2680), - [anon_sym_yield] = ACTIONS(2680), - [anon_sym_move] = ACTIONS(2680), - [anon_sym_try] = ACTIONS(2680), - [sym_integer_literal] = ACTIONS(2678), - [aux_sym_string_literal_token1] = ACTIONS(2678), - [sym_char_literal] = ACTIONS(2678), - [anon_sym_true] = ACTIONS(2680), - [anon_sym_false] = ACTIONS(2680), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2680), - [sym_super] = ACTIONS(2680), - [sym_crate] = ACTIONS(2680), - [sym_metavariable] = ACTIONS(2678), - [sym__raw_string_literal_start] = ACTIONS(2678), - [sym_float_literal] = ACTIONS(2678), + [ts_builtin_sym_end] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2515), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_macro_rules_BANG] = ACTIONS(2513), + [anon_sym_LPAREN] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2513), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_u8] = ACTIONS(2515), + [anon_sym_i8] = ACTIONS(2515), + [anon_sym_u16] = ACTIONS(2515), + [anon_sym_i16] = ACTIONS(2515), + [anon_sym_u32] = ACTIONS(2515), + [anon_sym_i32] = ACTIONS(2515), + [anon_sym_u64] = ACTIONS(2515), + [anon_sym_i64] = ACTIONS(2515), + [anon_sym_u128] = ACTIONS(2515), + [anon_sym_i128] = ACTIONS(2515), + [anon_sym_isize] = ACTIONS(2515), + [anon_sym_usize] = ACTIONS(2515), + [anon_sym_f32] = ACTIONS(2515), + [anon_sym_f64] = ACTIONS(2515), + [anon_sym_bool] = ACTIONS(2515), + [anon_sym_str] = ACTIONS(2515), + [anon_sym_char] = ACTIONS(2515), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_PIPE] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2513), + [anon_sym_DOT_DOT] = ACTIONS(2513), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_POUND] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2515), + [anon_sym_async] = ACTIONS(2515), + [anon_sym_break] = ACTIONS(2515), + [anon_sym_const] = ACTIONS(2515), + [anon_sym_continue] = ACTIONS(2515), + [anon_sym_default] = ACTIONS(2515), + [anon_sym_enum] = ACTIONS(2515), + [anon_sym_fn] = ACTIONS(2515), + [anon_sym_for] = ACTIONS(2515), + [anon_sym_gen] = ACTIONS(2515), + [anon_sym_if] = ACTIONS(2515), + [anon_sym_impl] = ACTIONS(2515), + [anon_sym_let] = ACTIONS(2515), + [anon_sym_loop] = ACTIONS(2515), + [anon_sym_match] = ACTIONS(2515), + [anon_sym_mod] = ACTIONS(2515), + [anon_sym_pub] = ACTIONS(2515), + [anon_sym_return] = ACTIONS(2515), + [anon_sym_static] = ACTIONS(2515), + [anon_sym_struct] = ACTIONS(2515), + [anon_sym_trait] = ACTIONS(2515), + [anon_sym_type] = ACTIONS(2515), + [anon_sym_union] = ACTIONS(2515), + [anon_sym_unsafe] = ACTIONS(2515), + [anon_sym_use] = ACTIONS(2515), + [anon_sym_while] = ACTIONS(2515), + [anon_sym_extern] = ACTIONS(2515), + [anon_sym_yield] = ACTIONS(2515), + [anon_sym_move] = ACTIONS(2515), + [anon_sym_try] = ACTIONS(2515), + [sym_integer_literal] = ACTIONS(2513), + [aux_sym_string_literal_token1] = ACTIONS(2513), + [sym_char_literal] = ACTIONS(2513), + [anon_sym_true] = ACTIONS(2515), + [anon_sym_false] = ACTIONS(2515), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2515), + [sym_super] = ACTIONS(2515), + [sym_crate] = ACTIONS(2515), + [sym_metavariable] = ACTIONS(2513), + [sym__raw_string_literal_start] = ACTIONS(2513), + [sym_float_literal] = ACTIONS(2513), }, [STATE(692)] = { [sym_line_comment] = STATE(692), [sym_block_comment] = STATE(692), - [ts_builtin_sym_end] = ACTIONS(2682), - [sym_identifier] = ACTIONS(2684), - [anon_sym_SEMI] = ACTIONS(2682), - [anon_sym_macro_rules_BANG] = ACTIONS(2682), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_LBRACK] = ACTIONS(2682), - [anon_sym_LBRACE] = ACTIONS(2682), - [anon_sym_RBRACE] = ACTIONS(2682), - [anon_sym_STAR] = ACTIONS(2682), - [anon_sym_u8] = ACTIONS(2684), - [anon_sym_i8] = ACTIONS(2684), - [anon_sym_u16] = ACTIONS(2684), - [anon_sym_i16] = ACTIONS(2684), - [anon_sym_u32] = ACTIONS(2684), - [anon_sym_i32] = ACTIONS(2684), - [anon_sym_u64] = ACTIONS(2684), - [anon_sym_i64] = ACTIONS(2684), - [anon_sym_u128] = ACTIONS(2684), - [anon_sym_i128] = ACTIONS(2684), - [anon_sym_isize] = ACTIONS(2684), - [anon_sym_usize] = ACTIONS(2684), - [anon_sym_f32] = ACTIONS(2684), - [anon_sym_f64] = ACTIONS(2684), - [anon_sym_bool] = ACTIONS(2684), - [anon_sym_str] = ACTIONS(2684), - [anon_sym_char] = ACTIONS(2684), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_BANG] = ACTIONS(2682), - [anon_sym_AMP] = ACTIONS(2682), - [anon_sym_PIPE] = ACTIONS(2682), - [anon_sym_LT] = ACTIONS(2682), - [anon_sym_DOT_DOT] = ACTIONS(2682), - [anon_sym_COLON_COLON] = ACTIONS(2682), - [anon_sym_POUND] = ACTIONS(2682), - [anon_sym_SQUOTE] = ACTIONS(2684), - [anon_sym_async] = ACTIONS(2684), - [anon_sym_break] = ACTIONS(2684), - [anon_sym_const] = ACTIONS(2684), - [anon_sym_continue] = ACTIONS(2684), - [anon_sym_default] = ACTIONS(2684), - [anon_sym_enum] = ACTIONS(2684), - [anon_sym_fn] = ACTIONS(2684), - [anon_sym_for] = ACTIONS(2684), - [anon_sym_gen] = ACTIONS(2684), - [anon_sym_if] = ACTIONS(2684), - [anon_sym_impl] = ACTIONS(2684), - [anon_sym_let] = ACTIONS(2684), - [anon_sym_loop] = ACTIONS(2684), - [anon_sym_match] = ACTIONS(2684), - [anon_sym_mod] = ACTIONS(2684), - [anon_sym_pub] = ACTIONS(2684), - [anon_sym_return] = ACTIONS(2684), - [anon_sym_static] = ACTIONS(2684), - [anon_sym_struct] = ACTIONS(2684), - [anon_sym_trait] = ACTIONS(2684), - [anon_sym_type] = ACTIONS(2684), - [anon_sym_union] = ACTIONS(2684), - [anon_sym_unsafe] = ACTIONS(2684), - [anon_sym_use] = ACTIONS(2684), - [anon_sym_while] = ACTIONS(2684), - [anon_sym_extern] = ACTIONS(2684), - [anon_sym_yield] = ACTIONS(2684), - [anon_sym_move] = ACTIONS(2684), - [anon_sym_try] = ACTIONS(2684), - [sym_integer_literal] = ACTIONS(2682), - [aux_sym_string_literal_token1] = ACTIONS(2682), - [sym_char_literal] = ACTIONS(2682), - [anon_sym_true] = ACTIONS(2684), - [anon_sym_false] = ACTIONS(2684), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2684), - [sym_super] = ACTIONS(2684), - [sym_crate] = ACTIONS(2684), - [sym_metavariable] = ACTIONS(2682), - [sym__raw_string_literal_start] = ACTIONS(2682), - [sym_float_literal] = ACTIONS(2682), + [ts_builtin_sym_end] = ACTIONS(2517), + [sym_identifier] = ACTIONS(2519), + [anon_sym_SEMI] = ACTIONS(2517), + [anon_sym_macro_rules_BANG] = ACTIONS(2517), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_LBRACE] = ACTIONS(2517), + [anon_sym_RBRACE] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(2517), + [anon_sym_u8] = ACTIONS(2519), + [anon_sym_i8] = ACTIONS(2519), + [anon_sym_u16] = ACTIONS(2519), + [anon_sym_i16] = ACTIONS(2519), + [anon_sym_u32] = ACTIONS(2519), + [anon_sym_i32] = ACTIONS(2519), + [anon_sym_u64] = ACTIONS(2519), + [anon_sym_i64] = ACTIONS(2519), + [anon_sym_u128] = ACTIONS(2519), + [anon_sym_i128] = ACTIONS(2519), + [anon_sym_isize] = ACTIONS(2519), + [anon_sym_usize] = ACTIONS(2519), + [anon_sym_f32] = ACTIONS(2519), + [anon_sym_f64] = ACTIONS(2519), + [anon_sym_bool] = ACTIONS(2519), + [anon_sym_str] = ACTIONS(2519), + [anon_sym_char] = ACTIONS(2519), + [anon_sym_DASH] = ACTIONS(2517), + [anon_sym_BANG] = ACTIONS(2517), + [anon_sym_AMP] = ACTIONS(2517), + [anon_sym_PIPE] = ACTIONS(2517), + [anon_sym_LT] = ACTIONS(2517), + [anon_sym_DOT_DOT] = ACTIONS(2517), + [anon_sym_COLON_COLON] = ACTIONS(2517), + [anon_sym_POUND] = ACTIONS(2517), + [anon_sym_SQUOTE] = ACTIONS(2519), + [anon_sym_async] = ACTIONS(2519), + [anon_sym_break] = ACTIONS(2519), + [anon_sym_const] = ACTIONS(2519), + [anon_sym_continue] = ACTIONS(2519), + [anon_sym_default] = ACTIONS(2519), + [anon_sym_enum] = ACTIONS(2519), + [anon_sym_fn] = ACTIONS(2519), + [anon_sym_for] = ACTIONS(2519), + [anon_sym_gen] = ACTIONS(2519), + [anon_sym_if] = ACTIONS(2519), + [anon_sym_impl] = ACTIONS(2519), + [anon_sym_let] = ACTIONS(2519), + [anon_sym_loop] = ACTIONS(2519), + [anon_sym_match] = ACTIONS(2519), + [anon_sym_mod] = ACTIONS(2519), + [anon_sym_pub] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2519), + [anon_sym_static] = ACTIONS(2519), + [anon_sym_struct] = ACTIONS(2519), + [anon_sym_trait] = ACTIONS(2519), + [anon_sym_type] = ACTIONS(2519), + [anon_sym_union] = ACTIONS(2519), + [anon_sym_unsafe] = ACTIONS(2519), + [anon_sym_use] = ACTIONS(2519), + [anon_sym_while] = ACTIONS(2519), + [anon_sym_extern] = ACTIONS(2519), + [anon_sym_yield] = ACTIONS(2519), + [anon_sym_move] = ACTIONS(2519), + [anon_sym_try] = ACTIONS(2519), + [sym_integer_literal] = ACTIONS(2517), + [aux_sym_string_literal_token1] = ACTIONS(2517), + [sym_char_literal] = ACTIONS(2517), + [anon_sym_true] = ACTIONS(2519), + [anon_sym_false] = ACTIONS(2519), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2519), + [sym_super] = ACTIONS(2519), + [sym_crate] = ACTIONS(2519), + [sym_metavariable] = ACTIONS(2517), + [sym__raw_string_literal_start] = ACTIONS(2517), + [sym_float_literal] = ACTIONS(2517), }, [STATE(693)] = { [sym_line_comment] = STATE(693), [sym_block_comment] = STATE(693), - [ts_builtin_sym_end] = ACTIONS(2686), - [sym_identifier] = ACTIONS(2688), - [anon_sym_SEMI] = ACTIONS(2686), - [anon_sym_macro_rules_BANG] = ACTIONS(2686), - [anon_sym_LPAREN] = ACTIONS(2686), - [anon_sym_LBRACK] = ACTIONS(2686), - [anon_sym_LBRACE] = ACTIONS(2686), - [anon_sym_RBRACE] = ACTIONS(2686), - [anon_sym_STAR] = ACTIONS(2686), - [anon_sym_u8] = ACTIONS(2688), - [anon_sym_i8] = ACTIONS(2688), - [anon_sym_u16] = ACTIONS(2688), - [anon_sym_i16] = ACTIONS(2688), - [anon_sym_u32] = ACTIONS(2688), - [anon_sym_i32] = ACTIONS(2688), - [anon_sym_u64] = ACTIONS(2688), - [anon_sym_i64] = ACTIONS(2688), - [anon_sym_u128] = ACTIONS(2688), - [anon_sym_i128] = ACTIONS(2688), - [anon_sym_isize] = ACTIONS(2688), - [anon_sym_usize] = ACTIONS(2688), - [anon_sym_f32] = ACTIONS(2688), - [anon_sym_f64] = ACTIONS(2688), - [anon_sym_bool] = ACTIONS(2688), - [anon_sym_str] = ACTIONS(2688), - [anon_sym_char] = ACTIONS(2688), - [anon_sym_DASH] = ACTIONS(2686), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_AMP] = ACTIONS(2686), - [anon_sym_PIPE] = ACTIONS(2686), - [anon_sym_LT] = ACTIONS(2686), - [anon_sym_DOT_DOT] = ACTIONS(2686), - [anon_sym_COLON_COLON] = ACTIONS(2686), - [anon_sym_POUND] = ACTIONS(2686), - [anon_sym_SQUOTE] = ACTIONS(2688), - [anon_sym_async] = ACTIONS(2688), - [anon_sym_break] = ACTIONS(2688), - [anon_sym_const] = ACTIONS(2688), - [anon_sym_continue] = ACTIONS(2688), - [anon_sym_default] = ACTIONS(2688), - [anon_sym_enum] = ACTIONS(2688), - [anon_sym_fn] = ACTIONS(2688), - [anon_sym_for] = ACTIONS(2688), - [anon_sym_gen] = ACTIONS(2688), - [anon_sym_if] = ACTIONS(2688), - [anon_sym_impl] = ACTIONS(2688), - [anon_sym_let] = ACTIONS(2688), - [anon_sym_loop] = ACTIONS(2688), - [anon_sym_match] = ACTIONS(2688), - [anon_sym_mod] = ACTIONS(2688), - [anon_sym_pub] = ACTIONS(2688), - [anon_sym_return] = ACTIONS(2688), - [anon_sym_static] = ACTIONS(2688), - [anon_sym_struct] = ACTIONS(2688), - [anon_sym_trait] = ACTIONS(2688), - [anon_sym_type] = ACTIONS(2688), - [anon_sym_union] = ACTIONS(2688), - [anon_sym_unsafe] = ACTIONS(2688), - [anon_sym_use] = ACTIONS(2688), - [anon_sym_while] = ACTIONS(2688), - [anon_sym_extern] = ACTIONS(2688), - [anon_sym_yield] = ACTIONS(2688), - [anon_sym_move] = ACTIONS(2688), - [anon_sym_try] = ACTIONS(2688), - [sym_integer_literal] = ACTIONS(2686), - [aux_sym_string_literal_token1] = ACTIONS(2686), - [sym_char_literal] = ACTIONS(2686), - [anon_sym_true] = ACTIONS(2688), - [anon_sym_false] = ACTIONS(2688), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2688), - [sym_super] = ACTIONS(2688), - [sym_crate] = ACTIONS(2688), - [sym_metavariable] = ACTIONS(2686), - [sym__raw_string_literal_start] = ACTIONS(2686), - [sym_float_literal] = ACTIONS(2686), + [ts_builtin_sym_end] = ACTIONS(2521), + [sym_identifier] = ACTIONS(2523), + [anon_sym_SEMI] = ACTIONS(2521), + [anon_sym_macro_rules_BANG] = ACTIONS(2521), + [anon_sym_LPAREN] = ACTIONS(2521), + [anon_sym_LBRACK] = ACTIONS(2521), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_RBRACE] = ACTIONS(2521), + [anon_sym_STAR] = ACTIONS(2521), + [anon_sym_u8] = ACTIONS(2523), + [anon_sym_i8] = ACTIONS(2523), + [anon_sym_u16] = ACTIONS(2523), + [anon_sym_i16] = ACTIONS(2523), + [anon_sym_u32] = ACTIONS(2523), + [anon_sym_i32] = ACTIONS(2523), + [anon_sym_u64] = ACTIONS(2523), + [anon_sym_i64] = ACTIONS(2523), + [anon_sym_u128] = ACTIONS(2523), + [anon_sym_i128] = ACTIONS(2523), + [anon_sym_isize] = ACTIONS(2523), + [anon_sym_usize] = ACTIONS(2523), + [anon_sym_f32] = ACTIONS(2523), + [anon_sym_f64] = ACTIONS(2523), + [anon_sym_bool] = ACTIONS(2523), + [anon_sym_str] = ACTIONS(2523), + [anon_sym_char] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2521), + [anon_sym_BANG] = ACTIONS(2521), + [anon_sym_AMP] = ACTIONS(2521), + [anon_sym_PIPE] = ACTIONS(2521), + [anon_sym_LT] = ACTIONS(2521), + [anon_sym_DOT_DOT] = ACTIONS(2521), + [anon_sym_COLON_COLON] = ACTIONS(2521), + [anon_sym_POUND] = ACTIONS(2521), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_async] = ACTIONS(2523), + [anon_sym_break] = ACTIONS(2523), + [anon_sym_const] = ACTIONS(2523), + [anon_sym_continue] = ACTIONS(2523), + [anon_sym_default] = ACTIONS(2523), + [anon_sym_enum] = ACTIONS(2523), + [anon_sym_fn] = ACTIONS(2523), + [anon_sym_for] = ACTIONS(2523), + [anon_sym_gen] = ACTIONS(2523), + [anon_sym_if] = ACTIONS(2523), + [anon_sym_impl] = ACTIONS(2523), + [anon_sym_let] = ACTIONS(2523), + [anon_sym_loop] = ACTIONS(2523), + [anon_sym_match] = ACTIONS(2523), + [anon_sym_mod] = ACTIONS(2523), + [anon_sym_pub] = ACTIONS(2523), + [anon_sym_return] = ACTIONS(2523), + [anon_sym_static] = ACTIONS(2523), + [anon_sym_struct] = ACTIONS(2523), + [anon_sym_trait] = ACTIONS(2523), + [anon_sym_type] = ACTIONS(2523), + [anon_sym_union] = ACTIONS(2523), + [anon_sym_unsafe] = ACTIONS(2523), + [anon_sym_use] = ACTIONS(2523), + [anon_sym_while] = ACTIONS(2523), + [anon_sym_extern] = ACTIONS(2523), + [anon_sym_yield] = ACTIONS(2523), + [anon_sym_move] = ACTIONS(2523), + [anon_sym_try] = ACTIONS(2523), + [sym_integer_literal] = ACTIONS(2521), + [aux_sym_string_literal_token1] = ACTIONS(2521), + [sym_char_literal] = ACTIONS(2521), + [anon_sym_true] = ACTIONS(2523), + [anon_sym_false] = ACTIONS(2523), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2523), + [sym_super] = ACTIONS(2523), + [sym_crate] = ACTIONS(2523), + [sym_metavariable] = ACTIONS(2521), + [sym__raw_string_literal_start] = ACTIONS(2521), + [sym_float_literal] = ACTIONS(2521), }, [STATE(694)] = { [sym_line_comment] = STATE(694), [sym_block_comment] = STATE(694), - [ts_builtin_sym_end] = ACTIONS(2690), - [sym_identifier] = ACTIONS(2692), - [anon_sym_SEMI] = ACTIONS(2690), - [anon_sym_macro_rules_BANG] = ACTIONS(2690), - [anon_sym_LPAREN] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(2690), - [anon_sym_LBRACE] = ACTIONS(2690), - [anon_sym_RBRACE] = ACTIONS(2690), - [anon_sym_STAR] = ACTIONS(2690), - [anon_sym_u8] = ACTIONS(2692), - [anon_sym_i8] = ACTIONS(2692), - [anon_sym_u16] = ACTIONS(2692), - [anon_sym_i16] = ACTIONS(2692), - [anon_sym_u32] = ACTIONS(2692), - [anon_sym_i32] = ACTIONS(2692), - [anon_sym_u64] = ACTIONS(2692), - [anon_sym_i64] = ACTIONS(2692), - [anon_sym_u128] = ACTIONS(2692), - [anon_sym_i128] = ACTIONS(2692), - [anon_sym_isize] = ACTIONS(2692), - [anon_sym_usize] = ACTIONS(2692), - [anon_sym_f32] = ACTIONS(2692), - [anon_sym_f64] = ACTIONS(2692), - [anon_sym_bool] = ACTIONS(2692), - [anon_sym_str] = ACTIONS(2692), - [anon_sym_char] = ACTIONS(2692), - [anon_sym_DASH] = ACTIONS(2690), - [anon_sym_BANG] = ACTIONS(2690), - [anon_sym_AMP] = ACTIONS(2690), - [anon_sym_PIPE] = ACTIONS(2690), - [anon_sym_LT] = ACTIONS(2690), - [anon_sym_DOT_DOT] = ACTIONS(2690), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_POUND] = ACTIONS(2690), - [anon_sym_SQUOTE] = ACTIONS(2692), - [anon_sym_async] = ACTIONS(2692), - [anon_sym_break] = ACTIONS(2692), - [anon_sym_const] = ACTIONS(2692), - [anon_sym_continue] = ACTIONS(2692), - [anon_sym_default] = ACTIONS(2692), - [anon_sym_enum] = ACTIONS(2692), - [anon_sym_fn] = ACTIONS(2692), - [anon_sym_for] = ACTIONS(2692), - [anon_sym_gen] = ACTIONS(2692), - [anon_sym_if] = ACTIONS(2692), - [anon_sym_impl] = ACTIONS(2692), - [anon_sym_let] = ACTIONS(2692), - [anon_sym_loop] = ACTIONS(2692), - [anon_sym_match] = ACTIONS(2692), - [anon_sym_mod] = ACTIONS(2692), - [anon_sym_pub] = ACTIONS(2692), - [anon_sym_return] = ACTIONS(2692), - [anon_sym_static] = ACTIONS(2692), - [anon_sym_struct] = ACTIONS(2692), - [anon_sym_trait] = ACTIONS(2692), - [anon_sym_type] = ACTIONS(2692), - [anon_sym_union] = ACTIONS(2692), - [anon_sym_unsafe] = ACTIONS(2692), - [anon_sym_use] = ACTIONS(2692), - [anon_sym_while] = ACTIONS(2692), - [anon_sym_extern] = ACTIONS(2692), - [anon_sym_yield] = ACTIONS(2692), - [anon_sym_move] = ACTIONS(2692), - [anon_sym_try] = ACTIONS(2692), - [sym_integer_literal] = ACTIONS(2690), - [aux_sym_string_literal_token1] = ACTIONS(2690), - [sym_char_literal] = ACTIONS(2690), - [anon_sym_true] = ACTIONS(2692), - [anon_sym_false] = ACTIONS(2692), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2692), - [sym_super] = ACTIONS(2692), - [sym_crate] = ACTIONS(2692), - [sym_metavariable] = ACTIONS(2690), - [sym__raw_string_literal_start] = ACTIONS(2690), - [sym_float_literal] = ACTIONS(2690), + [ts_builtin_sym_end] = ACTIONS(2525), + [sym_identifier] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2525), + [anon_sym_macro_rules_BANG] = ACTIONS(2525), + [anon_sym_LPAREN] = ACTIONS(2525), + [anon_sym_LBRACK] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2525), + [anon_sym_RBRACE] = ACTIONS(2525), + [anon_sym_STAR] = ACTIONS(2525), + [anon_sym_u8] = ACTIONS(2527), + [anon_sym_i8] = ACTIONS(2527), + [anon_sym_u16] = ACTIONS(2527), + [anon_sym_i16] = ACTIONS(2527), + [anon_sym_u32] = ACTIONS(2527), + [anon_sym_i32] = ACTIONS(2527), + [anon_sym_u64] = ACTIONS(2527), + [anon_sym_i64] = ACTIONS(2527), + [anon_sym_u128] = ACTIONS(2527), + [anon_sym_i128] = ACTIONS(2527), + [anon_sym_isize] = ACTIONS(2527), + [anon_sym_usize] = ACTIONS(2527), + [anon_sym_f32] = ACTIONS(2527), + [anon_sym_f64] = ACTIONS(2527), + [anon_sym_bool] = ACTIONS(2527), + [anon_sym_str] = ACTIONS(2527), + [anon_sym_char] = ACTIONS(2527), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_BANG] = ACTIONS(2525), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_PIPE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_DOT_DOT] = ACTIONS(2525), + [anon_sym_COLON_COLON] = ACTIONS(2525), + [anon_sym_POUND] = ACTIONS(2525), + [anon_sym_SQUOTE] = ACTIONS(2527), + [anon_sym_async] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_fn] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_gen] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_impl] = ACTIONS(2527), + [anon_sym_let] = ACTIONS(2527), + [anon_sym_loop] = ACTIONS(2527), + [anon_sym_match] = ACTIONS(2527), + [anon_sym_mod] = ACTIONS(2527), + [anon_sym_pub] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_trait] = ACTIONS(2527), + [anon_sym_type] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_unsafe] = ACTIONS(2527), + [anon_sym_use] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym_yield] = ACTIONS(2527), + [anon_sym_move] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [sym_integer_literal] = ACTIONS(2525), + [aux_sym_string_literal_token1] = ACTIONS(2525), + [sym_char_literal] = ACTIONS(2525), + [anon_sym_true] = ACTIONS(2527), + [anon_sym_false] = ACTIONS(2527), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2527), + [sym_super] = ACTIONS(2527), + [sym_crate] = ACTIONS(2527), + [sym_metavariable] = ACTIONS(2525), + [sym__raw_string_literal_start] = ACTIONS(2525), + [sym_float_literal] = ACTIONS(2525), }, [STATE(695)] = { [sym_line_comment] = STATE(695), [sym_block_comment] = STATE(695), - [ts_builtin_sym_end] = ACTIONS(2694), - [sym_identifier] = ACTIONS(2696), - [anon_sym_SEMI] = ACTIONS(2694), - [anon_sym_macro_rules_BANG] = ACTIONS(2694), - [anon_sym_LPAREN] = ACTIONS(2694), - [anon_sym_LBRACK] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_RBRACE] = ACTIONS(2694), - [anon_sym_STAR] = ACTIONS(2694), - [anon_sym_u8] = ACTIONS(2696), - [anon_sym_i8] = ACTIONS(2696), - [anon_sym_u16] = ACTIONS(2696), - [anon_sym_i16] = ACTIONS(2696), - [anon_sym_u32] = ACTIONS(2696), - [anon_sym_i32] = ACTIONS(2696), - [anon_sym_u64] = ACTIONS(2696), - [anon_sym_i64] = ACTIONS(2696), - [anon_sym_u128] = ACTIONS(2696), - [anon_sym_i128] = ACTIONS(2696), - [anon_sym_isize] = ACTIONS(2696), - [anon_sym_usize] = ACTIONS(2696), - [anon_sym_f32] = ACTIONS(2696), - [anon_sym_f64] = ACTIONS(2696), - [anon_sym_bool] = ACTIONS(2696), - [anon_sym_str] = ACTIONS(2696), - [anon_sym_char] = ACTIONS(2696), - [anon_sym_DASH] = ACTIONS(2694), - [anon_sym_BANG] = ACTIONS(2694), - [anon_sym_AMP] = ACTIONS(2694), - [anon_sym_PIPE] = ACTIONS(2694), - [anon_sym_LT] = ACTIONS(2694), - [anon_sym_DOT_DOT] = ACTIONS(2694), - [anon_sym_COLON_COLON] = ACTIONS(2694), - [anon_sym_POUND] = ACTIONS(2694), - [anon_sym_SQUOTE] = ACTIONS(2696), - [anon_sym_async] = ACTIONS(2696), - [anon_sym_break] = ACTIONS(2696), - [anon_sym_const] = ACTIONS(2696), - [anon_sym_continue] = ACTIONS(2696), - [anon_sym_default] = ACTIONS(2696), - [anon_sym_enum] = ACTIONS(2696), - [anon_sym_fn] = ACTIONS(2696), - [anon_sym_for] = ACTIONS(2696), - [anon_sym_gen] = ACTIONS(2696), - [anon_sym_if] = ACTIONS(2696), - [anon_sym_impl] = ACTIONS(2696), - [anon_sym_let] = ACTIONS(2696), - [anon_sym_loop] = ACTIONS(2696), - [anon_sym_match] = ACTIONS(2696), - [anon_sym_mod] = ACTIONS(2696), - [anon_sym_pub] = ACTIONS(2696), - [anon_sym_return] = ACTIONS(2696), - [anon_sym_static] = ACTIONS(2696), - [anon_sym_struct] = ACTIONS(2696), - [anon_sym_trait] = ACTIONS(2696), - [anon_sym_type] = ACTIONS(2696), - [anon_sym_union] = ACTIONS(2696), - [anon_sym_unsafe] = ACTIONS(2696), - [anon_sym_use] = ACTIONS(2696), - [anon_sym_while] = ACTIONS(2696), - [anon_sym_extern] = ACTIONS(2696), - [anon_sym_yield] = ACTIONS(2696), - [anon_sym_move] = ACTIONS(2696), - [anon_sym_try] = ACTIONS(2696), - [sym_integer_literal] = ACTIONS(2694), - [aux_sym_string_literal_token1] = ACTIONS(2694), - [sym_char_literal] = ACTIONS(2694), - [anon_sym_true] = ACTIONS(2696), - [anon_sym_false] = ACTIONS(2696), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2696), - [sym_super] = ACTIONS(2696), - [sym_crate] = ACTIONS(2696), - [sym_metavariable] = ACTIONS(2694), - [sym__raw_string_literal_start] = ACTIONS(2694), - [sym_float_literal] = ACTIONS(2694), + [ts_builtin_sym_end] = ACTIONS(2529), + [sym_identifier] = ACTIONS(2531), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_macro_rules_BANG] = ACTIONS(2529), + [anon_sym_LPAREN] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2529), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_u8] = ACTIONS(2531), + [anon_sym_i8] = ACTIONS(2531), + [anon_sym_u16] = ACTIONS(2531), + [anon_sym_i16] = ACTIONS(2531), + [anon_sym_u32] = ACTIONS(2531), + [anon_sym_i32] = ACTIONS(2531), + [anon_sym_u64] = ACTIONS(2531), + [anon_sym_i64] = ACTIONS(2531), + [anon_sym_u128] = ACTIONS(2531), + [anon_sym_i128] = ACTIONS(2531), + [anon_sym_isize] = ACTIONS(2531), + [anon_sym_usize] = ACTIONS(2531), + [anon_sym_f32] = ACTIONS(2531), + [anon_sym_f64] = ACTIONS(2531), + [anon_sym_bool] = ACTIONS(2531), + [anon_sym_str] = ACTIONS(2531), + [anon_sym_char] = ACTIONS(2531), + [anon_sym_DASH] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_PIPE] = ACTIONS(2529), + [anon_sym_LT] = ACTIONS(2529), + [anon_sym_DOT_DOT] = ACTIONS(2529), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_POUND] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2531), + [anon_sym_async] = ACTIONS(2531), + [anon_sym_break] = ACTIONS(2531), + [anon_sym_const] = ACTIONS(2531), + [anon_sym_continue] = ACTIONS(2531), + [anon_sym_default] = ACTIONS(2531), + [anon_sym_enum] = ACTIONS(2531), + [anon_sym_fn] = ACTIONS(2531), + [anon_sym_for] = ACTIONS(2531), + [anon_sym_gen] = ACTIONS(2531), + [anon_sym_if] = ACTIONS(2531), + [anon_sym_impl] = ACTIONS(2531), + [anon_sym_let] = ACTIONS(2531), + [anon_sym_loop] = ACTIONS(2531), + [anon_sym_match] = ACTIONS(2531), + [anon_sym_mod] = ACTIONS(2531), + [anon_sym_pub] = ACTIONS(2531), + [anon_sym_return] = ACTIONS(2531), + [anon_sym_static] = ACTIONS(2531), + [anon_sym_struct] = ACTIONS(2531), + [anon_sym_trait] = ACTIONS(2531), + [anon_sym_type] = ACTIONS(2531), + [anon_sym_union] = ACTIONS(2531), + [anon_sym_unsafe] = ACTIONS(2531), + [anon_sym_use] = ACTIONS(2531), + [anon_sym_while] = ACTIONS(2531), + [anon_sym_extern] = ACTIONS(2531), + [anon_sym_yield] = ACTIONS(2531), + [anon_sym_move] = ACTIONS(2531), + [anon_sym_try] = ACTIONS(2531), + [sym_integer_literal] = ACTIONS(2529), + [aux_sym_string_literal_token1] = ACTIONS(2529), + [sym_char_literal] = ACTIONS(2529), + [anon_sym_true] = ACTIONS(2531), + [anon_sym_false] = ACTIONS(2531), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2531), + [sym_super] = ACTIONS(2531), + [sym_crate] = ACTIONS(2531), + [sym_metavariable] = ACTIONS(2529), + [sym__raw_string_literal_start] = ACTIONS(2529), + [sym_float_literal] = ACTIONS(2529), }, [STATE(696)] = { [sym_line_comment] = STATE(696), [sym_block_comment] = STATE(696), - [ts_builtin_sym_end] = ACTIONS(2698), - [sym_identifier] = ACTIONS(2700), - [anon_sym_SEMI] = ACTIONS(2698), - [anon_sym_macro_rules_BANG] = ACTIONS(2698), - [anon_sym_LPAREN] = ACTIONS(2698), - [anon_sym_LBRACK] = ACTIONS(2698), - [anon_sym_LBRACE] = ACTIONS(2698), - [anon_sym_RBRACE] = ACTIONS(2698), - [anon_sym_STAR] = ACTIONS(2698), - [anon_sym_u8] = ACTIONS(2700), - [anon_sym_i8] = ACTIONS(2700), - [anon_sym_u16] = ACTIONS(2700), - [anon_sym_i16] = ACTIONS(2700), - [anon_sym_u32] = ACTIONS(2700), - [anon_sym_i32] = ACTIONS(2700), - [anon_sym_u64] = ACTIONS(2700), - [anon_sym_i64] = ACTIONS(2700), - [anon_sym_u128] = ACTIONS(2700), - [anon_sym_i128] = ACTIONS(2700), - [anon_sym_isize] = ACTIONS(2700), - [anon_sym_usize] = ACTIONS(2700), - [anon_sym_f32] = ACTIONS(2700), - [anon_sym_f64] = ACTIONS(2700), - [anon_sym_bool] = ACTIONS(2700), - [anon_sym_str] = ACTIONS(2700), - [anon_sym_char] = ACTIONS(2700), - [anon_sym_DASH] = ACTIONS(2698), - [anon_sym_BANG] = ACTIONS(2698), - [anon_sym_AMP] = ACTIONS(2698), - [anon_sym_PIPE] = ACTIONS(2698), - [anon_sym_LT] = ACTIONS(2698), - [anon_sym_DOT_DOT] = ACTIONS(2698), - [anon_sym_COLON_COLON] = ACTIONS(2698), - [anon_sym_POUND] = ACTIONS(2698), - [anon_sym_SQUOTE] = ACTIONS(2700), - [anon_sym_async] = ACTIONS(2700), - [anon_sym_break] = ACTIONS(2700), - [anon_sym_const] = ACTIONS(2700), - [anon_sym_continue] = ACTIONS(2700), - [anon_sym_default] = ACTIONS(2700), - [anon_sym_enum] = ACTIONS(2700), - [anon_sym_fn] = ACTIONS(2700), - [anon_sym_for] = ACTIONS(2700), - [anon_sym_gen] = ACTIONS(2700), - [anon_sym_if] = ACTIONS(2700), - [anon_sym_impl] = ACTIONS(2700), - [anon_sym_let] = ACTIONS(2700), - [anon_sym_loop] = ACTIONS(2700), - [anon_sym_match] = ACTIONS(2700), - [anon_sym_mod] = ACTIONS(2700), - [anon_sym_pub] = ACTIONS(2700), - [anon_sym_return] = ACTIONS(2700), - [anon_sym_static] = ACTIONS(2700), - [anon_sym_struct] = ACTIONS(2700), - [anon_sym_trait] = ACTIONS(2700), - [anon_sym_type] = ACTIONS(2700), - [anon_sym_union] = ACTIONS(2700), - [anon_sym_unsafe] = ACTIONS(2700), - [anon_sym_use] = ACTIONS(2700), - [anon_sym_while] = ACTIONS(2700), - [anon_sym_extern] = ACTIONS(2700), - [anon_sym_yield] = ACTIONS(2700), - [anon_sym_move] = ACTIONS(2700), - [anon_sym_try] = ACTIONS(2700), - [sym_integer_literal] = ACTIONS(2698), - [aux_sym_string_literal_token1] = ACTIONS(2698), - [sym_char_literal] = ACTIONS(2698), - [anon_sym_true] = ACTIONS(2700), - [anon_sym_false] = ACTIONS(2700), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2700), - [sym_super] = ACTIONS(2700), - [sym_crate] = ACTIONS(2700), - [sym_metavariable] = ACTIONS(2698), - [sym__raw_string_literal_start] = ACTIONS(2698), - [sym_float_literal] = ACTIONS(2698), + [ts_builtin_sym_end] = ACTIONS(2533), + [sym_identifier] = ACTIONS(2535), + [anon_sym_SEMI] = ACTIONS(2533), + [anon_sym_macro_rules_BANG] = ACTIONS(2533), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_LBRACK] = ACTIONS(2533), + [anon_sym_LBRACE] = ACTIONS(2533), + [anon_sym_RBRACE] = ACTIONS(2533), + [anon_sym_STAR] = ACTIONS(2533), + [anon_sym_u8] = ACTIONS(2535), + [anon_sym_i8] = ACTIONS(2535), + [anon_sym_u16] = ACTIONS(2535), + [anon_sym_i16] = ACTIONS(2535), + [anon_sym_u32] = ACTIONS(2535), + [anon_sym_i32] = ACTIONS(2535), + [anon_sym_u64] = ACTIONS(2535), + [anon_sym_i64] = ACTIONS(2535), + [anon_sym_u128] = ACTIONS(2535), + [anon_sym_i128] = ACTIONS(2535), + [anon_sym_isize] = ACTIONS(2535), + [anon_sym_usize] = ACTIONS(2535), + [anon_sym_f32] = ACTIONS(2535), + [anon_sym_f64] = ACTIONS(2535), + [anon_sym_bool] = ACTIONS(2535), + [anon_sym_str] = ACTIONS(2535), + [anon_sym_char] = ACTIONS(2535), + [anon_sym_DASH] = ACTIONS(2533), + [anon_sym_BANG] = ACTIONS(2533), + [anon_sym_AMP] = ACTIONS(2533), + [anon_sym_PIPE] = ACTIONS(2533), + [anon_sym_LT] = ACTIONS(2533), + [anon_sym_DOT_DOT] = ACTIONS(2533), + [anon_sym_COLON_COLON] = ACTIONS(2533), + [anon_sym_POUND] = ACTIONS(2533), + [anon_sym_SQUOTE] = ACTIONS(2535), + [anon_sym_async] = ACTIONS(2535), + [anon_sym_break] = ACTIONS(2535), + [anon_sym_const] = ACTIONS(2535), + [anon_sym_continue] = ACTIONS(2535), + [anon_sym_default] = ACTIONS(2535), + [anon_sym_enum] = ACTIONS(2535), + [anon_sym_fn] = ACTIONS(2535), + [anon_sym_for] = ACTIONS(2535), + [anon_sym_gen] = ACTIONS(2535), + [anon_sym_if] = ACTIONS(2535), + [anon_sym_impl] = ACTIONS(2535), + [anon_sym_let] = ACTIONS(2535), + [anon_sym_loop] = ACTIONS(2535), + [anon_sym_match] = ACTIONS(2535), + [anon_sym_mod] = ACTIONS(2535), + [anon_sym_pub] = ACTIONS(2535), + [anon_sym_return] = ACTIONS(2535), + [anon_sym_static] = ACTIONS(2535), + [anon_sym_struct] = ACTIONS(2535), + [anon_sym_trait] = ACTIONS(2535), + [anon_sym_type] = ACTIONS(2535), + [anon_sym_union] = ACTIONS(2535), + [anon_sym_unsafe] = ACTIONS(2535), + [anon_sym_use] = ACTIONS(2535), + [anon_sym_while] = ACTIONS(2535), + [anon_sym_extern] = ACTIONS(2535), + [anon_sym_yield] = ACTIONS(2535), + [anon_sym_move] = ACTIONS(2535), + [anon_sym_try] = ACTIONS(2535), + [sym_integer_literal] = ACTIONS(2533), + [aux_sym_string_literal_token1] = ACTIONS(2533), + [sym_char_literal] = ACTIONS(2533), + [anon_sym_true] = ACTIONS(2535), + [anon_sym_false] = ACTIONS(2535), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2535), + [sym_super] = ACTIONS(2535), + [sym_crate] = ACTIONS(2535), + [sym_metavariable] = ACTIONS(2533), + [sym__raw_string_literal_start] = ACTIONS(2533), + [sym_float_literal] = ACTIONS(2533), }, [STATE(697)] = { [sym_line_comment] = STATE(697), [sym_block_comment] = STATE(697), - [ts_builtin_sym_end] = ACTIONS(2702), - [sym_identifier] = ACTIONS(2704), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_macro_rules_BANG] = ACTIONS(2702), - [anon_sym_LPAREN] = ACTIONS(2702), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_LBRACE] = ACTIONS(2702), - [anon_sym_RBRACE] = ACTIONS(2702), - [anon_sym_STAR] = ACTIONS(2702), - [anon_sym_u8] = ACTIONS(2704), - [anon_sym_i8] = ACTIONS(2704), - [anon_sym_u16] = ACTIONS(2704), - [anon_sym_i16] = ACTIONS(2704), - [anon_sym_u32] = ACTIONS(2704), - [anon_sym_i32] = ACTIONS(2704), - [anon_sym_u64] = ACTIONS(2704), - [anon_sym_i64] = ACTIONS(2704), - [anon_sym_u128] = ACTIONS(2704), - [anon_sym_i128] = ACTIONS(2704), - [anon_sym_isize] = ACTIONS(2704), - [anon_sym_usize] = ACTIONS(2704), - [anon_sym_f32] = ACTIONS(2704), - [anon_sym_f64] = ACTIONS(2704), - [anon_sym_bool] = ACTIONS(2704), - [anon_sym_str] = ACTIONS(2704), - [anon_sym_char] = ACTIONS(2704), - [anon_sym_DASH] = ACTIONS(2702), - [anon_sym_BANG] = ACTIONS(2702), - [anon_sym_AMP] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_LT] = ACTIONS(2702), - [anon_sym_DOT_DOT] = ACTIONS(2702), - [anon_sym_COLON_COLON] = ACTIONS(2702), - [anon_sym_POUND] = ACTIONS(2702), - [anon_sym_SQUOTE] = ACTIONS(2704), - [anon_sym_async] = ACTIONS(2704), - [anon_sym_break] = ACTIONS(2704), - [anon_sym_const] = ACTIONS(2704), - [anon_sym_continue] = ACTIONS(2704), - [anon_sym_default] = ACTIONS(2704), - [anon_sym_enum] = ACTIONS(2704), - [anon_sym_fn] = ACTIONS(2704), - [anon_sym_for] = ACTIONS(2704), - [anon_sym_gen] = ACTIONS(2704), - [anon_sym_if] = ACTIONS(2704), - [anon_sym_impl] = ACTIONS(2704), - [anon_sym_let] = ACTIONS(2704), - [anon_sym_loop] = ACTIONS(2704), - [anon_sym_match] = ACTIONS(2704), - [anon_sym_mod] = ACTIONS(2704), - [anon_sym_pub] = ACTIONS(2704), - [anon_sym_return] = ACTIONS(2704), - [anon_sym_static] = ACTIONS(2704), - [anon_sym_struct] = ACTIONS(2704), - [anon_sym_trait] = ACTIONS(2704), - [anon_sym_type] = ACTIONS(2704), - [anon_sym_union] = ACTIONS(2704), - [anon_sym_unsafe] = ACTIONS(2704), - [anon_sym_use] = ACTIONS(2704), - [anon_sym_while] = ACTIONS(2704), - [anon_sym_extern] = ACTIONS(2704), - [anon_sym_yield] = ACTIONS(2704), - [anon_sym_move] = ACTIONS(2704), - [anon_sym_try] = ACTIONS(2704), - [sym_integer_literal] = ACTIONS(2702), - [aux_sym_string_literal_token1] = ACTIONS(2702), - [sym_char_literal] = ACTIONS(2702), - [anon_sym_true] = ACTIONS(2704), - [anon_sym_false] = ACTIONS(2704), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2704), - [sym_super] = ACTIONS(2704), - [sym_crate] = ACTIONS(2704), - [sym_metavariable] = ACTIONS(2702), - [sym__raw_string_literal_start] = ACTIONS(2702), - [sym_float_literal] = ACTIONS(2702), + [ts_builtin_sym_end] = ACTIONS(2537), + [sym_identifier] = ACTIONS(2539), + [anon_sym_SEMI] = ACTIONS(2537), + [anon_sym_macro_rules_BANG] = ACTIONS(2537), + [anon_sym_LPAREN] = ACTIONS(2537), + [anon_sym_LBRACK] = ACTIONS(2537), + [anon_sym_LBRACE] = ACTIONS(2537), + [anon_sym_RBRACE] = ACTIONS(2537), + [anon_sym_STAR] = ACTIONS(2537), + [anon_sym_u8] = ACTIONS(2539), + [anon_sym_i8] = ACTIONS(2539), + [anon_sym_u16] = ACTIONS(2539), + [anon_sym_i16] = ACTIONS(2539), + [anon_sym_u32] = ACTIONS(2539), + [anon_sym_i32] = ACTIONS(2539), + [anon_sym_u64] = ACTIONS(2539), + [anon_sym_i64] = ACTIONS(2539), + [anon_sym_u128] = ACTIONS(2539), + [anon_sym_i128] = ACTIONS(2539), + [anon_sym_isize] = ACTIONS(2539), + [anon_sym_usize] = ACTIONS(2539), + [anon_sym_f32] = ACTIONS(2539), + [anon_sym_f64] = ACTIONS(2539), + [anon_sym_bool] = ACTIONS(2539), + [anon_sym_str] = ACTIONS(2539), + [anon_sym_char] = ACTIONS(2539), + [anon_sym_DASH] = ACTIONS(2537), + [anon_sym_BANG] = ACTIONS(2537), + [anon_sym_AMP] = ACTIONS(2537), + [anon_sym_PIPE] = ACTIONS(2537), + [anon_sym_LT] = ACTIONS(2537), + [anon_sym_DOT_DOT] = ACTIONS(2537), + [anon_sym_COLON_COLON] = ACTIONS(2537), + [anon_sym_POUND] = ACTIONS(2537), + [anon_sym_SQUOTE] = ACTIONS(2539), + [anon_sym_async] = ACTIONS(2539), + [anon_sym_break] = ACTIONS(2539), + [anon_sym_const] = ACTIONS(2539), + [anon_sym_continue] = ACTIONS(2539), + [anon_sym_default] = ACTIONS(2539), + [anon_sym_enum] = ACTIONS(2539), + [anon_sym_fn] = ACTIONS(2539), + [anon_sym_for] = ACTIONS(2539), + [anon_sym_gen] = ACTIONS(2539), + [anon_sym_if] = ACTIONS(2539), + [anon_sym_impl] = ACTIONS(2539), + [anon_sym_let] = ACTIONS(2539), + [anon_sym_loop] = ACTIONS(2539), + [anon_sym_match] = ACTIONS(2539), + [anon_sym_mod] = ACTIONS(2539), + [anon_sym_pub] = ACTIONS(2539), + [anon_sym_return] = ACTIONS(2539), + [anon_sym_static] = ACTIONS(2539), + [anon_sym_struct] = ACTIONS(2539), + [anon_sym_trait] = ACTIONS(2539), + [anon_sym_type] = ACTIONS(2539), + [anon_sym_union] = ACTIONS(2539), + [anon_sym_unsafe] = ACTIONS(2539), + [anon_sym_use] = ACTIONS(2539), + [anon_sym_while] = ACTIONS(2539), + [anon_sym_extern] = ACTIONS(2539), + [anon_sym_yield] = ACTIONS(2539), + [anon_sym_move] = ACTIONS(2539), + [anon_sym_try] = ACTIONS(2539), + [sym_integer_literal] = ACTIONS(2537), + [aux_sym_string_literal_token1] = ACTIONS(2537), + [sym_char_literal] = ACTIONS(2537), + [anon_sym_true] = ACTIONS(2539), + [anon_sym_false] = ACTIONS(2539), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2539), + [sym_super] = ACTIONS(2539), + [sym_crate] = ACTIONS(2539), + [sym_metavariable] = ACTIONS(2537), + [sym__raw_string_literal_start] = ACTIONS(2537), + [sym_float_literal] = ACTIONS(2537), }, [STATE(698)] = { [sym_line_comment] = STATE(698), [sym_block_comment] = STATE(698), - [ts_builtin_sym_end] = ACTIONS(2706), - [sym_identifier] = ACTIONS(2708), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_macro_rules_BANG] = ACTIONS(2706), - [anon_sym_LPAREN] = ACTIONS(2706), - [anon_sym_LBRACK] = ACTIONS(2706), - [anon_sym_LBRACE] = ACTIONS(2706), - [anon_sym_RBRACE] = ACTIONS(2706), - [anon_sym_STAR] = ACTIONS(2706), - [anon_sym_u8] = ACTIONS(2708), - [anon_sym_i8] = ACTIONS(2708), - [anon_sym_u16] = ACTIONS(2708), - [anon_sym_i16] = ACTIONS(2708), - [anon_sym_u32] = ACTIONS(2708), - [anon_sym_i32] = ACTIONS(2708), - [anon_sym_u64] = ACTIONS(2708), - [anon_sym_i64] = ACTIONS(2708), - [anon_sym_u128] = ACTIONS(2708), - [anon_sym_i128] = ACTIONS(2708), - [anon_sym_isize] = ACTIONS(2708), - [anon_sym_usize] = ACTIONS(2708), - [anon_sym_f32] = ACTIONS(2708), - [anon_sym_f64] = ACTIONS(2708), - [anon_sym_bool] = ACTIONS(2708), - [anon_sym_str] = ACTIONS(2708), - [anon_sym_char] = ACTIONS(2708), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_BANG] = ACTIONS(2706), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2706), - [anon_sym_DOT_DOT] = ACTIONS(2706), - [anon_sym_COLON_COLON] = ACTIONS(2706), - [anon_sym_POUND] = ACTIONS(2706), - [anon_sym_SQUOTE] = ACTIONS(2708), - [anon_sym_async] = ACTIONS(2708), - [anon_sym_break] = ACTIONS(2708), - [anon_sym_const] = ACTIONS(2708), - [anon_sym_continue] = ACTIONS(2708), - [anon_sym_default] = ACTIONS(2708), - [anon_sym_enum] = ACTIONS(2708), - [anon_sym_fn] = ACTIONS(2708), - [anon_sym_for] = ACTIONS(2708), - [anon_sym_gen] = ACTIONS(2708), - [anon_sym_if] = ACTIONS(2708), - [anon_sym_impl] = ACTIONS(2708), - [anon_sym_let] = ACTIONS(2708), - [anon_sym_loop] = ACTIONS(2708), - [anon_sym_match] = ACTIONS(2708), - [anon_sym_mod] = ACTIONS(2708), - [anon_sym_pub] = ACTIONS(2708), - [anon_sym_return] = ACTIONS(2708), - [anon_sym_static] = ACTIONS(2708), - [anon_sym_struct] = ACTIONS(2708), - [anon_sym_trait] = ACTIONS(2708), - [anon_sym_type] = ACTIONS(2708), - [anon_sym_union] = ACTIONS(2708), - [anon_sym_unsafe] = ACTIONS(2708), - [anon_sym_use] = ACTIONS(2708), - [anon_sym_while] = ACTIONS(2708), - [anon_sym_extern] = ACTIONS(2708), - [anon_sym_yield] = ACTIONS(2708), - [anon_sym_move] = ACTIONS(2708), - [anon_sym_try] = ACTIONS(2708), - [sym_integer_literal] = ACTIONS(2706), - [aux_sym_string_literal_token1] = ACTIONS(2706), - [sym_char_literal] = ACTIONS(2706), - [anon_sym_true] = ACTIONS(2708), - [anon_sym_false] = ACTIONS(2708), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2708), - [sym_super] = ACTIONS(2708), - [sym_crate] = ACTIONS(2708), - [sym_metavariable] = ACTIONS(2706), - [sym__raw_string_literal_start] = ACTIONS(2706), - [sym_float_literal] = ACTIONS(2706), + [ts_builtin_sym_end] = ACTIONS(2541), + [sym_identifier] = ACTIONS(2543), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_macro_rules_BANG] = ACTIONS(2541), + [anon_sym_LPAREN] = ACTIONS(2541), + [anon_sym_LBRACK] = ACTIONS(2541), + [anon_sym_LBRACE] = ACTIONS(2541), + [anon_sym_RBRACE] = ACTIONS(2541), + [anon_sym_STAR] = ACTIONS(2541), + [anon_sym_u8] = ACTIONS(2543), + [anon_sym_i8] = ACTIONS(2543), + [anon_sym_u16] = ACTIONS(2543), + [anon_sym_i16] = ACTIONS(2543), + [anon_sym_u32] = ACTIONS(2543), + [anon_sym_i32] = ACTIONS(2543), + [anon_sym_u64] = ACTIONS(2543), + [anon_sym_i64] = ACTIONS(2543), + [anon_sym_u128] = ACTIONS(2543), + [anon_sym_i128] = ACTIONS(2543), + [anon_sym_isize] = ACTIONS(2543), + [anon_sym_usize] = ACTIONS(2543), + [anon_sym_f32] = ACTIONS(2543), + [anon_sym_f64] = ACTIONS(2543), + [anon_sym_bool] = ACTIONS(2543), + [anon_sym_str] = ACTIONS(2543), + [anon_sym_char] = ACTIONS(2543), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_BANG] = ACTIONS(2541), + [anon_sym_AMP] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(2541), + [anon_sym_DOT_DOT] = ACTIONS(2541), + [anon_sym_COLON_COLON] = ACTIONS(2541), + [anon_sym_POUND] = ACTIONS(2541), + [anon_sym_SQUOTE] = ACTIONS(2543), + [anon_sym_async] = ACTIONS(2543), + [anon_sym_break] = ACTIONS(2543), + [anon_sym_const] = ACTIONS(2543), + [anon_sym_continue] = ACTIONS(2543), + [anon_sym_default] = ACTIONS(2543), + [anon_sym_enum] = ACTIONS(2543), + [anon_sym_fn] = ACTIONS(2543), + [anon_sym_for] = ACTIONS(2543), + [anon_sym_gen] = ACTIONS(2543), + [anon_sym_if] = ACTIONS(2543), + [anon_sym_impl] = ACTIONS(2543), + [anon_sym_let] = ACTIONS(2543), + [anon_sym_loop] = ACTIONS(2543), + [anon_sym_match] = ACTIONS(2543), + [anon_sym_mod] = ACTIONS(2543), + [anon_sym_pub] = ACTIONS(2543), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_static] = ACTIONS(2543), + [anon_sym_struct] = ACTIONS(2543), + [anon_sym_trait] = ACTIONS(2543), + [anon_sym_type] = ACTIONS(2543), + [anon_sym_union] = ACTIONS(2543), + [anon_sym_unsafe] = ACTIONS(2543), + [anon_sym_use] = ACTIONS(2543), + [anon_sym_while] = ACTIONS(2543), + [anon_sym_extern] = ACTIONS(2543), + [anon_sym_yield] = ACTIONS(2543), + [anon_sym_move] = ACTIONS(2543), + [anon_sym_try] = ACTIONS(2543), + [sym_integer_literal] = ACTIONS(2541), + [aux_sym_string_literal_token1] = ACTIONS(2541), + [sym_char_literal] = ACTIONS(2541), + [anon_sym_true] = ACTIONS(2543), + [anon_sym_false] = ACTIONS(2543), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2543), + [sym_super] = ACTIONS(2543), + [sym_crate] = ACTIONS(2543), + [sym_metavariable] = ACTIONS(2541), + [sym__raw_string_literal_start] = ACTIONS(2541), + [sym_float_literal] = ACTIONS(2541), }, [STATE(699)] = { [sym_line_comment] = STATE(699), [sym_block_comment] = STATE(699), - [ts_builtin_sym_end] = ACTIONS(2710), - [sym_identifier] = ACTIONS(2712), - [anon_sym_SEMI] = ACTIONS(2710), - [anon_sym_macro_rules_BANG] = ACTIONS(2710), - [anon_sym_LPAREN] = ACTIONS(2710), - [anon_sym_LBRACK] = ACTIONS(2710), - [anon_sym_LBRACE] = ACTIONS(2710), - [anon_sym_RBRACE] = ACTIONS(2710), - [anon_sym_STAR] = ACTIONS(2710), - [anon_sym_u8] = ACTIONS(2712), - [anon_sym_i8] = ACTIONS(2712), - [anon_sym_u16] = ACTIONS(2712), - [anon_sym_i16] = ACTIONS(2712), - [anon_sym_u32] = ACTIONS(2712), - [anon_sym_i32] = ACTIONS(2712), - [anon_sym_u64] = ACTIONS(2712), - [anon_sym_i64] = ACTIONS(2712), - [anon_sym_u128] = ACTIONS(2712), - [anon_sym_i128] = ACTIONS(2712), - [anon_sym_isize] = ACTIONS(2712), - [anon_sym_usize] = ACTIONS(2712), - [anon_sym_f32] = ACTIONS(2712), - [anon_sym_f64] = ACTIONS(2712), - [anon_sym_bool] = ACTIONS(2712), - [anon_sym_str] = ACTIONS(2712), - [anon_sym_char] = ACTIONS(2712), - [anon_sym_DASH] = ACTIONS(2710), - [anon_sym_BANG] = ACTIONS(2710), - [anon_sym_AMP] = ACTIONS(2710), - [anon_sym_PIPE] = ACTIONS(2710), - [anon_sym_LT] = ACTIONS(2710), - [anon_sym_DOT_DOT] = ACTIONS(2710), - [anon_sym_COLON_COLON] = ACTIONS(2710), - [anon_sym_POUND] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2712), - [anon_sym_async] = ACTIONS(2712), - [anon_sym_break] = ACTIONS(2712), - [anon_sym_const] = ACTIONS(2712), - [anon_sym_continue] = ACTIONS(2712), - [anon_sym_default] = ACTIONS(2712), - [anon_sym_enum] = ACTIONS(2712), - [anon_sym_fn] = ACTIONS(2712), - [anon_sym_for] = ACTIONS(2712), - [anon_sym_gen] = ACTIONS(2712), - [anon_sym_if] = ACTIONS(2712), - [anon_sym_impl] = ACTIONS(2712), - [anon_sym_let] = ACTIONS(2712), - [anon_sym_loop] = ACTIONS(2712), - [anon_sym_match] = ACTIONS(2712), - [anon_sym_mod] = ACTIONS(2712), - [anon_sym_pub] = ACTIONS(2712), - [anon_sym_return] = ACTIONS(2712), - [anon_sym_static] = ACTIONS(2712), - [anon_sym_struct] = ACTIONS(2712), - [anon_sym_trait] = ACTIONS(2712), - [anon_sym_type] = ACTIONS(2712), - [anon_sym_union] = ACTIONS(2712), - [anon_sym_unsafe] = ACTIONS(2712), - [anon_sym_use] = ACTIONS(2712), - [anon_sym_while] = ACTIONS(2712), - [anon_sym_extern] = ACTIONS(2712), - [anon_sym_yield] = ACTIONS(2712), - [anon_sym_move] = ACTIONS(2712), - [anon_sym_try] = ACTIONS(2712), - [sym_integer_literal] = ACTIONS(2710), - [aux_sym_string_literal_token1] = ACTIONS(2710), - [sym_char_literal] = ACTIONS(2710), - [anon_sym_true] = ACTIONS(2712), - [anon_sym_false] = ACTIONS(2712), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2712), - [sym_super] = ACTIONS(2712), - [sym_crate] = ACTIONS(2712), - [sym_metavariable] = ACTIONS(2710), - [sym__raw_string_literal_start] = ACTIONS(2710), - [sym_float_literal] = ACTIONS(2710), + [ts_builtin_sym_end] = ACTIONS(1425), + [sym_identifier] = ACTIONS(1427), + [anon_sym_SEMI] = ACTIONS(1425), + [anon_sym_macro_rules_BANG] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_RBRACE] = ACTIONS(1425), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_u8] = ACTIONS(1427), + [anon_sym_i8] = ACTIONS(1427), + [anon_sym_u16] = ACTIONS(1427), + [anon_sym_i16] = ACTIONS(1427), + [anon_sym_u32] = ACTIONS(1427), + [anon_sym_i32] = ACTIONS(1427), + [anon_sym_u64] = ACTIONS(1427), + [anon_sym_i64] = ACTIONS(1427), + [anon_sym_u128] = ACTIONS(1427), + [anon_sym_i128] = ACTIONS(1427), + [anon_sym_isize] = ACTIONS(1427), + [anon_sym_usize] = ACTIONS(1427), + [anon_sym_f32] = ACTIONS(1427), + [anon_sym_f64] = ACTIONS(1427), + [anon_sym_bool] = ACTIONS(1427), + [anon_sym_str] = ACTIONS(1427), + [anon_sym_char] = ACTIONS(1427), + [anon_sym_DASH] = ACTIONS(1425), + [anon_sym_BANG] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LT] = ACTIONS(1425), + [anon_sym_DOT_DOT] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1425), + [anon_sym_POUND] = ACTIONS(1425), + [anon_sym_SQUOTE] = ACTIONS(1427), + [anon_sym_async] = ACTIONS(1427), + [anon_sym_break] = ACTIONS(1427), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_continue] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_enum] = ACTIONS(1427), + [anon_sym_fn] = ACTIONS(1427), + [anon_sym_for] = ACTIONS(1427), + [anon_sym_gen] = ACTIONS(1427), + [anon_sym_if] = ACTIONS(1427), + [anon_sym_impl] = ACTIONS(1427), + [anon_sym_let] = ACTIONS(1427), + [anon_sym_loop] = ACTIONS(1427), + [anon_sym_match] = ACTIONS(1427), + [anon_sym_mod] = ACTIONS(1427), + [anon_sym_pub] = ACTIONS(1427), + [anon_sym_return] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1427), + [anon_sym_struct] = ACTIONS(1427), + [anon_sym_trait] = ACTIONS(1427), + [anon_sym_type] = ACTIONS(1427), + [anon_sym_union] = ACTIONS(1427), + [anon_sym_unsafe] = ACTIONS(1427), + [anon_sym_use] = ACTIONS(1427), + [anon_sym_while] = ACTIONS(1427), + [anon_sym_extern] = ACTIONS(1427), + [anon_sym_yield] = ACTIONS(1427), + [anon_sym_move] = ACTIONS(1427), + [anon_sym_try] = ACTIONS(1427), + [sym_integer_literal] = ACTIONS(1425), + [aux_sym_string_literal_token1] = ACTIONS(1425), + [sym_char_literal] = ACTIONS(1425), + [anon_sym_true] = ACTIONS(1427), + [anon_sym_false] = ACTIONS(1427), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1427), + [sym_super] = ACTIONS(1427), + [sym_crate] = ACTIONS(1427), + [sym_metavariable] = ACTIONS(1425), + [sym__raw_string_literal_start] = ACTIONS(1425), + [sym_float_literal] = ACTIONS(1425), }, [STATE(700)] = { [sym_line_comment] = STATE(700), [sym_block_comment] = STATE(700), - [ts_builtin_sym_end] = ACTIONS(2714), - [sym_identifier] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2714), - [anon_sym_macro_rules_BANG] = ACTIONS(2714), - [anon_sym_LPAREN] = ACTIONS(2714), - [anon_sym_LBRACK] = ACTIONS(2714), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(2714), - [anon_sym_STAR] = ACTIONS(2714), - [anon_sym_u8] = ACTIONS(2716), - [anon_sym_i8] = ACTIONS(2716), - [anon_sym_u16] = ACTIONS(2716), - [anon_sym_i16] = ACTIONS(2716), - [anon_sym_u32] = ACTIONS(2716), - [anon_sym_i32] = ACTIONS(2716), - [anon_sym_u64] = ACTIONS(2716), - [anon_sym_i64] = ACTIONS(2716), - [anon_sym_u128] = ACTIONS(2716), - [anon_sym_i128] = ACTIONS(2716), - [anon_sym_isize] = ACTIONS(2716), - [anon_sym_usize] = ACTIONS(2716), - [anon_sym_f32] = ACTIONS(2716), - [anon_sym_f64] = ACTIONS(2716), - [anon_sym_bool] = ACTIONS(2716), - [anon_sym_str] = ACTIONS(2716), - [anon_sym_char] = ACTIONS(2716), - [anon_sym_DASH] = ACTIONS(2714), - [anon_sym_BANG] = ACTIONS(2714), - [anon_sym_AMP] = ACTIONS(2714), - [anon_sym_PIPE] = ACTIONS(2714), - [anon_sym_LT] = ACTIONS(2714), - [anon_sym_DOT_DOT] = ACTIONS(2714), - [anon_sym_COLON_COLON] = ACTIONS(2714), - [anon_sym_POUND] = ACTIONS(2714), - [anon_sym_SQUOTE] = ACTIONS(2716), - [anon_sym_async] = ACTIONS(2716), - [anon_sym_break] = ACTIONS(2716), - [anon_sym_const] = ACTIONS(2716), - [anon_sym_continue] = ACTIONS(2716), - [anon_sym_default] = ACTIONS(2716), - [anon_sym_enum] = ACTIONS(2716), - [anon_sym_fn] = ACTIONS(2716), - [anon_sym_for] = ACTIONS(2716), - [anon_sym_gen] = ACTIONS(2716), - [anon_sym_if] = ACTIONS(2716), - [anon_sym_impl] = ACTIONS(2716), - [anon_sym_let] = ACTIONS(2716), - [anon_sym_loop] = ACTIONS(2716), - [anon_sym_match] = ACTIONS(2716), - [anon_sym_mod] = ACTIONS(2716), - [anon_sym_pub] = ACTIONS(2716), - [anon_sym_return] = ACTIONS(2716), - [anon_sym_static] = ACTIONS(2716), - [anon_sym_struct] = ACTIONS(2716), - [anon_sym_trait] = ACTIONS(2716), - [anon_sym_type] = ACTIONS(2716), - [anon_sym_union] = ACTIONS(2716), - [anon_sym_unsafe] = ACTIONS(2716), - [anon_sym_use] = ACTIONS(2716), - [anon_sym_while] = ACTIONS(2716), - [anon_sym_extern] = ACTIONS(2716), - [anon_sym_yield] = ACTIONS(2716), - [anon_sym_move] = ACTIONS(2716), - [anon_sym_try] = ACTIONS(2716), - [sym_integer_literal] = ACTIONS(2714), - [aux_sym_string_literal_token1] = ACTIONS(2714), - [sym_char_literal] = ACTIONS(2714), - [anon_sym_true] = ACTIONS(2716), - [anon_sym_false] = ACTIONS(2716), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2716), - [sym_super] = ACTIONS(2716), - [sym_crate] = ACTIONS(2716), - [sym_metavariable] = ACTIONS(2714), - [sym__raw_string_literal_start] = ACTIONS(2714), - [sym_float_literal] = ACTIONS(2714), + [ts_builtin_sym_end] = ACTIONS(2545), + [sym_identifier] = ACTIONS(2547), + [anon_sym_SEMI] = ACTIONS(2545), + [anon_sym_macro_rules_BANG] = ACTIONS(2545), + [anon_sym_LPAREN] = ACTIONS(2545), + [anon_sym_LBRACK] = ACTIONS(2545), + [anon_sym_LBRACE] = ACTIONS(2545), + [anon_sym_RBRACE] = ACTIONS(2545), + [anon_sym_STAR] = ACTIONS(2545), + [anon_sym_u8] = ACTIONS(2547), + [anon_sym_i8] = ACTIONS(2547), + [anon_sym_u16] = ACTIONS(2547), + [anon_sym_i16] = ACTIONS(2547), + [anon_sym_u32] = ACTIONS(2547), + [anon_sym_i32] = ACTIONS(2547), + [anon_sym_u64] = ACTIONS(2547), + [anon_sym_i64] = ACTIONS(2547), + [anon_sym_u128] = ACTIONS(2547), + [anon_sym_i128] = ACTIONS(2547), + [anon_sym_isize] = ACTIONS(2547), + [anon_sym_usize] = ACTIONS(2547), + [anon_sym_f32] = ACTIONS(2547), + [anon_sym_f64] = ACTIONS(2547), + [anon_sym_bool] = ACTIONS(2547), + [anon_sym_str] = ACTIONS(2547), + [anon_sym_char] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(2545), + [anon_sym_BANG] = ACTIONS(2545), + [anon_sym_AMP] = ACTIONS(2545), + [anon_sym_PIPE] = ACTIONS(2545), + [anon_sym_LT] = ACTIONS(2545), + [anon_sym_DOT_DOT] = ACTIONS(2545), + [anon_sym_COLON_COLON] = ACTIONS(2545), + [anon_sym_POUND] = ACTIONS(2545), + [anon_sym_SQUOTE] = ACTIONS(2547), + [anon_sym_async] = ACTIONS(2547), + [anon_sym_break] = ACTIONS(2547), + [anon_sym_const] = ACTIONS(2547), + [anon_sym_continue] = ACTIONS(2547), + [anon_sym_default] = ACTIONS(2547), + [anon_sym_enum] = ACTIONS(2547), + [anon_sym_fn] = ACTIONS(2547), + [anon_sym_for] = ACTIONS(2547), + [anon_sym_gen] = ACTIONS(2547), + [anon_sym_if] = ACTIONS(2547), + [anon_sym_impl] = ACTIONS(2547), + [anon_sym_let] = ACTIONS(2547), + [anon_sym_loop] = ACTIONS(2547), + [anon_sym_match] = ACTIONS(2547), + [anon_sym_mod] = ACTIONS(2547), + [anon_sym_pub] = ACTIONS(2547), + [anon_sym_return] = ACTIONS(2547), + [anon_sym_static] = ACTIONS(2547), + [anon_sym_struct] = ACTIONS(2547), + [anon_sym_trait] = ACTIONS(2547), + [anon_sym_type] = ACTIONS(2547), + [anon_sym_union] = ACTIONS(2547), + [anon_sym_unsafe] = ACTIONS(2547), + [anon_sym_use] = ACTIONS(2547), + [anon_sym_while] = ACTIONS(2547), + [anon_sym_extern] = ACTIONS(2547), + [anon_sym_yield] = ACTIONS(2547), + [anon_sym_move] = ACTIONS(2547), + [anon_sym_try] = ACTIONS(2547), + [sym_integer_literal] = ACTIONS(2545), + [aux_sym_string_literal_token1] = ACTIONS(2545), + [sym_char_literal] = ACTIONS(2545), + [anon_sym_true] = ACTIONS(2547), + [anon_sym_false] = ACTIONS(2547), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2547), + [sym_super] = ACTIONS(2547), + [sym_crate] = ACTIONS(2547), + [sym_metavariable] = ACTIONS(2545), + [sym__raw_string_literal_start] = ACTIONS(2545), + [sym_float_literal] = ACTIONS(2545), }, [STATE(701)] = { [sym_line_comment] = STATE(701), [sym_block_comment] = STATE(701), - [ts_builtin_sym_end] = ACTIONS(2718), - [sym_identifier] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2718), - [anon_sym_macro_rules_BANG] = ACTIONS(2718), - [anon_sym_LPAREN] = ACTIONS(2718), - [anon_sym_LBRACK] = ACTIONS(2718), - [anon_sym_LBRACE] = ACTIONS(2718), - [anon_sym_RBRACE] = ACTIONS(2718), - [anon_sym_STAR] = ACTIONS(2718), - [anon_sym_u8] = ACTIONS(2720), - [anon_sym_i8] = ACTIONS(2720), - [anon_sym_u16] = ACTIONS(2720), - [anon_sym_i16] = ACTIONS(2720), - [anon_sym_u32] = ACTIONS(2720), - [anon_sym_i32] = ACTIONS(2720), - [anon_sym_u64] = ACTIONS(2720), - [anon_sym_i64] = ACTIONS(2720), - [anon_sym_u128] = ACTIONS(2720), - [anon_sym_i128] = ACTIONS(2720), - [anon_sym_isize] = ACTIONS(2720), - [anon_sym_usize] = ACTIONS(2720), - [anon_sym_f32] = ACTIONS(2720), - [anon_sym_f64] = ACTIONS(2720), - [anon_sym_bool] = ACTIONS(2720), - [anon_sym_str] = ACTIONS(2720), - [anon_sym_char] = ACTIONS(2720), - [anon_sym_DASH] = ACTIONS(2718), - [anon_sym_BANG] = ACTIONS(2718), - [anon_sym_AMP] = ACTIONS(2718), - [anon_sym_PIPE] = ACTIONS(2718), - [anon_sym_LT] = ACTIONS(2718), - [anon_sym_DOT_DOT] = ACTIONS(2718), - [anon_sym_COLON_COLON] = ACTIONS(2718), - [anon_sym_POUND] = ACTIONS(2718), - [anon_sym_SQUOTE] = ACTIONS(2720), - [anon_sym_async] = ACTIONS(2720), - [anon_sym_break] = ACTIONS(2720), - [anon_sym_const] = ACTIONS(2720), - [anon_sym_continue] = ACTIONS(2720), - [anon_sym_default] = ACTIONS(2720), - [anon_sym_enum] = ACTIONS(2720), - [anon_sym_fn] = ACTIONS(2720), - [anon_sym_for] = ACTIONS(2720), - [anon_sym_gen] = ACTIONS(2720), - [anon_sym_if] = ACTIONS(2720), - [anon_sym_impl] = ACTIONS(2720), - [anon_sym_let] = ACTIONS(2720), - [anon_sym_loop] = ACTIONS(2720), - [anon_sym_match] = ACTIONS(2720), - [anon_sym_mod] = ACTIONS(2720), - [anon_sym_pub] = ACTIONS(2720), - [anon_sym_return] = ACTIONS(2720), - [anon_sym_static] = ACTIONS(2720), - [anon_sym_struct] = ACTIONS(2720), - [anon_sym_trait] = ACTIONS(2720), - [anon_sym_type] = ACTIONS(2720), - [anon_sym_union] = ACTIONS(2720), - [anon_sym_unsafe] = ACTIONS(2720), - [anon_sym_use] = ACTIONS(2720), - [anon_sym_while] = ACTIONS(2720), - [anon_sym_extern] = ACTIONS(2720), - [anon_sym_yield] = ACTIONS(2720), - [anon_sym_move] = ACTIONS(2720), - [anon_sym_try] = ACTIONS(2720), - [sym_integer_literal] = ACTIONS(2718), - [aux_sym_string_literal_token1] = ACTIONS(2718), - [sym_char_literal] = ACTIONS(2718), - [anon_sym_true] = ACTIONS(2720), - [anon_sym_false] = ACTIONS(2720), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2720), - [sym_super] = ACTIONS(2720), - [sym_crate] = ACTIONS(2720), - [sym_metavariable] = ACTIONS(2718), - [sym__raw_string_literal_start] = ACTIONS(2718), - [sym_float_literal] = ACTIONS(2718), + [ts_builtin_sym_end] = ACTIONS(2549), + [sym_identifier] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(2549), + [anon_sym_macro_rules_BANG] = ACTIONS(2549), + [anon_sym_LPAREN] = ACTIONS(2549), + [anon_sym_LBRACK] = ACTIONS(2549), + [anon_sym_LBRACE] = ACTIONS(2549), + [anon_sym_RBRACE] = ACTIONS(2549), + [anon_sym_STAR] = ACTIONS(2549), + [anon_sym_u8] = ACTIONS(2551), + [anon_sym_i8] = ACTIONS(2551), + [anon_sym_u16] = ACTIONS(2551), + [anon_sym_i16] = ACTIONS(2551), + [anon_sym_u32] = ACTIONS(2551), + [anon_sym_i32] = ACTIONS(2551), + [anon_sym_u64] = ACTIONS(2551), + [anon_sym_i64] = ACTIONS(2551), + [anon_sym_u128] = ACTIONS(2551), + [anon_sym_i128] = ACTIONS(2551), + [anon_sym_isize] = ACTIONS(2551), + [anon_sym_usize] = ACTIONS(2551), + [anon_sym_f32] = ACTIONS(2551), + [anon_sym_f64] = ACTIONS(2551), + [anon_sym_bool] = ACTIONS(2551), + [anon_sym_str] = ACTIONS(2551), + [anon_sym_char] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(2549), + [anon_sym_BANG] = ACTIONS(2549), + [anon_sym_AMP] = ACTIONS(2549), + [anon_sym_PIPE] = ACTIONS(2549), + [anon_sym_LT] = ACTIONS(2549), + [anon_sym_DOT_DOT] = ACTIONS(2549), + [anon_sym_COLON_COLON] = ACTIONS(2549), + [anon_sym_POUND] = ACTIONS(2549), + [anon_sym_SQUOTE] = ACTIONS(2551), + [anon_sym_async] = ACTIONS(2551), + [anon_sym_break] = ACTIONS(2551), + [anon_sym_const] = ACTIONS(2551), + [anon_sym_continue] = ACTIONS(2551), + [anon_sym_default] = ACTIONS(2551), + [anon_sym_enum] = ACTIONS(2551), + [anon_sym_fn] = ACTIONS(2551), + [anon_sym_for] = ACTIONS(2551), + [anon_sym_gen] = ACTIONS(2551), + [anon_sym_if] = ACTIONS(2551), + [anon_sym_impl] = ACTIONS(2551), + [anon_sym_let] = ACTIONS(2551), + [anon_sym_loop] = ACTIONS(2551), + [anon_sym_match] = ACTIONS(2551), + [anon_sym_mod] = ACTIONS(2551), + [anon_sym_pub] = ACTIONS(2551), + [anon_sym_return] = ACTIONS(2551), + [anon_sym_static] = ACTIONS(2551), + [anon_sym_struct] = ACTIONS(2551), + [anon_sym_trait] = ACTIONS(2551), + [anon_sym_type] = ACTIONS(2551), + [anon_sym_union] = ACTIONS(2551), + [anon_sym_unsafe] = ACTIONS(2551), + [anon_sym_use] = ACTIONS(2551), + [anon_sym_while] = ACTIONS(2551), + [anon_sym_extern] = ACTIONS(2551), + [anon_sym_yield] = ACTIONS(2551), + [anon_sym_move] = ACTIONS(2551), + [anon_sym_try] = ACTIONS(2551), + [sym_integer_literal] = ACTIONS(2549), + [aux_sym_string_literal_token1] = ACTIONS(2549), + [sym_char_literal] = ACTIONS(2549), + [anon_sym_true] = ACTIONS(2551), + [anon_sym_false] = ACTIONS(2551), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2551), + [sym_super] = ACTIONS(2551), + [sym_crate] = ACTIONS(2551), + [sym_metavariable] = ACTIONS(2549), + [sym__raw_string_literal_start] = ACTIONS(2549), + [sym_float_literal] = ACTIONS(2549), }, [STATE(702)] = { [sym_line_comment] = STATE(702), [sym_block_comment] = STATE(702), - [ts_builtin_sym_end] = ACTIONS(2722), - [sym_identifier] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2722), - [anon_sym_macro_rules_BANG] = ACTIONS(2722), - [anon_sym_LPAREN] = ACTIONS(2722), - [anon_sym_LBRACK] = ACTIONS(2722), - [anon_sym_LBRACE] = ACTIONS(2722), - [anon_sym_RBRACE] = ACTIONS(2722), - [anon_sym_STAR] = ACTIONS(2722), - [anon_sym_u8] = ACTIONS(2724), - [anon_sym_i8] = ACTIONS(2724), - [anon_sym_u16] = ACTIONS(2724), - [anon_sym_i16] = ACTIONS(2724), - [anon_sym_u32] = ACTIONS(2724), - [anon_sym_i32] = ACTIONS(2724), - [anon_sym_u64] = ACTIONS(2724), - [anon_sym_i64] = ACTIONS(2724), - [anon_sym_u128] = ACTIONS(2724), - [anon_sym_i128] = ACTIONS(2724), - [anon_sym_isize] = ACTIONS(2724), - [anon_sym_usize] = ACTIONS(2724), - [anon_sym_f32] = ACTIONS(2724), - [anon_sym_f64] = ACTIONS(2724), - [anon_sym_bool] = ACTIONS(2724), - [anon_sym_str] = ACTIONS(2724), - [anon_sym_char] = ACTIONS(2724), - [anon_sym_DASH] = ACTIONS(2722), - [anon_sym_BANG] = ACTIONS(2722), - [anon_sym_AMP] = ACTIONS(2722), - [anon_sym_PIPE] = ACTIONS(2722), - [anon_sym_LT] = ACTIONS(2722), - [anon_sym_DOT_DOT] = ACTIONS(2722), - [anon_sym_COLON_COLON] = ACTIONS(2722), - [anon_sym_POUND] = ACTIONS(2722), - [anon_sym_SQUOTE] = ACTIONS(2724), - [anon_sym_async] = ACTIONS(2724), - [anon_sym_break] = ACTIONS(2724), - [anon_sym_const] = ACTIONS(2724), - [anon_sym_continue] = ACTIONS(2724), - [anon_sym_default] = ACTIONS(2724), - [anon_sym_enum] = ACTIONS(2724), - [anon_sym_fn] = ACTIONS(2724), - [anon_sym_for] = ACTIONS(2724), - [anon_sym_gen] = ACTIONS(2724), - [anon_sym_if] = ACTIONS(2724), - [anon_sym_impl] = ACTIONS(2724), - [anon_sym_let] = ACTIONS(2724), - [anon_sym_loop] = ACTIONS(2724), - [anon_sym_match] = ACTIONS(2724), - [anon_sym_mod] = ACTIONS(2724), - [anon_sym_pub] = ACTIONS(2724), - [anon_sym_return] = ACTIONS(2724), - [anon_sym_static] = ACTIONS(2724), - [anon_sym_struct] = ACTIONS(2724), - [anon_sym_trait] = ACTIONS(2724), - [anon_sym_type] = ACTIONS(2724), - [anon_sym_union] = ACTIONS(2724), - [anon_sym_unsafe] = ACTIONS(2724), - [anon_sym_use] = ACTIONS(2724), - [anon_sym_while] = ACTIONS(2724), - [anon_sym_extern] = ACTIONS(2724), - [anon_sym_yield] = ACTIONS(2724), - [anon_sym_move] = ACTIONS(2724), - [anon_sym_try] = ACTIONS(2724), - [sym_integer_literal] = ACTIONS(2722), - [aux_sym_string_literal_token1] = ACTIONS(2722), - [sym_char_literal] = ACTIONS(2722), - [anon_sym_true] = ACTIONS(2724), - [anon_sym_false] = ACTIONS(2724), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2724), - [sym_super] = ACTIONS(2724), - [sym_crate] = ACTIONS(2724), - [sym_metavariable] = ACTIONS(2722), - [sym__raw_string_literal_start] = ACTIONS(2722), - [sym_float_literal] = ACTIONS(2722), + [ts_builtin_sym_end] = ACTIONS(2553), + [sym_identifier] = ACTIONS(2555), + [anon_sym_SEMI] = ACTIONS(2553), + [anon_sym_macro_rules_BANG] = ACTIONS(2553), + [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_LBRACK] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2553), + [anon_sym_RBRACE] = ACTIONS(2553), + [anon_sym_STAR] = ACTIONS(2553), + [anon_sym_u8] = ACTIONS(2555), + [anon_sym_i8] = ACTIONS(2555), + [anon_sym_u16] = ACTIONS(2555), + [anon_sym_i16] = ACTIONS(2555), + [anon_sym_u32] = ACTIONS(2555), + [anon_sym_i32] = ACTIONS(2555), + [anon_sym_u64] = ACTIONS(2555), + [anon_sym_i64] = ACTIONS(2555), + [anon_sym_u128] = ACTIONS(2555), + [anon_sym_i128] = ACTIONS(2555), + [anon_sym_isize] = ACTIONS(2555), + [anon_sym_usize] = ACTIONS(2555), + [anon_sym_f32] = ACTIONS(2555), + [anon_sym_f64] = ACTIONS(2555), + [anon_sym_bool] = ACTIONS(2555), + [anon_sym_str] = ACTIONS(2555), + [anon_sym_char] = ACTIONS(2555), + [anon_sym_DASH] = ACTIONS(2553), + [anon_sym_BANG] = ACTIONS(2553), + [anon_sym_AMP] = ACTIONS(2553), + [anon_sym_PIPE] = ACTIONS(2553), + [anon_sym_LT] = ACTIONS(2553), + [anon_sym_DOT_DOT] = ACTIONS(2553), + [anon_sym_COLON_COLON] = ACTIONS(2553), + [anon_sym_POUND] = ACTIONS(2553), + [anon_sym_SQUOTE] = ACTIONS(2555), + [anon_sym_async] = ACTIONS(2555), + [anon_sym_break] = ACTIONS(2555), + [anon_sym_const] = ACTIONS(2555), + [anon_sym_continue] = ACTIONS(2555), + [anon_sym_default] = ACTIONS(2555), + [anon_sym_enum] = ACTIONS(2555), + [anon_sym_fn] = ACTIONS(2555), + [anon_sym_for] = ACTIONS(2555), + [anon_sym_gen] = ACTIONS(2555), + [anon_sym_if] = ACTIONS(2555), + [anon_sym_impl] = ACTIONS(2555), + [anon_sym_let] = ACTIONS(2555), + [anon_sym_loop] = ACTIONS(2555), + [anon_sym_match] = ACTIONS(2555), + [anon_sym_mod] = ACTIONS(2555), + [anon_sym_pub] = ACTIONS(2555), + [anon_sym_return] = ACTIONS(2555), + [anon_sym_static] = ACTIONS(2555), + [anon_sym_struct] = ACTIONS(2555), + [anon_sym_trait] = ACTIONS(2555), + [anon_sym_type] = ACTIONS(2555), + [anon_sym_union] = ACTIONS(2555), + [anon_sym_unsafe] = ACTIONS(2555), + [anon_sym_use] = ACTIONS(2555), + [anon_sym_while] = ACTIONS(2555), + [anon_sym_extern] = ACTIONS(2555), + [anon_sym_yield] = ACTIONS(2555), + [anon_sym_move] = ACTIONS(2555), + [anon_sym_try] = ACTIONS(2555), + [sym_integer_literal] = ACTIONS(2553), + [aux_sym_string_literal_token1] = ACTIONS(2553), + [sym_char_literal] = ACTIONS(2553), + [anon_sym_true] = ACTIONS(2555), + [anon_sym_false] = ACTIONS(2555), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2555), + [sym_super] = ACTIONS(2555), + [sym_crate] = ACTIONS(2555), + [sym_metavariable] = ACTIONS(2553), + [sym__raw_string_literal_start] = ACTIONS(2553), + [sym_float_literal] = ACTIONS(2553), }, [STATE(703)] = { [sym_line_comment] = STATE(703), [sym_block_comment] = STATE(703), - [ts_builtin_sym_end] = ACTIONS(2726), - [sym_identifier] = ACTIONS(2728), - [anon_sym_SEMI] = ACTIONS(2726), - [anon_sym_macro_rules_BANG] = ACTIONS(2726), - [anon_sym_LPAREN] = ACTIONS(2726), - [anon_sym_LBRACK] = ACTIONS(2726), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_RBRACE] = ACTIONS(2726), - [anon_sym_STAR] = ACTIONS(2726), - [anon_sym_u8] = ACTIONS(2728), - [anon_sym_i8] = ACTIONS(2728), - [anon_sym_u16] = ACTIONS(2728), - [anon_sym_i16] = ACTIONS(2728), - [anon_sym_u32] = ACTIONS(2728), - [anon_sym_i32] = ACTIONS(2728), - [anon_sym_u64] = ACTIONS(2728), - [anon_sym_i64] = ACTIONS(2728), - [anon_sym_u128] = ACTIONS(2728), - [anon_sym_i128] = ACTIONS(2728), - [anon_sym_isize] = ACTIONS(2728), - [anon_sym_usize] = ACTIONS(2728), - [anon_sym_f32] = ACTIONS(2728), - [anon_sym_f64] = ACTIONS(2728), - [anon_sym_bool] = ACTIONS(2728), - [anon_sym_str] = ACTIONS(2728), - [anon_sym_char] = ACTIONS(2728), - [anon_sym_DASH] = ACTIONS(2726), - [anon_sym_BANG] = ACTIONS(2726), - [anon_sym_AMP] = ACTIONS(2726), - [anon_sym_PIPE] = ACTIONS(2726), - [anon_sym_LT] = ACTIONS(2726), - [anon_sym_DOT_DOT] = ACTIONS(2726), - [anon_sym_COLON_COLON] = ACTIONS(2726), - [anon_sym_POUND] = ACTIONS(2726), - [anon_sym_SQUOTE] = ACTIONS(2728), - [anon_sym_async] = ACTIONS(2728), - [anon_sym_break] = ACTIONS(2728), - [anon_sym_const] = ACTIONS(2728), - [anon_sym_continue] = ACTIONS(2728), - [anon_sym_default] = ACTIONS(2728), - [anon_sym_enum] = ACTIONS(2728), - [anon_sym_fn] = ACTIONS(2728), - [anon_sym_for] = ACTIONS(2728), - [anon_sym_gen] = ACTIONS(2728), - [anon_sym_if] = ACTIONS(2728), - [anon_sym_impl] = ACTIONS(2728), - [anon_sym_let] = ACTIONS(2728), - [anon_sym_loop] = ACTIONS(2728), - [anon_sym_match] = ACTIONS(2728), - [anon_sym_mod] = ACTIONS(2728), - [anon_sym_pub] = ACTIONS(2728), - [anon_sym_return] = ACTIONS(2728), - [anon_sym_static] = ACTIONS(2728), - [anon_sym_struct] = ACTIONS(2728), - [anon_sym_trait] = ACTIONS(2728), - [anon_sym_type] = ACTIONS(2728), - [anon_sym_union] = ACTIONS(2728), - [anon_sym_unsafe] = ACTIONS(2728), - [anon_sym_use] = ACTIONS(2728), - [anon_sym_while] = ACTIONS(2728), - [anon_sym_extern] = ACTIONS(2728), - [anon_sym_yield] = ACTIONS(2728), - [anon_sym_move] = ACTIONS(2728), - [anon_sym_try] = ACTIONS(2728), - [sym_integer_literal] = ACTIONS(2726), - [aux_sym_string_literal_token1] = ACTIONS(2726), - [sym_char_literal] = ACTIONS(2726), - [anon_sym_true] = ACTIONS(2728), - [anon_sym_false] = ACTIONS(2728), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2728), - [sym_super] = ACTIONS(2728), - [sym_crate] = ACTIONS(2728), - [sym_metavariable] = ACTIONS(2726), - [sym__raw_string_literal_start] = ACTIONS(2726), - [sym_float_literal] = ACTIONS(2726), + [ts_builtin_sym_end] = ACTIONS(2557), + [sym_identifier] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_macro_rules_BANG] = ACTIONS(2557), + [anon_sym_LPAREN] = ACTIONS(2557), + [anon_sym_LBRACK] = ACTIONS(2557), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_RBRACE] = ACTIONS(2557), + [anon_sym_STAR] = ACTIONS(2557), + [anon_sym_u8] = ACTIONS(2559), + [anon_sym_i8] = ACTIONS(2559), + [anon_sym_u16] = ACTIONS(2559), + [anon_sym_i16] = ACTIONS(2559), + [anon_sym_u32] = ACTIONS(2559), + [anon_sym_i32] = ACTIONS(2559), + [anon_sym_u64] = ACTIONS(2559), + [anon_sym_i64] = ACTIONS(2559), + [anon_sym_u128] = ACTIONS(2559), + [anon_sym_i128] = ACTIONS(2559), + [anon_sym_isize] = ACTIONS(2559), + [anon_sym_usize] = ACTIONS(2559), + [anon_sym_f32] = ACTIONS(2559), + [anon_sym_f64] = ACTIONS(2559), + [anon_sym_bool] = ACTIONS(2559), + [anon_sym_str] = ACTIONS(2559), + [anon_sym_char] = ACTIONS(2559), + [anon_sym_DASH] = ACTIONS(2557), + [anon_sym_BANG] = ACTIONS(2557), + [anon_sym_AMP] = ACTIONS(2557), + [anon_sym_PIPE] = ACTIONS(2557), + [anon_sym_LT] = ACTIONS(2557), + [anon_sym_DOT_DOT] = ACTIONS(2557), + [anon_sym_COLON_COLON] = ACTIONS(2557), + [anon_sym_POUND] = ACTIONS(2557), + [anon_sym_SQUOTE] = ACTIONS(2559), + [anon_sym_async] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_fn] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_gen] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_impl] = ACTIONS(2559), + [anon_sym_let] = ACTIONS(2559), + [anon_sym_loop] = ACTIONS(2559), + [anon_sym_match] = ACTIONS(2559), + [anon_sym_mod] = ACTIONS(2559), + [anon_sym_pub] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_trait] = ACTIONS(2559), + [anon_sym_type] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_unsafe] = ACTIONS(2559), + [anon_sym_use] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym_yield] = ACTIONS(2559), + [anon_sym_move] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [sym_integer_literal] = ACTIONS(2557), + [aux_sym_string_literal_token1] = ACTIONS(2557), + [sym_char_literal] = ACTIONS(2557), + [anon_sym_true] = ACTIONS(2559), + [anon_sym_false] = ACTIONS(2559), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2559), + [sym_super] = ACTIONS(2559), + [sym_crate] = ACTIONS(2559), + [sym_metavariable] = ACTIONS(2557), + [sym__raw_string_literal_start] = ACTIONS(2557), + [sym_float_literal] = ACTIONS(2557), }, [STATE(704)] = { [sym_line_comment] = STATE(704), [sym_block_comment] = STATE(704), - [ts_builtin_sym_end] = ACTIONS(2730), - [sym_identifier] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2730), - [anon_sym_macro_rules_BANG] = ACTIONS(2730), - [anon_sym_LPAREN] = ACTIONS(2730), - [anon_sym_LBRACK] = ACTIONS(2730), - [anon_sym_LBRACE] = ACTIONS(2730), - [anon_sym_RBRACE] = ACTIONS(2730), - [anon_sym_STAR] = ACTIONS(2730), - [anon_sym_u8] = ACTIONS(2732), - [anon_sym_i8] = ACTIONS(2732), - [anon_sym_u16] = ACTIONS(2732), - [anon_sym_i16] = ACTIONS(2732), - [anon_sym_u32] = ACTIONS(2732), - [anon_sym_i32] = ACTIONS(2732), - [anon_sym_u64] = ACTIONS(2732), - [anon_sym_i64] = ACTIONS(2732), - [anon_sym_u128] = ACTIONS(2732), - [anon_sym_i128] = ACTIONS(2732), - [anon_sym_isize] = ACTIONS(2732), - [anon_sym_usize] = ACTIONS(2732), - [anon_sym_f32] = ACTIONS(2732), - [anon_sym_f64] = ACTIONS(2732), - [anon_sym_bool] = ACTIONS(2732), - [anon_sym_str] = ACTIONS(2732), - [anon_sym_char] = ACTIONS(2732), - [anon_sym_DASH] = ACTIONS(2730), - [anon_sym_BANG] = ACTIONS(2730), - [anon_sym_AMP] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2730), - [anon_sym_LT] = ACTIONS(2730), - [anon_sym_DOT_DOT] = ACTIONS(2730), - [anon_sym_COLON_COLON] = ACTIONS(2730), - [anon_sym_POUND] = ACTIONS(2730), - [anon_sym_SQUOTE] = ACTIONS(2732), - [anon_sym_async] = ACTIONS(2732), - [anon_sym_break] = ACTIONS(2732), - [anon_sym_const] = ACTIONS(2732), - [anon_sym_continue] = ACTIONS(2732), - [anon_sym_default] = ACTIONS(2732), - [anon_sym_enum] = ACTIONS(2732), - [anon_sym_fn] = ACTIONS(2732), - [anon_sym_for] = ACTIONS(2732), - [anon_sym_gen] = ACTIONS(2732), - [anon_sym_if] = ACTIONS(2732), - [anon_sym_impl] = ACTIONS(2732), - [anon_sym_let] = ACTIONS(2732), - [anon_sym_loop] = ACTIONS(2732), - [anon_sym_match] = ACTIONS(2732), - [anon_sym_mod] = ACTIONS(2732), - [anon_sym_pub] = ACTIONS(2732), - [anon_sym_return] = ACTIONS(2732), - [anon_sym_static] = ACTIONS(2732), - [anon_sym_struct] = ACTIONS(2732), - [anon_sym_trait] = ACTIONS(2732), - [anon_sym_type] = ACTIONS(2732), - [anon_sym_union] = ACTIONS(2732), - [anon_sym_unsafe] = ACTIONS(2732), - [anon_sym_use] = ACTIONS(2732), - [anon_sym_while] = ACTIONS(2732), - [anon_sym_extern] = ACTIONS(2732), - [anon_sym_yield] = ACTIONS(2732), - [anon_sym_move] = ACTIONS(2732), - [anon_sym_try] = ACTIONS(2732), - [sym_integer_literal] = ACTIONS(2730), - [aux_sym_string_literal_token1] = ACTIONS(2730), - [sym_char_literal] = ACTIONS(2730), - [anon_sym_true] = ACTIONS(2732), - [anon_sym_false] = ACTIONS(2732), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2732), - [sym_super] = ACTIONS(2732), - [sym_crate] = ACTIONS(2732), - [sym_metavariable] = ACTIONS(2730), - [sym__raw_string_literal_start] = ACTIONS(2730), - [sym_float_literal] = ACTIONS(2730), + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2563), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_macro_rules_BANG] = ACTIONS(2561), + [anon_sym_LPAREN] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2561), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_u8] = ACTIONS(2563), + [anon_sym_i8] = ACTIONS(2563), + [anon_sym_u16] = ACTIONS(2563), + [anon_sym_i16] = ACTIONS(2563), + [anon_sym_u32] = ACTIONS(2563), + [anon_sym_i32] = ACTIONS(2563), + [anon_sym_u64] = ACTIONS(2563), + [anon_sym_i64] = ACTIONS(2563), + [anon_sym_u128] = ACTIONS(2563), + [anon_sym_i128] = ACTIONS(2563), + [anon_sym_isize] = ACTIONS(2563), + [anon_sym_usize] = ACTIONS(2563), + [anon_sym_f32] = ACTIONS(2563), + [anon_sym_f64] = ACTIONS(2563), + [anon_sym_bool] = ACTIONS(2563), + [anon_sym_str] = ACTIONS(2563), + [anon_sym_char] = ACTIONS(2563), + [anon_sym_DASH] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE] = ACTIONS(2561), + [anon_sym_LT] = ACTIONS(2561), + [anon_sym_DOT_DOT] = ACTIONS(2561), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_POUND] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2563), + [anon_sym_async] = ACTIONS(2563), + [anon_sym_break] = ACTIONS(2563), + [anon_sym_const] = ACTIONS(2563), + [anon_sym_continue] = ACTIONS(2563), + [anon_sym_default] = ACTIONS(2563), + [anon_sym_enum] = ACTIONS(2563), + [anon_sym_fn] = ACTIONS(2563), + [anon_sym_for] = ACTIONS(2563), + [anon_sym_gen] = ACTIONS(2563), + [anon_sym_if] = ACTIONS(2563), + [anon_sym_impl] = ACTIONS(2563), + [anon_sym_let] = ACTIONS(2563), + [anon_sym_loop] = ACTIONS(2563), + [anon_sym_match] = ACTIONS(2563), + [anon_sym_mod] = ACTIONS(2563), + [anon_sym_pub] = ACTIONS(2563), + [anon_sym_return] = ACTIONS(2563), + [anon_sym_static] = ACTIONS(2563), + [anon_sym_struct] = ACTIONS(2563), + [anon_sym_trait] = ACTIONS(2563), + [anon_sym_type] = ACTIONS(2563), + [anon_sym_union] = ACTIONS(2563), + [anon_sym_unsafe] = ACTIONS(2563), + [anon_sym_use] = ACTIONS(2563), + [anon_sym_while] = ACTIONS(2563), + [anon_sym_extern] = ACTIONS(2563), + [anon_sym_yield] = ACTIONS(2563), + [anon_sym_move] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2563), + [sym_integer_literal] = ACTIONS(2561), + [aux_sym_string_literal_token1] = ACTIONS(2561), + [sym_char_literal] = ACTIONS(2561), + [anon_sym_true] = ACTIONS(2563), + [anon_sym_false] = ACTIONS(2563), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2563), + [sym_super] = ACTIONS(2563), + [sym_crate] = ACTIONS(2563), + [sym_metavariable] = ACTIONS(2561), + [sym__raw_string_literal_start] = ACTIONS(2561), + [sym_float_literal] = ACTIONS(2561), }, [STATE(705)] = { [sym_line_comment] = STATE(705), [sym_block_comment] = STATE(705), - [ts_builtin_sym_end] = ACTIONS(2734), - [sym_identifier] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2734), - [anon_sym_macro_rules_BANG] = ACTIONS(2734), - [anon_sym_LPAREN] = ACTIONS(2734), - [anon_sym_LBRACK] = ACTIONS(2734), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_RBRACE] = ACTIONS(2734), - [anon_sym_STAR] = ACTIONS(2734), - [anon_sym_u8] = ACTIONS(2736), - [anon_sym_i8] = ACTIONS(2736), - [anon_sym_u16] = ACTIONS(2736), - [anon_sym_i16] = ACTIONS(2736), - [anon_sym_u32] = ACTIONS(2736), - [anon_sym_i32] = ACTIONS(2736), - [anon_sym_u64] = ACTIONS(2736), - [anon_sym_i64] = ACTIONS(2736), - [anon_sym_u128] = ACTIONS(2736), - [anon_sym_i128] = ACTIONS(2736), - [anon_sym_isize] = ACTIONS(2736), - [anon_sym_usize] = ACTIONS(2736), - [anon_sym_f32] = ACTIONS(2736), - [anon_sym_f64] = ACTIONS(2736), - [anon_sym_bool] = ACTIONS(2736), - [anon_sym_str] = ACTIONS(2736), - [anon_sym_char] = ACTIONS(2736), - [anon_sym_DASH] = ACTIONS(2734), - [anon_sym_BANG] = ACTIONS(2734), - [anon_sym_AMP] = ACTIONS(2734), - [anon_sym_PIPE] = ACTIONS(2734), - [anon_sym_LT] = ACTIONS(2734), - [anon_sym_DOT_DOT] = ACTIONS(2734), - [anon_sym_COLON_COLON] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(2734), - [anon_sym_SQUOTE] = ACTIONS(2736), - [anon_sym_async] = ACTIONS(2736), - [anon_sym_break] = ACTIONS(2736), - [anon_sym_const] = ACTIONS(2736), - [anon_sym_continue] = ACTIONS(2736), - [anon_sym_default] = ACTIONS(2736), - [anon_sym_enum] = ACTIONS(2736), - [anon_sym_fn] = ACTIONS(2736), - [anon_sym_for] = ACTIONS(2736), - [anon_sym_gen] = ACTIONS(2736), - [anon_sym_if] = ACTIONS(2736), - [anon_sym_impl] = ACTIONS(2736), - [anon_sym_let] = ACTIONS(2736), - [anon_sym_loop] = ACTIONS(2736), - [anon_sym_match] = ACTIONS(2736), - [anon_sym_mod] = ACTIONS(2736), - [anon_sym_pub] = ACTIONS(2736), - [anon_sym_return] = ACTIONS(2736), - [anon_sym_static] = ACTIONS(2736), - [anon_sym_struct] = ACTIONS(2736), - [anon_sym_trait] = ACTIONS(2736), - [anon_sym_type] = ACTIONS(2736), - [anon_sym_union] = ACTIONS(2736), - [anon_sym_unsafe] = ACTIONS(2736), - [anon_sym_use] = ACTIONS(2736), - [anon_sym_while] = ACTIONS(2736), - [anon_sym_extern] = ACTIONS(2736), - [anon_sym_yield] = ACTIONS(2736), - [anon_sym_move] = ACTIONS(2736), - [anon_sym_try] = ACTIONS(2736), - [sym_integer_literal] = ACTIONS(2734), - [aux_sym_string_literal_token1] = ACTIONS(2734), - [sym_char_literal] = ACTIONS(2734), - [anon_sym_true] = ACTIONS(2736), - [anon_sym_false] = ACTIONS(2736), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2736), - [sym_super] = ACTIONS(2736), - [sym_crate] = ACTIONS(2736), - [sym_metavariable] = ACTIONS(2734), - [sym__raw_string_literal_start] = ACTIONS(2734), - [sym_float_literal] = ACTIONS(2734), + [ts_builtin_sym_end] = ACTIONS(2565), + [sym_identifier] = ACTIONS(2567), + [anon_sym_SEMI] = ACTIONS(2565), + [anon_sym_macro_rules_BANG] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2565), + [anon_sym_LBRACK] = ACTIONS(2565), + [anon_sym_LBRACE] = ACTIONS(2565), + [anon_sym_RBRACE] = ACTIONS(2565), + [anon_sym_STAR] = ACTIONS(2565), + [anon_sym_u8] = ACTIONS(2567), + [anon_sym_i8] = ACTIONS(2567), + [anon_sym_u16] = ACTIONS(2567), + [anon_sym_i16] = ACTIONS(2567), + [anon_sym_u32] = ACTIONS(2567), + [anon_sym_i32] = ACTIONS(2567), + [anon_sym_u64] = ACTIONS(2567), + [anon_sym_i64] = ACTIONS(2567), + [anon_sym_u128] = ACTIONS(2567), + [anon_sym_i128] = ACTIONS(2567), + [anon_sym_isize] = ACTIONS(2567), + [anon_sym_usize] = ACTIONS(2567), + [anon_sym_f32] = ACTIONS(2567), + [anon_sym_f64] = ACTIONS(2567), + [anon_sym_bool] = ACTIONS(2567), + [anon_sym_str] = ACTIONS(2567), + [anon_sym_char] = ACTIONS(2567), + [anon_sym_DASH] = ACTIONS(2565), + [anon_sym_BANG] = ACTIONS(2565), + [anon_sym_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2565), + [anon_sym_LT] = ACTIONS(2565), + [anon_sym_DOT_DOT] = ACTIONS(2565), + [anon_sym_COLON_COLON] = ACTIONS(2565), + [anon_sym_POUND] = ACTIONS(2565), + [anon_sym_SQUOTE] = ACTIONS(2567), + [anon_sym_async] = ACTIONS(2567), + [anon_sym_break] = ACTIONS(2567), + [anon_sym_const] = ACTIONS(2567), + [anon_sym_continue] = ACTIONS(2567), + [anon_sym_default] = ACTIONS(2567), + [anon_sym_enum] = ACTIONS(2567), + [anon_sym_fn] = ACTIONS(2567), + [anon_sym_for] = ACTIONS(2567), + [anon_sym_gen] = ACTIONS(2567), + [anon_sym_if] = ACTIONS(2567), + [anon_sym_impl] = ACTIONS(2567), + [anon_sym_let] = ACTIONS(2567), + [anon_sym_loop] = ACTIONS(2567), + [anon_sym_match] = ACTIONS(2567), + [anon_sym_mod] = ACTIONS(2567), + [anon_sym_pub] = ACTIONS(2567), + [anon_sym_return] = ACTIONS(2567), + [anon_sym_static] = ACTIONS(2567), + [anon_sym_struct] = ACTIONS(2567), + [anon_sym_trait] = ACTIONS(2567), + [anon_sym_type] = ACTIONS(2567), + [anon_sym_union] = ACTIONS(2567), + [anon_sym_unsafe] = ACTIONS(2567), + [anon_sym_use] = ACTIONS(2567), + [anon_sym_while] = ACTIONS(2567), + [anon_sym_extern] = ACTIONS(2567), + [anon_sym_yield] = ACTIONS(2567), + [anon_sym_move] = ACTIONS(2567), + [anon_sym_try] = ACTIONS(2567), + [sym_integer_literal] = ACTIONS(2565), + [aux_sym_string_literal_token1] = ACTIONS(2565), + [sym_char_literal] = ACTIONS(2565), + [anon_sym_true] = ACTIONS(2567), + [anon_sym_false] = ACTIONS(2567), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2567), + [sym_super] = ACTIONS(2567), + [sym_crate] = ACTIONS(2567), + [sym_metavariable] = ACTIONS(2565), + [sym__raw_string_literal_start] = ACTIONS(2565), + [sym_float_literal] = ACTIONS(2565), }, [STATE(706)] = { [sym_line_comment] = STATE(706), [sym_block_comment] = STATE(706), - [ts_builtin_sym_end] = ACTIONS(2738), - [sym_identifier] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2738), - [anon_sym_macro_rules_BANG] = ACTIONS(2738), - [anon_sym_LPAREN] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2738), - [anon_sym_LBRACE] = ACTIONS(2738), - [anon_sym_RBRACE] = ACTIONS(2738), - [anon_sym_STAR] = ACTIONS(2738), - [anon_sym_u8] = ACTIONS(2740), - [anon_sym_i8] = ACTIONS(2740), - [anon_sym_u16] = ACTIONS(2740), - [anon_sym_i16] = ACTIONS(2740), - [anon_sym_u32] = ACTIONS(2740), - [anon_sym_i32] = ACTIONS(2740), - [anon_sym_u64] = ACTIONS(2740), - [anon_sym_i64] = ACTIONS(2740), - [anon_sym_u128] = ACTIONS(2740), - [anon_sym_i128] = ACTIONS(2740), - [anon_sym_isize] = ACTIONS(2740), - [anon_sym_usize] = ACTIONS(2740), - [anon_sym_f32] = ACTIONS(2740), - [anon_sym_f64] = ACTIONS(2740), - [anon_sym_bool] = ACTIONS(2740), - [anon_sym_str] = ACTIONS(2740), - [anon_sym_char] = ACTIONS(2740), - [anon_sym_DASH] = ACTIONS(2738), - [anon_sym_BANG] = ACTIONS(2738), - [anon_sym_AMP] = ACTIONS(2738), - [anon_sym_PIPE] = ACTIONS(2738), - [anon_sym_LT] = ACTIONS(2738), - [anon_sym_DOT_DOT] = ACTIONS(2738), - [anon_sym_COLON_COLON] = ACTIONS(2738), - [anon_sym_POUND] = ACTIONS(2738), - [anon_sym_SQUOTE] = ACTIONS(2740), - [anon_sym_async] = ACTIONS(2740), - [anon_sym_break] = ACTIONS(2740), - [anon_sym_const] = ACTIONS(2740), - [anon_sym_continue] = ACTIONS(2740), - [anon_sym_default] = ACTIONS(2740), - [anon_sym_enum] = ACTIONS(2740), - [anon_sym_fn] = ACTIONS(2740), - [anon_sym_for] = ACTIONS(2740), - [anon_sym_gen] = ACTIONS(2740), - [anon_sym_if] = ACTIONS(2740), - [anon_sym_impl] = ACTIONS(2740), - [anon_sym_let] = ACTIONS(2740), - [anon_sym_loop] = ACTIONS(2740), - [anon_sym_match] = ACTIONS(2740), - [anon_sym_mod] = ACTIONS(2740), - [anon_sym_pub] = ACTIONS(2740), - [anon_sym_return] = ACTIONS(2740), - [anon_sym_static] = ACTIONS(2740), - [anon_sym_struct] = ACTIONS(2740), - [anon_sym_trait] = ACTIONS(2740), - [anon_sym_type] = ACTIONS(2740), - [anon_sym_union] = ACTIONS(2740), - [anon_sym_unsafe] = ACTIONS(2740), - [anon_sym_use] = ACTIONS(2740), - [anon_sym_while] = ACTIONS(2740), - [anon_sym_extern] = ACTIONS(2740), - [anon_sym_yield] = ACTIONS(2740), - [anon_sym_move] = ACTIONS(2740), - [anon_sym_try] = ACTIONS(2740), - [sym_integer_literal] = ACTIONS(2738), - [aux_sym_string_literal_token1] = ACTIONS(2738), - [sym_char_literal] = ACTIONS(2738), - [anon_sym_true] = ACTIONS(2740), - [anon_sym_false] = ACTIONS(2740), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2740), - [sym_super] = ACTIONS(2740), - [sym_crate] = ACTIONS(2740), - [sym_metavariable] = ACTIONS(2738), - [sym__raw_string_literal_start] = ACTIONS(2738), - [sym_float_literal] = ACTIONS(2738), + [ts_builtin_sym_end] = ACTIONS(2569), + [sym_identifier] = ACTIONS(2571), + [anon_sym_SEMI] = ACTIONS(2569), + [anon_sym_macro_rules_BANG] = ACTIONS(2569), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(2569), + [anon_sym_LBRACE] = ACTIONS(2569), + [anon_sym_RBRACE] = ACTIONS(2569), + [anon_sym_STAR] = ACTIONS(2569), + [anon_sym_u8] = ACTIONS(2571), + [anon_sym_i8] = ACTIONS(2571), + [anon_sym_u16] = ACTIONS(2571), + [anon_sym_i16] = ACTIONS(2571), + [anon_sym_u32] = ACTIONS(2571), + [anon_sym_i32] = ACTIONS(2571), + [anon_sym_u64] = ACTIONS(2571), + [anon_sym_i64] = ACTIONS(2571), + [anon_sym_u128] = ACTIONS(2571), + [anon_sym_i128] = ACTIONS(2571), + [anon_sym_isize] = ACTIONS(2571), + [anon_sym_usize] = ACTIONS(2571), + [anon_sym_f32] = ACTIONS(2571), + [anon_sym_f64] = ACTIONS(2571), + [anon_sym_bool] = ACTIONS(2571), + [anon_sym_str] = ACTIONS(2571), + [anon_sym_char] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2569), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_AMP] = ACTIONS(2569), + [anon_sym_PIPE] = ACTIONS(2569), + [anon_sym_LT] = ACTIONS(2569), + [anon_sym_DOT_DOT] = ACTIONS(2569), + [anon_sym_COLON_COLON] = ACTIONS(2569), + [anon_sym_POUND] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_async] = ACTIONS(2571), + [anon_sym_break] = ACTIONS(2571), + [anon_sym_const] = ACTIONS(2571), + [anon_sym_continue] = ACTIONS(2571), + [anon_sym_default] = ACTIONS(2571), + [anon_sym_enum] = ACTIONS(2571), + [anon_sym_fn] = ACTIONS(2571), + [anon_sym_for] = ACTIONS(2571), + [anon_sym_gen] = ACTIONS(2571), + [anon_sym_if] = ACTIONS(2571), + [anon_sym_impl] = ACTIONS(2571), + [anon_sym_let] = ACTIONS(2571), + [anon_sym_loop] = ACTIONS(2571), + [anon_sym_match] = ACTIONS(2571), + [anon_sym_mod] = ACTIONS(2571), + [anon_sym_pub] = ACTIONS(2571), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_static] = ACTIONS(2571), + [anon_sym_struct] = ACTIONS(2571), + [anon_sym_trait] = ACTIONS(2571), + [anon_sym_type] = ACTIONS(2571), + [anon_sym_union] = ACTIONS(2571), + [anon_sym_unsafe] = ACTIONS(2571), + [anon_sym_use] = ACTIONS(2571), + [anon_sym_while] = ACTIONS(2571), + [anon_sym_extern] = ACTIONS(2571), + [anon_sym_yield] = ACTIONS(2571), + [anon_sym_move] = ACTIONS(2571), + [anon_sym_try] = ACTIONS(2571), + [sym_integer_literal] = ACTIONS(2569), + [aux_sym_string_literal_token1] = ACTIONS(2569), + [sym_char_literal] = ACTIONS(2569), + [anon_sym_true] = ACTIONS(2571), + [anon_sym_false] = ACTIONS(2571), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2571), + [sym_super] = ACTIONS(2571), + [sym_crate] = ACTIONS(2571), + [sym_metavariable] = ACTIONS(2569), + [sym__raw_string_literal_start] = ACTIONS(2569), + [sym_float_literal] = ACTIONS(2569), }, [STATE(707)] = { [sym_line_comment] = STATE(707), [sym_block_comment] = STATE(707), - [ts_builtin_sym_end] = ACTIONS(2742), - [sym_identifier] = ACTIONS(2744), - [anon_sym_SEMI] = ACTIONS(2742), - [anon_sym_macro_rules_BANG] = ACTIONS(2742), - [anon_sym_LPAREN] = ACTIONS(2742), - [anon_sym_LBRACK] = ACTIONS(2742), - [anon_sym_LBRACE] = ACTIONS(2742), - [anon_sym_RBRACE] = ACTIONS(2742), - [anon_sym_STAR] = ACTIONS(2742), - [anon_sym_u8] = ACTIONS(2744), - [anon_sym_i8] = ACTIONS(2744), - [anon_sym_u16] = ACTIONS(2744), - [anon_sym_i16] = ACTIONS(2744), - [anon_sym_u32] = ACTIONS(2744), - [anon_sym_i32] = ACTIONS(2744), - [anon_sym_u64] = ACTIONS(2744), - [anon_sym_i64] = ACTIONS(2744), - [anon_sym_u128] = ACTIONS(2744), - [anon_sym_i128] = ACTIONS(2744), - [anon_sym_isize] = ACTIONS(2744), - [anon_sym_usize] = ACTIONS(2744), - [anon_sym_f32] = ACTIONS(2744), - [anon_sym_f64] = ACTIONS(2744), - [anon_sym_bool] = ACTIONS(2744), - [anon_sym_str] = ACTIONS(2744), - [anon_sym_char] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2742), - [anon_sym_BANG] = ACTIONS(2742), - [anon_sym_AMP] = ACTIONS(2742), - [anon_sym_PIPE] = ACTIONS(2742), - [anon_sym_LT] = ACTIONS(2742), - [anon_sym_DOT_DOT] = ACTIONS(2742), - [anon_sym_COLON_COLON] = ACTIONS(2742), - [anon_sym_POUND] = ACTIONS(2742), - [anon_sym_SQUOTE] = ACTIONS(2744), - [anon_sym_async] = ACTIONS(2744), - [anon_sym_break] = ACTIONS(2744), - [anon_sym_const] = ACTIONS(2744), - [anon_sym_continue] = ACTIONS(2744), - [anon_sym_default] = ACTIONS(2744), - [anon_sym_enum] = ACTIONS(2744), - [anon_sym_fn] = ACTIONS(2744), - [anon_sym_for] = ACTIONS(2744), - [anon_sym_gen] = ACTIONS(2744), - [anon_sym_if] = ACTIONS(2744), - [anon_sym_impl] = ACTIONS(2744), - [anon_sym_let] = ACTIONS(2744), - [anon_sym_loop] = ACTIONS(2744), - [anon_sym_match] = ACTIONS(2744), - [anon_sym_mod] = ACTIONS(2744), - [anon_sym_pub] = ACTIONS(2744), - [anon_sym_return] = ACTIONS(2744), - [anon_sym_static] = ACTIONS(2744), - [anon_sym_struct] = ACTIONS(2744), - [anon_sym_trait] = ACTIONS(2744), - [anon_sym_type] = ACTIONS(2744), - [anon_sym_union] = ACTIONS(2744), - [anon_sym_unsafe] = ACTIONS(2744), - [anon_sym_use] = ACTIONS(2744), - [anon_sym_while] = ACTIONS(2744), - [anon_sym_extern] = ACTIONS(2744), - [anon_sym_yield] = ACTIONS(2744), - [anon_sym_move] = ACTIONS(2744), - [anon_sym_try] = ACTIONS(2744), - [sym_integer_literal] = ACTIONS(2742), - [aux_sym_string_literal_token1] = ACTIONS(2742), - [sym_char_literal] = ACTIONS(2742), - [anon_sym_true] = ACTIONS(2744), - [anon_sym_false] = ACTIONS(2744), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2744), - [sym_super] = ACTIONS(2744), - [sym_crate] = ACTIONS(2744), - [sym_metavariable] = ACTIONS(2742), - [sym__raw_string_literal_start] = ACTIONS(2742), - [sym_float_literal] = ACTIONS(2742), + [ts_builtin_sym_end] = ACTIONS(2573), + [sym_identifier] = ACTIONS(2575), + [anon_sym_SEMI] = ACTIONS(2573), + [anon_sym_macro_rules_BANG] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2573), + [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_RBRACE] = ACTIONS(2573), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_u8] = ACTIONS(2575), + [anon_sym_i8] = ACTIONS(2575), + [anon_sym_u16] = ACTIONS(2575), + [anon_sym_i16] = ACTIONS(2575), + [anon_sym_u32] = ACTIONS(2575), + [anon_sym_i32] = ACTIONS(2575), + [anon_sym_u64] = ACTIONS(2575), + [anon_sym_i64] = ACTIONS(2575), + [anon_sym_u128] = ACTIONS(2575), + [anon_sym_i128] = ACTIONS(2575), + [anon_sym_isize] = ACTIONS(2575), + [anon_sym_usize] = ACTIONS(2575), + [anon_sym_f32] = ACTIONS(2575), + [anon_sym_f64] = ACTIONS(2575), + [anon_sym_bool] = ACTIONS(2575), + [anon_sym_str] = ACTIONS(2575), + [anon_sym_char] = ACTIONS(2575), + [anon_sym_DASH] = ACTIONS(2573), + [anon_sym_BANG] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_PIPE] = ACTIONS(2573), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_DOT_DOT] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(2573), + [anon_sym_POUND] = ACTIONS(2573), + [anon_sym_SQUOTE] = ACTIONS(2575), + [anon_sym_async] = ACTIONS(2575), + [anon_sym_break] = ACTIONS(2575), + [anon_sym_const] = ACTIONS(2575), + [anon_sym_continue] = ACTIONS(2575), + [anon_sym_default] = ACTIONS(2575), + [anon_sym_enum] = ACTIONS(2575), + [anon_sym_fn] = ACTIONS(2575), + [anon_sym_for] = ACTIONS(2575), + [anon_sym_gen] = ACTIONS(2575), + [anon_sym_if] = ACTIONS(2575), + [anon_sym_impl] = ACTIONS(2575), + [anon_sym_let] = ACTIONS(2575), + [anon_sym_loop] = ACTIONS(2575), + [anon_sym_match] = ACTIONS(2575), + [anon_sym_mod] = ACTIONS(2575), + [anon_sym_pub] = ACTIONS(2575), + [anon_sym_return] = ACTIONS(2575), + [anon_sym_static] = ACTIONS(2575), + [anon_sym_struct] = ACTIONS(2575), + [anon_sym_trait] = ACTIONS(2575), + [anon_sym_type] = ACTIONS(2575), + [anon_sym_union] = ACTIONS(2575), + [anon_sym_unsafe] = ACTIONS(2575), + [anon_sym_use] = ACTIONS(2575), + [anon_sym_while] = ACTIONS(2575), + [anon_sym_extern] = ACTIONS(2575), + [anon_sym_yield] = ACTIONS(2575), + [anon_sym_move] = ACTIONS(2575), + [anon_sym_try] = ACTIONS(2575), + [sym_integer_literal] = ACTIONS(2573), + [aux_sym_string_literal_token1] = ACTIONS(2573), + [sym_char_literal] = ACTIONS(2573), + [anon_sym_true] = ACTIONS(2575), + [anon_sym_false] = ACTIONS(2575), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2575), + [sym_super] = ACTIONS(2575), + [sym_crate] = ACTIONS(2575), + [sym_metavariable] = ACTIONS(2573), + [sym__raw_string_literal_start] = ACTIONS(2573), + [sym_float_literal] = ACTIONS(2573), }, [STATE(708)] = { [sym_line_comment] = STATE(708), [sym_block_comment] = STATE(708), - [ts_builtin_sym_end] = ACTIONS(2746), - [sym_identifier] = ACTIONS(2748), - [anon_sym_SEMI] = ACTIONS(2746), - [anon_sym_macro_rules_BANG] = ACTIONS(2746), - [anon_sym_LPAREN] = ACTIONS(2746), - [anon_sym_LBRACK] = ACTIONS(2746), - [anon_sym_LBRACE] = ACTIONS(2746), - [anon_sym_RBRACE] = ACTIONS(2746), - [anon_sym_STAR] = ACTIONS(2746), - [anon_sym_u8] = ACTIONS(2748), - [anon_sym_i8] = ACTIONS(2748), - [anon_sym_u16] = ACTIONS(2748), - [anon_sym_i16] = ACTIONS(2748), - [anon_sym_u32] = ACTIONS(2748), - [anon_sym_i32] = ACTIONS(2748), - [anon_sym_u64] = ACTIONS(2748), - [anon_sym_i64] = ACTIONS(2748), - [anon_sym_u128] = ACTIONS(2748), - [anon_sym_i128] = ACTIONS(2748), - [anon_sym_isize] = ACTIONS(2748), - [anon_sym_usize] = ACTIONS(2748), - [anon_sym_f32] = ACTIONS(2748), - [anon_sym_f64] = ACTIONS(2748), - [anon_sym_bool] = ACTIONS(2748), - [anon_sym_str] = ACTIONS(2748), - [anon_sym_char] = ACTIONS(2748), - [anon_sym_DASH] = ACTIONS(2746), - [anon_sym_BANG] = ACTIONS(2746), - [anon_sym_AMP] = ACTIONS(2746), - [anon_sym_PIPE] = ACTIONS(2746), - [anon_sym_LT] = ACTIONS(2746), - [anon_sym_DOT_DOT] = ACTIONS(2746), - [anon_sym_COLON_COLON] = ACTIONS(2746), - [anon_sym_POUND] = ACTIONS(2746), - [anon_sym_SQUOTE] = ACTIONS(2748), - [anon_sym_async] = ACTIONS(2748), - [anon_sym_break] = ACTIONS(2748), - [anon_sym_const] = ACTIONS(2748), - [anon_sym_continue] = ACTIONS(2748), - [anon_sym_default] = ACTIONS(2748), - [anon_sym_enum] = ACTIONS(2748), - [anon_sym_fn] = ACTIONS(2748), - [anon_sym_for] = ACTIONS(2748), - [anon_sym_gen] = ACTIONS(2748), - [anon_sym_if] = ACTIONS(2748), - [anon_sym_impl] = ACTIONS(2748), - [anon_sym_let] = ACTIONS(2748), - [anon_sym_loop] = ACTIONS(2748), - [anon_sym_match] = ACTIONS(2748), - [anon_sym_mod] = ACTIONS(2748), - [anon_sym_pub] = ACTIONS(2748), - [anon_sym_return] = ACTIONS(2748), - [anon_sym_static] = ACTIONS(2748), - [anon_sym_struct] = ACTIONS(2748), - [anon_sym_trait] = ACTIONS(2748), - [anon_sym_type] = ACTIONS(2748), - [anon_sym_union] = ACTIONS(2748), - [anon_sym_unsafe] = ACTIONS(2748), - [anon_sym_use] = ACTIONS(2748), - [anon_sym_while] = ACTIONS(2748), - [anon_sym_extern] = ACTIONS(2748), - [anon_sym_yield] = ACTIONS(2748), - [anon_sym_move] = ACTIONS(2748), - [anon_sym_try] = ACTIONS(2748), - [sym_integer_literal] = ACTIONS(2746), - [aux_sym_string_literal_token1] = ACTIONS(2746), - [sym_char_literal] = ACTIONS(2746), - [anon_sym_true] = ACTIONS(2748), - [anon_sym_false] = ACTIONS(2748), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2748), - [sym_super] = ACTIONS(2748), - [sym_crate] = ACTIONS(2748), - [sym_metavariable] = ACTIONS(2746), - [sym__raw_string_literal_start] = ACTIONS(2746), - [sym_float_literal] = ACTIONS(2746), + [ts_builtin_sym_end] = ACTIONS(2577), + [sym_identifier] = ACTIONS(2579), + [anon_sym_SEMI] = ACTIONS(2577), + [anon_sym_macro_rules_BANG] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(2577), + [anon_sym_LBRACK] = ACTIONS(2577), + [anon_sym_LBRACE] = ACTIONS(2577), + [anon_sym_RBRACE] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(2577), + [anon_sym_u8] = ACTIONS(2579), + [anon_sym_i8] = ACTIONS(2579), + [anon_sym_u16] = ACTIONS(2579), + [anon_sym_i16] = ACTIONS(2579), + [anon_sym_u32] = ACTIONS(2579), + [anon_sym_i32] = ACTIONS(2579), + [anon_sym_u64] = ACTIONS(2579), + [anon_sym_i64] = ACTIONS(2579), + [anon_sym_u128] = ACTIONS(2579), + [anon_sym_i128] = ACTIONS(2579), + [anon_sym_isize] = ACTIONS(2579), + [anon_sym_usize] = ACTIONS(2579), + [anon_sym_f32] = ACTIONS(2579), + [anon_sym_f64] = ACTIONS(2579), + [anon_sym_bool] = ACTIONS(2579), + [anon_sym_str] = ACTIONS(2579), + [anon_sym_char] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2577), + [anon_sym_BANG] = ACTIONS(2577), + [anon_sym_AMP] = ACTIONS(2577), + [anon_sym_PIPE] = ACTIONS(2577), + [anon_sym_LT] = ACTIONS(2577), + [anon_sym_DOT_DOT] = ACTIONS(2577), + [anon_sym_COLON_COLON] = ACTIONS(2577), + [anon_sym_POUND] = ACTIONS(2577), + [anon_sym_SQUOTE] = ACTIONS(2579), + [anon_sym_async] = ACTIONS(2579), + [anon_sym_break] = ACTIONS(2579), + [anon_sym_const] = ACTIONS(2579), + [anon_sym_continue] = ACTIONS(2579), + [anon_sym_default] = ACTIONS(2579), + [anon_sym_enum] = ACTIONS(2579), + [anon_sym_fn] = ACTIONS(2579), + [anon_sym_for] = ACTIONS(2579), + [anon_sym_gen] = ACTIONS(2579), + [anon_sym_if] = ACTIONS(2579), + [anon_sym_impl] = ACTIONS(2579), + [anon_sym_let] = ACTIONS(2579), + [anon_sym_loop] = ACTIONS(2579), + [anon_sym_match] = ACTIONS(2579), + [anon_sym_mod] = ACTIONS(2579), + [anon_sym_pub] = ACTIONS(2579), + [anon_sym_return] = ACTIONS(2579), + [anon_sym_static] = ACTIONS(2579), + [anon_sym_struct] = ACTIONS(2579), + [anon_sym_trait] = ACTIONS(2579), + [anon_sym_type] = ACTIONS(2579), + [anon_sym_union] = ACTIONS(2579), + [anon_sym_unsafe] = ACTIONS(2579), + [anon_sym_use] = ACTIONS(2579), + [anon_sym_while] = ACTIONS(2579), + [anon_sym_extern] = ACTIONS(2579), + [anon_sym_yield] = ACTIONS(2579), + [anon_sym_move] = ACTIONS(2579), + [anon_sym_try] = ACTIONS(2579), + [sym_integer_literal] = ACTIONS(2577), + [aux_sym_string_literal_token1] = ACTIONS(2577), + [sym_char_literal] = ACTIONS(2577), + [anon_sym_true] = ACTIONS(2579), + [anon_sym_false] = ACTIONS(2579), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2579), + [sym_super] = ACTIONS(2579), + [sym_crate] = ACTIONS(2579), + [sym_metavariable] = ACTIONS(2577), + [sym__raw_string_literal_start] = ACTIONS(2577), + [sym_float_literal] = ACTIONS(2577), }, [STATE(709)] = { [sym_line_comment] = STATE(709), [sym_block_comment] = STATE(709), - [ts_builtin_sym_end] = ACTIONS(2750), - [sym_identifier] = ACTIONS(2752), - [anon_sym_SEMI] = ACTIONS(2750), - [anon_sym_macro_rules_BANG] = ACTIONS(2750), - [anon_sym_LPAREN] = ACTIONS(2750), - [anon_sym_LBRACK] = ACTIONS(2750), - [anon_sym_LBRACE] = ACTIONS(2750), - [anon_sym_RBRACE] = ACTIONS(2750), - [anon_sym_STAR] = ACTIONS(2750), - [anon_sym_u8] = ACTIONS(2752), - [anon_sym_i8] = ACTIONS(2752), - [anon_sym_u16] = ACTIONS(2752), - [anon_sym_i16] = ACTIONS(2752), - [anon_sym_u32] = ACTIONS(2752), - [anon_sym_i32] = ACTIONS(2752), - [anon_sym_u64] = ACTIONS(2752), - [anon_sym_i64] = ACTIONS(2752), - [anon_sym_u128] = ACTIONS(2752), - [anon_sym_i128] = ACTIONS(2752), - [anon_sym_isize] = ACTIONS(2752), - [anon_sym_usize] = ACTIONS(2752), - [anon_sym_f32] = ACTIONS(2752), - [anon_sym_f64] = ACTIONS(2752), - [anon_sym_bool] = ACTIONS(2752), - [anon_sym_str] = ACTIONS(2752), - [anon_sym_char] = ACTIONS(2752), - [anon_sym_DASH] = ACTIONS(2750), - [anon_sym_BANG] = ACTIONS(2750), - [anon_sym_AMP] = ACTIONS(2750), - [anon_sym_PIPE] = ACTIONS(2750), - [anon_sym_LT] = ACTIONS(2750), - [anon_sym_DOT_DOT] = ACTIONS(2750), - [anon_sym_COLON_COLON] = ACTIONS(2750), - [anon_sym_POUND] = ACTIONS(2750), - [anon_sym_SQUOTE] = ACTIONS(2752), - [anon_sym_async] = ACTIONS(2752), - [anon_sym_break] = ACTIONS(2752), - [anon_sym_const] = ACTIONS(2752), - [anon_sym_continue] = ACTIONS(2752), - [anon_sym_default] = ACTIONS(2752), - [anon_sym_enum] = ACTIONS(2752), - [anon_sym_fn] = ACTIONS(2752), - [anon_sym_for] = ACTIONS(2752), - [anon_sym_gen] = ACTIONS(2752), - [anon_sym_if] = ACTIONS(2752), - [anon_sym_impl] = ACTIONS(2752), - [anon_sym_let] = ACTIONS(2752), - [anon_sym_loop] = ACTIONS(2752), - [anon_sym_match] = ACTIONS(2752), - [anon_sym_mod] = ACTIONS(2752), - [anon_sym_pub] = ACTIONS(2752), - [anon_sym_return] = ACTIONS(2752), - [anon_sym_static] = ACTIONS(2752), - [anon_sym_struct] = ACTIONS(2752), - [anon_sym_trait] = ACTIONS(2752), - [anon_sym_type] = ACTIONS(2752), - [anon_sym_union] = ACTIONS(2752), - [anon_sym_unsafe] = ACTIONS(2752), - [anon_sym_use] = ACTIONS(2752), - [anon_sym_while] = ACTIONS(2752), - [anon_sym_extern] = ACTIONS(2752), - [anon_sym_yield] = ACTIONS(2752), - [anon_sym_move] = ACTIONS(2752), - [anon_sym_try] = ACTIONS(2752), - [sym_integer_literal] = ACTIONS(2750), - [aux_sym_string_literal_token1] = ACTIONS(2750), - [sym_char_literal] = ACTIONS(2750), - [anon_sym_true] = ACTIONS(2752), - [anon_sym_false] = ACTIONS(2752), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2752), - [sym_super] = ACTIONS(2752), - [sym_crate] = ACTIONS(2752), - [sym_metavariable] = ACTIONS(2750), - [sym__raw_string_literal_start] = ACTIONS(2750), - [sym_float_literal] = ACTIONS(2750), + [ts_builtin_sym_end] = ACTIONS(2581), + [sym_identifier] = ACTIONS(2583), + [anon_sym_SEMI] = ACTIONS(2581), + [anon_sym_macro_rules_BANG] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2581), + [anon_sym_LBRACK] = ACTIONS(2581), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_RBRACE] = ACTIONS(2581), + [anon_sym_STAR] = ACTIONS(2581), + [anon_sym_u8] = ACTIONS(2583), + [anon_sym_i8] = ACTIONS(2583), + [anon_sym_u16] = ACTIONS(2583), + [anon_sym_i16] = ACTIONS(2583), + [anon_sym_u32] = ACTIONS(2583), + [anon_sym_i32] = ACTIONS(2583), + [anon_sym_u64] = ACTIONS(2583), + [anon_sym_i64] = ACTIONS(2583), + [anon_sym_u128] = ACTIONS(2583), + [anon_sym_i128] = ACTIONS(2583), + [anon_sym_isize] = ACTIONS(2583), + [anon_sym_usize] = ACTIONS(2583), + [anon_sym_f32] = ACTIONS(2583), + [anon_sym_f64] = ACTIONS(2583), + [anon_sym_bool] = ACTIONS(2583), + [anon_sym_str] = ACTIONS(2583), + [anon_sym_char] = ACTIONS(2583), + [anon_sym_DASH] = ACTIONS(2581), + [anon_sym_BANG] = ACTIONS(2581), + [anon_sym_AMP] = ACTIONS(2581), + [anon_sym_PIPE] = ACTIONS(2581), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_DOT_DOT] = ACTIONS(2581), + [anon_sym_COLON_COLON] = ACTIONS(2581), + [anon_sym_POUND] = ACTIONS(2581), + [anon_sym_SQUOTE] = ACTIONS(2583), + [anon_sym_async] = ACTIONS(2583), + [anon_sym_break] = ACTIONS(2583), + [anon_sym_const] = ACTIONS(2583), + [anon_sym_continue] = ACTIONS(2583), + [anon_sym_default] = ACTIONS(2583), + [anon_sym_enum] = ACTIONS(2583), + [anon_sym_fn] = ACTIONS(2583), + [anon_sym_for] = ACTIONS(2583), + [anon_sym_gen] = ACTIONS(2583), + [anon_sym_if] = ACTIONS(2583), + [anon_sym_impl] = ACTIONS(2583), + [anon_sym_let] = ACTIONS(2583), + [anon_sym_loop] = ACTIONS(2583), + [anon_sym_match] = ACTIONS(2583), + [anon_sym_mod] = ACTIONS(2583), + [anon_sym_pub] = ACTIONS(2583), + [anon_sym_return] = ACTIONS(2583), + [anon_sym_static] = ACTIONS(2583), + [anon_sym_struct] = ACTIONS(2583), + [anon_sym_trait] = ACTIONS(2583), + [anon_sym_type] = ACTIONS(2583), + [anon_sym_union] = ACTIONS(2583), + [anon_sym_unsafe] = ACTIONS(2583), + [anon_sym_use] = ACTIONS(2583), + [anon_sym_while] = ACTIONS(2583), + [anon_sym_extern] = ACTIONS(2583), + [anon_sym_yield] = ACTIONS(2583), + [anon_sym_move] = ACTIONS(2583), + [anon_sym_try] = ACTIONS(2583), + [sym_integer_literal] = ACTIONS(2581), + [aux_sym_string_literal_token1] = ACTIONS(2581), + [sym_char_literal] = ACTIONS(2581), + [anon_sym_true] = ACTIONS(2583), + [anon_sym_false] = ACTIONS(2583), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2583), + [sym_super] = ACTIONS(2583), + [sym_crate] = ACTIONS(2583), + [sym_metavariable] = ACTIONS(2581), + [sym__raw_string_literal_start] = ACTIONS(2581), + [sym_float_literal] = ACTIONS(2581), }, [STATE(710)] = { [sym_line_comment] = STATE(710), [sym_block_comment] = STATE(710), - [ts_builtin_sym_end] = ACTIONS(2754), - [sym_identifier] = ACTIONS(2756), - [anon_sym_SEMI] = ACTIONS(2754), - [anon_sym_macro_rules_BANG] = ACTIONS(2754), - [anon_sym_LPAREN] = ACTIONS(2754), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_RBRACE] = ACTIONS(2754), - [anon_sym_STAR] = ACTIONS(2754), - [anon_sym_u8] = ACTIONS(2756), - [anon_sym_i8] = ACTIONS(2756), - [anon_sym_u16] = ACTIONS(2756), - [anon_sym_i16] = ACTIONS(2756), - [anon_sym_u32] = ACTIONS(2756), - [anon_sym_i32] = ACTIONS(2756), - [anon_sym_u64] = ACTIONS(2756), - [anon_sym_i64] = ACTIONS(2756), - [anon_sym_u128] = ACTIONS(2756), - [anon_sym_i128] = ACTIONS(2756), - [anon_sym_isize] = ACTIONS(2756), - [anon_sym_usize] = ACTIONS(2756), - [anon_sym_f32] = ACTIONS(2756), - [anon_sym_f64] = ACTIONS(2756), - [anon_sym_bool] = ACTIONS(2756), - [anon_sym_str] = ACTIONS(2756), - [anon_sym_char] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2754), - [anon_sym_BANG] = ACTIONS(2754), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_PIPE] = ACTIONS(2754), - [anon_sym_LT] = ACTIONS(2754), - [anon_sym_DOT_DOT] = ACTIONS(2754), - [anon_sym_COLON_COLON] = ACTIONS(2754), - [anon_sym_POUND] = ACTIONS(2754), - [anon_sym_SQUOTE] = ACTIONS(2756), - [anon_sym_async] = ACTIONS(2756), - [anon_sym_break] = ACTIONS(2756), - [anon_sym_const] = ACTIONS(2756), - [anon_sym_continue] = ACTIONS(2756), - [anon_sym_default] = ACTIONS(2756), - [anon_sym_enum] = ACTIONS(2756), - [anon_sym_fn] = ACTIONS(2756), - [anon_sym_for] = ACTIONS(2756), - [anon_sym_gen] = ACTIONS(2756), - [anon_sym_if] = ACTIONS(2756), - [anon_sym_impl] = ACTIONS(2756), - [anon_sym_let] = ACTIONS(2756), - [anon_sym_loop] = ACTIONS(2756), - [anon_sym_match] = ACTIONS(2756), - [anon_sym_mod] = ACTIONS(2756), - [anon_sym_pub] = ACTIONS(2756), - [anon_sym_return] = ACTIONS(2756), - [anon_sym_static] = ACTIONS(2756), - [anon_sym_struct] = ACTIONS(2756), - [anon_sym_trait] = ACTIONS(2756), - [anon_sym_type] = ACTIONS(2756), - [anon_sym_union] = ACTIONS(2756), - [anon_sym_unsafe] = ACTIONS(2756), - [anon_sym_use] = ACTIONS(2756), - [anon_sym_while] = ACTIONS(2756), - [anon_sym_extern] = ACTIONS(2756), - [anon_sym_yield] = ACTIONS(2756), - [anon_sym_move] = ACTIONS(2756), - [anon_sym_try] = ACTIONS(2756), - [sym_integer_literal] = ACTIONS(2754), - [aux_sym_string_literal_token1] = ACTIONS(2754), - [sym_char_literal] = ACTIONS(2754), - [anon_sym_true] = ACTIONS(2756), - [anon_sym_false] = ACTIONS(2756), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2756), - [sym_super] = ACTIONS(2756), - [sym_crate] = ACTIONS(2756), - [sym_metavariable] = ACTIONS(2754), - [sym__raw_string_literal_start] = ACTIONS(2754), - [sym_float_literal] = ACTIONS(2754), + [ts_builtin_sym_end] = ACTIONS(2585), + [sym_identifier] = ACTIONS(2587), + [anon_sym_SEMI] = ACTIONS(2585), + [anon_sym_macro_rules_BANG] = ACTIONS(2585), + [anon_sym_LPAREN] = ACTIONS(2585), + [anon_sym_LBRACK] = ACTIONS(2585), + [anon_sym_LBRACE] = ACTIONS(2585), + [anon_sym_RBRACE] = ACTIONS(2585), + [anon_sym_STAR] = ACTIONS(2585), + [anon_sym_u8] = ACTIONS(2587), + [anon_sym_i8] = ACTIONS(2587), + [anon_sym_u16] = ACTIONS(2587), + [anon_sym_i16] = ACTIONS(2587), + [anon_sym_u32] = ACTIONS(2587), + [anon_sym_i32] = ACTIONS(2587), + [anon_sym_u64] = ACTIONS(2587), + [anon_sym_i64] = ACTIONS(2587), + [anon_sym_u128] = ACTIONS(2587), + [anon_sym_i128] = ACTIONS(2587), + [anon_sym_isize] = ACTIONS(2587), + [anon_sym_usize] = ACTIONS(2587), + [anon_sym_f32] = ACTIONS(2587), + [anon_sym_f64] = ACTIONS(2587), + [anon_sym_bool] = ACTIONS(2587), + [anon_sym_str] = ACTIONS(2587), + [anon_sym_char] = ACTIONS(2587), + [anon_sym_DASH] = ACTIONS(2585), + [anon_sym_BANG] = ACTIONS(2585), + [anon_sym_AMP] = ACTIONS(2585), + [anon_sym_PIPE] = ACTIONS(2585), + [anon_sym_LT] = ACTIONS(2585), + [anon_sym_DOT_DOT] = ACTIONS(2585), + [anon_sym_COLON_COLON] = ACTIONS(2585), + [anon_sym_POUND] = ACTIONS(2585), + [anon_sym_SQUOTE] = ACTIONS(2587), + [anon_sym_async] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(2587), + [anon_sym_const] = ACTIONS(2587), + [anon_sym_continue] = ACTIONS(2587), + [anon_sym_default] = ACTIONS(2587), + [anon_sym_enum] = ACTIONS(2587), + [anon_sym_fn] = ACTIONS(2587), + [anon_sym_for] = ACTIONS(2587), + [anon_sym_gen] = ACTIONS(2587), + [anon_sym_if] = ACTIONS(2587), + [anon_sym_impl] = ACTIONS(2587), + [anon_sym_let] = ACTIONS(2587), + [anon_sym_loop] = ACTIONS(2587), + [anon_sym_match] = ACTIONS(2587), + [anon_sym_mod] = ACTIONS(2587), + [anon_sym_pub] = ACTIONS(2587), + [anon_sym_return] = ACTIONS(2587), + [anon_sym_static] = ACTIONS(2587), + [anon_sym_struct] = ACTIONS(2587), + [anon_sym_trait] = ACTIONS(2587), + [anon_sym_type] = ACTIONS(2587), + [anon_sym_union] = ACTIONS(2587), + [anon_sym_unsafe] = ACTIONS(2587), + [anon_sym_use] = ACTIONS(2587), + [anon_sym_while] = ACTIONS(2587), + [anon_sym_extern] = ACTIONS(2587), + [anon_sym_yield] = ACTIONS(2587), + [anon_sym_move] = ACTIONS(2587), + [anon_sym_try] = ACTIONS(2587), + [sym_integer_literal] = ACTIONS(2585), + [aux_sym_string_literal_token1] = ACTIONS(2585), + [sym_char_literal] = ACTIONS(2585), + [anon_sym_true] = ACTIONS(2587), + [anon_sym_false] = ACTIONS(2587), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2587), + [sym_super] = ACTIONS(2587), + [sym_crate] = ACTIONS(2587), + [sym_metavariable] = ACTIONS(2585), + [sym__raw_string_literal_start] = ACTIONS(2585), + [sym_float_literal] = ACTIONS(2585), }, [STATE(711)] = { [sym_line_comment] = STATE(711), [sym_block_comment] = STATE(711), - [ts_builtin_sym_end] = ACTIONS(2758), - [sym_identifier] = ACTIONS(2760), - [anon_sym_SEMI] = ACTIONS(2758), - [anon_sym_macro_rules_BANG] = ACTIONS(2758), - [anon_sym_LPAREN] = ACTIONS(2758), - [anon_sym_LBRACK] = ACTIONS(2758), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_RBRACE] = ACTIONS(2758), - [anon_sym_STAR] = ACTIONS(2758), - [anon_sym_u8] = ACTIONS(2760), - [anon_sym_i8] = ACTIONS(2760), - [anon_sym_u16] = ACTIONS(2760), - [anon_sym_i16] = ACTIONS(2760), - [anon_sym_u32] = ACTIONS(2760), - [anon_sym_i32] = ACTIONS(2760), - [anon_sym_u64] = ACTIONS(2760), - [anon_sym_i64] = ACTIONS(2760), - [anon_sym_u128] = ACTIONS(2760), - [anon_sym_i128] = ACTIONS(2760), - [anon_sym_isize] = ACTIONS(2760), - [anon_sym_usize] = ACTIONS(2760), - [anon_sym_f32] = ACTIONS(2760), - [anon_sym_f64] = ACTIONS(2760), - [anon_sym_bool] = ACTIONS(2760), - [anon_sym_str] = ACTIONS(2760), - [anon_sym_char] = ACTIONS(2760), - [anon_sym_DASH] = ACTIONS(2758), - [anon_sym_BANG] = ACTIONS(2758), - [anon_sym_AMP] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(2758), - [anon_sym_LT] = ACTIONS(2758), - [anon_sym_DOT_DOT] = ACTIONS(2758), - [anon_sym_COLON_COLON] = ACTIONS(2758), - [anon_sym_POUND] = ACTIONS(2758), - [anon_sym_SQUOTE] = ACTIONS(2760), - [anon_sym_async] = ACTIONS(2760), - [anon_sym_break] = ACTIONS(2760), - [anon_sym_const] = ACTIONS(2760), - [anon_sym_continue] = ACTIONS(2760), - [anon_sym_default] = ACTIONS(2760), - [anon_sym_enum] = ACTIONS(2760), - [anon_sym_fn] = ACTIONS(2760), - [anon_sym_for] = ACTIONS(2760), - [anon_sym_gen] = ACTIONS(2760), - [anon_sym_if] = ACTIONS(2760), - [anon_sym_impl] = ACTIONS(2760), - [anon_sym_let] = ACTIONS(2760), - [anon_sym_loop] = ACTIONS(2760), - [anon_sym_match] = ACTIONS(2760), - [anon_sym_mod] = ACTIONS(2760), - [anon_sym_pub] = ACTIONS(2760), - [anon_sym_return] = ACTIONS(2760), - [anon_sym_static] = ACTIONS(2760), - [anon_sym_struct] = ACTIONS(2760), - [anon_sym_trait] = ACTIONS(2760), - [anon_sym_type] = ACTIONS(2760), - [anon_sym_union] = ACTIONS(2760), - [anon_sym_unsafe] = ACTIONS(2760), - [anon_sym_use] = ACTIONS(2760), - [anon_sym_while] = ACTIONS(2760), - [anon_sym_extern] = ACTIONS(2760), - [anon_sym_yield] = ACTIONS(2760), - [anon_sym_move] = ACTIONS(2760), - [anon_sym_try] = ACTIONS(2760), - [sym_integer_literal] = ACTIONS(2758), - [aux_sym_string_literal_token1] = ACTIONS(2758), - [sym_char_literal] = ACTIONS(2758), - [anon_sym_true] = ACTIONS(2760), - [anon_sym_false] = ACTIONS(2760), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2760), - [sym_super] = ACTIONS(2760), - [sym_crate] = ACTIONS(2760), - [sym_metavariable] = ACTIONS(2758), - [sym__raw_string_literal_start] = ACTIONS(2758), - [sym_float_literal] = ACTIONS(2758), + [ts_builtin_sym_end] = ACTIONS(2589), + [sym_identifier] = ACTIONS(2591), + [anon_sym_SEMI] = ACTIONS(2589), + [anon_sym_macro_rules_BANG] = ACTIONS(2589), + [anon_sym_LPAREN] = ACTIONS(2589), + [anon_sym_LBRACK] = ACTIONS(2589), + [anon_sym_LBRACE] = ACTIONS(2589), + [anon_sym_RBRACE] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(2589), + [anon_sym_u8] = ACTIONS(2591), + [anon_sym_i8] = ACTIONS(2591), + [anon_sym_u16] = ACTIONS(2591), + [anon_sym_i16] = ACTIONS(2591), + [anon_sym_u32] = ACTIONS(2591), + [anon_sym_i32] = ACTIONS(2591), + [anon_sym_u64] = ACTIONS(2591), + [anon_sym_i64] = ACTIONS(2591), + [anon_sym_u128] = ACTIONS(2591), + [anon_sym_i128] = ACTIONS(2591), + [anon_sym_isize] = ACTIONS(2591), + [anon_sym_usize] = ACTIONS(2591), + [anon_sym_f32] = ACTIONS(2591), + [anon_sym_f64] = ACTIONS(2591), + [anon_sym_bool] = ACTIONS(2591), + [anon_sym_str] = ACTIONS(2591), + [anon_sym_char] = ACTIONS(2591), + [anon_sym_DASH] = ACTIONS(2589), + [anon_sym_BANG] = ACTIONS(2589), + [anon_sym_AMP] = ACTIONS(2589), + [anon_sym_PIPE] = ACTIONS(2589), + [anon_sym_LT] = ACTIONS(2589), + [anon_sym_DOT_DOT] = ACTIONS(2589), + [anon_sym_COLON_COLON] = ACTIONS(2589), + [anon_sym_POUND] = ACTIONS(2589), + [anon_sym_SQUOTE] = ACTIONS(2591), + [anon_sym_async] = ACTIONS(2591), + [anon_sym_break] = ACTIONS(2591), + [anon_sym_const] = ACTIONS(2591), + [anon_sym_continue] = ACTIONS(2591), + [anon_sym_default] = ACTIONS(2591), + [anon_sym_enum] = ACTIONS(2591), + [anon_sym_fn] = ACTIONS(2591), + [anon_sym_for] = ACTIONS(2591), + [anon_sym_gen] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(2591), + [anon_sym_impl] = ACTIONS(2591), + [anon_sym_let] = ACTIONS(2591), + [anon_sym_loop] = ACTIONS(2591), + [anon_sym_match] = ACTIONS(2591), + [anon_sym_mod] = ACTIONS(2591), + [anon_sym_pub] = ACTIONS(2591), + [anon_sym_return] = ACTIONS(2591), + [anon_sym_static] = ACTIONS(2591), + [anon_sym_struct] = ACTIONS(2591), + [anon_sym_trait] = ACTIONS(2591), + [anon_sym_type] = ACTIONS(2591), + [anon_sym_union] = ACTIONS(2591), + [anon_sym_unsafe] = ACTIONS(2591), + [anon_sym_use] = ACTIONS(2591), + [anon_sym_while] = ACTIONS(2591), + [anon_sym_extern] = ACTIONS(2591), + [anon_sym_yield] = ACTIONS(2591), + [anon_sym_move] = ACTIONS(2591), + [anon_sym_try] = ACTIONS(2591), + [sym_integer_literal] = ACTIONS(2589), + [aux_sym_string_literal_token1] = ACTIONS(2589), + [sym_char_literal] = ACTIONS(2589), + [anon_sym_true] = ACTIONS(2591), + [anon_sym_false] = ACTIONS(2591), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2591), + [sym_super] = ACTIONS(2591), + [sym_crate] = ACTIONS(2591), + [sym_metavariable] = ACTIONS(2589), + [sym__raw_string_literal_start] = ACTIONS(2589), + [sym_float_literal] = ACTIONS(2589), }, [STATE(712)] = { [sym_line_comment] = STATE(712), [sym_block_comment] = STATE(712), - [ts_builtin_sym_end] = ACTIONS(2762), - [sym_identifier] = ACTIONS(2764), - [anon_sym_SEMI] = ACTIONS(2762), - [anon_sym_macro_rules_BANG] = ACTIONS(2762), - [anon_sym_LPAREN] = ACTIONS(2762), - [anon_sym_LBRACK] = ACTIONS(2762), - [anon_sym_LBRACE] = ACTIONS(2762), - [anon_sym_RBRACE] = ACTIONS(2762), - [anon_sym_STAR] = ACTIONS(2762), - [anon_sym_u8] = ACTIONS(2764), - [anon_sym_i8] = ACTIONS(2764), - [anon_sym_u16] = ACTIONS(2764), - [anon_sym_i16] = ACTIONS(2764), - [anon_sym_u32] = ACTIONS(2764), - [anon_sym_i32] = ACTIONS(2764), - [anon_sym_u64] = ACTIONS(2764), - [anon_sym_i64] = ACTIONS(2764), - [anon_sym_u128] = ACTIONS(2764), - [anon_sym_i128] = ACTIONS(2764), - [anon_sym_isize] = ACTIONS(2764), - [anon_sym_usize] = ACTIONS(2764), - [anon_sym_f32] = ACTIONS(2764), - [anon_sym_f64] = ACTIONS(2764), - [anon_sym_bool] = ACTIONS(2764), - [anon_sym_str] = ACTIONS(2764), - [anon_sym_char] = ACTIONS(2764), - [anon_sym_DASH] = ACTIONS(2762), - [anon_sym_BANG] = ACTIONS(2762), - [anon_sym_AMP] = ACTIONS(2762), - [anon_sym_PIPE] = ACTIONS(2762), - [anon_sym_LT] = ACTIONS(2762), - [anon_sym_DOT_DOT] = ACTIONS(2762), - [anon_sym_COLON_COLON] = ACTIONS(2762), - [anon_sym_POUND] = ACTIONS(2762), - [anon_sym_SQUOTE] = ACTIONS(2764), - [anon_sym_async] = ACTIONS(2764), - [anon_sym_break] = ACTIONS(2764), - [anon_sym_const] = ACTIONS(2764), - [anon_sym_continue] = ACTIONS(2764), - [anon_sym_default] = ACTIONS(2764), - [anon_sym_enum] = ACTIONS(2764), - [anon_sym_fn] = ACTIONS(2764), - [anon_sym_for] = ACTIONS(2764), - [anon_sym_gen] = ACTIONS(2764), - [anon_sym_if] = ACTIONS(2764), - [anon_sym_impl] = ACTIONS(2764), - [anon_sym_let] = ACTIONS(2764), - [anon_sym_loop] = ACTIONS(2764), - [anon_sym_match] = ACTIONS(2764), - [anon_sym_mod] = ACTIONS(2764), - [anon_sym_pub] = ACTIONS(2764), - [anon_sym_return] = ACTIONS(2764), - [anon_sym_static] = ACTIONS(2764), - [anon_sym_struct] = ACTIONS(2764), - [anon_sym_trait] = ACTIONS(2764), - [anon_sym_type] = ACTIONS(2764), - [anon_sym_union] = ACTIONS(2764), - [anon_sym_unsafe] = ACTIONS(2764), - [anon_sym_use] = ACTIONS(2764), - [anon_sym_while] = ACTIONS(2764), - [anon_sym_extern] = ACTIONS(2764), - [anon_sym_yield] = ACTIONS(2764), - [anon_sym_move] = ACTIONS(2764), - [anon_sym_try] = ACTIONS(2764), - [sym_integer_literal] = ACTIONS(2762), - [aux_sym_string_literal_token1] = ACTIONS(2762), - [sym_char_literal] = ACTIONS(2762), - [anon_sym_true] = ACTIONS(2764), - [anon_sym_false] = ACTIONS(2764), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2764), - [sym_super] = ACTIONS(2764), - [sym_crate] = ACTIONS(2764), - [sym_metavariable] = ACTIONS(2762), - [sym__raw_string_literal_start] = ACTIONS(2762), - [sym_float_literal] = ACTIONS(2762), + [ts_builtin_sym_end] = ACTIONS(2593), + [sym_identifier] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2593), + [anon_sym_macro_rules_BANG] = ACTIONS(2593), + [anon_sym_LPAREN] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(2593), + [anon_sym_LBRACE] = ACTIONS(2593), + [anon_sym_RBRACE] = ACTIONS(2593), + [anon_sym_STAR] = ACTIONS(2593), + [anon_sym_u8] = ACTIONS(2595), + [anon_sym_i8] = ACTIONS(2595), + [anon_sym_u16] = ACTIONS(2595), + [anon_sym_i16] = ACTIONS(2595), + [anon_sym_u32] = ACTIONS(2595), + [anon_sym_i32] = ACTIONS(2595), + [anon_sym_u64] = ACTIONS(2595), + [anon_sym_i64] = ACTIONS(2595), + [anon_sym_u128] = ACTIONS(2595), + [anon_sym_i128] = ACTIONS(2595), + [anon_sym_isize] = ACTIONS(2595), + [anon_sym_usize] = ACTIONS(2595), + [anon_sym_f32] = ACTIONS(2595), + [anon_sym_f64] = ACTIONS(2595), + [anon_sym_bool] = ACTIONS(2595), + [anon_sym_str] = ACTIONS(2595), + [anon_sym_char] = ACTIONS(2595), + [anon_sym_DASH] = ACTIONS(2593), + [anon_sym_BANG] = ACTIONS(2593), + [anon_sym_AMP] = ACTIONS(2593), + [anon_sym_PIPE] = ACTIONS(2593), + [anon_sym_LT] = ACTIONS(2593), + [anon_sym_DOT_DOT] = ACTIONS(2593), + [anon_sym_COLON_COLON] = ACTIONS(2593), + [anon_sym_POUND] = ACTIONS(2593), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_async] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_fn] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_gen] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_impl] = ACTIONS(2595), + [anon_sym_let] = ACTIONS(2595), + [anon_sym_loop] = ACTIONS(2595), + [anon_sym_match] = ACTIONS(2595), + [anon_sym_mod] = ACTIONS(2595), + [anon_sym_pub] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_trait] = ACTIONS(2595), + [anon_sym_type] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_unsafe] = ACTIONS(2595), + [anon_sym_use] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym_yield] = ACTIONS(2595), + [anon_sym_move] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [sym_integer_literal] = ACTIONS(2593), + [aux_sym_string_literal_token1] = ACTIONS(2593), + [sym_char_literal] = ACTIONS(2593), + [anon_sym_true] = ACTIONS(2595), + [anon_sym_false] = ACTIONS(2595), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2595), + [sym_super] = ACTIONS(2595), + [sym_crate] = ACTIONS(2595), + [sym_metavariable] = ACTIONS(2593), + [sym__raw_string_literal_start] = ACTIONS(2593), + [sym_float_literal] = ACTIONS(2593), }, [STATE(713)] = { [sym_line_comment] = STATE(713), [sym_block_comment] = STATE(713), - [ts_builtin_sym_end] = ACTIONS(2766), - [sym_identifier] = ACTIONS(2768), - [anon_sym_SEMI] = ACTIONS(2766), - [anon_sym_macro_rules_BANG] = ACTIONS(2766), - [anon_sym_LPAREN] = ACTIONS(2766), - [anon_sym_LBRACK] = ACTIONS(2766), - [anon_sym_LBRACE] = ACTIONS(2766), - [anon_sym_RBRACE] = ACTIONS(2766), - [anon_sym_STAR] = ACTIONS(2766), - [anon_sym_u8] = ACTIONS(2768), - [anon_sym_i8] = ACTIONS(2768), - [anon_sym_u16] = ACTIONS(2768), - [anon_sym_i16] = ACTIONS(2768), - [anon_sym_u32] = ACTIONS(2768), - [anon_sym_i32] = ACTIONS(2768), - [anon_sym_u64] = ACTIONS(2768), - [anon_sym_i64] = ACTIONS(2768), - [anon_sym_u128] = ACTIONS(2768), - [anon_sym_i128] = ACTIONS(2768), - [anon_sym_isize] = ACTIONS(2768), - [anon_sym_usize] = ACTIONS(2768), - [anon_sym_f32] = ACTIONS(2768), - [anon_sym_f64] = ACTIONS(2768), - [anon_sym_bool] = ACTIONS(2768), - [anon_sym_str] = ACTIONS(2768), - [anon_sym_char] = ACTIONS(2768), - [anon_sym_DASH] = ACTIONS(2766), - [anon_sym_BANG] = ACTIONS(2766), - [anon_sym_AMP] = ACTIONS(2766), - [anon_sym_PIPE] = ACTIONS(2766), - [anon_sym_LT] = ACTIONS(2766), - [anon_sym_DOT_DOT] = ACTIONS(2766), - [anon_sym_COLON_COLON] = ACTIONS(2766), - [anon_sym_POUND] = ACTIONS(2766), - [anon_sym_SQUOTE] = ACTIONS(2768), - [anon_sym_async] = ACTIONS(2768), - [anon_sym_break] = ACTIONS(2768), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_continue] = ACTIONS(2768), - [anon_sym_default] = ACTIONS(2768), - [anon_sym_enum] = ACTIONS(2768), - [anon_sym_fn] = ACTIONS(2768), - [anon_sym_for] = ACTIONS(2768), - [anon_sym_gen] = ACTIONS(2768), - [anon_sym_if] = ACTIONS(2768), - [anon_sym_impl] = ACTIONS(2768), - [anon_sym_let] = ACTIONS(2768), - [anon_sym_loop] = ACTIONS(2768), - [anon_sym_match] = ACTIONS(2768), - [anon_sym_mod] = ACTIONS(2768), - [anon_sym_pub] = ACTIONS(2768), - [anon_sym_return] = ACTIONS(2768), - [anon_sym_static] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2768), - [anon_sym_trait] = ACTIONS(2768), - [anon_sym_type] = ACTIONS(2768), - [anon_sym_union] = ACTIONS(2768), - [anon_sym_unsafe] = ACTIONS(2768), - [anon_sym_use] = ACTIONS(2768), - [anon_sym_while] = ACTIONS(2768), - [anon_sym_extern] = ACTIONS(2768), - [anon_sym_yield] = ACTIONS(2768), - [anon_sym_move] = ACTIONS(2768), - [anon_sym_try] = ACTIONS(2768), - [sym_integer_literal] = ACTIONS(2766), - [aux_sym_string_literal_token1] = ACTIONS(2766), - [sym_char_literal] = ACTIONS(2766), - [anon_sym_true] = ACTIONS(2768), - [anon_sym_false] = ACTIONS(2768), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2768), - [sym_super] = ACTIONS(2768), - [sym_crate] = ACTIONS(2768), - [sym_metavariable] = ACTIONS(2766), - [sym__raw_string_literal_start] = ACTIONS(2766), - [sym_float_literal] = ACTIONS(2766), + [ts_builtin_sym_end] = ACTIONS(2597), + [sym_identifier] = ACTIONS(2599), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_macro_rules_BANG] = ACTIONS(2597), + [anon_sym_LPAREN] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2597), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_u8] = ACTIONS(2599), + [anon_sym_i8] = ACTIONS(2599), + [anon_sym_u16] = ACTIONS(2599), + [anon_sym_i16] = ACTIONS(2599), + [anon_sym_u32] = ACTIONS(2599), + [anon_sym_i32] = ACTIONS(2599), + [anon_sym_u64] = ACTIONS(2599), + [anon_sym_i64] = ACTIONS(2599), + [anon_sym_u128] = ACTIONS(2599), + [anon_sym_i128] = ACTIONS(2599), + [anon_sym_isize] = ACTIONS(2599), + [anon_sym_usize] = ACTIONS(2599), + [anon_sym_f32] = ACTIONS(2599), + [anon_sym_f64] = ACTIONS(2599), + [anon_sym_bool] = ACTIONS(2599), + [anon_sym_str] = ACTIONS(2599), + [anon_sym_char] = ACTIONS(2599), + [anon_sym_DASH] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2597), + [anon_sym_PIPE] = ACTIONS(2597), + [anon_sym_LT] = ACTIONS(2597), + [anon_sym_DOT_DOT] = ACTIONS(2597), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_POUND] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2599), + [anon_sym_async] = ACTIONS(2599), + [anon_sym_break] = ACTIONS(2599), + [anon_sym_const] = ACTIONS(2599), + [anon_sym_continue] = ACTIONS(2599), + [anon_sym_default] = ACTIONS(2599), + [anon_sym_enum] = ACTIONS(2599), + [anon_sym_fn] = ACTIONS(2599), + [anon_sym_for] = ACTIONS(2599), + [anon_sym_gen] = ACTIONS(2599), + [anon_sym_if] = ACTIONS(2599), + [anon_sym_impl] = ACTIONS(2599), + [anon_sym_let] = ACTIONS(2599), + [anon_sym_loop] = ACTIONS(2599), + [anon_sym_match] = ACTIONS(2599), + [anon_sym_mod] = ACTIONS(2599), + [anon_sym_pub] = ACTIONS(2599), + [anon_sym_return] = ACTIONS(2599), + [anon_sym_static] = ACTIONS(2599), + [anon_sym_struct] = ACTIONS(2599), + [anon_sym_trait] = ACTIONS(2599), + [anon_sym_type] = ACTIONS(2599), + [anon_sym_union] = ACTIONS(2599), + [anon_sym_unsafe] = ACTIONS(2599), + [anon_sym_use] = ACTIONS(2599), + [anon_sym_while] = ACTIONS(2599), + [anon_sym_extern] = ACTIONS(2599), + [anon_sym_yield] = ACTIONS(2599), + [anon_sym_move] = ACTIONS(2599), + [anon_sym_try] = ACTIONS(2599), + [sym_integer_literal] = ACTIONS(2597), + [aux_sym_string_literal_token1] = ACTIONS(2597), + [sym_char_literal] = ACTIONS(2597), + [anon_sym_true] = ACTIONS(2599), + [anon_sym_false] = ACTIONS(2599), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2599), + [sym_super] = ACTIONS(2599), + [sym_crate] = ACTIONS(2599), + [sym_metavariable] = ACTIONS(2597), + [sym__raw_string_literal_start] = ACTIONS(2597), + [sym_float_literal] = ACTIONS(2597), }, [STATE(714)] = { [sym_line_comment] = STATE(714), [sym_block_comment] = STATE(714), - [ts_builtin_sym_end] = ACTIONS(2770), - [sym_identifier] = ACTIONS(2772), - [anon_sym_SEMI] = ACTIONS(2770), - [anon_sym_macro_rules_BANG] = ACTIONS(2770), - [anon_sym_LPAREN] = ACTIONS(2770), - [anon_sym_LBRACK] = ACTIONS(2770), - [anon_sym_LBRACE] = ACTIONS(2770), - [anon_sym_RBRACE] = ACTIONS(2770), - [anon_sym_STAR] = ACTIONS(2770), - [anon_sym_u8] = ACTIONS(2772), - [anon_sym_i8] = ACTIONS(2772), - [anon_sym_u16] = ACTIONS(2772), - [anon_sym_i16] = ACTIONS(2772), - [anon_sym_u32] = ACTIONS(2772), - [anon_sym_i32] = ACTIONS(2772), - [anon_sym_u64] = ACTIONS(2772), - [anon_sym_i64] = ACTIONS(2772), - [anon_sym_u128] = ACTIONS(2772), - [anon_sym_i128] = ACTIONS(2772), - [anon_sym_isize] = ACTIONS(2772), - [anon_sym_usize] = ACTIONS(2772), - [anon_sym_f32] = ACTIONS(2772), - [anon_sym_f64] = ACTIONS(2772), - [anon_sym_bool] = ACTIONS(2772), - [anon_sym_str] = ACTIONS(2772), - [anon_sym_char] = ACTIONS(2772), - [anon_sym_DASH] = ACTIONS(2770), - [anon_sym_BANG] = ACTIONS(2770), - [anon_sym_AMP] = ACTIONS(2770), - [anon_sym_PIPE] = ACTIONS(2770), - [anon_sym_LT] = ACTIONS(2770), - [anon_sym_DOT_DOT] = ACTIONS(2770), - [anon_sym_COLON_COLON] = ACTIONS(2770), - [anon_sym_POUND] = ACTIONS(2770), - [anon_sym_SQUOTE] = ACTIONS(2772), - [anon_sym_async] = ACTIONS(2772), - [anon_sym_break] = ACTIONS(2772), - [anon_sym_const] = ACTIONS(2772), - [anon_sym_continue] = ACTIONS(2772), - [anon_sym_default] = ACTIONS(2772), - [anon_sym_enum] = ACTIONS(2772), - [anon_sym_fn] = ACTIONS(2772), - [anon_sym_for] = ACTIONS(2772), - [anon_sym_gen] = ACTIONS(2772), - [anon_sym_if] = ACTIONS(2772), - [anon_sym_impl] = ACTIONS(2772), - [anon_sym_let] = ACTIONS(2772), - [anon_sym_loop] = ACTIONS(2772), - [anon_sym_match] = ACTIONS(2772), - [anon_sym_mod] = ACTIONS(2772), - [anon_sym_pub] = ACTIONS(2772), - [anon_sym_return] = ACTIONS(2772), - [anon_sym_static] = ACTIONS(2772), - [anon_sym_struct] = ACTIONS(2772), - [anon_sym_trait] = ACTIONS(2772), - [anon_sym_type] = ACTIONS(2772), - [anon_sym_union] = ACTIONS(2772), - [anon_sym_unsafe] = ACTIONS(2772), - [anon_sym_use] = ACTIONS(2772), - [anon_sym_while] = ACTIONS(2772), - [anon_sym_extern] = ACTIONS(2772), - [anon_sym_yield] = ACTIONS(2772), - [anon_sym_move] = ACTIONS(2772), - [anon_sym_try] = ACTIONS(2772), - [sym_integer_literal] = ACTIONS(2770), - [aux_sym_string_literal_token1] = ACTIONS(2770), - [sym_char_literal] = ACTIONS(2770), - [anon_sym_true] = ACTIONS(2772), - [anon_sym_false] = ACTIONS(2772), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2772), - [sym_super] = ACTIONS(2772), - [sym_crate] = ACTIONS(2772), - [sym_metavariable] = ACTIONS(2770), - [sym__raw_string_literal_start] = ACTIONS(2770), - [sym_float_literal] = ACTIONS(2770), + [ts_builtin_sym_end] = ACTIONS(2601), + [sym_identifier] = ACTIONS(2603), + [anon_sym_SEMI] = ACTIONS(2601), + [anon_sym_macro_rules_BANG] = ACTIONS(2601), + [anon_sym_LPAREN] = ACTIONS(2601), + [anon_sym_LBRACK] = ACTIONS(2601), + [anon_sym_LBRACE] = ACTIONS(2601), + [anon_sym_RBRACE] = ACTIONS(2601), + [anon_sym_STAR] = ACTIONS(2601), + [anon_sym_u8] = ACTIONS(2603), + [anon_sym_i8] = ACTIONS(2603), + [anon_sym_u16] = ACTIONS(2603), + [anon_sym_i16] = ACTIONS(2603), + [anon_sym_u32] = ACTIONS(2603), + [anon_sym_i32] = ACTIONS(2603), + [anon_sym_u64] = ACTIONS(2603), + [anon_sym_i64] = ACTIONS(2603), + [anon_sym_u128] = ACTIONS(2603), + [anon_sym_i128] = ACTIONS(2603), + [anon_sym_isize] = ACTIONS(2603), + [anon_sym_usize] = ACTIONS(2603), + [anon_sym_f32] = ACTIONS(2603), + [anon_sym_f64] = ACTIONS(2603), + [anon_sym_bool] = ACTIONS(2603), + [anon_sym_str] = ACTIONS(2603), + [anon_sym_char] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2601), + [anon_sym_BANG] = ACTIONS(2601), + [anon_sym_AMP] = ACTIONS(2601), + [anon_sym_PIPE] = ACTIONS(2601), + [anon_sym_LT] = ACTIONS(2601), + [anon_sym_DOT_DOT] = ACTIONS(2601), + [anon_sym_COLON_COLON] = ACTIONS(2601), + [anon_sym_POUND] = ACTIONS(2601), + [anon_sym_SQUOTE] = ACTIONS(2603), + [anon_sym_async] = ACTIONS(2603), + [anon_sym_break] = ACTIONS(2603), + [anon_sym_const] = ACTIONS(2603), + [anon_sym_continue] = ACTIONS(2603), + [anon_sym_default] = ACTIONS(2603), + [anon_sym_enum] = ACTIONS(2603), + [anon_sym_fn] = ACTIONS(2603), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_gen] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_impl] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_loop] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_mod] = ACTIONS(2603), + [anon_sym_pub] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_static] = ACTIONS(2603), + [anon_sym_struct] = ACTIONS(2603), + [anon_sym_trait] = ACTIONS(2603), + [anon_sym_type] = ACTIONS(2603), + [anon_sym_union] = ACTIONS(2603), + [anon_sym_unsafe] = ACTIONS(2603), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_extern] = ACTIONS(2603), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_move] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [sym_integer_literal] = ACTIONS(2601), + [aux_sym_string_literal_token1] = ACTIONS(2601), + [sym_char_literal] = ACTIONS(2601), + [anon_sym_true] = ACTIONS(2603), + [anon_sym_false] = ACTIONS(2603), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2603), + [sym_super] = ACTIONS(2603), + [sym_crate] = ACTIONS(2603), + [sym_metavariable] = ACTIONS(2601), + [sym__raw_string_literal_start] = ACTIONS(2601), + [sym_float_literal] = ACTIONS(2601), }, [STATE(715)] = { [sym_line_comment] = STATE(715), [sym_block_comment] = STATE(715), - [ts_builtin_sym_end] = ACTIONS(2774), - [sym_identifier] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2774), - [anon_sym_macro_rules_BANG] = ACTIONS(2774), - [anon_sym_LPAREN] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2774), - [anon_sym_u8] = ACTIONS(2776), - [anon_sym_i8] = ACTIONS(2776), - [anon_sym_u16] = ACTIONS(2776), - [anon_sym_i16] = ACTIONS(2776), - [anon_sym_u32] = ACTIONS(2776), - [anon_sym_i32] = ACTIONS(2776), - [anon_sym_u64] = ACTIONS(2776), - [anon_sym_i64] = ACTIONS(2776), - [anon_sym_u128] = ACTIONS(2776), - [anon_sym_i128] = ACTIONS(2776), - [anon_sym_isize] = ACTIONS(2776), - [anon_sym_usize] = ACTIONS(2776), - [anon_sym_f32] = ACTIONS(2776), - [anon_sym_f64] = ACTIONS(2776), - [anon_sym_bool] = ACTIONS(2776), - [anon_sym_str] = ACTIONS(2776), - [anon_sym_char] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_BANG] = ACTIONS(2774), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_PIPE] = ACTIONS(2774), - [anon_sym_LT] = ACTIONS(2774), - [anon_sym_DOT_DOT] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2774), - [anon_sym_POUND] = ACTIONS(2774), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_async] = ACTIONS(2776), - [anon_sym_break] = ACTIONS(2776), - [anon_sym_const] = ACTIONS(2776), - [anon_sym_continue] = ACTIONS(2776), - [anon_sym_default] = ACTIONS(2776), - [anon_sym_enum] = ACTIONS(2776), - [anon_sym_fn] = ACTIONS(2776), - [anon_sym_for] = ACTIONS(2776), - [anon_sym_gen] = ACTIONS(2776), - [anon_sym_if] = ACTIONS(2776), - [anon_sym_impl] = ACTIONS(2776), - [anon_sym_let] = ACTIONS(2776), - [anon_sym_loop] = ACTIONS(2776), - [anon_sym_match] = ACTIONS(2776), - [anon_sym_mod] = ACTIONS(2776), - [anon_sym_pub] = ACTIONS(2776), - [anon_sym_return] = ACTIONS(2776), - [anon_sym_static] = ACTIONS(2776), - [anon_sym_struct] = ACTIONS(2776), - [anon_sym_trait] = ACTIONS(2776), - [anon_sym_type] = ACTIONS(2776), - [anon_sym_union] = ACTIONS(2776), - [anon_sym_unsafe] = ACTIONS(2776), - [anon_sym_use] = ACTIONS(2776), - [anon_sym_while] = ACTIONS(2776), - [anon_sym_extern] = ACTIONS(2776), - [anon_sym_yield] = ACTIONS(2776), - [anon_sym_move] = ACTIONS(2776), - [anon_sym_try] = ACTIONS(2776), - [sym_integer_literal] = ACTIONS(2774), - [aux_sym_string_literal_token1] = ACTIONS(2774), - [sym_char_literal] = ACTIONS(2774), - [anon_sym_true] = ACTIONS(2776), - [anon_sym_false] = ACTIONS(2776), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2776), - [sym_super] = ACTIONS(2776), - [sym_crate] = ACTIONS(2776), - [sym_metavariable] = ACTIONS(2774), - [sym__raw_string_literal_start] = ACTIONS(2774), - [sym_float_literal] = ACTIONS(2774), + [ts_builtin_sym_end] = ACTIONS(2605), + [sym_identifier] = ACTIONS(2607), + [anon_sym_SEMI] = ACTIONS(2605), + [anon_sym_macro_rules_BANG] = ACTIONS(2605), + [anon_sym_LPAREN] = ACTIONS(2605), + [anon_sym_LBRACK] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2605), + [anon_sym_RBRACE] = ACTIONS(2605), + [anon_sym_STAR] = ACTIONS(2605), + [anon_sym_u8] = ACTIONS(2607), + [anon_sym_i8] = ACTIONS(2607), + [anon_sym_u16] = ACTIONS(2607), + [anon_sym_i16] = ACTIONS(2607), + [anon_sym_u32] = ACTIONS(2607), + [anon_sym_i32] = ACTIONS(2607), + [anon_sym_u64] = ACTIONS(2607), + [anon_sym_i64] = ACTIONS(2607), + [anon_sym_u128] = ACTIONS(2607), + [anon_sym_i128] = ACTIONS(2607), + [anon_sym_isize] = ACTIONS(2607), + [anon_sym_usize] = ACTIONS(2607), + [anon_sym_f32] = ACTIONS(2607), + [anon_sym_f64] = ACTIONS(2607), + [anon_sym_bool] = ACTIONS(2607), + [anon_sym_str] = ACTIONS(2607), + [anon_sym_char] = ACTIONS(2607), + [anon_sym_DASH] = ACTIONS(2605), + [anon_sym_BANG] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2605), + [anon_sym_PIPE] = ACTIONS(2605), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_DOT_DOT] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_POUND] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2607), + [anon_sym_async] = ACTIONS(2607), + [anon_sym_break] = ACTIONS(2607), + [anon_sym_const] = ACTIONS(2607), + [anon_sym_continue] = ACTIONS(2607), + [anon_sym_default] = ACTIONS(2607), + [anon_sym_enum] = ACTIONS(2607), + [anon_sym_fn] = ACTIONS(2607), + [anon_sym_for] = ACTIONS(2607), + [anon_sym_gen] = ACTIONS(2607), + [anon_sym_if] = ACTIONS(2607), + [anon_sym_impl] = ACTIONS(2607), + [anon_sym_let] = ACTIONS(2607), + [anon_sym_loop] = ACTIONS(2607), + [anon_sym_match] = ACTIONS(2607), + [anon_sym_mod] = ACTIONS(2607), + [anon_sym_pub] = ACTIONS(2607), + [anon_sym_return] = ACTIONS(2607), + [anon_sym_static] = ACTIONS(2607), + [anon_sym_struct] = ACTIONS(2607), + [anon_sym_trait] = ACTIONS(2607), + [anon_sym_type] = ACTIONS(2607), + [anon_sym_union] = ACTIONS(2607), + [anon_sym_unsafe] = ACTIONS(2607), + [anon_sym_use] = ACTIONS(2607), + [anon_sym_while] = ACTIONS(2607), + [anon_sym_extern] = ACTIONS(2607), + [anon_sym_yield] = ACTIONS(2607), + [anon_sym_move] = ACTIONS(2607), + [anon_sym_try] = ACTIONS(2607), + [sym_integer_literal] = ACTIONS(2605), + [aux_sym_string_literal_token1] = ACTIONS(2605), + [sym_char_literal] = ACTIONS(2605), + [anon_sym_true] = ACTIONS(2607), + [anon_sym_false] = ACTIONS(2607), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2607), + [sym_super] = ACTIONS(2607), + [sym_crate] = ACTIONS(2607), + [sym_metavariable] = ACTIONS(2605), + [sym__raw_string_literal_start] = ACTIONS(2605), + [sym_float_literal] = ACTIONS(2605), }, [STATE(716)] = { [sym_line_comment] = STATE(716), [sym_block_comment] = STATE(716), - [ts_builtin_sym_end] = ACTIONS(2778), - [sym_identifier] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2778), - [anon_sym_macro_rules_BANG] = ACTIONS(2778), - [anon_sym_LPAREN] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2778), - [anon_sym_RBRACE] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2778), - [anon_sym_u8] = ACTIONS(2780), - [anon_sym_i8] = ACTIONS(2780), - [anon_sym_u16] = ACTIONS(2780), - [anon_sym_i16] = ACTIONS(2780), - [anon_sym_u32] = ACTIONS(2780), - [anon_sym_i32] = ACTIONS(2780), - [anon_sym_u64] = ACTIONS(2780), - [anon_sym_i64] = ACTIONS(2780), - [anon_sym_u128] = ACTIONS(2780), - [anon_sym_i128] = ACTIONS(2780), - [anon_sym_isize] = ACTIONS(2780), - [anon_sym_usize] = ACTIONS(2780), - [anon_sym_f32] = ACTIONS(2780), - [anon_sym_f64] = ACTIONS(2780), - [anon_sym_bool] = ACTIONS(2780), - [anon_sym_str] = ACTIONS(2780), - [anon_sym_char] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_BANG] = ACTIONS(2778), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_PIPE] = ACTIONS(2778), - [anon_sym_LT] = ACTIONS(2778), - [anon_sym_DOT_DOT] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2778), - [anon_sym_POUND] = ACTIONS(2778), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_async] = ACTIONS(2780), - [anon_sym_break] = ACTIONS(2780), - [anon_sym_const] = ACTIONS(2780), - [anon_sym_continue] = ACTIONS(2780), - [anon_sym_default] = ACTIONS(2780), - [anon_sym_enum] = ACTIONS(2780), - [anon_sym_fn] = ACTIONS(2780), - [anon_sym_for] = ACTIONS(2780), - [anon_sym_gen] = ACTIONS(2780), - [anon_sym_if] = ACTIONS(2780), - [anon_sym_impl] = ACTIONS(2780), - [anon_sym_let] = ACTIONS(2780), - [anon_sym_loop] = ACTIONS(2780), - [anon_sym_match] = ACTIONS(2780), - [anon_sym_mod] = ACTIONS(2780), - [anon_sym_pub] = ACTIONS(2780), - [anon_sym_return] = ACTIONS(2780), - [anon_sym_static] = ACTIONS(2780), - [anon_sym_struct] = ACTIONS(2780), - [anon_sym_trait] = ACTIONS(2780), - [anon_sym_type] = ACTIONS(2780), - [anon_sym_union] = ACTIONS(2780), - [anon_sym_unsafe] = ACTIONS(2780), - [anon_sym_use] = ACTIONS(2780), - [anon_sym_while] = ACTIONS(2780), - [anon_sym_extern] = ACTIONS(2780), - [anon_sym_yield] = ACTIONS(2780), - [anon_sym_move] = ACTIONS(2780), - [anon_sym_try] = ACTIONS(2780), - [sym_integer_literal] = ACTIONS(2778), - [aux_sym_string_literal_token1] = ACTIONS(2778), - [sym_char_literal] = ACTIONS(2778), - [anon_sym_true] = ACTIONS(2780), - [anon_sym_false] = ACTIONS(2780), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2780), - [sym_super] = ACTIONS(2780), - [sym_crate] = ACTIONS(2780), - [sym_metavariable] = ACTIONS(2778), - [sym__raw_string_literal_start] = ACTIONS(2778), - [sym_float_literal] = ACTIONS(2778), + [ts_builtin_sym_end] = ACTIONS(2609), + [sym_identifier] = ACTIONS(2611), + [anon_sym_SEMI] = ACTIONS(2609), + [anon_sym_macro_rules_BANG] = ACTIONS(2609), + [anon_sym_LPAREN] = ACTIONS(2609), + [anon_sym_LBRACK] = ACTIONS(2609), + [anon_sym_LBRACE] = ACTIONS(2609), + [anon_sym_RBRACE] = ACTIONS(2609), + [anon_sym_STAR] = ACTIONS(2609), + [anon_sym_u8] = ACTIONS(2611), + [anon_sym_i8] = ACTIONS(2611), + [anon_sym_u16] = ACTIONS(2611), + [anon_sym_i16] = ACTIONS(2611), + [anon_sym_u32] = ACTIONS(2611), + [anon_sym_i32] = ACTIONS(2611), + [anon_sym_u64] = ACTIONS(2611), + [anon_sym_i64] = ACTIONS(2611), + [anon_sym_u128] = ACTIONS(2611), + [anon_sym_i128] = ACTIONS(2611), + [anon_sym_isize] = ACTIONS(2611), + [anon_sym_usize] = ACTIONS(2611), + [anon_sym_f32] = ACTIONS(2611), + [anon_sym_f64] = ACTIONS(2611), + [anon_sym_bool] = ACTIONS(2611), + [anon_sym_str] = ACTIONS(2611), + [anon_sym_char] = ACTIONS(2611), + [anon_sym_DASH] = ACTIONS(2609), + [anon_sym_BANG] = ACTIONS(2609), + [anon_sym_AMP] = ACTIONS(2609), + [anon_sym_PIPE] = ACTIONS(2609), + [anon_sym_LT] = ACTIONS(2609), + [anon_sym_DOT_DOT] = ACTIONS(2609), + [anon_sym_COLON_COLON] = ACTIONS(2609), + [anon_sym_POUND] = ACTIONS(2609), + [anon_sym_SQUOTE] = ACTIONS(2611), + [anon_sym_async] = ACTIONS(2611), + [anon_sym_break] = ACTIONS(2611), + [anon_sym_const] = ACTIONS(2611), + [anon_sym_continue] = ACTIONS(2611), + [anon_sym_default] = ACTIONS(2611), + [anon_sym_enum] = ACTIONS(2611), + [anon_sym_fn] = ACTIONS(2611), + [anon_sym_for] = ACTIONS(2611), + [anon_sym_gen] = ACTIONS(2611), + [anon_sym_if] = ACTIONS(2611), + [anon_sym_impl] = ACTIONS(2611), + [anon_sym_let] = ACTIONS(2611), + [anon_sym_loop] = ACTIONS(2611), + [anon_sym_match] = ACTIONS(2611), + [anon_sym_mod] = ACTIONS(2611), + [anon_sym_pub] = ACTIONS(2611), + [anon_sym_return] = ACTIONS(2611), + [anon_sym_static] = ACTIONS(2611), + [anon_sym_struct] = ACTIONS(2611), + [anon_sym_trait] = ACTIONS(2611), + [anon_sym_type] = ACTIONS(2611), + [anon_sym_union] = ACTIONS(2611), + [anon_sym_unsafe] = ACTIONS(2611), + [anon_sym_use] = ACTIONS(2611), + [anon_sym_while] = ACTIONS(2611), + [anon_sym_extern] = ACTIONS(2611), + [anon_sym_yield] = ACTIONS(2611), + [anon_sym_move] = ACTIONS(2611), + [anon_sym_try] = ACTIONS(2611), + [sym_integer_literal] = ACTIONS(2609), + [aux_sym_string_literal_token1] = ACTIONS(2609), + [sym_char_literal] = ACTIONS(2609), + [anon_sym_true] = ACTIONS(2611), + [anon_sym_false] = ACTIONS(2611), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2611), + [sym_super] = ACTIONS(2611), + [sym_crate] = ACTIONS(2611), + [sym_metavariable] = ACTIONS(2609), + [sym__raw_string_literal_start] = ACTIONS(2609), + [sym_float_literal] = ACTIONS(2609), }, [STATE(717)] = { [sym_line_comment] = STATE(717), [sym_block_comment] = STATE(717), - [ts_builtin_sym_end] = ACTIONS(2782), - [sym_identifier] = ACTIONS(2784), - [anon_sym_SEMI] = ACTIONS(2782), - [anon_sym_macro_rules_BANG] = ACTIONS(2782), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_LBRACK] = ACTIONS(2782), - [anon_sym_LBRACE] = ACTIONS(2782), - [anon_sym_RBRACE] = ACTIONS(2782), - [anon_sym_STAR] = ACTIONS(2782), - [anon_sym_u8] = ACTIONS(2784), - [anon_sym_i8] = ACTIONS(2784), - [anon_sym_u16] = ACTIONS(2784), - [anon_sym_i16] = ACTIONS(2784), - [anon_sym_u32] = ACTIONS(2784), - [anon_sym_i32] = ACTIONS(2784), - [anon_sym_u64] = ACTIONS(2784), - [anon_sym_i64] = ACTIONS(2784), - [anon_sym_u128] = ACTIONS(2784), - [anon_sym_i128] = ACTIONS(2784), - [anon_sym_isize] = ACTIONS(2784), - [anon_sym_usize] = ACTIONS(2784), - [anon_sym_f32] = ACTIONS(2784), - [anon_sym_f64] = ACTIONS(2784), - [anon_sym_bool] = ACTIONS(2784), - [anon_sym_str] = ACTIONS(2784), - [anon_sym_char] = ACTIONS(2784), - [anon_sym_DASH] = ACTIONS(2782), - [anon_sym_BANG] = ACTIONS(2782), - [anon_sym_AMP] = ACTIONS(2782), - [anon_sym_PIPE] = ACTIONS(2782), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_DOT_DOT] = ACTIONS(2782), - [anon_sym_COLON_COLON] = ACTIONS(2782), - [anon_sym_POUND] = ACTIONS(2782), - [anon_sym_SQUOTE] = ACTIONS(2784), - [anon_sym_async] = ACTIONS(2784), - [anon_sym_break] = ACTIONS(2784), - [anon_sym_const] = ACTIONS(2784), - [anon_sym_continue] = ACTIONS(2784), - [anon_sym_default] = ACTIONS(2784), - [anon_sym_enum] = ACTIONS(2784), - [anon_sym_fn] = ACTIONS(2784), - [anon_sym_for] = ACTIONS(2784), - [anon_sym_gen] = ACTIONS(2784), - [anon_sym_if] = ACTIONS(2784), - [anon_sym_impl] = ACTIONS(2784), - [anon_sym_let] = ACTIONS(2784), - [anon_sym_loop] = ACTIONS(2784), - [anon_sym_match] = ACTIONS(2784), - [anon_sym_mod] = ACTIONS(2784), - [anon_sym_pub] = ACTIONS(2784), - [anon_sym_return] = ACTIONS(2784), - [anon_sym_static] = ACTIONS(2784), - [anon_sym_struct] = ACTIONS(2784), - [anon_sym_trait] = ACTIONS(2784), - [anon_sym_type] = ACTIONS(2784), - [anon_sym_union] = ACTIONS(2784), - [anon_sym_unsafe] = ACTIONS(2784), - [anon_sym_use] = ACTIONS(2784), - [anon_sym_while] = ACTIONS(2784), - [anon_sym_extern] = ACTIONS(2784), - [anon_sym_yield] = ACTIONS(2784), - [anon_sym_move] = ACTIONS(2784), - [anon_sym_try] = ACTIONS(2784), - [sym_integer_literal] = ACTIONS(2782), - [aux_sym_string_literal_token1] = ACTIONS(2782), - [sym_char_literal] = ACTIONS(2782), - [anon_sym_true] = ACTIONS(2784), - [anon_sym_false] = ACTIONS(2784), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2784), - [sym_super] = ACTIONS(2784), - [sym_crate] = ACTIONS(2784), - [sym_metavariable] = ACTIONS(2782), - [sym__raw_string_literal_start] = ACTIONS(2782), - [sym_float_literal] = ACTIONS(2782), + [ts_builtin_sym_end] = ACTIONS(2613), + [sym_identifier] = ACTIONS(2615), + [anon_sym_SEMI] = ACTIONS(2613), + [anon_sym_macro_rules_BANG] = ACTIONS(2613), + [anon_sym_LPAREN] = ACTIONS(2613), + [anon_sym_LBRACK] = ACTIONS(2613), + [anon_sym_LBRACE] = ACTIONS(2613), + [anon_sym_RBRACE] = ACTIONS(2613), + [anon_sym_STAR] = ACTIONS(2613), + [anon_sym_u8] = ACTIONS(2615), + [anon_sym_i8] = ACTIONS(2615), + [anon_sym_u16] = ACTIONS(2615), + [anon_sym_i16] = ACTIONS(2615), + [anon_sym_u32] = ACTIONS(2615), + [anon_sym_i32] = ACTIONS(2615), + [anon_sym_u64] = ACTIONS(2615), + [anon_sym_i64] = ACTIONS(2615), + [anon_sym_u128] = ACTIONS(2615), + [anon_sym_i128] = ACTIONS(2615), + [anon_sym_isize] = ACTIONS(2615), + [anon_sym_usize] = ACTIONS(2615), + [anon_sym_f32] = ACTIONS(2615), + [anon_sym_f64] = ACTIONS(2615), + [anon_sym_bool] = ACTIONS(2615), + [anon_sym_str] = ACTIONS(2615), + [anon_sym_char] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2613), + [anon_sym_BANG] = ACTIONS(2613), + [anon_sym_AMP] = ACTIONS(2613), + [anon_sym_PIPE] = ACTIONS(2613), + [anon_sym_LT] = ACTIONS(2613), + [anon_sym_DOT_DOT] = ACTIONS(2613), + [anon_sym_COLON_COLON] = ACTIONS(2613), + [anon_sym_POUND] = ACTIONS(2613), + [anon_sym_SQUOTE] = ACTIONS(2615), + [anon_sym_async] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(2615), + [anon_sym_const] = ACTIONS(2615), + [anon_sym_continue] = ACTIONS(2615), + [anon_sym_default] = ACTIONS(2615), + [anon_sym_enum] = ACTIONS(2615), + [anon_sym_fn] = ACTIONS(2615), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_gen] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_impl] = ACTIONS(2615), + [anon_sym_let] = ACTIONS(2615), + [anon_sym_loop] = ACTIONS(2615), + [anon_sym_match] = ACTIONS(2615), + [anon_sym_mod] = ACTIONS(2615), + [anon_sym_pub] = ACTIONS(2615), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_static] = ACTIONS(2615), + [anon_sym_struct] = ACTIONS(2615), + [anon_sym_trait] = ACTIONS(2615), + [anon_sym_type] = ACTIONS(2615), + [anon_sym_union] = ACTIONS(2615), + [anon_sym_unsafe] = ACTIONS(2615), + [anon_sym_use] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_extern] = ACTIONS(2615), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_move] = ACTIONS(2615), + [anon_sym_try] = ACTIONS(2615), + [sym_integer_literal] = ACTIONS(2613), + [aux_sym_string_literal_token1] = ACTIONS(2613), + [sym_char_literal] = ACTIONS(2613), + [anon_sym_true] = ACTIONS(2615), + [anon_sym_false] = ACTIONS(2615), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2615), + [sym_super] = ACTIONS(2615), + [sym_crate] = ACTIONS(2615), + [sym_metavariable] = ACTIONS(2613), + [sym__raw_string_literal_start] = ACTIONS(2613), + [sym_float_literal] = ACTIONS(2613), }, [STATE(718)] = { [sym_line_comment] = STATE(718), [sym_block_comment] = STATE(718), - [ts_builtin_sym_end] = ACTIONS(2786), - [sym_identifier] = ACTIONS(2788), - [anon_sym_SEMI] = ACTIONS(2786), - [anon_sym_macro_rules_BANG] = ACTIONS(2786), - [anon_sym_LPAREN] = ACTIONS(2786), - [anon_sym_LBRACK] = ACTIONS(2786), - [anon_sym_LBRACE] = ACTIONS(2786), - [anon_sym_RBRACE] = ACTIONS(2786), - [anon_sym_STAR] = ACTIONS(2786), - [anon_sym_u8] = ACTIONS(2788), - [anon_sym_i8] = ACTIONS(2788), - [anon_sym_u16] = ACTIONS(2788), - [anon_sym_i16] = ACTIONS(2788), - [anon_sym_u32] = ACTIONS(2788), - [anon_sym_i32] = ACTIONS(2788), - [anon_sym_u64] = ACTIONS(2788), - [anon_sym_i64] = ACTIONS(2788), - [anon_sym_u128] = ACTIONS(2788), - [anon_sym_i128] = ACTIONS(2788), - [anon_sym_isize] = ACTIONS(2788), - [anon_sym_usize] = ACTIONS(2788), - [anon_sym_f32] = ACTIONS(2788), - [anon_sym_f64] = ACTIONS(2788), - [anon_sym_bool] = ACTIONS(2788), - [anon_sym_str] = ACTIONS(2788), - [anon_sym_char] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2786), - [anon_sym_BANG] = ACTIONS(2786), - [anon_sym_AMP] = ACTIONS(2786), - [anon_sym_PIPE] = ACTIONS(2786), - [anon_sym_LT] = ACTIONS(2786), - [anon_sym_DOT_DOT] = ACTIONS(2786), - [anon_sym_COLON_COLON] = ACTIONS(2786), - [anon_sym_POUND] = ACTIONS(2786), - [anon_sym_SQUOTE] = ACTIONS(2788), - [anon_sym_async] = ACTIONS(2788), - [anon_sym_break] = ACTIONS(2788), - [anon_sym_const] = ACTIONS(2788), - [anon_sym_continue] = ACTIONS(2788), - [anon_sym_default] = ACTIONS(2788), - [anon_sym_enum] = ACTIONS(2788), - [anon_sym_fn] = ACTIONS(2788), - [anon_sym_for] = ACTIONS(2788), - [anon_sym_gen] = ACTIONS(2788), - [anon_sym_if] = ACTIONS(2788), - [anon_sym_impl] = ACTIONS(2788), - [anon_sym_let] = ACTIONS(2788), - [anon_sym_loop] = ACTIONS(2788), - [anon_sym_match] = ACTIONS(2788), - [anon_sym_mod] = ACTIONS(2788), - [anon_sym_pub] = ACTIONS(2788), - [anon_sym_return] = ACTIONS(2788), - [anon_sym_static] = ACTIONS(2788), - [anon_sym_struct] = ACTIONS(2788), - [anon_sym_trait] = ACTIONS(2788), - [anon_sym_type] = ACTIONS(2788), - [anon_sym_union] = ACTIONS(2788), - [anon_sym_unsafe] = ACTIONS(2788), - [anon_sym_use] = ACTIONS(2788), - [anon_sym_while] = ACTIONS(2788), - [anon_sym_extern] = ACTIONS(2788), - [anon_sym_yield] = ACTIONS(2788), - [anon_sym_move] = ACTIONS(2788), - [anon_sym_try] = ACTIONS(2788), - [sym_integer_literal] = ACTIONS(2786), - [aux_sym_string_literal_token1] = ACTIONS(2786), - [sym_char_literal] = ACTIONS(2786), - [anon_sym_true] = ACTIONS(2788), - [anon_sym_false] = ACTIONS(2788), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2788), - [sym_super] = ACTIONS(2788), - [sym_crate] = ACTIONS(2788), - [sym_metavariable] = ACTIONS(2786), - [sym__raw_string_literal_start] = ACTIONS(2786), - [sym_float_literal] = ACTIONS(2786), + [ts_builtin_sym_end] = ACTIONS(2617), + [sym_identifier] = ACTIONS(2619), + [anon_sym_SEMI] = ACTIONS(2617), + [anon_sym_macro_rules_BANG] = ACTIONS(2617), + [anon_sym_LPAREN] = ACTIONS(2617), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_RBRACE] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_u8] = ACTIONS(2619), + [anon_sym_i8] = ACTIONS(2619), + [anon_sym_u16] = ACTIONS(2619), + [anon_sym_i16] = ACTIONS(2619), + [anon_sym_u32] = ACTIONS(2619), + [anon_sym_i32] = ACTIONS(2619), + [anon_sym_u64] = ACTIONS(2619), + [anon_sym_i64] = ACTIONS(2619), + [anon_sym_u128] = ACTIONS(2619), + [anon_sym_i128] = ACTIONS(2619), + [anon_sym_isize] = ACTIONS(2619), + [anon_sym_usize] = ACTIONS(2619), + [anon_sym_f32] = ACTIONS(2619), + [anon_sym_f64] = ACTIONS(2619), + [anon_sym_bool] = ACTIONS(2619), + [anon_sym_str] = ACTIONS(2619), + [anon_sym_char] = ACTIONS(2619), + [anon_sym_DASH] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2617), + [anon_sym_PIPE] = ACTIONS(2617), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_DOT_DOT] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_POUND] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2619), + [anon_sym_async] = ACTIONS(2619), + [anon_sym_break] = ACTIONS(2619), + [anon_sym_const] = ACTIONS(2619), + [anon_sym_continue] = ACTIONS(2619), + [anon_sym_default] = ACTIONS(2619), + [anon_sym_enum] = ACTIONS(2619), + [anon_sym_fn] = ACTIONS(2619), + [anon_sym_for] = ACTIONS(2619), + [anon_sym_gen] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(2619), + [anon_sym_impl] = ACTIONS(2619), + [anon_sym_let] = ACTIONS(2619), + [anon_sym_loop] = ACTIONS(2619), + [anon_sym_match] = ACTIONS(2619), + [anon_sym_mod] = ACTIONS(2619), + [anon_sym_pub] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2619), + [anon_sym_static] = ACTIONS(2619), + [anon_sym_struct] = ACTIONS(2619), + [anon_sym_trait] = ACTIONS(2619), + [anon_sym_type] = ACTIONS(2619), + [anon_sym_union] = ACTIONS(2619), + [anon_sym_unsafe] = ACTIONS(2619), + [anon_sym_use] = ACTIONS(2619), + [anon_sym_while] = ACTIONS(2619), + [anon_sym_extern] = ACTIONS(2619), + [anon_sym_yield] = ACTIONS(2619), + [anon_sym_move] = ACTIONS(2619), + [anon_sym_try] = ACTIONS(2619), + [sym_integer_literal] = ACTIONS(2617), + [aux_sym_string_literal_token1] = ACTIONS(2617), + [sym_char_literal] = ACTIONS(2617), + [anon_sym_true] = ACTIONS(2619), + [anon_sym_false] = ACTIONS(2619), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2619), + [sym_super] = ACTIONS(2619), + [sym_crate] = ACTIONS(2619), + [sym_metavariable] = ACTIONS(2617), + [sym__raw_string_literal_start] = ACTIONS(2617), + [sym_float_literal] = ACTIONS(2617), }, [STATE(719)] = { [sym_line_comment] = STATE(719), [sym_block_comment] = STATE(719), - [ts_builtin_sym_end] = ACTIONS(2790), - [sym_identifier] = ACTIONS(2792), - [anon_sym_SEMI] = ACTIONS(2790), - [anon_sym_macro_rules_BANG] = ACTIONS(2790), - [anon_sym_LPAREN] = ACTIONS(2790), - [anon_sym_LBRACK] = ACTIONS(2790), - [anon_sym_LBRACE] = ACTIONS(2790), - [anon_sym_RBRACE] = ACTIONS(2790), - [anon_sym_STAR] = ACTIONS(2790), - [anon_sym_u8] = ACTIONS(2792), - [anon_sym_i8] = ACTIONS(2792), - [anon_sym_u16] = ACTIONS(2792), - [anon_sym_i16] = ACTIONS(2792), - [anon_sym_u32] = ACTIONS(2792), - [anon_sym_i32] = ACTIONS(2792), - [anon_sym_u64] = ACTIONS(2792), - [anon_sym_i64] = ACTIONS(2792), - [anon_sym_u128] = ACTIONS(2792), - [anon_sym_i128] = ACTIONS(2792), - [anon_sym_isize] = ACTIONS(2792), - [anon_sym_usize] = ACTIONS(2792), - [anon_sym_f32] = ACTIONS(2792), - [anon_sym_f64] = ACTIONS(2792), - [anon_sym_bool] = ACTIONS(2792), - [anon_sym_str] = ACTIONS(2792), - [anon_sym_char] = ACTIONS(2792), - [anon_sym_DASH] = ACTIONS(2790), - [anon_sym_BANG] = ACTIONS(2790), - [anon_sym_AMP] = ACTIONS(2790), - [anon_sym_PIPE] = ACTIONS(2790), - [anon_sym_LT] = ACTIONS(2790), - [anon_sym_DOT_DOT] = ACTIONS(2790), - [anon_sym_COLON_COLON] = ACTIONS(2790), - [anon_sym_POUND] = ACTIONS(2790), - [anon_sym_SQUOTE] = ACTIONS(2792), - [anon_sym_async] = ACTIONS(2792), - [anon_sym_break] = ACTIONS(2792), - [anon_sym_const] = ACTIONS(2792), - [anon_sym_continue] = ACTIONS(2792), - [anon_sym_default] = ACTIONS(2792), - [anon_sym_enum] = ACTIONS(2792), - [anon_sym_fn] = ACTIONS(2792), - [anon_sym_for] = ACTIONS(2792), - [anon_sym_gen] = ACTIONS(2792), - [anon_sym_if] = ACTIONS(2792), - [anon_sym_impl] = ACTIONS(2792), - [anon_sym_let] = ACTIONS(2792), - [anon_sym_loop] = ACTIONS(2792), - [anon_sym_match] = ACTIONS(2792), - [anon_sym_mod] = ACTIONS(2792), - [anon_sym_pub] = ACTIONS(2792), - [anon_sym_return] = ACTIONS(2792), - [anon_sym_static] = ACTIONS(2792), - [anon_sym_struct] = ACTIONS(2792), - [anon_sym_trait] = ACTIONS(2792), - [anon_sym_type] = ACTIONS(2792), - [anon_sym_union] = ACTIONS(2792), - [anon_sym_unsafe] = ACTIONS(2792), - [anon_sym_use] = ACTIONS(2792), - [anon_sym_while] = ACTIONS(2792), - [anon_sym_extern] = ACTIONS(2792), - [anon_sym_yield] = ACTIONS(2792), - [anon_sym_move] = ACTIONS(2792), - [anon_sym_try] = ACTIONS(2792), - [sym_integer_literal] = ACTIONS(2790), - [aux_sym_string_literal_token1] = ACTIONS(2790), - [sym_char_literal] = ACTIONS(2790), - [anon_sym_true] = ACTIONS(2792), - [anon_sym_false] = ACTIONS(2792), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2792), - [sym_super] = ACTIONS(2792), - [sym_crate] = ACTIONS(2792), - [sym_metavariable] = ACTIONS(2790), - [sym__raw_string_literal_start] = ACTIONS(2790), - [sym_float_literal] = ACTIONS(2790), + [ts_builtin_sym_end] = ACTIONS(2621), + [sym_identifier] = ACTIONS(2623), + [anon_sym_SEMI] = ACTIONS(2621), + [anon_sym_macro_rules_BANG] = ACTIONS(2621), + [anon_sym_LPAREN] = ACTIONS(2621), + [anon_sym_LBRACK] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2621), + [anon_sym_RBRACE] = ACTIONS(2621), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_u8] = ACTIONS(2623), + [anon_sym_i8] = ACTIONS(2623), + [anon_sym_u16] = ACTIONS(2623), + [anon_sym_i16] = ACTIONS(2623), + [anon_sym_u32] = ACTIONS(2623), + [anon_sym_i32] = ACTIONS(2623), + [anon_sym_u64] = ACTIONS(2623), + [anon_sym_i64] = ACTIONS(2623), + [anon_sym_u128] = ACTIONS(2623), + [anon_sym_i128] = ACTIONS(2623), + [anon_sym_isize] = ACTIONS(2623), + [anon_sym_usize] = ACTIONS(2623), + [anon_sym_f32] = ACTIONS(2623), + [anon_sym_f64] = ACTIONS(2623), + [anon_sym_bool] = ACTIONS(2623), + [anon_sym_str] = ACTIONS(2623), + [anon_sym_char] = ACTIONS(2623), + [anon_sym_DASH] = ACTIONS(2621), + [anon_sym_BANG] = ACTIONS(2621), + [anon_sym_AMP] = ACTIONS(2621), + [anon_sym_PIPE] = ACTIONS(2621), + [anon_sym_LT] = ACTIONS(2621), + [anon_sym_DOT_DOT] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(2621), + [anon_sym_POUND] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2623), + [anon_sym_async] = ACTIONS(2623), + [anon_sym_break] = ACTIONS(2623), + [anon_sym_const] = ACTIONS(2623), + [anon_sym_continue] = ACTIONS(2623), + [anon_sym_default] = ACTIONS(2623), + [anon_sym_enum] = ACTIONS(2623), + [anon_sym_fn] = ACTIONS(2623), + [anon_sym_for] = ACTIONS(2623), + [anon_sym_gen] = ACTIONS(2623), + [anon_sym_if] = ACTIONS(2623), + [anon_sym_impl] = ACTIONS(2623), + [anon_sym_let] = ACTIONS(2623), + [anon_sym_loop] = ACTIONS(2623), + [anon_sym_match] = ACTIONS(2623), + [anon_sym_mod] = ACTIONS(2623), + [anon_sym_pub] = ACTIONS(2623), + [anon_sym_return] = ACTIONS(2623), + [anon_sym_static] = ACTIONS(2623), + [anon_sym_struct] = ACTIONS(2623), + [anon_sym_trait] = ACTIONS(2623), + [anon_sym_type] = ACTIONS(2623), + [anon_sym_union] = ACTIONS(2623), + [anon_sym_unsafe] = ACTIONS(2623), + [anon_sym_use] = ACTIONS(2623), + [anon_sym_while] = ACTIONS(2623), + [anon_sym_extern] = ACTIONS(2623), + [anon_sym_yield] = ACTIONS(2623), + [anon_sym_move] = ACTIONS(2623), + [anon_sym_try] = ACTIONS(2623), + [sym_integer_literal] = ACTIONS(2621), + [aux_sym_string_literal_token1] = ACTIONS(2621), + [sym_char_literal] = ACTIONS(2621), + [anon_sym_true] = ACTIONS(2623), + [anon_sym_false] = ACTIONS(2623), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2623), + [sym_super] = ACTIONS(2623), + [sym_crate] = ACTIONS(2623), + [sym_metavariable] = ACTIONS(2621), + [sym__raw_string_literal_start] = ACTIONS(2621), + [sym_float_literal] = ACTIONS(2621), }, [STATE(720)] = { [sym_line_comment] = STATE(720), [sym_block_comment] = STATE(720), - [ts_builtin_sym_end] = ACTIONS(2794), - [sym_identifier] = ACTIONS(2796), - [anon_sym_SEMI] = ACTIONS(2794), - [anon_sym_macro_rules_BANG] = ACTIONS(2794), - [anon_sym_LPAREN] = ACTIONS(2794), - [anon_sym_LBRACK] = ACTIONS(2794), - [anon_sym_LBRACE] = ACTIONS(2794), - [anon_sym_RBRACE] = ACTIONS(2794), - [anon_sym_STAR] = ACTIONS(2794), - [anon_sym_u8] = ACTIONS(2796), - [anon_sym_i8] = ACTIONS(2796), - [anon_sym_u16] = ACTIONS(2796), - [anon_sym_i16] = ACTIONS(2796), - [anon_sym_u32] = ACTIONS(2796), - [anon_sym_i32] = ACTIONS(2796), - [anon_sym_u64] = ACTIONS(2796), - [anon_sym_i64] = ACTIONS(2796), - [anon_sym_u128] = ACTIONS(2796), - [anon_sym_i128] = ACTIONS(2796), - [anon_sym_isize] = ACTIONS(2796), - [anon_sym_usize] = ACTIONS(2796), - [anon_sym_f32] = ACTIONS(2796), - [anon_sym_f64] = ACTIONS(2796), - [anon_sym_bool] = ACTIONS(2796), - [anon_sym_str] = ACTIONS(2796), - [anon_sym_char] = ACTIONS(2796), - [anon_sym_DASH] = ACTIONS(2794), - [anon_sym_BANG] = ACTIONS(2794), - [anon_sym_AMP] = ACTIONS(2794), - [anon_sym_PIPE] = ACTIONS(2794), - [anon_sym_LT] = ACTIONS(2794), - [anon_sym_DOT_DOT] = ACTIONS(2794), - [anon_sym_COLON_COLON] = ACTIONS(2794), - [anon_sym_POUND] = ACTIONS(2794), - [anon_sym_SQUOTE] = ACTIONS(2796), - [anon_sym_async] = ACTIONS(2796), - [anon_sym_break] = ACTIONS(2796), - [anon_sym_const] = ACTIONS(2796), - [anon_sym_continue] = ACTIONS(2796), - [anon_sym_default] = ACTIONS(2796), - [anon_sym_enum] = ACTIONS(2796), - [anon_sym_fn] = ACTIONS(2796), - [anon_sym_for] = ACTIONS(2796), - [anon_sym_gen] = ACTIONS(2796), - [anon_sym_if] = ACTIONS(2796), - [anon_sym_impl] = ACTIONS(2796), - [anon_sym_let] = ACTIONS(2796), - [anon_sym_loop] = ACTIONS(2796), - [anon_sym_match] = ACTIONS(2796), - [anon_sym_mod] = ACTIONS(2796), - [anon_sym_pub] = ACTIONS(2796), - [anon_sym_return] = ACTIONS(2796), - [anon_sym_static] = ACTIONS(2796), - [anon_sym_struct] = ACTIONS(2796), - [anon_sym_trait] = ACTIONS(2796), - [anon_sym_type] = ACTIONS(2796), - [anon_sym_union] = ACTIONS(2796), - [anon_sym_unsafe] = ACTIONS(2796), - [anon_sym_use] = ACTIONS(2796), - [anon_sym_while] = ACTIONS(2796), - [anon_sym_extern] = ACTIONS(2796), - [anon_sym_yield] = ACTIONS(2796), - [anon_sym_move] = ACTIONS(2796), - [anon_sym_try] = ACTIONS(2796), - [sym_integer_literal] = ACTIONS(2794), - [aux_sym_string_literal_token1] = ACTIONS(2794), - [sym_char_literal] = ACTIONS(2794), - [anon_sym_true] = ACTIONS(2796), - [anon_sym_false] = ACTIONS(2796), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2796), - [sym_super] = ACTIONS(2796), - [sym_crate] = ACTIONS(2796), - [sym_metavariable] = ACTIONS(2794), - [sym__raw_string_literal_start] = ACTIONS(2794), - [sym_float_literal] = ACTIONS(2794), + [ts_builtin_sym_end] = ACTIONS(2625), + [sym_identifier] = ACTIONS(2627), + [anon_sym_SEMI] = ACTIONS(2625), + [anon_sym_macro_rules_BANG] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2625), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_RBRACE] = ACTIONS(2625), + [anon_sym_STAR] = ACTIONS(2625), + [anon_sym_u8] = ACTIONS(2627), + [anon_sym_i8] = ACTIONS(2627), + [anon_sym_u16] = ACTIONS(2627), + [anon_sym_i16] = ACTIONS(2627), + [anon_sym_u32] = ACTIONS(2627), + [anon_sym_i32] = ACTIONS(2627), + [anon_sym_u64] = ACTIONS(2627), + [anon_sym_i64] = ACTIONS(2627), + [anon_sym_u128] = ACTIONS(2627), + [anon_sym_i128] = ACTIONS(2627), + [anon_sym_isize] = ACTIONS(2627), + [anon_sym_usize] = ACTIONS(2627), + [anon_sym_f32] = ACTIONS(2627), + [anon_sym_f64] = ACTIONS(2627), + [anon_sym_bool] = ACTIONS(2627), + [anon_sym_str] = ACTIONS(2627), + [anon_sym_char] = ACTIONS(2627), + [anon_sym_DASH] = ACTIONS(2625), + [anon_sym_BANG] = ACTIONS(2625), + [anon_sym_AMP] = ACTIONS(2625), + [anon_sym_PIPE] = ACTIONS(2625), + [anon_sym_LT] = ACTIONS(2625), + [anon_sym_DOT_DOT] = ACTIONS(2625), + [anon_sym_COLON_COLON] = ACTIONS(2625), + [anon_sym_POUND] = ACTIONS(2625), + [anon_sym_SQUOTE] = ACTIONS(2627), + [anon_sym_async] = ACTIONS(2627), + [anon_sym_break] = ACTIONS(2627), + [anon_sym_const] = ACTIONS(2627), + [anon_sym_continue] = ACTIONS(2627), + [anon_sym_default] = ACTIONS(2627), + [anon_sym_enum] = ACTIONS(2627), + [anon_sym_fn] = ACTIONS(2627), + [anon_sym_for] = ACTIONS(2627), + [anon_sym_gen] = ACTIONS(2627), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_impl] = ACTIONS(2627), + [anon_sym_let] = ACTIONS(2627), + [anon_sym_loop] = ACTIONS(2627), + [anon_sym_match] = ACTIONS(2627), + [anon_sym_mod] = ACTIONS(2627), + [anon_sym_pub] = ACTIONS(2627), + [anon_sym_return] = ACTIONS(2627), + [anon_sym_static] = ACTIONS(2627), + [anon_sym_struct] = ACTIONS(2627), + [anon_sym_trait] = ACTIONS(2627), + [anon_sym_type] = ACTIONS(2627), + [anon_sym_union] = ACTIONS(2627), + [anon_sym_unsafe] = ACTIONS(2627), + [anon_sym_use] = ACTIONS(2627), + [anon_sym_while] = ACTIONS(2627), + [anon_sym_extern] = ACTIONS(2627), + [anon_sym_yield] = ACTIONS(2627), + [anon_sym_move] = ACTIONS(2627), + [anon_sym_try] = ACTIONS(2627), + [sym_integer_literal] = ACTIONS(2625), + [aux_sym_string_literal_token1] = ACTIONS(2625), + [sym_char_literal] = ACTIONS(2625), + [anon_sym_true] = ACTIONS(2627), + [anon_sym_false] = ACTIONS(2627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2627), + [sym_super] = ACTIONS(2627), + [sym_crate] = ACTIONS(2627), + [sym_metavariable] = ACTIONS(2625), + [sym__raw_string_literal_start] = ACTIONS(2625), + [sym_float_literal] = ACTIONS(2625), }, [STATE(721)] = { [sym_line_comment] = STATE(721), [sym_block_comment] = STATE(721), - [ts_builtin_sym_end] = ACTIONS(2798), - [sym_identifier] = ACTIONS(2800), - [anon_sym_SEMI] = ACTIONS(2798), - [anon_sym_macro_rules_BANG] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2798), - [anon_sym_LBRACK] = ACTIONS(2798), - [anon_sym_LBRACE] = ACTIONS(2798), - [anon_sym_RBRACE] = ACTIONS(2798), - [anon_sym_STAR] = ACTIONS(2798), - [anon_sym_u8] = ACTIONS(2800), - [anon_sym_i8] = ACTIONS(2800), - [anon_sym_u16] = ACTIONS(2800), - [anon_sym_i16] = ACTIONS(2800), - [anon_sym_u32] = ACTIONS(2800), - [anon_sym_i32] = ACTIONS(2800), - [anon_sym_u64] = ACTIONS(2800), - [anon_sym_i64] = ACTIONS(2800), - [anon_sym_u128] = ACTIONS(2800), - [anon_sym_i128] = ACTIONS(2800), - [anon_sym_isize] = ACTIONS(2800), - [anon_sym_usize] = ACTIONS(2800), - [anon_sym_f32] = ACTIONS(2800), - [anon_sym_f64] = ACTIONS(2800), - [anon_sym_bool] = ACTIONS(2800), - [anon_sym_str] = ACTIONS(2800), - [anon_sym_char] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(2798), - [anon_sym_BANG] = ACTIONS(2798), - [anon_sym_AMP] = ACTIONS(2798), - [anon_sym_PIPE] = ACTIONS(2798), - [anon_sym_LT] = ACTIONS(2798), - [anon_sym_DOT_DOT] = ACTIONS(2798), - [anon_sym_COLON_COLON] = ACTIONS(2798), - [anon_sym_POUND] = ACTIONS(2798), - [anon_sym_SQUOTE] = ACTIONS(2800), - [anon_sym_async] = ACTIONS(2800), - [anon_sym_break] = ACTIONS(2800), - [anon_sym_const] = ACTIONS(2800), - [anon_sym_continue] = ACTIONS(2800), - [anon_sym_default] = ACTIONS(2800), - [anon_sym_enum] = ACTIONS(2800), - [anon_sym_fn] = ACTIONS(2800), - [anon_sym_for] = ACTIONS(2800), - [anon_sym_gen] = ACTIONS(2800), - [anon_sym_if] = ACTIONS(2800), - [anon_sym_impl] = ACTIONS(2800), - [anon_sym_let] = ACTIONS(2800), - [anon_sym_loop] = ACTIONS(2800), - [anon_sym_match] = ACTIONS(2800), - [anon_sym_mod] = ACTIONS(2800), - [anon_sym_pub] = ACTIONS(2800), - [anon_sym_return] = ACTIONS(2800), - [anon_sym_static] = ACTIONS(2800), - [anon_sym_struct] = ACTIONS(2800), - [anon_sym_trait] = ACTIONS(2800), - [anon_sym_type] = ACTIONS(2800), - [anon_sym_union] = ACTIONS(2800), - [anon_sym_unsafe] = ACTIONS(2800), - [anon_sym_use] = ACTIONS(2800), - [anon_sym_while] = ACTIONS(2800), - [anon_sym_extern] = ACTIONS(2800), - [anon_sym_yield] = ACTIONS(2800), - [anon_sym_move] = ACTIONS(2800), - [anon_sym_try] = ACTIONS(2800), - [sym_integer_literal] = ACTIONS(2798), - [aux_sym_string_literal_token1] = ACTIONS(2798), - [sym_char_literal] = ACTIONS(2798), - [anon_sym_true] = ACTIONS(2800), - [anon_sym_false] = ACTIONS(2800), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2800), - [sym_super] = ACTIONS(2800), - [sym_crate] = ACTIONS(2800), - [sym_metavariable] = ACTIONS(2798), - [sym__raw_string_literal_start] = ACTIONS(2798), - [sym_float_literal] = ACTIONS(2798), + [ts_builtin_sym_end] = ACTIONS(2629), + [sym_identifier] = ACTIONS(2631), + [anon_sym_SEMI] = ACTIONS(2629), + [anon_sym_macro_rules_BANG] = ACTIONS(2629), + [anon_sym_LPAREN] = ACTIONS(2629), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_RBRACE] = ACTIONS(2629), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_u8] = ACTIONS(2631), + [anon_sym_i8] = ACTIONS(2631), + [anon_sym_u16] = ACTIONS(2631), + [anon_sym_i16] = ACTIONS(2631), + [anon_sym_u32] = ACTIONS(2631), + [anon_sym_i32] = ACTIONS(2631), + [anon_sym_u64] = ACTIONS(2631), + [anon_sym_i64] = ACTIONS(2631), + [anon_sym_u128] = ACTIONS(2631), + [anon_sym_i128] = ACTIONS(2631), + [anon_sym_isize] = ACTIONS(2631), + [anon_sym_usize] = ACTIONS(2631), + [anon_sym_f32] = ACTIONS(2631), + [anon_sym_f64] = ACTIONS(2631), + [anon_sym_bool] = ACTIONS(2631), + [anon_sym_str] = ACTIONS(2631), + [anon_sym_char] = ACTIONS(2631), + [anon_sym_DASH] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2629), + [anon_sym_PIPE] = ACTIONS(2629), + [anon_sym_LT] = ACTIONS(2629), + [anon_sym_DOT_DOT] = ACTIONS(2629), + [anon_sym_COLON_COLON] = ACTIONS(2629), + [anon_sym_POUND] = ACTIONS(2629), + [anon_sym_SQUOTE] = ACTIONS(2631), + [anon_sym_async] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(2631), + [anon_sym_const] = ACTIONS(2631), + [anon_sym_continue] = ACTIONS(2631), + [anon_sym_default] = ACTIONS(2631), + [anon_sym_enum] = ACTIONS(2631), + [anon_sym_fn] = ACTIONS(2631), + [anon_sym_for] = ACTIONS(2631), + [anon_sym_gen] = ACTIONS(2631), + [anon_sym_if] = ACTIONS(2631), + [anon_sym_impl] = ACTIONS(2631), + [anon_sym_let] = ACTIONS(2631), + [anon_sym_loop] = ACTIONS(2631), + [anon_sym_match] = ACTIONS(2631), + [anon_sym_mod] = ACTIONS(2631), + [anon_sym_pub] = ACTIONS(2631), + [anon_sym_return] = ACTIONS(2631), + [anon_sym_static] = ACTIONS(2631), + [anon_sym_struct] = ACTIONS(2631), + [anon_sym_trait] = ACTIONS(2631), + [anon_sym_type] = ACTIONS(2631), + [anon_sym_union] = ACTIONS(2631), + [anon_sym_unsafe] = ACTIONS(2631), + [anon_sym_use] = ACTIONS(2631), + [anon_sym_while] = ACTIONS(2631), + [anon_sym_extern] = ACTIONS(2631), + [anon_sym_yield] = ACTIONS(2631), + [anon_sym_move] = ACTIONS(2631), + [anon_sym_try] = ACTIONS(2631), + [sym_integer_literal] = ACTIONS(2629), + [aux_sym_string_literal_token1] = ACTIONS(2629), + [sym_char_literal] = ACTIONS(2629), + [anon_sym_true] = ACTIONS(2631), + [anon_sym_false] = ACTIONS(2631), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2631), + [sym_super] = ACTIONS(2631), + [sym_crate] = ACTIONS(2631), + [sym_metavariable] = ACTIONS(2629), + [sym__raw_string_literal_start] = ACTIONS(2629), + [sym_float_literal] = ACTIONS(2629), }, [STATE(722)] = { [sym_line_comment] = STATE(722), [sym_block_comment] = STATE(722), - [ts_builtin_sym_end] = ACTIONS(2802), - [sym_identifier] = ACTIONS(2804), - [anon_sym_SEMI] = ACTIONS(2802), - [anon_sym_macro_rules_BANG] = ACTIONS(2802), - [anon_sym_LPAREN] = ACTIONS(2802), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_LBRACE] = ACTIONS(2802), - [anon_sym_RBRACE] = ACTIONS(2802), - [anon_sym_STAR] = ACTIONS(2802), - [anon_sym_u8] = ACTIONS(2804), - [anon_sym_i8] = ACTIONS(2804), - [anon_sym_u16] = ACTIONS(2804), - [anon_sym_i16] = ACTIONS(2804), - [anon_sym_u32] = ACTIONS(2804), - [anon_sym_i32] = ACTIONS(2804), - [anon_sym_u64] = ACTIONS(2804), - [anon_sym_i64] = ACTIONS(2804), - [anon_sym_u128] = ACTIONS(2804), - [anon_sym_i128] = ACTIONS(2804), - [anon_sym_isize] = ACTIONS(2804), - [anon_sym_usize] = ACTIONS(2804), - [anon_sym_f32] = ACTIONS(2804), - [anon_sym_f64] = ACTIONS(2804), - [anon_sym_bool] = ACTIONS(2804), - [anon_sym_str] = ACTIONS(2804), - [anon_sym_char] = ACTIONS(2804), - [anon_sym_DASH] = ACTIONS(2802), - [anon_sym_BANG] = ACTIONS(2802), - [anon_sym_AMP] = ACTIONS(2802), - [anon_sym_PIPE] = ACTIONS(2802), - [anon_sym_LT] = ACTIONS(2802), - [anon_sym_DOT_DOT] = ACTIONS(2802), - [anon_sym_COLON_COLON] = ACTIONS(2802), - [anon_sym_POUND] = ACTIONS(2802), - [anon_sym_SQUOTE] = ACTIONS(2804), - [anon_sym_async] = ACTIONS(2804), - [anon_sym_break] = ACTIONS(2804), - [anon_sym_const] = ACTIONS(2804), - [anon_sym_continue] = ACTIONS(2804), - [anon_sym_default] = ACTIONS(2804), - [anon_sym_enum] = ACTIONS(2804), - [anon_sym_fn] = ACTIONS(2804), - [anon_sym_for] = ACTIONS(2804), - [anon_sym_gen] = ACTIONS(2804), - [anon_sym_if] = ACTIONS(2804), - [anon_sym_impl] = ACTIONS(2804), - [anon_sym_let] = ACTIONS(2804), - [anon_sym_loop] = ACTIONS(2804), - [anon_sym_match] = ACTIONS(2804), - [anon_sym_mod] = ACTIONS(2804), - [anon_sym_pub] = ACTIONS(2804), - [anon_sym_return] = ACTIONS(2804), - [anon_sym_static] = ACTIONS(2804), - [anon_sym_struct] = ACTIONS(2804), - [anon_sym_trait] = ACTIONS(2804), - [anon_sym_type] = ACTIONS(2804), - [anon_sym_union] = ACTIONS(2804), - [anon_sym_unsafe] = ACTIONS(2804), - [anon_sym_use] = ACTIONS(2804), - [anon_sym_while] = ACTIONS(2804), - [anon_sym_extern] = ACTIONS(2804), - [anon_sym_yield] = ACTIONS(2804), - [anon_sym_move] = ACTIONS(2804), - [anon_sym_try] = ACTIONS(2804), - [sym_integer_literal] = ACTIONS(2802), - [aux_sym_string_literal_token1] = ACTIONS(2802), - [sym_char_literal] = ACTIONS(2802), - [anon_sym_true] = ACTIONS(2804), - [anon_sym_false] = ACTIONS(2804), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2804), - [sym_super] = ACTIONS(2804), - [sym_crate] = ACTIONS(2804), - [sym_metavariable] = ACTIONS(2802), - [sym__raw_string_literal_start] = ACTIONS(2802), - [sym_float_literal] = ACTIONS(2802), + [ts_builtin_sym_end] = ACTIONS(2633), + [sym_identifier] = ACTIONS(2635), + [anon_sym_SEMI] = ACTIONS(2633), + [anon_sym_macro_rules_BANG] = ACTIONS(2633), + [anon_sym_LPAREN] = ACTIONS(2633), + [anon_sym_LBRACK] = ACTIONS(2633), + [anon_sym_LBRACE] = ACTIONS(2633), + [anon_sym_RBRACE] = ACTIONS(2633), + [anon_sym_STAR] = ACTIONS(2633), + [anon_sym_u8] = ACTIONS(2635), + [anon_sym_i8] = ACTIONS(2635), + [anon_sym_u16] = ACTIONS(2635), + [anon_sym_i16] = ACTIONS(2635), + [anon_sym_u32] = ACTIONS(2635), + [anon_sym_i32] = ACTIONS(2635), + [anon_sym_u64] = ACTIONS(2635), + [anon_sym_i64] = ACTIONS(2635), + [anon_sym_u128] = ACTIONS(2635), + [anon_sym_i128] = ACTIONS(2635), + [anon_sym_isize] = ACTIONS(2635), + [anon_sym_usize] = ACTIONS(2635), + [anon_sym_f32] = ACTIONS(2635), + [anon_sym_f64] = ACTIONS(2635), + [anon_sym_bool] = ACTIONS(2635), + [anon_sym_str] = ACTIONS(2635), + [anon_sym_char] = ACTIONS(2635), + [anon_sym_DASH] = ACTIONS(2633), + [anon_sym_BANG] = ACTIONS(2633), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_PIPE] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(2633), + [anon_sym_DOT_DOT] = ACTIONS(2633), + [anon_sym_COLON_COLON] = ACTIONS(2633), + [anon_sym_POUND] = ACTIONS(2633), + [anon_sym_SQUOTE] = ACTIONS(2635), + [anon_sym_async] = ACTIONS(2635), + [anon_sym_break] = ACTIONS(2635), + [anon_sym_const] = ACTIONS(2635), + [anon_sym_continue] = ACTIONS(2635), + [anon_sym_default] = ACTIONS(2635), + [anon_sym_enum] = ACTIONS(2635), + [anon_sym_fn] = ACTIONS(2635), + [anon_sym_for] = ACTIONS(2635), + [anon_sym_gen] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(2635), + [anon_sym_impl] = ACTIONS(2635), + [anon_sym_let] = ACTIONS(2635), + [anon_sym_loop] = ACTIONS(2635), + [anon_sym_match] = ACTIONS(2635), + [anon_sym_mod] = ACTIONS(2635), + [anon_sym_pub] = ACTIONS(2635), + [anon_sym_return] = ACTIONS(2635), + [anon_sym_static] = ACTIONS(2635), + [anon_sym_struct] = ACTIONS(2635), + [anon_sym_trait] = ACTIONS(2635), + [anon_sym_type] = ACTIONS(2635), + [anon_sym_union] = ACTIONS(2635), + [anon_sym_unsafe] = ACTIONS(2635), + [anon_sym_use] = ACTIONS(2635), + [anon_sym_while] = ACTIONS(2635), + [anon_sym_extern] = ACTIONS(2635), + [anon_sym_yield] = ACTIONS(2635), + [anon_sym_move] = ACTIONS(2635), + [anon_sym_try] = ACTIONS(2635), + [sym_integer_literal] = ACTIONS(2633), + [aux_sym_string_literal_token1] = ACTIONS(2633), + [sym_char_literal] = ACTIONS(2633), + [anon_sym_true] = ACTIONS(2635), + [anon_sym_false] = ACTIONS(2635), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2635), + [sym_super] = ACTIONS(2635), + [sym_crate] = ACTIONS(2635), + [sym_metavariable] = ACTIONS(2633), + [sym__raw_string_literal_start] = ACTIONS(2633), + [sym_float_literal] = ACTIONS(2633), }, [STATE(723)] = { [sym_line_comment] = STATE(723), [sym_block_comment] = STATE(723), - [ts_builtin_sym_end] = ACTIONS(2806), - [sym_identifier] = ACTIONS(2808), - [anon_sym_SEMI] = ACTIONS(2806), - [anon_sym_macro_rules_BANG] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_RBRACE] = ACTIONS(2806), - [anon_sym_STAR] = ACTIONS(2806), - [anon_sym_u8] = ACTIONS(2808), - [anon_sym_i8] = ACTIONS(2808), - [anon_sym_u16] = ACTIONS(2808), - [anon_sym_i16] = ACTIONS(2808), - [anon_sym_u32] = ACTIONS(2808), - [anon_sym_i32] = ACTIONS(2808), - [anon_sym_u64] = ACTIONS(2808), - [anon_sym_i64] = ACTIONS(2808), - [anon_sym_u128] = ACTIONS(2808), - [anon_sym_i128] = ACTIONS(2808), - [anon_sym_isize] = ACTIONS(2808), - [anon_sym_usize] = ACTIONS(2808), - [anon_sym_f32] = ACTIONS(2808), - [anon_sym_f64] = ACTIONS(2808), - [anon_sym_bool] = ACTIONS(2808), - [anon_sym_str] = ACTIONS(2808), - [anon_sym_char] = ACTIONS(2808), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_BANG] = ACTIONS(2806), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2806), - [anon_sym_LT] = ACTIONS(2806), - [anon_sym_DOT_DOT] = ACTIONS(2806), - [anon_sym_COLON_COLON] = ACTIONS(2806), - [anon_sym_POUND] = ACTIONS(2806), - [anon_sym_SQUOTE] = ACTIONS(2808), - [anon_sym_async] = ACTIONS(2808), - [anon_sym_break] = ACTIONS(2808), - [anon_sym_const] = ACTIONS(2808), - [anon_sym_continue] = ACTIONS(2808), - [anon_sym_default] = ACTIONS(2808), - [anon_sym_enum] = ACTIONS(2808), - [anon_sym_fn] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2808), - [anon_sym_gen] = ACTIONS(2808), - [anon_sym_if] = ACTIONS(2808), - [anon_sym_impl] = ACTIONS(2808), - [anon_sym_let] = ACTIONS(2808), - [anon_sym_loop] = ACTIONS(2808), - [anon_sym_match] = ACTIONS(2808), - [anon_sym_mod] = ACTIONS(2808), - [anon_sym_pub] = ACTIONS(2808), - [anon_sym_return] = ACTIONS(2808), - [anon_sym_static] = ACTIONS(2808), - [anon_sym_struct] = ACTIONS(2808), - [anon_sym_trait] = ACTIONS(2808), - [anon_sym_type] = ACTIONS(2808), - [anon_sym_union] = ACTIONS(2808), - [anon_sym_unsafe] = ACTIONS(2808), - [anon_sym_use] = ACTIONS(2808), - [anon_sym_while] = ACTIONS(2808), - [anon_sym_extern] = ACTIONS(2808), - [anon_sym_yield] = ACTIONS(2808), - [anon_sym_move] = ACTIONS(2808), - [anon_sym_try] = ACTIONS(2808), - [sym_integer_literal] = ACTIONS(2806), - [aux_sym_string_literal_token1] = ACTIONS(2806), - [sym_char_literal] = ACTIONS(2806), - [anon_sym_true] = ACTIONS(2808), - [anon_sym_false] = ACTIONS(2808), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2808), - [sym_super] = ACTIONS(2808), - [sym_crate] = ACTIONS(2808), - [sym_metavariable] = ACTIONS(2806), - [sym__raw_string_literal_start] = ACTIONS(2806), - [sym_float_literal] = ACTIONS(2806), + [ts_builtin_sym_end] = ACTIONS(2637), + [sym_identifier] = ACTIONS(2639), + [anon_sym_SEMI] = ACTIONS(2637), + [anon_sym_macro_rules_BANG] = ACTIONS(2637), + [anon_sym_LPAREN] = ACTIONS(2637), + [anon_sym_LBRACK] = ACTIONS(2637), + [anon_sym_LBRACE] = ACTIONS(2637), + [anon_sym_RBRACE] = ACTIONS(2637), + [anon_sym_STAR] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_DASH] = ACTIONS(2637), + [anon_sym_BANG] = ACTIONS(2637), + [anon_sym_AMP] = ACTIONS(2637), + [anon_sym_PIPE] = ACTIONS(2637), + [anon_sym_LT] = ACTIONS(2637), + [anon_sym_DOT_DOT] = ACTIONS(2637), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_POUND] = ACTIONS(2637), + [anon_sym_SQUOTE] = ACTIONS(2639), + [anon_sym_async] = ACTIONS(2639), + [anon_sym_break] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2639), + [anon_sym_continue] = ACTIONS(2639), + [anon_sym_default] = ACTIONS(2639), + [anon_sym_enum] = ACTIONS(2639), + [anon_sym_fn] = ACTIONS(2639), + [anon_sym_for] = ACTIONS(2639), + [anon_sym_gen] = ACTIONS(2639), + [anon_sym_if] = ACTIONS(2639), + [anon_sym_impl] = ACTIONS(2639), + [anon_sym_let] = ACTIONS(2639), + [anon_sym_loop] = ACTIONS(2639), + [anon_sym_match] = ACTIONS(2639), + [anon_sym_mod] = ACTIONS(2639), + [anon_sym_pub] = ACTIONS(2639), + [anon_sym_return] = ACTIONS(2639), + [anon_sym_static] = ACTIONS(2639), + [anon_sym_struct] = ACTIONS(2639), + [anon_sym_trait] = ACTIONS(2639), + [anon_sym_type] = ACTIONS(2639), + [anon_sym_union] = ACTIONS(2639), + [anon_sym_unsafe] = ACTIONS(2639), + [anon_sym_use] = ACTIONS(2639), + [anon_sym_while] = ACTIONS(2639), + [anon_sym_extern] = ACTIONS(2639), + [anon_sym_yield] = ACTIONS(2639), + [anon_sym_move] = ACTIONS(2639), + [anon_sym_try] = ACTIONS(2639), + [sym_integer_literal] = ACTIONS(2637), + [aux_sym_string_literal_token1] = ACTIONS(2637), + [sym_char_literal] = ACTIONS(2637), + [anon_sym_true] = ACTIONS(2639), + [anon_sym_false] = ACTIONS(2639), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2639), + [sym_super] = ACTIONS(2639), + [sym_crate] = ACTIONS(2639), + [sym_metavariable] = ACTIONS(2637), + [sym__raw_string_literal_start] = ACTIONS(2637), + [sym_float_literal] = ACTIONS(2637), }, [STATE(724)] = { [sym_line_comment] = STATE(724), [sym_block_comment] = STATE(724), - [ts_builtin_sym_end] = ACTIONS(2810), - [sym_identifier] = ACTIONS(2812), - [anon_sym_SEMI] = ACTIONS(2810), - [anon_sym_macro_rules_BANG] = ACTIONS(2810), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2810), - [anon_sym_STAR] = ACTIONS(2810), - [anon_sym_u8] = ACTIONS(2812), - [anon_sym_i8] = ACTIONS(2812), - [anon_sym_u16] = ACTIONS(2812), - [anon_sym_i16] = ACTIONS(2812), - [anon_sym_u32] = ACTIONS(2812), - [anon_sym_i32] = ACTIONS(2812), - [anon_sym_u64] = ACTIONS(2812), - [anon_sym_i64] = ACTIONS(2812), - [anon_sym_u128] = ACTIONS(2812), - [anon_sym_i128] = ACTIONS(2812), - [anon_sym_isize] = ACTIONS(2812), - [anon_sym_usize] = ACTIONS(2812), - [anon_sym_f32] = ACTIONS(2812), - [anon_sym_f64] = ACTIONS(2812), - [anon_sym_bool] = ACTIONS(2812), - [anon_sym_str] = ACTIONS(2812), - [anon_sym_char] = ACTIONS(2812), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_BANG] = ACTIONS(2810), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_PIPE] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2810), - [anon_sym_DOT_DOT] = ACTIONS(2810), - [anon_sym_COLON_COLON] = ACTIONS(2810), - [anon_sym_POUND] = ACTIONS(2810), - [anon_sym_SQUOTE] = ACTIONS(2812), - [anon_sym_async] = ACTIONS(2812), - [anon_sym_break] = ACTIONS(2812), - [anon_sym_const] = ACTIONS(2812), - [anon_sym_continue] = ACTIONS(2812), - [anon_sym_default] = ACTIONS(2812), - [anon_sym_enum] = ACTIONS(2812), - [anon_sym_fn] = ACTIONS(2812), - [anon_sym_for] = ACTIONS(2812), - [anon_sym_gen] = ACTIONS(2812), - [anon_sym_if] = ACTIONS(2812), - [anon_sym_impl] = ACTIONS(2812), - [anon_sym_let] = ACTIONS(2812), - [anon_sym_loop] = ACTIONS(2812), - [anon_sym_match] = ACTIONS(2812), - [anon_sym_mod] = ACTIONS(2812), - [anon_sym_pub] = ACTIONS(2812), - [anon_sym_return] = ACTIONS(2812), - [anon_sym_static] = ACTIONS(2812), - [anon_sym_struct] = ACTIONS(2812), - [anon_sym_trait] = ACTIONS(2812), - [anon_sym_type] = ACTIONS(2812), - [anon_sym_union] = ACTIONS(2812), - [anon_sym_unsafe] = ACTIONS(2812), - [anon_sym_use] = ACTIONS(2812), - [anon_sym_while] = ACTIONS(2812), - [anon_sym_extern] = ACTIONS(2812), - [anon_sym_yield] = ACTIONS(2812), - [anon_sym_move] = ACTIONS(2812), - [anon_sym_try] = ACTIONS(2812), - [sym_integer_literal] = ACTIONS(2810), - [aux_sym_string_literal_token1] = ACTIONS(2810), - [sym_char_literal] = ACTIONS(2810), - [anon_sym_true] = ACTIONS(2812), - [anon_sym_false] = ACTIONS(2812), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2812), - [sym_super] = ACTIONS(2812), - [sym_crate] = ACTIONS(2812), - [sym_metavariable] = ACTIONS(2810), - [sym__raw_string_literal_start] = ACTIONS(2810), - [sym_float_literal] = ACTIONS(2810), + [ts_builtin_sym_end] = ACTIONS(2641), + [sym_identifier] = ACTIONS(2643), + [anon_sym_SEMI] = ACTIONS(2641), + [anon_sym_macro_rules_BANG] = ACTIONS(2641), + [anon_sym_LPAREN] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2641), + [anon_sym_RBRACE] = ACTIONS(2641), + [anon_sym_STAR] = ACTIONS(2641), + [anon_sym_u8] = ACTIONS(2643), + [anon_sym_i8] = ACTIONS(2643), + [anon_sym_u16] = ACTIONS(2643), + [anon_sym_i16] = ACTIONS(2643), + [anon_sym_u32] = ACTIONS(2643), + [anon_sym_i32] = ACTIONS(2643), + [anon_sym_u64] = ACTIONS(2643), + [anon_sym_i64] = ACTIONS(2643), + [anon_sym_u128] = ACTIONS(2643), + [anon_sym_i128] = ACTIONS(2643), + [anon_sym_isize] = ACTIONS(2643), + [anon_sym_usize] = ACTIONS(2643), + [anon_sym_f32] = ACTIONS(2643), + [anon_sym_f64] = ACTIONS(2643), + [anon_sym_bool] = ACTIONS(2643), + [anon_sym_str] = ACTIONS(2643), + [anon_sym_char] = ACTIONS(2643), + [anon_sym_DASH] = ACTIONS(2641), + [anon_sym_BANG] = ACTIONS(2641), + [anon_sym_AMP] = ACTIONS(2641), + [anon_sym_PIPE] = ACTIONS(2641), + [anon_sym_LT] = ACTIONS(2641), + [anon_sym_DOT_DOT] = ACTIONS(2641), + [anon_sym_COLON_COLON] = ACTIONS(2641), + [anon_sym_POUND] = ACTIONS(2641), + [anon_sym_SQUOTE] = ACTIONS(2643), + [anon_sym_async] = ACTIONS(2643), + [anon_sym_break] = ACTIONS(2643), + [anon_sym_const] = ACTIONS(2643), + [anon_sym_continue] = ACTIONS(2643), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_enum] = ACTIONS(2643), + [anon_sym_fn] = ACTIONS(2643), + [anon_sym_for] = ACTIONS(2643), + [anon_sym_gen] = ACTIONS(2643), + [anon_sym_if] = ACTIONS(2643), + [anon_sym_impl] = ACTIONS(2643), + [anon_sym_let] = ACTIONS(2643), + [anon_sym_loop] = ACTIONS(2643), + [anon_sym_match] = ACTIONS(2643), + [anon_sym_mod] = ACTIONS(2643), + [anon_sym_pub] = ACTIONS(2643), + [anon_sym_return] = ACTIONS(2643), + [anon_sym_static] = ACTIONS(2643), + [anon_sym_struct] = ACTIONS(2643), + [anon_sym_trait] = ACTIONS(2643), + [anon_sym_type] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_unsafe] = ACTIONS(2643), + [anon_sym_use] = ACTIONS(2643), + [anon_sym_while] = ACTIONS(2643), + [anon_sym_extern] = ACTIONS(2643), + [anon_sym_yield] = ACTIONS(2643), + [anon_sym_move] = ACTIONS(2643), + [anon_sym_try] = ACTIONS(2643), + [sym_integer_literal] = ACTIONS(2641), + [aux_sym_string_literal_token1] = ACTIONS(2641), + [sym_char_literal] = ACTIONS(2641), + [anon_sym_true] = ACTIONS(2643), + [anon_sym_false] = ACTIONS(2643), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2643), + [sym_super] = ACTIONS(2643), + [sym_crate] = ACTIONS(2643), + [sym_metavariable] = ACTIONS(2641), + [sym__raw_string_literal_start] = ACTIONS(2641), + [sym_float_literal] = ACTIONS(2641), }, [STATE(725)] = { [sym_line_comment] = STATE(725), [sym_block_comment] = STATE(725), - [ts_builtin_sym_end] = ACTIONS(2814), - [sym_identifier] = ACTIONS(2816), - [anon_sym_SEMI] = ACTIONS(2814), - [anon_sym_macro_rules_BANG] = ACTIONS(2814), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_LBRACE] = ACTIONS(2814), - [anon_sym_RBRACE] = ACTIONS(2814), - [anon_sym_STAR] = ACTIONS(2814), - [anon_sym_u8] = ACTIONS(2816), - [anon_sym_i8] = ACTIONS(2816), - [anon_sym_u16] = ACTIONS(2816), - [anon_sym_i16] = ACTIONS(2816), - [anon_sym_u32] = ACTIONS(2816), - [anon_sym_i32] = ACTIONS(2816), - [anon_sym_u64] = ACTIONS(2816), - [anon_sym_i64] = ACTIONS(2816), - [anon_sym_u128] = ACTIONS(2816), - [anon_sym_i128] = ACTIONS(2816), - [anon_sym_isize] = ACTIONS(2816), - [anon_sym_usize] = ACTIONS(2816), - [anon_sym_f32] = ACTIONS(2816), - [anon_sym_f64] = ACTIONS(2816), - [anon_sym_bool] = ACTIONS(2816), - [anon_sym_str] = ACTIONS(2816), - [anon_sym_char] = ACTIONS(2816), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_BANG] = ACTIONS(2814), - [anon_sym_AMP] = ACTIONS(2814), - [anon_sym_PIPE] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2814), - [anon_sym_DOT_DOT] = ACTIONS(2814), - [anon_sym_COLON_COLON] = ACTIONS(2814), - [anon_sym_POUND] = ACTIONS(2814), - [anon_sym_SQUOTE] = ACTIONS(2816), - [anon_sym_async] = ACTIONS(2816), - [anon_sym_break] = ACTIONS(2816), - [anon_sym_const] = ACTIONS(2816), - [anon_sym_continue] = ACTIONS(2816), - [anon_sym_default] = ACTIONS(2816), - [anon_sym_enum] = ACTIONS(2816), - [anon_sym_fn] = ACTIONS(2816), - [anon_sym_for] = ACTIONS(2816), - [anon_sym_gen] = ACTIONS(2816), - [anon_sym_if] = ACTIONS(2816), - [anon_sym_impl] = ACTIONS(2816), - [anon_sym_let] = ACTIONS(2816), - [anon_sym_loop] = ACTIONS(2816), - [anon_sym_match] = ACTIONS(2816), - [anon_sym_mod] = ACTIONS(2816), - [anon_sym_pub] = ACTIONS(2816), - [anon_sym_return] = ACTIONS(2816), - [anon_sym_static] = ACTIONS(2816), - [anon_sym_struct] = ACTIONS(2816), - [anon_sym_trait] = ACTIONS(2816), - [anon_sym_type] = ACTIONS(2816), - [anon_sym_union] = ACTIONS(2816), - [anon_sym_unsafe] = ACTIONS(2816), - [anon_sym_use] = ACTIONS(2816), - [anon_sym_while] = ACTIONS(2816), - [anon_sym_extern] = ACTIONS(2816), - [anon_sym_yield] = ACTIONS(2816), - [anon_sym_move] = ACTIONS(2816), - [anon_sym_try] = ACTIONS(2816), - [sym_integer_literal] = ACTIONS(2814), - [aux_sym_string_literal_token1] = ACTIONS(2814), - [sym_char_literal] = ACTIONS(2814), - [anon_sym_true] = ACTIONS(2816), - [anon_sym_false] = ACTIONS(2816), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2816), - [sym_super] = ACTIONS(2816), - [sym_crate] = ACTIONS(2816), - [sym_metavariable] = ACTIONS(2814), - [sym__raw_string_literal_start] = ACTIONS(2814), - [sym_float_literal] = ACTIONS(2814), + [ts_builtin_sym_end] = ACTIONS(2645), + [sym_identifier] = ACTIONS(2647), + [anon_sym_SEMI] = ACTIONS(2645), + [anon_sym_macro_rules_BANG] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(2645), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_RBRACE] = ACTIONS(2645), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_u8] = ACTIONS(2647), + [anon_sym_i8] = ACTIONS(2647), + [anon_sym_u16] = ACTIONS(2647), + [anon_sym_i16] = ACTIONS(2647), + [anon_sym_u32] = ACTIONS(2647), + [anon_sym_i32] = ACTIONS(2647), + [anon_sym_u64] = ACTIONS(2647), + [anon_sym_i64] = ACTIONS(2647), + [anon_sym_u128] = ACTIONS(2647), + [anon_sym_i128] = ACTIONS(2647), + [anon_sym_isize] = ACTIONS(2647), + [anon_sym_usize] = ACTIONS(2647), + [anon_sym_f32] = ACTIONS(2647), + [anon_sym_f64] = ACTIONS(2647), + [anon_sym_bool] = ACTIONS(2647), + [anon_sym_str] = ACTIONS(2647), + [anon_sym_char] = ACTIONS(2647), + [anon_sym_DASH] = ACTIONS(2645), + [anon_sym_BANG] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2645), + [anon_sym_PIPE] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2645), + [anon_sym_DOT_DOT] = ACTIONS(2645), + [anon_sym_COLON_COLON] = ACTIONS(2645), + [anon_sym_POUND] = ACTIONS(2645), + [anon_sym_SQUOTE] = ACTIONS(2647), + [anon_sym_async] = ACTIONS(2647), + [anon_sym_break] = ACTIONS(2647), + [anon_sym_const] = ACTIONS(2647), + [anon_sym_continue] = ACTIONS(2647), + [anon_sym_default] = ACTIONS(2647), + [anon_sym_enum] = ACTIONS(2647), + [anon_sym_fn] = ACTIONS(2647), + [anon_sym_for] = ACTIONS(2647), + [anon_sym_gen] = ACTIONS(2647), + [anon_sym_if] = ACTIONS(2647), + [anon_sym_impl] = ACTIONS(2647), + [anon_sym_let] = ACTIONS(2647), + [anon_sym_loop] = ACTIONS(2647), + [anon_sym_match] = ACTIONS(2647), + [anon_sym_mod] = ACTIONS(2647), + [anon_sym_pub] = ACTIONS(2647), + [anon_sym_return] = ACTIONS(2647), + [anon_sym_static] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2647), + [anon_sym_trait] = ACTIONS(2647), + [anon_sym_type] = ACTIONS(2647), + [anon_sym_union] = ACTIONS(2647), + [anon_sym_unsafe] = ACTIONS(2647), + [anon_sym_use] = ACTIONS(2647), + [anon_sym_while] = ACTIONS(2647), + [anon_sym_extern] = ACTIONS(2647), + [anon_sym_yield] = ACTIONS(2647), + [anon_sym_move] = ACTIONS(2647), + [anon_sym_try] = ACTIONS(2647), + [sym_integer_literal] = ACTIONS(2645), + [aux_sym_string_literal_token1] = ACTIONS(2645), + [sym_char_literal] = ACTIONS(2645), + [anon_sym_true] = ACTIONS(2647), + [anon_sym_false] = ACTIONS(2647), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2647), + [sym_super] = ACTIONS(2647), + [sym_crate] = ACTIONS(2647), + [sym_metavariable] = ACTIONS(2645), + [sym__raw_string_literal_start] = ACTIONS(2645), + [sym_float_literal] = ACTIONS(2645), }, [STATE(726)] = { [sym_line_comment] = STATE(726), [sym_block_comment] = STATE(726), - [ts_builtin_sym_end] = ACTIONS(2818), - [sym_identifier] = ACTIONS(2820), - [anon_sym_SEMI] = ACTIONS(2818), - [anon_sym_macro_rules_BANG] = ACTIONS(2818), - [anon_sym_LPAREN] = ACTIONS(2818), - [anon_sym_LBRACK] = ACTIONS(2818), - [anon_sym_LBRACE] = ACTIONS(2818), - [anon_sym_RBRACE] = ACTIONS(2818), - [anon_sym_STAR] = ACTIONS(2818), - [anon_sym_u8] = ACTIONS(2820), - [anon_sym_i8] = ACTIONS(2820), - [anon_sym_u16] = ACTIONS(2820), - [anon_sym_i16] = ACTIONS(2820), - [anon_sym_u32] = ACTIONS(2820), - [anon_sym_i32] = ACTIONS(2820), - [anon_sym_u64] = ACTIONS(2820), - [anon_sym_i64] = ACTIONS(2820), - [anon_sym_u128] = ACTIONS(2820), - [anon_sym_i128] = ACTIONS(2820), - [anon_sym_isize] = ACTIONS(2820), - [anon_sym_usize] = ACTIONS(2820), - [anon_sym_f32] = ACTIONS(2820), - [anon_sym_f64] = ACTIONS(2820), - [anon_sym_bool] = ACTIONS(2820), - [anon_sym_str] = ACTIONS(2820), - [anon_sym_char] = ACTIONS(2820), - [anon_sym_DASH] = ACTIONS(2818), - [anon_sym_BANG] = ACTIONS(2818), - [anon_sym_AMP] = ACTIONS(2818), - [anon_sym_PIPE] = ACTIONS(2818), - [anon_sym_LT] = ACTIONS(2818), - [anon_sym_DOT_DOT] = ACTIONS(2818), - [anon_sym_COLON_COLON] = ACTIONS(2818), - [anon_sym_POUND] = ACTIONS(2818), - [anon_sym_SQUOTE] = ACTIONS(2820), - [anon_sym_async] = ACTIONS(2820), - [anon_sym_break] = ACTIONS(2820), - [anon_sym_const] = ACTIONS(2820), - [anon_sym_continue] = ACTIONS(2820), - [anon_sym_default] = ACTIONS(2820), - [anon_sym_enum] = ACTIONS(2820), - [anon_sym_fn] = ACTIONS(2820), - [anon_sym_for] = ACTIONS(2820), - [anon_sym_gen] = ACTIONS(2820), - [anon_sym_if] = ACTIONS(2820), - [anon_sym_impl] = ACTIONS(2820), - [anon_sym_let] = ACTIONS(2820), - [anon_sym_loop] = ACTIONS(2820), - [anon_sym_match] = ACTIONS(2820), - [anon_sym_mod] = ACTIONS(2820), - [anon_sym_pub] = ACTIONS(2820), - [anon_sym_return] = ACTIONS(2820), - [anon_sym_static] = ACTIONS(2820), - [anon_sym_struct] = ACTIONS(2820), - [anon_sym_trait] = ACTIONS(2820), - [anon_sym_type] = ACTIONS(2820), - [anon_sym_union] = ACTIONS(2820), - [anon_sym_unsafe] = ACTIONS(2820), - [anon_sym_use] = ACTIONS(2820), - [anon_sym_while] = ACTIONS(2820), - [anon_sym_extern] = ACTIONS(2820), - [anon_sym_yield] = ACTIONS(2820), - [anon_sym_move] = ACTIONS(2820), - [anon_sym_try] = ACTIONS(2820), - [sym_integer_literal] = ACTIONS(2818), - [aux_sym_string_literal_token1] = ACTIONS(2818), - [sym_char_literal] = ACTIONS(2818), - [anon_sym_true] = ACTIONS(2820), - [anon_sym_false] = ACTIONS(2820), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2820), - [sym_super] = ACTIONS(2820), - [sym_crate] = ACTIONS(2820), - [sym_metavariable] = ACTIONS(2818), - [sym__raw_string_literal_start] = ACTIONS(2818), - [sym_float_literal] = ACTIONS(2818), + [ts_builtin_sym_end] = ACTIONS(2649), + [sym_identifier] = ACTIONS(2651), + [anon_sym_SEMI] = ACTIONS(2649), + [anon_sym_macro_rules_BANG] = ACTIONS(2649), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACK] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2649), + [anon_sym_RBRACE] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_u8] = ACTIONS(2651), + [anon_sym_i8] = ACTIONS(2651), + [anon_sym_u16] = ACTIONS(2651), + [anon_sym_i16] = ACTIONS(2651), + [anon_sym_u32] = ACTIONS(2651), + [anon_sym_i32] = ACTIONS(2651), + [anon_sym_u64] = ACTIONS(2651), + [anon_sym_i64] = ACTIONS(2651), + [anon_sym_u128] = ACTIONS(2651), + [anon_sym_i128] = ACTIONS(2651), + [anon_sym_isize] = ACTIONS(2651), + [anon_sym_usize] = ACTIONS(2651), + [anon_sym_f32] = ACTIONS(2651), + [anon_sym_f64] = ACTIONS(2651), + [anon_sym_bool] = ACTIONS(2651), + [anon_sym_str] = ACTIONS(2651), + [anon_sym_char] = ACTIONS(2651), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_BANG] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2649), + [anon_sym_PIPE] = ACTIONS(2649), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_DOT_DOT] = ACTIONS(2649), + [anon_sym_COLON_COLON] = ACTIONS(2649), + [anon_sym_POUND] = ACTIONS(2649), + [anon_sym_SQUOTE] = ACTIONS(2651), + [anon_sym_async] = ACTIONS(2651), + [anon_sym_break] = ACTIONS(2651), + [anon_sym_const] = ACTIONS(2651), + [anon_sym_continue] = ACTIONS(2651), + [anon_sym_default] = ACTIONS(2651), + [anon_sym_enum] = ACTIONS(2651), + [anon_sym_fn] = ACTIONS(2651), + [anon_sym_for] = ACTIONS(2651), + [anon_sym_gen] = ACTIONS(2651), + [anon_sym_if] = ACTIONS(2651), + [anon_sym_impl] = ACTIONS(2651), + [anon_sym_let] = ACTIONS(2651), + [anon_sym_loop] = ACTIONS(2651), + [anon_sym_match] = ACTIONS(2651), + [anon_sym_mod] = ACTIONS(2651), + [anon_sym_pub] = ACTIONS(2651), + [anon_sym_return] = ACTIONS(2651), + [anon_sym_static] = ACTIONS(2651), + [anon_sym_struct] = ACTIONS(2651), + [anon_sym_trait] = ACTIONS(2651), + [anon_sym_type] = ACTIONS(2651), + [anon_sym_union] = ACTIONS(2651), + [anon_sym_unsafe] = ACTIONS(2651), + [anon_sym_use] = ACTIONS(2651), + [anon_sym_while] = ACTIONS(2651), + [anon_sym_extern] = ACTIONS(2651), + [anon_sym_yield] = ACTIONS(2651), + [anon_sym_move] = ACTIONS(2651), + [anon_sym_try] = ACTIONS(2651), + [sym_integer_literal] = ACTIONS(2649), + [aux_sym_string_literal_token1] = ACTIONS(2649), + [sym_char_literal] = ACTIONS(2649), + [anon_sym_true] = ACTIONS(2651), + [anon_sym_false] = ACTIONS(2651), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2651), + [sym_super] = ACTIONS(2651), + [sym_crate] = ACTIONS(2651), + [sym_metavariable] = ACTIONS(2649), + [sym__raw_string_literal_start] = ACTIONS(2649), + [sym_float_literal] = ACTIONS(2649), }, [STATE(727)] = { [sym_line_comment] = STATE(727), [sym_block_comment] = STATE(727), - [ts_builtin_sym_end] = ACTIONS(2822), - [sym_identifier] = ACTIONS(2824), - [anon_sym_SEMI] = ACTIONS(2822), - [anon_sym_macro_rules_BANG] = ACTIONS(2822), - [anon_sym_LPAREN] = ACTIONS(2822), - [anon_sym_LBRACK] = ACTIONS(2822), - [anon_sym_LBRACE] = ACTIONS(2822), - [anon_sym_RBRACE] = ACTIONS(2822), - [anon_sym_STAR] = ACTIONS(2822), - [anon_sym_u8] = ACTIONS(2824), - [anon_sym_i8] = ACTIONS(2824), - [anon_sym_u16] = ACTIONS(2824), - [anon_sym_i16] = ACTIONS(2824), - [anon_sym_u32] = ACTIONS(2824), - [anon_sym_i32] = ACTIONS(2824), - [anon_sym_u64] = ACTIONS(2824), - [anon_sym_i64] = ACTIONS(2824), - [anon_sym_u128] = ACTIONS(2824), - [anon_sym_i128] = ACTIONS(2824), - [anon_sym_isize] = ACTIONS(2824), - [anon_sym_usize] = ACTIONS(2824), - [anon_sym_f32] = ACTIONS(2824), - [anon_sym_f64] = ACTIONS(2824), - [anon_sym_bool] = ACTIONS(2824), - [anon_sym_str] = ACTIONS(2824), - [anon_sym_char] = ACTIONS(2824), - [anon_sym_DASH] = ACTIONS(2822), - [anon_sym_BANG] = ACTIONS(2822), - [anon_sym_AMP] = ACTIONS(2822), - [anon_sym_PIPE] = ACTIONS(2822), - [anon_sym_LT] = ACTIONS(2822), - [anon_sym_DOT_DOT] = ACTIONS(2822), - [anon_sym_COLON_COLON] = ACTIONS(2822), - [anon_sym_POUND] = ACTIONS(2822), - [anon_sym_SQUOTE] = ACTIONS(2824), - [anon_sym_async] = ACTIONS(2824), - [anon_sym_break] = ACTIONS(2824), - [anon_sym_const] = ACTIONS(2824), - [anon_sym_continue] = ACTIONS(2824), - [anon_sym_default] = ACTIONS(2824), - [anon_sym_enum] = ACTIONS(2824), - [anon_sym_fn] = ACTIONS(2824), - [anon_sym_for] = ACTIONS(2824), - [anon_sym_gen] = ACTIONS(2824), - [anon_sym_if] = ACTIONS(2824), - [anon_sym_impl] = ACTIONS(2824), - [anon_sym_let] = ACTIONS(2824), - [anon_sym_loop] = ACTIONS(2824), - [anon_sym_match] = ACTIONS(2824), - [anon_sym_mod] = ACTIONS(2824), - [anon_sym_pub] = ACTIONS(2824), - [anon_sym_return] = ACTIONS(2824), - [anon_sym_static] = ACTIONS(2824), - [anon_sym_struct] = ACTIONS(2824), - [anon_sym_trait] = ACTIONS(2824), - [anon_sym_type] = ACTIONS(2824), - [anon_sym_union] = ACTIONS(2824), - [anon_sym_unsafe] = ACTIONS(2824), - [anon_sym_use] = ACTIONS(2824), - [anon_sym_while] = ACTIONS(2824), - [anon_sym_extern] = ACTIONS(2824), - [anon_sym_yield] = ACTIONS(2824), - [anon_sym_move] = ACTIONS(2824), - [anon_sym_try] = ACTIONS(2824), - [sym_integer_literal] = ACTIONS(2822), - [aux_sym_string_literal_token1] = ACTIONS(2822), - [sym_char_literal] = ACTIONS(2822), - [anon_sym_true] = ACTIONS(2824), - [anon_sym_false] = ACTIONS(2824), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2824), - [sym_super] = ACTIONS(2824), - [sym_crate] = ACTIONS(2824), - [sym_metavariable] = ACTIONS(2822), - [sym__raw_string_literal_start] = ACTIONS(2822), - [sym_float_literal] = ACTIONS(2822), + [ts_builtin_sym_end] = ACTIONS(2653), + [sym_identifier] = ACTIONS(2655), + [anon_sym_SEMI] = ACTIONS(2653), + [anon_sym_macro_rules_BANG] = ACTIONS(2653), + [anon_sym_LPAREN] = ACTIONS(2653), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_LBRACE] = ACTIONS(2653), + [anon_sym_RBRACE] = ACTIONS(2653), + [anon_sym_STAR] = ACTIONS(2653), + [anon_sym_u8] = ACTIONS(2655), + [anon_sym_i8] = ACTIONS(2655), + [anon_sym_u16] = ACTIONS(2655), + [anon_sym_i16] = ACTIONS(2655), + [anon_sym_u32] = ACTIONS(2655), + [anon_sym_i32] = ACTIONS(2655), + [anon_sym_u64] = ACTIONS(2655), + [anon_sym_i64] = ACTIONS(2655), + [anon_sym_u128] = ACTIONS(2655), + [anon_sym_i128] = ACTIONS(2655), + [anon_sym_isize] = ACTIONS(2655), + [anon_sym_usize] = ACTIONS(2655), + [anon_sym_f32] = ACTIONS(2655), + [anon_sym_f64] = ACTIONS(2655), + [anon_sym_bool] = ACTIONS(2655), + [anon_sym_str] = ACTIONS(2655), + [anon_sym_char] = ACTIONS(2655), + [anon_sym_DASH] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(2653), + [anon_sym_AMP] = ACTIONS(2653), + [anon_sym_PIPE] = ACTIONS(2653), + [anon_sym_LT] = ACTIONS(2653), + [anon_sym_DOT_DOT] = ACTIONS(2653), + [anon_sym_COLON_COLON] = ACTIONS(2653), + [anon_sym_POUND] = ACTIONS(2653), + [anon_sym_SQUOTE] = ACTIONS(2655), + [anon_sym_async] = ACTIONS(2655), + [anon_sym_break] = ACTIONS(2655), + [anon_sym_const] = ACTIONS(2655), + [anon_sym_continue] = ACTIONS(2655), + [anon_sym_default] = ACTIONS(2655), + [anon_sym_enum] = ACTIONS(2655), + [anon_sym_fn] = ACTIONS(2655), + [anon_sym_for] = ACTIONS(2655), + [anon_sym_gen] = ACTIONS(2655), + [anon_sym_if] = ACTIONS(2655), + [anon_sym_impl] = ACTIONS(2655), + [anon_sym_let] = ACTIONS(2655), + [anon_sym_loop] = ACTIONS(2655), + [anon_sym_match] = ACTIONS(2655), + [anon_sym_mod] = ACTIONS(2655), + [anon_sym_pub] = ACTIONS(2655), + [anon_sym_return] = ACTIONS(2655), + [anon_sym_static] = ACTIONS(2655), + [anon_sym_struct] = ACTIONS(2655), + [anon_sym_trait] = ACTIONS(2655), + [anon_sym_type] = ACTIONS(2655), + [anon_sym_union] = ACTIONS(2655), + [anon_sym_unsafe] = ACTIONS(2655), + [anon_sym_use] = ACTIONS(2655), + [anon_sym_while] = ACTIONS(2655), + [anon_sym_extern] = ACTIONS(2655), + [anon_sym_yield] = ACTIONS(2655), + [anon_sym_move] = ACTIONS(2655), + [anon_sym_try] = ACTIONS(2655), + [sym_integer_literal] = ACTIONS(2653), + [aux_sym_string_literal_token1] = ACTIONS(2653), + [sym_char_literal] = ACTIONS(2653), + [anon_sym_true] = ACTIONS(2655), + [anon_sym_false] = ACTIONS(2655), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2655), + [sym_super] = ACTIONS(2655), + [sym_crate] = ACTIONS(2655), + [sym_metavariable] = ACTIONS(2653), + [sym__raw_string_literal_start] = ACTIONS(2653), + [sym_float_literal] = ACTIONS(2653), }, [STATE(728)] = { [sym_line_comment] = STATE(728), [sym_block_comment] = STATE(728), - [ts_builtin_sym_end] = ACTIONS(2826), - [sym_identifier] = ACTIONS(2828), - [anon_sym_SEMI] = ACTIONS(2826), - [anon_sym_macro_rules_BANG] = ACTIONS(2826), - [anon_sym_LPAREN] = ACTIONS(2826), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_LBRACE] = ACTIONS(2826), - [anon_sym_RBRACE] = ACTIONS(2826), - [anon_sym_STAR] = ACTIONS(2826), - [anon_sym_u8] = ACTIONS(2828), - [anon_sym_i8] = ACTIONS(2828), - [anon_sym_u16] = ACTIONS(2828), - [anon_sym_i16] = ACTIONS(2828), - [anon_sym_u32] = ACTIONS(2828), - [anon_sym_i32] = ACTIONS(2828), - [anon_sym_u64] = ACTIONS(2828), - [anon_sym_i64] = ACTIONS(2828), - [anon_sym_u128] = ACTIONS(2828), - [anon_sym_i128] = ACTIONS(2828), - [anon_sym_isize] = ACTIONS(2828), - [anon_sym_usize] = ACTIONS(2828), - [anon_sym_f32] = ACTIONS(2828), - [anon_sym_f64] = ACTIONS(2828), - [anon_sym_bool] = ACTIONS(2828), - [anon_sym_str] = ACTIONS(2828), - [anon_sym_char] = ACTIONS(2828), - [anon_sym_DASH] = ACTIONS(2826), - [anon_sym_BANG] = ACTIONS(2826), - [anon_sym_AMP] = ACTIONS(2826), - [anon_sym_PIPE] = ACTIONS(2826), - [anon_sym_LT] = ACTIONS(2826), - [anon_sym_DOT_DOT] = ACTIONS(2826), - [anon_sym_COLON_COLON] = ACTIONS(2826), - [anon_sym_POUND] = ACTIONS(2826), - [anon_sym_SQUOTE] = ACTIONS(2828), - [anon_sym_async] = ACTIONS(2828), - [anon_sym_break] = ACTIONS(2828), - [anon_sym_const] = ACTIONS(2828), - [anon_sym_continue] = ACTIONS(2828), - [anon_sym_default] = ACTIONS(2828), - [anon_sym_enum] = ACTIONS(2828), - [anon_sym_fn] = ACTIONS(2828), - [anon_sym_for] = ACTIONS(2828), - [anon_sym_gen] = ACTIONS(2828), - [anon_sym_if] = ACTIONS(2828), - [anon_sym_impl] = ACTIONS(2828), - [anon_sym_let] = ACTIONS(2828), - [anon_sym_loop] = ACTIONS(2828), - [anon_sym_match] = ACTIONS(2828), - [anon_sym_mod] = ACTIONS(2828), - [anon_sym_pub] = ACTIONS(2828), - [anon_sym_return] = ACTIONS(2828), - [anon_sym_static] = ACTIONS(2828), - [anon_sym_struct] = ACTIONS(2828), - [anon_sym_trait] = ACTIONS(2828), - [anon_sym_type] = ACTIONS(2828), - [anon_sym_union] = ACTIONS(2828), - [anon_sym_unsafe] = ACTIONS(2828), - [anon_sym_use] = ACTIONS(2828), - [anon_sym_while] = ACTIONS(2828), - [anon_sym_extern] = ACTIONS(2828), - [anon_sym_yield] = ACTIONS(2828), - [anon_sym_move] = ACTIONS(2828), - [anon_sym_try] = ACTIONS(2828), - [sym_integer_literal] = ACTIONS(2826), - [aux_sym_string_literal_token1] = ACTIONS(2826), - [sym_char_literal] = ACTIONS(2826), - [anon_sym_true] = ACTIONS(2828), - [anon_sym_false] = ACTIONS(2828), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2828), - [sym_super] = ACTIONS(2828), - [sym_crate] = ACTIONS(2828), - [sym_metavariable] = ACTIONS(2826), - [sym__raw_string_literal_start] = ACTIONS(2826), - [sym_float_literal] = ACTIONS(2826), + [ts_builtin_sym_end] = ACTIONS(2657), + [sym_identifier] = ACTIONS(2659), + [anon_sym_SEMI] = ACTIONS(2657), + [anon_sym_macro_rules_BANG] = ACTIONS(2657), + [anon_sym_LPAREN] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(2657), + [anon_sym_RBRACE] = ACTIONS(2657), + [anon_sym_STAR] = ACTIONS(2657), + [anon_sym_u8] = ACTIONS(2659), + [anon_sym_i8] = ACTIONS(2659), + [anon_sym_u16] = ACTIONS(2659), + [anon_sym_i16] = ACTIONS(2659), + [anon_sym_u32] = ACTIONS(2659), + [anon_sym_i32] = ACTIONS(2659), + [anon_sym_u64] = ACTIONS(2659), + [anon_sym_i64] = ACTIONS(2659), + [anon_sym_u128] = ACTIONS(2659), + [anon_sym_i128] = ACTIONS(2659), + [anon_sym_isize] = ACTIONS(2659), + [anon_sym_usize] = ACTIONS(2659), + [anon_sym_f32] = ACTIONS(2659), + [anon_sym_f64] = ACTIONS(2659), + [anon_sym_bool] = ACTIONS(2659), + [anon_sym_str] = ACTIONS(2659), + [anon_sym_char] = ACTIONS(2659), + [anon_sym_DASH] = ACTIONS(2657), + [anon_sym_BANG] = ACTIONS(2657), + [anon_sym_AMP] = ACTIONS(2657), + [anon_sym_PIPE] = ACTIONS(2657), + [anon_sym_LT] = ACTIONS(2657), + [anon_sym_DOT_DOT] = ACTIONS(2657), + [anon_sym_COLON_COLON] = ACTIONS(2657), + [anon_sym_POUND] = ACTIONS(2657), + [anon_sym_SQUOTE] = ACTIONS(2659), + [anon_sym_async] = ACTIONS(2659), + [anon_sym_break] = ACTIONS(2659), + [anon_sym_const] = ACTIONS(2659), + [anon_sym_continue] = ACTIONS(2659), + [anon_sym_default] = ACTIONS(2659), + [anon_sym_enum] = ACTIONS(2659), + [anon_sym_fn] = ACTIONS(2659), + [anon_sym_for] = ACTIONS(2659), + [anon_sym_gen] = ACTIONS(2659), + [anon_sym_if] = ACTIONS(2659), + [anon_sym_impl] = ACTIONS(2659), + [anon_sym_let] = ACTIONS(2659), + [anon_sym_loop] = ACTIONS(2659), + [anon_sym_match] = ACTIONS(2659), + [anon_sym_mod] = ACTIONS(2659), + [anon_sym_pub] = ACTIONS(2659), + [anon_sym_return] = ACTIONS(2659), + [anon_sym_static] = ACTIONS(2659), + [anon_sym_struct] = ACTIONS(2659), + [anon_sym_trait] = ACTIONS(2659), + [anon_sym_type] = ACTIONS(2659), + [anon_sym_union] = ACTIONS(2659), + [anon_sym_unsafe] = ACTIONS(2659), + [anon_sym_use] = ACTIONS(2659), + [anon_sym_while] = ACTIONS(2659), + [anon_sym_extern] = ACTIONS(2659), + [anon_sym_yield] = ACTIONS(2659), + [anon_sym_move] = ACTIONS(2659), + [anon_sym_try] = ACTIONS(2659), + [sym_integer_literal] = ACTIONS(2657), + [aux_sym_string_literal_token1] = ACTIONS(2657), + [sym_char_literal] = ACTIONS(2657), + [anon_sym_true] = ACTIONS(2659), + [anon_sym_false] = ACTIONS(2659), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2659), + [sym_super] = ACTIONS(2659), + [sym_crate] = ACTIONS(2659), + [sym_metavariable] = ACTIONS(2657), + [sym__raw_string_literal_start] = ACTIONS(2657), + [sym_float_literal] = ACTIONS(2657), }, [STATE(729)] = { [sym_line_comment] = STATE(729), [sym_block_comment] = STATE(729), - [ts_builtin_sym_end] = ACTIONS(2830), - [sym_identifier] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2830), - [anon_sym_macro_rules_BANG] = ACTIONS(2830), - [anon_sym_LPAREN] = ACTIONS(2830), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_LBRACE] = ACTIONS(2830), - [anon_sym_RBRACE] = ACTIONS(2830), - [anon_sym_STAR] = ACTIONS(2830), - [anon_sym_u8] = ACTIONS(2832), - [anon_sym_i8] = ACTIONS(2832), - [anon_sym_u16] = ACTIONS(2832), - [anon_sym_i16] = ACTIONS(2832), - [anon_sym_u32] = ACTIONS(2832), - [anon_sym_i32] = ACTIONS(2832), - [anon_sym_u64] = ACTIONS(2832), - [anon_sym_i64] = ACTIONS(2832), - [anon_sym_u128] = ACTIONS(2832), - [anon_sym_i128] = ACTIONS(2832), - [anon_sym_isize] = ACTIONS(2832), - [anon_sym_usize] = ACTIONS(2832), - [anon_sym_f32] = ACTIONS(2832), - [anon_sym_f64] = ACTIONS(2832), - [anon_sym_bool] = ACTIONS(2832), - [anon_sym_str] = ACTIONS(2832), - [anon_sym_char] = ACTIONS(2832), - [anon_sym_DASH] = ACTIONS(2830), - [anon_sym_BANG] = ACTIONS(2830), - [anon_sym_AMP] = ACTIONS(2830), - [anon_sym_PIPE] = ACTIONS(2830), - [anon_sym_LT] = ACTIONS(2830), - [anon_sym_DOT_DOT] = ACTIONS(2830), - [anon_sym_COLON_COLON] = ACTIONS(2830), - [anon_sym_POUND] = ACTIONS(2830), - [anon_sym_SQUOTE] = ACTIONS(2832), - [anon_sym_async] = ACTIONS(2832), - [anon_sym_break] = ACTIONS(2832), - [anon_sym_const] = ACTIONS(2832), - [anon_sym_continue] = ACTIONS(2832), - [anon_sym_default] = ACTIONS(2832), - [anon_sym_enum] = ACTIONS(2832), - [anon_sym_fn] = ACTIONS(2832), - [anon_sym_for] = ACTIONS(2832), - [anon_sym_gen] = ACTIONS(2832), - [anon_sym_if] = ACTIONS(2832), - [anon_sym_impl] = ACTIONS(2832), - [anon_sym_let] = ACTIONS(2832), - [anon_sym_loop] = ACTIONS(2832), - [anon_sym_match] = ACTIONS(2832), - [anon_sym_mod] = ACTIONS(2832), - [anon_sym_pub] = ACTIONS(2832), - [anon_sym_return] = ACTIONS(2832), - [anon_sym_static] = ACTIONS(2832), - [anon_sym_struct] = ACTIONS(2832), - [anon_sym_trait] = ACTIONS(2832), - [anon_sym_type] = ACTIONS(2832), - [anon_sym_union] = ACTIONS(2832), - [anon_sym_unsafe] = ACTIONS(2832), - [anon_sym_use] = ACTIONS(2832), - [anon_sym_while] = ACTIONS(2832), - [anon_sym_extern] = ACTIONS(2832), - [anon_sym_yield] = ACTIONS(2832), - [anon_sym_move] = ACTIONS(2832), - [anon_sym_try] = ACTIONS(2832), - [sym_integer_literal] = ACTIONS(2830), - [aux_sym_string_literal_token1] = ACTIONS(2830), - [sym_char_literal] = ACTIONS(2830), - [anon_sym_true] = ACTIONS(2832), - [anon_sym_false] = ACTIONS(2832), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2832), - [sym_super] = ACTIONS(2832), - [sym_crate] = ACTIONS(2832), - [sym_metavariable] = ACTIONS(2830), - [sym__raw_string_literal_start] = ACTIONS(2830), - [sym_float_literal] = ACTIONS(2830), + [ts_builtin_sym_end] = ACTIONS(2661), + [sym_identifier] = ACTIONS(2663), + [anon_sym_SEMI] = ACTIONS(2661), + [anon_sym_macro_rules_BANG] = ACTIONS(2661), + [anon_sym_LPAREN] = ACTIONS(2661), + [anon_sym_LBRACK] = ACTIONS(2661), + [anon_sym_LBRACE] = ACTIONS(2661), + [anon_sym_RBRACE] = ACTIONS(2661), + [anon_sym_STAR] = ACTIONS(2661), + [anon_sym_u8] = ACTIONS(2663), + [anon_sym_i8] = ACTIONS(2663), + [anon_sym_u16] = ACTIONS(2663), + [anon_sym_i16] = ACTIONS(2663), + [anon_sym_u32] = ACTIONS(2663), + [anon_sym_i32] = ACTIONS(2663), + [anon_sym_u64] = ACTIONS(2663), + [anon_sym_i64] = ACTIONS(2663), + [anon_sym_u128] = ACTIONS(2663), + [anon_sym_i128] = ACTIONS(2663), + [anon_sym_isize] = ACTIONS(2663), + [anon_sym_usize] = ACTIONS(2663), + [anon_sym_f32] = ACTIONS(2663), + [anon_sym_f64] = ACTIONS(2663), + [anon_sym_bool] = ACTIONS(2663), + [anon_sym_str] = ACTIONS(2663), + [anon_sym_char] = ACTIONS(2663), + [anon_sym_DASH] = ACTIONS(2661), + [anon_sym_BANG] = ACTIONS(2661), + [anon_sym_AMP] = ACTIONS(2661), + [anon_sym_PIPE] = ACTIONS(2661), + [anon_sym_LT] = ACTIONS(2661), + [anon_sym_DOT_DOT] = ACTIONS(2661), + [anon_sym_COLON_COLON] = ACTIONS(2661), + [anon_sym_POUND] = ACTIONS(2661), + [anon_sym_SQUOTE] = ACTIONS(2663), + [anon_sym_async] = ACTIONS(2663), + [anon_sym_break] = ACTIONS(2663), + [anon_sym_const] = ACTIONS(2663), + [anon_sym_continue] = ACTIONS(2663), + [anon_sym_default] = ACTIONS(2663), + [anon_sym_enum] = ACTIONS(2663), + [anon_sym_fn] = ACTIONS(2663), + [anon_sym_for] = ACTIONS(2663), + [anon_sym_gen] = ACTIONS(2663), + [anon_sym_if] = ACTIONS(2663), + [anon_sym_impl] = ACTIONS(2663), + [anon_sym_let] = ACTIONS(2663), + [anon_sym_loop] = ACTIONS(2663), + [anon_sym_match] = ACTIONS(2663), + [anon_sym_mod] = ACTIONS(2663), + [anon_sym_pub] = ACTIONS(2663), + [anon_sym_return] = ACTIONS(2663), + [anon_sym_static] = ACTIONS(2663), + [anon_sym_struct] = ACTIONS(2663), + [anon_sym_trait] = ACTIONS(2663), + [anon_sym_type] = ACTIONS(2663), + [anon_sym_union] = ACTIONS(2663), + [anon_sym_unsafe] = ACTIONS(2663), + [anon_sym_use] = ACTIONS(2663), + [anon_sym_while] = ACTIONS(2663), + [anon_sym_extern] = ACTIONS(2663), + [anon_sym_yield] = ACTIONS(2663), + [anon_sym_move] = ACTIONS(2663), + [anon_sym_try] = ACTIONS(2663), + [sym_integer_literal] = ACTIONS(2661), + [aux_sym_string_literal_token1] = ACTIONS(2661), + [sym_char_literal] = ACTIONS(2661), + [anon_sym_true] = ACTIONS(2663), + [anon_sym_false] = ACTIONS(2663), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2663), + [sym_super] = ACTIONS(2663), + [sym_crate] = ACTIONS(2663), + [sym_metavariable] = ACTIONS(2661), + [sym__raw_string_literal_start] = ACTIONS(2661), + [sym_float_literal] = ACTIONS(2661), }, [STATE(730)] = { [sym_line_comment] = STATE(730), [sym_block_comment] = STATE(730), - [ts_builtin_sym_end] = ACTIONS(2834), - [sym_identifier] = ACTIONS(2836), - [anon_sym_SEMI] = ACTIONS(2834), - [anon_sym_macro_rules_BANG] = ACTIONS(2834), - [anon_sym_LPAREN] = ACTIONS(2834), - [anon_sym_LBRACK] = ACTIONS(2834), - [anon_sym_LBRACE] = ACTIONS(2834), - [anon_sym_RBRACE] = ACTIONS(2834), - [anon_sym_STAR] = ACTIONS(2834), - [anon_sym_u8] = ACTIONS(2836), - [anon_sym_i8] = ACTIONS(2836), - [anon_sym_u16] = ACTIONS(2836), - [anon_sym_i16] = ACTIONS(2836), - [anon_sym_u32] = ACTIONS(2836), - [anon_sym_i32] = ACTIONS(2836), - [anon_sym_u64] = ACTIONS(2836), - [anon_sym_i64] = ACTIONS(2836), - [anon_sym_u128] = ACTIONS(2836), - [anon_sym_i128] = ACTIONS(2836), - [anon_sym_isize] = ACTIONS(2836), - [anon_sym_usize] = ACTIONS(2836), - [anon_sym_f32] = ACTIONS(2836), - [anon_sym_f64] = ACTIONS(2836), - [anon_sym_bool] = ACTIONS(2836), - [anon_sym_str] = ACTIONS(2836), - [anon_sym_char] = ACTIONS(2836), - [anon_sym_DASH] = ACTIONS(2834), - [anon_sym_BANG] = ACTIONS(2834), - [anon_sym_AMP] = ACTIONS(2834), - [anon_sym_PIPE] = ACTIONS(2834), - [anon_sym_LT] = ACTIONS(2834), - [anon_sym_DOT_DOT] = ACTIONS(2834), - [anon_sym_COLON_COLON] = ACTIONS(2834), - [anon_sym_POUND] = ACTIONS(2834), - [anon_sym_SQUOTE] = ACTIONS(2836), - [anon_sym_async] = ACTIONS(2836), - [anon_sym_break] = ACTIONS(2836), - [anon_sym_const] = ACTIONS(2836), - [anon_sym_continue] = ACTIONS(2836), - [anon_sym_default] = ACTIONS(2836), - [anon_sym_enum] = ACTIONS(2836), - [anon_sym_fn] = ACTIONS(2836), - [anon_sym_for] = ACTIONS(2836), - [anon_sym_gen] = ACTIONS(2836), - [anon_sym_if] = ACTIONS(2836), - [anon_sym_impl] = ACTIONS(2836), - [anon_sym_let] = ACTIONS(2836), - [anon_sym_loop] = ACTIONS(2836), - [anon_sym_match] = ACTIONS(2836), - [anon_sym_mod] = ACTIONS(2836), - [anon_sym_pub] = ACTIONS(2836), - [anon_sym_return] = ACTIONS(2836), - [anon_sym_static] = ACTIONS(2836), - [anon_sym_struct] = ACTIONS(2836), - [anon_sym_trait] = ACTIONS(2836), - [anon_sym_type] = ACTIONS(2836), - [anon_sym_union] = ACTIONS(2836), - [anon_sym_unsafe] = ACTIONS(2836), - [anon_sym_use] = ACTIONS(2836), - [anon_sym_while] = ACTIONS(2836), - [anon_sym_extern] = ACTIONS(2836), - [anon_sym_yield] = ACTIONS(2836), - [anon_sym_move] = ACTIONS(2836), - [anon_sym_try] = ACTIONS(2836), - [sym_integer_literal] = ACTIONS(2834), - [aux_sym_string_literal_token1] = ACTIONS(2834), - [sym_char_literal] = ACTIONS(2834), - [anon_sym_true] = ACTIONS(2836), - [anon_sym_false] = ACTIONS(2836), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2836), - [sym_super] = ACTIONS(2836), - [sym_crate] = ACTIONS(2836), - [sym_metavariable] = ACTIONS(2834), - [sym__raw_string_literal_start] = ACTIONS(2834), - [sym_float_literal] = ACTIONS(2834), + [ts_builtin_sym_end] = ACTIONS(2665), + [sym_identifier] = ACTIONS(2667), + [anon_sym_SEMI] = ACTIONS(2665), + [anon_sym_macro_rules_BANG] = ACTIONS(2665), + [anon_sym_LPAREN] = ACTIONS(2665), + [anon_sym_LBRACK] = ACTIONS(2665), + [anon_sym_LBRACE] = ACTIONS(2665), + [anon_sym_RBRACE] = ACTIONS(2665), + [anon_sym_STAR] = ACTIONS(2665), + [anon_sym_u8] = ACTIONS(2667), + [anon_sym_i8] = ACTIONS(2667), + [anon_sym_u16] = ACTIONS(2667), + [anon_sym_i16] = ACTIONS(2667), + [anon_sym_u32] = ACTIONS(2667), + [anon_sym_i32] = ACTIONS(2667), + [anon_sym_u64] = ACTIONS(2667), + [anon_sym_i64] = ACTIONS(2667), + [anon_sym_u128] = ACTIONS(2667), + [anon_sym_i128] = ACTIONS(2667), + [anon_sym_isize] = ACTIONS(2667), + [anon_sym_usize] = ACTIONS(2667), + [anon_sym_f32] = ACTIONS(2667), + [anon_sym_f64] = ACTIONS(2667), + [anon_sym_bool] = ACTIONS(2667), + [anon_sym_str] = ACTIONS(2667), + [anon_sym_char] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2665), + [anon_sym_AMP] = ACTIONS(2665), + [anon_sym_PIPE] = ACTIONS(2665), + [anon_sym_LT] = ACTIONS(2665), + [anon_sym_DOT_DOT] = ACTIONS(2665), + [anon_sym_COLON_COLON] = ACTIONS(2665), + [anon_sym_POUND] = ACTIONS(2665), + [anon_sym_SQUOTE] = ACTIONS(2667), + [anon_sym_async] = ACTIONS(2667), + [anon_sym_break] = ACTIONS(2667), + [anon_sym_const] = ACTIONS(2667), + [anon_sym_continue] = ACTIONS(2667), + [anon_sym_default] = ACTIONS(2667), + [anon_sym_enum] = ACTIONS(2667), + [anon_sym_fn] = ACTIONS(2667), + [anon_sym_for] = ACTIONS(2667), + [anon_sym_gen] = ACTIONS(2667), + [anon_sym_if] = ACTIONS(2667), + [anon_sym_impl] = ACTIONS(2667), + [anon_sym_let] = ACTIONS(2667), + [anon_sym_loop] = ACTIONS(2667), + [anon_sym_match] = ACTIONS(2667), + [anon_sym_mod] = ACTIONS(2667), + [anon_sym_pub] = ACTIONS(2667), + [anon_sym_return] = ACTIONS(2667), + [anon_sym_static] = ACTIONS(2667), + [anon_sym_struct] = ACTIONS(2667), + [anon_sym_trait] = ACTIONS(2667), + [anon_sym_type] = ACTIONS(2667), + [anon_sym_union] = ACTIONS(2667), + [anon_sym_unsafe] = ACTIONS(2667), + [anon_sym_use] = ACTIONS(2667), + [anon_sym_while] = ACTIONS(2667), + [anon_sym_extern] = ACTIONS(2667), + [anon_sym_yield] = ACTIONS(2667), + [anon_sym_move] = ACTIONS(2667), + [anon_sym_try] = ACTIONS(2667), + [sym_integer_literal] = ACTIONS(2665), + [aux_sym_string_literal_token1] = ACTIONS(2665), + [sym_char_literal] = ACTIONS(2665), + [anon_sym_true] = ACTIONS(2667), + [anon_sym_false] = ACTIONS(2667), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2667), + [sym_super] = ACTIONS(2667), + [sym_crate] = ACTIONS(2667), + [sym_metavariable] = ACTIONS(2665), + [sym__raw_string_literal_start] = ACTIONS(2665), + [sym_float_literal] = ACTIONS(2665), }, [STATE(731)] = { [sym_line_comment] = STATE(731), [sym_block_comment] = STATE(731), - [ts_builtin_sym_end] = ACTIONS(2838), - [sym_identifier] = ACTIONS(2840), - [anon_sym_SEMI] = ACTIONS(2838), - [anon_sym_macro_rules_BANG] = ACTIONS(2838), - [anon_sym_LPAREN] = ACTIONS(2838), - [anon_sym_LBRACK] = ACTIONS(2838), - [anon_sym_LBRACE] = ACTIONS(2838), - [anon_sym_RBRACE] = ACTIONS(2838), - [anon_sym_STAR] = ACTIONS(2838), - [anon_sym_u8] = ACTIONS(2840), - [anon_sym_i8] = ACTIONS(2840), - [anon_sym_u16] = ACTIONS(2840), - [anon_sym_i16] = ACTIONS(2840), - [anon_sym_u32] = ACTIONS(2840), - [anon_sym_i32] = ACTIONS(2840), - [anon_sym_u64] = ACTIONS(2840), - [anon_sym_i64] = ACTIONS(2840), - [anon_sym_u128] = ACTIONS(2840), - [anon_sym_i128] = ACTIONS(2840), - [anon_sym_isize] = ACTIONS(2840), - [anon_sym_usize] = ACTIONS(2840), - [anon_sym_f32] = ACTIONS(2840), - [anon_sym_f64] = ACTIONS(2840), - [anon_sym_bool] = ACTIONS(2840), - [anon_sym_str] = ACTIONS(2840), - [anon_sym_char] = ACTIONS(2840), - [anon_sym_DASH] = ACTIONS(2838), - [anon_sym_BANG] = ACTIONS(2838), - [anon_sym_AMP] = ACTIONS(2838), - [anon_sym_PIPE] = ACTIONS(2838), - [anon_sym_LT] = ACTIONS(2838), - [anon_sym_DOT_DOT] = ACTIONS(2838), - [anon_sym_COLON_COLON] = ACTIONS(2838), - [anon_sym_POUND] = ACTIONS(2838), - [anon_sym_SQUOTE] = ACTIONS(2840), - [anon_sym_async] = ACTIONS(2840), - [anon_sym_break] = ACTIONS(2840), - [anon_sym_const] = ACTIONS(2840), - [anon_sym_continue] = ACTIONS(2840), - [anon_sym_default] = ACTIONS(2840), - [anon_sym_enum] = ACTIONS(2840), - [anon_sym_fn] = ACTIONS(2840), - [anon_sym_for] = ACTIONS(2840), - [anon_sym_gen] = ACTIONS(2840), - [anon_sym_if] = ACTIONS(2840), - [anon_sym_impl] = ACTIONS(2840), - [anon_sym_let] = ACTIONS(2840), - [anon_sym_loop] = ACTIONS(2840), - [anon_sym_match] = ACTIONS(2840), - [anon_sym_mod] = ACTIONS(2840), - [anon_sym_pub] = ACTIONS(2840), - [anon_sym_return] = ACTIONS(2840), - [anon_sym_static] = ACTIONS(2840), - [anon_sym_struct] = ACTIONS(2840), - [anon_sym_trait] = ACTIONS(2840), - [anon_sym_type] = ACTIONS(2840), - [anon_sym_union] = ACTIONS(2840), - [anon_sym_unsafe] = ACTIONS(2840), - [anon_sym_use] = ACTIONS(2840), - [anon_sym_while] = ACTIONS(2840), - [anon_sym_extern] = ACTIONS(2840), - [anon_sym_yield] = ACTIONS(2840), - [anon_sym_move] = ACTIONS(2840), - [anon_sym_try] = ACTIONS(2840), - [sym_integer_literal] = ACTIONS(2838), - [aux_sym_string_literal_token1] = ACTIONS(2838), - [sym_char_literal] = ACTIONS(2838), - [anon_sym_true] = ACTIONS(2840), - [anon_sym_false] = ACTIONS(2840), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2840), - [sym_super] = ACTIONS(2840), - [sym_crate] = ACTIONS(2840), - [sym_metavariable] = ACTIONS(2838), - [sym__raw_string_literal_start] = ACTIONS(2838), - [sym_float_literal] = ACTIONS(2838), + [ts_builtin_sym_end] = ACTIONS(2669), + [sym_identifier] = ACTIONS(2671), + [anon_sym_SEMI] = ACTIONS(2669), + [anon_sym_macro_rules_BANG] = ACTIONS(2669), + [anon_sym_LPAREN] = ACTIONS(2669), + [anon_sym_LBRACK] = ACTIONS(2669), + [anon_sym_LBRACE] = ACTIONS(2669), + [anon_sym_RBRACE] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2669), + [anon_sym_u8] = ACTIONS(2671), + [anon_sym_i8] = ACTIONS(2671), + [anon_sym_u16] = ACTIONS(2671), + [anon_sym_i16] = ACTIONS(2671), + [anon_sym_u32] = ACTIONS(2671), + [anon_sym_i32] = ACTIONS(2671), + [anon_sym_u64] = ACTIONS(2671), + [anon_sym_i64] = ACTIONS(2671), + [anon_sym_u128] = ACTIONS(2671), + [anon_sym_i128] = ACTIONS(2671), + [anon_sym_isize] = ACTIONS(2671), + [anon_sym_usize] = ACTIONS(2671), + [anon_sym_f32] = ACTIONS(2671), + [anon_sym_f64] = ACTIONS(2671), + [anon_sym_bool] = ACTIONS(2671), + [anon_sym_str] = ACTIONS(2671), + [anon_sym_char] = ACTIONS(2671), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_BANG] = ACTIONS(2669), + [anon_sym_AMP] = ACTIONS(2669), + [anon_sym_PIPE] = ACTIONS(2669), + [anon_sym_LT] = ACTIONS(2669), + [anon_sym_DOT_DOT] = ACTIONS(2669), + [anon_sym_COLON_COLON] = ACTIONS(2669), + [anon_sym_POUND] = ACTIONS(2669), + [anon_sym_SQUOTE] = ACTIONS(2671), + [anon_sym_async] = ACTIONS(2671), + [anon_sym_break] = ACTIONS(2671), + [anon_sym_const] = ACTIONS(2671), + [anon_sym_continue] = ACTIONS(2671), + [anon_sym_default] = ACTIONS(2671), + [anon_sym_enum] = ACTIONS(2671), + [anon_sym_fn] = ACTIONS(2671), + [anon_sym_for] = ACTIONS(2671), + [anon_sym_gen] = ACTIONS(2671), + [anon_sym_if] = ACTIONS(2671), + [anon_sym_impl] = ACTIONS(2671), + [anon_sym_let] = ACTIONS(2671), + [anon_sym_loop] = ACTIONS(2671), + [anon_sym_match] = ACTIONS(2671), + [anon_sym_mod] = ACTIONS(2671), + [anon_sym_pub] = ACTIONS(2671), + [anon_sym_return] = ACTIONS(2671), + [anon_sym_static] = ACTIONS(2671), + [anon_sym_struct] = ACTIONS(2671), + [anon_sym_trait] = ACTIONS(2671), + [anon_sym_type] = ACTIONS(2671), + [anon_sym_union] = ACTIONS(2671), + [anon_sym_unsafe] = ACTIONS(2671), + [anon_sym_use] = ACTIONS(2671), + [anon_sym_while] = ACTIONS(2671), + [anon_sym_extern] = ACTIONS(2671), + [anon_sym_yield] = ACTIONS(2671), + [anon_sym_move] = ACTIONS(2671), + [anon_sym_try] = ACTIONS(2671), + [sym_integer_literal] = ACTIONS(2669), + [aux_sym_string_literal_token1] = ACTIONS(2669), + [sym_char_literal] = ACTIONS(2669), + [anon_sym_true] = ACTIONS(2671), + [anon_sym_false] = ACTIONS(2671), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2671), + [sym_super] = ACTIONS(2671), + [sym_crate] = ACTIONS(2671), + [sym_metavariable] = ACTIONS(2669), + [sym__raw_string_literal_start] = ACTIONS(2669), + [sym_float_literal] = ACTIONS(2669), }, [STATE(732)] = { [sym_line_comment] = STATE(732), [sym_block_comment] = STATE(732), - [ts_builtin_sym_end] = ACTIONS(2842), - [sym_identifier] = ACTIONS(2844), - [anon_sym_SEMI] = ACTIONS(2842), - [anon_sym_macro_rules_BANG] = ACTIONS(2842), - [anon_sym_LPAREN] = ACTIONS(2842), - [anon_sym_LBRACK] = ACTIONS(2842), - [anon_sym_LBRACE] = ACTIONS(2842), - [anon_sym_RBRACE] = ACTIONS(2842), - [anon_sym_STAR] = ACTIONS(2842), - [anon_sym_u8] = ACTIONS(2844), - [anon_sym_i8] = ACTIONS(2844), - [anon_sym_u16] = ACTIONS(2844), - [anon_sym_i16] = ACTIONS(2844), - [anon_sym_u32] = ACTIONS(2844), - [anon_sym_i32] = ACTIONS(2844), - [anon_sym_u64] = ACTIONS(2844), - [anon_sym_i64] = ACTIONS(2844), - [anon_sym_u128] = ACTIONS(2844), - [anon_sym_i128] = ACTIONS(2844), - [anon_sym_isize] = ACTIONS(2844), - [anon_sym_usize] = ACTIONS(2844), - [anon_sym_f32] = ACTIONS(2844), - [anon_sym_f64] = ACTIONS(2844), - [anon_sym_bool] = ACTIONS(2844), - [anon_sym_str] = ACTIONS(2844), - [anon_sym_char] = ACTIONS(2844), - [anon_sym_DASH] = ACTIONS(2842), - [anon_sym_BANG] = ACTIONS(2842), - [anon_sym_AMP] = ACTIONS(2842), - [anon_sym_PIPE] = ACTIONS(2842), - [anon_sym_LT] = ACTIONS(2842), - [anon_sym_DOT_DOT] = ACTIONS(2842), - [anon_sym_COLON_COLON] = ACTIONS(2842), - [anon_sym_POUND] = ACTIONS(2842), - [anon_sym_SQUOTE] = ACTIONS(2844), - [anon_sym_async] = ACTIONS(2844), - [anon_sym_break] = ACTIONS(2844), - [anon_sym_const] = ACTIONS(2844), - [anon_sym_continue] = ACTIONS(2844), - [anon_sym_default] = ACTIONS(2844), - [anon_sym_enum] = ACTIONS(2844), - [anon_sym_fn] = ACTIONS(2844), - [anon_sym_for] = ACTIONS(2844), - [anon_sym_gen] = ACTIONS(2844), - [anon_sym_if] = ACTIONS(2844), - [anon_sym_impl] = ACTIONS(2844), - [anon_sym_let] = ACTIONS(2844), - [anon_sym_loop] = ACTIONS(2844), - [anon_sym_match] = ACTIONS(2844), - [anon_sym_mod] = ACTIONS(2844), - [anon_sym_pub] = ACTIONS(2844), - [anon_sym_return] = ACTIONS(2844), - [anon_sym_static] = ACTIONS(2844), - [anon_sym_struct] = ACTIONS(2844), - [anon_sym_trait] = ACTIONS(2844), - [anon_sym_type] = ACTIONS(2844), - [anon_sym_union] = ACTIONS(2844), - [anon_sym_unsafe] = ACTIONS(2844), - [anon_sym_use] = ACTIONS(2844), - [anon_sym_while] = ACTIONS(2844), - [anon_sym_extern] = ACTIONS(2844), - [anon_sym_yield] = ACTIONS(2844), - [anon_sym_move] = ACTIONS(2844), - [anon_sym_try] = ACTIONS(2844), - [sym_integer_literal] = ACTIONS(2842), - [aux_sym_string_literal_token1] = ACTIONS(2842), - [sym_char_literal] = ACTIONS(2842), - [anon_sym_true] = ACTIONS(2844), - [anon_sym_false] = ACTIONS(2844), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2844), - [sym_super] = ACTIONS(2844), - [sym_crate] = ACTIONS(2844), - [sym_metavariable] = ACTIONS(2842), - [sym__raw_string_literal_start] = ACTIONS(2842), - [sym_float_literal] = ACTIONS(2842), + [ts_builtin_sym_end] = ACTIONS(2673), + [sym_identifier] = ACTIONS(2675), + [anon_sym_SEMI] = ACTIONS(2673), + [anon_sym_macro_rules_BANG] = ACTIONS(2673), + [anon_sym_LPAREN] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2673), + [anon_sym_LBRACE] = ACTIONS(2673), + [anon_sym_RBRACE] = ACTIONS(2673), + [anon_sym_STAR] = ACTIONS(2673), + [anon_sym_u8] = ACTIONS(2675), + [anon_sym_i8] = ACTIONS(2675), + [anon_sym_u16] = ACTIONS(2675), + [anon_sym_i16] = ACTIONS(2675), + [anon_sym_u32] = ACTIONS(2675), + [anon_sym_i32] = ACTIONS(2675), + [anon_sym_u64] = ACTIONS(2675), + [anon_sym_i64] = ACTIONS(2675), + [anon_sym_u128] = ACTIONS(2675), + [anon_sym_i128] = ACTIONS(2675), + [anon_sym_isize] = ACTIONS(2675), + [anon_sym_usize] = ACTIONS(2675), + [anon_sym_f32] = ACTIONS(2675), + [anon_sym_f64] = ACTIONS(2675), + [anon_sym_bool] = ACTIONS(2675), + [anon_sym_str] = ACTIONS(2675), + [anon_sym_char] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2673), + [anon_sym_BANG] = ACTIONS(2673), + [anon_sym_AMP] = ACTIONS(2673), + [anon_sym_PIPE] = ACTIONS(2673), + [anon_sym_LT] = ACTIONS(2673), + [anon_sym_DOT_DOT] = ACTIONS(2673), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_POUND] = ACTIONS(2673), + [anon_sym_SQUOTE] = ACTIONS(2675), + [anon_sym_async] = ACTIONS(2675), + [anon_sym_break] = ACTIONS(2675), + [anon_sym_const] = ACTIONS(2675), + [anon_sym_continue] = ACTIONS(2675), + [anon_sym_default] = ACTIONS(2675), + [anon_sym_enum] = ACTIONS(2675), + [anon_sym_fn] = ACTIONS(2675), + [anon_sym_for] = ACTIONS(2675), + [anon_sym_gen] = ACTIONS(2675), + [anon_sym_if] = ACTIONS(2675), + [anon_sym_impl] = ACTIONS(2675), + [anon_sym_let] = ACTIONS(2675), + [anon_sym_loop] = ACTIONS(2675), + [anon_sym_match] = ACTIONS(2675), + [anon_sym_mod] = ACTIONS(2675), + [anon_sym_pub] = ACTIONS(2675), + [anon_sym_return] = ACTIONS(2675), + [anon_sym_static] = ACTIONS(2675), + [anon_sym_struct] = ACTIONS(2675), + [anon_sym_trait] = ACTIONS(2675), + [anon_sym_type] = ACTIONS(2675), + [anon_sym_union] = ACTIONS(2675), + [anon_sym_unsafe] = ACTIONS(2675), + [anon_sym_use] = ACTIONS(2675), + [anon_sym_while] = ACTIONS(2675), + [anon_sym_extern] = ACTIONS(2675), + [anon_sym_yield] = ACTIONS(2675), + [anon_sym_move] = ACTIONS(2675), + [anon_sym_try] = ACTIONS(2675), + [sym_integer_literal] = ACTIONS(2673), + [aux_sym_string_literal_token1] = ACTIONS(2673), + [sym_char_literal] = ACTIONS(2673), + [anon_sym_true] = ACTIONS(2675), + [anon_sym_false] = ACTIONS(2675), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2675), + [sym_super] = ACTIONS(2675), + [sym_crate] = ACTIONS(2675), + [sym_metavariable] = ACTIONS(2673), + [sym__raw_string_literal_start] = ACTIONS(2673), + [sym_float_literal] = ACTIONS(2673), }, [STATE(733)] = { [sym_line_comment] = STATE(733), [sym_block_comment] = STATE(733), - [ts_builtin_sym_end] = ACTIONS(2846), - [sym_identifier] = ACTIONS(2848), - [anon_sym_SEMI] = ACTIONS(2846), - [anon_sym_macro_rules_BANG] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2846), - [anon_sym_LBRACK] = ACTIONS(2846), - [anon_sym_LBRACE] = ACTIONS(2846), - [anon_sym_RBRACE] = ACTIONS(2846), - [anon_sym_STAR] = ACTIONS(2846), - [anon_sym_u8] = ACTIONS(2848), - [anon_sym_i8] = ACTIONS(2848), - [anon_sym_u16] = ACTIONS(2848), - [anon_sym_i16] = ACTIONS(2848), - [anon_sym_u32] = ACTIONS(2848), - [anon_sym_i32] = ACTIONS(2848), - [anon_sym_u64] = ACTIONS(2848), - [anon_sym_i64] = ACTIONS(2848), - [anon_sym_u128] = ACTIONS(2848), - [anon_sym_i128] = ACTIONS(2848), - [anon_sym_isize] = ACTIONS(2848), - [anon_sym_usize] = ACTIONS(2848), - [anon_sym_f32] = ACTIONS(2848), - [anon_sym_f64] = ACTIONS(2848), - [anon_sym_bool] = ACTIONS(2848), - [anon_sym_str] = ACTIONS(2848), - [anon_sym_char] = ACTIONS(2848), - [anon_sym_DASH] = ACTIONS(2846), - [anon_sym_BANG] = ACTIONS(2846), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_PIPE] = ACTIONS(2846), - [anon_sym_LT] = ACTIONS(2846), - [anon_sym_DOT_DOT] = ACTIONS(2846), - [anon_sym_COLON_COLON] = ACTIONS(2846), - [anon_sym_POUND] = ACTIONS(2846), - [anon_sym_SQUOTE] = ACTIONS(2848), - [anon_sym_async] = ACTIONS(2848), - [anon_sym_break] = ACTIONS(2848), - [anon_sym_const] = ACTIONS(2848), - [anon_sym_continue] = ACTIONS(2848), - [anon_sym_default] = ACTIONS(2848), - [anon_sym_enum] = ACTIONS(2848), - [anon_sym_fn] = ACTIONS(2848), - [anon_sym_for] = ACTIONS(2848), - [anon_sym_gen] = ACTIONS(2848), - [anon_sym_if] = ACTIONS(2848), - [anon_sym_impl] = ACTIONS(2848), - [anon_sym_let] = ACTIONS(2848), - [anon_sym_loop] = ACTIONS(2848), - [anon_sym_match] = ACTIONS(2848), - [anon_sym_mod] = ACTIONS(2848), - [anon_sym_pub] = ACTIONS(2848), - [anon_sym_return] = ACTIONS(2848), - [anon_sym_static] = ACTIONS(2848), - [anon_sym_struct] = ACTIONS(2848), - [anon_sym_trait] = ACTIONS(2848), - [anon_sym_type] = ACTIONS(2848), - [anon_sym_union] = ACTIONS(2848), - [anon_sym_unsafe] = ACTIONS(2848), - [anon_sym_use] = ACTIONS(2848), - [anon_sym_while] = ACTIONS(2848), - [anon_sym_extern] = ACTIONS(2848), - [anon_sym_yield] = ACTIONS(2848), - [anon_sym_move] = ACTIONS(2848), - [anon_sym_try] = ACTIONS(2848), - [sym_integer_literal] = ACTIONS(2846), - [aux_sym_string_literal_token1] = ACTIONS(2846), - [sym_char_literal] = ACTIONS(2846), - [anon_sym_true] = ACTIONS(2848), - [anon_sym_false] = ACTIONS(2848), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2848), - [sym_super] = ACTIONS(2848), - [sym_crate] = ACTIONS(2848), - [sym_metavariable] = ACTIONS(2846), - [sym__raw_string_literal_start] = ACTIONS(2846), - [sym_float_literal] = ACTIONS(2846), + [ts_builtin_sym_end] = ACTIONS(1405), + [sym_identifier] = ACTIONS(1407), + [anon_sym_SEMI] = ACTIONS(1405), + [anon_sym_macro_rules_BANG] = ACTIONS(1405), + [anon_sym_LPAREN] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(1405), + [anon_sym_u8] = ACTIONS(1407), + [anon_sym_i8] = ACTIONS(1407), + [anon_sym_u16] = ACTIONS(1407), + [anon_sym_i16] = ACTIONS(1407), + [anon_sym_u32] = ACTIONS(1407), + [anon_sym_i32] = ACTIONS(1407), + [anon_sym_u64] = ACTIONS(1407), + [anon_sym_i64] = ACTIONS(1407), + [anon_sym_u128] = ACTIONS(1407), + [anon_sym_i128] = ACTIONS(1407), + [anon_sym_isize] = ACTIONS(1407), + [anon_sym_usize] = ACTIONS(1407), + [anon_sym_f32] = ACTIONS(1407), + [anon_sym_f64] = ACTIONS(1407), + [anon_sym_bool] = ACTIONS(1407), + [anon_sym_str] = ACTIONS(1407), + [anon_sym_char] = ACTIONS(1407), + [anon_sym_DASH] = ACTIONS(1405), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_PIPE] = ACTIONS(1405), + [anon_sym_LT] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1405), + [anon_sym_COLON_COLON] = ACTIONS(1405), + [anon_sym_POUND] = ACTIONS(1405), + [anon_sym_SQUOTE] = ACTIONS(1407), + [anon_sym_async] = ACTIONS(1407), + [anon_sym_break] = ACTIONS(1407), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_continue] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1407), + [anon_sym_enum] = ACTIONS(1407), + [anon_sym_fn] = ACTIONS(1407), + [anon_sym_for] = ACTIONS(1407), + [anon_sym_gen] = ACTIONS(1407), + [anon_sym_if] = ACTIONS(1407), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_let] = ACTIONS(1407), + [anon_sym_loop] = ACTIONS(1407), + [anon_sym_match] = ACTIONS(1407), + [anon_sym_mod] = ACTIONS(1407), + [anon_sym_pub] = ACTIONS(1407), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_static] = ACTIONS(1407), + [anon_sym_struct] = ACTIONS(1407), + [anon_sym_trait] = ACTIONS(1407), + [anon_sym_type] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1407), + [anon_sym_unsafe] = ACTIONS(1407), + [anon_sym_use] = ACTIONS(1407), + [anon_sym_while] = ACTIONS(1407), + [anon_sym_extern] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1407), + [anon_sym_move] = ACTIONS(1407), + [anon_sym_try] = ACTIONS(1407), + [sym_integer_literal] = ACTIONS(1405), + [aux_sym_string_literal_token1] = ACTIONS(1405), + [sym_char_literal] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1407), + [sym_super] = ACTIONS(1407), + [sym_crate] = ACTIONS(1407), + [sym_metavariable] = ACTIONS(1405), + [sym__raw_string_literal_start] = ACTIONS(1405), + [sym_float_literal] = ACTIONS(1405), }, [STATE(734)] = { [sym_line_comment] = STATE(734), [sym_block_comment] = STATE(734), - [ts_builtin_sym_end] = ACTIONS(2850), - [sym_identifier] = ACTIONS(2852), - [anon_sym_SEMI] = ACTIONS(2850), - [anon_sym_macro_rules_BANG] = ACTIONS(2850), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_LBRACE] = ACTIONS(2850), - [anon_sym_RBRACE] = ACTIONS(2850), - [anon_sym_STAR] = ACTIONS(2850), - [anon_sym_u8] = ACTIONS(2852), - [anon_sym_i8] = ACTIONS(2852), - [anon_sym_u16] = ACTIONS(2852), - [anon_sym_i16] = ACTIONS(2852), - [anon_sym_u32] = ACTIONS(2852), - [anon_sym_i32] = ACTIONS(2852), - [anon_sym_u64] = ACTIONS(2852), - [anon_sym_i64] = ACTIONS(2852), - [anon_sym_u128] = ACTIONS(2852), - [anon_sym_i128] = ACTIONS(2852), - [anon_sym_isize] = ACTIONS(2852), - [anon_sym_usize] = ACTIONS(2852), - [anon_sym_f32] = ACTIONS(2852), - [anon_sym_f64] = ACTIONS(2852), - [anon_sym_bool] = ACTIONS(2852), - [anon_sym_str] = ACTIONS(2852), - [anon_sym_char] = ACTIONS(2852), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_BANG] = ACTIONS(2850), - [anon_sym_AMP] = ACTIONS(2850), - [anon_sym_PIPE] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2850), - [anon_sym_DOT_DOT] = ACTIONS(2850), - [anon_sym_COLON_COLON] = ACTIONS(2850), - [anon_sym_POUND] = ACTIONS(2850), - [anon_sym_SQUOTE] = ACTIONS(2852), - [anon_sym_async] = ACTIONS(2852), - [anon_sym_break] = ACTIONS(2852), - [anon_sym_const] = ACTIONS(2852), - [anon_sym_continue] = ACTIONS(2852), - [anon_sym_default] = ACTIONS(2852), - [anon_sym_enum] = ACTIONS(2852), - [anon_sym_fn] = ACTIONS(2852), - [anon_sym_for] = ACTIONS(2852), - [anon_sym_gen] = ACTIONS(2852), - [anon_sym_if] = ACTIONS(2852), - [anon_sym_impl] = ACTIONS(2852), - [anon_sym_let] = ACTIONS(2852), - [anon_sym_loop] = ACTIONS(2852), - [anon_sym_match] = ACTIONS(2852), - [anon_sym_mod] = ACTIONS(2852), - [anon_sym_pub] = ACTIONS(2852), - [anon_sym_return] = ACTIONS(2852), - [anon_sym_static] = ACTIONS(2852), - [anon_sym_struct] = ACTIONS(2852), - [anon_sym_trait] = ACTIONS(2852), - [anon_sym_type] = ACTIONS(2852), - [anon_sym_union] = ACTIONS(2852), - [anon_sym_unsafe] = ACTIONS(2852), - [anon_sym_use] = ACTIONS(2852), - [anon_sym_while] = ACTIONS(2852), - [anon_sym_extern] = ACTIONS(2852), - [anon_sym_yield] = ACTIONS(2852), - [anon_sym_move] = ACTIONS(2852), - [anon_sym_try] = ACTIONS(2852), - [sym_integer_literal] = ACTIONS(2850), - [aux_sym_string_literal_token1] = ACTIONS(2850), - [sym_char_literal] = ACTIONS(2850), - [anon_sym_true] = ACTIONS(2852), - [anon_sym_false] = ACTIONS(2852), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2852), - [sym_super] = ACTIONS(2852), - [sym_crate] = ACTIONS(2852), - [sym_metavariable] = ACTIONS(2850), - [sym__raw_string_literal_start] = ACTIONS(2850), - [sym_float_literal] = ACTIONS(2850), + [ts_builtin_sym_end] = ACTIONS(2677), + [sym_identifier] = ACTIONS(2679), + [anon_sym_SEMI] = ACTIONS(2677), + [anon_sym_macro_rules_BANG] = ACTIONS(2677), + [anon_sym_LPAREN] = ACTIONS(2677), + [anon_sym_LBRACK] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(2677), + [anon_sym_RBRACE] = ACTIONS(2677), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_u8] = ACTIONS(2679), + [anon_sym_i8] = ACTIONS(2679), + [anon_sym_u16] = ACTIONS(2679), + [anon_sym_i16] = ACTIONS(2679), + [anon_sym_u32] = ACTIONS(2679), + [anon_sym_i32] = ACTIONS(2679), + [anon_sym_u64] = ACTIONS(2679), + [anon_sym_i64] = ACTIONS(2679), + [anon_sym_u128] = ACTIONS(2679), + [anon_sym_i128] = ACTIONS(2679), + [anon_sym_isize] = ACTIONS(2679), + [anon_sym_usize] = ACTIONS(2679), + [anon_sym_f32] = ACTIONS(2679), + [anon_sym_f64] = ACTIONS(2679), + [anon_sym_bool] = ACTIONS(2679), + [anon_sym_str] = ACTIONS(2679), + [anon_sym_char] = ACTIONS(2679), + [anon_sym_DASH] = ACTIONS(2677), + [anon_sym_BANG] = ACTIONS(2677), + [anon_sym_AMP] = ACTIONS(2677), + [anon_sym_PIPE] = ACTIONS(2677), + [anon_sym_LT] = ACTIONS(2677), + [anon_sym_DOT_DOT] = ACTIONS(2677), + [anon_sym_COLON_COLON] = ACTIONS(2677), + [anon_sym_POUND] = ACTIONS(2677), + [anon_sym_SQUOTE] = ACTIONS(2679), + [anon_sym_async] = ACTIONS(2679), + [anon_sym_break] = ACTIONS(2679), + [anon_sym_const] = ACTIONS(2679), + [anon_sym_continue] = ACTIONS(2679), + [anon_sym_default] = ACTIONS(2679), + [anon_sym_enum] = ACTIONS(2679), + [anon_sym_fn] = ACTIONS(2679), + [anon_sym_for] = ACTIONS(2679), + [anon_sym_gen] = ACTIONS(2679), + [anon_sym_if] = ACTIONS(2679), + [anon_sym_impl] = ACTIONS(2679), + [anon_sym_let] = ACTIONS(2679), + [anon_sym_loop] = ACTIONS(2679), + [anon_sym_match] = ACTIONS(2679), + [anon_sym_mod] = ACTIONS(2679), + [anon_sym_pub] = ACTIONS(2679), + [anon_sym_return] = ACTIONS(2679), + [anon_sym_static] = ACTIONS(2679), + [anon_sym_struct] = ACTIONS(2679), + [anon_sym_trait] = ACTIONS(2679), + [anon_sym_type] = ACTIONS(2679), + [anon_sym_union] = ACTIONS(2679), + [anon_sym_unsafe] = ACTIONS(2679), + [anon_sym_use] = ACTIONS(2679), + [anon_sym_while] = ACTIONS(2679), + [anon_sym_extern] = ACTIONS(2679), + [anon_sym_yield] = ACTIONS(2679), + [anon_sym_move] = ACTIONS(2679), + [anon_sym_try] = ACTIONS(2679), + [sym_integer_literal] = ACTIONS(2677), + [aux_sym_string_literal_token1] = ACTIONS(2677), + [sym_char_literal] = ACTIONS(2677), + [anon_sym_true] = ACTIONS(2679), + [anon_sym_false] = ACTIONS(2679), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2679), + [sym_super] = ACTIONS(2679), + [sym_crate] = ACTIONS(2679), + [sym_metavariable] = ACTIONS(2677), + [sym__raw_string_literal_start] = ACTIONS(2677), + [sym_float_literal] = ACTIONS(2677), }, [STATE(735)] = { [sym_line_comment] = STATE(735), [sym_block_comment] = STATE(735), - [ts_builtin_sym_end] = ACTIONS(2854), - [sym_identifier] = ACTIONS(2856), - [anon_sym_SEMI] = ACTIONS(2854), - [anon_sym_macro_rules_BANG] = ACTIONS(2854), - [anon_sym_LPAREN] = ACTIONS(2854), - [anon_sym_LBRACK] = ACTIONS(2854), - [anon_sym_LBRACE] = ACTIONS(2854), - [anon_sym_RBRACE] = ACTIONS(2854), - [anon_sym_STAR] = ACTIONS(2854), - [anon_sym_u8] = ACTIONS(2856), - [anon_sym_i8] = ACTIONS(2856), - [anon_sym_u16] = ACTIONS(2856), - [anon_sym_i16] = ACTIONS(2856), - [anon_sym_u32] = ACTIONS(2856), - [anon_sym_i32] = ACTIONS(2856), - [anon_sym_u64] = ACTIONS(2856), - [anon_sym_i64] = ACTIONS(2856), - [anon_sym_u128] = ACTIONS(2856), - [anon_sym_i128] = ACTIONS(2856), - [anon_sym_isize] = ACTIONS(2856), - [anon_sym_usize] = ACTIONS(2856), - [anon_sym_f32] = ACTIONS(2856), - [anon_sym_f64] = ACTIONS(2856), - [anon_sym_bool] = ACTIONS(2856), - [anon_sym_str] = ACTIONS(2856), - [anon_sym_char] = ACTIONS(2856), - [anon_sym_DASH] = ACTIONS(2854), - [anon_sym_BANG] = ACTIONS(2854), - [anon_sym_AMP] = ACTIONS(2854), - [anon_sym_PIPE] = ACTIONS(2854), - [anon_sym_LT] = ACTIONS(2854), - [anon_sym_DOT_DOT] = ACTIONS(2854), - [anon_sym_COLON_COLON] = ACTIONS(2854), - [anon_sym_POUND] = ACTIONS(2854), - [anon_sym_SQUOTE] = ACTIONS(2856), - [anon_sym_async] = ACTIONS(2856), - [anon_sym_break] = ACTIONS(2856), - [anon_sym_const] = ACTIONS(2856), - [anon_sym_continue] = ACTIONS(2856), - [anon_sym_default] = ACTIONS(2856), - [anon_sym_enum] = ACTIONS(2856), - [anon_sym_fn] = ACTIONS(2856), - [anon_sym_for] = ACTIONS(2856), - [anon_sym_gen] = ACTIONS(2856), - [anon_sym_if] = ACTIONS(2856), - [anon_sym_impl] = ACTIONS(2856), - [anon_sym_let] = ACTIONS(2856), - [anon_sym_loop] = ACTIONS(2856), - [anon_sym_match] = ACTIONS(2856), - [anon_sym_mod] = ACTIONS(2856), - [anon_sym_pub] = ACTIONS(2856), - [anon_sym_return] = ACTIONS(2856), - [anon_sym_static] = ACTIONS(2856), - [anon_sym_struct] = ACTIONS(2856), - [anon_sym_trait] = ACTIONS(2856), - [anon_sym_type] = ACTIONS(2856), - [anon_sym_union] = ACTIONS(2856), - [anon_sym_unsafe] = ACTIONS(2856), - [anon_sym_use] = ACTIONS(2856), - [anon_sym_while] = ACTIONS(2856), - [anon_sym_extern] = ACTIONS(2856), - [anon_sym_yield] = ACTIONS(2856), - [anon_sym_move] = ACTIONS(2856), - [anon_sym_try] = ACTIONS(2856), - [sym_integer_literal] = ACTIONS(2854), - [aux_sym_string_literal_token1] = ACTIONS(2854), - [sym_char_literal] = ACTIONS(2854), - [anon_sym_true] = ACTIONS(2856), - [anon_sym_false] = ACTIONS(2856), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2856), - [sym_super] = ACTIONS(2856), - [sym_crate] = ACTIONS(2856), - [sym_metavariable] = ACTIONS(2854), - [sym__raw_string_literal_start] = ACTIONS(2854), - [sym_float_literal] = ACTIONS(2854), + [ts_builtin_sym_end] = ACTIONS(2681), + [sym_identifier] = ACTIONS(2683), + [anon_sym_SEMI] = ACTIONS(2681), + [anon_sym_macro_rules_BANG] = ACTIONS(2681), + [anon_sym_LPAREN] = ACTIONS(2681), + [anon_sym_LBRACK] = ACTIONS(2681), + [anon_sym_LBRACE] = ACTIONS(2681), + [anon_sym_RBRACE] = ACTIONS(2681), + [anon_sym_STAR] = ACTIONS(2681), + [anon_sym_u8] = ACTIONS(2683), + [anon_sym_i8] = ACTIONS(2683), + [anon_sym_u16] = ACTIONS(2683), + [anon_sym_i16] = ACTIONS(2683), + [anon_sym_u32] = ACTIONS(2683), + [anon_sym_i32] = ACTIONS(2683), + [anon_sym_u64] = ACTIONS(2683), + [anon_sym_i64] = ACTIONS(2683), + [anon_sym_u128] = ACTIONS(2683), + [anon_sym_i128] = ACTIONS(2683), + [anon_sym_isize] = ACTIONS(2683), + [anon_sym_usize] = ACTIONS(2683), + [anon_sym_f32] = ACTIONS(2683), + [anon_sym_f64] = ACTIONS(2683), + [anon_sym_bool] = ACTIONS(2683), + [anon_sym_str] = ACTIONS(2683), + [anon_sym_char] = ACTIONS(2683), + [anon_sym_DASH] = ACTIONS(2681), + [anon_sym_BANG] = ACTIONS(2681), + [anon_sym_AMP] = ACTIONS(2681), + [anon_sym_PIPE] = ACTIONS(2681), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_DOT_DOT] = ACTIONS(2681), + [anon_sym_COLON_COLON] = ACTIONS(2681), + [anon_sym_POUND] = ACTIONS(2681), + [anon_sym_SQUOTE] = ACTIONS(2683), + [anon_sym_async] = ACTIONS(2683), + [anon_sym_break] = ACTIONS(2683), + [anon_sym_const] = ACTIONS(2683), + [anon_sym_continue] = ACTIONS(2683), + [anon_sym_default] = ACTIONS(2683), + [anon_sym_enum] = ACTIONS(2683), + [anon_sym_fn] = ACTIONS(2683), + [anon_sym_for] = ACTIONS(2683), + [anon_sym_gen] = ACTIONS(2683), + [anon_sym_if] = ACTIONS(2683), + [anon_sym_impl] = ACTIONS(2683), + [anon_sym_let] = ACTIONS(2683), + [anon_sym_loop] = ACTIONS(2683), + [anon_sym_match] = ACTIONS(2683), + [anon_sym_mod] = ACTIONS(2683), + [anon_sym_pub] = ACTIONS(2683), + [anon_sym_return] = ACTIONS(2683), + [anon_sym_static] = ACTIONS(2683), + [anon_sym_struct] = ACTIONS(2683), + [anon_sym_trait] = ACTIONS(2683), + [anon_sym_type] = ACTIONS(2683), + [anon_sym_union] = ACTIONS(2683), + [anon_sym_unsafe] = ACTIONS(2683), + [anon_sym_use] = ACTIONS(2683), + [anon_sym_while] = ACTIONS(2683), + [anon_sym_extern] = ACTIONS(2683), + [anon_sym_yield] = ACTIONS(2683), + [anon_sym_move] = ACTIONS(2683), + [anon_sym_try] = ACTIONS(2683), + [sym_integer_literal] = ACTIONS(2681), + [aux_sym_string_literal_token1] = ACTIONS(2681), + [sym_char_literal] = ACTIONS(2681), + [anon_sym_true] = ACTIONS(2683), + [anon_sym_false] = ACTIONS(2683), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2683), + [sym_super] = ACTIONS(2683), + [sym_crate] = ACTIONS(2683), + [sym_metavariable] = ACTIONS(2681), + [sym__raw_string_literal_start] = ACTIONS(2681), + [sym_float_literal] = ACTIONS(2681), }, [STATE(736)] = { [sym_line_comment] = STATE(736), [sym_block_comment] = STATE(736), - [ts_builtin_sym_end] = ACTIONS(2858), - [sym_identifier] = ACTIONS(2860), - [anon_sym_SEMI] = ACTIONS(2858), - [anon_sym_macro_rules_BANG] = ACTIONS(2858), - [anon_sym_LPAREN] = ACTIONS(2858), - [anon_sym_LBRACK] = ACTIONS(2858), - [anon_sym_LBRACE] = ACTIONS(2858), - [anon_sym_RBRACE] = ACTIONS(2858), - [anon_sym_STAR] = ACTIONS(2858), - [anon_sym_u8] = ACTIONS(2860), - [anon_sym_i8] = ACTIONS(2860), - [anon_sym_u16] = ACTIONS(2860), - [anon_sym_i16] = ACTIONS(2860), - [anon_sym_u32] = ACTIONS(2860), - [anon_sym_i32] = ACTIONS(2860), - [anon_sym_u64] = ACTIONS(2860), - [anon_sym_i64] = ACTIONS(2860), - [anon_sym_u128] = ACTIONS(2860), - [anon_sym_i128] = ACTIONS(2860), - [anon_sym_isize] = ACTIONS(2860), - [anon_sym_usize] = ACTIONS(2860), - [anon_sym_f32] = ACTIONS(2860), - [anon_sym_f64] = ACTIONS(2860), - [anon_sym_bool] = ACTIONS(2860), - [anon_sym_str] = ACTIONS(2860), - [anon_sym_char] = ACTIONS(2860), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_BANG] = ACTIONS(2858), - [anon_sym_AMP] = ACTIONS(2858), - [anon_sym_PIPE] = ACTIONS(2858), - [anon_sym_LT] = ACTIONS(2858), - [anon_sym_DOT_DOT] = ACTIONS(2858), - [anon_sym_COLON_COLON] = ACTIONS(2858), - [anon_sym_POUND] = ACTIONS(2858), - [anon_sym_SQUOTE] = ACTIONS(2860), - [anon_sym_async] = ACTIONS(2860), - [anon_sym_break] = ACTIONS(2860), - [anon_sym_const] = ACTIONS(2860), - [anon_sym_continue] = ACTIONS(2860), - [anon_sym_default] = ACTIONS(2860), - [anon_sym_enum] = ACTIONS(2860), - [anon_sym_fn] = ACTIONS(2860), - [anon_sym_for] = ACTIONS(2860), - [anon_sym_gen] = ACTIONS(2860), - [anon_sym_if] = ACTIONS(2860), - [anon_sym_impl] = ACTIONS(2860), - [anon_sym_let] = ACTIONS(2860), - [anon_sym_loop] = ACTIONS(2860), - [anon_sym_match] = ACTIONS(2860), - [anon_sym_mod] = ACTIONS(2860), - [anon_sym_pub] = ACTIONS(2860), - [anon_sym_return] = ACTIONS(2860), - [anon_sym_static] = ACTIONS(2860), - [anon_sym_struct] = ACTIONS(2860), - [anon_sym_trait] = ACTIONS(2860), - [anon_sym_type] = ACTIONS(2860), - [anon_sym_union] = ACTIONS(2860), - [anon_sym_unsafe] = ACTIONS(2860), - [anon_sym_use] = ACTIONS(2860), - [anon_sym_while] = ACTIONS(2860), - [anon_sym_extern] = ACTIONS(2860), - [anon_sym_yield] = ACTIONS(2860), - [anon_sym_move] = ACTIONS(2860), - [anon_sym_try] = ACTIONS(2860), - [sym_integer_literal] = ACTIONS(2858), - [aux_sym_string_literal_token1] = ACTIONS(2858), - [sym_char_literal] = ACTIONS(2858), - [anon_sym_true] = ACTIONS(2860), - [anon_sym_false] = ACTIONS(2860), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2860), - [sym_super] = ACTIONS(2860), - [sym_crate] = ACTIONS(2860), - [sym_metavariable] = ACTIONS(2858), - [sym__raw_string_literal_start] = ACTIONS(2858), - [sym_float_literal] = ACTIONS(2858), + [ts_builtin_sym_end] = ACTIONS(2685), + [sym_identifier] = ACTIONS(2687), + [anon_sym_SEMI] = ACTIONS(2685), + [anon_sym_macro_rules_BANG] = ACTIONS(2685), + [anon_sym_LPAREN] = ACTIONS(2685), + [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(2685), + [anon_sym_RBRACE] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2685), + [anon_sym_u8] = ACTIONS(2687), + [anon_sym_i8] = ACTIONS(2687), + [anon_sym_u16] = ACTIONS(2687), + [anon_sym_i16] = ACTIONS(2687), + [anon_sym_u32] = ACTIONS(2687), + [anon_sym_i32] = ACTIONS(2687), + [anon_sym_u64] = ACTIONS(2687), + [anon_sym_i64] = ACTIONS(2687), + [anon_sym_u128] = ACTIONS(2687), + [anon_sym_i128] = ACTIONS(2687), + [anon_sym_isize] = ACTIONS(2687), + [anon_sym_usize] = ACTIONS(2687), + [anon_sym_f32] = ACTIONS(2687), + [anon_sym_f64] = ACTIONS(2687), + [anon_sym_bool] = ACTIONS(2687), + [anon_sym_str] = ACTIONS(2687), + [anon_sym_char] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_BANG] = ACTIONS(2685), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_PIPE] = ACTIONS(2685), + [anon_sym_LT] = ACTIONS(2685), + [anon_sym_DOT_DOT] = ACTIONS(2685), + [anon_sym_COLON_COLON] = ACTIONS(2685), + [anon_sym_POUND] = ACTIONS(2685), + [anon_sym_SQUOTE] = ACTIONS(2687), + [anon_sym_async] = ACTIONS(2687), + [anon_sym_break] = ACTIONS(2687), + [anon_sym_const] = ACTIONS(2687), + [anon_sym_continue] = ACTIONS(2687), + [anon_sym_default] = ACTIONS(2687), + [anon_sym_enum] = ACTIONS(2687), + [anon_sym_fn] = ACTIONS(2687), + [anon_sym_for] = ACTIONS(2687), + [anon_sym_gen] = ACTIONS(2687), + [anon_sym_if] = ACTIONS(2687), + [anon_sym_impl] = ACTIONS(2687), + [anon_sym_let] = ACTIONS(2687), + [anon_sym_loop] = ACTIONS(2687), + [anon_sym_match] = ACTIONS(2687), + [anon_sym_mod] = ACTIONS(2687), + [anon_sym_pub] = ACTIONS(2687), + [anon_sym_return] = ACTIONS(2687), + [anon_sym_static] = ACTIONS(2687), + [anon_sym_struct] = ACTIONS(2687), + [anon_sym_trait] = ACTIONS(2687), + [anon_sym_type] = ACTIONS(2687), + [anon_sym_union] = ACTIONS(2687), + [anon_sym_unsafe] = ACTIONS(2687), + [anon_sym_use] = ACTIONS(2687), + [anon_sym_while] = ACTIONS(2687), + [anon_sym_extern] = ACTIONS(2687), + [anon_sym_yield] = ACTIONS(2687), + [anon_sym_move] = ACTIONS(2687), + [anon_sym_try] = ACTIONS(2687), + [sym_integer_literal] = ACTIONS(2685), + [aux_sym_string_literal_token1] = ACTIONS(2685), + [sym_char_literal] = ACTIONS(2685), + [anon_sym_true] = ACTIONS(2687), + [anon_sym_false] = ACTIONS(2687), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2687), + [sym_super] = ACTIONS(2687), + [sym_crate] = ACTIONS(2687), + [sym_metavariable] = ACTIONS(2685), + [sym__raw_string_literal_start] = ACTIONS(2685), + [sym_float_literal] = ACTIONS(2685), }, [STATE(737)] = { [sym_line_comment] = STATE(737), [sym_block_comment] = STATE(737), - [ts_builtin_sym_end] = ACTIONS(2862), - [sym_identifier] = ACTIONS(2864), - [anon_sym_SEMI] = ACTIONS(2862), - [anon_sym_macro_rules_BANG] = ACTIONS(2862), - [anon_sym_LPAREN] = ACTIONS(2862), - [anon_sym_LBRACK] = ACTIONS(2862), - [anon_sym_LBRACE] = ACTIONS(2862), - [anon_sym_RBRACE] = ACTIONS(2862), - [anon_sym_STAR] = ACTIONS(2862), - [anon_sym_u8] = ACTIONS(2864), - [anon_sym_i8] = ACTIONS(2864), - [anon_sym_u16] = ACTIONS(2864), - [anon_sym_i16] = ACTIONS(2864), - [anon_sym_u32] = ACTIONS(2864), - [anon_sym_i32] = ACTIONS(2864), - [anon_sym_u64] = ACTIONS(2864), - [anon_sym_i64] = ACTIONS(2864), - [anon_sym_u128] = ACTIONS(2864), - [anon_sym_i128] = ACTIONS(2864), - [anon_sym_isize] = ACTIONS(2864), - [anon_sym_usize] = ACTIONS(2864), - [anon_sym_f32] = ACTIONS(2864), - [anon_sym_f64] = ACTIONS(2864), - [anon_sym_bool] = ACTIONS(2864), - [anon_sym_str] = ACTIONS(2864), - [anon_sym_char] = ACTIONS(2864), - [anon_sym_DASH] = ACTIONS(2862), - [anon_sym_BANG] = ACTIONS(2862), - [anon_sym_AMP] = ACTIONS(2862), - [anon_sym_PIPE] = ACTIONS(2862), - [anon_sym_LT] = ACTIONS(2862), - [anon_sym_DOT_DOT] = ACTIONS(2862), - [anon_sym_COLON_COLON] = ACTIONS(2862), - [anon_sym_POUND] = ACTIONS(2862), - [anon_sym_SQUOTE] = ACTIONS(2864), - [anon_sym_async] = ACTIONS(2864), - [anon_sym_break] = ACTIONS(2864), - [anon_sym_const] = ACTIONS(2864), - [anon_sym_continue] = ACTIONS(2864), - [anon_sym_default] = ACTIONS(2864), - [anon_sym_enum] = ACTIONS(2864), - [anon_sym_fn] = ACTIONS(2864), - [anon_sym_for] = ACTIONS(2864), - [anon_sym_gen] = ACTIONS(2864), - [anon_sym_if] = ACTIONS(2864), - [anon_sym_impl] = ACTIONS(2864), - [anon_sym_let] = ACTIONS(2864), - [anon_sym_loop] = ACTIONS(2864), - [anon_sym_match] = ACTIONS(2864), - [anon_sym_mod] = ACTIONS(2864), - [anon_sym_pub] = ACTIONS(2864), - [anon_sym_return] = ACTIONS(2864), - [anon_sym_static] = ACTIONS(2864), - [anon_sym_struct] = ACTIONS(2864), - [anon_sym_trait] = ACTIONS(2864), - [anon_sym_type] = ACTIONS(2864), - [anon_sym_union] = ACTIONS(2864), - [anon_sym_unsafe] = ACTIONS(2864), - [anon_sym_use] = ACTIONS(2864), - [anon_sym_while] = ACTIONS(2864), - [anon_sym_extern] = ACTIONS(2864), - [anon_sym_yield] = ACTIONS(2864), - [anon_sym_move] = ACTIONS(2864), - [anon_sym_try] = ACTIONS(2864), - [sym_integer_literal] = ACTIONS(2862), - [aux_sym_string_literal_token1] = ACTIONS(2862), - [sym_char_literal] = ACTIONS(2862), - [anon_sym_true] = ACTIONS(2864), - [anon_sym_false] = ACTIONS(2864), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2864), - [sym_super] = ACTIONS(2864), - [sym_crate] = ACTIONS(2864), - [sym_metavariable] = ACTIONS(2862), - [sym__raw_string_literal_start] = ACTIONS(2862), - [sym_float_literal] = ACTIONS(2862), + [ts_builtin_sym_end] = ACTIONS(2689), + [sym_identifier] = ACTIONS(2691), + [anon_sym_SEMI] = ACTIONS(2689), + [anon_sym_macro_rules_BANG] = ACTIONS(2689), + [anon_sym_LPAREN] = ACTIONS(2689), + [anon_sym_LBRACK] = ACTIONS(2689), + [anon_sym_LBRACE] = ACTIONS(2689), + [anon_sym_RBRACE] = ACTIONS(2689), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_u8] = ACTIONS(2691), + [anon_sym_i8] = ACTIONS(2691), + [anon_sym_u16] = ACTIONS(2691), + [anon_sym_i16] = ACTIONS(2691), + [anon_sym_u32] = ACTIONS(2691), + [anon_sym_i32] = ACTIONS(2691), + [anon_sym_u64] = ACTIONS(2691), + [anon_sym_i64] = ACTIONS(2691), + [anon_sym_u128] = ACTIONS(2691), + [anon_sym_i128] = ACTIONS(2691), + [anon_sym_isize] = ACTIONS(2691), + [anon_sym_usize] = ACTIONS(2691), + [anon_sym_f32] = ACTIONS(2691), + [anon_sym_f64] = ACTIONS(2691), + [anon_sym_bool] = ACTIONS(2691), + [anon_sym_str] = ACTIONS(2691), + [anon_sym_char] = ACTIONS(2691), + [anon_sym_DASH] = ACTIONS(2689), + [anon_sym_BANG] = ACTIONS(2689), + [anon_sym_AMP] = ACTIONS(2689), + [anon_sym_PIPE] = ACTIONS(2689), + [anon_sym_LT] = ACTIONS(2689), + [anon_sym_DOT_DOT] = ACTIONS(2689), + [anon_sym_COLON_COLON] = ACTIONS(2689), + [anon_sym_POUND] = ACTIONS(2689), + [anon_sym_SQUOTE] = ACTIONS(2691), + [anon_sym_async] = ACTIONS(2691), + [anon_sym_break] = ACTIONS(2691), + [anon_sym_const] = ACTIONS(2691), + [anon_sym_continue] = ACTIONS(2691), + [anon_sym_default] = ACTIONS(2691), + [anon_sym_enum] = ACTIONS(2691), + [anon_sym_fn] = ACTIONS(2691), + [anon_sym_for] = ACTIONS(2691), + [anon_sym_gen] = ACTIONS(2691), + [anon_sym_if] = ACTIONS(2691), + [anon_sym_impl] = ACTIONS(2691), + [anon_sym_let] = ACTIONS(2691), + [anon_sym_loop] = ACTIONS(2691), + [anon_sym_match] = ACTIONS(2691), + [anon_sym_mod] = ACTIONS(2691), + [anon_sym_pub] = ACTIONS(2691), + [anon_sym_return] = ACTIONS(2691), + [anon_sym_static] = ACTIONS(2691), + [anon_sym_struct] = ACTIONS(2691), + [anon_sym_trait] = ACTIONS(2691), + [anon_sym_type] = ACTIONS(2691), + [anon_sym_union] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(2691), + [anon_sym_use] = ACTIONS(2691), + [anon_sym_while] = ACTIONS(2691), + [anon_sym_extern] = ACTIONS(2691), + [anon_sym_yield] = ACTIONS(2691), + [anon_sym_move] = ACTIONS(2691), + [anon_sym_try] = ACTIONS(2691), + [sym_integer_literal] = ACTIONS(2689), + [aux_sym_string_literal_token1] = ACTIONS(2689), + [sym_char_literal] = ACTIONS(2689), + [anon_sym_true] = ACTIONS(2691), + [anon_sym_false] = ACTIONS(2691), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2691), + [sym_super] = ACTIONS(2691), + [sym_crate] = ACTIONS(2691), + [sym_metavariable] = ACTIONS(2689), + [sym__raw_string_literal_start] = ACTIONS(2689), + [sym_float_literal] = ACTIONS(2689), }, [STATE(738)] = { [sym_line_comment] = STATE(738), [sym_block_comment] = STATE(738), - [ts_builtin_sym_end] = ACTIONS(2866), - [sym_identifier] = ACTIONS(2868), - [anon_sym_SEMI] = ACTIONS(2866), - [anon_sym_macro_rules_BANG] = ACTIONS(2866), - [anon_sym_LPAREN] = ACTIONS(2866), - [anon_sym_LBRACK] = ACTIONS(2866), - [anon_sym_LBRACE] = ACTIONS(2866), - [anon_sym_RBRACE] = ACTIONS(2866), - [anon_sym_STAR] = ACTIONS(2866), - [anon_sym_u8] = ACTIONS(2868), - [anon_sym_i8] = ACTIONS(2868), - [anon_sym_u16] = ACTIONS(2868), - [anon_sym_i16] = ACTIONS(2868), - [anon_sym_u32] = ACTIONS(2868), - [anon_sym_i32] = ACTIONS(2868), - [anon_sym_u64] = ACTIONS(2868), - [anon_sym_i64] = ACTIONS(2868), - [anon_sym_u128] = ACTIONS(2868), - [anon_sym_i128] = ACTIONS(2868), - [anon_sym_isize] = ACTIONS(2868), - [anon_sym_usize] = ACTIONS(2868), - [anon_sym_f32] = ACTIONS(2868), - [anon_sym_f64] = ACTIONS(2868), - [anon_sym_bool] = ACTIONS(2868), - [anon_sym_str] = ACTIONS(2868), - [anon_sym_char] = ACTIONS(2868), - [anon_sym_DASH] = ACTIONS(2866), - [anon_sym_BANG] = ACTIONS(2866), - [anon_sym_AMP] = ACTIONS(2866), - [anon_sym_PIPE] = ACTIONS(2866), - [anon_sym_LT] = ACTIONS(2866), - [anon_sym_DOT_DOT] = ACTIONS(2866), - [anon_sym_COLON_COLON] = ACTIONS(2866), - [anon_sym_POUND] = ACTIONS(2866), - [anon_sym_SQUOTE] = ACTIONS(2868), - [anon_sym_async] = ACTIONS(2868), - [anon_sym_break] = ACTIONS(2868), - [anon_sym_const] = ACTIONS(2868), - [anon_sym_continue] = ACTIONS(2868), - [anon_sym_default] = ACTIONS(2868), - [anon_sym_enum] = ACTIONS(2868), - [anon_sym_fn] = ACTIONS(2868), - [anon_sym_for] = ACTIONS(2868), - [anon_sym_gen] = ACTIONS(2868), - [anon_sym_if] = ACTIONS(2868), - [anon_sym_impl] = ACTIONS(2868), - [anon_sym_let] = ACTIONS(2868), - [anon_sym_loop] = ACTIONS(2868), - [anon_sym_match] = ACTIONS(2868), - [anon_sym_mod] = ACTIONS(2868), - [anon_sym_pub] = ACTIONS(2868), - [anon_sym_return] = ACTIONS(2868), - [anon_sym_static] = ACTIONS(2868), - [anon_sym_struct] = ACTIONS(2868), - [anon_sym_trait] = ACTIONS(2868), - [anon_sym_type] = ACTIONS(2868), - [anon_sym_union] = ACTIONS(2868), - [anon_sym_unsafe] = ACTIONS(2868), - [anon_sym_use] = ACTIONS(2868), - [anon_sym_while] = ACTIONS(2868), - [anon_sym_extern] = ACTIONS(2868), - [anon_sym_yield] = ACTIONS(2868), - [anon_sym_move] = ACTIONS(2868), - [anon_sym_try] = ACTIONS(2868), - [sym_integer_literal] = ACTIONS(2866), - [aux_sym_string_literal_token1] = ACTIONS(2866), - [sym_char_literal] = ACTIONS(2866), - [anon_sym_true] = ACTIONS(2868), - [anon_sym_false] = ACTIONS(2868), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2868), - [sym_super] = ACTIONS(2868), - [sym_crate] = ACTIONS(2868), - [sym_metavariable] = ACTIONS(2866), - [sym__raw_string_literal_start] = ACTIONS(2866), - [sym_float_literal] = ACTIONS(2866), + [ts_builtin_sym_end] = ACTIONS(2693), + [sym_identifier] = ACTIONS(2695), + [anon_sym_SEMI] = ACTIONS(2693), + [anon_sym_macro_rules_BANG] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2693), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_LBRACE] = ACTIONS(2693), + [anon_sym_RBRACE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2693), + [anon_sym_u8] = ACTIONS(2695), + [anon_sym_i8] = ACTIONS(2695), + [anon_sym_u16] = ACTIONS(2695), + [anon_sym_i16] = ACTIONS(2695), + [anon_sym_u32] = ACTIONS(2695), + [anon_sym_i32] = ACTIONS(2695), + [anon_sym_u64] = ACTIONS(2695), + [anon_sym_i64] = ACTIONS(2695), + [anon_sym_u128] = ACTIONS(2695), + [anon_sym_i128] = ACTIONS(2695), + [anon_sym_isize] = ACTIONS(2695), + [anon_sym_usize] = ACTIONS(2695), + [anon_sym_f32] = ACTIONS(2695), + [anon_sym_f64] = ACTIONS(2695), + [anon_sym_bool] = ACTIONS(2695), + [anon_sym_str] = ACTIONS(2695), + [anon_sym_char] = ACTIONS(2695), + [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_BANG] = ACTIONS(2693), + [anon_sym_AMP] = ACTIONS(2693), + [anon_sym_PIPE] = ACTIONS(2693), + [anon_sym_LT] = ACTIONS(2693), + [anon_sym_DOT_DOT] = ACTIONS(2693), + [anon_sym_COLON_COLON] = ACTIONS(2693), + [anon_sym_POUND] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2695), + [anon_sym_async] = ACTIONS(2695), + [anon_sym_break] = ACTIONS(2695), + [anon_sym_const] = ACTIONS(2695), + [anon_sym_continue] = ACTIONS(2695), + [anon_sym_default] = ACTIONS(2695), + [anon_sym_enum] = ACTIONS(2695), + [anon_sym_fn] = ACTIONS(2695), + [anon_sym_for] = ACTIONS(2695), + [anon_sym_gen] = ACTIONS(2695), + [anon_sym_if] = ACTIONS(2695), + [anon_sym_impl] = ACTIONS(2695), + [anon_sym_let] = ACTIONS(2695), + [anon_sym_loop] = ACTIONS(2695), + [anon_sym_match] = ACTIONS(2695), + [anon_sym_mod] = ACTIONS(2695), + [anon_sym_pub] = ACTIONS(2695), + [anon_sym_return] = ACTIONS(2695), + [anon_sym_static] = ACTIONS(2695), + [anon_sym_struct] = ACTIONS(2695), + [anon_sym_trait] = ACTIONS(2695), + [anon_sym_type] = ACTIONS(2695), + [anon_sym_union] = ACTIONS(2695), + [anon_sym_unsafe] = ACTIONS(2695), + [anon_sym_use] = ACTIONS(2695), + [anon_sym_while] = ACTIONS(2695), + [anon_sym_extern] = ACTIONS(2695), + [anon_sym_yield] = ACTIONS(2695), + [anon_sym_move] = ACTIONS(2695), + [anon_sym_try] = ACTIONS(2695), + [sym_integer_literal] = ACTIONS(2693), + [aux_sym_string_literal_token1] = ACTIONS(2693), + [sym_char_literal] = ACTIONS(2693), + [anon_sym_true] = ACTIONS(2695), + [anon_sym_false] = ACTIONS(2695), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2695), + [sym_super] = ACTIONS(2695), + [sym_crate] = ACTIONS(2695), + [sym_metavariable] = ACTIONS(2693), + [sym__raw_string_literal_start] = ACTIONS(2693), + [sym_float_literal] = ACTIONS(2693), }, [STATE(739)] = { [sym_line_comment] = STATE(739), [sym_block_comment] = STATE(739), - [ts_builtin_sym_end] = ACTIONS(2870), - [sym_identifier] = ACTIONS(2872), - [anon_sym_SEMI] = ACTIONS(2870), - [anon_sym_macro_rules_BANG] = ACTIONS(2870), - [anon_sym_LPAREN] = ACTIONS(2870), - [anon_sym_LBRACK] = ACTIONS(2870), - [anon_sym_LBRACE] = ACTIONS(2870), - [anon_sym_RBRACE] = ACTIONS(2870), - [anon_sym_STAR] = ACTIONS(2870), - [anon_sym_u8] = ACTIONS(2872), - [anon_sym_i8] = ACTIONS(2872), - [anon_sym_u16] = ACTIONS(2872), - [anon_sym_i16] = ACTIONS(2872), - [anon_sym_u32] = ACTIONS(2872), - [anon_sym_i32] = ACTIONS(2872), - [anon_sym_u64] = ACTIONS(2872), - [anon_sym_i64] = ACTIONS(2872), - [anon_sym_u128] = ACTIONS(2872), - [anon_sym_i128] = ACTIONS(2872), - [anon_sym_isize] = ACTIONS(2872), - [anon_sym_usize] = ACTIONS(2872), - [anon_sym_f32] = ACTIONS(2872), - [anon_sym_f64] = ACTIONS(2872), - [anon_sym_bool] = ACTIONS(2872), - [anon_sym_str] = ACTIONS(2872), - [anon_sym_char] = ACTIONS(2872), - [anon_sym_DASH] = ACTIONS(2870), - [anon_sym_BANG] = ACTIONS(2870), - [anon_sym_AMP] = ACTIONS(2870), - [anon_sym_PIPE] = ACTIONS(2870), - [anon_sym_LT] = ACTIONS(2870), - [anon_sym_DOT_DOT] = ACTIONS(2870), - [anon_sym_COLON_COLON] = ACTIONS(2870), - [anon_sym_POUND] = ACTIONS(2870), - [anon_sym_SQUOTE] = ACTIONS(2872), - [anon_sym_async] = ACTIONS(2872), - [anon_sym_break] = ACTIONS(2872), - [anon_sym_const] = ACTIONS(2872), - [anon_sym_continue] = ACTIONS(2872), - [anon_sym_default] = ACTIONS(2872), - [anon_sym_enum] = ACTIONS(2872), - [anon_sym_fn] = ACTIONS(2872), - [anon_sym_for] = ACTIONS(2872), - [anon_sym_gen] = ACTIONS(2872), - [anon_sym_if] = ACTIONS(2872), - [anon_sym_impl] = ACTIONS(2872), - [anon_sym_let] = ACTIONS(2872), - [anon_sym_loop] = ACTIONS(2872), - [anon_sym_match] = ACTIONS(2872), - [anon_sym_mod] = ACTIONS(2872), - [anon_sym_pub] = ACTIONS(2872), - [anon_sym_return] = ACTIONS(2872), - [anon_sym_static] = ACTIONS(2872), - [anon_sym_struct] = ACTIONS(2872), - [anon_sym_trait] = ACTIONS(2872), - [anon_sym_type] = ACTIONS(2872), - [anon_sym_union] = ACTIONS(2872), - [anon_sym_unsafe] = ACTIONS(2872), - [anon_sym_use] = ACTIONS(2872), - [anon_sym_while] = ACTIONS(2872), - [anon_sym_extern] = ACTIONS(2872), - [anon_sym_yield] = ACTIONS(2872), - [anon_sym_move] = ACTIONS(2872), - [anon_sym_try] = ACTIONS(2872), - [sym_integer_literal] = ACTIONS(2870), - [aux_sym_string_literal_token1] = ACTIONS(2870), - [sym_char_literal] = ACTIONS(2870), - [anon_sym_true] = ACTIONS(2872), - [anon_sym_false] = ACTIONS(2872), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2872), - [sym_super] = ACTIONS(2872), - [sym_crate] = ACTIONS(2872), - [sym_metavariable] = ACTIONS(2870), - [sym__raw_string_literal_start] = ACTIONS(2870), - [sym_float_literal] = ACTIONS(2870), + [ts_builtin_sym_end] = ACTIONS(2697), + [sym_identifier] = ACTIONS(2699), + [anon_sym_SEMI] = ACTIONS(2697), + [anon_sym_macro_rules_BANG] = ACTIONS(2697), + [anon_sym_LPAREN] = ACTIONS(2697), + [anon_sym_LBRACK] = ACTIONS(2697), + [anon_sym_LBRACE] = ACTIONS(2697), + [anon_sym_RBRACE] = ACTIONS(2697), + [anon_sym_STAR] = ACTIONS(2697), + [anon_sym_u8] = ACTIONS(2699), + [anon_sym_i8] = ACTIONS(2699), + [anon_sym_u16] = ACTIONS(2699), + [anon_sym_i16] = ACTIONS(2699), + [anon_sym_u32] = ACTIONS(2699), + [anon_sym_i32] = ACTIONS(2699), + [anon_sym_u64] = ACTIONS(2699), + [anon_sym_i64] = ACTIONS(2699), + [anon_sym_u128] = ACTIONS(2699), + [anon_sym_i128] = ACTIONS(2699), + [anon_sym_isize] = ACTIONS(2699), + [anon_sym_usize] = ACTIONS(2699), + [anon_sym_f32] = ACTIONS(2699), + [anon_sym_f64] = ACTIONS(2699), + [anon_sym_bool] = ACTIONS(2699), + [anon_sym_str] = ACTIONS(2699), + [anon_sym_char] = ACTIONS(2699), + [anon_sym_DASH] = ACTIONS(2697), + [anon_sym_BANG] = ACTIONS(2697), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_PIPE] = ACTIONS(2697), + [anon_sym_LT] = ACTIONS(2697), + [anon_sym_DOT_DOT] = ACTIONS(2697), + [anon_sym_COLON_COLON] = ACTIONS(2697), + [anon_sym_POUND] = ACTIONS(2697), + [anon_sym_SQUOTE] = ACTIONS(2699), + [anon_sym_async] = ACTIONS(2699), + [anon_sym_break] = ACTIONS(2699), + [anon_sym_const] = ACTIONS(2699), + [anon_sym_continue] = ACTIONS(2699), + [anon_sym_default] = ACTIONS(2699), + [anon_sym_enum] = ACTIONS(2699), + [anon_sym_fn] = ACTIONS(2699), + [anon_sym_for] = ACTIONS(2699), + [anon_sym_gen] = ACTIONS(2699), + [anon_sym_if] = ACTIONS(2699), + [anon_sym_impl] = ACTIONS(2699), + [anon_sym_let] = ACTIONS(2699), + [anon_sym_loop] = ACTIONS(2699), + [anon_sym_match] = ACTIONS(2699), + [anon_sym_mod] = ACTIONS(2699), + [anon_sym_pub] = ACTIONS(2699), + [anon_sym_return] = ACTIONS(2699), + [anon_sym_static] = ACTIONS(2699), + [anon_sym_struct] = ACTIONS(2699), + [anon_sym_trait] = ACTIONS(2699), + [anon_sym_type] = ACTIONS(2699), + [anon_sym_union] = ACTIONS(2699), + [anon_sym_unsafe] = ACTIONS(2699), + [anon_sym_use] = ACTIONS(2699), + [anon_sym_while] = ACTIONS(2699), + [anon_sym_extern] = ACTIONS(2699), + [anon_sym_yield] = ACTIONS(2699), + [anon_sym_move] = ACTIONS(2699), + [anon_sym_try] = ACTIONS(2699), + [sym_integer_literal] = ACTIONS(2697), + [aux_sym_string_literal_token1] = ACTIONS(2697), + [sym_char_literal] = ACTIONS(2697), + [anon_sym_true] = ACTIONS(2699), + [anon_sym_false] = ACTIONS(2699), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2699), + [sym_super] = ACTIONS(2699), + [sym_crate] = ACTIONS(2699), + [sym_metavariable] = ACTIONS(2697), + [sym__raw_string_literal_start] = ACTIONS(2697), + [sym_float_literal] = ACTIONS(2697), }, [STATE(740)] = { [sym_line_comment] = STATE(740), [sym_block_comment] = STATE(740), - [ts_builtin_sym_end] = ACTIONS(2874), - [sym_identifier] = ACTIONS(2876), - [anon_sym_SEMI] = ACTIONS(2874), - [anon_sym_macro_rules_BANG] = ACTIONS(2874), - [anon_sym_LPAREN] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2874), - [anon_sym_LBRACE] = ACTIONS(2874), - [anon_sym_RBRACE] = ACTIONS(2874), - [anon_sym_STAR] = ACTIONS(2874), - [anon_sym_u8] = ACTIONS(2876), - [anon_sym_i8] = ACTIONS(2876), - [anon_sym_u16] = ACTIONS(2876), - [anon_sym_i16] = ACTIONS(2876), - [anon_sym_u32] = ACTIONS(2876), - [anon_sym_i32] = ACTIONS(2876), - [anon_sym_u64] = ACTIONS(2876), - [anon_sym_i64] = ACTIONS(2876), - [anon_sym_u128] = ACTIONS(2876), - [anon_sym_i128] = ACTIONS(2876), - [anon_sym_isize] = ACTIONS(2876), - [anon_sym_usize] = ACTIONS(2876), - [anon_sym_f32] = ACTIONS(2876), - [anon_sym_f64] = ACTIONS(2876), - [anon_sym_bool] = ACTIONS(2876), - [anon_sym_str] = ACTIONS(2876), - [anon_sym_char] = ACTIONS(2876), - [anon_sym_DASH] = ACTIONS(2874), - [anon_sym_BANG] = ACTIONS(2874), - [anon_sym_AMP] = ACTIONS(2874), - [anon_sym_PIPE] = ACTIONS(2874), - [anon_sym_LT] = ACTIONS(2874), - [anon_sym_DOT_DOT] = ACTIONS(2874), - [anon_sym_COLON_COLON] = ACTIONS(2874), - [anon_sym_POUND] = ACTIONS(2874), - [anon_sym_SQUOTE] = ACTIONS(2876), - [anon_sym_async] = ACTIONS(2876), - [anon_sym_break] = ACTIONS(2876), - [anon_sym_const] = ACTIONS(2876), - [anon_sym_continue] = ACTIONS(2876), - [anon_sym_default] = ACTIONS(2876), - [anon_sym_enum] = ACTIONS(2876), - [anon_sym_fn] = ACTIONS(2876), - [anon_sym_for] = ACTIONS(2876), - [anon_sym_gen] = ACTIONS(2876), - [anon_sym_if] = ACTIONS(2876), - [anon_sym_impl] = ACTIONS(2876), - [anon_sym_let] = ACTIONS(2876), - [anon_sym_loop] = ACTIONS(2876), - [anon_sym_match] = ACTIONS(2876), - [anon_sym_mod] = ACTIONS(2876), - [anon_sym_pub] = ACTIONS(2876), - [anon_sym_return] = ACTIONS(2876), - [anon_sym_static] = ACTIONS(2876), - [anon_sym_struct] = ACTIONS(2876), - [anon_sym_trait] = ACTIONS(2876), - [anon_sym_type] = ACTIONS(2876), - [anon_sym_union] = ACTIONS(2876), - [anon_sym_unsafe] = ACTIONS(2876), - [anon_sym_use] = ACTIONS(2876), - [anon_sym_while] = ACTIONS(2876), - [anon_sym_extern] = ACTIONS(2876), - [anon_sym_yield] = ACTIONS(2876), - [anon_sym_move] = ACTIONS(2876), - [anon_sym_try] = ACTIONS(2876), - [sym_integer_literal] = ACTIONS(2874), - [aux_sym_string_literal_token1] = ACTIONS(2874), - [sym_char_literal] = ACTIONS(2874), - [anon_sym_true] = ACTIONS(2876), - [anon_sym_false] = ACTIONS(2876), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2876), - [sym_super] = ACTIONS(2876), - [sym_crate] = ACTIONS(2876), - [sym_metavariable] = ACTIONS(2874), - [sym__raw_string_literal_start] = ACTIONS(2874), - [sym_float_literal] = ACTIONS(2874), + [ts_builtin_sym_end] = ACTIONS(2701), + [sym_identifier] = ACTIONS(2703), + [anon_sym_SEMI] = ACTIONS(2701), + [anon_sym_macro_rules_BANG] = ACTIONS(2701), + [anon_sym_LPAREN] = ACTIONS(2701), + [anon_sym_LBRACK] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2701), + [anon_sym_RBRACE] = ACTIONS(2701), + [anon_sym_STAR] = ACTIONS(2701), + [anon_sym_u8] = ACTIONS(2703), + [anon_sym_i8] = ACTIONS(2703), + [anon_sym_u16] = ACTIONS(2703), + [anon_sym_i16] = ACTIONS(2703), + [anon_sym_u32] = ACTIONS(2703), + [anon_sym_i32] = ACTIONS(2703), + [anon_sym_u64] = ACTIONS(2703), + [anon_sym_i64] = ACTIONS(2703), + [anon_sym_u128] = ACTIONS(2703), + [anon_sym_i128] = ACTIONS(2703), + [anon_sym_isize] = ACTIONS(2703), + [anon_sym_usize] = ACTIONS(2703), + [anon_sym_f32] = ACTIONS(2703), + [anon_sym_f64] = ACTIONS(2703), + [anon_sym_bool] = ACTIONS(2703), + [anon_sym_str] = ACTIONS(2703), + [anon_sym_char] = ACTIONS(2703), + [anon_sym_DASH] = ACTIONS(2701), + [anon_sym_BANG] = ACTIONS(2701), + [anon_sym_AMP] = ACTIONS(2701), + [anon_sym_PIPE] = ACTIONS(2701), + [anon_sym_LT] = ACTIONS(2701), + [anon_sym_DOT_DOT] = ACTIONS(2701), + [anon_sym_COLON_COLON] = ACTIONS(2701), + [anon_sym_POUND] = ACTIONS(2701), + [anon_sym_SQUOTE] = ACTIONS(2703), + [anon_sym_async] = ACTIONS(2703), + [anon_sym_break] = ACTIONS(2703), + [anon_sym_const] = ACTIONS(2703), + [anon_sym_continue] = ACTIONS(2703), + [anon_sym_default] = ACTIONS(2703), + [anon_sym_enum] = ACTIONS(2703), + [anon_sym_fn] = ACTIONS(2703), + [anon_sym_for] = ACTIONS(2703), + [anon_sym_gen] = ACTIONS(2703), + [anon_sym_if] = ACTIONS(2703), + [anon_sym_impl] = ACTIONS(2703), + [anon_sym_let] = ACTIONS(2703), + [anon_sym_loop] = ACTIONS(2703), + [anon_sym_match] = ACTIONS(2703), + [anon_sym_mod] = ACTIONS(2703), + [anon_sym_pub] = ACTIONS(2703), + [anon_sym_return] = ACTIONS(2703), + [anon_sym_static] = ACTIONS(2703), + [anon_sym_struct] = ACTIONS(2703), + [anon_sym_trait] = ACTIONS(2703), + [anon_sym_type] = ACTIONS(2703), + [anon_sym_union] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(2703), + [anon_sym_use] = ACTIONS(2703), + [anon_sym_while] = ACTIONS(2703), + [anon_sym_extern] = ACTIONS(2703), + [anon_sym_yield] = ACTIONS(2703), + [anon_sym_move] = ACTIONS(2703), + [anon_sym_try] = ACTIONS(2703), + [sym_integer_literal] = ACTIONS(2701), + [aux_sym_string_literal_token1] = ACTIONS(2701), + [sym_char_literal] = ACTIONS(2701), + [anon_sym_true] = ACTIONS(2703), + [anon_sym_false] = ACTIONS(2703), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2703), + [sym_super] = ACTIONS(2703), + [sym_crate] = ACTIONS(2703), + [sym_metavariable] = ACTIONS(2701), + [sym__raw_string_literal_start] = ACTIONS(2701), + [sym_float_literal] = ACTIONS(2701), }, [STATE(741)] = { [sym_line_comment] = STATE(741), [sym_block_comment] = STATE(741), - [ts_builtin_sym_end] = ACTIONS(2878), - [sym_identifier] = ACTIONS(2880), - [anon_sym_SEMI] = ACTIONS(2878), - [anon_sym_macro_rules_BANG] = ACTIONS(2878), - [anon_sym_LPAREN] = ACTIONS(2878), - [anon_sym_LBRACK] = ACTIONS(2878), - [anon_sym_LBRACE] = ACTIONS(2878), - [anon_sym_RBRACE] = ACTIONS(2878), - [anon_sym_STAR] = ACTIONS(2878), - [anon_sym_u8] = ACTIONS(2880), - [anon_sym_i8] = ACTIONS(2880), - [anon_sym_u16] = ACTIONS(2880), - [anon_sym_i16] = ACTIONS(2880), - [anon_sym_u32] = ACTIONS(2880), - [anon_sym_i32] = ACTIONS(2880), - [anon_sym_u64] = ACTIONS(2880), - [anon_sym_i64] = ACTIONS(2880), - [anon_sym_u128] = ACTIONS(2880), - [anon_sym_i128] = ACTIONS(2880), - [anon_sym_isize] = ACTIONS(2880), - [anon_sym_usize] = ACTIONS(2880), - [anon_sym_f32] = ACTIONS(2880), - [anon_sym_f64] = ACTIONS(2880), - [anon_sym_bool] = ACTIONS(2880), - [anon_sym_str] = ACTIONS(2880), - [anon_sym_char] = ACTIONS(2880), - [anon_sym_DASH] = ACTIONS(2878), - [anon_sym_BANG] = ACTIONS(2878), - [anon_sym_AMP] = ACTIONS(2878), - [anon_sym_PIPE] = ACTIONS(2878), - [anon_sym_LT] = ACTIONS(2878), - [anon_sym_DOT_DOT] = ACTIONS(2878), - [anon_sym_COLON_COLON] = ACTIONS(2878), - [anon_sym_POUND] = ACTIONS(2878), - [anon_sym_SQUOTE] = ACTIONS(2880), - [anon_sym_async] = ACTIONS(2880), - [anon_sym_break] = ACTIONS(2880), - [anon_sym_const] = ACTIONS(2880), - [anon_sym_continue] = ACTIONS(2880), - [anon_sym_default] = ACTIONS(2880), - [anon_sym_enum] = ACTIONS(2880), - [anon_sym_fn] = ACTIONS(2880), - [anon_sym_for] = ACTIONS(2880), - [anon_sym_gen] = ACTIONS(2880), - [anon_sym_if] = ACTIONS(2880), - [anon_sym_impl] = ACTIONS(2880), - [anon_sym_let] = ACTIONS(2880), - [anon_sym_loop] = ACTIONS(2880), - [anon_sym_match] = ACTIONS(2880), - [anon_sym_mod] = ACTIONS(2880), - [anon_sym_pub] = ACTIONS(2880), - [anon_sym_return] = ACTIONS(2880), - [anon_sym_static] = ACTIONS(2880), - [anon_sym_struct] = ACTIONS(2880), - [anon_sym_trait] = ACTIONS(2880), - [anon_sym_type] = ACTIONS(2880), - [anon_sym_union] = ACTIONS(2880), - [anon_sym_unsafe] = ACTIONS(2880), - [anon_sym_use] = ACTIONS(2880), - [anon_sym_while] = ACTIONS(2880), - [anon_sym_extern] = ACTIONS(2880), - [anon_sym_yield] = ACTIONS(2880), - [anon_sym_move] = ACTIONS(2880), - [anon_sym_try] = ACTIONS(2880), - [sym_integer_literal] = ACTIONS(2878), - [aux_sym_string_literal_token1] = ACTIONS(2878), - [sym_char_literal] = ACTIONS(2878), - [anon_sym_true] = ACTIONS(2880), - [anon_sym_false] = ACTIONS(2880), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2880), - [sym_super] = ACTIONS(2880), - [sym_crate] = ACTIONS(2880), - [sym_metavariable] = ACTIONS(2878), - [sym__raw_string_literal_start] = ACTIONS(2878), - [sym_float_literal] = ACTIONS(2878), + [ts_builtin_sym_end] = ACTIONS(2705), + [sym_identifier] = ACTIONS(2707), + [anon_sym_SEMI] = ACTIONS(2705), + [anon_sym_macro_rules_BANG] = ACTIONS(2705), + [anon_sym_LPAREN] = ACTIONS(2705), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2705), + [anon_sym_RBRACE] = ACTIONS(2705), + [anon_sym_STAR] = ACTIONS(2705), + [anon_sym_u8] = ACTIONS(2707), + [anon_sym_i8] = ACTIONS(2707), + [anon_sym_u16] = ACTIONS(2707), + [anon_sym_i16] = ACTIONS(2707), + [anon_sym_u32] = ACTIONS(2707), + [anon_sym_i32] = ACTIONS(2707), + [anon_sym_u64] = ACTIONS(2707), + [anon_sym_i64] = ACTIONS(2707), + [anon_sym_u128] = ACTIONS(2707), + [anon_sym_i128] = ACTIONS(2707), + [anon_sym_isize] = ACTIONS(2707), + [anon_sym_usize] = ACTIONS(2707), + [anon_sym_f32] = ACTIONS(2707), + [anon_sym_f64] = ACTIONS(2707), + [anon_sym_bool] = ACTIONS(2707), + [anon_sym_str] = ACTIONS(2707), + [anon_sym_char] = ACTIONS(2707), + [anon_sym_DASH] = ACTIONS(2705), + [anon_sym_BANG] = ACTIONS(2705), + [anon_sym_AMP] = ACTIONS(2705), + [anon_sym_PIPE] = ACTIONS(2705), + [anon_sym_LT] = ACTIONS(2705), + [anon_sym_DOT_DOT] = ACTIONS(2705), + [anon_sym_COLON_COLON] = ACTIONS(2705), + [anon_sym_POUND] = ACTIONS(2705), + [anon_sym_SQUOTE] = ACTIONS(2707), + [anon_sym_async] = ACTIONS(2707), + [anon_sym_break] = ACTIONS(2707), + [anon_sym_const] = ACTIONS(2707), + [anon_sym_continue] = ACTIONS(2707), + [anon_sym_default] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2707), + [anon_sym_fn] = ACTIONS(2707), + [anon_sym_for] = ACTIONS(2707), + [anon_sym_gen] = ACTIONS(2707), + [anon_sym_if] = ACTIONS(2707), + [anon_sym_impl] = ACTIONS(2707), + [anon_sym_let] = ACTIONS(2707), + [anon_sym_loop] = ACTIONS(2707), + [anon_sym_match] = ACTIONS(2707), + [anon_sym_mod] = ACTIONS(2707), + [anon_sym_pub] = ACTIONS(2707), + [anon_sym_return] = ACTIONS(2707), + [anon_sym_static] = ACTIONS(2707), + [anon_sym_struct] = ACTIONS(2707), + [anon_sym_trait] = ACTIONS(2707), + [anon_sym_type] = ACTIONS(2707), + [anon_sym_union] = ACTIONS(2707), + [anon_sym_unsafe] = ACTIONS(2707), + [anon_sym_use] = ACTIONS(2707), + [anon_sym_while] = ACTIONS(2707), + [anon_sym_extern] = ACTIONS(2707), + [anon_sym_yield] = ACTIONS(2707), + [anon_sym_move] = ACTIONS(2707), + [anon_sym_try] = ACTIONS(2707), + [sym_integer_literal] = ACTIONS(2705), + [aux_sym_string_literal_token1] = ACTIONS(2705), + [sym_char_literal] = ACTIONS(2705), + [anon_sym_true] = ACTIONS(2707), + [anon_sym_false] = ACTIONS(2707), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2707), + [sym_super] = ACTIONS(2707), + [sym_crate] = ACTIONS(2707), + [sym_metavariable] = ACTIONS(2705), + [sym__raw_string_literal_start] = ACTIONS(2705), + [sym_float_literal] = ACTIONS(2705), }, [STATE(742)] = { [sym_line_comment] = STATE(742), [sym_block_comment] = STATE(742), - [ts_builtin_sym_end] = ACTIONS(2882), - [sym_identifier] = ACTIONS(2884), - [anon_sym_SEMI] = ACTIONS(2882), - [anon_sym_macro_rules_BANG] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2882), - [anon_sym_LBRACE] = ACTIONS(2882), - [anon_sym_RBRACE] = ACTIONS(2882), - [anon_sym_STAR] = ACTIONS(2882), - [anon_sym_u8] = ACTIONS(2884), - [anon_sym_i8] = ACTIONS(2884), - [anon_sym_u16] = ACTIONS(2884), - [anon_sym_i16] = ACTIONS(2884), - [anon_sym_u32] = ACTIONS(2884), - [anon_sym_i32] = ACTIONS(2884), - [anon_sym_u64] = ACTIONS(2884), - [anon_sym_i64] = ACTIONS(2884), - [anon_sym_u128] = ACTIONS(2884), - [anon_sym_i128] = ACTIONS(2884), - [anon_sym_isize] = ACTIONS(2884), - [anon_sym_usize] = ACTIONS(2884), - [anon_sym_f32] = ACTIONS(2884), - [anon_sym_f64] = ACTIONS(2884), - [anon_sym_bool] = ACTIONS(2884), - [anon_sym_str] = ACTIONS(2884), - [anon_sym_char] = ACTIONS(2884), - [anon_sym_DASH] = ACTIONS(2882), - [anon_sym_BANG] = ACTIONS(2882), - [anon_sym_AMP] = ACTIONS(2882), - [anon_sym_PIPE] = ACTIONS(2882), - [anon_sym_LT] = ACTIONS(2882), - [anon_sym_DOT_DOT] = ACTIONS(2882), - [anon_sym_COLON_COLON] = ACTIONS(2882), - [anon_sym_POUND] = ACTIONS(2882), - [anon_sym_SQUOTE] = ACTIONS(2884), - [anon_sym_async] = ACTIONS(2884), - [anon_sym_break] = ACTIONS(2884), - [anon_sym_const] = ACTIONS(2884), - [anon_sym_continue] = ACTIONS(2884), - [anon_sym_default] = ACTIONS(2884), - [anon_sym_enum] = ACTIONS(2884), - [anon_sym_fn] = ACTIONS(2884), - [anon_sym_for] = ACTIONS(2884), - [anon_sym_gen] = ACTIONS(2884), - [anon_sym_if] = ACTIONS(2884), - [anon_sym_impl] = ACTIONS(2884), - [anon_sym_let] = ACTIONS(2884), - [anon_sym_loop] = ACTIONS(2884), - [anon_sym_match] = ACTIONS(2884), - [anon_sym_mod] = ACTIONS(2884), - [anon_sym_pub] = ACTIONS(2884), - [anon_sym_return] = ACTIONS(2884), - [anon_sym_static] = ACTIONS(2884), - [anon_sym_struct] = ACTIONS(2884), - [anon_sym_trait] = ACTIONS(2884), - [anon_sym_type] = ACTIONS(2884), - [anon_sym_union] = ACTIONS(2884), - [anon_sym_unsafe] = ACTIONS(2884), - [anon_sym_use] = ACTIONS(2884), - [anon_sym_while] = ACTIONS(2884), - [anon_sym_extern] = ACTIONS(2884), - [anon_sym_yield] = ACTIONS(2884), - [anon_sym_move] = ACTIONS(2884), - [anon_sym_try] = ACTIONS(2884), - [sym_integer_literal] = ACTIONS(2882), - [aux_sym_string_literal_token1] = ACTIONS(2882), - [sym_char_literal] = ACTIONS(2882), - [anon_sym_true] = ACTIONS(2884), - [anon_sym_false] = ACTIONS(2884), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2884), - [sym_super] = ACTIONS(2884), - [sym_crate] = ACTIONS(2884), - [sym_metavariable] = ACTIONS(2882), - [sym__raw_string_literal_start] = ACTIONS(2882), - [sym_float_literal] = ACTIONS(2882), + [ts_builtin_sym_end] = ACTIONS(2709), + [sym_identifier] = ACTIONS(2711), + [anon_sym_SEMI] = ACTIONS(2709), + [anon_sym_macro_rules_BANG] = ACTIONS(2709), + [anon_sym_LPAREN] = ACTIONS(2709), + [anon_sym_LBRACK] = ACTIONS(2709), + [anon_sym_LBRACE] = ACTIONS(2709), + [anon_sym_RBRACE] = ACTIONS(2709), + [anon_sym_STAR] = ACTIONS(2709), + [anon_sym_u8] = ACTIONS(2711), + [anon_sym_i8] = ACTIONS(2711), + [anon_sym_u16] = ACTIONS(2711), + [anon_sym_i16] = ACTIONS(2711), + [anon_sym_u32] = ACTIONS(2711), + [anon_sym_i32] = ACTIONS(2711), + [anon_sym_u64] = ACTIONS(2711), + [anon_sym_i64] = ACTIONS(2711), + [anon_sym_u128] = ACTIONS(2711), + [anon_sym_i128] = ACTIONS(2711), + [anon_sym_isize] = ACTIONS(2711), + [anon_sym_usize] = ACTIONS(2711), + [anon_sym_f32] = ACTIONS(2711), + [anon_sym_f64] = ACTIONS(2711), + [anon_sym_bool] = ACTIONS(2711), + [anon_sym_str] = ACTIONS(2711), + [anon_sym_char] = ACTIONS(2711), + [anon_sym_DASH] = ACTIONS(2709), + [anon_sym_BANG] = ACTIONS(2709), + [anon_sym_AMP] = ACTIONS(2709), + [anon_sym_PIPE] = ACTIONS(2709), + [anon_sym_LT] = ACTIONS(2709), + [anon_sym_DOT_DOT] = ACTIONS(2709), + [anon_sym_COLON_COLON] = ACTIONS(2709), + [anon_sym_POUND] = ACTIONS(2709), + [anon_sym_SQUOTE] = ACTIONS(2711), + [anon_sym_async] = ACTIONS(2711), + [anon_sym_break] = ACTIONS(2711), + [anon_sym_const] = ACTIONS(2711), + [anon_sym_continue] = ACTIONS(2711), + [anon_sym_default] = ACTIONS(2711), + [anon_sym_enum] = ACTIONS(2711), + [anon_sym_fn] = ACTIONS(2711), + [anon_sym_for] = ACTIONS(2711), + [anon_sym_gen] = ACTIONS(2711), + [anon_sym_if] = ACTIONS(2711), + [anon_sym_impl] = ACTIONS(2711), + [anon_sym_let] = ACTIONS(2711), + [anon_sym_loop] = ACTIONS(2711), + [anon_sym_match] = ACTIONS(2711), + [anon_sym_mod] = ACTIONS(2711), + [anon_sym_pub] = ACTIONS(2711), + [anon_sym_return] = ACTIONS(2711), + [anon_sym_static] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2711), + [anon_sym_trait] = ACTIONS(2711), + [anon_sym_type] = ACTIONS(2711), + [anon_sym_union] = ACTIONS(2711), + [anon_sym_unsafe] = ACTIONS(2711), + [anon_sym_use] = ACTIONS(2711), + [anon_sym_while] = ACTIONS(2711), + [anon_sym_extern] = ACTIONS(2711), + [anon_sym_yield] = ACTIONS(2711), + [anon_sym_move] = ACTIONS(2711), + [anon_sym_try] = ACTIONS(2711), + [sym_integer_literal] = ACTIONS(2709), + [aux_sym_string_literal_token1] = ACTIONS(2709), + [sym_char_literal] = ACTIONS(2709), + [anon_sym_true] = ACTIONS(2711), + [anon_sym_false] = ACTIONS(2711), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2711), + [sym_super] = ACTIONS(2711), + [sym_crate] = ACTIONS(2711), + [sym_metavariable] = ACTIONS(2709), + [sym__raw_string_literal_start] = ACTIONS(2709), + [sym_float_literal] = ACTIONS(2709), }, [STATE(743)] = { [sym_line_comment] = STATE(743), [sym_block_comment] = STATE(743), - [ts_builtin_sym_end] = ACTIONS(2886), - [sym_identifier] = ACTIONS(2888), - [anon_sym_SEMI] = ACTIONS(2886), - [anon_sym_macro_rules_BANG] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2886), - [anon_sym_LBRACK] = ACTIONS(2886), - [anon_sym_LBRACE] = ACTIONS(2886), - [anon_sym_RBRACE] = ACTIONS(2886), - [anon_sym_STAR] = ACTIONS(2886), - [anon_sym_u8] = ACTIONS(2888), - [anon_sym_i8] = ACTIONS(2888), - [anon_sym_u16] = ACTIONS(2888), - [anon_sym_i16] = ACTIONS(2888), - [anon_sym_u32] = ACTIONS(2888), - [anon_sym_i32] = ACTIONS(2888), - [anon_sym_u64] = ACTIONS(2888), - [anon_sym_i64] = ACTIONS(2888), - [anon_sym_u128] = ACTIONS(2888), - [anon_sym_i128] = ACTIONS(2888), - [anon_sym_isize] = ACTIONS(2888), - [anon_sym_usize] = ACTIONS(2888), - [anon_sym_f32] = ACTIONS(2888), - [anon_sym_f64] = ACTIONS(2888), - [anon_sym_bool] = ACTIONS(2888), - [anon_sym_str] = ACTIONS(2888), - [anon_sym_char] = ACTIONS(2888), - [anon_sym_DASH] = ACTIONS(2886), - [anon_sym_BANG] = ACTIONS(2886), - [anon_sym_AMP] = ACTIONS(2886), - [anon_sym_PIPE] = ACTIONS(2886), - [anon_sym_LT] = ACTIONS(2886), - [anon_sym_DOT_DOT] = ACTIONS(2886), - [anon_sym_COLON_COLON] = ACTIONS(2886), - [anon_sym_POUND] = ACTIONS(2886), - [anon_sym_SQUOTE] = ACTIONS(2888), - [anon_sym_async] = ACTIONS(2888), - [anon_sym_break] = ACTIONS(2888), - [anon_sym_const] = ACTIONS(2888), - [anon_sym_continue] = ACTIONS(2888), - [anon_sym_default] = ACTIONS(2888), - [anon_sym_enum] = ACTIONS(2888), - [anon_sym_fn] = ACTIONS(2888), - [anon_sym_for] = ACTIONS(2888), - [anon_sym_gen] = ACTIONS(2888), - [anon_sym_if] = ACTIONS(2888), - [anon_sym_impl] = ACTIONS(2888), - [anon_sym_let] = ACTIONS(2888), - [anon_sym_loop] = ACTIONS(2888), - [anon_sym_match] = ACTIONS(2888), - [anon_sym_mod] = ACTIONS(2888), - [anon_sym_pub] = ACTIONS(2888), - [anon_sym_return] = ACTIONS(2888), - [anon_sym_static] = ACTIONS(2888), - [anon_sym_struct] = ACTIONS(2888), - [anon_sym_trait] = ACTIONS(2888), - [anon_sym_type] = ACTIONS(2888), - [anon_sym_union] = ACTIONS(2888), - [anon_sym_unsafe] = ACTIONS(2888), - [anon_sym_use] = ACTIONS(2888), - [anon_sym_while] = ACTIONS(2888), - [anon_sym_extern] = ACTIONS(2888), - [anon_sym_yield] = ACTIONS(2888), - [anon_sym_move] = ACTIONS(2888), - [anon_sym_try] = ACTIONS(2888), - [sym_integer_literal] = ACTIONS(2886), - [aux_sym_string_literal_token1] = ACTIONS(2886), - [sym_char_literal] = ACTIONS(2886), - [anon_sym_true] = ACTIONS(2888), - [anon_sym_false] = ACTIONS(2888), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2888), - [sym_super] = ACTIONS(2888), - [sym_crate] = ACTIONS(2888), - [sym_metavariable] = ACTIONS(2886), - [sym__raw_string_literal_start] = ACTIONS(2886), - [sym_float_literal] = ACTIONS(2886), + [ts_builtin_sym_end] = ACTIONS(2713), + [sym_identifier] = ACTIONS(2715), + [anon_sym_SEMI] = ACTIONS(2713), + [anon_sym_macro_rules_BANG] = ACTIONS(2713), + [anon_sym_LPAREN] = ACTIONS(2713), + [anon_sym_LBRACK] = ACTIONS(2713), + [anon_sym_LBRACE] = ACTIONS(2713), + [anon_sym_RBRACE] = ACTIONS(2713), + [anon_sym_STAR] = ACTIONS(2713), + [anon_sym_u8] = ACTIONS(2715), + [anon_sym_i8] = ACTIONS(2715), + [anon_sym_u16] = ACTIONS(2715), + [anon_sym_i16] = ACTIONS(2715), + [anon_sym_u32] = ACTIONS(2715), + [anon_sym_i32] = ACTIONS(2715), + [anon_sym_u64] = ACTIONS(2715), + [anon_sym_i64] = ACTIONS(2715), + [anon_sym_u128] = ACTIONS(2715), + [anon_sym_i128] = ACTIONS(2715), + [anon_sym_isize] = ACTIONS(2715), + [anon_sym_usize] = ACTIONS(2715), + [anon_sym_f32] = ACTIONS(2715), + [anon_sym_f64] = ACTIONS(2715), + [anon_sym_bool] = ACTIONS(2715), + [anon_sym_str] = ACTIONS(2715), + [anon_sym_char] = ACTIONS(2715), + [anon_sym_DASH] = ACTIONS(2713), + [anon_sym_BANG] = ACTIONS(2713), + [anon_sym_AMP] = ACTIONS(2713), + [anon_sym_PIPE] = ACTIONS(2713), + [anon_sym_LT] = ACTIONS(2713), + [anon_sym_DOT_DOT] = ACTIONS(2713), + [anon_sym_COLON_COLON] = ACTIONS(2713), + [anon_sym_POUND] = ACTIONS(2713), + [anon_sym_SQUOTE] = ACTIONS(2715), + [anon_sym_async] = ACTIONS(2715), + [anon_sym_break] = ACTIONS(2715), + [anon_sym_const] = ACTIONS(2715), + [anon_sym_continue] = ACTIONS(2715), + [anon_sym_default] = ACTIONS(2715), + [anon_sym_enum] = ACTIONS(2715), + [anon_sym_fn] = ACTIONS(2715), + [anon_sym_for] = ACTIONS(2715), + [anon_sym_gen] = ACTIONS(2715), + [anon_sym_if] = ACTIONS(2715), + [anon_sym_impl] = ACTIONS(2715), + [anon_sym_let] = ACTIONS(2715), + [anon_sym_loop] = ACTIONS(2715), + [anon_sym_match] = ACTIONS(2715), + [anon_sym_mod] = ACTIONS(2715), + [anon_sym_pub] = ACTIONS(2715), + [anon_sym_return] = ACTIONS(2715), + [anon_sym_static] = ACTIONS(2715), + [anon_sym_struct] = ACTIONS(2715), + [anon_sym_trait] = ACTIONS(2715), + [anon_sym_type] = ACTIONS(2715), + [anon_sym_union] = ACTIONS(2715), + [anon_sym_unsafe] = ACTIONS(2715), + [anon_sym_use] = ACTIONS(2715), + [anon_sym_while] = ACTIONS(2715), + [anon_sym_extern] = ACTIONS(2715), + [anon_sym_yield] = ACTIONS(2715), + [anon_sym_move] = ACTIONS(2715), + [anon_sym_try] = ACTIONS(2715), + [sym_integer_literal] = ACTIONS(2713), + [aux_sym_string_literal_token1] = ACTIONS(2713), + [sym_char_literal] = ACTIONS(2713), + [anon_sym_true] = ACTIONS(2715), + [anon_sym_false] = ACTIONS(2715), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2715), + [sym_super] = ACTIONS(2715), + [sym_crate] = ACTIONS(2715), + [sym_metavariable] = ACTIONS(2713), + [sym__raw_string_literal_start] = ACTIONS(2713), + [sym_float_literal] = ACTIONS(2713), }, [STATE(744)] = { [sym_line_comment] = STATE(744), [sym_block_comment] = STATE(744), - [ts_builtin_sym_end] = ACTIONS(2890), - [sym_identifier] = ACTIONS(2892), - [anon_sym_SEMI] = ACTIONS(2890), - [anon_sym_macro_rules_BANG] = ACTIONS(2890), - [anon_sym_LPAREN] = ACTIONS(2890), - [anon_sym_LBRACK] = ACTIONS(2890), - [anon_sym_LBRACE] = ACTIONS(2890), - [anon_sym_RBRACE] = ACTIONS(2890), - [anon_sym_STAR] = ACTIONS(2890), - [anon_sym_u8] = ACTIONS(2892), - [anon_sym_i8] = ACTIONS(2892), - [anon_sym_u16] = ACTIONS(2892), - [anon_sym_i16] = ACTIONS(2892), - [anon_sym_u32] = ACTIONS(2892), - [anon_sym_i32] = ACTIONS(2892), - [anon_sym_u64] = ACTIONS(2892), - [anon_sym_i64] = ACTIONS(2892), - [anon_sym_u128] = ACTIONS(2892), - [anon_sym_i128] = ACTIONS(2892), - [anon_sym_isize] = ACTIONS(2892), - [anon_sym_usize] = ACTIONS(2892), - [anon_sym_f32] = ACTIONS(2892), - [anon_sym_f64] = ACTIONS(2892), - [anon_sym_bool] = ACTIONS(2892), - [anon_sym_str] = ACTIONS(2892), - [anon_sym_char] = ACTIONS(2892), - [anon_sym_DASH] = ACTIONS(2890), - [anon_sym_BANG] = ACTIONS(2890), - [anon_sym_AMP] = ACTIONS(2890), - [anon_sym_PIPE] = ACTIONS(2890), - [anon_sym_LT] = ACTIONS(2890), - [anon_sym_DOT_DOT] = ACTIONS(2890), - [anon_sym_COLON_COLON] = ACTIONS(2890), - [anon_sym_POUND] = ACTIONS(2890), - [anon_sym_SQUOTE] = ACTIONS(2892), - [anon_sym_async] = ACTIONS(2892), - [anon_sym_break] = ACTIONS(2892), - [anon_sym_const] = ACTIONS(2892), - [anon_sym_continue] = ACTIONS(2892), - [anon_sym_default] = ACTIONS(2892), - [anon_sym_enum] = ACTIONS(2892), - [anon_sym_fn] = ACTIONS(2892), - [anon_sym_for] = ACTIONS(2892), - [anon_sym_gen] = ACTIONS(2892), - [anon_sym_if] = ACTIONS(2892), - [anon_sym_impl] = ACTIONS(2892), - [anon_sym_let] = ACTIONS(2892), - [anon_sym_loop] = ACTIONS(2892), - [anon_sym_match] = ACTIONS(2892), - [anon_sym_mod] = ACTIONS(2892), - [anon_sym_pub] = ACTIONS(2892), - [anon_sym_return] = ACTIONS(2892), - [anon_sym_static] = ACTIONS(2892), - [anon_sym_struct] = ACTIONS(2892), - [anon_sym_trait] = ACTIONS(2892), - [anon_sym_type] = ACTIONS(2892), - [anon_sym_union] = ACTIONS(2892), - [anon_sym_unsafe] = ACTIONS(2892), - [anon_sym_use] = ACTIONS(2892), - [anon_sym_while] = ACTIONS(2892), - [anon_sym_extern] = ACTIONS(2892), - [anon_sym_yield] = ACTIONS(2892), - [anon_sym_move] = ACTIONS(2892), - [anon_sym_try] = ACTIONS(2892), - [sym_integer_literal] = ACTIONS(2890), - [aux_sym_string_literal_token1] = ACTIONS(2890), - [sym_char_literal] = ACTIONS(2890), - [anon_sym_true] = ACTIONS(2892), - [anon_sym_false] = ACTIONS(2892), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2892), - [sym_super] = ACTIONS(2892), - [sym_crate] = ACTIONS(2892), - [sym_metavariable] = ACTIONS(2890), - [sym__raw_string_literal_start] = ACTIONS(2890), - [sym_float_literal] = ACTIONS(2890), + [ts_builtin_sym_end] = ACTIONS(2717), + [sym_identifier] = ACTIONS(2719), + [anon_sym_SEMI] = ACTIONS(2717), + [anon_sym_macro_rules_BANG] = ACTIONS(2717), + [anon_sym_LPAREN] = ACTIONS(2717), + [anon_sym_LBRACK] = ACTIONS(2717), + [anon_sym_LBRACE] = ACTIONS(2717), + [anon_sym_RBRACE] = ACTIONS(2717), + [anon_sym_STAR] = ACTIONS(2717), + [anon_sym_u8] = ACTIONS(2719), + [anon_sym_i8] = ACTIONS(2719), + [anon_sym_u16] = ACTIONS(2719), + [anon_sym_i16] = ACTIONS(2719), + [anon_sym_u32] = ACTIONS(2719), + [anon_sym_i32] = ACTIONS(2719), + [anon_sym_u64] = ACTIONS(2719), + [anon_sym_i64] = ACTIONS(2719), + [anon_sym_u128] = ACTIONS(2719), + [anon_sym_i128] = ACTIONS(2719), + [anon_sym_isize] = ACTIONS(2719), + [anon_sym_usize] = ACTIONS(2719), + [anon_sym_f32] = ACTIONS(2719), + [anon_sym_f64] = ACTIONS(2719), + [anon_sym_bool] = ACTIONS(2719), + [anon_sym_str] = ACTIONS(2719), + [anon_sym_char] = ACTIONS(2719), + [anon_sym_DASH] = ACTIONS(2717), + [anon_sym_BANG] = ACTIONS(2717), + [anon_sym_AMP] = ACTIONS(2717), + [anon_sym_PIPE] = ACTIONS(2717), + [anon_sym_LT] = ACTIONS(2717), + [anon_sym_DOT_DOT] = ACTIONS(2717), + [anon_sym_COLON_COLON] = ACTIONS(2717), + [anon_sym_POUND] = ACTIONS(2717), + [anon_sym_SQUOTE] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_break] = ACTIONS(2719), + [anon_sym_const] = ACTIONS(2719), + [anon_sym_continue] = ACTIONS(2719), + [anon_sym_default] = ACTIONS(2719), + [anon_sym_enum] = ACTIONS(2719), + [anon_sym_fn] = ACTIONS(2719), + [anon_sym_for] = ACTIONS(2719), + [anon_sym_gen] = ACTIONS(2719), + [anon_sym_if] = ACTIONS(2719), + [anon_sym_impl] = ACTIONS(2719), + [anon_sym_let] = ACTIONS(2719), + [anon_sym_loop] = ACTIONS(2719), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_mod] = ACTIONS(2719), + [anon_sym_pub] = ACTIONS(2719), + [anon_sym_return] = ACTIONS(2719), + [anon_sym_static] = ACTIONS(2719), + [anon_sym_struct] = ACTIONS(2719), + [anon_sym_trait] = ACTIONS(2719), + [anon_sym_type] = ACTIONS(2719), + [anon_sym_union] = ACTIONS(2719), + [anon_sym_unsafe] = ACTIONS(2719), + [anon_sym_use] = ACTIONS(2719), + [anon_sym_while] = ACTIONS(2719), + [anon_sym_extern] = ACTIONS(2719), + [anon_sym_yield] = ACTIONS(2719), + [anon_sym_move] = ACTIONS(2719), + [anon_sym_try] = ACTIONS(2719), + [sym_integer_literal] = ACTIONS(2717), + [aux_sym_string_literal_token1] = ACTIONS(2717), + [sym_char_literal] = ACTIONS(2717), + [anon_sym_true] = ACTIONS(2719), + [anon_sym_false] = ACTIONS(2719), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2719), + [sym_super] = ACTIONS(2719), + [sym_crate] = ACTIONS(2719), + [sym_metavariable] = ACTIONS(2717), + [sym__raw_string_literal_start] = ACTIONS(2717), + [sym_float_literal] = ACTIONS(2717), }, [STATE(745)] = { [sym_line_comment] = STATE(745), [sym_block_comment] = STATE(745), - [ts_builtin_sym_end] = ACTIONS(2894), - [sym_identifier] = ACTIONS(2896), - [anon_sym_SEMI] = ACTIONS(2894), - [anon_sym_macro_rules_BANG] = ACTIONS(2894), - [anon_sym_LPAREN] = ACTIONS(2894), - [anon_sym_LBRACK] = ACTIONS(2894), - [anon_sym_LBRACE] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(2894), - [anon_sym_STAR] = ACTIONS(2894), - [anon_sym_u8] = ACTIONS(2896), - [anon_sym_i8] = ACTIONS(2896), - [anon_sym_u16] = ACTIONS(2896), - [anon_sym_i16] = ACTIONS(2896), - [anon_sym_u32] = ACTIONS(2896), - [anon_sym_i32] = ACTIONS(2896), - [anon_sym_u64] = ACTIONS(2896), - [anon_sym_i64] = ACTIONS(2896), - [anon_sym_u128] = ACTIONS(2896), - [anon_sym_i128] = ACTIONS(2896), - [anon_sym_isize] = ACTIONS(2896), - [anon_sym_usize] = ACTIONS(2896), - [anon_sym_f32] = ACTIONS(2896), - [anon_sym_f64] = ACTIONS(2896), - [anon_sym_bool] = ACTIONS(2896), - [anon_sym_str] = ACTIONS(2896), - [anon_sym_char] = ACTIONS(2896), - [anon_sym_DASH] = ACTIONS(2894), - [anon_sym_BANG] = ACTIONS(2894), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_PIPE] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(2894), - [anon_sym_DOT_DOT] = ACTIONS(2894), - [anon_sym_COLON_COLON] = ACTIONS(2894), - [anon_sym_POUND] = ACTIONS(2894), - [anon_sym_SQUOTE] = ACTIONS(2896), - [anon_sym_async] = ACTIONS(2896), - [anon_sym_break] = ACTIONS(2896), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_continue] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2896), - [anon_sym_enum] = ACTIONS(2896), - [anon_sym_fn] = ACTIONS(2896), - [anon_sym_for] = ACTIONS(2896), - [anon_sym_gen] = ACTIONS(2896), - [anon_sym_if] = ACTIONS(2896), - [anon_sym_impl] = ACTIONS(2896), - [anon_sym_let] = ACTIONS(2896), - [anon_sym_loop] = ACTIONS(2896), - [anon_sym_match] = ACTIONS(2896), - [anon_sym_mod] = ACTIONS(2896), - [anon_sym_pub] = ACTIONS(2896), - [anon_sym_return] = ACTIONS(2896), - [anon_sym_static] = ACTIONS(2896), - [anon_sym_struct] = ACTIONS(2896), - [anon_sym_trait] = ACTIONS(2896), - [anon_sym_type] = ACTIONS(2896), - [anon_sym_union] = ACTIONS(2896), - [anon_sym_unsafe] = ACTIONS(2896), - [anon_sym_use] = ACTIONS(2896), - [anon_sym_while] = ACTIONS(2896), - [anon_sym_extern] = ACTIONS(2896), - [anon_sym_yield] = ACTIONS(2896), - [anon_sym_move] = ACTIONS(2896), - [anon_sym_try] = ACTIONS(2896), - [sym_integer_literal] = ACTIONS(2894), - [aux_sym_string_literal_token1] = ACTIONS(2894), - [sym_char_literal] = ACTIONS(2894), - [anon_sym_true] = ACTIONS(2896), - [anon_sym_false] = ACTIONS(2896), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2896), - [sym_super] = ACTIONS(2896), - [sym_crate] = ACTIONS(2896), - [sym_metavariable] = ACTIONS(2894), - [sym__raw_string_literal_start] = ACTIONS(2894), - [sym_float_literal] = ACTIONS(2894), + [ts_builtin_sym_end] = ACTIONS(2721), + [sym_identifier] = ACTIONS(2723), + [anon_sym_SEMI] = ACTIONS(2721), + [anon_sym_macro_rules_BANG] = ACTIONS(2721), + [anon_sym_LPAREN] = ACTIONS(2721), + [anon_sym_LBRACK] = ACTIONS(2721), + [anon_sym_LBRACE] = ACTIONS(2721), + [anon_sym_RBRACE] = ACTIONS(2721), + [anon_sym_STAR] = ACTIONS(2721), + [anon_sym_u8] = ACTIONS(2723), + [anon_sym_i8] = ACTIONS(2723), + [anon_sym_u16] = ACTIONS(2723), + [anon_sym_i16] = ACTIONS(2723), + [anon_sym_u32] = ACTIONS(2723), + [anon_sym_i32] = ACTIONS(2723), + [anon_sym_u64] = ACTIONS(2723), + [anon_sym_i64] = ACTIONS(2723), + [anon_sym_u128] = ACTIONS(2723), + [anon_sym_i128] = ACTIONS(2723), + [anon_sym_isize] = ACTIONS(2723), + [anon_sym_usize] = ACTIONS(2723), + [anon_sym_f32] = ACTIONS(2723), + [anon_sym_f64] = ACTIONS(2723), + [anon_sym_bool] = ACTIONS(2723), + [anon_sym_str] = ACTIONS(2723), + [anon_sym_char] = ACTIONS(2723), + [anon_sym_DASH] = ACTIONS(2721), + [anon_sym_BANG] = ACTIONS(2721), + [anon_sym_AMP] = ACTIONS(2721), + [anon_sym_PIPE] = ACTIONS(2721), + [anon_sym_LT] = ACTIONS(2721), + [anon_sym_DOT_DOT] = ACTIONS(2721), + [anon_sym_COLON_COLON] = ACTIONS(2721), + [anon_sym_POUND] = ACTIONS(2721), + [anon_sym_SQUOTE] = ACTIONS(2723), + [anon_sym_async] = ACTIONS(2723), + [anon_sym_break] = ACTIONS(2723), + [anon_sym_const] = ACTIONS(2723), + [anon_sym_continue] = ACTIONS(2723), + [anon_sym_default] = ACTIONS(2723), + [anon_sym_enum] = ACTIONS(2723), + [anon_sym_fn] = ACTIONS(2723), + [anon_sym_for] = ACTIONS(2723), + [anon_sym_gen] = ACTIONS(2723), + [anon_sym_if] = ACTIONS(2723), + [anon_sym_impl] = ACTIONS(2723), + [anon_sym_let] = ACTIONS(2723), + [anon_sym_loop] = ACTIONS(2723), + [anon_sym_match] = ACTIONS(2723), + [anon_sym_mod] = ACTIONS(2723), + [anon_sym_pub] = ACTIONS(2723), + [anon_sym_return] = ACTIONS(2723), + [anon_sym_static] = ACTIONS(2723), + [anon_sym_struct] = ACTIONS(2723), + [anon_sym_trait] = ACTIONS(2723), + [anon_sym_type] = ACTIONS(2723), + [anon_sym_union] = ACTIONS(2723), + [anon_sym_unsafe] = ACTIONS(2723), + [anon_sym_use] = ACTIONS(2723), + [anon_sym_while] = ACTIONS(2723), + [anon_sym_extern] = ACTIONS(2723), + [anon_sym_yield] = ACTIONS(2723), + [anon_sym_move] = ACTIONS(2723), + [anon_sym_try] = ACTIONS(2723), + [sym_integer_literal] = ACTIONS(2721), + [aux_sym_string_literal_token1] = ACTIONS(2721), + [sym_char_literal] = ACTIONS(2721), + [anon_sym_true] = ACTIONS(2723), + [anon_sym_false] = ACTIONS(2723), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2723), + [sym_super] = ACTIONS(2723), + [sym_crate] = ACTIONS(2723), + [sym_metavariable] = ACTIONS(2721), + [sym__raw_string_literal_start] = ACTIONS(2721), + [sym_float_literal] = ACTIONS(2721), }, [STATE(746)] = { [sym_line_comment] = STATE(746), [sym_block_comment] = STATE(746), - [ts_builtin_sym_end] = ACTIONS(2898), - [sym_identifier] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2898), - [anon_sym_macro_rules_BANG] = ACTIONS(2898), - [anon_sym_LPAREN] = ACTIONS(2898), - [anon_sym_LBRACK] = ACTIONS(2898), - [anon_sym_LBRACE] = ACTIONS(2898), - [anon_sym_RBRACE] = ACTIONS(2898), - [anon_sym_STAR] = ACTIONS(2898), - [anon_sym_u8] = ACTIONS(2900), - [anon_sym_i8] = ACTIONS(2900), - [anon_sym_u16] = ACTIONS(2900), - [anon_sym_i16] = ACTIONS(2900), - [anon_sym_u32] = ACTIONS(2900), - [anon_sym_i32] = ACTIONS(2900), - [anon_sym_u64] = ACTIONS(2900), - [anon_sym_i64] = ACTIONS(2900), - [anon_sym_u128] = ACTIONS(2900), - [anon_sym_i128] = ACTIONS(2900), - [anon_sym_isize] = ACTIONS(2900), - [anon_sym_usize] = ACTIONS(2900), - [anon_sym_f32] = ACTIONS(2900), - [anon_sym_f64] = ACTIONS(2900), - [anon_sym_bool] = ACTIONS(2900), - [anon_sym_str] = ACTIONS(2900), - [anon_sym_char] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2898), - [anon_sym_BANG] = ACTIONS(2898), - [anon_sym_AMP] = ACTIONS(2898), - [anon_sym_PIPE] = ACTIONS(2898), - [anon_sym_LT] = ACTIONS(2898), - [anon_sym_DOT_DOT] = ACTIONS(2898), - [anon_sym_COLON_COLON] = ACTIONS(2898), - [anon_sym_POUND] = ACTIONS(2898), - [anon_sym_SQUOTE] = ACTIONS(2900), - [anon_sym_async] = ACTIONS(2900), - [anon_sym_break] = ACTIONS(2900), - [anon_sym_const] = ACTIONS(2900), - [anon_sym_continue] = ACTIONS(2900), - [anon_sym_default] = ACTIONS(2900), - [anon_sym_enum] = ACTIONS(2900), - [anon_sym_fn] = ACTIONS(2900), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_gen] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_impl] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_loop] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_mod] = ACTIONS(2900), - [anon_sym_pub] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_static] = ACTIONS(2900), - [anon_sym_struct] = ACTIONS(2900), - [anon_sym_trait] = ACTIONS(2900), - [anon_sym_type] = ACTIONS(2900), - [anon_sym_union] = ACTIONS(2900), - [anon_sym_unsafe] = ACTIONS(2900), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_extern] = ACTIONS(2900), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_move] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [sym_integer_literal] = ACTIONS(2898), - [aux_sym_string_literal_token1] = ACTIONS(2898), - [sym_char_literal] = ACTIONS(2898), - [anon_sym_true] = ACTIONS(2900), - [anon_sym_false] = ACTIONS(2900), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2898), - [sym__raw_string_literal_start] = ACTIONS(2898), - [sym_float_literal] = ACTIONS(2898), + [ts_builtin_sym_end] = ACTIONS(2725), + [sym_identifier] = ACTIONS(2727), + [anon_sym_SEMI] = ACTIONS(2725), + [anon_sym_macro_rules_BANG] = ACTIONS(2725), + [anon_sym_LPAREN] = ACTIONS(2725), + [anon_sym_LBRACK] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2725), + [anon_sym_RBRACE] = ACTIONS(2725), + [anon_sym_STAR] = ACTIONS(2725), + [anon_sym_u8] = ACTIONS(2727), + [anon_sym_i8] = ACTIONS(2727), + [anon_sym_u16] = ACTIONS(2727), + [anon_sym_i16] = ACTIONS(2727), + [anon_sym_u32] = ACTIONS(2727), + [anon_sym_i32] = ACTIONS(2727), + [anon_sym_u64] = ACTIONS(2727), + [anon_sym_i64] = ACTIONS(2727), + [anon_sym_u128] = ACTIONS(2727), + [anon_sym_i128] = ACTIONS(2727), + [anon_sym_isize] = ACTIONS(2727), + [anon_sym_usize] = ACTIONS(2727), + [anon_sym_f32] = ACTIONS(2727), + [anon_sym_f64] = ACTIONS(2727), + [anon_sym_bool] = ACTIONS(2727), + [anon_sym_str] = ACTIONS(2727), + [anon_sym_char] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2725), + [anon_sym_BANG] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2725), + [anon_sym_PIPE] = ACTIONS(2725), + [anon_sym_LT] = ACTIONS(2725), + [anon_sym_DOT_DOT] = ACTIONS(2725), + [anon_sym_COLON_COLON] = ACTIONS(2725), + [anon_sym_POUND] = ACTIONS(2725), + [anon_sym_SQUOTE] = ACTIONS(2727), + [anon_sym_async] = ACTIONS(2727), + [anon_sym_break] = ACTIONS(2727), + [anon_sym_const] = ACTIONS(2727), + [anon_sym_continue] = ACTIONS(2727), + [anon_sym_default] = ACTIONS(2727), + [anon_sym_enum] = ACTIONS(2727), + [anon_sym_fn] = ACTIONS(2727), + [anon_sym_for] = ACTIONS(2727), + [anon_sym_gen] = ACTIONS(2727), + [anon_sym_if] = ACTIONS(2727), + [anon_sym_impl] = ACTIONS(2727), + [anon_sym_let] = ACTIONS(2727), + [anon_sym_loop] = ACTIONS(2727), + [anon_sym_match] = ACTIONS(2727), + [anon_sym_mod] = ACTIONS(2727), + [anon_sym_pub] = ACTIONS(2727), + [anon_sym_return] = ACTIONS(2727), + [anon_sym_static] = ACTIONS(2727), + [anon_sym_struct] = ACTIONS(2727), + [anon_sym_trait] = ACTIONS(2727), + [anon_sym_type] = ACTIONS(2727), + [anon_sym_union] = ACTIONS(2727), + [anon_sym_unsafe] = ACTIONS(2727), + [anon_sym_use] = ACTIONS(2727), + [anon_sym_while] = ACTIONS(2727), + [anon_sym_extern] = ACTIONS(2727), + [anon_sym_yield] = ACTIONS(2727), + [anon_sym_move] = ACTIONS(2727), + [anon_sym_try] = ACTIONS(2727), + [sym_integer_literal] = ACTIONS(2725), + [aux_sym_string_literal_token1] = ACTIONS(2725), + [sym_char_literal] = ACTIONS(2725), + [anon_sym_true] = ACTIONS(2727), + [anon_sym_false] = ACTIONS(2727), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2727), + [sym_super] = ACTIONS(2727), + [sym_crate] = ACTIONS(2727), + [sym_metavariable] = ACTIONS(2725), + [sym__raw_string_literal_start] = ACTIONS(2725), + [sym_float_literal] = ACTIONS(2725), }, [STATE(747)] = { [sym_line_comment] = STATE(747), [sym_block_comment] = STATE(747), - [ts_builtin_sym_end] = ACTIONS(2902), - [sym_identifier] = ACTIONS(2904), - [anon_sym_SEMI] = ACTIONS(2902), - [anon_sym_macro_rules_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2902), - [anon_sym_LBRACK] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2902), - [anon_sym_RBRACE] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(2902), - [anon_sym_u8] = ACTIONS(2904), - [anon_sym_i8] = ACTIONS(2904), - [anon_sym_u16] = ACTIONS(2904), - [anon_sym_i16] = ACTIONS(2904), - [anon_sym_u32] = ACTIONS(2904), - [anon_sym_i32] = ACTIONS(2904), - [anon_sym_u64] = ACTIONS(2904), - [anon_sym_i64] = ACTIONS(2904), - [anon_sym_u128] = ACTIONS(2904), - [anon_sym_i128] = ACTIONS(2904), - [anon_sym_isize] = ACTIONS(2904), - [anon_sym_usize] = ACTIONS(2904), - [anon_sym_f32] = ACTIONS(2904), - [anon_sym_f64] = ACTIONS(2904), - [anon_sym_bool] = ACTIONS(2904), - [anon_sym_str] = ACTIONS(2904), - [anon_sym_char] = ACTIONS(2904), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_BANG] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2902), - [anon_sym_PIPE] = ACTIONS(2902), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_DOT_DOT] = ACTIONS(2902), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_POUND] = ACTIONS(2902), - [anon_sym_SQUOTE] = ACTIONS(2904), - [anon_sym_async] = ACTIONS(2904), - [anon_sym_break] = ACTIONS(2904), - [anon_sym_const] = ACTIONS(2904), - [anon_sym_continue] = ACTIONS(2904), - [anon_sym_default] = ACTIONS(2904), - [anon_sym_enum] = ACTIONS(2904), - [anon_sym_fn] = ACTIONS(2904), - [anon_sym_for] = ACTIONS(2904), - [anon_sym_gen] = ACTIONS(2904), - [anon_sym_if] = ACTIONS(2904), - [anon_sym_impl] = ACTIONS(2904), - [anon_sym_let] = ACTIONS(2904), - [anon_sym_loop] = ACTIONS(2904), - [anon_sym_match] = ACTIONS(2904), - [anon_sym_mod] = ACTIONS(2904), - [anon_sym_pub] = ACTIONS(2904), - [anon_sym_return] = ACTIONS(2904), - [anon_sym_static] = ACTIONS(2904), - [anon_sym_struct] = ACTIONS(2904), - [anon_sym_trait] = ACTIONS(2904), - [anon_sym_type] = ACTIONS(2904), - [anon_sym_union] = ACTIONS(2904), - [anon_sym_unsafe] = ACTIONS(2904), - [anon_sym_use] = ACTIONS(2904), - [anon_sym_while] = ACTIONS(2904), - [anon_sym_extern] = ACTIONS(2904), - [anon_sym_yield] = ACTIONS(2904), - [anon_sym_move] = ACTIONS(2904), - [anon_sym_try] = ACTIONS(2904), - [sym_integer_literal] = ACTIONS(2902), - [aux_sym_string_literal_token1] = ACTIONS(2902), - [sym_char_literal] = ACTIONS(2902), - [anon_sym_true] = ACTIONS(2904), - [anon_sym_false] = ACTIONS(2904), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2904), - [sym_super] = ACTIONS(2904), - [sym_crate] = ACTIONS(2904), - [sym_metavariable] = ACTIONS(2902), - [sym__raw_string_literal_start] = ACTIONS(2902), - [sym_float_literal] = ACTIONS(2902), + [ts_builtin_sym_end] = ACTIONS(2729), + [sym_identifier] = ACTIONS(2731), + [anon_sym_SEMI] = ACTIONS(2729), + [anon_sym_macro_rules_BANG] = ACTIONS(2729), + [anon_sym_LPAREN] = ACTIONS(2729), + [anon_sym_LBRACK] = ACTIONS(2729), + [anon_sym_LBRACE] = ACTIONS(2729), + [anon_sym_RBRACE] = ACTIONS(2729), + [anon_sym_STAR] = ACTIONS(2729), + [anon_sym_u8] = ACTIONS(2731), + [anon_sym_i8] = ACTIONS(2731), + [anon_sym_u16] = ACTIONS(2731), + [anon_sym_i16] = ACTIONS(2731), + [anon_sym_u32] = ACTIONS(2731), + [anon_sym_i32] = ACTIONS(2731), + [anon_sym_u64] = ACTIONS(2731), + [anon_sym_i64] = ACTIONS(2731), + [anon_sym_u128] = ACTIONS(2731), + [anon_sym_i128] = ACTIONS(2731), + [anon_sym_isize] = ACTIONS(2731), + [anon_sym_usize] = ACTIONS(2731), + [anon_sym_f32] = ACTIONS(2731), + [anon_sym_f64] = ACTIONS(2731), + [anon_sym_bool] = ACTIONS(2731), + [anon_sym_str] = ACTIONS(2731), + [anon_sym_char] = ACTIONS(2731), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_BANG] = ACTIONS(2729), + [anon_sym_AMP] = ACTIONS(2729), + [anon_sym_PIPE] = ACTIONS(2729), + [anon_sym_LT] = ACTIONS(2729), + [anon_sym_DOT_DOT] = ACTIONS(2729), + [anon_sym_COLON_COLON] = ACTIONS(2729), + [anon_sym_POUND] = ACTIONS(2729), + [anon_sym_SQUOTE] = ACTIONS(2731), + [anon_sym_async] = ACTIONS(2731), + [anon_sym_break] = ACTIONS(2731), + [anon_sym_const] = ACTIONS(2731), + [anon_sym_continue] = ACTIONS(2731), + [anon_sym_default] = ACTIONS(2731), + [anon_sym_enum] = ACTIONS(2731), + [anon_sym_fn] = ACTIONS(2731), + [anon_sym_for] = ACTIONS(2731), + [anon_sym_gen] = ACTIONS(2731), + [anon_sym_if] = ACTIONS(2731), + [anon_sym_impl] = ACTIONS(2731), + [anon_sym_let] = ACTIONS(2731), + [anon_sym_loop] = ACTIONS(2731), + [anon_sym_match] = ACTIONS(2731), + [anon_sym_mod] = ACTIONS(2731), + [anon_sym_pub] = ACTIONS(2731), + [anon_sym_return] = ACTIONS(2731), + [anon_sym_static] = ACTIONS(2731), + [anon_sym_struct] = ACTIONS(2731), + [anon_sym_trait] = ACTIONS(2731), + [anon_sym_type] = ACTIONS(2731), + [anon_sym_union] = ACTIONS(2731), + [anon_sym_unsafe] = ACTIONS(2731), + [anon_sym_use] = ACTIONS(2731), + [anon_sym_while] = ACTIONS(2731), + [anon_sym_extern] = ACTIONS(2731), + [anon_sym_yield] = ACTIONS(2731), + [anon_sym_move] = ACTIONS(2731), + [anon_sym_try] = ACTIONS(2731), + [sym_integer_literal] = ACTIONS(2729), + [aux_sym_string_literal_token1] = ACTIONS(2729), + [sym_char_literal] = ACTIONS(2729), + [anon_sym_true] = ACTIONS(2731), + [anon_sym_false] = ACTIONS(2731), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2731), + [sym_super] = ACTIONS(2731), + [sym_crate] = ACTIONS(2731), + [sym_metavariable] = ACTIONS(2729), + [sym__raw_string_literal_start] = ACTIONS(2729), + [sym_float_literal] = ACTIONS(2729), }, [STATE(748)] = { [sym_line_comment] = STATE(748), [sym_block_comment] = STATE(748), - [ts_builtin_sym_end] = ACTIONS(2906), - [sym_identifier] = ACTIONS(2908), - [anon_sym_SEMI] = ACTIONS(2906), - [anon_sym_macro_rules_BANG] = ACTIONS(2906), - [anon_sym_LPAREN] = ACTIONS(2906), - [anon_sym_LBRACK] = ACTIONS(2906), - [anon_sym_LBRACE] = ACTIONS(2906), - [anon_sym_RBRACE] = ACTIONS(2906), - [anon_sym_STAR] = ACTIONS(2906), - [anon_sym_u8] = ACTIONS(2908), - [anon_sym_i8] = ACTIONS(2908), - [anon_sym_u16] = ACTIONS(2908), - [anon_sym_i16] = ACTIONS(2908), - [anon_sym_u32] = ACTIONS(2908), - [anon_sym_i32] = ACTIONS(2908), - [anon_sym_u64] = ACTIONS(2908), - [anon_sym_i64] = ACTIONS(2908), - [anon_sym_u128] = ACTIONS(2908), - [anon_sym_i128] = ACTIONS(2908), - [anon_sym_isize] = ACTIONS(2908), - [anon_sym_usize] = ACTIONS(2908), - [anon_sym_f32] = ACTIONS(2908), - [anon_sym_f64] = ACTIONS(2908), - [anon_sym_bool] = ACTIONS(2908), - [anon_sym_str] = ACTIONS(2908), - [anon_sym_char] = ACTIONS(2908), - [anon_sym_DASH] = ACTIONS(2906), - [anon_sym_BANG] = ACTIONS(2906), - [anon_sym_AMP] = ACTIONS(2906), - [anon_sym_PIPE] = ACTIONS(2906), - [anon_sym_LT] = ACTIONS(2906), - [anon_sym_DOT_DOT] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2906), - [anon_sym_POUND] = ACTIONS(2906), - [anon_sym_SQUOTE] = ACTIONS(2908), - [anon_sym_async] = ACTIONS(2908), - [anon_sym_break] = ACTIONS(2908), - [anon_sym_const] = ACTIONS(2908), - [anon_sym_continue] = ACTIONS(2908), - [anon_sym_default] = ACTIONS(2908), - [anon_sym_enum] = ACTIONS(2908), - [anon_sym_fn] = ACTIONS(2908), - [anon_sym_for] = ACTIONS(2908), - [anon_sym_gen] = ACTIONS(2908), - [anon_sym_if] = ACTIONS(2908), - [anon_sym_impl] = ACTIONS(2908), - [anon_sym_let] = ACTIONS(2908), - [anon_sym_loop] = ACTIONS(2908), - [anon_sym_match] = ACTIONS(2908), - [anon_sym_mod] = ACTIONS(2908), - [anon_sym_pub] = ACTIONS(2908), - [anon_sym_return] = ACTIONS(2908), - [anon_sym_static] = ACTIONS(2908), - [anon_sym_struct] = ACTIONS(2908), - [anon_sym_trait] = ACTIONS(2908), - [anon_sym_type] = ACTIONS(2908), - [anon_sym_union] = ACTIONS(2908), - [anon_sym_unsafe] = ACTIONS(2908), - [anon_sym_use] = ACTIONS(2908), - [anon_sym_while] = ACTIONS(2908), - [anon_sym_extern] = ACTIONS(2908), - [anon_sym_yield] = ACTIONS(2908), - [anon_sym_move] = ACTIONS(2908), - [anon_sym_try] = ACTIONS(2908), - [sym_integer_literal] = ACTIONS(2906), - [aux_sym_string_literal_token1] = ACTIONS(2906), - [sym_char_literal] = ACTIONS(2906), - [anon_sym_true] = ACTIONS(2908), - [anon_sym_false] = ACTIONS(2908), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2908), - [sym_super] = ACTIONS(2908), - [sym_crate] = ACTIONS(2908), - [sym_metavariable] = ACTIONS(2906), - [sym__raw_string_literal_start] = ACTIONS(2906), - [sym_float_literal] = ACTIONS(2906), + [ts_builtin_sym_end] = ACTIONS(2733), + [sym_identifier] = ACTIONS(2735), + [anon_sym_SEMI] = ACTIONS(2733), + [anon_sym_macro_rules_BANG] = ACTIONS(2733), + [anon_sym_LPAREN] = ACTIONS(2733), + [anon_sym_LBRACK] = ACTIONS(2733), + [anon_sym_LBRACE] = ACTIONS(2733), + [anon_sym_RBRACE] = ACTIONS(2733), + [anon_sym_STAR] = ACTIONS(2733), + [anon_sym_u8] = ACTIONS(2735), + [anon_sym_i8] = ACTIONS(2735), + [anon_sym_u16] = ACTIONS(2735), + [anon_sym_i16] = ACTIONS(2735), + [anon_sym_u32] = ACTIONS(2735), + [anon_sym_i32] = ACTIONS(2735), + [anon_sym_u64] = ACTIONS(2735), + [anon_sym_i64] = ACTIONS(2735), + [anon_sym_u128] = ACTIONS(2735), + [anon_sym_i128] = ACTIONS(2735), + [anon_sym_isize] = ACTIONS(2735), + [anon_sym_usize] = ACTIONS(2735), + [anon_sym_f32] = ACTIONS(2735), + [anon_sym_f64] = ACTIONS(2735), + [anon_sym_bool] = ACTIONS(2735), + [anon_sym_str] = ACTIONS(2735), + [anon_sym_char] = ACTIONS(2735), + [anon_sym_DASH] = ACTIONS(2733), + [anon_sym_BANG] = ACTIONS(2733), + [anon_sym_AMP] = ACTIONS(2733), + [anon_sym_PIPE] = ACTIONS(2733), + [anon_sym_LT] = ACTIONS(2733), + [anon_sym_DOT_DOT] = ACTIONS(2733), + [anon_sym_COLON_COLON] = ACTIONS(2733), + [anon_sym_POUND] = ACTIONS(2733), + [anon_sym_SQUOTE] = ACTIONS(2735), + [anon_sym_async] = ACTIONS(2735), + [anon_sym_break] = ACTIONS(2735), + [anon_sym_const] = ACTIONS(2735), + [anon_sym_continue] = ACTIONS(2735), + [anon_sym_default] = ACTIONS(2735), + [anon_sym_enum] = ACTIONS(2735), + [anon_sym_fn] = ACTIONS(2735), + [anon_sym_for] = ACTIONS(2735), + [anon_sym_gen] = ACTIONS(2735), + [anon_sym_if] = ACTIONS(2735), + [anon_sym_impl] = ACTIONS(2735), + [anon_sym_let] = ACTIONS(2735), + [anon_sym_loop] = ACTIONS(2735), + [anon_sym_match] = ACTIONS(2735), + [anon_sym_mod] = ACTIONS(2735), + [anon_sym_pub] = ACTIONS(2735), + [anon_sym_return] = ACTIONS(2735), + [anon_sym_static] = ACTIONS(2735), + [anon_sym_struct] = ACTIONS(2735), + [anon_sym_trait] = ACTIONS(2735), + [anon_sym_type] = ACTIONS(2735), + [anon_sym_union] = ACTIONS(2735), + [anon_sym_unsafe] = ACTIONS(2735), + [anon_sym_use] = ACTIONS(2735), + [anon_sym_while] = ACTIONS(2735), + [anon_sym_extern] = ACTIONS(2735), + [anon_sym_yield] = ACTIONS(2735), + [anon_sym_move] = ACTIONS(2735), + [anon_sym_try] = ACTIONS(2735), + [sym_integer_literal] = ACTIONS(2733), + [aux_sym_string_literal_token1] = ACTIONS(2733), + [sym_char_literal] = ACTIONS(2733), + [anon_sym_true] = ACTIONS(2735), + [anon_sym_false] = ACTIONS(2735), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2735), + [sym_super] = ACTIONS(2735), + [sym_crate] = ACTIONS(2735), + [sym_metavariable] = ACTIONS(2733), + [sym__raw_string_literal_start] = ACTIONS(2733), + [sym_float_literal] = ACTIONS(2733), }, [STATE(749)] = { [sym_line_comment] = STATE(749), [sym_block_comment] = STATE(749), - [ts_builtin_sym_end] = ACTIONS(2910), - [sym_identifier] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(2910), - [anon_sym_macro_rules_BANG] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(2910), - [anon_sym_LBRACK] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2910), - [anon_sym_RBRACE] = ACTIONS(2910), - [anon_sym_STAR] = ACTIONS(2910), - [anon_sym_u8] = ACTIONS(2912), - [anon_sym_i8] = ACTIONS(2912), - [anon_sym_u16] = ACTIONS(2912), - [anon_sym_i16] = ACTIONS(2912), - [anon_sym_u32] = ACTIONS(2912), - [anon_sym_i32] = ACTIONS(2912), - [anon_sym_u64] = ACTIONS(2912), - [anon_sym_i64] = ACTIONS(2912), - [anon_sym_u128] = ACTIONS(2912), - [anon_sym_i128] = ACTIONS(2912), - [anon_sym_isize] = ACTIONS(2912), - [anon_sym_usize] = ACTIONS(2912), - [anon_sym_f32] = ACTIONS(2912), - [anon_sym_f64] = ACTIONS(2912), - [anon_sym_bool] = ACTIONS(2912), - [anon_sym_str] = ACTIONS(2912), - [anon_sym_char] = ACTIONS(2912), - [anon_sym_DASH] = ACTIONS(2910), - [anon_sym_BANG] = ACTIONS(2910), - [anon_sym_AMP] = ACTIONS(2910), - [anon_sym_PIPE] = ACTIONS(2910), - [anon_sym_LT] = ACTIONS(2910), - [anon_sym_DOT_DOT] = ACTIONS(2910), - [anon_sym_COLON_COLON] = ACTIONS(2910), - [anon_sym_POUND] = ACTIONS(2910), - [anon_sym_SQUOTE] = ACTIONS(2912), - [anon_sym_async] = ACTIONS(2912), - [anon_sym_break] = ACTIONS(2912), - [anon_sym_const] = ACTIONS(2912), - [anon_sym_continue] = ACTIONS(2912), - [anon_sym_default] = ACTIONS(2912), - [anon_sym_enum] = ACTIONS(2912), - [anon_sym_fn] = ACTIONS(2912), - [anon_sym_for] = ACTIONS(2912), - [anon_sym_gen] = ACTIONS(2912), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_impl] = ACTIONS(2912), - [anon_sym_let] = ACTIONS(2912), - [anon_sym_loop] = ACTIONS(2912), - [anon_sym_match] = ACTIONS(2912), - [anon_sym_mod] = ACTIONS(2912), - [anon_sym_pub] = ACTIONS(2912), - [anon_sym_return] = ACTIONS(2912), - [anon_sym_static] = ACTIONS(2912), - [anon_sym_struct] = ACTIONS(2912), - [anon_sym_trait] = ACTIONS(2912), - [anon_sym_type] = ACTIONS(2912), - [anon_sym_union] = ACTIONS(2912), - [anon_sym_unsafe] = ACTIONS(2912), - [anon_sym_use] = ACTIONS(2912), - [anon_sym_while] = ACTIONS(2912), - [anon_sym_extern] = ACTIONS(2912), - [anon_sym_yield] = ACTIONS(2912), - [anon_sym_move] = ACTIONS(2912), - [anon_sym_try] = ACTIONS(2912), - [sym_integer_literal] = ACTIONS(2910), - [aux_sym_string_literal_token1] = ACTIONS(2910), - [sym_char_literal] = ACTIONS(2910), - [anon_sym_true] = ACTIONS(2912), - [anon_sym_false] = ACTIONS(2912), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2912), - [sym_super] = ACTIONS(2912), - [sym_crate] = ACTIONS(2912), - [sym_metavariable] = ACTIONS(2910), - [sym__raw_string_literal_start] = ACTIONS(2910), - [sym_float_literal] = ACTIONS(2910), + [ts_builtin_sym_end] = ACTIONS(2737), + [sym_identifier] = ACTIONS(2739), + [anon_sym_SEMI] = ACTIONS(2737), + [anon_sym_macro_rules_BANG] = ACTIONS(2737), + [anon_sym_LPAREN] = ACTIONS(2737), + [anon_sym_LBRACK] = ACTIONS(2737), + [anon_sym_LBRACE] = ACTIONS(2737), + [anon_sym_RBRACE] = ACTIONS(2737), + [anon_sym_STAR] = ACTIONS(2737), + [anon_sym_u8] = ACTIONS(2739), + [anon_sym_i8] = ACTIONS(2739), + [anon_sym_u16] = ACTIONS(2739), + [anon_sym_i16] = ACTIONS(2739), + [anon_sym_u32] = ACTIONS(2739), + [anon_sym_i32] = ACTIONS(2739), + [anon_sym_u64] = ACTIONS(2739), + [anon_sym_i64] = ACTIONS(2739), + [anon_sym_u128] = ACTIONS(2739), + [anon_sym_i128] = ACTIONS(2739), + [anon_sym_isize] = ACTIONS(2739), + [anon_sym_usize] = ACTIONS(2739), + [anon_sym_f32] = ACTIONS(2739), + [anon_sym_f64] = ACTIONS(2739), + [anon_sym_bool] = ACTIONS(2739), + [anon_sym_str] = ACTIONS(2739), + [anon_sym_char] = ACTIONS(2739), + [anon_sym_DASH] = ACTIONS(2737), + [anon_sym_BANG] = ACTIONS(2737), + [anon_sym_AMP] = ACTIONS(2737), + [anon_sym_PIPE] = ACTIONS(2737), + [anon_sym_LT] = ACTIONS(2737), + [anon_sym_DOT_DOT] = ACTIONS(2737), + [anon_sym_COLON_COLON] = ACTIONS(2737), + [anon_sym_POUND] = ACTIONS(2737), + [anon_sym_SQUOTE] = ACTIONS(2739), + [anon_sym_async] = ACTIONS(2739), + [anon_sym_break] = ACTIONS(2739), + [anon_sym_const] = ACTIONS(2739), + [anon_sym_continue] = ACTIONS(2739), + [anon_sym_default] = ACTIONS(2739), + [anon_sym_enum] = ACTIONS(2739), + [anon_sym_fn] = ACTIONS(2739), + [anon_sym_for] = ACTIONS(2739), + [anon_sym_gen] = ACTIONS(2739), + [anon_sym_if] = ACTIONS(2739), + [anon_sym_impl] = ACTIONS(2739), + [anon_sym_let] = ACTIONS(2739), + [anon_sym_loop] = ACTIONS(2739), + [anon_sym_match] = ACTIONS(2739), + [anon_sym_mod] = ACTIONS(2739), + [anon_sym_pub] = ACTIONS(2739), + [anon_sym_return] = ACTIONS(2739), + [anon_sym_static] = ACTIONS(2739), + [anon_sym_struct] = ACTIONS(2739), + [anon_sym_trait] = ACTIONS(2739), + [anon_sym_type] = ACTIONS(2739), + [anon_sym_union] = ACTIONS(2739), + [anon_sym_unsafe] = ACTIONS(2739), + [anon_sym_use] = ACTIONS(2739), + [anon_sym_while] = ACTIONS(2739), + [anon_sym_extern] = ACTIONS(2739), + [anon_sym_yield] = ACTIONS(2739), + [anon_sym_move] = ACTIONS(2739), + [anon_sym_try] = ACTIONS(2739), + [sym_integer_literal] = ACTIONS(2737), + [aux_sym_string_literal_token1] = ACTIONS(2737), + [sym_char_literal] = ACTIONS(2737), + [anon_sym_true] = ACTIONS(2739), + [anon_sym_false] = ACTIONS(2739), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2739), + [sym_super] = ACTIONS(2739), + [sym_crate] = ACTIONS(2739), + [sym_metavariable] = ACTIONS(2737), + [sym__raw_string_literal_start] = ACTIONS(2737), + [sym_float_literal] = ACTIONS(2737), }, [STATE(750)] = { [sym_line_comment] = STATE(750), [sym_block_comment] = STATE(750), - [ts_builtin_sym_end] = ACTIONS(2914), - [sym_identifier] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(2914), - [anon_sym_macro_rules_BANG] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2914), - [anon_sym_LBRACK] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2914), - [anon_sym_RBRACE] = ACTIONS(2914), - [anon_sym_STAR] = ACTIONS(2914), - [anon_sym_u8] = ACTIONS(2916), - [anon_sym_i8] = ACTIONS(2916), - [anon_sym_u16] = ACTIONS(2916), - [anon_sym_i16] = ACTIONS(2916), - [anon_sym_u32] = ACTIONS(2916), - [anon_sym_i32] = ACTIONS(2916), - [anon_sym_u64] = ACTIONS(2916), - [anon_sym_i64] = ACTIONS(2916), - [anon_sym_u128] = ACTIONS(2916), - [anon_sym_i128] = ACTIONS(2916), - [anon_sym_isize] = ACTIONS(2916), - [anon_sym_usize] = ACTIONS(2916), - [anon_sym_f32] = ACTIONS(2916), - [anon_sym_f64] = ACTIONS(2916), - [anon_sym_bool] = ACTIONS(2916), - [anon_sym_str] = ACTIONS(2916), - [anon_sym_char] = ACTIONS(2916), - [anon_sym_DASH] = ACTIONS(2914), - [anon_sym_BANG] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2914), - [anon_sym_PIPE] = ACTIONS(2914), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_DOT_DOT] = ACTIONS(2914), - [anon_sym_COLON_COLON] = ACTIONS(2914), - [anon_sym_POUND] = ACTIONS(2914), - [anon_sym_SQUOTE] = ACTIONS(2916), - [anon_sym_async] = ACTIONS(2916), - [anon_sym_break] = ACTIONS(2916), - [anon_sym_const] = ACTIONS(2916), - [anon_sym_continue] = ACTIONS(2916), - [anon_sym_default] = ACTIONS(2916), - [anon_sym_enum] = ACTIONS(2916), - [anon_sym_fn] = ACTIONS(2916), - [anon_sym_for] = ACTIONS(2916), - [anon_sym_gen] = ACTIONS(2916), - [anon_sym_if] = ACTIONS(2916), - [anon_sym_impl] = ACTIONS(2916), - [anon_sym_let] = ACTIONS(2916), - [anon_sym_loop] = ACTIONS(2916), - [anon_sym_match] = ACTIONS(2916), - [anon_sym_mod] = ACTIONS(2916), - [anon_sym_pub] = ACTIONS(2916), - [anon_sym_return] = ACTIONS(2916), - [anon_sym_static] = ACTIONS(2916), - [anon_sym_struct] = ACTIONS(2916), - [anon_sym_trait] = ACTIONS(2916), - [anon_sym_type] = ACTIONS(2916), - [anon_sym_union] = ACTIONS(2916), - [anon_sym_unsafe] = ACTIONS(2916), - [anon_sym_use] = ACTIONS(2916), - [anon_sym_while] = ACTIONS(2916), - [anon_sym_extern] = ACTIONS(2916), - [anon_sym_yield] = ACTIONS(2916), - [anon_sym_move] = ACTIONS(2916), - [anon_sym_try] = ACTIONS(2916), - [sym_integer_literal] = ACTIONS(2914), - [aux_sym_string_literal_token1] = ACTIONS(2914), - [sym_char_literal] = ACTIONS(2914), - [anon_sym_true] = ACTIONS(2916), - [anon_sym_false] = ACTIONS(2916), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2916), - [sym_super] = ACTIONS(2916), - [sym_crate] = ACTIONS(2916), - [sym_metavariable] = ACTIONS(2914), - [sym__raw_string_literal_start] = ACTIONS(2914), - [sym_float_literal] = ACTIONS(2914), + [ts_builtin_sym_end] = ACTIONS(2741), + [sym_identifier] = ACTIONS(2743), + [anon_sym_SEMI] = ACTIONS(2741), + [anon_sym_macro_rules_BANG] = ACTIONS(2741), + [anon_sym_LPAREN] = ACTIONS(2741), + [anon_sym_LBRACK] = ACTIONS(2741), + [anon_sym_LBRACE] = ACTIONS(2741), + [anon_sym_RBRACE] = ACTIONS(2741), + [anon_sym_STAR] = ACTIONS(2741), + [anon_sym_u8] = ACTIONS(2743), + [anon_sym_i8] = ACTIONS(2743), + [anon_sym_u16] = ACTIONS(2743), + [anon_sym_i16] = ACTIONS(2743), + [anon_sym_u32] = ACTIONS(2743), + [anon_sym_i32] = ACTIONS(2743), + [anon_sym_u64] = ACTIONS(2743), + [anon_sym_i64] = ACTIONS(2743), + [anon_sym_u128] = ACTIONS(2743), + [anon_sym_i128] = ACTIONS(2743), + [anon_sym_isize] = ACTIONS(2743), + [anon_sym_usize] = ACTIONS(2743), + [anon_sym_f32] = ACTIONS(2743), + [anon_sym_f64] = ACTIONS(2743), + [anon_sym_bool] = ACTIONS(2743), + [anon_sym_str] = ACTIONS(2743), + [anon_sym_char] = ACTIONS(2743), + [anon_sym_DASH] = ACTIONS(2741), + [anon_sym_BANG] = ACTIONS(2741), + [anon_sym_AMP] = ACTIONS(2741), + [anon_sym_PIPE] = ACTIONS(2741), + [anon_sym_LT] = ACTIONS(2741), + [anon_sym_DOT_DOT] = ACTIONS(2741), + [anon_sym_COLON_COLON] = ACTIONS(2741), + [anon_sym_POUND] = ACTIONS(2741), + [anon_sym_SQUOTE] = ACTIONS(2743), + [anon_sym_async] = ACTIONS(2743), + [anon_sym_break] = ACTIONS(2743), + [anon_sym_const] = ACTIONS(2743), + [anon_sym_continue] = ACTIONS(2743), + [anon_sym_default] = ACTIONS(2743), + [anon_sym_enum] = ACTIONS(2743), + [anon_sym_fn] = ACTIONS(2743), + [anon_sym_for] = ACTIONS(2743), + [anon_sym_gen] = ACTIONS(2743), + [anon_sym_if] = ACTIONS(2743), + [anon_sym_impl] = ACTIONS(2743), + [anon_sym_let] = ACTIONS(2743), + [anon_sym_loop] = ACTIONS(2743), + [anon_sym_match] = ACTIONS(2743), + [anon_sym_mod] = ACTIONS(2743), + [anon_sym_pub] = ACTIONS(2743), + [anon_sym_return] = ACTIONS(2743), + [anon_sym_static] = ACTIONS(2743), + [anon_sym_struct] = ACTIONS(2743), + [anon_sym_trait] = ACTIONS(2743), + [anon_sym_type] = ACTIONS(2743), + [anon_sym_union] = ACTIONS(2743), + [anon_sym_unsafe] = ACTIONS(2743), + [anon_sym_use] = ACTIONS(2743), + [anon_sym_while] = ACTIONS(2743), + [anon_sym_extern] = ACTIONS(2743), + [anon_sym_yield] = ACTIONS(2743), + [anon_sym_move] = ACTIONS(2743), + [anon_sym_try] = ACTIONS(2743), + [sym_integer_literal] = ACTIONS(2741), + [aux_sym_string_literal_token1] = ACTIONS(2741), + [sym_char_literal] = ACTIONS(2741), + [anon_sym_true] = ACTIONS(2743), + [anon_sym_false] = ACTIONS(2743), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2743), + [sym_super] = ACTIONS(2743), + [sym_crate] = ACTIONS(2743), + [sym_metavariable] = ACTIONS(2741), + [sym__raw_string_literal_start] = ACTIONS(2741), + [sym_float_literal] = ACTIONS(2741), }, [STATE(751)] = { [sym_line_comment] = STATE(751), [sym_block_comment] = STATE(751), - [ts_builtin_sym_end] = ACTIONS(2918), - [sym_identifier] = ACTIONS(2920), - [anon_sym_SEMI] = ACTIONS(2918), - [anon_sym_macro_rules_BANG] = ACTIONS(2918), - [anon_sym_LPAREN] = ACTIONS(2918), - [anon_sym_LBRACK] = ACTIONS(2918), - [anon_sym_LBRACE] = ACTIONS(2918), - [anon_sym_RBRACE] = ACTIONS(2918), - [anon_sym_STAR] = ACTIONS(2918), - [anon_sym_u8] = ACTIONS(2920), - [anon_sym_i8] = ACTIONS(2920), - [anon_sym_u16] = ACTIONS(2920), - [anon_sym_i16] = ACTIONS(2920), - [anon_sym_u32] = ACTIONS(2920), - [anon_sym_i32] = ACTIONS(2920), - [anon_sym_u64] = ACTIONS(2920), - [anon_sym_i64] = ACTIONS(2920), - [anon_sym_u128] = ACTIONS(2920), - [anon_sym_i128] = ACTIONS(2920), - [anon_sym_isize] = ACTIONS(2920), - [anon_sym_usize] = ACTIONS(2920), - [anon_sym_f32] = ACTIONS(2920), - [anon_sym_f64] = ACTIONS(2920), - [anon_sym_bool] = ACTIONS(2920), - [anon_sym_str] = ACTIONS(2920), - [anon_sym_char] = ACTIONS(2920), - [anon_sym_DASH] = ACTIONS(2918), - [anon_sym_BANG] = ACTIONS(2918), - [anon_sym_AMP] = ACTIONS(2918), - [anon_sym_PIPE] = ACTIONS(2918), - [anon_sym_LT] = ACTIONS(2918), - [anon_sym_DOT_DOT] = ACTIONS(2918), - [anon_sym_COLON_COLON] = ACTIONS(2918), - [anon_sym_POUND] = ACTIONS(2918), - [anon_sym_SQUOTE] = ACTIONS(2920), - [anon_sym_async] = ACTIONS(2920), - [anon_sym_break] = ACTIONS(2920), - [anon_sym_const] = ACTIONS(2920), - [anon_sym_continue] = ACTIONS(2920), - [anon_sym_default] = ACTIONS(2920), - [anon_sym_enum] = ACTIONS(2920), - [anon_sym_fn] = ACTIONS(2920), - [anon_sym_for] = ACTIONS(2920), - [anon_sym_gen] = ACTIONS(2920), - [anon_sym_if] = ACTIONS(2920), - [anon_sym_impl] = ACTIONS(2920), - [anon_sym_let] = ACTIONS(2920), - [anon_sym_loop] = ACTIONS(2920), - [anon_sym_match] = ACTIONS(2920), - [anon_sym_mod] = ACTIONS(2920), - [anon_sym_pub] = ACTIONS(2920), - [anon_sym_return] = ACTIONS(2920), - [anon_sym_static] = ACTIONS(2920), - [anon_sym_struct] = ACTIONS(2920), - [anon_sym_trait] = ACTIONS(2920), - [anon_sym_type] = ACTIONS(2920), - [anon_sym_union] = ACTIONS(2920), - [anon_sym_unsafe] = ACTIONS(2920), - [anon_sym_use] = ACTIONS(2920), - [anon_sym_while] = ACTIONS(2920), - [anon_sym_extern] = ACTIONS(2920), - [anon_sym_yield] = ACTIONS(2920), - [anon_sym_move] = ACTIONS(2920), - [anon_sym_try] = ACTIONS(2920), - [sym_integer_literal] = ACTIONS(2918), - [aux_sym_string_literal_token1] = ACTIONS(2918), - [sym_char_literal] = ACTIONS(2918), - [anon_sym_true] = ACTIONS(2920), - [anon_sym_false] = ACTIONS(2920), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2920), - [sym_super] = ACTIONS(2920), - [sym_crate] = ACTIONS(2920), - [sym_metavariable] = ACTIONS(2918), - [sym__raw_string_literal_start] = ACTIONS(2918), - [sym_float_literal] = ACTIONS(2918), + [ts_builtin_sym_end] = ACTIONS(2745), + [sym_identifier] = ACTIONS(2747), + [anon_sym_SEMI] = ACTIONS(2745), + [anon_sym_macro_rules_BANG] = ACTIONS(2745), + [anon_sym_LPAREN] = ACTIONS(2745), + [anon_sym_LBRACK] = ACTIONS(2745), + [anon_sym_LBRACE] = ACTIONS(2745), + [anon_sym_RBRACE] = ACTIONS(2745), + [anon_sym_STAR] = ACTIONS(2745), + [anon_sym_u8] = ACTIONS(2747), + [anon_sym_i8] = ACTIONS(2747), + [anon_sym_u16] = ACTIONS(2747), + [anon_sym_i16] = ACTIONS(2747), + [anon_sym_u32] = ACTIONS(2747), + [anon_sym_i32] = ACTIONS(2747), + [anon_sym_u64] = ACTIONS(2747), + [anon_sym_i64] = ACTIONS(2747), + [anon_sym_u128] = ACTIONS(2747), + [anon_sym_i128] = ACTIONS(2747), + [anon_sym_isize] = ACTIONS(2747), + [anon_sym_usize] = ACTIONS(2747), + [anon_sym_f32] = ACTIONS(2747), + [anon_sym_f64] = ACTIONS(2747), + [anon_sym_bool] = ACTIONS(2747), + [anon_sym_str] = ACTIONS(2747), + [anon_sym_char] = ACTIONS(2747), + [anon_sym_DASH] = ACTIONS(2745), + [anon_sym_BANG] = ACTIONS(2745), + [anon_sym_AMP] = ACTIONS(2745), + [anon_sym_PIPE] = ACTIONS(2745), + [anon_sym_LT] = ACTIONS(2745), + [anon_sym_DOT_DOT] = ACTIONS(2745), + [anon_sym_COLON_COLON] = ACTIONS(2745), + [anon_sym_POUND] = ACTIONS(2745), + [anon_sym_SQUOTE] = ACTIONS(2747), + [anon_sym_async] = ACTIONS(2747), + [anon_sym_break] = ACTIONS(2747), + [anon_sym_const] = ACTIONS(2747), + [anon_sym_continue] = ACTIONS(2747), + [anon_sym_default] = ACTIONS(2747), + [anon_sym_enum] = ACTIONS(2747), + [anon_sym_fn] = ACTIONS(2747), + [anon_sym_for] = ACTIONS(2747), + [anon_sym_gen] = ACTIONS(2747), + [anon_sym_if] = ACTIONS(2747), + [anon_sym_impl] = ACTIONS(2747), + [anon_sym_let] = ACTIONS(2747), + [anon_sym_loop] = ACTIONS(2747), + [anon_sym_match] = ACTIONS(2747), + [anon_sym_mod] = ACTIONS(2747), + [anon_sym_pub] = ACTIONS(2747), + [anon_sym_return] = ACTIONS(2747), + [anon_sym_static] = ACTIONS(2747), + [anon_sym_struct] = ACTIONS(2747), + [anon_sym_trait] = ACTIONS(2747), + [anon_sym_type] = ACTIONS(2747), + [anon_sym_union] = ACTIONS(2747), + [anon_sym_unsafe] = ACTIONS(2747), + [anon_sym_use] = ACTIONS(2747), + [anon_sym_while] = ACTIONS(2747), + [anon_sym_extern] = ACTIONS(2747), + [anon_sym_yield] = ACTIONS(2747), + [anon_sym_move] = ACTIONS(2747), + [anon_sym_try] = ACTIONS(2747), + [sym_integer_literal] = ACTIONS(2745), + [aux_sym_string_literal_token1] = ACTIONS(2745), + [sym_char_literal] = ACTIONS(2745), + [anon_sym_true] = ACTIONS(2747), + [anon_sym_false] = ACTIONS(2747), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2747), + [sym_super] = ACTIONS(2747), + [sym_crate] = ACTIONS(2747), + [sym_metavariable] = ACTIONS(2745), + [sym__raw_string_literal_start] = ACTIONS(2745), + [sym_float_literal] = ACTIONS(2745), }, [STATE(752)] = { [sym_line_comment] = STATE(752), [sym_block_comment] = STATE(752), - [ts_builtin_sym_end] = ACTIONS(2922), - [sym_identifier] = ACTIONS(2924), - [anon_sym_SEMI] = ACTIONS(2922), - [anon_sym_macro_rules_BANG] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2922), - [anon_sym_LBRACK] = ACTIONS(2922), - [anon_sym_LBRACE] = ACTIONS(2922), - [anon_sym_RBRACE] = ACTIONS(2922), - [anon_sym_STAR] = ACTIONS(2922), - [anon_sym_u8] = ACTIONS(2924), - [anon_sym_i8] = ACTIONS(2924), - [anon_sym_u16] = ACTIONS(2924), - [anon_sym_i16] = ACTIONS(2924), - [anon_sym_u32] = ACTIONS(2924), - [anon_sym_i32] = ACTIONS(2924), - [anon_sym_u64] = ACTIONS(2924), - [anon_sym_i64] = ACTIONS(2924), - [anon_sym_u128] = ACTIONS(2924), - [anon_sym_i128] = ACTIONS(2924), - [anon_sym_isize] = ACTIONS(2924), - [anon_sym_usize] = ACTIONS(2924), - [anon_sym_f32] = ACTIONS(2924), - [anon_sym_f64] = ACTIONS(2924), - [anon_sym_bool] = ACTIONS(2924), - [anon_sym_str] = ACTIONS(2924), - [anon_sym_char] = ACTIONS(2924), - [anon_sym_DASH] = ACTIONS(2922), - [anon_sym_BANG] = ACTIONS(2922), - [anon_sym_AMP] = ACTIONS(2922), - [anon_sym_PIPE] = ACTIONS(2922), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_DOT_DOT] = ACTIONS(2922), - [anon_sym_COLON_COLON] = ACTIONS(2922), - [anon_sym_POUND] = ACTIONS(2922), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(2924), - [anon_sym_break] = ACTIONS(2924), - [anon_sym_const] = ACTIONS(2924), - [anon_sym_continue] = ACTIONS(2924), - [anon_sym_default] = ACTIONS(2924), - [anon_sym_enum] = ACTIONS(2924), - [anon_sym_fn] = ACTIONS(2924), - [anon_sym_for] = ACTIONS(2924), - [anon_sym_gen] = ACTIONS(2924), - [anon_sym_if] = ACTIONS(2924), - [anon_sym_impl] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2924), - [anon_sym_loop] = ACTIONS(2924), - [anon_sym_match] = ACTIONS(2924), - [anon_sym_mod] = ACTIONS(2924), - [anon_sym_pub] = ACTIONS(2924), - [anon_sym_return] = ACTIONS(2924), - [anon_sym_static] = ACTIONS(2924), - [anon_sym_struct] = ACTIONS(2924), - [anon_sym_trait] = ACTIONS(2924), - [anon_sym_type] = ACTIONS(2924), - [anon_sym_union] = ACTIONS(2924), - [anon_sym_unsafe] = ACTIONS(2924), - [anon_sym_use] = ACTIONS(2924), - [anon_sym_while] = ACTIONS(2924), - [anon_sym_extern] = ACTIONS(2924), - [anon_sym_yield] = ACTIONS(2924), - [anon_sym_move] = ACTIONS(2924), - [anon_sym_try] = ACTIONS(2924), - [sym_integer_literal] = ACTIONS(2922), - [aux_sym_string_literal_token1] = ACTIONS(2922), - [sym_char_literal] = ACTIONS(2922), - [anon_sym_true] = ACTIONS(2924), - [anon_sym_false] = ACTIONS(2924), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2924), - [sym_super] = ACTIONS(2924), - [sym_crate] = ACTIONS(2924), - [sym_metavariable] = ACTIONS(2922), - [sym__raw_string_literal_start] = ACTIONS(2922), - [sym_float_literal] = ACTIONS(2922), + [ts_builtin_sym_end] = ACTIONS(2749), + [sym_identifier] = ACTIONS(2751), + [anon_sym_SEMI] = ACTIONS(2749), + [anon_sym_macro_rules_BANG] = ACTIONS(2749), + [anon_sym_LPAREN] = ACTIONS(2749), + [anon_sym_LBRACK] = ACTIONS(2749), + [anon_sym_LBRACE] = ACTIONS(2749), + [anon_sym_RBRACE] = ACTIONS(2749), + [anon_sym_STAR] = ACTIONS(2749), + [anon_sym_u8] = ACTIONS(2751), + [anon_sym_i8] = ACTIONS(2751), + [anon_sym_u16] = ACTIONS(2751), + [anon_sym_i16] = ACTIONS(2751), + [anon_sym_u32] = ACTIONS(2751), + [anon_sym_i32] = ACTIONS(2751), + [anon_sym_u64] = ACTIONS(2751), + [anon_sym_i64] = ACTIONS(2751), + [anon_sym_u128] = ACTIONS(2751), + [anon_sym_i128] = ACTIONS(2751), + [anon_sym_isize] = ACTIONS(2751), + [anon_sym_usize] = ACTIONS(2751), + [anon_sym_f32] = ACTIONS(2751), + [anon_sym_f64] = ACTIONS(2751), + [anon_sym_bool] = ACTIONS(2751), + [anon_sym_str] = ACTIONS(2751), + [anon_sym_char] = ACTIONS(2751), + [anon_sym_DASH] = ACTIONS(2749), + [anon_sym_BANG] = ACTIONS(2749), + [anon_sym_AMP] = ACTIONS(2749), + [anon_sym_PIPE] = ACTIONS(2749), + [anon_sym_LT] = ACTIONS(2749), + [anon_sym_DOT_DOT] = ACTIONS(2749), + [anon_sym_COLON_COLON] = ACTIONS(2749), + [anon_sym_POUND] = ACTIONS(2749), + [anon_sym_SQUOTE] = ACTIONS(2751), + [anon_sym_async] = ACTIONS(2751), + [anon_sym_break] = ACTIONS(2751), + [anon_sym_const] = ACTIONS(2751), + [anon_sym_continue] = ACTIONS(2751), + [anon_sym_default] = ACTIONS(2751), + [anon_sym_enum] = ACTIONS(2751), + [anon_sym_fn] = ACTIONS(2751), + [anon_sym_for] = ACTIONS(2751), + [anon_sym_gen] = ACTIONS(2751), + [anon_sym_if] = ACTIONS(2751), + [anon_sym_impl] = ACTIONS(2751), + [anon_sym_let] = ACTIONS(2751), + [anon_sym_loop] = ACTIONS(2751), + [anon_sym_match] = ACTIONS(2751), + [anon_sym_mod] = ACTIONS(2751), + [anon_sym_pub] = ACTIONS(2751), + [anon_sym_return] = ACTIONS(2751), + [anon_sym_static] = ACTIONS(2751), + [anon_sym_struct] = ACTIONS(2751), + [anon_sym_trait] = ACTIONS(2751), + [anon_sym_type] = ACTIONS(2751), + [anon_sym_union] = ACTIONS(2751), + [anon_sym_unsafe] = ACTIONS(2751), + [anon_sym_use] = ACTIONS(2751), + [anon_sym_while] = ACTIONS(2751), + [anon_sym_extern] = ACTIONS(2751), + [anon_sym_yield] = ACTIONS(2751), + [anon_sym_move] = ACTIONS(2751), + [anon_sym_try] = ACTIONS(2751), + [sym_integer_literal] = ACTIONS(2749), + [aux_sym_string_literal_token1] = ACTIONS(2749), + [sym_char_literal] = ACTIONS(2749), + [anon_sym_true] = ACTIONS(2751), + [anon_sym_false] = ACTIONS(2751), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2751), + [sym_super] = ACTIONS(2751), + [sym_crate] = ACTIONS(2751), + [sym_metavariable] = ACTIONS(2749), + [sym__raw_string_literal_start] = ACTIONS(2749), + [sym_float_literal] = ACTIONS(2749), }, [STATE(753)] = { [sym_line_comment] = STATE(753), [sym_block_comment] = STATE(753), - [ts_builtin_sym_end] = ACTIONS(2926), - [sym_identifier] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(2926), - [anon_sym_macro_rules_BANG] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2926), - [anon_sym_LBRACK] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2926), - [anon_sym_RBRACE] = ACTIONS(2926), - [anon_sym_STAR] = ACTIONS(2926), - [anon_sym_u8] = ACTIONS(2928), - [anon_sym_i8] = ACTIONS(2928), - [anon_sym_u16] = ACTIONS(2928), - [anon_sym_i16] = ACTIONS(2928), - [anon_sym_u32] = ACTIONS(2928), - [anon_sym_i32] = ACTIONS(2928), - [anon_sym_u64] = ACTIONS(2928), - [anon_sym_i64] = ACTIONS(2928), - [anon_sym_u128] = ACTIONS(2928), - [anon_sym_i128] = ACTIONS(2928), - [anon_sym_isize] = ACTIONS(2928), - [anon_sym_usize] = ACTIONS(2928), - [anon_sym_f32] = ACTIONS(2928), - [anon_sym_f64] = ACTIONS(2928), - [anon_sym_bool] = ACTIONS(2928), - [anon_sym_str] = ACTIONS(2928), - [anon_sym_char] = ACTIONS(2928), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_BANG] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2926), - [anon_sym_PIPE] = ACTIONS(2926), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_DOT_DOT] = ACTIONS(2926), - [anon_sym_COLON_COLON] = ACTIONS(2926), - [anon_sym_POUND] = ACTIONS(2926), - [anon_sym_SQUOTE] = ACTIONS(2928), - [anon_sym_async] = ACTIONS(2928), - [anon_sym_break] = ACTIONS(2928), - [anon_sym_const] = ACTIONS(2928), - [anon_sym_continue] = ACTIONS(2928), - [anon_sym_default] = ACTIONS(2928), - [anon_sym_enum] = ACTIONS(2928), - [anon_sym_fn] = ACTIONS(2928), - [anon_sym_for] = ACTIONS(2928), - [anon_sym_gen] = ACTIONS(2928), - [anon_sym_if] = ACTIONS(2928), - [anon_sym_impl] = ACTIONS(2928), - [anon_sym_let] = ACTIONS(2928), - [anon_sym_loop] = ACTIONS(2928), - [anon_sym_match] = ACTIONS(2928), - [anon_sym_mod] = ACTIONS(2928), - [anon_sym_pub] = ACTIONS(2928), - [anon_sym_return] = ACTIONS(2928), - [anon_sym_static] = ACTIONS(2928), - [anon_sym_struct] = ACTIONS(2928), - [anon_sym_trait] = ACTIONS(2928), - [anon_sym_type] = ACTIONS(2928), - [anon_sym_union] = ACTIONS(2928), - [anon_sym_unsafe] = ACTIONS(2928), - [anon_sym_use] = ACTIONS(2928), - [anon_sym_while] = ACTIONS(2928), - [anon_sym_extern] = ACTIONS(2928), - [anon_sym_yield] = ACTIONS(2928), - [anon_sym_move] = ACTIONS(2928), - [anon_sym_try] = ACTIONS(2928), - [sym_integer_literal] = ACTIONS(2926), - [aux_sym_string_literal_token1] = ACTIONS(2926), - [sym_char_literal] = ACTIONS(2926), - [anon_sym_true] = ACTIONS(2928), - [anon_sym_false] = ACTIONS(2928), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2928), - [sym_super] = ACTIONS(2928), - [sym_crate] = ACTIONS(2928), - [sym_metavariable] = ACTIONS(2926), - [sym__raw_string_literal_start] = ACTIONS(2926), - [sym_float_literal] = ACTIONS(2926), + [ts_builtin_sym_end] = ACTIONS(2753), + [sym_identifier] = ACTIONS(2755), + [anon_sym_SEMI] = ACTIONS(2753), + [anon_sym_macro_rules_BANG] = ACTIONS(2753), + [anon_sym_LPAREN] = ACTIONS(2753), + [anon_sym_LBRACK] = ACTIONS(2753), + [anon_sym_LBRACE] = ACTIONS(2753), + [anon_sym_RBRACE] = ACTIONS(2753), + [anon_sym_STAR] = ACTIONS(2753), + [anon_sym_u8] = ACTIONS(2755), + [anon_sym_i8] = ACTIONS(2755), + [anon_sym_u16] = ACTIONS(2755), + [anon_sym_i16] = ACTIONS(2755), + [anon_sym_u32] = ACTIONS(2755), + [anon_sym_i32] = ACTIONS(2755), + [anon_sym_u64] = ACTIONS(2755), + [anon_sym_i64] = ACTIONS(2755), + [anon_sym_u128] = ACTIONS(2755), + [anon_sym_i128] = ACTIONS(2755), + [anon_sym_isize] = ACTIONS(2755), + [anon_sym_usize] = ACTIONS(2755), + [anon_sym_f32] = ACTIONS(2755), + [anon_sym_f64] = ACTIONS(2755), + [anon_sym_bool] = ACTIONS(2755), + [anon_sym_str] = ACTIONS(2755), + [anon_sym_char] = ACTIONS(2755), + [anon_sym_DASH] = ACTIONS(2753), + [anon_sym_BANG] = ACTIONS(2753), + [anon_sym_AMP] = ACTIONS(2753), + [anon_sym_PIPE] = ACTIONS(2753), + [anon_sym_LT] = ACTIONS(2753), + [anon_sym_DOT_DOT] = ACTIONS(2753), + [anon_sym_COLON_COLON] = ACTIONS(2753), + [anon_sym_POUND] = ACTIONS(2753), + [anon_sym_SQUOTE] = ACTIONS(2755), + [anon_sym_async] = ACTIONS(2755), + [anon_sym_break] = ACTIONS(2755), + [anon_sym_const] = ACTIONS(2755), + [anon_sym_continue] = ACTIONS(2755), + [anon_sym_default] = ACTIONS(2755), + [anon_sym_enum] = ACTIONS(2755), + [anon_sym_fn] = ACTIONS(2755), + [anon_sym_for] = ACTIONS(2755), + [anon_sym_gen] = ACTIONS(2755), + [anon_sym_if] = ACTIONS(2755), + [anon_sym_impl] = ACTIONS(2755), + [anon_sym_let] = ACTIONS(2755), + [anon_sym_loop] = ACTIONS(2755), + [anon_sym_match] = ACTIONS(2755), + [anon_sym_mod] = ACTIONS(2755), + [anon_sym_pub] = ACTIONS(2755), + [anon_sym_return] = ACTIONS(2755), + [anon_sym_static] = ACTIONS(2755), + [anon_sym_struct] = ACTIONS(2755), + [anon_sym_trait] = ACTIONS(2755), + [anon_sym_type] = ACTIONS(2755), + [anon_sym_union] = ACTIONS(2755), + [anon_sym_unsafe] = ACTIONS(2755), + [anon_sym_use] = ACTIONS(2755), + [anon_sym_while] = ACTIONS(2755), + [anon_sym_extern] = ACTIONS(2755), + [anon_sym_yield] = ACTIONS(2755), + [anon_sym_move] = ACTIONS(2755), + [anon_sym_try] = ACTIONS(2755), + [sym_integer_literal] = ACTIONS(2753), + [aux_sym_string_literal_token1] = ACTIONS(2753), + [sym_char_literal] = ACTIONS(2753), + [anon_sym_true] = ACTIONS(2755), + [anon_sym_false] = ACTIONS(2755), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2755), + [sym_super] = ACTIONS(2755), + [sym_crate] = ACTIONS(2755), + [sym_metavariable] = ACTIONS(2753), + [sym__raw_string_literal_start] = ACTIONS(2753), + [sym_float_literal] = ACTIONS(2753), }, [STATE(754)] = { [sym_line_comment] = STATE(754), [sym_block_comment] = STATE(754), - [ts_builtin_sym_end] = ACTIONS(2930), - [sym_identifier] = ACTIONS(2932), - [anon_sym_SEMI] = ACTIONS(2930), - [anon_sym_macro_rules_BANG] = ACTIONS(2930), - [anon_sym_LPAREN] = ACTIONS(2930), - [anon_sym_LBRACK] = ACTIONS(2930), - [anon_sym_LBRACE] = ACTIONS(2930), - [anon_sym_RBRACE] = ACTIONS(2930), - [anon_sym_STAR] = ACTIONS(2930), - [anon_sym_u8] = ACTIONS(2932), - [anon_sym_i8] = ACTIONS(2932), - [anon_sym_u16] = ACTIONS(2932), - [anon_sym_i16] = ACTIONS(2932), - [anon_sym_u32] = ACTIONS(2932), - [anon_sym_i32] = ACTIONS(2932), - [anon_sym_u64] = ACTIONS(2932), - [anon_sym_i64] = ACTIONS(2932), - [anon_sym_u128] = ACTIONS(2932), - [anon_sym_i128] = ACTIONS(2932), - [anon_sym_isize] = ACTIONS(2932), - [anon_sym_usize] = ACTIONS(2932), - [anon_sym_f32] = ACTIONS(2932), - [anon_sym_f64] = ACTIONS(2932), - [anon_sym_bool] = ACTIONS(2932), - [anon_sym_str] = ACTIONS(2932), - [anon_sym_char] = ACTIONS(2932), - [anon_sym_DASH] = ACTIONS(2930), - [anon_sym_BANG] = ACTIONS(2930), - [anon_sym_AMP] = ACTIONS(2930), - [anon_sym_PIPE] = ACTIONS(2930), - [anon_sym_LT] = ACTIONS(2930), - [anon_sym_DOT_DOT] = ACTIONS(2930), - [anon_sym_COLON_COLON] = ACTIONS(2930), - [anon_sym_POUND] = ACTIONS(2930), - [anon_sym_SQUOTE] = ACTIONS(2932), - [anon_sym_async] = ACTIONS(2932), - [anon_sym_break] = ACTIONS(2932), - [anon_sym_const] = ACTIONS(2932), - [anon_sym_continue] = ACTIONS(2932), - [anon_sym_default] = ACTIONS(2932), - [anon_sym_enum] = ACTIONS(2932), - [anon_sym_fn] = ACTIONS(2932), - [anon_sym_for] = ACTIONS(2932), - [anon_sym_gen] = ACTIONS(2932), - [anon_sym_if] = ACTIONS(2932), - [anon_sym_impl] = ACTIONS(2932), - [anon_sym_let] = ACTIONS(2932), - [anon_sym_loop] = ACTIONS(2932), - [anon_sym_match] = ACTIONS(2932), - [anon_sym_mod] = ACTIONS(2932), - [anon_sym_pub] = ACTIONS(2932), - [anon_sym_return] = ACTIONS(2932), - [anon_sym_static] = ACTIONS(2932), - [anon_sym_struct] = ACTIONS(2932), - [anon_sym_trait] = ACTIONS(2932), - [anon_sym_type] = ACTIONS(2932), - [anon_sym_union] = ACTIONS(2932), - [anon_sym_unsafe] = ACTIONS(2932), - [anon_sym_use] = ACTIONS(2932), - [anon_sym_while] = ACTIONS(2932), - [anon_sym_extern] = ACTIONS(2932), - [anon_sym_yield] = ACTIONS(2932), - [anon_sym_move] = ACTIONS(2932), - [anon_sym_try] = ACTIONS(2932), - [sym_integer_literal] = ACTIONS(2930), - [aux_sym_string_literal_token1] = ACTIONS(2930), - [sym_char_literal] = ACTIONS(2930), - [anon_sym_true] = ACTIONS(2932), - [anon_sym_false] = ACTIONS(2932), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2932), - [sym_super] = ACTIONS(2932), - [sym_crate] = ACTIONS(2932), - [sym_metavariable] = ACTIONS(2930), - [sym__raw_string_literal_start] = ACTIONS(2930), - [sym_float_literal] = ACTIONS(2930), + [ts_builtin_sym_end] = ACTIONS(2757), + [sym_identifier] = ACTIONS(2759), + [anon_sym_SEMI] = ACTIONS(2757), + [anon_sym_macro_rules_BANG] = ACTIONS(2757), + [anon_sym_LPAREN] = ACTIONS(2757), + [anon_sym_LBRACK] = ACTIONS(2757), + [anon_sym_LBRACE] = ACTIONS(2757), + [anon_sym_RBRACE] = ACTIONS(2757), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_u8] = ACTIONS(2759), + [anon_sym_i8] = ACTIONS(2759), + [anon_sym_u16] = ACTIONS(2759), + [anon_sym_i16] = ACTIONS(2759), + [anon_sym_u32] = ACTIONS(2759), + [anon_sym_i32] = ACTIONS(2759), + [anon_sym_u64] = ACTIONS(2759), + [anon_sym_i64] = ACTIONS(2759), + [anon_sym_u128] = ACTIONS(2759), + [anon_sym_i128] = ACTIONS(2759), + [anon_sym_isize] = ACTIONS(2759), + [anon_sym_usize] = ACTIONS(2759), + [anon_sym_f32] = ACTIONS(2759), + [anon_sym_f64] = ACTIONS(2759), + [anon_sym_bool] = ACTIONS(2759), + [anon_sym_str] = ACTIONS(2759), + [anon_sym_char] = ACTIONS(2759), + [anon_sym_DASH] = ACTIONS(2757), + [anon_sym_BANG] = ACTIONS(2757), + [anon_sym_AMP] = ACTIONS(2757), + [anon_sym_PIPE] = ACTIONS(2757), + [anon_sym_LT] = ACTIONS(2757), + [anon_sym_DOT_DOT] = ACTIONS(2757), + [anon_sym_COLON_COLON] = ACTIONS(2757), + [anon_sym_POUND] = ACTIONS(2757), + [anon_sym_SQUOTE] = ACTIONS(2759), + [anon_sym_async] = ACTIONS(2759), + [anon_sym_break] = ACTIONS(2759), + [anon_sym_const] = ACTIONS(2759), + [anon_sym_continue] = ACTIONS(2759), + [anon_sym_default] = ACTIONS(2759), + [anon_sym_enum] = ACTIONS(2759), + [anon_sym_fn] = ACTIONS(2759), + [anon_sym_for] = ACTIONS(2759), + [anon_sym_gen] = ACTIONS(2759), + [anon_sym_if] = ACTIONS(2759), + [anon_sym_impl] = ACTIONS(2759), + [anon_sym_let] = ACTIONS(2759), + [anon_sym_loop] = ACTIONS(2759), + [anon_sym_match] = ACTIONS(2759), + [anon_sym_mod] = ACTIONS(2759), + [anon_sym_pub] = ACTIONS(2759), + [anon_sym_return] = ACTIONS(2759), + [anon_sym_static] = ACTIONS(2759), + [anon_sym_struct] = ACTIONS(2759), + [anon_sym_trait] = ACTIONS(2759), + [anon_sym_type] = ACTIONS(2759), + [anon_sym_union] = ACTIONS(2759), + [anon_sym_unsafe] = ACTIONS(2759), + [anon_sym_use] = ACTIONS(2759), + [anon_sym_while] = ACTIONS(2759), + [anon_sym_extern] = ACTIONS(2759), + [anon_sym_yield] = ACTIONS(2759), + [anon_sym_move] = ACTIONS(2759), + [anon_sym_try] = ACTIONS(2759), + [sym_integer_literal] = ACTIONS(2757), + [aux_sym_string_literal_token1] = ACTIONS(2757), + [sym_char_literal] = ACTIONS(2757), + [anon_sym_true] = ACTIONS(2759), + [anon_sym_false] = ACTIONS(2759), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2759), + [sym_super] = ACTIONS(2759), + [sym_crate] = ACTIONS(2759), + [sym_metavariable] = ACTIONS(2757), + [sym__raw_string_literal_start] = ACTIONS(2757), + [sym_float_literal] = ACTIONS(2757), }, [STATE(755)] = { [sym_line_comment] = STATE(755), [sym_block_comment] = STATE(755), - [ts_builtin_sym_end] = ACTIONS(2934), - [sym_identifier] = ACTIONS(2936), - [anon_sym_SEMI] = ACTIONS(2934), - [anon_sym_macro_rules_BANG] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2934), - [anon_sym_LBRACK] = ACTIONS(2934), - [anon_sym_LBRACE] = ACTIONS(2934), - [anon_sym_RBRACE] = ACTIONS(2934), - [anon_sym_STAR] = ACTIONS(2934), - [anon_sym_u8] = ACTIONS(2936), - [anon_sym_i8] = ACTIONS(2936), - [anon_sym_u16] = ACTIONS(2936), - [anon_sym_i16] = ACTIONS(2936), - [anon_sym_u32] = ACTIONS(2936), - [anon_sym_i32] = ACTIONS(2936), - [anon_sym_u64] = ACTIONS(2936), - [anon_sym_i64] = ACTIONS(2936), - [anon_sym_u128] = ACTIONS(2936), - [anon_sym_i128] = ACTIONS(2936), - [anon_sym_isize] = ACTIONS(2936), - [anon_sym_usize] = ACTIONS(2936), - [anon_sym_f32] = ACTIONS(2936), - [anon_sym_f64] = ACTIONS(2936), - [anon_sym_bool] = ACTIONS(2936), - [anon_sym_str] = ACTIONS(2936), - [anon_sym_char] = ACTIONS(2936), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_BANG] = ACTIONS(2934), - [anon_sym_AMP] = ACTIONS(2934), - [anon_sym_PIPE] = ACTIONS(2934), - [anon_sym_LT] = ACTIONS(2934), - [anon_sym_DOT_DOT] = ACTIONS(2934), - [anon_sym_COLON_COLON] = ACTIONS(2934), - [anon_sym_POUND] = ACTIONS(2934), - [anon_sym_SQUOTE] = ACTIONS(2936), - [anon_sym_async] = ACTIONS(2936), - [anon_sym_break] = ACTIONS(2936), - [anon_sym_const] = ACTIONS(2936), - [anon_sym_continue] = ACTIONS(2936), - [anon_sym_default] = ACTIONS(2936), - [anon_sym_enum] = ACTIONS(2936), - [anon_sym_fn] = ACTIONS(2936), - [anon_sym_for] = ACTIONS(2936), - [anon_sym_gen] = ACTIONS(2936), - [anon_sym_if] = ACTIONS(2936), - [anon_sym_impl] = ACTIONS(2936), - [anon_sym_let] = ACTIONS(2936), - [anon_sym_loop] = ACTIONS(2936), - [anon_sym_match] = ACTIONS(2936), - [anon_sym_mod] = ACTIONS(2936), - [anon_sym_pub] = ACTIONS(2936), - [anon_sym_return] = ACTIONS(2936), - [anon_sym_static] = ACTIONS(2936), - [anon_sym_struct] = ACTIONS(2936), - [anon_sym_trait] = ACTIONS(2936), - [anon_sym_type] = ACTIONS(2936), - [anon_sym_union] = ACTIONS(2936), - [anon_sym_unsafe] = ACTIONS(2936), - [anon_sym_use] = ACTIONS(2936), - [anon_sym_while] = ACTIONS(2936), - [anon_sym_extern] = ACTIONS(2936), - [anon_sym_yield] = ACTIONS(2936), - [anon_sym_move] = ACTIONS(2936), - [anon_sym_try] = ACTIONS(2936), - [sym_integer_literal] = ACTIONS(2934), - [aux_sym_string_literal_token1] = ACTIONS(2934), - [sym_char_literal] = ACTIONS(2934), - [anon_sym_true] = ACTIONS(2936), - [anon_sym_false] = ACTIONS(2936), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2936), - [sym_super] = ACTIONS(2936), - [sym_crate] = ACTIONS(2936), - [sym_metavariable] = ACTIONS(2934), - [sym__raw_string_literal_start] = ACTIONS(2934), - [sym_float_literal] = ACTIONS(2934), + [ts_builtin_sym_end] = ACTIONS(2761), + [sym_identifier] = ACTIONS(2763), + [anon_sym_SEMI] = ACTIONS(2761), + [anon_sym_macro_rules_BANG] = ACTIONS(2761), + [anon_sym_LPAREN] = ACTIONS(2761), + [anon_sym_LBRACK] = ACTIONS(2761), + [anon_sym_LBRACE] = ACTIONS(2761), + [anon_sym_RBRACE] = ACTIONS(2761), + [anon_sym_STAR] = ACTIONS(2761), + [anon_sym_u8] = ACTIONS(2763), + [anon_sym_i8] = ACTIONS(2763), + [anon_sym_u16] = ACTIONS(2763), + [anon_sym_i16] = ACTIONS(2763), + [anon_sym_u32] = ACTIONS(2763), + [anon_sym_i32] = ACTIONS(2763), + [anon_sym_u64] = ACTIONS(2763), + [anon_sym_i64] = ACTIONS(2763), + [anon_sym_u128] = ACTIONS(2763), + [anon_sym_i128] = ACTIONS(2763), + [anon_sym_isize] = ACTIONS(2763), + [anon_sym_usize] = ACTIONS(2763), + [anon_sym_f32] = ACTIONS(2763), + [anon_sym_f64] = ACTIONS(2763), + [anon_sym_bool] = ACTIONS(2763), + [anon_sym_str] = ACTIONS(2763), + [anon_sym_char] = ACTIONS(2763), + [anon_sym_DASH] = ACTIONS(2761), + [anon_sym_BANG] = ACTIONS(2761), + [anon_sym_AMP] = ACTIONS(2761), + [anon_sym_PIPE] = ACTIONS(2761), + [anon_sym_LT] = ACTIONS(2761), + [anon_sym_DOT_DOT] = ACTIONS(2761), + [anon_sym_COLON_COLON] = ACTIONS(2761), + [anon_sym_POUND] = ACTIONS(2761), + [anon_sym_SQUOTE] = ACTIONS(2763), + [anon_sym_async] = ACTIONS(2763), + [anon_sym_break] = ACTIONS(2763), + [anon_sym_const] = ACTIONS(2763), + [anon_sym_continue] = ACTIONS(2763), + [anon_sym_default] = ACTIONS(2763), + [anon_sym_enum] = ACTIONS(2763), + [anon_sym_fn] = ACTIONS(2763), + [anon_sym_for] = ACTIONS(2763), + [anon_sym_gen] = ACTIONS(2763), + [anon_sym_if] = ACTIONS(2763), + [anon_sym_impl] = ACTIONS(2763), + [anon_sym_let] = ACTIONS(2763), + [anon_sym_loop] = ACTIONS(2763), + [anon_sym_match] = ACTIONS(2763), + [anon_sym_mod] = ACTIONS(2763), + [anon_sym_pub] = ACTIONS(2763), + [anon_sym_return] = ACTIONS(2763), + [anon_sym_static] = ACTIONS(2763), + [anon_sym_struct] = ACTIONS(2763), + [anon_sym_trait] = ACTIONS(2763), + [anon_sym_type] = ACTIONS(2763), + [anon_sym_union] = ACTIONS(2763), + [anon_sym_unsafe] = ACTIONS(2763), + [anon_sym_use] = ACTIONS(2763), + [anon_sym_while] = ACTIONS(2763), + [anon_sym_extern] = ACTIONS(2763), + [anon_sym_yield] = ACTIONS(2763), + [anon_sym_move] = ACTIONS(2763), + [anon_sym_try] = ACTIONS(2763), + [sym_integer_literal] = ACTIONS(2761), + [aux_sym_string_literal_token1] = ACTIONS(2761), + [sym_char_literal] = ACTIONS(2761), + [anon_sym_true] = ACTIONS(2763), + [anon_sym_false] = ACTIONS(2763), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2763), + [sym_super] = ACTIONS(2763), + [sym_crate] = ACTIONS(2763), + [sym_metavariable] = ACTIONS(2761), + [sym__raw_string_literal_start] = ACTIONS(2761), + [sym_float_literal] = ACTIONS(2761), }, [STATE(756)] = { [sym_line_comment] = STATE(756), [sym_block_comment] = STATE(756), - [ts_builtin_sym_end] = ACTIONS(2938), - [sym_identifier] = ACTIONS(2940), - [anon_sym_SEMI] = ACTIONS(2938), - [anon_sym_macro_rules_BANG] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2938), - [anon_sym_LBRACK] = ACTIONS(2938), - [anon_sym_LBRACE] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(2938), - [anon_sym_STAR] = ACTIONS(2938), - [anon_sym_u8] = ACTIONS(2940), - [anon_sym_i8] = ACTIONS(2940), - [anon_sym_u16] = ACTIONS(2940), - [anon_sym_i16] = ACTIONS(2940), - [anon_sym_u32] = ACTIONS(2940), - [anon_sym_i32] = ACTIONS(2940), - [anon_sym_u64] = ACTIONS(2940), - [anon_sym_i64] = ACTIONS(2940), - [anon_sym_u128] = ACTIONS(2940), - [anon_sym_i128] = ACTIONS(2940), - [anon_sym_isize] = ACTIONS(2940), - [anon_sym_usize] = ACTIONS(2940), - [anon_sym_f32] = ACTIONS(2940), - [anon_sym_f64] = ACTIONS(2940), - [anon_sym_bool] = ACTIONS(2940), - [anon_sym_str] = ACTIONS(2940), - [anon_sym_char] = ACTIONS(2940), - [anon_sym_DASH] = ACTIONS(2938), - [anon_sym_BANG] = ACTIONS(2938), - [anon_sym_AMP] = ACTIONS(2938), - [anon_sym_PIPE] = ACTIONS(2938), - [anon_sym_LT] = ACTIONS(2938), - [anon_sym_DOT_DOT] = ACTIONS(2938), - [anon_sym_COLON_COLON] = ACTIONS(2938), - [anon_sym_POUND] = ACTIONS(2938), - [anon_sym_SQUOTE] = ACTIONS(2940), - [anon_sym_async] = ACTIONS(2940), - [anon_sym_break] = ACTIONS(2940), - [anon_sym_const] = ACTIONS(2940), - [anon_sym_continue] = ACTIONS(2940), - [anon_sym_default] = ACTIONS(2940), - [anon_sym_enum] = ACTIONS(2940), - [anon_sym_fn] = ACTIONS(2940), - [anon_sym_for] = ACTIONS(2940), - [anon_sym_gen] = ACTIONS(2940), - [anon_sym_if] = ACTIONS(2940), - [anon_sym_impl] = ACTIONS(2940), - [anon_sym_let] = ACTIONS(2940), - [anon_sym_loop] = ACTIONS(2940), - [anon_sym_match] = ACTIONS(2940), - [anon_sym_mod] = ACTIONS(2940), - [anon_sym_pub] = ACTIONS(2940), - [anon_sym_return] = ACTIONS(2940), - [anon_sym_static] = ACTIONS(2940), - [anon_sym_struct] = ACTIONS(2940), - [anon_sym_trait] = ACTIONS(2940), - [anon_sym_type] = ACTIONS(2940), - [anon_sym_union] = ACTIONS(2940), - [anon_sym_unsafe] = ACTIONS(2940), - [anon_sym_use] = ACTIONS(2940), - [anon_sym_while] = ACTIONS(2940), - [anon_sym_extern] = ACTIONS(2940), - [anon_sym_yield] = ACTIONS(2940), - [anon_sym_move] = ACTIONS(2940), - [anon_sym_try] = ACTIONS(2940), - [sym_integer_literal] = ACTIONS(2938), - [aux_sym_string_literal_token1] = ACTIONS(2938), - [sym_char_literal] = ACTIONS(2938), - [anon_sym_true] = ACTIONS(2940), - [anon_sym_false] = ACTIONS(2940), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2940), - [sym_super] = ACTIONS(2940), - [sym_crate] = ACTIONS(2940), - [sym_metavariable] = ACTIONS(2938), - [sym__raw_string_literal_start] = ACTIONS(2938), - [sym_float_literal] = ACTIONS(2938), + [ts_builtin_sym_end] = ACTIONS(2765), + [sym_identifier] = ACTIONS(2767), + [anon_sym_SEMI] = ACTIONS(2765), + [anon_sym_macro_rules_BANG] = ACTIONS(2765), + [anon_sym_LPAREN] = ACTIONS(2765), + [anon_sym_LBRACK] = ACTIONS(2765), + [anon_sym_LBRACE] = ACTIONS(2765), + [anon_sym_RBRACE] = ACTIONS(2765), + [anon_sym_STAR] = ACTIONS(2765), + [anon_sym_u8] = ACTIONS(2767), + [anon_sym_i8] = ACTIONS(2767), + [anon_sym_u16] = ACTIONS(2767), + [anon_sym_i16] = ACTIONS(2767), + [anon_sym_u32] = ACTIONS(2767), + [anon_sym_i32] = ACTIONS(2767), + [anon_sym_u64] = ACTIONS(2767), + [anon_sym_i64] = ACTIONS(2767), + [anon_sym_u128] = ACTIONS(2767), + [anon_sym_i128] = ACTIONS(2767), + [anon_sym_isize] = ACTIONS(2767), + [anon_sym_usize] = ACTIONS(2767), + [anon_sym_f32] = ACTIONS(2767), + [anon_sym_f64] = ACTIONS(2767), + [anon_sym_bool] = ACTIONS(2767), + [anon_sym_str] = ACTIONS(2767), + [anon_sym_char] = ACTIONS(2767), + [anon_sym_DASH] = ACTIONS(2765), + [anon_sym_BANG] = ACTIONS(2765), + [anon_sym_AMP] = ACTIONS(2765), + [anon_sym_PIPE] = ACTIONS(2765), + [anon_sym_LT] = ACTIONS(2765), + [anon_sym_DOT_DOT] = ACTIONS(2765), + [anon_sym_COLON_COLON] = ACTIONS(2765), + [anon_sym_POUND] = ACTIONS(2765), + [anon_sym_SQUOTE] = ACTIONS(2767), + [anon_sym_async] = ACTIONS(2767), + [anon_sym_break] = ACTIONS(2767), + [anon_sym_const] = ACTIONS(2767), + [anon_sym_continue] = ACTIONS(2767), + [anon_sym_default] = ACTIONS(2767), + [anon_sym_enum] = ACTIONS(2767), + [anon_sym_fn] = ACTIONS(2767), + [anon_sym_for] = ACTIONS(2767), + [anon_sym_gen] = ACTIONS(2767), + [anon_sym_if] = ACTIONS(2767), + [anon_sym_impl] = ACTIONS(2767), + [anon_sym_let] = ACTIONS(2767), + [anon_sym_loop] = ACTIONS(2767), + [anon_sym_match] = ACTIONS(2767), + [anon_sym_mod] = ACTIONS(2767), + [anon_sym_pub] = ACTIONS(2767), + [anon_sym_return] = ACTIONS(2767), + [anon_sym_static] = ACTIONS(2767), + [anon_sym_struct] = ACTIONS(2767), + [anon_sym_trait] = ACTIONS(2767), + [anon_sym_type] = ACTIONS(2767), + [anon_sym_union] = ACTIONS(2767), + [anon_sym_unsafe] = ACTIONS(2767), + [anon_sym_use] = ACTIONS(2767), + [anon_sym_while] = ACTIONS(2767), + [anon_sym_extern] = ACTIONS(2767), + [anon_sym_yield] = ACTIONS(2767), + [anon_sym_move] = ACTIONS(2767), + [anon_sym_try] = ACTIONS(2767), + [sym_integer_literal] = ACTIONS(2765), + [aux_sym_string_literal_token1] = ACTIONS(2765), + [sym_char_literal] = ACTIONS(2765), + [anon_sym_true] = ACTIONS(2767), + [anon_sym_false] = ACTIONS(2767), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2767), + [sym_super] = ACTIONS(2767), + [sym_crate] = ACTIONS(2767), + [sym_metavariable] = ACTIONS(2765), + [sym__raw_string_literal_start] = ACTIONS(2765), + [sym_float_literal] = ACTIONS(2765), }, [STATE(757)] = { [sym_line_comment] = STATE(757), [sym_block_comment] = STATE(757), - [ts_builtin_sym_end] = ACTIONS(2942), - [sym_identifier] = ACTIONS(2944), - [anon_sym_SEMI] = ACTIONS(2942), - [anon_sym_macro_rules_BANG] = ACTIONS(2942), - [anon_sym_LPAREN] = ACTIONS(2942), - [anon_sym_LBRACK] = ACTIONS(2942), - [anon_sym_LBRACE] = ACTIONS(2942), - [anon_sym_RBRACE] = ACTIONS(2942), - [anon_sym_STAR] = ACTIONS(2942), - [anon_sym_u8] = ACTIONS(2944), - [anon_sym_i8] = ACTIONS(2944), - [anon_sym_u16] = ACTIONS(2944), - [anon_sym_i16] = ACTIONS(2944), - [anon_sym_u32] = ACTIONS(2944), - [anon_sym_i32] = ACTIONS(2944), - [anon_sym_u64] = ACTIONS(2944), - [anon_sym_i64] = ACTIONS(2944), - [anon_sym_u128] = ACTIONS(2944), - [anon_sym_i128] = ACTIONS(2944), - [anon_sym_isize] = ACTIONS(2944), - [anon_sym_usize] = ACTIONS(2944), - [anon_sym_f32] = ACTIONS(2944), - [anon_sym_f64] = ACTIONS(2944), - [anon_sym_bool] = ACTIONS(2944), - [anon_sym_str] = ACTIONS(2944), - [anon_sym_char] = ACTIONS(2944), - [anon_sym_DASH] = ACTIONS(2942), - [anon_sym_BANG] = ACTIONS(2942), - [anon_sym_AMP] = ACTIONS(2942), - [anon_sym_PIPE] = ACTIONS(2942), - [anon_sym_LT] = ACTIONS(2942), - [anon_sym_DOT_DOT] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(2942), - [anon_sym_POUND] = ACTIONS(2942), - [anon_sym_SQUOTE] = ACTIONS(2944), - [anon_sym_async] = ACTIONS(2944), - [anon_sym_break] = ACTIONS(2944), - [anon_sym_const] = ACTIONS(2944), - [anon_sym_continue] = ACTIONS(2944), - [anon_sym_default] = ACTIONS(2944), - [anon_sym_enum] = ACTIONS(2944), - [anon_sym_fn] = ACTIONS(2944), - [anon_sym_for] = ACTIONS(2944), - [anon_sym_gen] = ACTIONS(2944), - [anon_sym_if] = ACTIONS(2944), - [anon_sym_impl] = ACTIONS(2944), - [anon_sym_let] = ACTIONS(2944), - [anon_sym_loop] = ACTIONS(2944), - [anon_sym_match] = ACTIONS(2944), - [anon_sym_mod] = ACTIONS(2944), - [anon_sym_pub] = ACTIONS(2944), - [anon_sym_return] = ACTIONS(2944), - [anon_sym_static] = ACTIONS(2944), - [anon_sym_struct] = ACTIONS(2944), - [anon_sym_trait] = ACTIONS(2944), - [anon_sym_type] = ACTIONS(2944), - [anon_sym_union] = ACTIONS(2944), - [anon_sym_unsafe] = ACTIONS(2944), - [anon_sym_use] = ACTIONS(2944), - [anon_sym_while] = ACTIONS(2944), - [anon_sym_extern] = ACTIONS(2944), - [anon_sym_yield] = ACTIONS(2944), - [anon_sym_move] = ACTIONS(2944), - [anon_sym_try] = ACTIONS(2944), - [sym_integer_literal] = ACTIONS(2942), - [aux_sym_string_literal_token1] = ACTIONS(2942), - [sym_char_literal] = ACTIONS(2942), - [anon_sym_true] = ACTIONS(2944), - [anon_sym_false] = ACTIONS(2944), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2944), - [sym_super] = ACTIONS(2944), - [sym_crate] = ACTIONS(2944), - [sym_metavariable] = ACTIONS(2942), - [sym__raw_string_literal_start] = ACTIONS(2942), - [sym_float_literal] = ACTIONS(2942), + [ts_builtin_sym_end] = ACTIONS(2769), + [sym_identifier] = ACTIONS(2771), + [anon_sym_SEMI] = ACTIONS(2769), + [anon_sym_macro_rules_BANG] = ACTIONS(2769), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_LBRACK] = ACTIONS(2769), + [anon_sym_LBRACE] = ACTIONS(2769), + [anon_sym_RBRACE] = ACTIONS(2769), + [anon_sym_STAR] = ACTIONS(2769), + [anon_sym_u8] = ACTIONS(2771), + [anon_sym_i8] = ACTIONS(2771), + [anon_sym_u16] = ACTIONS(2771), + [anon_sym_i16] = ACTIONS(2771), + [anon_sym_u32] = ACTIONS(2771), + [anon_sym_i32] = ACTIONS(2771), + [anon_sym_u64] = ACTIONS(2771), + [anon_sym_i64] = ACTIONS(2771), + [anon_sym_u128] = ACTIONS(2771), + [anon_sym_i128] = ACTIONS(2771), + [anon_sym_isize] = ACTIONS(2771), + [anon_sym_usize] = ACTIONS(2771), + [anon_sym_f32] = ACTIONS(2771), + [anon_sym_f64] = ACTIONS(2771), + [anon_sym_bool] = ACTIONS(2771), + [anon_sym_str] = ACTIONS(2771), + [anon_sym_char] = ACTIONS(2771), + [anon_sym_DASH] = ACTIONS(2769), + [anon_sym_BANG] = ACTIONS(2769), + [anon_sym_AMP] = ACTIONS(2769), + [anon_sym_PIPE] = ACTIONS(2769), + [anon_sym_LT] = ACTIONS(2769), + [anon_sym_DOT_DOT] = ACTIONS(2769), + [anon_sym_COLON_COLON] = ACTIONS(2769), + [anon_sym_POUND] = ACTIONS(2769), + [anon_sym_SQUOTE] = ACTIONS(2771), + [anon_sym_async] = ACTIONS(2771), + [anon_sym_break] = ACTIONS(2771), + [anon_sym_const] = ACTIONS(2771), + [anon_sym_continue] = ACTIONS(2771), + [anon_sym_default] = ACTIONS(2771), + [anon_sym_enum] = ACTIONS(2771), + [anon_sym_fn] = ACTIONS(2771), + [anon_sym_for] = ACTIONS(2771), + [anon_sym_gen] = ACTIONS(2771), + [anon_sym_if] = ACTIONS(2771), + [anon_sym_impl] = ACTIONS(2771), + [anon_sym_let] = ACTIONS(2771), + [anon_sym_loop] = ACTIONS(2771), + [anon_sym_match] = ACTIONS(2771), + [anon_sym_mod] = ACTIONS(2771), + [anon_sym_pub] = ACTIONS(2771), + [anon_sym_return] = ACTIONS(2771), + [anon_sym_static] = ACTIONS(2771), + [anon_sym_struct] = ACTIONS(2771), + [anon_sym_trait] = ACTIONS(2771), + [anon_sym_type] = ACTIONS(2771), + [anon_sym_union] = ACTIONS(2771), + [anon_sym_unsafe] = ACTIONS(2771), + [anon_sym_use] = ACTIONS(2771), + [anon_sym_while] = ACTIONS(2771), + [anon_sym_extern] = ACTIONS(2771), + [anon_sym_yield] = ACTIONS(2771), + [anon_sym_move] = ACTIONS(2771), + [anon_sym_try] = ACTIONS(2771), + [sym_integer_literal] = ACTIONS(2769), + [aux_sym_string_literal_token1] = ACTIONS(2769), + [sym_char_literal] = ACTIONS(2769), + [anon_sym_true] = ACTIONS(2771), + [anon_sym_false] = ACTIONS(2771), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2771), + [sym_super] = ACTIONS(2771), + [sym_crate] = ACTIONS(2771), + [sym_metavariable] = ACTIONS(2769), + [sym__raw_string_literal_start] = ACTIONS(2769), + [sym_float_literal] = ACTIONS(2769), }, [STATE(758)] = { [sym_line_comment] = STATE(758), [sym_block_comment] = STATE(758), - [ts_builtin_sym_end] = ACTIONS(2946), - [sym_identifier] = ACTIONS(2948), - [anon_sym_SEMI] = ACTIONS(2946), - [anon_sym_macro_rules_BANG] = ACTIONS(2946), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2946), - [anon_sym_LBRACE] = ACTIONS(2946), - [anon_sym_RBRACE] = ACTIONS(2946), - [anon_sym_STAR] = ACTIONS(2946), - [anon_sym_u8] = ACTIONS(2948), - [anon_sym_i8] = ACTIONS(2948), - [anon_sym_u16] = ACTIONS(2948), - [anon_sym_i16] = ACTIONS(2948), - [anon_sym_u32] = ACTIONS(2948), - [anon_sym_i32] = ACTIONS(2948), - [anon_sym_u64] = ACTIONS(2948), - [anon_sym_i64] = ACTIONS(2948), - [anon_sym_u128] = ACTIONS(2948), - [anon_sym_i128] = ACTIONS(2948), - [anon_sym_isize] = ACTIONS(2948), - [anon_sym_usize] = ACTIONS(2948), - [anon_sym_f32] = ACTIONS(2948), - [anon_sym_f64] = ACTIONS(2948), - [anon_sym_bool] = ACTIONS(2948), - [anon_sym_str] = ACTIONS(2948), - [anon_sym_char] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2946), - [anon_sym_AMP] = ACTIONS(2946), - [anon_sym_PIPE] = ACTIONS(2946), - [anon_sym_LT] = ACTIONS(2946), - [anon_sym_DOT_DOT] = ACTIONS(2946), - [anon_sym_COLON_COLON] = ACTIONS(2946), - [anon_sym_POUND] = ACTIONS(2946), - [anon_sym_SQUOTE] = ACTIONS(2948), - [anon_sym_async] = ACTIONS(2948), - [anon_sym_break] = ACTIONS(2948), - [anon_sym_const] = ACTIONS(2948), - [anon_sym_continue] = ACTIONS(2948), - [anon_sym_default] = ACTIONS(2948), - [anon_sym_enum] = ACTIONS(2948), - [anon_sym_fn] = ACTIONS(2948), - [anon_sym_for] = ACTIONS(2948), - [anon_sym_gen] = ACTIONS(2948), - [anon_sym_if] = ACTIONS(2948), - [anon_sym_impl] = ACTIONS(2948), - [anon_sym_let] = ACTIONS(2948), - [anon_sym_loop] = ACTIONS(2948), - [anon_sym_match] = ACTIONS(2948), - [anon_sym_mod] = ACTIONS(2948), - [anon_sym_pub] = ACTIONS(2948), - [anon_sym_return] = ACTIONS(2948), - [anon_sym_static] = ACTIONS(2948), - [anon_sym_struct] = ACTIONS(2948), - [anon_sym_trait] = ACTIONS(2948), - [anon_sym_type] = ACTIONS(2948), - [anon_sym_union] = ACTIONS(2948), - [anon_sym_unsafe] = ACTIONS(2948), - [anon_sym_use] = ACTIONS(2948), - [anon_sym_while] = ACTIONS(2948), - [anon_sym_extern] = ACTIONS(2948), - [anon_sym_yield] = ACTIONS(2948), - [anon_sym_move] = ACTIONS(2948), - [anon_sym_try] = ACTIONS(2948), - [sym_integer_literal] = ACTIONS(2946), - [aux_sym_string_literal_token1] = ACTIONS(2946), - [sym_char_literal] = ACTIONS(2946), - [anon_sym_true] = ACTIONS(2948), - [anon_sym_false] = ACTIONS(2948), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2948), - [sym_super] = ACTIONS(2948), - [sym_crate] = ACTIONS(2948), - [sym_metavariable] = ACTIONS(2946), - [sym__raw_string_literal_start] = ACTIONS(2946), - [sym_float_literal] = ACTIONS(2946), + [ts_builtin_sym_end] = ACTIONS(2773), + [sym_identifier] = ACTIONS(2775), + [anon_sym_SEMI] = ACTIONS(2773), + [anon_sym_macro_rules_BANG] = ACTIONS(2773), + [anon_sym_LPAREN] = ACTIONS(2773), + [anon_sym_LBRACK] = ACTIONS(2773), + [anon_sym_LBRACE] = ACTIONS(2773), + [anon_sym_RBRACE] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2773), + [anon_sym_u8] = ACTIONS(2775), + [anon_sym_i8] = ACTIONS(2775), + [anon_sym_u16] = ACTIONS(2775), + [anon_sym_i16] = ACTIONS(2775), + [anon_sym_u32] = ACTIONS(2775), + [anon_sym_i32] = ACTIONS(2775), + [anon_sym_u64] = ACTIONS(2775), + [anon_sym_i64] = ACTIONS(2775), + [anon_sym_u128] = ACTIONS(2775), + [anon_sym_i128] = ACTIONS(2775), + [anon_sym_isize] = ACTIONS(2775), + [anon_sym_usize] = ACTIONS(2775), + [anon_sym_f32] = ACTIONS(2775), + [anon_sym_f64] = ACTIONS(2775), + [anon_sym_bool] = ACTIONS(2775), + [anon_sym_str] = ACTIONS(2775), + [anon_sym_char] = ACTIONS(2775), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_BANG] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2773), + [anon_sym_PIPE] = ACTIONS(2773), + [anon_sym_LT] = ACTIONS(2773), + [anon_sym_DOT_DOT] = ACTIONS(2773), + [anon_sym_COLON_COLON] = ACTIONS(2773), + [anon_sym_POUND] = ACTIONS(2773), + [anon_sym_SQUOTE] = ACTIONS(2775), + [anon_sym_async] = ACTIONS(2775), + [anon_sym_break] = ACTIONS(2775), + [anon_sym_const] = ACTIONS(2775), + [anon_sym_continue] = ACTIONS(2775), + [anon_sym_default] = ACTIONS(2775), + [anon_sym_enum] = ACTIONS(2775), + [anon_sym_fn] = ACTIONS(2775), + [anon_sym_for] = ACTIONS(2775), + [anon_sym_gen] = ACTIONS(2775), + [anon_sym_if] = ACTIONS(2775), + [anon_sym_impl] = ACTIONS(2775), + [anon_sym_let] = ACTIONS(2775), + [anon_sym_loop] = ACTIONS(2775), + [anon_sym_match] = ACTIONS(2775), + [anon_sym_mod] = ACTIONS(2775), + [anon_sym_pub] = ACTIONS(2775), + [anon_sym_return] = ACTIONS(2775), + [anon_sym_static] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(2775), + [anon_sym_trait] = ACTIONS(2775), + [anon_sym_type] = ACTIONS(2775), + [anon_sym_union] = ACTIONS(2775), + [anon_sym_unsafe] = ACTIONS(2775), + [anon_sym_use] = ACTIONS(2775), + [anon_sym_while] = ACTIONS(2775), + [anon_sym_extern] = ACTIONS(2775), + [anon_sym_yield] = ACTIONS(2775), + [anon_sym_move] = ACTIONS(2775), + [anon_sym_try] = ACTIONS(2775), + [sym_integer_literal] = ACTIONS(2773), + [aux_sym_string_literal_token1] = ACTIONS(2773), + [sym_char_literal] = ACTIONS(2773), + [anon_sym_true] = ACTIONS(2775), + [anon_sym_false] = ACTIONS(2775), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2775), + [sym_super] = ACTIONS(2775), + [sym_crate] = ACTIONS(2775), + [sym_metavariable] = ACTIONS(2773), + [sym__raw_string_literal_start] = ACTIONS(2773), + [sym_float_literal] = ACTIONS(2773), }, [STATE(759)] = { [sym_line_comment] = STATE(759), [sym_block_comment] = STATE(759), - [ts_builtin_sym_end] = ACTIONS(2950), - [sym_identifier] = ACTIONS(2952), - [anon_sym_SEMI] = ACTIONS(2950), - [anon_sym_macro_rules_BANG] = ACTIONS(2950), - [anon_sym_LPAREN] = ACTIONS(2950), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_LBRACE] = ACTIONS(2950), - [anon_sym_RBRACE] = ACTIONS(2950), - [anon_sym_STAR] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(2950), - [anon_sym_BANG] = ACTIONS(2950), - [anon_sym_AMP] = ACTIONS(2950), - [anon_sym_PIPE] = ACTIONS(2950), - [anon_sym_LT] = ACTIONS(2950), - [anon_sym_DOT_DOT] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2950), - [anon_sym_POUND] = ACTIONS(2950), - [anon_sym_SQUOTE] = ACTIONS(2952), - [anon_sym_async] = ACTIONS(2952), - [anon_sym_break] = ACTIONS(2952), - [anon_sym_const] = ACTIONS(2952), - [anon_sym_continue] = ACTIONS(2952), - [anon_sym_default] = ACTIONS(2952), - [anon_sym_enum] = ACTIONS(2952), - [anon_sym_fn] = ACTIONS(2952), - [anon_sym_for] = ACTIONS(2952), - [anon_sym_gen] = ACTIONS(2952), - [anon_sym_if] = ACTIONS(2952), - [anon_sym_impl] = ACTIONS(2952), - [anon_sym_let] = ACTIONS(2952), - [anon_sym_loop] = ACTIONS(2952), - [anon_sym_match] = ACTIONS(2952), - [anon_sym_mod] = ACTIONS(2952), - [anon_sym_pub] = ACTIONS(2952), - [anon_sym_return] = ACTIONS(2952), - [anon_sym_static] = ACTIONS(2952), - [anon_sym_struct] = ACTIONS(2952), - [anon_sym_trait] = ACTIONS(2952), - [anon_sym_type] = ACTIONS(2952), - [anon_sym_union] = ACTIONS(2952), - [anon_sym_unsafe] = ACTIONS(2952), - [anon_sym_use] = ACTIONS(2952), - [anon_sym_while] = ACTIONS(2952), - [anon_sym_extern] = ACTIONS(2952), - [anon_sym_yield] = ACTIONS(2952), - [anon_sym_move] = ACTIONS(2952), - [anon_sym_try] = ACTIONS(2952), - [sym_integer_literal] = ACTIONS(2950), - [aux_sym_string_literal_token1] = ACTIONS(2950), - [sym_char_literal] = ACTIONS(2950), - [anon_sym_true] = ACTIONS(2952), - [anon_sym_false] = ACTIONS(2952), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2952), - [sym_super] = ACTIONS(2952), - [sym_crate] = ACTIONS(2952), - [sym_metavariable] = ACTIONS(2950), - [sym__raw_string_literal_start] = ACTIONS(2950), - [sym_float_literal] = ACTIONS(2950), + [ts_builtin_sym_end] = ACTIONS(2777), + [sym_identifier] = ACTIONS(2779), + [anon_sym_SEMI] = ACTIONS(2777), + [anon_sym_macro_rules_BANG] = ACTIONS(2777), + [anon_sym_LPAREN] = ACTIONS(2777), + [anon_sym_LBRACK] = ACTIONS(2777), + [anon_sym_LBRACE] = ACTIONS(2777), + [anon_sym_RBRACE] = ACTIONS(2777), + [anon_sym_STAR] = ACTIONS(2777), + [anon_sym_u8] = ACTIONS(2779), + [anon_sym_i8] = ACTIONS(2779), + [anon_sym_u16] = ACTIONS(2779), + [anon_sym_i16] = ACTIONS(2779), + [anon_sym_u32] = ACTIONS(2779), + [anon_sym_i32] = ACTIONS(2779), + [anon_sym_u64] = ACTIONS(2779), + [anon_sym_i64] = ACTIONS(2779), + [anon_sym_u128] = ACTIONS(2779), + [anon_sym_i128] = ACTIONS(2779), + [anon_sym_isize] = ACTIONS(2779), + [anon_sym_usize] = ACTIONS(2779), + [anon_sym_f32] = ACTIONS(2779), + [anon_sym_f64] = ACTIONS(2779), + [anon_sym_bool] = ACTIONS(2779), + [anon_sym_str] = ACTIONS(2779), + [anon_sym_char] = ACTIONS(2779), + [anon_sym_DASH] = ACTIONS(2777), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_AMP] = ACTIONS(2777), + [anon_sym_PIPE] = ACTIONS(2777), + [anon_sym_LT] = ACTIONS(2777), + [anon_sym_DOT_DOT] = ACTIONS(2777), + [anon_sym_COLON_COLON] = ACTIONS(2777), + [anon_sym_POUND] = ACTIONS(2777), + [anon_sym_SQUOTE] = ACTIONS(2779), + [anon_sym_async] = ACTIONS(2779), + [anon_sym_break] = ACTIONS(2779), + [anon_sym_const] = ACTIONS(2779), + [anon_sym_continue] = ACTIONS(2779), + [anon_sym_default] = ACTIONS(2779), + [anon_sym_enum] = ACTIONS(2779), + [anon_sym_fn] = ACTIONS(2779), + [anon_sym_for] = ACTIONS(2779), + [anon_sym_gen] = ACTIONS(2779), + [anon_sym_if] = ACTIONS(2779), + [anon_sym_impl] = ACTIONS(2779), + [anon_sym_let] = ACTIONS(2779), + [anon_sym_loop] = ACTIONS(2779), + [anon_sym_match] = ACTIONS(2779), + [anon_sym_mod] = ACTIONS(2779), + [anon_sym_pub] = ACTIONS(2779), + [anon_sym_return] = ACTIONS(2779), + [anon_sym_static] = ACTIONS(2779), + [anon_sym_struct] = ACTIONS(2779), + [anon_sym_trait] = ACTIONS(2779), + [anon_sym_type] = ACTIONS(2779), + [anon_sym_union] = ACTIONS(2779), + [anon_sym_unsafe] = ACTIONS(2779), + [anon_sym_use] = ACTIONS(2779), + [anon_sym_while] = ACTIONS(2779), + [anon_sym_extern] = ACTIONS(2779), + [anon_sym_yield] = ACTIONS(2779), + [anon_sym_move] = ACTIONS(2779), + [anon_sym_try] = ACTIONS(2779), + [sym_integer_literal] = ACTIONS(2777), + [aux_sym_string_literal_token1] = ACTIONS(2777), + [sym_char_literal] = ACTIONS(2777), + [anon_sym_true] = ACTIONS(2779), + [anon_sym_false] = ACTIONS(2779), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2779), + [sym_super] = ACTIONS(2779), + [sym_crate] = ACTIONS(2779), + [sym_metavariable] = ACTIONS(2777), + [sym__raw_string_literal_start] = ACTIONS(2777), + [sym_float_literal] = ACTIONS(2777), }, [STATE(760)] = { [sym_line_comment] = STATE(760), [sym_block_comment] = STATE(760), - [ts_builtin_sym_end] = ACTIONS(2954), - [sym_identifier] = ACTIONS(2956), - [anon_sym_SEMI] = ACTIONS(2954), - [anon_sym_macro_rules_BANG] = ACTIONS(2954), - [anon_sym_LPAREN] = ACTIONS(2954), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_LBRACE] = ACTIONS(2954), - [anon_sym_RBRACE] = ACTIONS(2954), - [anon_sym_STAR] = ACTIONS(2954), - [anon_sym_u8] = ACTIONS(2956), - [anon_sym_i8] = ACTIONS(2956), - [anon_sym_u16] = ACTIONS(2956), - [anon_sym_i16] = ACTIONS(2956), - [anon_sym_u32] = ACTIONS(2956), - [anon_sym_i32] = ACTIONS(2956), - [anon_sym_u64] = ACTIONS(2956), - [anon_sym_i64] = ACTIONS(2956), - [anon_sym_u128] = ACTIONS(2956), - [anon_sym_i128] = ACTIONS(2956), - [anon_sym_isize] = ACTIONS(2956), - [anon_sym_usize] = ACTIONS(2956), - [anon_sym_f32] = ACTIONS(2956), - [anon_sym_f64] = ACTIONS(2956), - [anon_sym_bool] = ACTIONS(2956), - [anon_sym_str] = ACTIONS(2956), - [anon_sym_char] = ACTIONS(2956), - [anon_sym_DASH] = ACTIONS(2954), - [anon_sym_BANG] = ACTIONS(2954), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(2954), - [anon_sym_LT] = ACTIONS(2954), - [anon_sym_DOT_DOT] = ACTIONS(2954), - [anon_sym_COLON_COLON] = ACTIONS(2954), - [anon_sym_POUND] = ACTIONS(2954), - [anon_sym_SQUOTE] = ACTIONS(2956), - [anon_sym_async] = ACTIONS(2956), - [anon_sym_break] = ACTIONS(2956), - [anon_sym_const] = ACTIONS(2956), - [anon_sym_continue] = ACTIONS(2956), - [anon_sym_default] = ACTIONS(2956), - [anon_sym_enum] = ACTIONS(2956), - [anon_sym_fn] = ACTIONS(2956), - [anon_sym_for] = ACTIONS(2956), - [anon_sym_gen] = ACTIONS(2956), - [anon_sym_if] = ACTIONS(2956), - [anon_sym_impl] = ACTIONS(2956), - [anon_sym_let] = ACTIONS(2956), - [anon_sym_loop] = ACTIONS(2956), - [anon_sym_match] = ACTIONS(2956), - [anon_sym_mod] = ACTIONS(2956), - [anon_sym_pub] = ACTIONS(2956), - [anon_sym_return] = ACTIONS(2956), - [anon_sym_static] = ACTIONS(2956), - [anon_sym_struct] = ACTIONS(2956), - [anon_sym_trait] = ACTIONS(2956), - [anon_sym_type] = ACTIONS(2956), - [anon_sym_union] = ACTIONS(2956), - [anon_sym_unsafe] = ACTIONS(2956), - [anon_sym_use] = ACTIONS(2956), - [anon_sym_while] = ACTIONS(2956), - [anon_sym_extern] = ACTIONS(2956), - [anon_sym_yield] = ACTIONS(2956), - [anon_sym_move] = ACTIONS(2956), - [anon_sym_try] = ACTIONS(2956), - [sym_integer_literal] = ACTIONS(2954), - [aux_sym_string_literal_token1] = ACTIONS(2954), - [sym_char_literal] = ACTIONS(2954), - [anon_sym_true] = ACTIONS(2956), - [anon_sym_false] = ACTIONS(2956), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2956), - [sym_super] = ACTIONS(2956), - [sym_crate] = ACTIONS(2956), - [sym_metavariable] = ACTIONS(2954), - [sym__raw_string_literal_start] = ACTIONS(2954), - [sym_float_literal] = ACTIONS(2954), + [ts_builtin_sym_end] = ACTIONS(2781), + [sym_identifier] = ACTIONS(2783), + [anon_sym_SEMI] = ACTIONS(2781), + [anon_sym_macro_rules_BANG] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2781), + [anon_sym_LBRACK] = ACTIONS(2781), + [anon_sym_LBRACE] = ACTIONS(2781), + [anon_sym_RBRACE] = ACTIONS(2781), + [anon_sym_STAR] = ACTIONS(2781), + [anon_sym_u8] = ACTIONS(2783), + [anon_sym_i8] = ACTIONS(2783), + [anon_sym_u16] = ACTIONS(2783), + [anon_sym_i16] = ACTIONS(2783), + [anon_sym_u32] = ACTIONS(2783), + [anon_sym_i32] = ACTIONS(2783), + [anon_sym_u64] = ACTIONS(2783), + [anon_sym_i64] = ACTIONS(2783), + [anon_sym_u128] = ACTIONS(2783), + [anon_sym_i128] = ACTIONS(2783), + [anon_sym_isize] = ACTIONS(2783), + [anon_sym_usize] = ACTIONS(2783), + [anon_sym_f32] = ACTIONS(2783), + [anon_sym_f64] = ACTIONS(2783), + [anon_sym_bool] = ACTIONS(2783), + [anon_sym_str] = ACTIONS(2783), + [anon_sym_char] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2781), + [anon_sym_BANG] = ACTIONS(2781), + [anon_sym_AMP] = ACTIONS(2781), + [anon_sym_PIPE] = ACTIONS(2781), + [anon_sym_LT] = ACTIONS(2781), + [anon_sym_DOT_DOT] = ACTIONS(2781), + [anon_sym_COLON_COLON] = ACTIONS(2781), + [anon_sym_POUND] = ACTIONS(2781), + [anon_sym_SQUOTE] = ACTIONS(2783), + [anon_sym_async] = ACTIONS(2783), + [anon_sym_break] = ACTIONS(2783), + [anon_sym_const] = ACTIONS(2783), + [anon_sym_continue] = ACTIONS(2783), + [anon_sym_default] = ACTIONS(2783), + [anon_sym_enum] = ACTIONS(2783), + [anon_sym_fn] = ACTIONS(2783), + [anon_sym_for] = ACTIONS(2783), + [anon_sym_gen] = ACTIONS(2783), + [anon_sym_if] = ACTIONS(2783), + [anon_sym_impl] = ACTIONS(2783), + [anon_sym_let] = ACTIONS(2783), + [anon_sym_loop] = ACTIONS(2783), + [anon_sym_match] = ACTIONS(2783), + [anon_sym_mod] = ACTIONS(2783), + [anon_sym_pub] = ACTIONS(2783), + [anon_sym_return] = ACTIONS(2783), + [anon_sym_static] = ACTIONS(2783), + [anon_sym_struct] = ACTIONS(2783), + [anon_sym_trait] = ACTIONS(2783), + [anon_sym_type] = ACTIONS(2783), + [anon_sym_union] = ACTIONS(2783), + [anon_sym_unsafe] = ACTIONS(2783), + [anon_sym_use] = ACTIONS(2783), + [anon_sym_while] = ACTIONS(2783), + [anon_sym_extern] = ACTIONS(2783), + [anon_sym_yield] = ACTIONS(2783), + [anon_sym_move] = ACTIONS(2783), + [anon_sym_try] = ACTIONS(2783), + [sym_integer_literal] = ACTIONS(2781), + [aux_sym_string_literal_token1] = ACTIONS(2781), + [sym_char_literal] = ACTIONS(2781), + [anon_sym_true] = ACTIONS(2783), + [anon_sym_false] = ACTIONS(2783), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2783), + [sym_super] = ACTIONS(2783), + [sym_crate] = ACTIONS(2783), + [sym_metavariable] = ACTIONS(2781), + [sym__raw_string_literal_start] = ACTIONS(2781), + [sym_float_literal] = ACTIONS(2781), }, [STATE(761)] = { [sym_line_comment] = STATE(761), [sym_block_comment] = STATE(761), - [ts_builtin_sym_end] = ACTIONS(2958), - [sym_identifier] = ACTIONS(2960), - [anon_sym_SEMI] = ACTIONS(2958), - [anon_sym_macro_rules_BANG] = ACTIONS(2958), - [anon_sym_LPAREN] = ACTIONS(2958), - [anon_sym_LBRACK] = ACTIONS(2958), - [anon_sym_LBRACE] = ACTIONS(2958), - [anon_sym_RBRACE] = ACTIONS(2958), - [anon_sym_STAR] = ACTIONS(2958), - [anon_sym_u8] = ACTIONS(2960), - [anon_sym_i8] = ACTIONS(2960), - [anon_sym_u16] = ACTIONS(2960), - [anon_sym_i16] = ACTIONS(2960), - [anon_sym_u32] = ACTIONS(2960), - [anon_sym_i32] = ACTIONS(2960), - [anon_sym_u64] = ACTIONS(2960), - [anon_sym_i64] = ACTIONS(2960), - [anon_sym_u128] = ACTIONS(2960), - [anon_sym_i128] = ACTIONS(2960), - [anon_sym_isize] = ACTIONS(2960), - [anon_sym_usize] = ACTIONS(2960), - [anon_sym_f32] = ACTIONS(2960), - [anon_sym_f64] = ACTIONS(2960), - [anon_sym_bool] = ACTIONS(2960), - [anon_sym_str] = ACTIONS(2960), - [anon_sym_char] = ACTIONS(2960), - [anon_sym_DASH] = ACTIONS(2958), - [anon_sym_BANG] = ACTIONS(2958), - [anon_sym_AMP] = ACTIONS(2958), - [anon_sym_PIPE] = ACTIONS(2958), - [anon_sym_LT] = ACTIONS(2958), - [anon_sym_DOT_DOT] = ACTIONS(2958), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_POUND] = ACTIONS(2958), - [anon_sym_SQUOTE] = ACTIONS(2960), - [anon_sym_async] = ACTIONS(2960), - [anon_sym_break] = ACTIONS(2960), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_continue] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2960), - [anon_sym_enum] = ACTIONS(2960), - [anon_sym_fn] = ACTIONS(2960), - [anon_sym_for] = ACTIONS(2960), - [anon_sym_gen] = ACTIONS(2960), - [anon_sym_if] = ACTIONS(2960), - [anon_sym_impl] = ACTIONS(2960), - [anon_sym_let] = ACTIONS(2960), - [anon_sym_loop] = ACTIONS(2960), - [anon_sym_match] = ACTIONS(2960), - [anon_sym_mod] = ACTIONS(2960), - [anon_sym_pub] = ACTIONS(2960), - [anon_sym_return] = ACTIONS(2960), - [anon_sym_static] = ACTIONS(2960), - [anon_sym_struct] = ACTIONS(2960), - [anon_sym_trait] = ACTIONS(2960), - [anon_sym_type] = ACTIONS(2960), - [anon_sym_union] = ACTIONS(2960), - [anon_sym_unsafe] = ACTIONS(2960), - [anon_sym_use] = ACTIONS(2960), - [anon_sym_while] = ACTIONS(2960), - [anon_sym_extern] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2960), - [anon_sym_move] = ACTIONS(2960), - [anon_sym_try] = ACTIONS(2960), - [sym_integer_literal] = ACTIONS(2958), - [aux_sym_string_literal_token1] = ACTIONS(2958), - [sym_char_literal] = ACTIONS(2958), - [anon_sym_true] = ACTIONS(2960), - [anon_sym_false] = ACTIONS(2960), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2960), - [sym_super] = ACTIONS(2960), - [sym_crate] = ACTIONS(2960), - [sym_metavariable] = ACTIONS(2958), - [sym__raw_string_literal_start] = ACTIONS(2958), - [sym_float_literal] = ACTIONS(2958), + [ts_builtin_sym_end] = ACTIONS(2785), + [sym_identifier] = ACTIONS(2787), + [anon_sym_SEMI] = ACTIONS(2785), + [anon_sym_macro_rules_BANG] = ACTIONS(2785), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_LBRACK] = ACTIONS(2785), + [anon_sym_LBRACE] = ACTIONS(2785), + [anon_sym_RBRACE] = ACTIONS(2785), + [anon_sym_STAR] = ACTIONS(2785), + [anon_sym_u8] = ACTIONS(2787), + [anon_sym_i8] = ACTIONS(2787), + [anon_sym_u16] = ACTIONS(2787), + [anon_sym_i16] = ACTIONS(2787), + [anon_sym_u32] = ACTIONS(2787), + [anon_sym_i32] = ACTIONS(2787), + [anon_sym_u64] = ACTIONS(2787), + [anon_sym_i64] = ACTIONS(2787), + [anon_sym_u128] = ACTIONS(2787), + [anon_sym_i128] = ACTIONS(2787), + [anon_sym_isize] = ACTIONS(2787), + [anon_sym_usize] = ACTIONS(2787), + [anon_sym_f32] = ACTIONS(2787), + [anon_sym_f64] = ACTIONS(2787), + [anon_sym_bool] = ACTIONS(2787), + [anon_sym_str] = ACTIONS(2787), + [anon_sym_char] = ACTIONS(2787), + [anon_sym_DASH] = ACTIONS(2785), + [anon_sym_BANG] = ACTIONS(2785), + [anon_sym_AMP] = ACTIONS(2785), + [anon_sym_PIPE] = ACTIONS(2785), + [anon_sym_LT] = ACTIONS(2785), + [anon_sym_DOT_DOT] = ACTIONS(2785), + [anon_sym_COLON_COLON] = ACTIONS(2785), + [anon_sym_POUND] = ACTIONS(2785), + [anon_sym_SQUOTE] = ACTIONS(2787), + [anon_sym_async] = ACTIONS(2787), + [anon_sym_break] = ACTIONS(2787), + [anon_sym_const] = ACTIONS(2787), + [anon_sym_continue] = ACTIONS(2787), + [anon_sym_default] = ACTIONS(2787), + [anon_sym_enum] = ACTIONS(2787), + [anon_sym_fn] = ACTIONS(2787), + [anon_sym_for] = ACTIONS(2787), + [anon_sym_gen] = ACTIONS(2787), + [anon_sym_if] = ACTIONS(2787), + [anon_sym_impl] = ACTIONS(2787), + [anon_sym_let] = ACTIONS(2787), + [anon_sym_loop] = ACTIONS(2787), + [anon_sym_match] = ACTIONS(2787), + [anon_sym_mod] = ACTIONS(2787), + [anon_sym_pub] = ACTIONS(2787), + [anon_sym_return] = ACTIONS(2787), + [anon_sym_static] = ACTIONS(2787), + [anon_sym_struct] = ACTIONS(2787), + [anon_sym_trait] = ACTIONS(2787), + [anon_sym_type] = ACTIONS(2787), + [anon_sym_union] = ACTIONS(2787), + [anon_sym_unsafe] = ACTIONS(2787), + [anon_sym_use] = ACTIONS(2787), + [anon_sym_while] = ACTIONS(2787), + [anon_sym_extern] = ACTIONS(2787), + [anon_sym_yield] = ACTIONS(2787), + [anon_sym_move] = ACTIONS(2787), + [anon_sym_try] = ACTIONS(2787), + [sym_integer_literal] = ACTIONS(2785), + [aux_sym_string_literal_token1] = ACTIONS(2785), + [sym_char_literal] = ACTIONS(2785), + [anon_sym_true] = ACTIONS(2787), + [anon_sym_false] = ACTIONS(2787), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2787), + [sym_super] = ACTIONS(2787), + [sym_crate] = ACTIONS(2787), + [sym_metavariable] = ACTIONS(2785), + [sym__raw_string_literal_start] = ACTIONS(2785), + [sym_float_literal] = ACTIONS(2785), }, [STATE(762)] = { [sym_line_comment] = STATE(762), [sym_block_comment] = STATE(762), - [ts_builtin_sym_end] = ACTIONS(2962), - [sym_identifier] = ACTIONS(2964), - [anon_sym_SEMI] = ACTIONS(2962), - [anon_sym_macro_rules_BANG] = ACTIONS(2962), - [anon_sym_LPAREN] = ACTIONS(2962), - [anon_sym_LBRACK] = ACTIONS(2962), - [anon_sym_LBRACE] = ACTIONS(2962), - [anon_sym_RBRACE] = ACTIONS(2962), - [anon_sym_STAR] = ACTIONS(2962), - [anon_sym_u8] = ACTIONS(2964), - [anon_sym_i8] = ACTIONS(2964), - [anon_sym_u16] = ACTIONS(2964), - [anon_sym_i16] = ACTIONS(2964), - [anon_sym_u32] = ACTIONS(2964), - [anon_sym_i32] = ACTIONS(2964), - [anon_sym_u64] = ACTIONS(2964), - [anon_sym_i64] = ACTIONS(2964), - [anon_sym_u128] = ACTIONS(2964), - [anon_sym_i128] = ACTIONS(2964), - [anon_sym_isize] = ACTIONS(2964), - [anon_sym_usize] = ACTIONS(2964), - [anon_sym_f32] = ACTIONS(2964), - [anon_sym_f64] = ACTIONS(2964), - [anon_sym_bool] = ACTIONS(2964), - [anon_sym_str] = ACTIONS(2964), - [anon_sym_char] = ACTIONS(2964), - [anon_sym_DASH] = ACTIONS(2962), - [anon_sym_BANG] = ACTIONS(2962), - [anon_sym_AMP] = ACTIONS(2962), - [anon_sym_PIPE] = ACTIONS(2962), - [anon_sym_LT] = ACTIONS(2962), - [anon_sym_DOT_DOT] = ACTIONS(2962), - [anon_sym_COLON_COLON] = ACTIONS(2962), - [anon_sym_POUND] = ACTIONS(2962), - [anon_sym_SQUOTE] = ACTIONS(2964), - [anon_sym_async] = ACTIONS(2964), - [anon_sym_break] = ACTIONS(2964), - [anon_sym_const] = ACTIONS(2964), - [anon_sym_continue] = ACTIONS(2964), - [anon_sym_default] = ACTIONS(2964), - [anon_sym_enum] = ACTIONS(2964), - [anon_sym_fn] = ACTIONS(2964), - [anon_sym_for] = ACTIONS(2964), - [anon_sym_gen] = ACTIONS(2964), - [anon_sym_if] = ACTIONS(2964), - [anon_sym_impl] = ACTIONS(2964), - [anon_sym_let] = ACTIONS(2964), - [anon_sym_loop] = ACTIONS(2964), - [anon_sym_match] = ACTIONS(2964), - [anon_sym_mod] = ACTIONS(2964), - [anon_sym_pub] = ACTIONS(2964), - [anon_sym_return] = ACTIONS(2964), - [anon_sym_static] = ACTIONS(2964), - [anon_sym_struct] = ACTIONS(2964), - [anon_sym_trait] = ACTIONS(2964), - [anon_sym_type] = ACTIONS(2964), - [anon_sym_union] = ACTIONS(2964), - [anon_sym_unsafe] = ACTIONS(2964), - [anon_sym_use] = ACTIONS(2964), - [anon_sym_while] = ACTIONS(2964), - [anon_sym_extern] = ACTIONS(2964), - [anon_sym_yield] = ACTIONS(2964), - [anon_sym_move] = ACTIONS(2964), - [anon_sym_try] = ACTIONS(2964), - [sym_integer_literal] = ACTIONS(2962), - [aux_sym_string_literal_token1] = ACTIONS(2962), - [sym_char_literal] = ACTIONS(2962), - [anon_sym_true] = ACTIONS(2964), - [anon_sym_false] = ACTIONS(2964), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2962), - [sym__raw_string_literal_start] = ACTIONS(2962), - [sym_float_literal] = ACTIONS(2962), + [ts_builtin_sym_end] = ACTIONS(2789), + [sym_identifier] = ACTIONS(2791), + [anon_sym_SEMI] = ACTIONS(2789), + [anon_sym_macro_rules_BANG] = ACTIONS(2789), + [anon_sym_LPAREN] = ACTIONS(2789), + [anon_sym_LBRACK] = ACTIONS(2789), + [anon_sym_LBRACE] = ACTIONS(2789), + [anon_sym_RBRACE] = ACTIONS(2789), + [anon_sym_STAR] = ACTIONS(2789), + [anon_sym_u8] = ACTIONS(2791), + [anon_sym_i8] = ACTIONS(2791), + [anon_sym_u16] = ACTIONS(2791), + [anon_sym_i16] = ACTIONS(2791), + [anon_sym_u32] = ACTIONS(2791), + [anon_sym_i32] = ACTIONS(2791), + [anon_sym_u64] = ACTIONS(2791), + [anon_sym_i64] = ACTIONS(2791), + [anon_sym_u128] = ACTIONS(2791), + [anon_sym_i128] = ACTIONS(2791), + [anon_sym_isize] = ACTIONS(2791), + [anon_sym_usize] = ACTIONS(2791), + [anon_sym_f32] = ACTIONS(2791), + [anon_sym_f64] = ACTIONS(2791), + [anon_sym_bool] = ACTIONS(2791), + [anon_sym_str] = ACTIONS(2791), + [anon_sym_char] = ACTIONS(2791), + [anon_sym_DASH] = ACTIONS(2789), + [anon_sym_BANG] = ACTIONS(2789), + [anon_sym_AMP] = ACTIONS(2789), + [anon_sym_PIPE] = ACTIONS(2789), + [anon_sym_LT] = ACTIONS(2789), + [anon_sym_DOT_DOT] = ACTIONS(2789), + [anon_sym_COLON_COLON] = ACTIONS(2789), + [anon_sym_POUND] = ACTIONS(2789), + [anon_sym_SQUOTE] = ACTIONS(2791), + [anon_sym_async] = ACTIONS(2791), + [anon_sym_break] = ACTIONS(2791), + [anon_sym_const] = ACTIONS(2791), + [anon_sym_continue] = ACTIONS(2791), + [anon_sym_default] = ACTIONS(2791), + [anon_sym_enum] = ACTIONS(2791), + [anon_sym_fn] = ACTIONS(2791), + [anon_sym_for] = ACTIONS(2791), + [anon_sym_gen] = ACTIONS(2791), + [anon_sym_if] = ACTIONS(2791), + [anon_sym_impl] = ACTIONS(2791), + [anon_sym_let] = ACTIONS(2791), + [anon_sym_loop] = ACTIONS(2791), + [anon_sym_match] = ACTIONS(2791), + [anon_sym_mod] = ACTIONS(2791), + [anon_sym_pub] = ACTIONS(2791), + [anon_sym_return] = ACTIONS(2791), + [anon_sym_static] = ACTIONS(2791), + [anon_sym_struct] = ACTIONS(2791), + [anon_sym_trait] = ACTIONS(2791), + [anon_sym_type] = ACTIONS(2791), + [anon_sym_union] = ACTIONS(2791), + [anon_sym_unsafe] = ACTIONS(2791), + [anon_sym_use] = ACTIONS(2791), + [anon_sym_while] = ACTIONS(2791), + [anon_sym_extern] = ACTIONS(2791), + [anon_sym_yield] = ACTIONS(2791), + [anon_sym_move] = ACTIONS(2791), + [anon_sym_try] = ACTIONS(2791), + [sym_integer_literal] = ACTIONS(2789), + [aux_sym_string_literal_token1] = ACTIONS(2789), + [sym_char_literal] = ACTIONS(2789), + [anon_sym_true] = ACTIONS(2791), + [anon_sym_false] = ACTIONS(2791), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2791), + [sym_super] = ACTIONS(2791), + [sym_crate] = ACTIONS(2791), + [sym_metavariable] = ACTIONS(2789), + [sym__raw_string_literal_start] = ACTIONS(2789), + [sym_float_literal] = ACTIONS(2789), }, [STATE(763)] = { [sym_line_comment] = STATE(763), [sym_block_comment] = STATE(763), - [ts_builtin_sym_end] = ACTIONS(2966), - [sym_identifier] = ACTIONS(2968), - [anon_sym_SEMI] = ACTIONS(2966), - [anon_sym_macro_rules_BANG] = ACTIONS(2966), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2966), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_RBRACE] = ACTIONS(2966), - [anon_sym_STAR] = ACTIONS(2966), - [anon_sym_u8] = ACTIONS(2968), - [anon_sym_i8] = ACTIONS(2968), - [anon_sym_u16] = ACTIONS(2968), - [anon_sym_i16] = ACTIONS(2968), - [anon_sym_u32] = ACTIONS(2968), - [anon_sym_i32] = ACTIONS(2968), - [anon_sym_u64] = ACTIONS(2968), - [anon_sym_i64] = ACTIONS(2968), - [anon_sym_u128] = ACTIONS(2968), - [anon_sym_i128] = ACTIONS(2968), - [anon_sym_isize] = ACTIONS(2968), - [anon_sym_usize] = ACTIONS(2968), - [anon_sym_f32] = ACTIONS(2968), - [anon_sym_f64] = ACTIONS(2968), - [anon_sym_bool] = ACTIONS(2968), - [anon_sym_str] = ACTIONS(2968), - [anon_sym_char] = ACTIONS(2968), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_BANG] = ACTIONS(2966), - [anon_sym_AMP] = ACTIONS(2966), - [anon_sym_PIPE] = ACTIONS(2966), - [anon_sym_LT] = ACTIONS(2966), - [anon_sym_DOT_DOT] = ACTIONS(2966), - [anon_sym_COLON_COLON] = ACTIONS(2966), - [anon_sym_POUND] = ACTIONS(2966), - [anon_sym_SQUOTE] = ACTIONS(2968), - [anon_sym_async] = ACTIONS(2968), - [anon_sym_break] = ACTIONS(2968), - [anon_sym_const] = ACTIONS(2968), - [anon_sym_continue] = ACTIONS(2968), - [anon_sym_default] = ACTIONS(2968), - [anon_sym_enum] = ACTIONS(2968), - [anon_sym_fn] = ACTIONS(2968), - [anon_sym_for] = ACTIONS(2968), - [anon_sym_gen] = ACTIONS(2968), - [anon_sym_if] = ACTIONS(2968), - [anon_sym_impl] = ACTIONS(2968), - [anon_sym_let] = ACTIONS(2968), - [anon_sym_loop] = ACTIONS(2968), - [anon_sym_match] = ACTIONS(2968), - [anon_sym_mod] = ACTIONS(2968), - [anon_sym_pub] = ACTIONS(2968), - [anon_sym_return] = ACTIONS(2968), - [anon_sym_static] = ACTIONS(2968), - [anon_sym_struct] = ACTIONS(2968), - [anon_sym_trait] = ACTIONS(2968), - [anon_sym_type] = ACTIONS(2968), - [anon_sym_union] = ACTIONS(2968), - [anon_sym_unsafe] = ACTIONS(2968), - [anon_sym_use] = ACTIONS(2968), - [anon_sym_while] = ACTIONS(2968), - [anon_sym_extern] = ACTIONS(2968), - [anon_sym_yield] = ACTIONS(2968), - [anon_sym_move] = ACTIONS(2968), - [anon_sym_try] = ACTIONS(2968), - [sym_integer_literal] = ACTIONS(2966), - [aux_sym_string_literal_token1] = ACTIONS(2966), - [sym_char_literal] = ACTIONS(2966), - [anon_sym_true] = ACTIONS(2968), - [anon_sym_false] = ACTIONS(2968), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2968), - [sym_super] = ACTIONS(2968), - [sym_crate] = ACTIONS(2968), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(2966), - [sym_float_literal] = ACTIONS(2966), + [ts_builtin_sym_end] = ACTIONS(2793), + [sym_identifier] = ACTIONS(2795), + [anon_sym_SEMI] = ACTIONS(2793), + [anon_sym_macro_rules_BANG] = ACTIONS(2793), + [anon_sym_LPAREN] = ACTIONS(2793), + [anon_sym_LBRACK] = ACTIONS(2793), + [anon_sym_LBRACE] = ACTIONS(2793), + [anon_sym_RBRACE] = ACTIONS(2793), + [anon_sym_STAR] = ACTIONS(2793), + [anon_sym_u8] = ACTIONS(2795), + [anon_sym_i8] = ACTIONS(2795), + [anon_sym_u16] = ACTIONS(2795), + [anon_sym_i16] = ACTIONS(2795), + [anon_sym_u32] = ACTIONS(2795), + [anon_sym_i32] = ACTIONS(2795), + [anon_sym_u64] = ACTIONS(2795), + [anon_sym_i64] = ACTIONS(2795), + [anon_sym_u128] = ACTIONS(2795), + [anon_sym_i128] = ACTIONS(2795), + [anon_sym_isize] = ACTIONS(2795), + [anon_sym_usize] = ACTIONS(2795), + [anon_sym_f32] = ACTIONS(2795), + [anon_sym_f64] = ACTIONS(2795), + [anon_sym_bool] = ACTIONS(2795), + [anon_sym_str] = ACTIONS(2795), + [anon_sym_char] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2793), + [anon_sym_BANG] = ACTIONS(2793), + [anon_sym_AMP] = ACTIONS(2793), + [anon_sym_PIPE] = ACTIONS(2793), + [anon_sym_LT] = ACTIONS(2793), + [anon_sym_DOT_DOT] = ACTIONS(2793), + [anon_sym_COLON_COLON] = ACTIONS(2793), + [anon_sym_POUND] = ACTIONS(2793), + [anon_sym_SQUOTE] = ACTIONS(2795), + [anon_sym_async] = ACTIONS(2795), + [anon_sym_break] = ACTIONS(2795), + [anon_sym_const] = ACTIONS(2795), + [anon_sym_continue] = ACTIONS(2795), + [anon_sym_default] = ACTIONS(2795), + [anon_sym_enum] = ACTIONS(2795), + [anon_sym_fn] = ACTIONS(2795), + [anon_sym_for] = ACTIONS(2795), + [anon_sym_gen] = ACTIONS(2795), + [anon_sym_if] = ACTIONS(2795), + [anon_sym_impl] = ACTIONS(2795), + [anon_sym_let] = ACTIONS(2795), + [anon_sym_loop] = ACTIONS(2795), + [anon_sym_match] = ACTIONS(2795), + [anon_sym_mod] = ACTIONS(2795), + [anon_sym_pub] = ACTIONS(2795), + [anon_sym_return] = ACTIONS(2795), + [anon_sym_static] = ACTIONS(2795), + [anon_sym_struct] = ACTIONS(2795), + [anon_sym_trait] = ACTIONS(2795), + [anon_sym_type] = ACTIONS(2795), + [anon_sym_union] = ACTIONS(2795), + [anon_sym_unsafe] = ACTIONS(2795), + [anon_sym_use] = ACTIONS(2795), + [anon_sym_while] = ACTIONS(2795), + [anon_sym_extern] = ACTIONS(2795), + [anon_sym_yield] = ACTIONS(2795), + [anon_sym_move] = ACTIONS(2795), + [anon_sym_try] = ACTIONS(2795), + [sym_integer_literal] = ACTIONS(2793), + [aux_sym_string_literal_token1] = ACTIONS(2793), + [sym_char_literal] = ACTIONS(2793), + [anon_sym_true] = ACTIONS(2795), + [anon_sym_false] = ACTIONS(2795), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2795), + [sym_super] = ACTIONS(2795), + [sym_crate] = ACTIONS(2795), + [sym_metavariable] = ACTIONS(2793), + [sym__raw_string_literal_start] = ACTIONS(2793), + [sym_float_literal] = ACTIONS(2793), }, [STATE(764)] = { [sym_line_comment] = STATE(764), [sym_block_comment] = STATE(764), - [ts_builtin_sym_end] = ACTIONS(2970), - [sym_identifier] = ACTIONS(2972), - [anon_sym_SEMI] = ACTIONS(2970), - [anon_sym_macro_rules_BANG] = ACTIONS(2970), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_LBRACK] = ACTIONS(2970), - [anon_sym_LBRACE] = ACTIONS(2970), - [anon_sym_RBRACE] = ACTIONS(2970), - [anon_sym_STAR] = ACTIONS(2970), - [anon_sym_u8] = ACTIONS(2972), - [anon_sym_i8] = ACTIONS(2972), - [anon_sym_u16] = ACTIONS(2972), - [anon_sym_i16] = ACTIONS(2972), - [anon_sym_u32] = ACTIONS(2972), - [anon_sym_i32] = ACTIONS(2972), - [anon_sym_u64] = ACTIONS(2972), - [anon_sym_i64] = ACTIONS(2972), - [anon_sym_u128] = ACTIONS(2972), - [anon_sym_i128] = ACTIONS(2972), - [anon_sym_isize] = ACTIONS(2972), - [anon_sym_usize] = ACTIONS(2972), - [anon_sym_f32] = ACTIONS(2972), - [anon_sym_f64] = ACTIONS(2972), - [anon_sym_bool] = ACTIONS(2972), - [anon_sym_str] = ACTIONS(2972), - [anon_sym_char] = ACTIONS(2972), - [anon_sym_DASH] = ACTIONS(2970), - [anon_sym_BANG] = ACTIONS(2970), - [anon_sym_AMP] = ACTIONS(2970), - [anon_sym_PIPE] = ACTIONS(2970), - [anon_sym_LT] = ACTIONS(2970), - [anon_sym_DOT_DOT] = ACTIONS(2970), - [anon_sym_COLON_COLON] = ACTIONS(2970), - [anon_sym_POUND] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2972), - [anon_sym_async] = ACTIONS(2972), - [anon_sym_break] = ACTIONS(2972), - [anon_sym_const] = ACTIONS(2972), - [anon_sym_continue] = ACTIONS(2972), - [anon_sym_default] = ACTIONS(2972), - [anon_sym_enum] = ACTIONS(2972), - [anon_sym_fn] = ACTIONS(2972), - [anon_sym_for] = ACTIONS(2972), - [anon_sym_gen] = ACTIONS(2972), - [anon_sym_if] = ACTIONS(2972), - [anon_sym_impl] = ACTIONS(2972), - [anon_sym_let] = ACTIONS(2972), - [anon_sym_loop] = ACTIONS(2972), - [anon_sym_match] = ACTIONS(2972), - [anon_sym_mod] = ACTIONS(2972), - [anon_sym_pub] = ACTIONS(2972), - [anon_sym_return] = ACTIONS(2972), - [anon_sym_static] = ACTIONS(2972), - [anon_sym_struct] = ACTIONS(2972), - [anon_sym_trait] = ACTIONS(2972), - [anon_sym_type] = ACTIONS(2972), - [anon_sym_union] = ACTIONS(2972), - [anon_sym_unsafe] = ACTIONS(2972), - [anon_sym_use] = ACTIONS(2972), - [anon_sym_while] = ACTIONS(2972), - [anon_sym_extern] = ACTIONS(2972), - [anon_sym_yield] = ACTIONS(2972), - [anon_sym_move] = ACTIONS(2972), - [anon_sym_try] = ACTIONS(2972), - [sym_integer_literal] = ACTIONS(2970), - [aux_sym_string_literal_token1] = ACTIONS(2970), - [sym_char_literal] = ACTIONS(2970), - [anon_sym_true] = ACTIONS(2972), - [anon_sym_false] = ACTIONS(2972), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2972), - [sym_super] = ACTIONS(2972), - [sym_crate] = ACTIONS(2972), - [sym_metavariable] = ACTIONS(2970), - [sym__raw_string_literal_start] = ACTIONS(2970), - [sym_float_literal] = ACTIONS(2970), + [ts_builtin_sym_end] = ACTIONS(2797), + [sym_identifier] = ACTIONS(2799), + [anon_sym_SEMI] = ACTIONS(2797), + [anon_sym_macro_rules_BANG] = ACTIONS(2797), + [anon_sym_LPAREN] = ACTIONS(2797), + [anon_sym_LBRACK] = ACTIONS(2797), + [anon_sym_LBRACE] = ACTIONS(2797), + [anon_sym_RBRACE] = ACTIONS(2797), + [anon_sym_STAR] = ACTIONS(2797), + [anon_sym_u8] = ACTIONS(2799), + [anon_sym_i8] = ACTIONS(2799), + [anon_sym_u16] = ACTIONS(2799), + [anon_sym_i16] = ACTIONS(2799), + [anon_sym_u32] = ACTIONS(2799), + [anon_sym_i32] = ACTIONS(2799), + [anon_sym_u64] = ACTIONS(2799), + [anon_sym_i64] = ACTIONS(2799), + [anon_sym_u128] = ACTIONS(2799), + [anon_sym_i128] = ACTIONS(2799), + [anon_sym_isize] = ACTIONS(2799), + [anon_sym_usize] = ACTIONS(2799), + [anon_sym_f32] = ACTIONS(2799), + [anon_sym_f64] = ACTIONS(2799), + [anon_sym_bool] = ACTIONS(2799), + [anon_sym_str] = ACTIONS(2799), + [anon_sym_char] = ACTIONS(2799), + [anon_sym_DASH] = ACTIONS(2797), + [anon_sym_BANG] = ACTIONS(2797), + [anon_sym_AMP] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2797), + [anon_sym_LT] = ACTIONS(2797), + [anon_sym_DOT_DOT] = ACTIONS(2797), + [anon_sym_COLON_COLON] = ACTIONS(2797), + [anon_sym_POUND] = ACTIONS(2797), + [anon_sym_SQUOTE] = ACTIONS(2799), + [anon_sym_async] = ACTIONS(2799), + [anon_sym_break] = ACTIONS(2799), + [anon_sym_const] = ACTIONS(2799), + [anon_sym_continue] = ACTIONS(2799), + [anon_sym_default] = ACTIONS(2799), + [anon_sym_enum] = ACTIONS(2799), + [anon_sym_fn] = ACTIONS(2799), + [anon_sym_for] = ACTIONS(2799), + [anon_sym_gen] = ACTIONS(2799), + [anon_sym_if] = ACTIONS(2799), + [anon_sym_impl] = ACTIONS(2799), + [anon_sym_let] = ACTIONS(2799), + [anon_sym_loop] = ACTIONS(2799), + [anon_sym_match] = ACTIONS(2799), + [anon_sym_mod] = ACTIONS(2799), + [anon_sym_pub] = ACTIONS(2799), + [anon_sym_return] = ACTIONS(2799), + [anon_sym_static] = ACTIONS(2799), + [anon_sym_struct] = ACTIONS(2799), + [anon_sym_trait] = ACTIONS(2799), + [anon_sym_type] = ACTIONS(2799), + [anon_sym_union] = ACTIONS(2799), + [anon_sym_unsafe] = ACTIONS(2799), + [anon_sym_use] = ACTIONS(2799), + [anon_sym_while] = ACTIONS(2799), + [anon_sym_extern] = ACTIONS(2799), + [anon_sym_yield] = ACTIONS(2799), + [anon_sym_move] = ACTIONS(2799), + [anon_sym_try] = ACTIONS(2799), + [sym_integer_literal] = ACTIONS(2797), + [aux_sym_string_literal_token1] = ACTIONS(2797), + [sym_char_literal] = ACTIONS(2797), + [anon_sym_true] = ACTIONS(2799), + [anon_sym_false] = ACTIONS(2799), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2799), + [sym_super] = ACTIONS(2799), + [sym_crate] = ACTIONS(2799), + [sym_metavariable] = ACTIONS(2797), + [sym__raw_string_literal_start] = ACTIONS(2797), + [sym_float_literal] = ACTIONS(2797), }, [STATE(765)] = { [sym_line_comment] = STATE(765), [sym_block_comment] = STATE(765), - [ts_builtin_sym_end] = ACTIONS(2974), - [sym_identifier] = ACTIONS(2976), - [anon_sym_SEMI] = ACTIONS(2974), - [anon_sym_macro_rules_BANG] = ACTIONS(2974), - [anon_sym_LPAREN] = ACTIONS(2974), - [anon_sym_LBRACK] = ACTIONS(2974), - [anon_sym_LBRACE] = ACTIONS(2974), - [anon_sym_RBRACE] = ACTIONS(2974), - [anon_sym_STAR] = ACTIONS(2974), - [anon_sym_u8] = ACTIONS(2976), - [anon_sym_i8] = ACTIONS(2976), - [anon_sym_u16] = ACTIONS(2976), - [anon_sym_i16] = ACTIONS(2976), - [anon_sym_u32] = ACTIONS(2976), - [anon_sym_i32] = ACTIONS(2976), - [anon_sym_u64] = ACTIONS(2976), - [anon_sym_i64] = ACTIONS(2976), - [anon_sym_u128] = ACTIONS(2976), - [anon_sym_i128] = ACTIONS(2976), - [anon_sym_isize] = ACTIONS(2976), - [anon_sym_usize] = ACTIONS(2976), - [anon_sym_f32] = ACTIONS(2976), - [anon_sym_f64] = ACTIONS(2976), - [anon_sym_bool] = ACTIONS(2976), - [anon_sym_str] = ACTIONS(2976), - [anon_sym_char] = ACTIONS(2976), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_BANG] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2974), - [anon_sym_PIPE] = ACTIONS(2974), - [anon_sym_LT] = ACTIONS(2974), - [anon_sym_DOT_DOT] = ACTIONS(2974), - [anon_sym_COLON_COLON] = ACTIONS(2974), - [anon_sym_POUND] = ACTIONS(2974), - [anon_sym_SQUOTE] = ACTIONS(2976), - [anon_sym_async] = ACTIONS(2976), - [anon_sym_break] = ACTIONS(2976), - [anon_sym_const] = ACTIONS(2976), - [anon_sym_continue] = ACTIONS(2976), - [anon_sym_default] = ACTIONS(2976), - [anon_sym_enum] = ACTIONS(2976), - [anon_sym_fn] = ACTIONS(2976), - [anon_sym_for] = ACTIONS(2976), - [anon_sym_gen] = ACTIONS(2976), - [anon_sym_if] = ACTIONS(2976), - [anon_sym_impl] = ACTIONS(2976), - [anon_sym_let] = ACTIONS(2976), - [anon_sym_loop] = ACTIONS(2976), - [anon_sym_match] = ACTIONS(2976), - [anon_sym_mod] = ACTIONS(2976), - [anon_sym_pub] = ACTIONS(2976), - [anon_sym_return] = ACTIONS(2976), - [anon_sym_static] = ACTIONS(2976), - [anon_sym_struct] = ACTIONS(2976), - [anon_sym_trait] = ACTIONS(2976), - [anon_sym_type] = ACTIONS(2976), - [anon_sym_union] = ACTIONS(2976), - [anon_sym_unsafe] = ACTIONS(2976), - [anon_sym_use] = ACTIONS(2976), - [anon_sym_while] = ACTIONS(2976), - [anon_sym_extern] = ACTIONS(2976), - [anon_sym_yield] = ACTIONS(2976), - [anon_sym_move] = ACTIONS(2976), - [anon_sym_try] = ACTIONS(2976), - [sym_integer_literal] = ACTIONS(2974), - [aux_sym_string_literal_token1] = ACTIONS(2974), - [sym_char_literal] = ACTIONS(2974), - [anon_sym_true] = ACTIONS(2976), - [anon_sym_false] = ACTIONS(2976), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2976), - [sym_super] = ACTIONS(2976), - [sym_crate] = ACTIONS(2976), - [sym_metavariable] = ACTIONS(2974), - [sym__raw_string_literal_start] = ACTIONS(2974), - [sym_float_literal] = ACTIONS(2974), + [ts_builtin_sym_end] = ACTIONS(2801), + [sym_identifier] = ACTIONS(2803), + [anon_sym_SEMI] = ACTIONS(2801), + [anon_sym_macro_rules_BANG] = ACTIONS(2801), + [anon_sym_LPAREN] = ACTIONS(2801), + [anon_sym_LBRACK] = ACTIONS(2801), + [anon_sym_LBRACE] = ACTIONS(2801), + [anon_sym_RBRACE] = ACTIONS(2801), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_u8] = ACTIONS(2803), + [anon_sym_i8] = ACTIONS(2803), + [anon_sym_u16] = ACTIONS(2803), + [anon_sym_i16] = ACTIONS(2803), + [anon_sym_u32] = ACTIONS(2803), + [anon_sym_i32] = ACTIONS(2803), + [anon_sym_u64] = ACTIONS(2803), + [anon_sym_i64] = ACTIONS(2803), + [anon_sym_u128] = ACTIONS(2803), + [anon_sym_i128] = ACTIONS(2803), + [anon_sym_isize] = ACTIONS(2803), + [anon_sym_usize] = ACTIONS(2803), + [anon_sym_f32] = ACTIONS(2803), + [anon_sym_f64] = ACTIONS(2803), + [anon_sym_bool] = ACTIONS(2803), + [anon_sym_str] = ACTIONS(2803), + [anon_sym_char] = ACTIONS(2803), + [anon_sym_DASH] = ACTIONS(2801), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2801), + [anon_sym_PIPE] = ACTIONS(2801), + [anon_sym_LT] = ACTIONS(2801), + [anon_sym_DOT_DOT] = ACTIONS(2801), + [anon_sym_COLON_COLON] = ACTIONS(2801), + [anon_sym_POUND] = ACTIONS(2801), + [anon_sym_SQUOTE] = ACTIONS(2803), + [anon_sym_async] = ACTIONS(2803), + [anon_sym_break] = ACTIONS(2803), + [anon_sym_const] = ACTIONS(2803), + [anon_sym_continue] = ACTIONS(2803), + [anon_sym_default] = ACTIONS(2803), + [anon_sym_enum] = ACTIONS(2803), + [anon_sym_fn] = ACTIONS(2803), + [anon_sym_for] = ACTIONS(2803), + [anon_sym_gen] = ACTIONS(2803), + [anon_sym_if] = ACTIONS(2803), + [anon_sym_impl] = ACTIONS(2803), + [anon_sym_let] = ACTIONS(2803), + [anon_sym_loop] = ACTIONS(2803), + [anon_sym_match] = ACTIONS(2803), + [anon_sym_mod] = ACTIONS(2803), + [anon_sym_pub] = ACTIONS(2803), + [anon_sym_return] = ACTIONS(2803), + [anon_sym_static] = ACTIONS(2803), + [anon_sym_struct] = ACTIONS(2803), + [anon_sym_trait] = ACTIONS(2803), + [anon_sym_type] = ACTIONS(2803), + [anon_sym_union] = ACTIONS(2803), + [anon_sym_unsafe] = ACTIONS(2803), + [anon_sym_use] = ACTIONS(2803), + [anon_sym_while] = ACTIONS(2803), + [anon_sym_extern] = ACTIONS(2803), + [anon_sym_yield] = ACTIONS(2803), + [anon_sym_move] = ACTIONS(2803), + [anon_sym_try] = ACTIONS(2803), + [sym_integer_literal] = ACTIONS(2801), + [aux_sym_string_literal_token1] = ACTIONS(2801), + [sym_char_literal] = ACTIONS(2801), + [anon_sym_true] = ACTIONS(2803), + [anon_sym_false] = ACTIONS(2803), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2803), + [sym_super] = ACTIONS(2803), + [sym_crate] = ACTIONS(2803), + [sym_metavariable] = ACTIONS(2801), + [sym__raw_string_literal_start] = ACTIONS(2801), + [sym_float_literal] = ACTIONS(2801), }, [STATE(766)] = { [sym_line_comment] = STATE(766), [sym_block_comment] = STATE(766), - [ts_builtin_sym_end] = ACTIONS(2978), - [sym_identifier] = ACTIONS(2980), - [anon_sym_SEMI] = ACTIONS(2978), - [anon_sym_macro_rules_BANG] = ACTIONS(2978), - [anon_sym_LPAREN] = ACTIONS(2978), - [anon_sym_LBRACK] = ACTIONS(2978), - [anon_sym_LBRACE] = ACTIONS(2978), - [anon_sym_RBRACE] = ACTIONS(2978), - [anon_sym_STAR] = ACTIONS(2978), - [anon_sym_u8] = ACTIONS(2980), - [anon_sym_i8] = ACTIONS(2980), - [anon_sym_u16] = ACTIONS(2980), - [anon_sym_i16] = ACTIONS(2980), - [anon_sym_u32] = ACTIONS(2980), - [anon_sym_i32] = ACTIONS(2980), - [anon_sym_u64] = ACTIONS(2980), - [anon_sym_i64] = ACTIONS(2980), - [anon_sym_u128] = ACTIONS(2980), - [anon_sym_i128] = ACTIONS(2980), - [anon_sym_isize] = ACTIONS(2980), - [anon_sym_usize] = ACTIONS(2980), - [anon_sym_f32] = ACTIONS(2980), - [anon_sym_f64] = ACTIONS(2980), - [anon_sym_bool] = ACTIONS(2980), - [anon_sym_str] = ACTIONS(2980), - [anon_sym_char] = ACTIONS(2980), - [anon_sym_DASH] = ACTIONS(2978), - [anon_sym_BANG] = ACTIONS(2978), - [anon_sym_AMP] = ACTIONS(2978), - [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_LT] = ACTIONS(2978), - [anon_sym_DOT_DOT] = ACTIONS(2978), - [anon_sym_COLON_COLON] = ACTIONS(2978), - [anon_sym_POUND] = ACTIONS(2978), - [anon_sym_SQUOTE] = ACTIONS(2980), - [anon_sym_async] = ACTIONS(2980), - [anon_sym_break] = ACTIONS(2980), - [anon_sym_const] = ACTIONS(2980), - [anon_sym_continue] = ACTIONS(2980), - [anon_sym_default] = ACTIONS(2980), - [anon_sym_enum] = ACTIONS(2980), - [anon_sym_fn] = ACTIONS(2980), - [anon_sym_for] = ACTIONS(2980), - [anon_sym_gen] = ACTIONS(2980), - [anon_sym_if] = ACTIONS(2980), - [anon_sym_impl] = ACTIONS(2980), - [anon_sym_let] = ACTIONS(2980), - [anon_sym_loop] = ACTIONS(2980), - [anon_sym_match] = ACTIONS(2980), - [anon_sym_mod] = ACTIONS(2980), - [anon_sym_pub] = ACTIONS(2980), - [anon_sym_return] = ACTIONS(2980), - [anon_sym_static] = ACTIONS(2980), - [anon_sym_struct] = ACTIONS(2980), - [anon_sym_trait] = ACTIONS(2980), - [anon_sym_type] = ACTIONS(2980), - [anon_sym_union] = ACTIONS(2980), - [anon_sym_unsafe] = ACTIONS(2980), - [anon_sym_use] = ACTIONS(2980), - [anon_sym_while] = ACTIONS(2980), - [anon_sym_extern] = ACTIONS(2980), - [anon_sym_yield] = ACTIONS(2980), - [anon_sym_move] = ACTIONS(2980), - [anon_sym_try] = ACTIONS(2980), - [sym_integer_literal] = ACTIONS(2978), - [aux_sym_string_literal_token1] = ACTIONS(2978), - [sym_char_literal] = ACTIONS(2978), - [anon_sym_true] = ACTIONS(2980), - [anon_sym_false] = ACTIONS(2980), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2980), - [sym_super] = ACTIONS(2980), - [sym_crate] = ACTIONS(2980), - [sym_metavariable] = ACTIONS(2978), - [sym__raw_string_literal_start] = ACTIONS(2978), - [sym_float_literal] = ACTIONS(2978), + [ts_builtin_sym_end] = ACTIONS(2805), + [sym_identifier] = ACTIONS(2807), + [anon_sym_SEMI] = ACTIONS(2805), + [anon_sym_macro_rules_BANG] = ACTIONS(2805), + [anon_sym_LPAREN] = ACTIONS(2805), + [anon_sym_LBRACK] = ACTIONS(2805), + [anon_sym_LBRACE] = ACTIONS(2805), + [anon_sym_RBRACE] = ACTIONS(2805), + [anon_sym_STAR] = ACTIONS(2805), + [anon_sym_u8] = ACTIONS(2807), + [anon_sym_i8] = ACTIONS(2807), + [anon_sym_u16] = ACTIONS(2807), + [anon_sym_i16] = ACTIONS(2807), + [anon_sym_u32] = ACTIONS(2807), + [anon_sym_i32] = ACTIONS(2807), + [anon_sym_u64] = ACTIONS(2807), + [anon_sym_i64] = ACTIONS(2807), + [anon_sym_u128] = ACTIONS(2807), + [anon_sym_i128] = ACTIONS(2807), + [anon_sym_isize] = ACTIONS(2807), + [anon_sym_usize] = ACTIONS(2807), + [anon_sym_f32] = ACTIONS(2807), + [anon_sym_f64] = ACTIONS(2807), + [anon_sym_bool] = ACTIONS(2807), + [anon_sym_str] = ACTIONS(2807), + [anon_sym_char] = ACTIONS(2807), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_BANG] = ACTIONS(2805), + [anon_sym_AMP] = ACTIONS(2805), + [anon_sym_PIPE] = ACTIONS(2805), + [anon_sym_LT] = ACTIONS(2805), + [anon_sym_DOT_DOT] = ACTIONS(2805), + [anon_sym_COLON_COLON] = ACTIONS(2805), + [anon_sym_POUND] = ACTIONS(2805), + [anon_sym_SQUOTE] = ACTIONS(2807), + [anon_sym_async] = ACTIONS(2807), + [anon_sym_break] = ACTIONS(2807), + [anon_sym_const] = ACTIONS(2807), + [anon_sym_continue] = ACTIONS(2807), + [anon_sym_default] = ACTIONS(2807), + [anon_sym_enum] = ACTIONS(2807), + [anon_sym_fn] = ACTIONS(2807), + [anon_sym_for] = ACTIONS(2807), + [anon_sym_gen] = ACTIONS(2807), + [anon_sym_if] = ACTIONS(2807), + [anon_sym_impl] = ACTIONS(2807), + [anon_sym_let] = ACTIONS(2807), + [anon_sym_loop] = ACTIONS(2807), + [anon_sym_match] = ACTIONS(2807), + [anon_sym_mod] = ACTIONS(2807), + [anon_sym_pub] = ACTIONS(2807), + [anon_sym_return] = ACTIONS(2807), + [anon_sym_static] = ACTIONS(2807), + [anon_sym_struct] = ACTIONS(2807), + [anon_sym_trait] = ACTIONS(2807), + [anon_sym_type] = ACTIONS(2807), + [anon_sym_union] = ACTIONS(2807), + [anon_sym_unsafe] = ACTIONS(2807), + [anon_sym_use] = ACTIONS(2807), + [anon_sym_while] = ACTIONS(2807), + [anon_sym_extern] = ACTIONS(2807), + [anon_sym_yield] = ACTIONS(2807), + [anon_sym_move] = ACTIONS(2807), + [anon_sym_try] = ACTIONS(2807), + [sym_integer_literal] = ACTIONS(2805), + [aux_sym_string_literal_token1] = ACTIONS(2805), + [sym_char_literal] = ACTIONS(2805), + [anon_sym_true] = ACTIONS(2807), + [anon_sym_false] = ACTIONS(2807), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2807), + [sym_super] = ACTIONS(2807), + [sym_crate] = ACTIONS(2807), + [sym_metavariable] = ACTIONS(2805), + [sym__raw_string_literal_start] = ACTIONS(2805), + [sym_float_literal] = ACTIONS(2805), }, [STATE(767)] = { [sym_line_comment] = STATE(767), [sym_block_comment] = STATE(767), - [ts_builtin_sym_end] = ACTIONS(2982), - [sym_identifier] = ACTIONS(2984), - [anon_sym_SEMI] = ACTIONS(2982), - [anon_sym_macro_rules_BANG] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2982), - [anon_sym_LBRACK] = ACTIONS(2982), - [anon_sym_LBRACE] = ACTIONS(2982), - [anon_sym_RBRACE] = ACTIONS(2982), - [anon_sym_STAR] = ACTIONS(2982), - [anon_sym_u8] = ACTIONS(2984), - [anon_sym_i8] = ACTIONS(2984), - [anon_sym_u16] = ACTIONS(2984), - [anon_sym_i16] = ACTIONS(2984), - [anon_sym_u32] = ACTIONS(2984), - [anon_sym_i32] = ACTIONS(2984), - [anon_sym_u64] = ACTIONS(2984), - [anon_sym_i64] = ACTIONS(2984), - [anon_sym_u128] = ACTIONS(2984), - [anon_sym_i128] = ACTIONS(2984), - [anon_sym_isize] = ACTIONS(2984), - [anon_sym_usize] = ACTIONS(2984), - [anon_sym_f32] = ACTIONS(2984), - [anon_sym_f64] = ACTIONS(2984), - [anon_sym_bool] = ACTIONS(2984), - [anon_sym_str] = ACTIONS(2984), - [anon_sym_char] = ACTIONS(2984), - [anon_sym_DASH] = ACTIONS(2982), - [anon_sym_BANG] = ACTIONS(2982), - [anon_sym_AMP] = ACTIONS(2982), - [anon_sym_PIPE] = ACTIONS(2982), - [anon_sym_LT] = ACTIONS(2982), - [anon_sym_DOT_DOT] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(2982), - [anon_sym_POUND] = ACTIONS(2982), - [anon_sym_SQUOTE] = ACTIONS(2984), - [anon_sym_async] = ACTIONS(2984), - [anon_sym_break] = ACTIONS(2984), - [anon_sym_const] = ACTIONS(2984), - [anon_sym_continue] = ACTIONS(2984), - [anon_sym_default] = ACTIONS(2984), - [anon_sym_enum] = ACTIONS(2984), - [anon_sym_fn] = ACTIONS(2984), - [anon_sym_for] = ACTIONS(2984), - [anon_sym_gen] = ACTIONS(2984), - [anon_sym_if] = ACTIONS(2984), - [anon_sym_impl] = ACTIONS(2984), - [anon_sym_let] = ACTIONS(2984), - [anon_sym_loop] = ACTIONS(2984), - [anon_sym_match] = ACTIONS(2984), - [anon_sym_mod] = ACTIONS(2984), - [anon_sym_pub] = ACTIONS(2984), - [anon_sym_return] = ACTIONS(2984), - [anon_sym_static] = ACTIONS(2984), - [anon_sym_struct] = ACTIONS(2984), - [anon_sym_trait] = ACTIONS(2984), - [anon_sym_type] = ACTIONS(2984), - [anon_sym_union] = ACTIONS(2984), - [anon_sym_unsafe] = ACTIONS(2984), - [anon_sym_use] = ACTIONS(2984), - [anon_sym_while] = ACTIONS(2984), - [anon_sym_extern] = ACTIONS(2984), - [anon_sym_yield] = ACTIONS(2984), - [anon_sym_move] = ACTIONS(2984), - [anon_sym_try] = ACTIONS(2984), - [sym_integer_literal] = ACTIONS(2982), - [aux_sym_string_literal_token1] = ACTIONS(2982), - [sym_char_literal] = ACTIONS(2982), - [anon_sym_true] = ACTIONS(2984), - [anon_sym_false] = ACTIONS(2984), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2984), - [sym_super] = ACTIONS(2984), - [sym_crate] = ACTIONS(2984), - [sym_metavariable] = ACTIONS(2982), - [sym__raw_string_literal_start] = ACTIONS(2982), - [sym_float_literal] = ACTIONS(2982), + [ts_builtin_sym_end] = ACTIONS(2809), + [sym_identifier] = ACTIONS(2811), + [anon_sym_SEMI] = ACTIONS(2809), + [anon_sym_macro_rules_BANG] = ACTIONS(2809), + [anon_sym_LPAREN] = ACTIONS(2809), + [anon_sym_LBRACK] = ACTIONS(2809), + [anon_sym_LBRACE] = ACTIONS(2809), + [anon_sym_RBRACE] = ACTIONS(2809), + [anon_sym_STAR] = ACTIONS(2809), + [anon_sym_u8] = ACTIONS(2811), + [anon_sym_i8] = ACTIONS(2811), + [anon_sym_u16] = ACTIONS(2811), + [anon_sym_i16] = ACTIONS(2811), + [anon_sym_u32] = ACTIONS(2811), + [anon_sym_i32] = ACTIONS(2811), + [anon_sym_u64] = ACTIONS(2811), + [anon_sym_i64] = ACTIONS(2811), + [anon_sym_u128] = ACTIONS(2811), + [anon_sym_i128] = ACTIONS(2811), + [anon_sym_isize] = ACTIONS(2811), + [anon_sym_usize] = ACTIONS(2811), + [anon_sym_f32] = ACTIONS(2811), + [anon_sym_f64] = ACTIONS(2811), + [anon_sym_bool] = ACTIONS(2811), + [anon_sym_str] = ACTIONS(2811), + [anon_sym_char] = ACTIONS(2811), + [anon_sym_DASH] = ACTIONS(2809), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_AMP] = ACTIONS(2809), + [anon_sym_PIPE] = ACTIONS(2809), + [anon_sym_LT] = ACTIONS(2809), + [anon_sym_DOT_DOT] = ACTIONS(2809), + [anon_sym_COLON_COLON] = ACTIONS(2809), + [anon_sym_POUND] = ACTIONS(2809), + [anon_sym_SQUOTE] = ACTIONS(2811), + [anon_sym_async] = ACTIONS(2811), + [anon_sym_break] = ACTIONS(2811), + [anon_sym_const] = ACTIONS(2811), + [anon_sym_continue] = ACTIONS(2811), + [anon_sym_default] = ACTIONS(2811), + [anon_sym_enum] = ACTIONS(2811), + [anon_sym_fn] = ACTIONS(2811), + [anon_sym_for] = ACTIONS(2811), + [anon_sym_gen] = ACTIONS(2811), + [anon_sym_if] = ACTIONS(2811), + [anon_sym_impl] = ACTIONS(2811), + [anon_sym_let] = ACTIONS(2811), + [anon_sym_loop] = ACTIONS(2811), + [anon_sym_match] = ACTIONS(2811), + [anon_sym_mod] = ACTIONS(2811), + [anon_sym_pub] = ACTIONS(2811), + [anon_sym_return] = ACTIONS(2811), + [anon_sym_static] = ACTIONS(2811), + [anon_sym_struct] = ACTIONS(2811), + [anon_sym_trait] = ACTIONS(2811), + [anon_sym_type] = ACTIONS(2811), + [anon_sym_union] = ACTIONS(2811), + [anon_sym_unsafe] = ACTIONS(2811), + [anon_sym_use] = ACTIONS(2811), + [anon_sym_while] = ACTIONS(2811), + [anon_sym_extern] = ACTIONS(2811), + [anon_sym_yield] = ACTIONS(2811), + [anon_sym_move] = ACTIONS(2811), + [anon_sym_try] = ACTIONS(2811), + [sym_integer_literal] = ACTIONS(2809), + [aux_sym_string_literal_token1] = ACTIONS(2809), + [sym_char_literal] = ACTIONS(2809), + [anon_sym_true] = ACTIONS(2811), + [anon_sym_false] = ACTIONS(2811), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2811), + [sym_super] = ACTIONS(2811), + [sym_crate] = ACTIONS(2811), + [sym_metavariable] = ACTIONS(2809), + [sym__raw_string_literal_start] = ACTIONS(2809), + [sym_float_literal] = ACTIONS(2809), }, [STATE(768)] = { [sym_line_comment] = STATE(768), [sym_block_comment] = STATE(768), - [ts_builtin_sym_end] = ACTIONS(2986), - [sym_identifier] = ACTIONS(2988), - [anon_sym_SEMI] = ACTIONS(2986), - [anon_sym_macro_rules_BANG] = ACTIONS(2986), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_RBRACE] = ACTIONS(2986), - [anon_sym_STAR] = ACTIONS(2986), - [anon_sym_u8] = ACTIONS(2988), - [anon_sym_i8] = ACTIONS(2988), - [anon_sym_u16] = ACTIONS(2988), - [anon_sym_i16] = ACTIONS(2988), - [anon_sym_u32] = ACTIONS(2988), - [anon_sym_i32] = ACTIONS(2988), - [anon_sym_u64] = ACTIONS(2988), - [anon_sym_i64] = ACTIONS(2988), - [anon_sym_u128] = ACTIONS(2988), - [anon_sym_i128] = ACTIONS(2988), - [anon_sym_isize] = ACTIONS(2988), - [anon_sym_usize] = ACTIONS(2988), - [anon_sym_f32] = ACTIONS(2988), - [anon_sym_f64] = ACTIONS(2988), - [anon_sym_bool] = ACTIONS(2988), - [anon_sym_str] = ACTIONS(2988), - [anon_sym_char] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_BANG] = ACTIONS(2986), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_PIPE] = ACTIONS(2986), - [anon_sym_LT] = ACTIONS(2986), - [anon_sym_DOT_DOT] = ACTIONS(2986), - [anon_sym_COLON_COLON] = ACTIONS(2986), - [anon_sym_POUND] = ACTIONS(2986), - [anon_sym_SQUOTE] = ACTIONS(2988), - [anon_sym_async] = ACTIONS(2988), - [anon_sym_break] = ACTIONS(2988), - [anon_sym_const] = ACTIONS(2988), - [anon_sym_continue] = ACTIONS(2988), - [anon_sym_default] = ACTIONS(2988), - [anon_sym_enum] = ACTIONS(2988), - [anon_sym_fn] = ACTIONS(2988), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_gen] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_impl] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_loop] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_mod] = ACTIONS(2988), - [anon_sym_pub] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_static] = ACTIONS(2988), - [anon_sym_struct] = ACTIONS(2988), - [anon_sym_trait] = ACTIONS(2988), - [anon_sym_type] = ACTIONS(2988), - [anon_sym_union] = ACTIONS(2988), - [anon_sym_unsafe] = ACTIONS(2988), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_extern] = ACTIONS(2988), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_move] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [sym_integer_literal] = ACTIONS(2986), - [aux_sym_string_literal_token1] = ACTIONS(2986), - [sym_char_literal] = ACTIONS(2986), - [anon_sym_true] = ACTIONS(2988), - [anon_sym_false] = ACTIONS(2988), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2988), - [sym_super] = ACTIONS(2988), - [sym_crate] = ACTIONS(2988), - [sym_metavariable] = ACTIONS(2986), - [sym__raw_string_literal_start] = ACTIONS(2986), - [sym_float_literal] = ACTIONS(2986), + [ts_builtin_sym_end] = ACTIONS(2813), + [sym_identifier] = ACTIONS(2815), + [anon_sym_SEMI] = ACTIONS(2813), + [anon_sym_macro_rules_BANG] = ACTIONS(2813), + [anon_sym_LPAREN] = ACTIONS(2813), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_LBRACE] = ACTIONS(2813), + [anon_sym_RBRACE] = ACTIONS(2813), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_u8] = ACTIONS(2815), + [anon_sym_i8] = ACTIONS(2815), + [anon_sym_u16] = ACTIONS(2815), + [anon_sym_i16] = ACTIONS(2815), + [anon_sym_u32] = ACTIONS(2815), + [anon_sym_i32] = ACTIONS(2815), + [anon_sym_u64] = ACTIONS(2815), + [anon_sym_i64] = ACTIONS(2815), + [anon_sym_u128] = ACTIONS(2815), + [anon_sym_i128] = ACTIONS(2815), + [anon_sym_isize] = ACTIONS(2815), + [anon_sym_usize] = ACTIONS(2815), + [anon_sym_f32] = ACTIONS(2815), + [anon_sym_f64] = ACTIONS(2815), + [anon_sym_bool] = ACTIONS(2815), + [anon_sym_str] = ACTIONS(2815), + [anon_sym_char] = ACTIONS(2815), + [anon_sym_DASH] = ACTIONS(2813), + [anon_sym_BANG] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym_PIPE] = ACTIONS(2813), + [anon_sym_LT] = ACTIONS(2813), + [anon_sym_DOT_DOT] = ACTIONS(2813), + [anon_sym_COLON_COLON] = ACTIONS(2813), + [anon_sym_POUND] = ACTIONS(2813), + [anon_sym_SQUOTE] = ACTIONS(2815), + [anon_sym_async] = ACTIONS(2815), + [anon_sym_break] = ACTIONS(2815), + [anon_sym_const] = ACTIONS(2815), + [anon_sym_continue] = ACTIONS(2815), + [anon_sym_default] = ACTIONS(2815), + [anon_sym_enum] = ACTIONS(2815), + [anon_sym_fn] = ACTIONS(2815), + [anon_sym_for] = ACTIONS(2815), + [anon_sym_gen] = ACTIONS(2815), + [anon_sym_if] = ACTIONS(2815), + [anon_sym_impl] = ACTIONS(2815), + [anon_sym_let] = ACTIONS(2815), + [anon_sym_loop] = ACTIONS(2815), + [anon_sym_match] = ACTIONS(2815), + [anon_sym_mod] = ACTIONS(2815), + [anon_sym_pub] = ACTIONS(2815), + [anon_sym_return] = ACTIONS(2815), + [anon_sym_static] = ACTIONS(2815), + [anon_sym_struct] = ACTIONS(2815), + [anon_sym_trait] = ACTIONS(2815), + [anon_sym_type] = ACTIONS(2815), + [anon_sym_union] = ACTIONS(2815), + [anon_sym_unsafe] = ACTIONS(2815), + [anon_sym_use] = ACTIONS(2815), + [anon_sym_while] = ACTIONS(2815), + [anon_sym_extern] = ACTIONS(2815), + [anon_sym_yield] = ACTIONS(2815), + [anon_sym_move] = ACTIONS(2815), + [anon_sym_try] = ACTIONS(2815), + [sym_integer_literal] = ACTIONS(2813), + [aux_sym_string_literal_token1] = ACTIONS(2813), + [sym_char_literal] = ACTIONS(2813), + [anon_sym_true] = ACTIONS(2815), + [anon_sym_false] = ACTIONS(2815), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2815), + [sym_super] = ACTIONS(2815), + [sym_crate] = ACTIONS(2815), + [sym_metavariable] = ACTIONS(2813), + [sym__raw_string_literal_start] = ACTIONS(2813), + [sym_float_literal] = ACTIONS(2813), }, [STATE(769)] = { [sym_line_comment] = STATE(769), [sym_block_comment] = STATE(769), - [ts_builtin_sym_end] = ACTIONS(2990), - [sym_identifier] = ACTIONS(2992), - [anon_sym_SEMI] = ACTIONS(2990), - [anon_sym_macro_rules_BANG] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2990), - [anon_sym_LBRACK] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2990), - [anon_sym_RBRACE] = ACTIONS(2990), - [anon_sym_STAR] = ACTIONS(2990), - [anon_sym_u8] = ACTIONS(2992), - [anon_sym_i8] = ACTIONS(2992), - [anon_sym_u16] = ACTIONS(2992), - [anon_sym_i16] = ACTIONS(2992), - [anon_sym_u32] = ACTIONS(2992), - [anon_sym_i32] = ACTIONS(2992), - [anon_sym_u64] = ACTIONS(2992), - [anon_sym_i64] = ACTIONS(2992), - [anon_sym_u128] = ACTIONS(2992), - [anon_sym_i128] = ACTIONS(2992), - [anon_sym_isize] = ACTIONS(2992), - [anon_sym_usize] = ACTIONS(2992), - [anon_sym_f32] = ACTIONS(2992), - [anon_sym_f64] = ACTIONS(2992), - [anon_sym_bool] = ACTIONS(2992), - [anon_sym_str] = ACTIONS(2992), - [anon_sym_char] = ACTIONS(2992), - [anon_sym_DASH] = ACTIONS(2990), - [anon_sym_BANG] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2990), - [anon_sym_PIPE] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_DOT_DOT] = ACTIONS(2990), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_POUND] = ACTIONS(2990), - [anon_sym_SQUOTE] = ACTIONS(2992), - [anon_sym_async] = ACTIONS(2992), - [anon_sym_break] = ACTIONS(2992), - [anon_sym_const] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(2992), - [anon_sym_default] = ACTIONS(2992), - [anon_sym_enum] = ACTIONS(2992), - [anon_sym_fn] = ACTIONS(2992), - [anon_sym_for] = ACTIONS(2992), - [anon_sym_gen] = ACTIONS(2992), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_impl] = ACTIONS(2992), - [anon_sym_let] = ACTIONS(2992), - [anon_sym_loop] = ACTIONS(2992), - [anon_sym_match] = ACTIONS(2992), - [anon_sym_mod] = ACTIONS(2992), - [anon_sym_pub] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_static] = ACTIONS(2992), - [anon_sym_struct] = ACTIONS(2992), - [anon_sym_trait] = ACTIONS(2992), - [anon_sym_type] = ACTIONS(2992), - [anon_sym_union] = ACTIONS(2992), - [anon_sym_unsafe] = ACTIONS(2992), - [anon_sym_use] = ACTIONS(2992), - [anon_sym_while] = ACTIONS(2992), - [anon_sym_extern] = ACTIONS(2992), - [anon_sym_yield] = ACTIONS(2992), - [anon_sym_move] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2992), - [sym_integer_literal] = ACTIONS(2990), - [aux_sym_string_literal_token1] = ACTIONS(2990), - [sym_char_literal] = ACTIONS(2990), - [anon_sym_true] = ACTIONS(2992), - [anon_sym_false] = ACTIONS(2992), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2992), - [sym_super] = ACTIONS(2992), - [sym_crate] = ACTIONS(2992), - [sym_metavariable] = ACTIONS(2990), - [sym__raw_string_literal_start] = ACTIONS(2990), - [sym_float_literal] = ACTIONS(2990), + [ts_builtin_sym_end] = ACTIONS(2817), + [sym_identifier] = ACTIONS(2819), + [anon_sym_SEMI] = ACTIONS(2817), + [anon_sym_macro_rules_BANG] = ACTIONS(2817), + [anon_sym_LPAREN] = ACTIONS(2817), + [anon_sym_LBRACK] = ACTIONS(2817), + [anon_sym_LBRACE] = ACTIONS(2817), + [anon_sym_RBRACE] = ACTIONS(2817), + [anon_sym_STAR] = ACTIONS(2817), + [anon_sym_u8] = ACTIONS(2819), + [anon_sym_i8] = ACTIONS(2819), + [anon_sym_u16] = ACTIONS(2819), + [anon_sym_i16] = ACTIONS(2819), + [anon_sym_u32] = ACTIONS(2819), + [anon_sym_i32] = ACTIONS(2819), + [anon_sym_u64] = ACTIONS(2819), + [anon_sym_i64] = ACTIONS(2819), + [anon_sym_u128] = ACTIONS(2819), + [anon_sym_i128] = ACTIONS(2819), + [anon_sym_isize] = ACTIONS(2819), + [anon_sym_usize] = ACTIONS(2819), + [anon_sym_f32] = ACTIONS(2819), + [anon_sym_f64] = ACTIONS(2819), + [anon_sym_bool] = ACTIONS(2819), + [anon_sym_str] = ACTIONS(2819), + [anon_sym_char] = ACTIONS(2819), + [anon_sym_DASH] = ACTIONS(2817), + [anon_sym_BANG] = ACTIONS(2817), + [anon_sym_AMP] = ACTIONS(2817), + [anon_sym_PIPE] = ACTIONS(2817), + [anon_sym_LT] = ACTIONS(2817), + [anon_sym_DOT_DOT] = ACTIONS(2817), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_POUND] = ACTIONS(2817), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_async] = ACTIONS(2819), + [anon_sym_break] = ACTIONS(2819), + [anon_sym_const] = ACTIONS(2819), + [anon_sym_continue] = ACTIONS(2819), + [anon_sym_default] = ACTIONS(2819), + [anon_sym_enum] = ACTIONS(2819), + [anon_sym_fn] = ACTIONS(2819), + [anon_sym_for] = ACTIONS(2819), + [anon_sym_gen] = ACTIONS(2819), + [anon_sym_if] = ACTIONS(2819), + [anon_sym_impl] = ACTIONS(2819), + [anon_sym_let] = ACTIONS(2819), + [anon_sym_loop] = ACTIONS(2819), + [anon_sym_match] = ACTIONS(2819), + [anon_sym_mod] = ACTIONS(2819), + [anon_sym_pub] = ACTIONS(2819), + [anon_sym_return] = ACTIONS(2819), + [anon_sym_static] = ACTIONS(2819), + [anon_sym_struct] = ACTIONS(2819), + [anon_sym_trait] = ACTIONS(2819), + [anon_sym_type] = ACTIONS(2819), + [anon_sym_union] = ACTIONS(2819), + [anon_sym_unsafe] = ACTIONS(2819), + [anon_sym_use] = ACTIONS(2819), + [anon_sym_while] = ACTIONS(2819), + [anon_sym_extern] = ACTIONS(2819), + [anon_sym_yield] = ACTIONS(2819), + [anon_sym_move] = ACTIONS(2819), + [anon_sym_try] = ACTIONS(2819), + [sym_integer_literal] = ACTIONS(2817), + [aux_sym_string_literal_token1] = ACTIONS(2817), + [sym_char_literal] = ACTIONS(2817), + [anon_sym_true] = ACTIONS(2819), + [anon_sym_false] = ACTIONS(2819), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2819), + [sym_super] = ACTIONS(2819), + [sym_crate] = ACTIONS(2819), + [sym_metavariable] = ACTIONS(2817), + [sym__raw_string_literal_start] = ACTIONS(2817), + [sym_float_literal] = ACTIONS(2817), }, [STATE(770)] = { [sym_line_comment] = STATE(770), [sym_block_comment] = STATE(770), - [ts_builtin_sym_end] = ACTIONS(2994), - [sym_identifier] = ACTIONS(2996), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_macro_rules_BANG] = ACTIONS(2994), - [anon_sym_LPAREN] = ACTIONS(2994), - [anon_sym_LBRACK] = ACTIONS(2994), - [anon_sym_LBRACE] = ACTIONS(2994), - [anon_sym_RBRACE] = ACTIONS(2994), - [anon_sym_STAR] = ACTIONS(2994), - [anon_sym_u8] = ACTIONS(2996), - [anon_sym_i8] = ACTIONS(2996), - [anon_sym_u16] = ACTIONS(2996), - [anon_sym_i16] = ACTIONS(2996), - [anon_sym_u32] = ACTIONS(2996), - [anon_sym_i32] = ACTIONS(2996), - [anon_sym_u64] = ACTIONS(2996), - [anon_sym_i64] = ACTIONS(2996), - [anon_sym_u128] = ACTIONS(2996), - [anon_sym_i128] = ACTIONS(2996), - [anon_sym_isize] = ACTIONS(2996), - [anon_sym_usize] = ACTIONS(2996), - [anon_sym_f32] = ACTIONS(2996), - [anon_sym_f64] = ACTIONS(2996), - [anon_sym_bool] = ACTIONS(2996), - [anon_sym_str] = ACTIONS(2996), - [anon_sym_char] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2994), - [anon_sym_BANG] = ACTIONS(2994), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_PIPE] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2994), - [anon_sym_DOT_DOT] = ACTIONS(2994), - [anon_sym_COLON_COLON] = ACTIONS(2994), - [anon_sym_POUND] = ACTIONS(2994), - [anon_sym_SQUOTE] = ACTIONS(2996), - [anon_sym_async] = ACTIONS(2996), - [anon_sym_break] = ACTIONS(2996), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_continue] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2996), - [anon_sym_enum] = ACTIONS(2996), - [anon_sym_fn] = ACTIONS(2996), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_gen] = ACTIONS(2996), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_impl] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_loop] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_mod] = ACTIONS(2996), - [anon_sym_pub] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_static] = ACTIONS(2996), - [anon_sym_struct] = ACTIONS(2996), - [anon_sym_trait] = ACTIONS(2996), - [anon_sym_type] = ACTIONS(2996), - [anon_sym_union] = ACTIONS(2996), - [anon_sym_unsafe] = ACTIONS(2996), - [anon_sym_use] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_extern] = ACTIONS(2996), - [anon_sym_yield] = ACTIONS(2996), - [anon_sym_move] = ACTIONS(2996), - [anon_sym_try] = ACTIONS(2996), - [sym_integer_literal] = ACTIONS(2994), - [aux_sym_string_literal_token1] = ACTIONS(2994), - [sym_char_literal] = ACTIONS(2994), - [anon_sym_true] = ACTIONS(2996), - [anon_sym_false] = ACTIONS(2996), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2996), - [sym_super] = ACTIONS(2996), - [sym_crate] = ACTIONS(2996), - [sym_metavariable] = ACTIONS(2994), - [sym__raw_string_literal_start] = ACTIONS(2994), - [sym_float_literal] = ACTIONS(2994), + [ts_builtin_sym_end] = ACTIONS(2821), + [sym_identifier] = ACTIONS(2823), + [anon_sym_SEMI] = ACTIONS(2821), + [anon_sym_macro_rules_BANG] = ACTIONS(2821), + [anon_sym_LPAREN] = ACTIONS(2821), + [anon_sym_LBRACK] = ACTIONS(2821), + [anon_sym_LBRACE] = ACTIONS(2821), + [anon_sym_RBRACE] = ACTIONS(2821), + [anon_sym_STAR] = ACTIONS(2821), + [anon_sym_u8] = ACTIONS(2823), + [anon_sym_i8] = ACTIONS(2823), + [anon_sym_u16] = ACTIONS(2823), + [anon_sym_i16] = ACTIONS(2823), + [anon_sym_u32] = ACTIONS(2823), + [anon_sym_i32] = ACTIONS(2823), + [anon_sym_u64] = ACTIONS(2823), + [anon_sym_i64] = ACTIONS(2823), + [anon_sym_u128] = ACTIONS(2823), + [anon_sym_i128] = ACTIONS(2823), + [anon_sym_isize] = ACTIONS(2823), + [anon_sym_usize] = ACTIONS(2823), + [anon_sym_f32] = ACTIONS(2823), + [anon_sym_f64] = ACTIONS(2823), + [anon_sym_bool] = ACTIONS(2823), + [anon_sym_str] = ACTIONS(2823), + [anon_sym_char] = ACTIONS(2823), + [anon_sym_DASH] = ACTIONS(2821), + [anon_sym_BANG] = ACTIONS(2821), + [anon_sym_AMP] = ACTIONS(2821), + [anon_sym_PIPE] = ACTIONS(2821), + [anon_sym_LT] = ACTIONS(2821), + [anon_sym_DOT_DOT] = ACTIONS(2821), + [anon_sym_COLON_COLON] = ACTIONS(2821), + [anon_sym_POUND] = ACTIONS(2821), + [anon_sym_SQUOTE] = ACTIONS(2823), + [anon_sym_async] = ACTIONS(2823), + [anon_sym_break] = ACTIONS(2823), + [anon_sym_const] = ACTIONS(2823), + [anon_sym_continue] = ACTIONS(2823), + [anon_sym_default] = ACTIONS(2823), + [anon_sym_enum] = ACTIONS(2823), + [anon_sym_fn] = ACTIONS(2823), + [anon_sym_for] = ACTIONS(2823), + [anon_sym_gen] = ACTIONS(2823), + [anon_sym_if] = ACTIONS(2823), + [anon_sym_impl] = ACTIONS(2823), + [anon_sym_let] = ACTIONS(2823), + [anon_sym_loop] = ACTIONS(2823), + [anon_sym_match] = ACTIONS(2823), + [anon_sym_mod] = ACTIONS(2823), + [anon_sym_pub] = ACTIONS(2823), + [anon_sym_return] = ACTIONS(2823), + [anon_sym_static] = ACTIONS(2823), + [anon_sym_struct] = ACTIONS(2823), + [anon_sym_trait] = ACTIONS(2823), + [anon_sym_type] = ACTIONS(2823), + [anon_sym_union] = ACTIONS(2823), + [anon_sym_unsafe] = ACTIONS(2823), + [anon_sym_use] = ACTIONS(2823), + [anon_sym_while] = ACTIONS(2823), + [anon_sym_extern] = ACTIONS(2823), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_move] = ACTIONS(2823), + [anon_sym_try] = ACTIONS(2823), + [sym_integer_literal] = ACTIONS(2821), + [aux_sym_string_literal_token1] = ACTIONS(2821), + [sym_char_literal] = ACTIONS(2821), + [anon_sym_true] = ACTIONS(2823), + [anon_sym_false] = ACTIONS(2823), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2823), + [sym_super] = ACTIONS(2823), + [sym_crate] = ACTIONS(2823), + [sym_metavariable] = ACTIONS(2821), + [sym__raw_string_literal_start] = ACTIONS(2821), + [sym_float_literal] = ACTIONS(2821), }, [STATE(771)] = { [sym_line_comment] = STATE(771), [sym_block_comment] = STATE(771), - [ts_builtin_sym_end] = ACTIONS(2998), - [sym_identifier] = ACTIONS(3000), - [anon_sym_SEMI] = ACTIONS(2998), - [anon_sym_macro_rules_BANG] = ACTIONS(2998), - [anon_sym_LPAREN] = ACTIONS(2998), - [anon_sym_LBRACK] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(2998), - [anon_sym_RBRACE] = ACTIONS(2998), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_u8] = ACTIONS(3000), - [anon_sym_i8] = ACTIONS(3000), - [anon_sym_u16] = ACTIONS(3000), - [anon_sym_i16] = ACTIONS(3000), - [anon_sym_u32] = ACTIONS(3000), - [anon_sym_i32] = ACTIONS(3000), - [anon_sym_u64] = ACTIONS(3000), - [anon_sym_i64] = ACTIONS(3000), - [anon_sym_u128] = ACTIONS(3000), - [anon_sym_i128] = ACTIONS(3000), - [anon_sym_isize] = ACTIONS(3000), - [anon_sym_usize] = ACTIONS(3000), - [anon_sym_f32] = ACTIONS(3000), - [anon_sym_f64] = ACTIONS(3000), - [anon_sym_bool] = ACTIONS(3000), - [anon_sym_str] = ACTIONS(3000), - [anon_sym_char] = ACTIONS(3000), - [anon_sym_DASH] = ACTIONS(2998), - [anon_sym_BANG] = ACTIONS(2998), - [anon_sym_AMP] = ACTIONS(2998), - [anon_sym_PIPE] = ACTIONS(2998), - [anon_sym_LT] = ACTIONS(2998), - [anon_sym_DOT_DOT] = ACTIONS(2998), - [anon_sym_COLON_COLON] = ACTIONS(2998), - [anon_sym_POUND] = ACTIONS(2998), - [anon_sym_SQUOTE] = ACTIONS(3000), - [anon_sym_async] = ACTIONS(3000), - [anon_sym_break] = ACTIONS(3000), - [anon_sym_const] = ACTIONS(3000), - [anon_sym_continue] = ACTIONS(3000), - [anon_sym_default] = ACTIONS(3000), - [anon_sym_enum] = ACTIONS(3000), - [anon_sym_fn] = ACTIONS(3000), - [anon_sym_for] = ACTIONS(3000), - [anon_sym_gen] = ACTIONS(3000), - [anon_sym_if] = ACTIONS(3000), - [anon_sym_impl] = ACTIONS(3000), - [anon_sym_let] = ACTIONS(3000), - [anon_sym_loop] = ACTIONS(3000), - [anon_sym_match] = ACTIONS(3000), - [anon_sym_mod] = ACTIONS(3000), - [anon_sym_pub] = ACTIONS(3000), - [anon_sym_return] = ACTIONS(3000), - [anon_sym_static] = ACTIONS(3000), - [anon_sym_struct] = ACTIONS(3000), - [anon_sym_trait] = ACTIONS(3000), - [anon_sym_type] = ACTIONS(3000), - [anon_sym_union] = ACTIONS(3000), - [anon_sym_unsafe] = ACTIONS(3000), - [anon_sym_use] = ACTIONS(3000), - [anon_sym_while] = ACTIONS(3000), - [anon_sym_extern] = ACTIONS(3000), - [anon_sym_yield] = ACTIONS(3000), - [anon_sym_move] = ACTIONS(3000), - [anon_sym_try] = ACTIONS(3000), - [sym_integer_literal] = ACTIONS(2998), - [aux_sym_string_literal_token1] = ACTIONS(2998), - [sym_char_literal] = ACTIONS(2998), - [anon_sym_true] = ACTIONS(3000), - [anon_sym_false] = ACTIONS(3000), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(2998), - [sym__raw_string_literal_start] = ACTIONS(2998), - [sym_float_literal] = ACTIONS(2998), + [ts_builtin_sym_end] = ACTIONS(2825), + [sym_identifier] = ACTIONS(2827), + [anon_sym_SEMI] = ACTIONS(2825), + [anon_sym_macro_rules_BANG] = ACTIONS(2825), + [anon_sym_LPAREN] = ACTIONS(2825), + [anon_sym_LBRACK] = ACTIONS(2825), + [anon_sym_LBRACE] = ACTIONS(2825), + [anon_sym_RBRACE] = ACTIONS(2825), + [anon_sym_STAR] = ACTIONS(2825), + [anon_sym_u8] = ACTIONS(2827), + [anon_sym_i8] = ACTIONS(2827), + [anon_sym_u16] = ACTIONS(2827), + [anon_sym_i16] = ACTIONS(2827), + [anon_sym_u32] = ACTIONS(2827), + [anon_sym_i32] = ACTIONS(2827), + [anon_sym_u64] = ACTIONS(2827), + [anon_sym_i64] = ACTIONS(2827), + [anon_sym_u128] = ACTIONS(2827), + [anon_sym_i128] = ACTIONS(2827), + [anon_sym_isize] = ACTIONS(2827), + [anon_sym_usize] = ACTIONS(2827), + [anon_sym_f32] = ACTIONS(2827), + [anon_sym_f64] = ACTIONS(2827), + [anon_sym_bool] = ACTIONS(2827), + [anon_sym_str] = ACTIONS(2827), + [anon_sym_char] = ACTIONS(2827), + [anon_sym_DASH] = ACTIONS(2825), + [anon_sym_BANG] = ACTIONS(2825), + [anon_sym_AMP] = ACTIONS(2825), + [anon_sym_PIPE] = ACTIONS(2825), + [anon_sym_LT] = ACTIONS(2825), + [anon_sym_DOT_DOT] = ACTIONS(2825), + [anon_sym_COLON_COLON] = ACTIONS(2825), + [anon_sym_POUND] = ACTIONS(2825), + [anon_sym_SQUOTE] = ACTIONS(2827), + [anon_sym_async] = ACTIONS(2827), + [anon_sym_break] = ACTIONS(2827), + [anon_sym_const] = ACTIONS(2827), + [anon_sym_continue] = ACTIONS(2827), + [anon_sym_default] = ACTIONS(2827), + [anon_sym_enum] = ACTIONS(2827), + [anon_sym_fn] = ACTIONS(2827), + [anon_sym_for] = ACTIONS(2827), + [anon_sym_gen] = ACTIONS(2827), + [anon_sym_if] = ACTIONS(2827), + [anon_sym_impl] = ACTIONS(2827), + [anon_sym_let] = ACTIONS(2827), + [anon_sym_loop] = ACTIONS(2827), + [anon_sym_match] = ACTIONS(2827), + [anon_sym_mod] = ACTIONS(2827), + [anon_sym_pub] = ACTIONS(2827), + [anon_sym_return] = ACTIONS(2827), + [anon_sym_static] = ACTIONS(2827), + [anon_sym_struct] = ACTIONS(2827), + [anon_sym_trait] = ACTIONS(2827), + [anon_sym_type] = ACTIONS(2827), + [anon_sym_union] = ACTIONS(2827), + [anon_sym_unsafe] = ACTIONS(2827), + [anon_sym_use] = ACTIONS(2827), + [anon_sym_while] = ACTIONS(2827), + [anon_sym_extern] = ACTIONS(2827), + [anon_sym_yield] = ACTIONS(2827), + [anon_sym_move] = ACTIONS(2827), + [anon_sym_try] = ACTIONS(2827), + [sym_integer_literal] = ACTIONS(2825), + [aux_sym_string_literal_token1] = ACTIONS(2825), + [sym_char_literal] = ACTIONS(2825), + [anon_sym_true] = ACTIONS(2827), + [anon_sym_false] = ACTIONS(2827), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2827), + [sym_super] = ACTIONS(2827), + [sym_crate] = ACTIONS(2827), + [sym_metavariable] = ACTIONS(2825), + [sym__raw_string_literal_start] = ACTIONS(2825), + [sym_float_literal] = ACTIONS(2825), }, [STATE(772)] = { [sym_line_comment] = STATE(772), [sym_block_comment] = STATE(772), - [ts_builtin_sym_end] = ACTIONS(3002), - [sym_identifier] = ACTIONS(3004), - [anon_sym_SEMI] = ACTIONS(3002), - [anon_sym_macro_rules_BANG] = ACTIONS(3002), - [anon_sym_LPAREN] = ACTIONS(3002), - [anon_sym_LBRACK] = ACTIONS(3002), - [anon_sym_LBRACE] = ACTIONS(3002), - [anon_sym_RBRACE] = ACTIONS(3002), - [anon_sym_STAR] = ACTIONS(3002), - [anon_sym_u8] = ACTIONS(3004), - [anon_sym_i8] = ACTIONS(3004), - [anon_sym_u16] = ACTIONS(3004), - [anon_sym_i16] = ACTIONS(3004), - [anon_sym_u32] = ACTIONS(3004), - [anon_sym_i32] = ACTIONS(3004), - [anon_sym_u64] = ACTIONS(3004), - [anon_sym_i64] = ACTIONS(3004), - [anon_sym_u128] = ACTIONS(3004), - [anon_sym_i128] = ACTIONS(3004), - [anon_sym_isize] = ACTIONS(3004), - [anon_sym_usize] = ACTIONS(3004), - [anon_sym_f32] = ACTIONS(3004), - [anon_sym_f64] = ACTIONS(3004), - [anon_sym_bool] = ACTIONS(3004), - [anon_sym_str] = ACTIONS(3004), - [anon_sym_char] = ACTIONS(3004), - [anon_sym_DASH] = ACTIONS(3002), - [anon_sym_BANG] = ACTIONS(3002), - [anon_sym_AMP] = ACTIONS(3002), - [anon_sym_PIPE] = ACTIONS(3002), - [anon_sym_LT] = ACTIONS(3002), - [anon_sym_DOT_DOT] = ACTIONS(3002), - [anon_sym_COLON_COLON] = ACTIONS(3002), - [anon_sym_POUND] = ACTIONS(3002), - [anon_sym_SQUOTE] = ACTIONS(3004), - [anon_sym_async] = ACTIONS(3004), - [anon_sym_break] = ACTIONS(3004), - [anon_sym_const] = ACTIONS(3004), - [anon_sym_continue] = ACTIONS(3004), - [anon_sym_default] = ACTIONS(3004), - [anon_sym_enum] = ACTIONS(3004), - [anon_sym_fn] = ACTIONS(3004), - [anon_sym_for] = ACTIONS(3004), - [anon_sym_gen] = ACTIONS(3004), - [anon_sym_if] = ACTIONS(3004), - [anon_sym_impl] = ACTIONS(3004), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_loop] = ACTIONS(3004), - [anon_sym_match] = ACTIONS(3004), - [anon_sym_mod] = ACTIONS(3004), - [anon_sym_pub] = ACTIONS(3004), - [anon_sym_return] = ACTIONS(3004), - [anon_sym_static] = ACTIONS(3004), - [anon_sym_struct] = ACTIONS(3004), - [anon_sym_trait] = ACTIONS(3004), - [anon_sym_type] = ACTIONS(3004), - [anon_sym_union] = ACTIONS(3004), - [anon_sym_unsafe] = ACTIONS(3004), - [anon_sym_use] = ACTIONS(3004), - [anon_sym_while] = ACTIONS(3004), - [anon_sym_extern] = ACTIONS(3004), - [anon_sym_yield] = ACTIONS(3004), - [anon_sym_move] = ACTIONS(3004), - [anon_sym_try] = ACTIONS(3004), - [sym_integer_literal] = ACTIONS(3002), - [aux_sym_string_literal_token1] = ACTIONS(3002), - [sym_char_literal] = ACTIONS(3002), - [anon_sym_true] = ACTIONS(3004), - [anon_sym_false] = ACTIONS(3004), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3004), - [sym_super] = ACTIONS(3004), - [sym_crate] = ACTIONS(3004), - [sym_metavariable] = ACTIONS(3002), - [sym__raw_string_literal_start] = ACTIONS(3002), - [sym_float_literal] = ACTIONS(3002), + [ts_builtin_sym_end] = ACTIONS(2829), + [sym_identifier] = ACTIONS(2831), + [anon_sym_SEMI] = ACTIONS(2829), + [anon_sym_macro_rules_BANG] = ACTIONS(2829), + [anon_sym_LPAREN] = ACTIONS(2829), + [anon_sym_LBRACK] = ACTIONS(2829), + [anon_sym_LBRACE] = ACTIONS(2829), + [anon_sym_RBRACE] = ACTIONS(2829), + [anon_sym_STAR] = ACTIONS(2829), + [anon_sym_u8] = ACTIONS(2831), + [anon_sym_i8] = ACTIONS(2831), + [anon_sym_u16] = ACTIONS(2831), + [anon_sym_i16] = ACTIONS(2831), + [anon_sym_u32] = ACTIONS(2831), + [anon_sym_i32] = ACTIONS(2831), + [anon_sym_u64] = ACTIONS(2831), + [anon_sym_i64] = ACTIONS(2831), + [anon_sym_u128] = ACTIONS(2831), + [anon_sym_i128] = ACTIONS(2831), + [anon_sym_isize] = ACTIONS(2831), + [anon_sym_usize] = ACTIONS(2831), + [anon_sym_f32] = ACTIONS(2831), + [anon_sym_f64] = ACTIONS(2831), + [anon_sym_bool] = ACTIONS(2831), + [anon_sym_str] = ACTIONS(2831), + [anon_sym_char] = ACTIONS(2831), + [anon_sym_DASH] = ACTIONS(2829), + [anon_sym_BANG] = ACTIONS(2829), + [anon_sym_AMP] = ACTIONS(2829), + [anon_sym_PIPE] = ACTIONS(2829), + [anon_sym_LT] = ACTIONS(2829), + [anon_sym_DOT_DOT] = ACTIONS(2829), + [anon_sym_COLON_COLON] = ACTIONS(2829), + [anon_sym_POUND] = ACTIONS(2829), + [anon_sym_SQUOTE] = ACTIONS(2831), + [anon_sym_async] = ACTIONS(2831), + [anon_sym_break] = ACTIONS(2831), + [anon_sym_const] = ACTIONS(2831), + [anon_sym_continue] = ACTIONS(2831), + [anon_sym_default] = ACTIONS(2831), + [anon_sym_enum] = ACTIONS(2831), + [anon_sym_fn] = ACTIONS(2831), + [anon_sym_for] = ACTIONS(2831), + [anon_sym_gen] = ACTIONS(2831), + [anon_sym_if] = ACTIONS(2831), + [anon_sym_impl] = ACTIONS(2831), + [anon_sym_let] = ACTIONS(2831), + [anon_sym_loop] = ACTIONS(2831), + [anon_sym_match] = ACTIONS(2831), + [anon_sym_mod] = ACTIONS(2831), + [anon_sym_pub] = ACTIONS(2831), + [anon_sym_return] = ACTIONS(2831), + [anon_sym_static] = ACTIONS(2831), + [anon_sym_struct] = ACTIONS(2831), + [anon_sym_trait] = ACTIONS(2831), + [anon_sym_type] = ACTIONS(2831), + [anon_sym_union] = ACTIONS(2831), + [anon_sym_unsafe] = ACTIONS(2831), + [anon_sym_use] = ACTIONS(2831), + [anon_sym_while] = ACTIONS(2831), + [anon_sym_extern] = ACTIONS(2831), + [anon_sym_yield] = ACTIONS(2831), + [anon_sym_move] = ACTIONS(2831), + [anon_sym_try] = ACTIONS(2831), + [sym_integer_literal] = ACTIONS(2829), + [aux_sym_string_literal_token1] = ACTIONS(2829), + [sym_char_literal] = ACTIONS(2829), + [anon_sym_true] = ACTIONS(2831), + [anon_sym_false] = ACTIONS(2831), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2831), + [sym_super] = ACTIONS(2831), + [sym_crate] = ACTIONS(2831), + [sym_metavariable] = ACTIONS(2829), + [sym__raw_string_literal_start] = ACTIONS(2829), + [sym_float_literal] = ACTIONS(2829), }, [STATE(773)] = { [sym_line_comment] = STATE(773), [sym_block_comment] = STATE(773), - [ts_builtin_sym_end] = ACTIONS(3006), - [sym_identifier] = ACTIONS(3008), - [anon_sym_SEMI] = ACTIONS(3006), - [anon_sym_macro_rules_BANG] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3006), - [anon_sym_LBRACE] = ACTIONS(3006), - [anon_sym_RBRACE] = ACTIONS(3006), - [anon_sym_STAR] = ACTIONS(3006), - [anon_sym_u8] = ACTIONS(3008), - [anon_sym_i8] = ACTIONS(3008), - [anon_sym_u16] = ACTIONS(3008), - [anon_sym_i16] = ACTIONS(3008), - [anon_sym_u32] = ACTIONS(3008), - [anon_sym_i32] = ACTIONS(3008), - [anon_sym_u64] = ACTIONS(3008), - [anon_sym_i64] = ACTIONS(3008), - [anon_sym_u128] = ACTIONS(3008), - [anon_sym_i128] = ACTIONS(3008), - [anon_sym_isize] = ACTIONS(3008), - [anon_sym_usize] = ACTIONS(3008), - [anon_sym_f32] = ACTIONS(3008), - [anon_sym_f64] = ACTIONS(3008), - [anon_sym_bool] = ACTIONS(3008), - [anon_sym_str] = ACTIONS(3008), - [anon_sym_char] = ACTIONS(3008), - [anon_sym_DASH] = ACTIONS(3006), - [anon_sym_BANG] = ACTIONS(3006), - [anon_sym_AMP] = ACTIONS(3006), - [anon_sym_PIPE] = ACTIONS(3006), - [anon_sym_LT] = ACTIONS(3006), - [anon_sym_DOT_DOT] = ACTIONS(3006), - [anon_sym_COLON_COLON] = ACTIONS(3006), - [anon_sym_POUND] = ACTIONS(3006), - [anon_sym_SQUOTE] = ACTIONS(3008), - [anon_sym_async] = ACTIONS(3008), - [anon_sym_break] = ACTIONS(3008), - [anon_sym_const] = ACTIONS(3008), - [anon_sym_continue] = ACTIONS(3008), - [anon_sym_default] = ACTIONS(3008), - [anon_sym_enum] = ACTIONS(3008), - [anon_sym_fn] = ACTIONS(3008), - [anon_sym_for] = ACTIONS(3008), - [anon_sym_gen] = ACTIONS(3008), - [anon_sym_if] = ACTIONS(3008), - [anon_sym_impl] = ACTIONS(3008), - [anon_sym_let] = ACTIONS(3008), - [anon_sym_loop] = ACTIONS(3008), - [anon_sym_match] = ACTIONS(3008), - [anon_sym_mod] = ACTIONS(3008), - [anon_sym_pub] = ACTIONS(3008), - [anon_sym_return] = ACTIONS(3008), - [anon_sym_static] = ACTIONS(3008), - [anon_sym_struct] = ACTIONS(3008), - [anon_sym_trait] = ACTIONS(3008), - [anon_sym_type] = ACTIONS(3008), - [anon_sym_union] = ACTIONS(3008), - [anon_sym_unsafe] = ACTIONS(3008), - [anon_sym_use] = ACTIONS(3008), - [anon_sym_while] = ACTIONS(3008), - [anon_sym_extern] = ACTIONS(3008), - [anon_sym_yield] = ACTIONS(3008), - [anon_sym_move] = ACTIONS(3008), - [anon_sym_try] = ACTIONS(3008), - [sym_integer_literal] = ACTIONS(3006), - [aux_sym_string_literal_token1] = ACTIONS(3006), - [sym_char_literal] = ACTIONS(3006), - [anon_sym_true] = ACTIONS(3008), - [anon_sym_false] = ACTIONS(3008), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3008), - [sym_super] = ACTIONS(3008), - [sym_crate] = ACTIONS(3008), - [sym_metavariable] = ACTIONS(3006), - [sym__raw_string_literal_start] = ACTIONS(3006), - [sym_float_literal] = ACTIONS(3006), + [ts_builtin_sym_end] = ACTIONS(2833), + [sym_identifier] = ACTIONS(2835), + [anon_sym_SEMI] = ACTIONS(2833), + [anon_sym_macro_rules_BANG] = ACTIONS(2833), + [anon_sym_LPAREN] = ACTIONS(2833), + [anon_sym_LBRACK] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2833), + [anon_sym_RBRACE] = ACTIONS(2833), + [anon_sym_STAR] = ACTIONS(2833), + [anon_sym_u8] = ACTIONS(2835), + [anon_sym_i8] = ACTIONS(2835), + [anon_sym_u16] = ACTIONS(2835), + [anon_sym_i16] = ACTIONS(2835), + [anon_sym_u32] = ACTIONS(2835), + [anon_sym_i32] = ACTIONS(2835), + [anon_sym_u64] = ACTIONS(2835), + [anon_sym_i64] = ACTIONS(2835), + [anon_sym_u128] = ACTIONS(2835), + [anon_sym_i128] = ACTIONS(2835), + [anon_sym_isize] = ACTIONS(2835), + [anon_sym_usize] = ACTIONS(2835), + [anon_sym_f32] = ACTIONS(2835), + [anon_sym_f64] = ACTIONS(2835), + [anon_sym_bool] = ACTIONS(2835), + [anon_sym_str] = ACTIONS(2835), + [anon_sym_char] = ACTIONS(2835), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_BANG] = ACTIONS(2833), + [anon_sym_AMP] = ACTIONS(2833), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_LT] = ACTIONS(2833), + [anon_sym_DOT_DOT] = ACTIONS(2833), + [anon_sym_COLON_COLON] = ACTIONS(2833), + [anon_sym_POUND] = ACTIONS(2833), + [anon_sym_SQUOTE] = ACTIONS(2835), + [anon_sym_async] = ACTIONS(2835), + [anon_sym_break] = ACTIONS(2835), + [anon_sym_const] = ACTIONS(2835), + [anon_sym_continue] = ACTIONS(2835), + [anon_sym_default] = ACTIONS(2835), + [anon_sym_enum] = ACTIONS(2835), + [anon_sym_fn] = ACTIONS(2835), + [anon_sym_for] = ACTIONS(2835), + [anon_sym_gen] = ACTIONS(2835), + [anon_sym_if] = ACTIONS(2835), + [anon_sym_impl] = ACTIONS(2835), + [anon_sym_let] = ACTIONS(2835), + [anon_sym_loop] = ACTIONS(2835), + [anon_sym_match] = ACTIONS(2835), + [anon_sym_mod] = ACTIONS(2835), + [anon_sym_pub] = ACTIONS(2835), + [anon_sym_return] = ACTIONS(2835), + [anon_sym_static] = ACTIONS(2835), + [anon_sym_struct] = ACTIONS(2835), + [anon_sym_trait] = ACTIONS(2835), + [anon_sym_type] = ACTIONS(2835), + [anon_sym_union] = ACTIONS(2835), + [anon_sym_unsafe] = ACTIONS(2835), + [anon_sym_use] = ACTIONS(2835), + [anon_sym_while] = ACTIONS(2835), + [anon_sym_extern] = ACTIONS(2835), + [anon_sym_yield] = ACTIONS(2835), + [anon_sym_move] = ACTIONS(2835), + [anon_sym_try] = ACTIONS(2835), + [sym_integer_literal] = ACTIONS(2833), + [aux_sym_string_literal_token1] = ACTIONS(2833), + [sym_char_literal] = ACTIONS(2833), + [anon_sym_true] = ACTIONS(2835), + [anon_sym_false] = ACTIONS(2835), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2835), + [sym_super] = ACTIONS(2835), + [sym_crate] = ACTIONS(2835), + [sym_metavariable] = ACTIONS(2833), + [sym__raw_string_literal_start] = ACTIONS(2833), + [sym_float_literal] = ACTIONS(2833), }, [STATE(774)] = { [sym_line_comment] = STATE(774), [sym_block_comment] = STATE(774), - [ts_builtin_sym_end] = ACTIONS(3010), - [sym_identifier] = ACTIONS(3012), - [anon_sym_SEMI] = ACTIONS(3010), - [anon_sym_macro_rules_BANG] = ACTIONS(3010), - [anon_sym_LPAREN] = ACTIONS(3010), - [anon_sym_LBRACK] = ACTIONS(3010), - [anon_sym_LBRACE] = ACTIONS(3010), - [anon_sym_RBRACE] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(3010), - [anon_sym_u8] = ACTIONS(3012), - [anon_sym_i8] = ACTIONS(3012), - [anon_sym_u16] = ACTIONS(3012), - [anon_sym_i16] = ACTIONS(3012), - [anon_sym_u32] = ACTIONS(3012), - [anon_sym_i32] = ACTIONS(3012), - [anon_sym_u64] = ACTIONS(3012), - [anon_sym_i64] = ACTIONS(3012), - [anon_sym_u128] = ACTIONS(3012), - [anon_sym_i128] = ACTIONS(3012), - [anon_sym_isize] = ACTIONS(3012), - [anon_sym_usize] = ACTIONS(3012), - [anon_sym_f32] = ACTIONS(3012), - [anon_sym_f64] = ACTIONS(3012), - [anon_sym_bool] = ACTIONS(3012), - [anon_sym_str] = ACTIONS(3012), - [anon_sym_char] = ACTIONS(3012), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_BANG] = ACTIONS(3010), - [anon_sym_AMP] = ACTIONS(3010), - [anon_sym_PIPE] = ACTIONS(3010), - [anon_sym_LT] = ACTIONS(3010), - [anon_sym_DOT_DOT] = ACTIONS(3010), - [anon_sym_COLON_COLON] = ACTIONS(3010), - [anon_sym_POUND] = ACTIONS(3010), - [anon_sym_SQUOTE] = ACTIONS(3012), - [anon_sym_async] = ACTIONS(3012), - [anon_sym_break] = ACTIONS(3012), - [anon_sym_const] = ACTIONS(3012), - [anon_sym_continue] = ACTIONS(3012), - [anon_sym_default] = ACTIONS(3012), - [anon_sym_enum] = ACTIONS(3012), - [anon_sym_fn] = ACTIONS(3012), - [anon_sym_for] = ACTIONS(3012), - [anon_sym_gen] = ACTIONS(3012), - [anon_sym_if] = ACTIONS(3012), - [anon_sym_impl] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [anon_sym_loop] = ACTIONS(3012), - [anon_sym_match] = ACTIONS(3012), - [anon_sym_mod] = ACTIONS(3012), - [anon_sym_pub] = ACTIONS(3012), - [anon_sym_return] = ACTIONS(3012), - [anon_sym_static] = ACTIONS(3012), - [anon_sym_struct] = ACTIONS(3012), - [anon_sym_trait] = ACTIONS(3012), - [anon_sym_type] = ACTIONS(3012), - [anon_sym_union] = ACTIONS(3012), - [anon_sym_unsafe] = ACTIONS(3012), - [anon_sym_use] = ACTIONS(3012), - [anon_sym_while] = ACTIONS(3012), - [anon_sym_extern] = ACTIONS(3012), - [anon_sym_yield] = ACTIONS(3012), - [anon_sym_move] = ACTIONS(3012), - [anon_sym_try] = ACTIONS(3012), - [sym_integer_literal] = ACTIONS(3010), - [aux_sym_string_literal_token1] = ACTIONS(3010), - [sym_char_literal] = ACTIONS(3010), - [anon_sym_true] = ACTIONS(3012), - [anon_sym_false] = ACTIONS(3012), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3012), - [sym_super] = ACTIONS(3012), - [sym_crate] = ACTIONS(3012), - [sym_metavariable] = ACTIONS(3010), - [sym__raw_string_literal_start] = ACTIONS(3010), - [sym_float_literal] = ACTIONS(3010), + [ts_builtin_sym_end] = ACTIONS(2837), + [sym_identifier] = ACTIONS(2839), + [anon_sym_SEMI] = ACTIONS(2837), + [anon_sym_macro_rules_BANG] = ACTIONS(2837), + [anon_sym_LPAREN] = ACTIONS(2837), + [anon_sym_LBRACK] = ACTIONS(2837), + [anon_sym_LBRACE] = ACTIONS(2837), + [anon_sym_RBRACE] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(2837), + [anon_sym_u8] = ACTIONS(2839), + [anon_sym_i8] = ACTIONS(2839), + [anon_sym_u16] = ACTIONS(2839), + [anon_sym_i16] = ACTIONS(2839), + [anon_sym_u32] = ACTIONS(2839), + [anon_sym_i32] = ACTIONS(2839), + [anon_sym_u64] = ACTIONS(2839), + [anon_sym_i64] = ACTIONS(2839), + [anon_sym_u128] = ACTIONS(2839), + [anon_sym_i128] = ACTIONS(2839), + [anon_sym_isize] = ACTIONS(2839), + [anon_sym_usize] = ACTIONS(2839), + [anon_sym_f32] = ACTIONS(2839), + [anon_sym_f64] = ACTIONS(2839), + [anon_sym_bool] = ACTIONS(2839), + [anon_sym_str] = ACTIONS(2839), + [anon_sym_char] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_BANG] = ACTIONS(2837), + [anon_sym_AMP] = ACTIONS(2837), + [anon_sym_PIPE] = ACTIONS(2837), + [anon_sym_LT] = ACTIONS(2837), + [anon_sym_DOT_DOT] = ACTIONS(2837), + [anon_sym_COLON_COLON] = ACTIONS(2837), + [anon_sym_POUND] = ACTIONS(2837), + [anon_sym_SQUOTE] = ACTIONS(2839), + [anon_sym_async] = ACTIONS(2839), + [anon_sym_break] = ACTIONS(2839), + [anon_sym_const] = ACTIONS(2839), + [anon_sym_continue] = ACTIONS(2839), + [anon_sym_default] = ACTIONS(2839), + [anon_sym_enum] = ACTIONS(2839), + [anon_sym_fn] = ACTIONS(2839), + [anon_sym_for] = ACTIONS(2839), + [anon_sym_gen] = ACTIONS(2839), + [anon_sym_if] = ACTIONS(2839), + [anon_sym_impl] = ACTIONS(2839), + [anon_sym_let] = ACTIONS(2839), + [anon_sym_loop] = ACTIONS(2839), + [anon_sym_match] = ACTIONS(2839), + [anon_sym_mod] = ACTIONS(2839), + [anon_sym_pub] = ACTIONS(2839), + [anon_sym_return] = ACTIONS(2839), + [anon_sym_static] = ACTIONS(2839), + [anon_sym_struct] = ACTIONS(2839), + [anon_sym_trait] = ACTIONS(2839), + [anon_sym_type] = ACTIONS(2839), + [anon_sym_union] = ACTIONS(2839), + [anon_sym_unsafe] = ACTIONS(2839), + [anon_sym_use] = ACTIONS(2839), + [anon_sym_while] = ACTIONS(2839), + [anon_sym_extern] = ACTIONS(2839), + [anon_sym_yield] = ACTIONS(2839), + [anon_sym_move] = ACTIONS(2839), + [anon_sym_try] = ACTIONS(2839), + [sym_integer_literal] = ACTIONS(2837), + [aux_sym_string_literal_token1] = ACTIONS(2837), + [sym_char_literal] = ACTIONS(2837), + [anon_sym_true] = ACTIONS(2839), + [anon_sym_false] = ACTIONS(2839), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2839), + [sym_super] = ACTIONS(2839), + [sym_crate] = ACTIONS(2839), + [sym_metavariable] = ACTIONS(2837), + [sym__raw_string_literal_start] = ACTIONS(2837), + [sym_float_literal] = ACTIONS(2837), }, [STATE(775)] = { [sym_line_comment] = STATE(775), [sym_block_comment] = STATE(775), - [ts_builtin_sym_end] = ACTIONS(3014), - [sym_identifier] = ACTIONS(3016), - [anon_sym_SEMI] = ACTIONS(3014), - [anon_sym_macro_rules_BANG] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_LBRACK] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3014), - [anon_sym_RBRACE] = ACTIONS(3014), - [anon_sym_STAR] = ACTIONS(3014), - [anon_sym_u8] = ACTIONS(3016), - [anon_sym_i8] = ACTIONS(3016), - [anon_sym_u16] = ACTIONS(3016), - [anon_sym_i16] = ACTIONS(3016), - [anon_sym_u32] = ACTIONS(3016), - [anon_sym_i32] = ACTIONS(3016), - [anon_sym_u64] = ACTIONS(3016), - [anon_sym_i64] = ACTIONS(3016), - [anon_sym_u128] = ACTIONS(3016), - [anon_sym_i128] = ACTIONS(3016), - [anon_sym_isize] = ACTIONS(3016), - [anon_sym_usize] = ACTIONS(3016), - [anon_sym_f32] = ACTIONS(3016), - [anon_sym_f64] = ACTIONS(3016), - [anon_sym_bool] = ACTIONS(3016), - [anon_sym_str] = ACTIONS(3016), - [anon_sym_char] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3014), - [anon_sym_BANG] = ACTIONS(3014), - [anon_sym_AMP] = ACTIONS(3014), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_LT] = ACTIONS(3014), - [anon_sym_DOT_DOT] = ACTIONS(3014), - [anon_sym_COLON_COLON] = ACTIONS(3014), - [anon_sym_POUND] = ACTIONS(3014), - [anon_sym_SQUOTE] = ACTIONS(3016), - [anon_sym_async] = ACTIONS(3016), - [anon_sym_break] = ACTIONS(3016), - [anon_sym_const] = ACTIONS(3016), - [anon_sym_continue] = ACTIONS(3016), - [anon_sym_default] = ACTIONS(3016), - [anon_sym_enum] = ACTIONS(3016), - [anon_sym_fn] = ACTIONS(3016), - [anon_sym_for] = ACTIONS(3016), - [anon_sym_gen] = ACTIONS(3016), - [anon_sym_if] = ACTIONS(3016), - [anon_sym_impl] = ACTIONS(3016), - [anon_sym_let] = ACTIONS(3016), - [anon_sym_loop] = ACTIONS(3016), - [anon_sym_match] = ACTIONS(3016), - [anon_sym_mod] = ACTIONS(3016), - [anon_sym_pub] = ACTIONS(3016), - [anon_sym_return] = ACTIONS(3016), - [anon_sym_static] = ACTIONS(3016), - [anon_sym_struct] = ACTIONS(3016), - [anon_sym_trait] = ACTIONS(3016), - [anon_sym_type] = ACTIONS(3016), - [anon_sym_union] = ACTIONS(3016), - [anon_sym_unsafe] = ACTIONS(3016), - [anon_sym_use] = ACTIONS(3016), - [anon_sym_while] = ACTIONS(3016), - [anon_sym_extern] = ACTIONS(3016), - [anon_sym_yield] = ACTIONS(3016), - [anon_sym_move] = ACTIONS(3016), - [anon_sym_try] = ACTIONS(3016), - [sym_integer_literal] = ACTIONS(3014), - [aux_sym_string_literal_token1] = ACTIONS(3014), - [sym_char_literal] = ACTIONS(3014), - [anon_sym_true] = ACTIONS(3016), - [anon_sym_false] = ACTIONS(3016), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3016), - [sym_super] = ACTIONS(3016), - [sym_crate] = ACTIONS(3016), - [sym_metavariable] = ACTIONS(3014), - [sym__raw_string_literal_start] = ACTIONS(3014), - [sym_float_literal] = ACTIONS(3014), + [ts_builtin_sym_end] = ACTIONS(2841), + [sym_identifier] = ACTIONS(2843), + [anon_sym_SEMI] = ACTIONS(2841), + [anon_sym_macro_rules_BANG] = ACTIONS(2841), + [anon_sym_LPAREN] = ACTIONS(2841), + [anon_sym_LBRACK] = ACTIONS(2841), + [anon_sym_LBRACE] = ACTIONS(2841), + [anon_sym_RBRACE] = ACTIONS(2841), + [anon_sym_STAR] = ACTIONS(2841), + [anon_sym_u8] = ACTIONS(2843), + [anon_sym_i8] = ACTIONS(2843), + [anon_sym_u16] = ACTIONS(2843), + [anon_sym_i16] = ACTIONS(2843), + [anon_sym_u32] = ACTIONS(2843), + [anon_sym_i32] = ACTIONS(2843), + [anon_sym_u64] = ACTIONS(2843), + [anon_sym_i64] = ACTIONS(2843), + [anon_sym_u128] = ACTIONS(2843), + [anon_sym_i128] = ACTIONS(2843), + [anon_sym_isize] = ACTIONS(2843), + [anon_sym_usize] = ACTIONS(2843), + [anon_sym_f32] = ACTIONS(2843), + [anon_sym_f64] = ACTIONS(2843), + [anon_sym_bool] = ACTIONS(2843), + [anon_sym_str] = ACTIONS(2843), + [anon_sym_char] = ACTIONS(2843), + [anon_sym_DASH] = ACTIONS(2841), + [anon_sym_BANG] = ACTIONS(2841), + [anon_sym_AMP] = ACTIONS(2841), + [anon_sym_PIPE] = ACTIONS(2841), + [anon_sym_LT] = ACTIONS(2841), + [anon_sym_DOT_DOT] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2841), + [anon_sym_POUND] = ACTIONS(2841), + [anon_sym_SQUOTE] = ACTIONS(2843), + [anon_sym_async] = ACTIONS(2843), + [anon_sym_break] = ACTIONS(2843), + [anon_sym_const] = ACTIONS(2843), + [anon_sym_continue] = ACTIONS(2843), + [anon_sym_default] = ACTIONS(2843), + [anon_sym_enum] = ACTIONS(2843), + [anon_sym_fn] = ACTIONS(2843), + [anon_sym_for] = ACTIONS(2843), + [anon_sym_gen] = ACTIONS(2843), + [anon_sym_if] = ACTIONS(2843), + [anon_sym_impl] = ACTIONS(2843), + [anon_sym_let] = ACTIONS(2843), + [anon_sym_loop] = ACTIONS(2843), + [anon_sym_match] = ACTIONS(2843), + [anon_sym_mod] = ACTIONS(2843), + [anon_sym_pub] = ACTIONS(2843), + [anon_sym_return] = ACTIONS(2843), + [anon_sym_static] = ACTIONS(2843), + [anon_sym_struct] = ACTIONS(2843), + [anon_sym_trait] = ACTIONS(2843), + [anon_sym_type] = ACTIONS(2843), + [anon_sym_union] = ACTIONS(2843), + [anon_sym_unsafe] = ACTIONS(2843), + [anon_sym_use] = ACTIONS(2843), + [anon_sym_while] = ACTIONS(2843), + [anon_sym_extern] = ACTIONS(2843), + [anon_sym_yield] = ACTIONS(2843), + [anon_sym_move] = ACTIONS(2843), + [anon_sym_try] = ACTIONS(2843), + [sym_integer_literal] = ACTIONS(2841), + [aux_sym_string_literal_token1] = ACTIONS(2841), + [sym_char_literal] = ACTIONS(2841), + [anon_sym_true] = ACTIONS(2843), + [anon_sym_false] = ACTIONS(2843), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2843), + [sym_super] = ACTIONS(2843), + [sym_crate] = ACTIONS(2843), + [sym_metavariable] = ACTIONS(2841), + [sym__raw_string_literal_start] = ACTIONS(2841), + [sym_float_literal] = ACTIONS(2841), }, [STATE(776)] = { [sym_line_comment] = STATE(776), [sym_block_comment] = STATE(776), - [ts_builtin_sym_end] = ACTIONS(3018), - [sym_identifier] = ACTIONS(3020), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_macro_rules_BANG] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3018), - [anon_sym_LBRACE] = ACTIONS(3018), - [anon_sym_RBRACE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3018), - [anon_sym_u8] = ACTIONS(3020), - [anon_sym_i8] = ACTIONS(3020), - [anon_sym_u16] = ACTIONS(3020), - [anon_sym_i16] = ACTIONS(3020), - [anon_sym_u32] = ACTIONS(3020), - [anon_sym_i32] = ACTIONS(3020), - [anon_sym_u64] = ACTIONS(3020), - [anon_sym_i64] = ACTIONS(3020), - [anon_sym_u128] = ACTIONS(3020), - [anon_sym_i128] = ACTIONS(3020), - [anon_sym_isize] = ACTIONS(3020), - [anon_sym_usize] = ACTIONS(3020), - [anon_sym_f32] = ACTIONS(3020), - [anon_sym_f64] = ACTIONS(3020), - [anon_sym_bool] = ACTIONS(3020), - [anon_sym_str] = ACTIONS(3020), - [anon_sym_char] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3018), - [anon_sym_BANG] = ACTIONS(3018), - [anon_sym_AMP] = ACTIONS(3018), - [anon_sym_PIPE] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3018), - [anon_sym_DOT_DOT] = ACTIONS(3018), - [anon_sym_COLON_COLON] = ACTIONS(3018), - [anon_sym_POUND] = ACTIONS(3018), - [anon_sym_SQUOTE] = ACTIONS(3020), - [anon_sym_async] = ACTIONS(3020), - [anon_sym_break] = ACTIONS(3020), - [anon_sym_const] = ACTIONS(3020), - [anon_sym_continue] = ACTIONS(3020), - [anon_sym_default] = ACTIONS(3020), - [anon_sym_enum] = ACTIONS(3020), - [anon_sym_fn] = ACTIONS(3020), - [anon_sym_for] = ACTIONS(3020), - [anon_sym_gen] = ACTIONS(3020), - [anon_sym_if] = ACTIONS(3020), - [anon_sym_impl] = ACTIONS(3020), - [anon_sym_let] = ACTIONS(3020), - [anon_sym_loop] = ACTIONS(3020), - [anon_sym_match] = ACTIONS(3020), - [anon_sym_mod] = ACTIONS(3020), - [anon_sym_pub] = ACTIONS(3020), - [anon_sym_return] = ACTIONS(3020), - [anon_sym_static] = ACTIONS(3020), - [anon_sym_struct] = ACTIONS(3020), - [anon_sym_trait] = ACTIONS(3020), - [anon_sym_type] = ACTIONS(3020), - [anon_sym_union] = ACTIONS(3020), - [anon_sym_unsafe] = ACTIONS(3020), - [anon_sym_use] = ACTIONS(3020), - [anon_sym_while] = ACTIONS(3020), - [anon_sym_extern] = ACTIONS(3020), - [anon_sym_yield] = ACTIONS(3020), - [anon_sym_move] = ACTIONS(3020), - [anon_sym_try] = ACTIONS(3020), - [sym_integer_literal] = ACTIONS(3018), - [aux_sym_string_literal_token1] = ACTIONS(3018), - [sym_char_literal] = ACTIONS(3018), - [anon_sym_true] = ACTIONS(3020), - [anon_sym_false] = ACTIONS(3020), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3020), - [sym_super] = ACTIONS(3020), - [sym_crate] = ACTIONS(3020), - [sym_metavariable] = ACTIONS(3018), - [sym__raw_string_literal_start] = ACTIONS(3018), - [sym_float_literal] = ACTIONS(3018), + [ts_builtin_sym_end] = ACTIONS(2845), + [sym_identifier] = ACTIONS(2847), + [anon_sym_SEMI] = ACTIONS(2845), + [anon_sym_macro_rules_BANG] = ACTIONS(2845), + [anon_sym_LPAREN] = ACTIONS(2845), + [anon_sym_LBRACK] = ACTIONS(2845), + [anon_sym_LBRACE] = ACTIONS(2845), + [anon_sym_RBRACE] = ACTIONS(2845), + [anon_sym_STAR] = ACTIONS(2845), + [anon_sym_u8] = ACTIONS(2847), + [anon_sym_i8] = ACTIONS(2847), + [anon_sym_u16] = ACTIONS(2847), + [anon_sym_i16] = ACTIONS(2847), + [anon_sym_u32] = ACTIONS(2847), + [anon_sym_i32] = ACTIONS(2847), + [anon_sym_u64] = ACTIONS(2847), + [anon_sym_i64] = ACTIONS(2847), + [anon_sym_u128] = ACTIONS(2847), + [anon_sym_i128] = ACTIONS(2847), + [anon_sym_isize] = ACTIONS(2847), + [anon_sym_usize] = ACTIONS(2847), + [anon_sym_f32] = ACTIONS(2847), + [anon_sym_f64] = ACTIONS(2847), + [anon_sym_bool] = ACTIONS(2847), + [anon_sym_str] = ACTIONS(2847), + [anon_sym_char] = ACTIONS(2847), + [anon_sym_DASH] = ACTIONS(2845), + [anon_sym_BANG] = ACTIONS(2845), + [anon_sym_AMP] = ACTIONS(2845), + [anon_sym_PIPE] = ACTIONS(2845), + [anon_sym_LT] = ACTIONS(2845), + [anon_sym_DOT_DOT] = ACTIONS(2845), + [anon_sym_COLON_COLON] = ACTIONS(2845), + [anon_sym_POUND] = ACTIONS(2845), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_async] = ACTIONS(2847), + [anon_sym_break] = ACTIONS(2847), + [anon_sym_const] = ACTIONS(2847), + [anon_sym_continue] = ACTIONS(2847), + [anon_sym_default] = ACTIONS(2847), + [anon_sym_enum] = ACTIONS(2847), + [anon_sym_fn] = ACTIONS(2847), + [anon_sym_for] = ACTIONS(2847), + [anon_sym_gen] = ACTIONS(2847), + [anon_sym_if] = ACTIONS(2847), + [anon_sym_impl] = ACTIONS(2847), + [anon_sym_let] = ACTIONS(2847), + [anon_sym_loop] = ACTIONS(2847), + [anon_sym_match] = ACTIONS(2847), + [anon_sym_mod] = ACTIONS(2847), + [anon_sym_pub] = ACTIONS(2847), + [anon_sym_return] = ACTIONS(2847), + [anon_sym_static] = ACTIONS(2847), + [anon_sym_struct] = ACTIONS(2847), + [anon_sym_trait] = ACTIONS(2847), + [anon_sym_type] = ACTIONS(2847), + [anon_sym_union] = ACTIONS(2847), + [anon_sym_unsafe] = ACTIONS(2847), + [anon_sym_use] = ACTIONS(2847), + [anon_sym_while] = ACTIONS(2847), + [anon_sym_extern] = ACTIONS(2847), + [anon_sym_yield] = ACTIONS(2847), + [anon_sym_move] = ACTIONS(2847), + [anon_sym_try] = ACTIONS(2847), + [sym_integer_literal] = ACTIONS(2845), + [aux_sym_string_literal_token1] = ACTIONS(2845), + [sym_char_literal] = ACTIONS(2845), + [anon_sym_true] = ACTIONS(2847), + [anon_sym_false] = ACTIONS(2847), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2847), + [sym_super] = ACTIONS(2847), + [sym_crate] = ACTIONS(2847), + [sym_metavariable] = ACTIONS(2845), + [sym__raw_string_literal_start] = ACTIONS(2845), + [sym_float_literal] = ACTIONS(2845), }, [STATE(777)] = { [sym_line_comment] = STATE(777), [sym_block_comment] = STATE(777), - [ts_builtin_sym_end] = ACTIONS(3022), - [sym_identifier] = ACTIONS(3024), - [anon_sym_SEMI] = ACTIONS(3022), - [anon_sym_macro_rules_BANG] = ACTIONS(3022), - [anon_sym_LPAREN] = ACTIONS(3022), - [anon_sym_LBRACK] = ACTIONS(3022), - [anon_sym_LBRACE] = ACTIONS(3022), - [anon_sym_RBRACE] = ACTIONS(3022), - [anon_sym_STAR] = ACTIONS(3022), - [anon_sym_u8] = ACTIONS(3024), - [anon_sym_i8] = ACTIONS(3024), - [anon_sym_u16] = ACTIONS(3024), - [anon_sym_i16] = ACTIONS(3024), - [anon_sym_u32] = ACTIONS(3024), - [anon_sym_i32] = ACTIONS(3024), - [anon_sym_u64] = ACTIONS(3024), - [anon_sym_i64] = ACTIONS(3024), - [anon_sym_u128] = ACTIONS(3024), - [anon_sym_i128] = ACTIONS(3024), - [anon_sym_isize] = ACTIONS(3024), - [anon_sym_usize] = ACTIONS(3024), - [anon_sym_f32] = ACTIONS(3024), - [anon_sym_f64] = ACTIONS(3024), - [anon_sym_bool] = ACTIONS(3024), - [anon_sym_str] = ACTIONS(3024), - [anon_sym_char] = ACTIONS(3024), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_BANG] = ACTIONS(3022), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym_PIPE] = ACTIONS(3022), - [anon_sym_LT] = ACTIONS(3022), - [anon_sym_DOT_DOT] = ACTIONS(3022), - [anon_sym_COLON_COLON] = ACTIONS(3022), - [anon_sym_POUND] = ACTIONS(3022), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_async] = ACTIONS(3024), - [anon_sym_break] = ACTIONS(3024), - [anon_sym_const] = ACTIONS(3024), - [anon_sym_continue] = ACTIONS(3024), - [anon_sym_default] = ACTIONS(3024), - [anon_sym_enum] = ACTIONS(3024), - [anon_sym_fn] = ACTIONS(3024), - [anon_sym_for] = ACTIONS(3024), - [anon_sym_gen] = ACTIONS(3024), - [anon_sym_if] = ACTIONS(3024), - [anon_sym_impl] = ACTIONS(3024), - [anon_sym_let] = ACTIONS(3024), - [anon_sym_loop] = ACTIONS(3024), - [anon_sym_match] = ACTIONS(3024), - [anon_sym_mod] = ACTIONS(3024), - [anon_sym_pub] = ACTIONS(3024), - [anon_sym_return] = ACTIONS(3024), - [anon_sym_static] = ACTIONS(3024), - [anon_sym_struct] = ACTIONS(3024), - [anon_sym_trait] = ACTIONS(3024), - [anon_sym_type] = ACTIONS(3024), - [anon_sym_union] = ACTIONS(3024), - [anon_sym_unsafe] = ACTIONS(3024), - [anon_sym_use] = ACTIONS(3024), - [anon_sym_while] = ACTIONS(3024), - [anon_sym_extern] = ACTIONS(3024), - [anon_sym_yield] = ACTIONS(3024), - [anon_sym_move] = ACTIONS(3024), - [anon_sym_try] = ACTIONS(3024), - [sym_integer_literal] = ACTIONS(3022), - [aux_sym_string_literal_token1] = ACTIONS(3022), - [sym_char_literal] = ACTIONS(3022), - [anon_sym_true] = ACTIONS(3024), - [anon_sym_false] = ACTIONS(3024), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3024), - [sym_super] = ACTIONS(3024), - [sym_crate] = ACTIONS(3024), - [sym_metavariable] = ACTIONS(3022), - [sym__raw_string_literal_start] = ACTIONS(3022), - [sym_float_literal] = ACTIONS(3022), + [ts_builtin_sym_end] = ACTIONS(2849), + [sym_identifier] = ACTIONS(2851), + [anon_sym_SEMI] = ACTIONS(2849), + [anon_sym_macro_rules_BANG] = ACTIONS(2849), + [anon_sym_LPAREN] = ACTIONS(2849), + [anon_sym_LBRACK] = ACTIONS(2849), + [anon_sym_LBRACE] = ACTIONS(2849), + [anon_sym_RBRACE] = ACTIONS(2849), + [anon_sym_STAR] = ACTIONS(2849), + [anon_sym_u8] = ACTIONS(2851), + [anon_sym_i8] = ACTIONS(2851), + [anon_sym_u16] = ACTIONS(2851), + [anon_sym_i16] = ACTIONS(2851), + [anon_sym_u32] = ACTIONS(2851), + [anon_sym_i32] = ACTIONS(2851), + [anon_sym_u64] = ACTIONS(2851), + [anon_sym_i64] = ACTIONS(2851), + [anon_sym_u128] = ACTIONS(2851), + [anon_sym_i128] = ACTIONS(2851), + [anon_sym_isize] = ACTIONS(2851), + [anon_sym_usize] = ACTIONS(2851), + [anon_sym_f32] = ACTIONS(2851), + [anon_sym_f64] = ACTIONS(2851), + [anon_sym_bool] = ACTIONS(2851), + [anon_sym_str] = ACTIONS(2851), + [anon_sym_char] = ACTIONS(2851), + [anon_sym_DASH] = ACTIONS(2849), + [anon_sym_BANG] = ACTIONS(2849), + [anon_sym_AMP] = ACTIONS(2849), + [anon_sym_PIPE] = ACTIONS(2849), + [anon_sym_LT] = ACTIONS(2849), + [anon_sym_DOT_DOT] = ACTIONS(2849), + [anon_sym_COLON_COLON] = ACTIONS(2849), + [anon_sym_POUND] = ACTIONS(2849), + [anon_sym_SQUOTE] = ACTIONS(2851), + [anon_sym_async] = ACTIONS(2851), + [anon_sym_break] = ACTIONS(2851), + [anon_sym_const] = ACTIONS(2851), + [anon_sym_continue] = ACTIONS(2851), + [anon_sym_default] = ACTIONS(2851), + [anon_sym_enum] = ACTIONS(2851), + [anon_sym_fn] = ACTIONS(2851), + [anon_sym_for] = ACTIONS(2851), + [anon_sym_gen] = ACTIONS(2851), + [anon_sym_if] = ACTIONS(2851), + [anon_sym_impl] = ACTIONS(2851), + [anon_sym_let] = ACTIONS(2851), + [anon_sym_loop] = ACTIONS(2851), + [anon_sym_match] = ACTIONS(2851), + [anon_sym_mod] = ACTIONS(2851), + [anon_sym_pub] = ACTIONS(2851), + [anon_sym_return] = ACTIONS(2851), + [anon_sym_static] = ACTIONS(2851), + [anon_sym_struct] = ACTIONS(2851), + [anon_sym_trait] = ACTIONS(2851), + [anon_sym_type] = ACTIONS(2851), + [anon_sym_union] = ACTIONS(2851), + [anon_sym_unsafe] = ACTIONS(2851), + [anon_sym_use] = ACTIONS(2851), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_extern] = ACTIONS(2851), + [anon_sym_yield] = ACTIONS(2851), + [anon_sym_move] = ACTIONS(2851), + [anon_sym_try] = ACTIONS(2851), + [sym_integer_literal] = ACTIONS(2849), + [aux_sym_string_literal_token1] = ACTIONS(2849), + [sym_char_literal] = ACTIONS(2849), + [anon_sym_true] = ACTIONS(2851), + [anon_sym_false] = ACTIONS(2851), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2851), + [sym_super] = ACTIONS(2851), + [sym_crate] = ACTIONS(2851), + [sym_metavariable] = ACTIONS(2849), + [sym__raw_string_literal_start] = ACTIONS(2849), + [sym_float_literal] = ACTIONS(2849), }, [STATE(778)] = { [sym_line_comment] = STATE(778), [sym_block_comment] = STATE(778), - [ts_builtin_sym_end] = ACTIONS(3026), - [sym_identifier] = ACTIONS(3028), - [anon_sym_SEMI] = ACTIONS(3026), - [anon_sym_macro_rules_BANG] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_RBRACE] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3026), - [anon_sym_u8] = ACTIONS(3028), - [anon_sym_i8] = ACTIONS(3028), - [anon_sym_u16] = ACTIONS(3028), - [anon_sym_i16] = ACTIONS(3028), - [anon_sym_u32] = ACTIONS(3028), - [anon_sym_i32] = ACTIONS(3028), - [anon_sym_u64] = ACTIONS(3028), - [anon_sym_i64] = ACTIONS(3028), - [anon_sym_u128] = ACTIONS(3028), - [anon_sym_i128] = ACTIONS(3028), - [anon_sym_isize] = ACTIONS(3028), - [anon_sym_usize] = ACTIONS(3028), - [anon_sym_f32] = ACTIONS(3028), - [anon_sym_f64] = ACTIONS(3028), - [anon_sym_bool] = ACTIONS(3028), - [anon_sym_str] = ACTIONS(3028), - [anon_sym_char] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_BANG] = ACTIONS(3026), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_PIPE] = ACTIONS(3026), - [anon_sym_LT] = ACTIONS(3026), - [anon_sym_DOT_DOT] = ACTIONS(3026), - [anon_sym_COLON_COLON] = ACTIONS(3026), - [anon_sym_POUND] = ACTIONS(3026), - [anon_sym_SQUOTE] = ACTIONS(3028), - [anon_sym_async] = ACTIONS(3028), - [anon_sym_break] = ACTIONS(3028), - [anon_sym_const] = ACTIONS(3028), - [anon_sym_continue] = ACTIONS(3028), - [anon_sym_default] = ACTIONS(3028), - [anon_sym_enum] = ACTIONS(3028), - [anon_sym_fn] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3028), - [anon_sym_gen] = ACTIONS(3028), - [anon_sym_if] = ACTIONS(3028), - [anon_sym_impl] = ACTIONS(3028), - [anon_sym_let] = ACTIONS(3028), - [anon_sym_loop] = ACTIONS(3028), - [anon_sym_match] = ACTIONS(3028), - [anon_sym_mod] = ACTIONS(3028), - [anon_sym_pub] = ACTIONS(3028), - [anon_sym_return] = ACTIONS(3028), - [anon_sym_static] = ACTIONS(3028), - [anon_sym_struct] = ACTIONS(3028), - [anon_sym_trait] = ACTIONS(3028), - [anon_sym_type] = ACTIONS(3028), - [anon_sym_union] = ACTIONS(3028), - [anon_sym_unsafe] = ACTIONS(3028), - [anon_sym_use] = ACTIONS(3028), - [anon_sym_while] = ACTIONS(3028), - [anon_sym_extern] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3028), - [anon_sym_move] = ACTIONS(3028), - [anon_sym_try] = ACTIONS(3028), - [sym_integer_literal] = ACTIONS(3026), - [aux_sym_string_literal_token1] = ACTIONS(3026), - [sym_char_literal] = ACTIONS(3026), - [anon_sym_true] = ACTIONS(3028), - [anon_sym_false] = ACTIONS(3028), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3028), - [sym_super] = ACTIONS(3028), - [sym_crate] = ACTIONS(3028), - [sym_metavariable] = ACTIONS(3026), - [sym__raw_string_literal_start] = ACTIONS(3026), - [sym_float_literal] = ACTIONS(3026), + [ts_builtin_sym_end] = ACTIONS(2853), + [sym_identifier] = ACTIONS(2855), + [anon_sym_SEMI] = ACTIONS(2853), + [anon_sym_macro_rules_BANG] = ACTIONS(2853), + [anon_sym_LPAREN] = ACTIONS(2853), + [anon_sym_LBRACK] = ACTIONS(2853), + [anon_sym_LBRACE] = ACTIONS(2853), + [anon_sym_RBRACE] = ACTIONS(2853), + [anon_sym_STAR] = ACTIONS(2853), + [anon_sym_u8] = ACTIONS(2855), + [anon_sym_i8] = ACTIONS(2855), + [anon_sym_u16] = ACTIONS(2855), + [anon_sym_i16] = ACTIONS(2855), + [anon_sym_u32] = ACTIONS(2855), + [anon_sym_i32] = ACTIONS(2855), + [anon_sym_u64] = ACTIONS(2855), + [anon_sym_i64] = ACTIONS(2855), + [anon_sym_u128] = ACTIONS(2855), + [anon_sym_i128] = ACTIONS(2855), + [anon_sym_isize] = ACTIONS(2855), + [anon_sym_usize] = ACTIONS(2855), + [anon_sym_f32] = ACTIONS(2855), + [anon_sym_f64] = ACTIONS(2855), + [anon_sym_bool] = ACTIONS(2855), + [anon_sym_str] = ACTIONS(2855), + [anon_sym_char] = ACTIONS(2855), + [anon_sym_DASH] = ACTIONS(2853), + [anon_sym_BANG] = ACTIONS(2853), + [anon_sym_AMP] = ACTIONS(2853), + [anon_sym_PIPE] = ACTIONS(2853), + [anon_sym_LT] = ACTIONS(2853), + [anon_sym_DOT_DOT] = ACTIONS(2853), + [anon_sym_COLON_COLON] = ACTIONS(2853), + [anon_sym_POUND] = ACTIONS(2853), + [anon_sym_SQUOTE] = ACTIONS(2855), + [anon_sym_async] = ACTIONS(2855), + [anon_sym_break] = ACTIONS(2855), + [anon_sym_const] = ACTIONS(2855), + [anon_sym_continue] = ACTIONS(2855), + [anon_sym_default] = ACTIONS(2855), + [anon_sym_enum] = ACTIONS(2855), + [anon_sym_fn] = ACTIONS(2855), + [anon_sym_for] = ACTIONS(2855), + [anon_sym_gen] = ACTIONS(2855), + [anon_sym_if] = ACTIONS(2855), + [anon_sym_impl] = ACTIONS(2855), + [anon_sym_let] = ACTIONS(2855), + [anon_sym_loop] = ACTIONS(2855), + [anon_sym_match] = ACTIONS(2855), + [anon_sym_mod] = ACTIONS(2855), + [anon_sym_pub] = ACTIONS(2855), + [anon_sym_return] = ACTIONS(2855), + [anon_sym_static] = ACTIONS(2855), + [anon_sym_struct] = ACTIONS(2855), + [anon_sym_trait] = ACTIONS(2855), + [anon_sym_type] = ACTIONS(2855), + [anon_sym_union] = ACTIONS(2855), + [anon_sym_unsafe] = ACTIONS(2855), + [anon_sym_use] = ACTIONS(2855), + [anon_sym_while] = ACTIONS(2855), + [anon_sym_extern] = ACTIONS(2855), + [anon_sym_yield] = ACTIONS(2855), + [anon_sym_move] = ACTIONS(2855), + [anon_sym_try] = ACTIONS(2855), + [sym_integer_literal] = ACTIONS(2853), + [aux_sym_string_literal_token1] = ACTIONS(2853), + [sym_char_literal] = ACTIONS(2853), + [anon_sym_true] = ACTIONS(2855), + [anon_sym_false] = ACTIONS(2855), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2855), + [sym_super] = ACTIONS(2855), + [sym_crate] = ACTIONS(2855), + [sym_metavariable] = ACTIONS(2853), + [sym__raw_string_literal_start] = ACTIONS(2853), + [sym_float_literal] = ACTIONS(2853), }, [STATE(779)] = { [sym_line_comment] = STATE(779), [sym_block_comment] = STATE(779), - [ts_builtin_sym_end] = ACTIONS(3030), - [sym_identifier] = ACTIONS(3032), - [anon_sym_SEMI] = ACTIONS(3030), - [anon_sym_macro_rules_BANG] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3030), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_RBRACE] = ACTIONS(3030), - [anon_sym_STAR] = ACTIONS(3030), - [anon_sym_u8] = ACTIONS(3032), - [anon_sym_i8] = ACTIONS(3032), - [anon_sym_u16] = ACTIONS(3032), - [anon_sym_i16] = ACTIONS(3032), - [anon_sym_u32] = ACTIONS(3032), - [anon_sym_i32] = ACTIONS(3032), - [anon_sym_u64] = ACTIONS(3032), - [anon_sym_i64] = ACTIONS(3032), - [anon_sym_u128] = ACTIONS(3032), - [anon_sym_i128] = ACTIONS(3032), - [anon_sym_isize] = ACTIONS(3032), - [anon_sym_usize] = ACTIONS(3032), - [anon_sym_f32] = ACTIONS(3032), - [anon_sym_f64] = ACTIONS(3032), - [anon_sym_bool] = ACTIONS(3032), - [anon_sym_str] = ACTIONS(3032), - [anon_sym_char] = ACTIONS(3032), - [anon_sym_DASH] = ACTIONS(3030), - [anon_sym_BANG] = ACTIONS(3030), - [anon_sym_AMP] = ACTIONS(3030), - [anon_sym_PIPE] = ACTIONS(3030), - [anon_sym_LT] = ACTIONS(3030), - [anon_sym_DOT_DOT] = ACTIONS(3030), - [anon_sym_COLON_COLON] = ACTIONS(3030), - [anon_sym_POUND] = ACTIONS(3030), - [anon_sym_SQUOTE] = ACTIONS(3032), - [anon_sym_async] = ACTIONS(3032), - [anon_sym_break] = ACTIONS(3032), - [anon_sym_const] = ACTIONS(3032), - [anon_sym_continue] = ACTIONS(3032), - [anon_sym_default] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3032), - [anon_sym_fn] = ACTIONS(3032), - [anon_sym_for] = ACTIONS(3032), - [anon_sym_gen] = ACTIONS(3032), - [anon_sym_if] = ACTIONS(3032), - [anon_sym_impl] = ACTIONS(3032), - [anon_sym_let] = ACTIONS(3032), - [anon_sym_loop] = ACTIONS(3032), - [anon_sym_match] = ACTIONS(3032), - [anon_sym_mod] = ACTIONS(3032), - [anon_sym_pub] = ACTIONS(3032), - [anon_sym_return] = ACTIONS(3032), - [anon_sym_static] = ACTIONS(3032), - [anon_sym_struct] = ACTIONS(3032), - [anon_sym_trait] = ACTIONS(3032), - [anon_sym_type] = ACTIONS(3032), - [anon_sym_union] = ACTIONS(3032), - [anon_sym_unsafe] = ACTIONS(3032), - [anon_sym_use] = ACTIONS(3032), - [anon_sym_while] = ACTIONS(3032), - [anon_sym_extern] = ACTIONS(3032), - [anon_sym_yield] = ACTIONS(3032), - [anon_sym_move] = ACTIONS(3032), - [anon_sym_try] = ACTIONS(3032), - [sym_integer_literal] = ACTIONS(3030), - [aux_sym_string_literal_token1] = ACTIONS(3030), - [sym_char_literal] = ACTIONS(3030), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3032), - [sym_super] = ACTIONS(3032), - [sym_crate] = ACTIONS(3032), - [sym_metavariable] = ACTIONS(3030), - [sym__raw_string_literal_start] = ACTIONS(3030), - [sym_float_literal] = ACTIONS(3030), + [ts_builtin_sym_end] = ACTIONS(2857), + [sym_identifier] = ACTIONS(2859), + [anon_sym_SEMI] = ACTIONS(2857), + [anon_sym_macro_rules_BANG] = ACTIONS(2857), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_LBRACK] = ACTIONS(2857), + [anon_sym_LBRACE] = ACTIONS(2857), + [anon_sym_RBRACE] = ACTIONS(2857), + [anon_sym_STAR] = ACTIONS(2857), + [anon_sym_u8] = ACTIONS(2859), + [anon_sym_i8] = ACTIONS(2859), + [anon_sym_u16] = ACTIONS(2859), + [anon_sym_i16] = ACTIONS(2859), + [anon_sym_u32] = ACTIONS(2859), + [anon_sym_i32] = ACTIONS(2859), + [anon_sym_u64] = ACTIONS(2859), + [anon_sym_i64] = ACTIONS(2859), + [anon_sym_u128] = ACTIONS(2859), + [anon_sym_i128] = ACTIONS(2859), + [anon_sym_isize] = ACTIONS(2859), + [anon_sym_usize] = ACTIONS(2859), + [anon_sym_f32] = ACTIONS(2859), + [anon_sym_f64] = ACTIONS(2859), + [anon_sym_bool] = ACTIONS(2859), + [anon_sym_str] = ACTIONS(2859), + [anon_sym_char] = ACTIONS(2859), + [anon_sym_DASH] = ACTIONS(2857), + [anon_sym_BANG] = ACTIONS(2857), + [anon_sym_AMP] = ACTIONS(2857), + [anon_sym_PIPE] = ACTIONS(2857), + [anon_sym_LT] = ACTIONS(2857), + [anon_sym_DOT_DOT] = ACTIONS(2857), + [anon_sym_COLON_COLON] = ACTIONS(2857), + [anon_sym_POUND] = ACTIONS(2857), + [anon_sym_SQUOTE] = ACTIONS(2859), + [anon_sym_async] = ACTIONS(2859), + [anon_sym_break] = ACTIONS(2859), + [anon_sym_const] = ACTIONS(2859), + [anon_sym_continue] = ACTIONS(2859), + [anon_sym_default] = ACTIONS(2859), + [anon_sym_enum] = ACTIONS(2859), + [anon_sym_fn] = ACTIONS(2859), + [anon_sym_for] = ACTIONS(2859), + [anon_sym_gen] = ACTIONS(2859), + [anon_sym_if] = ACTIONS(2859), + [anon_sym_impl] = ACTIONS(2859), + [anon_sym_let] = ACTIONS(2859), + [anon_sym_loop] = ACTIONS(2859), + [anon_sym_match] = ACTIONS(2859), + [anon_sym_mod] = ACTIONS(2859), + [anon_sym_pub] = ACTIONS(2859), + [anon_sym_return] = ACTIONS(2859), + [anon_sym_static] = ACTIONS(2859), + [anon_sym_struct] = ACTIONS(2859), + [anon_sym_trait] = ACTIONS(2859), + [anon_sym_type] = ACTIONS(2859), + [anon_sym_union] = ACTIONS(2859), + [anon_sym_unsafe] = ACTIONS(2859), + [anon_sym_use] = ACTIONS(2859), + [anon_sym_while] = ACTIONS(2859), + [anon_sym_extern] = ACTIONS(2859), + [anon_sym_yield] = ACTIONS(2859), + [anon_sym_move] = ACTIONS(2859), + [anon_sym_try] = ACTIONS(2859), + [sym_integer_literal] = ACTIONS(2857), + [aux_sym_string_literal_token1] = ACTIONS(2857), + [sym_char_literal] = ACTIONS(2857), + [anon_sym_true] = ACTIONS(2859), + [anon_sym_false] = ACTIONS(2859), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2859), + [sym_super] = ACTIONS(2859), + [sym_crate] = ACTIONS(2859), + [sym_metavariable] = ACTIONS(2857), + [sym__raw_string_literal_start] = ACTIONS(2857), + [sym_float_literal] = ACTIONS(2857), }, [STATE(780)] = { [sym_line_comment] = STATE(780), [sym_block_comment] = STATE(780), - [ts_builtin_sym_end] = ACTIONS(3034), - [sym_identifier] = ACTIONS(3036), - [anon_sym_SEMI] = ACTIONS(3034), - [anon_sym_macro_rules_BANG] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3034), - [anon_sym_LBRACK] = ACTIONS(3034), - [anon_sym_LBRACE] = ACTIONS(3034), - [anon_sym_RBRACE] = ACTIONS(3034), - [anon_sym_STAR] = ACTIONS(3034), - [anon_sym_u8] = ACTIONS(3036), - [anon_sym_i8] = ACTIONS(3036), - [anon_sym_u16] = ACTIONS(3036), - [anon_sym_i16] = ACTIONS(3036), - [anon_sym_u32] = ACTIONS(3036), - [anon_sym_i32] = ACTIONS(3036), - [anon_sym_u64] = ACTIONS(3036), - [anon_sym_i64] = ACTIONS(3036), - [anon_sym_u128] = ACTIONS(3036), - [anon_sym_i128] = ACTIONS(3036), - [anon_sym_isize] = ACTIONS(3036), - [anon_sym_usize] = ACTIONS(3036), - [anon_sym_f32] = ACTIONS(3036), - [anon_sym_f64] = ACTIONS(3036), - [anon_sym_bool] = ACTIONS(3036), - [anon_sym_str] = ACTIONS(3036), - [anon_sym_char] = ACTIONS(3036), - [anon_sym_DASH] = ACTIONS(3034), - [anon_sym_BANG] = ACTIONS(3034), - [anon_sym_AMP] = ACTIONS(3034), - [anon_sym_PIPE] = ACTIONS(3034), - [anon_sym_LT] = ACTIONS(3034), - [anon_sym_DOT_DOT] = ACTIONS(3034), - [anon_sym_COLON_COLON] = ACTIONS(3034), - [anon_sym_POUND] = ACTIONS(3034), - [anon_sym_SQUOTE] = ACTIONS(3036), - [anon_sym_async] = ACTIONS(3036), - [anon_sym_break] = ACTIONS(3036), - [anon_sym_const] = ACTIONS(3036), - [anon_sym_continue] = ACTIONS(3036), - [anon_sym_default] = ACTIONS(3036), - [anon_sym_enum] = ACTIONS(3036), - [anon_sym_fn] = ACTIONS(3036), - [anon_sym_for] = ACTIONS(3036), - [anon_sym_gen] = ACTIONS(3036), - [anon_sym_if] = ACTIONS(3036), - [anon_sym_impl] = ACTIONS(3036), - [anon_sym_let] = ACTIONS(3036), - [anon_sym_loop] = ACTIONS(3036), - [anon_sym_match] = ACTIONS(3036), - [anon_sym_mod] = ACTIONS(3036), - [anon_sym_pub] = ACTIONS(3036), - [anon_sym_return] = ACTIONS(3036), - [anon_sym_static] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3036), - [anon_sym_trait] = ACTIONS(3036), - [anon_sym_type] = ACTIONS(3036), - [anon_sym_union] = ACTIONS(3036), - [anon_sym_unsafe] = ACTIONS(3036), - [anon_sym_use] = ACTIONS(3036), - [anon_sym_while] = ACTIONS(3036), - [anon_sym_extern] = ACTIONS(3036), - [anon_sym_yield] = ACTIONS(3036), - [anon_sym_move] = ACTIONS(3036), - [anon_sym_try] = ACTIONS(3036), - [sym_integer_literal] = ACTIONS(3034), - [aux_sym_string_literal_token1] = ACTIONS(3034), - [sym_char_literal] = ACTIONS(3034), - [anon_sym_true] = ACTIONS(3036), - [anon_sym_false] = ACTIONS(3036), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3036), - [sym_super] = ACTIONS(3036), - [sym_crate] = ACTIONS(3036), - [sym_metavariable] = ACTIONS(3034), - [sym__raw_string_literal_start] = ACTIONS(3034), - [sym_float_literal] = ACTIONS(3034), + [ts_builtin_sym_end] = ACTIONS(2861), + [sym_identifier] = ACTIONS(2863), + [anon_sym_SEMI] = ACTIONS(2861), + [anon_sym_macro_rules_BANG] = ACTIONS(2861), + [anon_sym_LPAREN] = ACTIONS(2861), + [anon_sym_LBRACK] = ACTIONS(2861), + [anon_sym_LBRACE] = ACTIONS(2861), + [anon_sym_RBRACE] = ACTIONS(2861), + [anon_sym_STAR] = ACTIONS(2861), + [anon_sym_u8] = ACTIONS(2863), + [anon_sym_i8] = ACTIONS(2863), + [anon_sym_u16] = ACTIONS(2863), + [anon_sym_i16] = ACTIONS(2863), + [anon_sym_u32] = ACTIONS(2863), + [anon_sym_i32] = ACTIONS(2863), + [anon_sym_u64] = ACTIONS(2863), + [anon_sym_i64] = ACTIONS(2863), + [anon_sym_u128] = ACTIONS(2863), + [anon_sym_i128] = ACTIONS(2863), + [anon_sym_isize] = ACTIONS(2863), + [anon_sym_usize] = ACTIONS(2863), + [anon_sym_f32] = ACTIONS(2863), + [anon_sym_f64] = ACTIONS(2863), + [anon_sym_bool] = ACTIONS(2863), + [anon_sym_str] = ACTIONS(2863), + [anon_sym_char] = ACTIONS(2863), + [anon_sym_DASH] = ACTIONS(2861), + [anon_sym_BANG] = ACTIONS(2861), + [anon_sym_AMP] = ACTIONS(2861), + [anon_sym_PIPE] = ACTIONS(2861), + [anon_sym_LT] = ACTIONS(2861), + [anon_sym_DOT_DOT] = ACTIONS(2861), + [anon_sym_COLON_COLON] = ACTIONS(2861), + [anon_sym_POUND] = ACTIONS(2861), + [anon_sym_SQUOTE] = ACTIONS(2863), + [anon_sym_async] = ACTIONS(2863), + [anon_sym_break] = ACTIONS(2863), + [anon_sym_const] = ACTIONS(2863), + [anon_sym_continue] = ACTIONS(2863), + [anon_sym_default] = ACTIONS(2863), + [anon_sym_enum] = ACTIONS(2863), + [anon_sym_fn] = ACTIONS(2863), + [anon_sym_for] = ACTIONS(2863), + [anon_sym_gen] = ACTIONS(2863), + [anon_sym_if] = ACTIONS(2863), + [anon_sym_impl] = ACTIONS(2863), + [anon_sym_let] = ACTIONS(2863), + [anon_sym_loop] = ACTIONS(2863), + [anon_sym_match] = ACTIONS(2863), + [anon_sym_mod] = ACTIONS(2863), + [anon_sym_pub] = ACTIONS(2863), + [anon_sym_return] = ACTIONS(2863), + [anon_sym_static] = ACTIONS(2863), + [anon_sym_struct] = ACTIONS(2863), + [anon_sym_trait] = ACTIONS(2863), + [anon_sym_type] = ACTIONS(2863), + [anon_sym_union] = ACTIONS(2863), + [anon_sym_unsafe] = ACTIONS(2863), + [anon_sym_use] = ACTIONS(2863), + [anon_sym_while] = ACTIONS(2863), + [anon_sym_extern] = ACTIONS(2863), + [anon_sym_yield] = ACTIONS(2863), + [anon_sym_move] = ACTIONS(2863), + [anon_sym_try] = ACTIONS(2863), + [sym_integer_literal] = ACTIONS(2861), + [aux_sym_string_literal_token1] = ACTIONS(2861), + [sym_char_literal] = ACTIONS(2861), + [anon_sym_true] = ACTIONS(2863), + [anon_sym_false] = ACTIONS(2863), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2863), + [sym_super] = ACTIONS(2863), + [sym_crate] = ACTIONS(2863), + [sym_metavariable] = ACTIONS(2861), + [sym__raw_string_literal_start] = ACTIONS(2861), + [sym_float_literal] = ACTIONS(2861), }, [STATE(781)] = { [sym_line_comment] = STATE(781), [sym_block_comment] = STATE(781), - [ts_builtin_sym_end] = ACTIONS(3038), - [sym_identifier] = ACTIONS(3040), - [anon_sym_SEMI] = ACTIONS(3038), - [anon_sym_macro_rules_BANG] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(3038), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_LBRACE] = ACTIONS(3038), - [anon_sym_RBRACE] = ACTIONS(3038), - [anon_sym_STAR] = ACTIONS(3038), - [anon_sym_u8] = ACTIONS(3040), - [anon_sym_i8] = ACTIONS(3040), - [anon_sym_u16] = ACTIONS(3040), - [anon_sym_i16] = ACTIONS(3040), - [anon_sym_u32] = ACTIONS(3040), - [anon_sym_i32] = ACTIONS(3040), - [anon_sym_u64] = ACTIONS(3040), - [anon_sym_i64] = ACTIONS(3040), - [anon_sym_u128] = ACTIONS(3040), - [anon_sym_i128] = ACTIONS(3040), - [anon_sym_isize] = ACTIONS(3040), - [anon_sym_usize] = ACTIONS(3040), - [anon_sym_f32] = ACTIONS(3040), - [anon_sym_f64] = ACTIONS(3040), - [anon_sym_bool] = ACTIONS(3040), - [anon_sym_str] = ACTIONS(3040), - [anon_sym_char] = ACTIONS(3040), - [anon_sym_DASH] = ACTIONS(3038), - [anon_sym_BANG] = ACTIONS(3038), - [anon_sym_AMP] = ACTIONS(3038), - [anon_sym_PIPE] = ACTIONS(3038), - [anon_sym_LT] = ACTIONS(3038), - [anon_sym_DOT_DOT] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(3038), - [anon_sym_POUND] = ACTIONS(3038), - [anon_sym_SQUOTE] = ACTIONS(3040), - [anon_sym_async] = ACTIONS(3040), - [anon_sym_break] = ACTIONS(3040), - [anon_sym_const] = ACTIONS(3040), - [anon_sym_continue] = ACTIONS(3040), - [anon_sym_default] = ACTIONS(3040), - [anon_sym_enum] = ACTIONS(3040), - [anon_sym_fn] = ACTIONS(3040), - [anon_sym_for] = ACTIONS(3040), - [anon_sym_gen] = ACTIONS(3040), - [anon_sym_if] = ACTIONS(3040), - [anon_sym_impl] = ACTIONS(3040), - [anon_sym_let] = ACTIONS(3040), - [anon_sym_loop] = ACTIONS(3040), - [anon_sym_match] = ACTIONS(3040), - [anon_sym_mod] = ACTIONS(3040), - [anon_sym_pub] = ACTIONS(3040), - [anon_sym_return] = ACTIONS(3040), - [anon_sym_static] = ACTIONS(3040), - [anon_sym_struct] = ACTIONS(3040), - [anon_sym_trait] = ACTIONS(3040), - [anon_sym_type] = ACTIONS(3040), - [anon_sym_union] = ACTIONS(3040), - [anon_sym_unsafe] = ACTIONS(3040), - [anon_sym_use] = ACTIONS(3040), - [anon_sym_while] = ACTIONS(3040), - [anon_sym_extern] = ACTIONS(3040), - [anon_sym_yield] = ACTIONS(3040), - [anon_sym_move] = ACTIONS(3040), - [anon_sym_try] = ACTIONS(3040), - [sym_integer_literal] = ACTIONS(3038), - [aux_sym_string_literal_token1] = ACTIONS(3038), - [sym_char_literal] = ACTIONS(3038), - [anon_sym_true] = ACTIONS(3040), - [anon_sym_false] = ACTIONS(3040), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3040), - [sym_super] = ACTIONS(3040), - [sym_crate] = ACTIONS(3040), - [sym_metavariable] = ACTIONS(3038), - [sym__raw_string_literal_start] = ACTIONS(3038), - [sym_float_literal] = ACTIONS(3038), + [ts_builtin_sym_end] = ACTIONS(2865), + [sym_identifier] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2865), + [anon_sym_macro_rules_BANG] = ACTIONS(2865), + [anon_sym_LPAREN] = ACTIONS(2865), + [anon_sym_LBRACK] = ACTIONS(2865), + [anon_sym_LBRACE] = ACTIONS(2865), + [anon_sym_RBRACE] = ACTIONS(2865), + [anon_sym_STAR] = ACTIONS(2865), + [anon_sym_u8] = ACTIONS(2867), + [anon_sym_i8] = ACTIONS(2867), + [anon_sym_u16] = ACTIONS(2867), + [anon_sym_i16] = ACTIONS(2867), + [anon_sym_u32] = ACTIONS(2867), + [anon_sym_i32] = ACTIONS(2867), + [anon_sym_u64] = ACTIONS(2867), + [anon_sym_i64] = ACTIONS(2867), + [anon_sym_u128] = ACTIONS(2867), + [anon_sym_i128] = ACTIONS(2867), + [anon_sym_isize] = ACTIONS(2867), + [anon_sym_usize] = ACTIONS(2867), + [anon_sym_f32] = ACTIONS(2867), + [anon_sym_f64] = ACTIONS(2867), + [anon_sym_bool] = ACTIONS(2867), + [anon_sym_str] = ACTIONS(2867), + [anon_sym_char] = ACTIONS(2867), + [anon_sym_DASH] = ACTIONS(2865), + [anon_sym_BANG] = ACTIONS(2865), + [anon_sym_AMP] = ACTIONS(2865), + [anon_sym_PIPE] = ACTIONS(2865), + [anon_sym_LT] = ACTIONS(2865), + [anon_sym_DOT_DOT] = ACTIONS(2865), + [anon_sym_COLON_COLON] = ACTIONS(2865), + [anon_sym_POUND] = ACTIONS(2865), + [anon_sym_SQUOTE] = ACTIONS(2867), + [anon_sym_async] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_fn] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_gen] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_impl] = ACTIONS(2867), + [anon_sym_let] = ACTIONS(2867), + [anon_sym_loop] = ACTIONS(2867), + [anon_sym_match] = ACTIONS(2867), + [anon_sym_mod] = ACTIONS(2867), + [anon_sym_pub] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_trait] = ACTIONS(2867), + [anon_sym_type] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_unsafe] = ACTIONS(2867), + [anon_sym_use] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym_yield] = ACTIONS(2867), + [anon_sym_move] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [sym_integer_literal] = ACTIONS(2865), + [aux_sym_string_literal_token1] = ACTIONS(2865), + [sym_char_literal] = ACTIONS(2865), + [anon_sym_true] = ACTIONS(2867), + [anon_sym_false] = ACTIONS(2867), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2867), + [sym_super] = ACTIONS(2867), + [sym_crate] = ACTIONS(2867), + [sym_metavariable] = ACTIONS(2865), + [sym__raw_string_literal_start] = ACTIONS(2865), + [sym_float_literal] = ACTIONS(2865), }, [STATE(782)] = { [sym_line_comment] = STATE(782), [sym_block_comment] = STATE(782), - [ts_builtin_sym_end] = ACTIONS(3042), - [sym_identifier] = ACTIONS(3044), - [anon_sym_SEMI] = ACTIONS(3042), - [anon_sym_macro_rules_BANG] = ACTIONS(3042), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_LBRACK] = ACTIONS(3042), - [anon_sym_LBRACE] = ACTIONS(3042), - [anon_sym_RBRACE] = ACTIONS(3042), - [anon_sym_STAR] = ACTIONS(3042), - [anon_sym_u8] = ACTIONS(3044), - [anon_sym_i8] = ACTIONS(3044), - [anon_sym_u16] = ACTIONS(3044), - [anon_sym_i16] = ACTIONS(3044), - [anon_sym_u32] = ACTIONS(3044), - [anon_sym_i32] = ACTIONS(3044), - [anon_sym_u64] = ACTIONS(3044), - [anon_sym_i64] = ACTIONS(3044), - [anon_sym_u128] = ACTIONS(3044), - [anon_sym_i128] = ACTIONS(3044), - [anon_sym_isize] = ACTIONS(3044), - [anon_sym_usize] = ACTIONS(3044), - [anon_sym_f32] = ACTIONS(3044), - [anon_sym_f64] = ACTIONS(3044), - [anon_sym_bool] = ACTIONS(3044), - [anon_sym_str] = ACTIONS(3044), - [anon_sym_char] = ACTIONS(3044), - [anon_sym_DASH] = ACTIONS(3042), - [anon_sym_BANG] = ACTIONS(3042), - [anon_sym_AMP] = ACTIONS(3042), - [anon_sym_PIPE] = ACTIONS(3042), - [anon_sym_LT] = ACTIONS(3042), - [anon_sym_DOT_DOT] = ACTIONS(3042), - [anon_sym_COLON_COLON] = ACTIONS(3042), - [anon_sym_POUND] = ACTIONS(3042), - [anon_sym_SQUOTE] = ACTIONS(3044), - [anon_sym_async] = ACTIONS(3044), - [anon_sym_break] = ACTIONS(3044), - [anon_sym_const] = ACTIONS(3044), - [anon_sym_continue] = ACTIONS(3044), - [anon_sym_default] = ACTIONS(3044), - [anon_sym_enum] = ACTIONS(3044), - [anon_sym_fn] = ACTIONS(3044), - [anon_sym_for] = ACTIONS(3044), - [anon_sym_gen] = ACTIONS(3044), - [anon_sym_if] = ACTIONS(3044), - [anon_sym_impl] = ACTIONS(3044), - [anon_sym_let] = ACTIONS(3044), - [anon_sym_loop] = ACTIONS(3044), - [anon_sym_match] = ACTIONS(3044), - [anon_sym_mod] = ACTIONS(3044), - [anon_sym_pub] = ACTIONS(3044), - [anon_sym_return] = ACTIONS(3044), - [anon_sym_static] = ACTIONS(3044), - [anon_sym_struct] = ACTIONS(3044), - [anon_sym_trait] = ACTIONS(3044), - [anon_sym_type] = ACTIONS(3044), - [anon_sym_union] = ACTIONS(3044), - [anon_sym_unsafe] = ACTIONS(3044), - [anon_sym_use] = ACTIONS(3044), - [anon_sym_while] = ACTIONS(3044), - [anon_sym_extern] = ACTIONS(3044), - [anon_sym_yield] = ACTIONS(3044), - [anon_sym_move] = ACTIONS(3044), - [anon_sym_try] = ACTIONS(3044), - [sym_integer_literal] = ACTIONS(3042), - [aux_sym_string_literal_token1] = ACTIONS(3042), - [sym_char_literal] = ACTIONS(3042), - [anon_sym_true] = ACTIONS(3044), - [anon_sym_false] = ACTIONS(3044), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3044), - [sym_super] = ACTIONS(3044), - [sym_crate] = ACTIONS(3044), - [sym_metavariable] = ACTIONS(3042), - [sym__raw_string_literal_start] = ACTIONS(3042), - [sym_float_literal] = ACTIONS(3042), + [ts_builtin_sym_end] = ACTIONS(2869), + [sym_identifier] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym_macro_rules_BANG] = ACTIONS(2869), + [anon_sym_LPAREN] = ACTIONS(2869), + [anon_sym_LBRACK] = ACTIONS(2869), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_RBRACE] = ACTIONS(2869), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_u8] = ACTIONS(2871), + [anon_sym_i8] = ACTIONS(2871), + [anon_sym_u16] = ACTIONS(2871), + [anon_sym_i16] = ACTIONS(2871), + [anon_sym_u32] = ACTIONS(2871), + [anon_sym_i32] = ACTIONS(2871), + [anon_sym_u64] = ACTIONS(2871), + [anon_sym_i64] = ACTIONS(2871), + [anon_sym_u128] = ACTIONS(2871), + [anon_sym_i128] = ACTIONS(2871), + [anon_sym_isize] = ACTIONS(2871), + [anon_sym_usize] = ACTIONS(2871), + [anon_sym_f32] = ACTIONS(2871), + [anon_sym_f64] = ACTIONS(2871), + [anon_sym_bool] = ACTIONS(2871), + [anon_sym_str] = ACTIONS(2871), + [anon_sym_char] = ACTIONS(2871), + [anon_sym_DASH] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2869), + [anon_sym_PIPE] = ACTIONS(2869), + [anon_sym_LT] = ACTIONS(2869), + [anon_sym_DOT_DOT] = ACTIONS(2869), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_POUND] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2871), + [anon_sym_async] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_fn] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_gen] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_impl] = ACTIONS(2871), + [anon_sym_let] = ACTIONS(2871), + [anon_sym_loop] = ACTIONS(2871), + [anon_sym_match] = ACTIONS(2871), + [anon_sym_mod] = ACTIONS(2871), + [anon_sym_pub] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_trait] = ACTIONS(2871), + [anon_sym_type] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_unsafe] = ACTIONS(2871), + [anon_sym_use] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym_yield] = ACTIONS(2871), + [anon_sym_move] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [sym_integer_literal] = ACTIONS(2869), + [aux_sym_string_literal_token1] = ACTIONS(2869), + [sym_char_literal] = ACTIONS(2869), + [anon_sym_true] = ACTIONS(2871), + [anon_sym_false] = ACTIONS(2871), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2871), + [sym_super] = ACTIONS(2871), + [sym_crate] = ACTIONS(2871), + [sym_metavariable] = ACTIONS(2869), + [sym__raw_string_literal_start] = ACTIONS(2869), + [sym_float_literal] = ACTIONS(2869), }, [STATE(783)] = { [sym_line_comment] = STATE(783), [sym_block_comment] = STATE(783), - [ts_builtin_sym_end] = ACTIONS(3046), - [sym_identifier] = ACTIONS(3048), - [anon_sym_SEMI] = ACTIONS(3046), - [anon_sym_macro_rules_BANG] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(3046), - [anon_sym_LBRACK] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_RBRACE] = ACTIONS(3046), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_u8] = ACTIONS(3048), - [anon_sym_i8] = ACTIONS(3048), - [anon_sym_u16] = ACTIONS(3048), - [anon_sym_i16] = ACTIONS(3048), - [anon_sym_u32] = ACTIONS(3048), - [anon_sym_i32] = ACTIONS(3048), - [anon_sym_u64] = ACTIONS(3048), - [anon_sym_i64] = ACTIONS(3048), - [anon_sym_u128] = ACTIONS(3048), - [anon_sym_i128] = ACTIONS(3048), - [anon_sym_isize] = ACTIONS(3048), - [anon_sym_usize] = ACTIONS(3048), - [anon_sym_f32] = ACTIONS(3048), - [anon_sym_f64] = ACTIONS(3048), - [anon_sym_bool] = ACTIONS(3048), - [anon_sym_str] = ACTIONS(3048), - [anon_sym_char] = ACTIONS(3048), - [anon_sym_DASH] = ACTIONS(3046), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3046), - [anon_sym_COLON_COLON] = ACTIONS(3046), - [anon_sym_POUND] = ACTIONS(3046), - [anon_sym_SQUOTE] = ACTIONS(3048), - [anon_sym_async] = ACTIONS(3048), - [anon_sym_break] = ACTIONS(3048), - [anon_sym_const] = ACTIONS(3048), - [anon_sym_continue] = ACTIONS(3048), - [anon_sym_default] = ACTIONS(3048), - [anon_sym_enum] = ACTIONS(3048), - [anon_sym_fn] = ACTIONS(3048), - [anon_sym_for] = ACTIONS(3048), - [anon_sym_gen] = ACTIONS(3048), - [anon_sym_if] = ACTIONS(3048), - [anon_sym_impl] = ACTIONS(3048), - [anon_sym_let] = ACTIONS(3048), - [anon_sym_loop] = ACTIONS(3048), - [anon_sym_match] = ACTIONS(3048), - [anon_sym_mod] = ACTIONS(3048), - [anon_sym_pub] = ACTIONS(3048), - [anon_sym_return] = ACTIONS(3048), - [anon_sym_static] = ACTIONS(3048), - [anon_sym_struct] = ACTIONS(3048), - [anon_sym_trait] = ACTIONS(3048), - [anon_sym_type] = ACTIONS(3048), - [anon_sym_union] = ACTIONS(3048), - [anon_sym_unsafe] = ACTIONS(3048), - [anon_sym_use] = ACTIONS(3048), - [anon_sym_while] = ACTIONS(3048), - [anon_sym_extern] = ACTIONS(3048), - [anon_sym_yield] = ACTIONS(3048), - [anon_sym_move] = ACTIONS(3048), - [anon_sym_try] = ACTIONS(3048), - [sym_integer_literal] = ACTIONS(3046), - [aux_sym_string_literal_token1] = ACTIONS(3046), - [sym_char_literal] = ACTIONS(3046), - [anon_sym_true] = ACTIONS(3048), - [anon_sym_false] = ACTIONS(3048), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3048), - [sym_super] = ACTIONS(3048), - [sym_crate] = ACTIONS(3048), - [sym_metavariable] = ACTIONS(3046), - [sym__raw_string_literal_start] = ACTIONS(3046), - [sym_float_literal] = ACTIONS(3046), + [ts_builtin_sym_end] = ACTIONS(2873), + [sym_identifier] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym_macro_rules_BANG] = ACTIONS(2873), + [anon_sym_LPAREN] = ACTIONS(2873), + [anon_sym_LBRACK] = ACTIONS(2873), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(2873), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_u8] = ACTIONS(2875), + [anon_sym_i8] = ACTIONS(2875), + [anon_sym_u16] = ACTIONS(2875), + [anon_sym_i16] = ACTIONS(2875), + [anon_sym_u32] = ACTIONS(2875), + [anon_sym_i32] = ACTIONS(2875), + [anon_sym_u64] = ACTIONS(2875), + [anon_sym_i64] = ACTIONS(2875), + [anon_sym_u128] = ACTIONS(2875), + [anon_sym_i128] = ACTIONS(2875), + [anon_sym_isize] = ACTIONS(2875), + [anon_sym_usize] = ACTIONS(2875), + [anon_sym_f32] = ACTIONS(2875), + [anon_sym_f64] = ACTIONS(2875), + [anon_sym_bool] = ACTIONS(2875), + [anon_sym_str] = ACTIONS(2875), + [anon_sym_char] = ACTIONS(2875), + [anon_sym_DASH] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2873), + [anon_sym_PIPE] = ACTIONS(2873), + [anon_sym_LT] = ACTIONS(2873), + [anon_sym_DOT_DOT] = ACTIONS(2873), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_POUND] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2875), + [anon_sym_async] = ACTIONS(2875), + [anon_sym_break] = ACTIONS(2875), + [anon_sym_const] = ACTIONS(2875), + [anon_sym_continue] = ACTIONS(2875), + [anon_sym_default] = ACTIONS(2875), + [anon_sym_enum] = ACTIONS(2875), + [anon_sym_fn] = ACTIONS(2875), + [anon_sym_for] = ACTIONS(2875), + [anon_sym_gen] = ACTIONS(2875), + [anon_sym_if] = ACTIONS(2875), + [anon_sym_impl] = ACTIONS(2875), + [anon_sym_let] = ACTIONS(2875), + [anon_sym_loop] = ACTIONS(2875), + [anon_sym_match] = ACTIONS(2875), + [anon_sym_mod] = ACTIONS(2875), + [anon_sym_pub] = ACTIONS(2875), + [anon_sym_return] = ACTIONS(2875), + [anon_sym_static] = ACTIONS(2875), + [anon_sym_struct] = ACTIONS(2875), + [anon_sym_trait] = ACTIONS(2875), + [anon_sym_type] = ACTIONS(2875), + [anon_sym_union] = ACTIONS(2875), + [anon_sym_unsafe] = ACTIONS(2875), + [anon_sym_use] = ACTIONS(2875), + [anon_sym_while] = ACTIONS(2875), + [anon_sym_extern] = ACTIONS(2875), + [anon_sym_yield] = ACTIONS(2875), + [anon_sym_move] = ACTIONS(2875), + [anon_sym_try] = ACTIONS(2875), + [sym_integer_literal] = ACTIONS(2873), + [aux_sym_string_literal_token1] = ACTIONS(2873), + [sym_char_literal] = ACTIONS(2873), + [anon_sym_true] = ACTIONS(2875), + [anon_sym_false] = ACTIONS(2875), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2875), + [sym_super] = ACTIONS(2875), + [sym_crate] = ACTIONS(2875), + [sym_metavariable] = ACTIONS(2873), + [sym__raw_string_literal_start] = ACTIONS(2873), + [sym_float_literal] = ACTIONS(2873), }, [STATE(784)] = { [sym_line_comment] = STATE(784), [sym_block_comment] = STATE(784), - [ts_builtin_sym_end] = ACTIONS(3050), - [sym_identifier] = ACTIONS(3052), - [anon_sym_SEMI] = ACTIONS(3050), - [anon_sym_macro_rules_BANG] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3050), - [anon_sym_RBRACE] = ACTIONS(3050), - [anon_sym_STAR] = ACTIONS(3050), - [anon_sym_u8] = ACTIONS(3052), - [anon_sym_i8] = ACTIONS(3052), - [anon_sym_u16] = ACTIONS(3052), - [anon_sym_i16] = ACTIONS(3052), - [anon_sym_u32] = ACTIONS(3052), - [anon_sym_i32] = ACTIONS(3052), - [anon_sym_u64] = ACTIONS(3052), - [anon_sym_i64] = ACTIONS(3052), - [anon_sym_u128] = ACTIONS(3052), - [anon_sym_i128] = ACTIONS(3052), - [anon_sym_isize] = ACTIONS(3052), - [anon_sym_usize] = ACTIONS(3052), - [anon_sym_f32] = ACTIONS(3052), - [anon_sym_f64] = ACTIONS(3052), - [anon_sym_bool] = ACTIONS(3052), - [anon_sym_str] = ACTIONS(3052), - [anon_sym_char] = ACTIONS(3052), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_BANG] = ACTIONS(3050), - [anon_sym_AMP] = ACTIONS(3050), - [anon_sym_PIPE] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT] = ACTIONS(3050), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_POUND] = ACTIONS(3050), - [anon_sym_SQUOTE] = ACTIONS(3052), - [anon_sym_async] = ACTIONS(3052), - [anon_sym_break] = ACTIONS(3052), - [anon_sym_const] = ACTIONS(3052), - [anon_sym_continue] = ACTIONS(3052), - [anon_sym_default] = ACTIONS(3052), - [anon_sym_enum] = ACTIONS(3052), - [anon_sym_fn] = ACTIONS(3052), - [anon_sym_for] = ACTIONS(3052), - [anon_sym_gen] = ACTIONS(3052), - [anon_sym_if] = ACTIONS(3052), - [anon_sym_impl] = ACTIONS(3052), - [anon_sym_let] = ACTIONS(3052), - [anon_sym_loop] = ACTIONS(3052), - [anon_sym_match] = ACTIONS(3052), - [anon_sym_mod] = ACTIONS(3052), - [anon_sym_pub] = ACTIONS(3052), - [anon_sym_return] = ACTIONS(3052), - [anon_sym_static] = ACTIONS(3052), - [anon_sym_struct] = ACTIONS(3052), - [anon_sym_trait] = ACTIONS(3052), - [anon_sym_type] = ACTIONS(3052), - [anon_sym_union] = ACTIONS(3052), - [anon_sym_unsafe] = ACTIONS(3052), - [anon_sym_use] = ACTIONS(3052), - [anon_sym_while] = ACTIONS(3052), - [anon_sym_extern] = ACTIONS(3052), - [anon_sym_yield] = ACTIONS(3052), - [anon_sym_move] = ACTIONS(3052), - [anon_sym_try] = ACTIONS(3052), - [sym_integer_literal] = ACTIONS(3050), - [aux_sym_string_literal_token1] = ACTIONS(3050), - [sym_char_literal] = ACTIONS(3050), - [anon_sym_true] = ACTIONS(3052), - [anon_sym_false] = ACTIONS(3052), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3052), - [sym_super] = ACTIONS(3052), - [sym_crate] = ACTIONS(3052), - [sym_metavariable] = ACTIONS(3050), - [sym__raw_string_literal_start] = ACTIONS(3050), - [sym_float_literal] = ACTIONS(3050), + [ts_builtin_sym_end] = ACTIONS(2877), + [sym_identifier] = ACTIONS(2879), + [anon_sym_SEMI] = ACTIONS(2877), + [anon_sym_macro_rules_BANG] = ACTIONS(2877), + [anon_sym_LPAREN] = ACTIONS(2877), + [anon_sym_LBRACK] = ACTIONS(2877), + [anon_sym_LBRACE] = ACTIONS(2877), + [anon_sym_RBRACE] = ACTIONS(2877), + [anon_sym_STAR] = ACTIONS(2877), + [anon_sym_u8] = ACTIONS(2879), + [anon_sym_i8] = ACTIONS(2879), + [anon_sym_u16] = ACTIONS(2879), + [anon_sym_i16] = ACTIONS(2879), + [anon_sym_u32] = ACTIONS(2879), + [anon_sym_i32] = ACTIONS(2879), + [anon_sym_u64] = ACTIONS(2879), + [anon_sym_i64] = ACTIONS(2879), + [anon_sym_u128] = ACTIONS(2879), + [anon_sym_i128] = ACTIONS(2879), + [anon_sym_isize] = ACTIONS(2879), + [anon_sym_usize] = ACTIONS(2879), + [anon_sym_f32] = ACTIONS(2879), + [anon_sym_f64] = ACTIONS(2879), + [anon_sym_bool] = ACTIONS(2879), + [anon_sym_str] = ACTIONS(2879), + [anon_sym_char] = ACTIONS(2879), + [anon_sym_DASH] = ACTIONS(2877), + [anon_sym_BANG] = ACTIONS(2877), + [anon_sym_AMP] = ACTIONS(2877), + [anon_sym_PIPE] = ACTIONS(2877), + [anon_sym_LT] = ACTIONS(2877), + [anon_sym_DOT_DOT] = ACTIONS(2877), + [anon_sym_COLON_COLON] = ACTIONS(2877), + [anon_sym_POUND] = ACTIONS(2877), + [anon_sym_SQUOTE] = ACTIONS(2879), + [anon_sym_async] = ACTIONS(2879), + [anon_sym_break] = ACTIONS(2879), + [anon_sym_const] = ACTIONS(2879), + [anon_sym_continue] = ACTIONS(2879), + [anon_sym_default] = ACTIONS(2879), + [anon_sym_enum] = ACTIONS(2879), + [anon_sym_fn] = ACTIONS(2879), + [anon_sym_for] = ACTIONS(2879), + [anon_sym_gen] = ACTIONS(2879), + [anon_sym_if] = ACTIONS(2879), + [anon_sym_impl] = ACTIONS(2879), + [anon_sym_let] = ACTIONS(2879), + [anon_sym_loop] = ACTIONS(2879), + [anon_sym_match] = ACTIONS(2879), + [anon_sym_mod] = ACTIONS(2879), + [anon_sym_pub] = ACTIONS(2879), + [anon_sym_return] = ACTIONS(2879), + [anon_sym_static] = ACTIONS(2879), + [anon_sym_struct] = ACTIONS(2879), + [anon_sym_trait] = ACTIONS(2879), + [anon_sym_type] = ACTIONS(2879), + [anon_sym_union] = ACTIONS(2879), + [anon_sym_unsafe] = ACTIONS(2879), + [anon_sym_use] = ACTIONS(2879), + [anon_sym_while] = ACTIONS(2879), + [anon_sym_extern] = ACTIONS(2879), + [anon_sym_yield] = ACTIONS(2879), + [anon_sym_move] = ACTIONS(2879), + [anon_sym_try] = ACTIONS(2879), + [sym_integer_literal] = ACTIONS(2877), + [aux_sym_string_literal_token1] = ACTIONS(2877), + [sym_char_literal] = ACTIONS(2877), + [anon_sym_true] = ACTIONS(2879), + [anon_sym_false] = ACTIONS(2879), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2879), + [sym_super] = ACTIONS(2879), + [sym_crate] = ACTIONS(2879), + [sym_metavariable] = ACTIONS(2877), + [sym__raw_string_literal_start] = ACTIONS(2877), + [sym_float_literal] = ACTIONS(2877), }, [STATE(785)] = { [sym_line_comment] = STATE(785), [sym_block_comment] = STATE(785), - [ts_builtin_sym_end] = ACTIONS(3054), - [sym_identifier] = ACTIONS(3056), - [anon_sym_SEMI] = ACTIONS(3054), - [anon_sym_macro_rules_BANG] = ACTIONS(3054), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_LBRACE] = ACTIONS(3054), - [anon_sym_RBRACE] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3054), - [anon_sym_u8] = ACTIONS(3056), - [anon_sym_i8] = ACTIONS(3056), - [anon_sym_u16] = ACTIONS(3056), - [anon_sym_i16] = ACTIONS(3056), - [anon_sym_u32] = ACTIONS(3056), - [anon_sym_i32] = ACTIONS(3056), - [anon_sym_u64] = ACTIONS(3056), - [anon_sym_i64] = ACTIONS(3056), - [anon_sym_u128] = ACTIONS(3056), - [anon_sym_i128] = ACTIONS(3056), - [anon_sym_isize] = ACTIONS(3056), - [anon_sym_usize] = ACTIONS(3056), - [anon_sym_f32] = ACTIONS(3056), - [anon_sym_f64] = ACTIONS(3056), - [anon_sym_bool] = ACTIONS(3056), - [anon_sym_str] = ACTIONS(3056), - [anon_sym_char] = ACTIONS(3056), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_BANG] = ACTIONS(3054), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_PIPE] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3054), - [anon_sym_DOT_DOT] = ACTIONS(3054), - [anon_sym_COLON_COLON] = ACTIONS(3054), - [anon_sym_POUND] = ACTIONS(3054), - [anon_sym_SQUOTE] = ACTIONS(3056), - [anon_sym_async] = ACTIONS(3056), - [anon_sym_break] = ACTIONS(3056), - [anon_sym_const] = ACTIONS(3056), - [anon_sym_continue] = ACTIONS(3056), - [anon_sym_default] = ACTIONS(3056), - [anon_sym_enum] = ACTIONS(3056), - [anon_sym_fn] = ACTIONS(3056), - [anon_sym_for] = ACTIONS(3056), - [anon_sym_gen] = ACTIONS(3056), - [anon_sym_if] = ACTIONS(3056), - [anon_sym_impl] = ACTIONS(3056), - [anon_sym_let] = ACTIONS(3056), - [anon_sym_loop] = ACTIONS(3056), - [anon_sym_match] = ACTIONS(3056), - [anon_sym_mod] = ACTIONS(3056), - [anon_sym_pub] = ACTIONS(3056), - [anon_sym_return] = ACTIONS(3056), - [anon_sym_static] = ACTIONS(3056), - [anon_sym_struct] = ACTIONS(3056), - [anon_sym_trait] = ACTIONS(3056), - [anon_sym_type] = ACTIONS(3056), - [anon_sym_union] = ACTIONS(3056), - [anon_sym_unsafe] = ACTIONS(3056), - [anon_sym_use] = ACTIONS(3056), - [anon_sym_while] = ACTIONS(3056), - [anon_sym_extern] = ACTIONS(3056), - [anon_sym_yield] = ACTIONS(3056), - [anon_sym_move] = ACTIONS(3056), - [anon_sym_try] = ACTIONS(3056), - [sym_integer_literal] = ACTIONS(3054), - [aux_sym_string_literal_token1] = ACTIONS(3054), - [sym_char_literal] = ACTIONS(3054), - [anon_sym_true] = ACTIONS(3056), - [anon_sym_false] = ACTIONS(3056), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3056), - [sym_super] = ACTIONS(3056), - [sym_crate] = ACTIONS(3056), - [sym_metavariable] = ACTIONS(3054), - [sym__raw_string_literal_start] = ACTIONS(3054), - [sym_float_literal] = ACTIONS(3054), + [ts_builtin_sym_end] = ACTIONS(2881), + [sym_identifier] = ACTIONS(2883), + [anon_sym_SEMI] = ACTIONS(2881), + [anon_sym_macro_rules_BANG] = ACTIONS(2881), + [anon_sym_LPAREN] = ACTIONS(2881), + [anon_sym_LBRACK] = ACTIONS(2881), + [anon_sym_LBRACE] = ACTIONS(2881), + [anon_sym_RBRACE] = ACTIONS(2881), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_u8] = ACTIONS(2883), + [anon_sym_i8] = ACTIONS(2883), + [anon_sym_u16] = ACTIONS(2883), + [anon_sym_i16] = ACTIONS(2883), + [anon_sym_u32] = ACTIONS(2883), + [anon_sym_i32] = ACTIONS(2883), + [anon_sym_u64] = ACTIONS(2883), + [anon_sym_i64] = ACTIONS(2883), + [anon_sym_u128] = ACTIONS(2883), + [anon_sym_i128] = ACTIONS(2883), + [anon_sym_isize] = ACTIONS(2883), + [anon_sym_usize] = ACTIONS(2883), + [anon_sym_f32] = ACTIONS(2883), + [anon_sym_f64] = ACTIONS(2883), + [anon_sym_bool] = ACTIONS(2883), + [anon_sym_str] = ACTIONS(2883), + [anon_sym_char] = ACTIONS(2883), + [anon_sym_DASH] = ACTIONS(2881), + [anon_sym_BANG] = ACTIONS(2881), + [anon_sym_AMP] = ACTIONS(2881), + [anon_sym_PIPE] = ACTIONS(2881), + [anon_sym_LT] = ACTIONS(2881), + [anon_sym_DOT_DOT] = ACTIONS(2881), + [anon_sym_COLON_COLON] = ACTIONS(2881), + [anon_sym_POUND] = ACTIONS(2881), + [anon_sym_SQUOTE] = ACTIONS(2883), + [anon_sym_async] = ACTIONS(2883), + [anon_sym_break] = ACTIONS(2883), + [anon_sym_const] = ACTIONS(2883), + [anon_sym_continue] = ACTIONS(2883), + [anon_sym_default] = ACTIONS(2883), + [anon_sym_enum] = ACTIONS(2883), + [anon_sym_fn] = ACTIONS(2883), + [anon_sym_for] = ACTIONS(2883), + [anon_sym_gen] = ACTIONS(2883), + [anon_sym_if] = ACTIONS(2883), + [anon_sym_impl] = ACTIONS(2883), + [anon_sym_let] = ACTIONS(2883), + [anon_sym_loop] = ACTIONS(2883), + [anon_sym_match] = ACTIONS(2883), + [anon_sym_mod] = ACTIONS(2883), + [anon_sym_pub] = ACTIONS(2883), + [anon_sym_return] = ACTIONS(2883), + [anon_sym_static] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(2883), + [anon_sym_trait] = ACTIONS(2883), + [anon_sym_type] = ACTIONS(2883), + [anon_sym_union] = ACTIONS(2883), + [anon_sym_unsafe] = ACTIONS(2883), + [anon_sym_use] = ACTIONS(2883), + [anon_sym_while] = ACTIONS(2883), + [anon_sym_extern] = ACTIONS(2883), + [anon_sym_yield] = ACTIONS(2883), + [anon_sym_move] = ACTIONS(2883), + [anon_sym_try] = ACTIONS(2883), + [sym_integer_literal] = ACTIONS(2881), + [aux_sym_string_literal_token1] = ACTIONS(2881), + [sym_char_literal] = ACTIONS(2881), + [anon_sym_true] = ACTIONS(2883), + [anon_sym_false] = ACTIONS(2883), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2883), + [sym_super] = ACTIONS(2883), + [sym_crate] = ACTIONS(2883), + [sym_metavariable] = ACTIONS(2881), + [sym__raw_string_literal_start] = ACTIONS(2881), + [sym_float_literal] = ACTIONS(2881), }, [STATE(786)] = { [sym_line_comment] = STATE(786), [sym_block_comment] = STATE(786), - [ts_builtin_sym_end] = ACTIONS(3058), - [sym_identifier] = ACTIONS(3060), - [anon_sym_SEMI] = ACTIONS(3058), - [anon_sym_macro_rules_BANG] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(3058), - [anon_sym_LBRACK] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3058), - [anon_sym_RBRACE] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_u8] = ACTIONS(3060), - [anon_sym_i8] = ACTIONS(3060), - [anon_sym_u16] = ACTIONS(3060), - [anon_sym_i16] = ACTIONS(3060), - [anon_sym_u32] = ACTIONS(3060), - [anon_sym_i32] = ACTIONS(3060), - [anon_sym_u64] = ACTIONS(3060), - [anon_sym_i64] = ACTIONS(3060), - [anon_sym_u128] = ACTIONS(3060), - [anon_sym_i128] = ACTIONS(3060), - [anon_sym_isize] = ACTIONS(3060), - [anon_sym_usize] = ACTIONS(3060), - [anon_sym_f32] = ACTIONS(3060), - [anon_sym_f64] = ACTIONS(3060), - [anon_sym_bool] = ACTIONS(3060), - [anon_sym_str] = ACTIONS(3060), - [anon_sym_char] = ACTIONS(3060), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_BANG] = ACTIONS(3058), - [anon_sym_AMP] = ACTIONS(3058), - [anon_sym_PIPE] = ACTIONS(3058), - [anon_sym_LT] = ACTIONS(3058), - [anon_sym_DOT_DOT] = ACTIONS(3058), - [anon_sym_COLON_COLON] = ACTIONS(3058), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(3060), - [anon_sym_break] = ACTIONS(3060), - [anon_sym_const] = ACTIONS(3060), - [anon_sym_continue] = ACTIONS(3060), - [anon_sym_default] = ACTIONS(3060), - [anon_sym_enum] = ACTIONS(3060), - [anon_sym_fn] = ACTIONS(3060), - [anon_sym_for] = ACTIONS(3060), - [anon_sym_gen] = ACTIONS(3060), - [anon_sym_if] = ACTIONS(3060), - [anon_sym_impl] = ACTIONS(3060), - [anon_sym_let] = ACTIONS(3060), - [anon_sym_loop] = ACTIONS(3060), - [anon_sym_match] = ACTIONS(3060), - [anon_sym_mod] = ACTIONS(3060), - [anon_sym_pub] = ACTIONS(3060), - [anon_sym_return] = ACTIONS(3060), - [anon_sym_static] = ACTIONS(3060), - [anon_sym_struct] = ACTIONS(3060), - [anon_sym_trait] = ACTIONS(3060), - [anon_sym_type] = ACTIONS(3060), - [anon_sym_union] = ACTIONS(3060), - [anon_sym_unsafe] = ACTIONS(3060), - [anon_sym_use] = ACTIONS(3060), - [anon_sym_while] = ACTIONS(3060), - [anon_sym_extern] = ACTIONS(3060), - [anon_sym_yield] = ACTIONS(3060), - [anon_sym_move] = ACTIONS(3060), - [anon_sym_try] = ACTIONS(3060), - [sym_integer_literal] = ACTIONS(3058), - [aux_sym_string_literal_token1] = ACTIONS(3058), - [sym_char_literal] = ACTIONS(3058), - [anon_sym_true] = ACTIONS(3060), - [anon_sym_false] = ACTIONS(3060), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3060), - [sym_super] = ACTIONS(3060), - [sym_crate] = ACTIONS(3060), - [sym_metavariable] = ACTIONS(3058), - [sym__raw_string_literal_start] = ACTIONS(3058), - [sym_float_literal] = ACTIONS(3058), + [ts_builtin_sym_end] = ACTIONS(2885), + [sym_identifier] = ACTIONS(2887), + [anon_sym_SEMI] = ACTIONS(2885), + [anon_sym_macro_rules_BANG] = ACTIONS(2885), + [anon_sym_LPAREN] = ACTIONS(2885), + [anon_sym_LBRACK] = ACTIONS(2885), + [anon_sym_LBRACE] = ACTIONS(2885), + [anon_sym_RBRACE] = ACTIONS(2885), + [anon_sym_STAR] = ACTIONS(2885), + [anon_sym_u8] = ACTIONS(2887), + [anon_sym_i8] = ACTIONS(2887), + [anon_sym_u16] = ACTIONS(2887), + [anon_sym_i16] = ACTIONS(2887), + [anon_sym_u32] = ACTIONS(2887), + [anon_sym_i32] = ACTIONS(2887), + [anon_sym_u64] = ACTIONS(2887), + [anon_sym_i64] = ACTIONS(2887), + [anon_sym_u128] = ACTIONS(2887), + [anon_sym_i128] = ACTIONS(2887), + [anon_sym_isize] = ACTIONS(2887), + [anon_sym_usize] = ACTIONS(2887), + [anon_sym_f32] = ACTIONS(2887), + [anon_sym_f64] = ACTIONS(2887), + [anon_sym_bool] = ACTIONS(2887), + [anon_sym_str] = ACTIONS(2887), + [anon_sym_char] = ACTIONS(2887), + [anon_sym_DASH] = ACTIONS(2885), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_AMP] = ACTIONS(2885), + [anon_sym_PIPE] = ACTIONS(2885), + [anon_sym_LT] = ACTIONS(2885), + [anon_sym_DOT_DOT] = ACTIONS(2885), + [anon_sym_COLON_COLON] = ACTIONS(2885), + [anon_sym_POUND] = ACTIONS(2885), + [anon_sym_SQUOTE] = ACTIONS(2887), + [anon_sym_async] = ACTIONS(2887), + [anon_sym_break] = ACTIONS(2887), + [anon_sym_const] = ACTIONS(2887), + [anon_sym_continue] = ACTIONS(2887), + [anon_sym_default] = ACTIONS(2887), + [anon_sym_enum] = ACTIONS(2887), + [anon_sym_fn] = ACTIONS(2887), + [anon_sym_for] = ACTIONS(2887), + [anon_sym_gen] = ACTIONS(2887), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_impl] = ACTIONS(2887), + [anon_sym_let] = ACTIONS(2887), + [anon_sym_loop] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2887), + [anon_sym_mod] = ACTIONS(2887), + [anon_sym_pub] = ACTIONS(2887), + [anon_sym_return] = ACTIONS(2887), + [anon_sym_static] = ACTIONS(2887), + [anon_sym_struct] = ACTIONS(2887), + [anon_sym_trait] = ACTIONS(2887), + [anon_sym_type] = ACTIONS(2887), + [anon_sym_union] = ACTIONS(2887), + [anon_sym_unsafe] = ACTIONS(2887), + [anon_sym_use] = ACTIONS(2887), + [anon_sym_while] = ACTIONS(2887), + [anon_sym_extern] = ACTIONS(2887), + [anon_sym_yield] = ACTIONS(2887), + [anon_sym_move] = ACTIONS(2887), + [anon_sym_try] = ACTIONS(2887), + [sym_integer_literal] = ACTIONS(2885), + [aux_sym_string_literal_token1] = ACTIONS(2885), + [sym_char_literal] = ACTIONS(2885), + [anon_sym_true] = ACTIONS(2887), + [anon_sym_false] = ACTIONS(2887), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2887), + [sym_super] = ACTIONS(2887), + [sym_crate] = ACTIONS(2887), + [sym_metavariable] = ACTIONS(2885), + [sym__raw_string_literal_start] = ACTIONS(2885), + [sym_float_literal] = ACTIONS(2885), }, [STATE(787)] = { [sym_line_comment] = STATE(787), [sym_block_comment] = STATE(787), - [ts_builtin_sym_end] = ACTIONS(3062), - [sym_identifier] = ACTIONS(3064), - [anon_sym_SEMI] = ACTIONS(3062), - [anon_sym_macro_rules_BANG] = ACTIONS(3062), - [anon_sym_LPAREN] = ACTIONS(3062), - [anon_sym_LBRACK] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3062), - [anon_sym_RBRACE] = ACTIONS(3062), - [anon_sym_STAR] = ACTIONS(3062), - [anon_sym_u8] = ACTIONS(3064), - [anon_sym_i8] = ACTIONS(3064), - [anon_sym_u16] = ACTIONS(3064), - [anon_sym_i16] = ACTIONS(3064), - [anon_sym_u32] = ACTIONS(3064), - [anon_sym_i32] = ACTIONS(3064), - [anon_sym_u64] = ACTIONS(3064), - [anon_sym_i64] = ACTIONS(3064), - [anon_sym_u128] = ACTIONS(3064), - [anon_sym_i128] = ACTIONS(3064), - [anon_sym_isize] = ACTIONS(3064), - [anon_sym_usize] = ACTIONS(3064), - [anon_sym_f32] = ACTIONS(3064), - [anon_sym_f64] = ACTIONS(3064), - [anon_sym_bool] = ACTIONS(3064), - [anon_sym_str] = ACTIONS(3064), - [anon_sym_char] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3062), - [anon_sym_BANG] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3062), - [anon_sym_PIPE] = ACTIONS(3062), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_DOT_DOT] = ACTIONS(3062), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_POUND] = ACTIONS(3062), - [anon_sym_SQUOTE] = ACTIONS(3064), - [anon_sym_async] = ACTIONS(3064), - [anon_sym_break] = ACTIONS(3064), - [anon_sym_const] = ACTIONS(3064), - [anon_sym_continue] = ACTIONS(3064), - [anon_sym_default] = ACTIONS(3064), - [anon_sym_enum] = ACTIONS(3064), - [anon_sym_fn] = ACTIONS(3064), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_gen] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_impl] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3064), - [anon_sym_loop] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_mod] = ACTIONS(3064), - [anon_sym_pub] = ACTIONS(3064), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_static] = ACTIONS(3064), - [anon_sym_struct] = ACTIONS(3064), - [anon_sym_trait] = ACTIONS(3064), - [anon_sym_type] = ACTIONS(3064), - [anon_sym_union] = ACTIONS(3064), - [anon_sym_unsafe] = ACTIONS(3064), - [anon_sym_use] = ACTIONS(3064), - [anon_sym_while] = ACTIONS(3064), - [anon_sym_extern] = ACTIONS(3064), - [anon_sym_yield] = ACTIONS(3064), - [anon_sym_move] = ACTIONS(3064), - [anon_sym_try] = ACTIONS(3064), - [sym_integer_literal] = ACTIONS(3062), - [aux_sym_string_literal_token1] = ACTIONS(3062), - [sym_char_literal] = ACTIONS(3062), - [anon_sym_true] = ACTIONS(3064), - [anon_sym_false] = ACTIONS(3064), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3064), - [sym_super] = ACTIONS(3064), - [sym_crate] = ACTIONS(3064), - [sym_metavariable] = ACTIONS(3062), - [sym__raw_string_literal_start] = ACTIONS(3062), - [sym_float_literal] = ACTIONS(3062), + [ts_builtin_sym_end] = ACTIONS(2889), + [sym_identifier] = ACTIONS(2891), + [anon_sym_SEMI] = ACTIONS(2889), + [anon_sym_macro_rules_BANG] = ACTIONS(2889), + [anon_sym_LPAREN] = ACTIONS(2889), + [anon_sym_LBRACK] = ACTIONS(2889), + [anon_sym_LBRACE] = ACTIONS(2889), + [anon_sym_RBRACE] = ACTIONS(2889), + [anon_sym_STAR] = ACTIONS(2889), + [anon_sym_u8] = ACTIONS(2891), + [anon_sym_i8] = ACTIONS(2891), + [anon_sym_u16] = ACTIONS(2891), + [anon_sym_i16] = ACTIONS(2891), + [anon_sym_u32] = ACTIONS(2891), + [anon_sym_i32] = ACTIONS(2891), + [anon_sym_u64] = ACTIONS(2891), + [anon_sym_i64] = ACTIONS(2891), + [anon_sym_u128] = ACTIONS(2891), + [anon_sym_i128] = ACTIONS(2891), + [anon_sym_isize] = ACTIONS(2891), + [anon_sym_usize] = ACTIONS(2891), + [anon_sym_f32] = ACTIONS(2891), + [anon_sym_f64] = ACTIONS(2891), + [anon_sym_bool] = ACTIONS(2891), + [anon_sym_str] = ACTIONS(2891), + [anon_sym_char] = ACTIONS(2891), + [anon_sym_DASH] = ACTIONS(2889), + [anon_sym_BANG] = ACTIONS(2889), + [anon_sym_AMP] = ACTIONS(2889), + [anon_sym_PIPE] = ACTIONS(2889), + [anon_sym_LT] = ACTIONS(2889), + [anon_sym_DOT_DOT] = ACTIONS(2889), + [anon_sym_COLON_COLON] = ACTIONS(2889), + [anon_sym_POUND] = ACTIONS(2889), + [anon_sym_SQUOTE] = ACTIONS(2891), + [anon_sym_async] = ACTIONS(2891), + [anon_sym_break] = ACTIONS(2891), + [anon_sym_const] = ACTIONS(2891), + [anon_sym_continue] = ACTIONS(2891), + [anon_sym_default] = ACTIONS(2891), + [anon_sym_enum] = ACTIONS(2891), + [anon_sym_fn] = ACTIONS(2891), + [anon_sym_for] = ACTIONS(2891), + [anon_sym_gen] = ACTIONS(2891), + [anon_sym_if] = ACTIONS(2891), + [anon_sym_impl] = ACTIONS(2891), + [anon_sym_let] = ACTIONS(2891), + [anon_sym_loop] = ACTIONS(2891), + [anon_sym_match] = ACTIONS(2891), + [anon_sym_mod] = ACTIONS(2891), + [anon_sym_pub] = ACTIONS(2891), + [anon_sym_return] = ACTIONS(2891), + [anon_sym_static] = ACTIONS(2891), + [anon_sym_struct] = ACTIONS(2891), + [anon_sym_trait] = ACTIONS(2891), + [anon_sym_type] = ACTIONS(2891), + [anon_sym_union] = ACTIONS(2891), + [anon_sym_unsafe] = ACTIONS(2891), + [anon_sym_use] = ACTIONS(2891), + [anon_sym_while] = ACTIONS(2891), + [anon_sym_extern] = ACTIONS(2891), + [anon_sym_yield] = ACTIONS(2891), + [anon_sym_move] = ACTIONS(2891), + [anon_sym_try] = ACTIONS(2891), + [sym_integer_literal] = ACTIONS(2889), + [aux_sym_string_literal_token1] = ACTIONS(2889), + [sym_char_literal] = ACTIONS(2889), + [anon_sym_true] = ACTIONS(2891), + [anon_sym_false] = ACTIONS(2891), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2891), + [sym_super] = ACTIONS(2891), + [sym_crate] = ACTIONS(2891), + [sym_metavariable] = ACTIONS(2889), + [sym__raw_string_literal_start] = ACTIONS(2889), + [sym_float_literal] = ACTIONS(2889), }, [STATE(788)] = { - [sym_attribute_item] = STATE(1254), - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_const_parameter] = STATE(2971), - [sym_type_parameter] = STATE(2971), - [sym_lifetime_parameter] = STATE(2971), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2926), - [sym_bracketed_type] = STATE(3752), - [sym_qualified_type] = STATE(3704), - [sym_lifetime] = STATE(2612), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(788), [sym_block_comment] = STATE(788), - [aux_sym_enum_variant_list_repeat1] = STATE(2169), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3066), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_POUND] = ACTIONS(3068), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(3072), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(3074), + [ts_builtin_sym_end] = ACTIONS(2893), + [sym_identifier] = ACTIONS(2895), + [anon_sym_SEMI] = ACTIONS(2893), + [anon_sym_macro_rules_BANG] = ACTIONS(2893), + [anon_sym_LPAREN] = ACTIONS(2893), + [anon_sym_LBRACK] = ACTIONS(2893), + [anon_sym_LBRACE] = ACTIONS(2893), + [anon_sym_RBRACE] = ACTIONS(2893), + [anon_sym_STAR] = ACTIONS(2893), + [anon_sym_u8] = ACTIONS(2895), + [anon_sym_i8] = ACTIONS(2895), + [anon_sym_u16] = ACTIONS(2895), + [anon_sym_i16] = ACTIONS(2895), + [anon_sym_u32] = ACTIONS(2895), + [anon_sym_i32] = ACTIONS(2895), + [anon_sym_u64] = ACTIONS(2895), + [anon_sym_i64] = ACTIONS(2895), + [anon_sym_u128] = ACTIONS(2895), + [anon_sym_i128] = ACTIONS(2895), + [anon_sym_isize] = ACTIONS(2895), + [anon_sym_usize] = ACTIONS(2895), + [anon_sym_f32] = ACTIONS(2895), + [anon_sym_f64] = ACTIONS(2895), + [anon_sym_bool] = ACTIONS(2895), + [anon_sym_str] = ACTIONS(2895), + [anon_sym_char] = ACTIONS(2895), + [anon_sym_DASH] = ACTIONS(2893), + [anon_sym_BANG] = ACTIONS(2893), + [anon_sym_AMP] = ACTIONS(2893), + [anon_sym_PIPE] = ACTIONS(2893), + [anon_sym_LT] = ACTIONS(2893), + [anon_sym_DOT_DOT] = ACTIONS(2893), + [anon_sym_COLON_COLON] = ACTIONS(2893), + [anon_sym_POUND] = ACTIONS(2893), + [anon_sym_SQUOTE] = ACTIONS(2895), + [anon_sym_async] = ACTIONS(2895), + [anon_sym_break] = ACTIONS(2895), + [anon_sym_const] = ACTIONS(2895), + [anon_sym_continue] = ACTIONS(2895), + [anon_sym_default] = ACTIONS(2895), + [anon_sym_enum] = ACTIONS(2895), + [anon_sym_fn] = ACTIONS(2895), + [anon_sym_for] = ACTIONS(2895), + [anon_sym_gen] = ACTIONS(2895), + [anon_sym_if] = ACTIONS(2895), + [anon_sym_impl] = ACTIONS(2895), + [anon_sym_let] = ACTIONS(2895), + [anon_sym_loop] = ACTIONS(2895), + [anon_sym_match] = ACTIONS(2895), + [anon_sym_mod] = ACTIONS(2895), + [anon_sym_pub] = ACTIONS(2895), + [anon_sym_return] = ACTIONS(2895), + [anon_sym_static] = ACTIONS(2895), + [anon_sym_struct] = ACTIONS(2895), + [anon_sym_trait] = ACTIONS(2895), + [anon_sym_type] = ACTIONS(2895), + [anon_sym_union] = ACTIONS(2895), + [anon_sym_unsafe] = ACTIONS(2895), + [anon_sym_use] = ACTIONS(2895), + [anon_sym_while] = ACTIONS(2895), + [anon_sym_extern] = ACTIONS(2895), + [anon_sym_yield] = ACTIONS(2895), + [anon_sym_move] = ACTIONS(2895), + [anon_sym_try] = ACTIONS(2895), + [sym_integer_literal] = ACTIONS(2893), + [aux_sym_string_literal_token1] = ACTIONS(2893), + [sym_char_literal] = ACTIONS(2893), + [anon_sym_true] = ACTIONS(2895), + [anon_sym_false] = ACTIONS(2895), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2895), + [sym_super] = ACTIONS(2895), + [sym_crate] = ACTIONS(2895), + [sym_metavariable] = ACTIONS(2893), + [sym__raw_string_literal_start] = ACTIONS(2893), + [sym_float_literal] = ACTIONS(2893), }, [STATE(789)] = { - [sym_attribute_item] = STATE(1254), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym_visibility_modifier] = STATE(900), - [sym__type] = STATE(2834), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(789), [sym_block_comment] = STATE(789), - [aux_sym_enum_variant_list_repeat1] = STATE(802), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_RPAREN] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COMMA] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_POUND] = ACTIONS(3068), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_pub] = ACTIONS(3086), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(3088), - [sym_metavariable] = ACTIONS(1647), + [ts_builtin_sym_end] = ACTIONS(2897), + [sym_identifier] = ACTIONS(2899), + [anon_sym_SEMI] = ACTIONS(2897), + [anon_sym_macro_rules_BANG] = ACTIONS(2897), + [anon_sym_LPAREN] = ACTIONS(2897), + [anon_sym_LBRACK] = ACTIONS(2897), + [anon_sym_LBRACE] = ACTIONS(2897), + [anon_sym_RBRACE] = ACTIONS(2897), + [anon_sym_STAR] = ACTIONS(2897), + [anon_sym_u8] = ACTIONS(2899), + [anon_sym_i8] = ACTIONS(2899), + [anon_sym_u16] = ACTIONS(2899), + [anon_sym_i16] = ACTIONS(2899), + [anon_sym_u32] = ACTIONS(2899), + [anon_sym_i32] = ACTIONS(2899), + [anon_sym_u64] = ACTIONS(2899), + [anon_sym_i64] = ACTIONS(2899), + [anon_sym_u128] = ACTIONS(2899), + [anon_sym_i128] = ACTIONS(2899), + [anon_sym_isize] = ACTIONS(2899), + [anon_sym_usize] = ACTIONS(2899), + [anon_sym_f32] = ACTIONS(2899), + [anon_sym_f64] = ACTIONS(2899), + [anon_sym_bool] = ACTIONS(2899), + [anon_sym_str] = ACTIONS(2899), + [anon_sym_char] = ACTIONS(2899), + [anon_sym_DASH] = ACTIONS(2897), + [anon_sym_BANG] = ACTIONS(2897), + [anon_sym_AMP] = ACTIONS(2897), + [anon_sym_PIPE] = ACTIONS(2897), + [anon_sym_LT] = ACTIONS(2897), + [anon_sym_DOT_DOT] = ACTIONS(2897), + [anon_sym_COLON_COLON] = ACTIONS(2897), + [anon_sym_POUND] = ACTIONS(2897), + [anon_sym_SQUOTE] = ACTIONS(2899), + [anon_sym_async] = ACTIONS(2899), + [anon_sym_break] = ACTIONS(2899), + [anon_sym_const] = ACTIONS(2899), + [anon_sym_continue] = ACTIONS(2899), + [anon_sym_default] = ACTIONS(2899), + [anon_sym_enum] = ACTIONS(2899), + [anon_sym_fn] = ACTIONS(2899), + [anon_sym_for] = ACTIONS(2899), + [anon_sym_gen] = ACTIONS(2899), + [anon_sym_if] = ACTIONS(2899), + [anon_sym_impl] = ACTIONS(2899), + [anon_sym_let] = ACTIONS(2899), + [anon_sym_loop] = ACTIONS(2899), + [anon_sym_match] = ACTIONS(2899), + [anon_sym_mod] = ACTIONS(2899), + [anon_sym_pub] = ACTIONS(2899), + [anon_sym_return] = ACTIONS(2899), + [anon_sym_static] = ACTIONS(2899), + [anon_sym_struct] = ACTIONS(2899), + [anon_sym_trait] = ACTIONS(2899), + [anon_sym_type] = ACTIONS(2899), + [anon_sym_union] = ACTIONS(2899), + [anon_sym_unsafe] = ACTIONS(2899), + [anon_sym_use] = ACTIONS(2899), + [anon_sym_while] = ACTIONS(2899), + [anon_sym_extern] = ACTIONS(2899), + [anon_sym_yield] = ACTIONS(2899), + [anon_sym_move] = ACTIONS(2899), + [anon_sym_try] = ACTIONS(2899), + [sym_integer_literal] = ACTIONS(2897), + [aux_sym_string_literal_token1] = ACTIONS(2897), + [sym_char_literal] = ACTIONS(2897), + [anon_sym_true] = ACTIONS(2899), + [anon_sym_false] = ACTIONS(2899), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2899), + [sym_super] = ACTIONS(2899), + [sym_crate] = ACTIONS(2899), + [sym_metavariable] = ACTIONS(2897), + [sym__raw_string_literal_start] = ACTIONS(2897), + [sym_float_literal] = ACTIONS(2897), }, [STATE(790)] = { - [sym_attribute_item] = STATE(1254), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym_visibility_modifier] = STATE(944), - [sym__type] = STATE(3026), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(790), [sym_block_comment] = STATE(790), - [aux_sym_enum_variant_list_repeat1] = STATE(797), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_RPAREN] = ACTIONS(3090), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_POUND] = ACTIONS(3068), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_pub] = ACTIONS(3086), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(3088), - [sym_metavariable] = ACTIONS(1647), + [ts_builtin_sym_end] = ACTIONS(2901), + [sym_identifier] = ACTIONS(2903), + [anon_sym_SEMI] = ACTIONS(2901), + [anon_sym_macro_rules_BANG] = ACTIONS(2901), + [anon_sym_LPAREN] = ACTIONS(2901), + [anon_sym_LBRACK] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_RBRACE] = ACTIONS(2901), + [anon_sym_STAR] = ACTIONS(2901), + [anon_sym_u8] = ACTIONS(2903), + [anon_sym_i8] = ACTIONS(2903), + [anon_sym_u16] = ACTIONS(2903), + [anon_sym_i16] = ACTIONS(2903), + [anon_sym_u32] = ACTIONS(2903), + [anon_sym_i32] = ACTIONS(2903), + [anon_sym_u64] = ACTIONS(2903), + [anon_sym_i64] = ACTIONS(2903), + [anon_sym_u128] = ACTIONS(2903), + [anon_sym_i128] = ACTIONS(2903), + [anon_sym_isize] = ACTIONS(2903), + [anon_sym_usize] = ACTIONS(2903), + [anon_sym_f32] = ACTIONS(2903), + [anon_sym_f64] = ACTIONS(2903), + [anon_sym_bool] = ACTIONS(2903), + [anon_sym_str] = ACTIONS(2903), + [anon_sym_char] = ACTIONS(2903), + [anon_sym_DASH] = ACTIONS(2901), + [anon_sym_BANG] = ACTIONS(2901), + [anon_sym_AMP] = ACTIONS(2901), + [anon_sym_PIPE] = ACTIONS(2901), + [anon_sym_LT] = ACTIONS(2901), + [anon_sym_DOT_DOT] = ACTIONS(2901), + [anon_sym_COLON_COLON] = ACTIONS(2901), + [anon_sym_POUND] = ACTIONS(2901), + [anon_sym_SQUOTE] = ACTIONS(2903), + [anon_sym_async] = ACTIONS(2903), + [anon_sym_break] = ACTIONS(2903), + [anon_sym_const] = ACTIONS(2903), + [anon_sym_continue] = ACTIONS(2903), + [anon_sym_default] = ACTIONS(2903), + [anon_sym_enum] = ACTIONS(2903), + [anon_sym_fn] = ACTIONS(2903), + [anon_sym_for] = ACTIONS(2903), + [anon_sym_gen] = ACTIONS(2903), + [anon_sym_if] = ACTIONS(2903), + [anon_sym_impl] = ACTIONS(2903), + [anon_sym_let] = ACTIONS(2903), + [anon_sym_loop] = ACTIONS(2903), + [anon_sym_match] = ACTIONS(2903), + [anon_sym_mod] = ACTIONS(2903), + [anon_sym_pub] = ACTIONS(2903), + [anon_sym_return] = ACTIONS(2903), + [anon_sym_static] = ACTIONS(2903), + [anon_sym_struct] = ACTIONS(2903), + [anon_sym_trait] = ACTIONS(2903), + [anon_sym_type] = ACTIONS(2903), + [anon_sym_union] = ACTIONS(2903), + [anon_sym_unsafe] = ACTIONS(2903), + [anon_sym_use] = ACTIONS(2903), + [anon_sym_while] = ACTIONS(2903), + [anon_sym_extern] = ACTIONS(2903), + [anon_sym_yield] = ACTIONS(2903), + [anon_sym_move] = ACTIONS(2903), + [anon_sym_try] = ACTIONS(2903), + [sym_integer_literal] = ACTIONS(2901), + [aux_sym_string_literal_token1] = ACTIONS(2901), + [sym_char_literal] = ACTIONS(2901), + [anon_sym_true] = ACTIONS(2903), + [anon_sym_false] = ACTIONS(2903), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2903), + [sym_super] = ACTIONS(2903), + [sym_crate] = ACTIONS(2903), + [sym_metavariable] = ACTIONS(2901), + [sym__raw_string_literal_start] = ACTIONS(2901), + [sym_float_literal] = ACTIONS(2901), }, [STATE(791)] = { - [sym_attribute_item] = STATE(1254), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym_visibility_modifier] = STATE(944), - [sym__type] = STATE(3026), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(791), [sym_block_comment] = STATE(791), - [aux_sym_enum_variant_list_repeat1] = STATE(797), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_RPAREN] = ACTIONS(3092), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_POUND] = ACTIONS(3068), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_pub] = ACTIONS(3086), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(3088), - [sym_metavariable] = ACTIONS(1647), + [ts_builtin_sym_end] = ACTIONS(2905), + [sym_identifier] = ACTIONS(2907), + [anon_sym_SEMI] = ACTIONS(2905), + [anon_sym_macro_rules_BANG] = ACTIONS(2905), + [anon_sym_LPAREN] = ACTIONS(2905), + [anon_sym_LBRACK] = ACTIONS(2905), + [anon_sym_LBRACE] = ACTIONS(2905), + [anon_sym_RBRACE] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2905), + [anon_sym_u8] = ACTIONS(2907), + [anon_sym_i8] = ACTIONS(2907), + [anon_sym_u16] = ACTIONS(2907), + [anon_sym_i16] = ACTIONS(2907), + [anon_sym_u32] = ACTIONS(2907), + [anon_sym_i32] = ACTIONS(2907), + [anon_sym_u64] = ACTIONS(2907), + [anon_sym_i64] = ACTIONS(2907), + [anon_sym_u128] = ACTIONS(2907), + [anon_sym_i128] = ACTIONS(2907), + [anon_sym_isize] = ACTIONS(2907), + [anon_sym_usize] = ACTIONS(2907), + [anon_sym_f32] = ACTIONS(2907), + [anon_sym_f64] = ACTIONS(2907), + [anon_sym_bool] = ACTIONS(2907), + [anon_sym_str] = ACTIONS(2907), + [anon_sym_char] = ACTIONS(2907), + [anon_sym_DASH] = ACTIONS(2905), + [anon_sym_BANG] = ACTIONS(2905), + [anon_sym_AMP] = ACTIONS(2905), + [anon_sym_PIPE] = ACTIONS(2905), + [anon_sym_LT] = ACTIONS(2905), + [anon_sym_DOT_DOT] = ACTIONS(2905), + [anon_sym_COLON_COLON] = ACTIONS(2905), + [anon_sym_POUND] = ACTIONS(2905), + [anon_sym_SQUOTE] = ACTIONS(2907), + [anon_sym_async] = ACTIONS(2907), + [anon_sym_break] = ACTIONS(2907), + [anon_sym_const] = ACTIONS(2907), + [anon_sym_continue] = ACTIONS(2907), + [anon_sym_default] = ACTIONS(2907), + [anon_sym_enum] = ACTIONS(2907), + [anon_sym_fn] = ACTIONS(2907), + [anon_sym_for] = ACTIONS(2907), + [anon_sym_gen] = ACTIONS(2907), + [anon_sym_if] = ACTIONS(2907), + [anon_sym_impl] = ACTIONS(2907), + [anon_sym_let] = ACTIONS(2907), + [anon_sym_loop] = ACTIONS(2907), + [anon_sym_match] = ACTIONS(2907), + [anon_sym_mod] = ACTIONS(2907), + [anon_sym_pub] = ACTIONS(2907), + [anon_sym_return] = ACTIONS(2907), + [anon_sym_static] = ACTIONS(2907), + [anon_sym_struct] = ACTIONS(2907), + [anon_sym_trait] = ACTIONS(2907), + [anon_sym_type] = ACTIONS(2907), + [anon_sym_union] = ACTIONS(2907), + [anon_sym_unsafe] = ACTIONS(2907), + [anon_sym_use] = ACTIONS(2907), + [anon_sym_while] = ACTIONS(2907), + [anon_sym_extern] = ACTIONS(2907), + [anon_sym_yield] = ACTIONS(2907), + [anon_sym_move] = ACTIONS(2907), + [anon_sym_try] = ACTIONS(2907), + [sym_integer_literal] = ACTIONS(2905), + [aux_sym_string_literal_token1] = ACTIONS(2905), + [sym_char_literal] = ACTIONS(2905), + [anon_sym_true] = ACTIONS(2907), + [anon_sym_false] = ACTIONS(2907), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2907), + [sym_super] = ACTIONS(2907), + [sym_crate] = ACTIONS(2907), + [sym_metavariable] = ACTIONS(2905), + [sym__raw_string_literal_start] = ACTIONS(2905), + [sym_float_literal] = ACTIONS(2905), }, [STATE(792)] = { - [sym_attribute_item] = STATE(1254), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym_visibility_modifier] = STATE(944), - [sym__type] = STATE(3026), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(792), [sym_block_comment] = STATE(792), - [aux_sym_enum_variant_list_repeat1] = STATE(797), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_RPAREN] = ACTIONS(3094), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_POUND] = ACTIONS(3068), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_pub] = ACTIONS(3086), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(3088), - [sym_metavariable] = ACTIONS(1647), + [ts_builtin_sym_end] = ACTIONS(2909), + [sym_identifier] = ACTIONS(2911), + [anon_sym_SEMI] = ACTIONS(2909), + [anon_sym_macro_rules_BANG] = ACTIONS(2909), + [anon_sym_LPAREN] = ACTIONS(2909), + [anon_sym_LBRACK] = ACTIONS(2909), + [anon_sym_LBRACE] = ACTIONS(2909), + [anon_sym_RBRACE] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2909), + [anon_sym_u8] = ACTIONS(2911), + [anon_sym_i8] = ACTIONS(2911), + [anon_sym_u16] = ACTIONS(2911), + [anon_sym_i16] = ACTIONS(2911), + [anon_sym_u32] = ACTIONS(2911), + [anon_sym_i32] = ACTIONS(2911), + [anon_sym_u64] = ACTIONS(2911), + [anon_sym_i64] = ACTIONS(2911), + [anon_sym_u128] = ACTIONS(2911), + [anon_sym_i128] = ACTIONS(2911), + [anon_sym_isize] = ACTIONS(2911), + [anon_sym_usize] = ACTIONS(2911), + [anon_sym_f32] = ACTIONS(2911), + [anon_sym_f64] = ACTIONS(2911), + [anon_sym_bool] = ACTIONS(2911), + [anon_sym_str] = ACTIONS(2911), + [anon_sym_char] = ACTIONS(2911), + [anon_sym_DASH] = ACTIONS(2909), + [anon_sym_BANG] = ACTIONS(2909), + [anon_sym_AMP] = ACTIONS(2909), + [anon_sym_PIPE] = ACTIONS(2909), + [anon_sym_LT] = ACTIONS(2909), + [anon_sym_DOT_DOT] = ACTIONS(2909), + [anon_sym_COLON_COLON] = ACTIONS(2909), + [anon_sym_POUND] = ACTIONS(2909), + [anon_sym_SQUOTE] = ACTIONS(2911), + [anon_sym_async] = ACTIONS(2911), + [anon_sym_break] = ACTIONS(2911), + [anon_sym_const] = ACTIONS(2911), + [anon_sym_continue] = ACTIONS(2911), + [anon_sym_default] = ACTIONS(2911), + [anon_sym_enum] = ACTIONS(2911), + [anon_sym_fn] = ACTIONS(2911), + [anon_sym_for] = ACTIONS(2911), + [anon_sym_gen] = ACTIONS(2911), + [anon_sym_if] = ACTIONS(2911), + [anon_sym_impl] = ACTIONS(2911), + [anon_sym_let] = ACTIONS(2911), + [anon_sym_loop] = ACTIONS(2911), + [anon_sym_match] = ACTIONS(2911), + [anon_sym_mod] = ACTIONS(2911), + [anon_sym_pub] = ACTIONS(2911), + [anon_sym_return] = ACTIONS(2911), + [anon_sym_static] = ACTIONS(2911), + [anon_sym_struct] = ACTIONS(2911), + [anon_sym_trait] = ACTIONS(2911), + [anon_sym_type] = ACTIONS(2911), + [anon_sym_union] = ACTIONS(2911), + [anon_sym_unsafe] = ACTIONS(2911), + [anon_sym_use] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2911), + [anon_sym_extern] = ACTIONS(2911), + [anon_sym_yield] = ACTIONS(2911), + [anon_sym_move] = ACTIONS(2911), + [anon_sym_try] = ACTIONS(2911), + [sym_integer_literal] = ACTIONS(2909), + [aux_sym_string_literal_token1] = ACTIONS(2909), + [sym_char_literal] = ACTIONS(2909), + [anon_sym_true] = ACTIONS(2911), + [anon_sym_false] = ACTIONS(2911), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2911), + [sym_super] = ACTIONS(2911), + [sym_crate] = ACTIONS(2911), + [sym_metavariable] = ACTIONS(2909), + [sym__raw_string_literal_start] = ACTIONS(2909), + [sym_float_literal] = ACTIONS(2909), }, [STATE(793)] = { - [sym_attribute_item] = STATE(1254), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym_visibility_modifier] = STATE(944), - [sym__type] = STATE(3026), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(793), [sym_block_comment] = STATE(793), - [aux_sym_enum_variant_list_repeat1] = STATE(797), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_RPAREN] = ACTIONS(3096), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_POUND] = ACTIONS(3068), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_pub] = ACTIONS(3086), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(3088), - [sym_metavariable] = ACTIONS(1647), + [ts_builtin_sym_end] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2915), + [anon_sym_SEMI] = ACTIONS(2913), + [anon_sym_macro_rules_BANG] = ACTIONS(2913), + [anon_sym_LPAREN] = ACTIONS(2913), + [anon_sym_LBRACK] = ACTIONS(2913), + [anon_sym_LBRACE] = ACTIONS(2913), + [anon_sym_RBRACE] = ACTIONS(2913), + [anon_sym_STAR] = ACTIONS(2913), + [anon_sym_u8] = ACTIONS(2915), + [anon_sym_i8] = ACTIONS(2915), + [anon_sym_u16] = ACTIONS(2915), + [anon_sym_i16] = ACTIONS(2915), + [anon_sym_u32] = ACTIONS(2915), + [anon_sym_i32] = ACTIONS(2915), + [anon_sym_u64] = ACTIONS(2915), + [anon_sym_i64] = ACTIONS(2915), + [anon_sym_u128] = ACTIONS(2915), + [anon_sym_i128] = ACTIONS(2915), + [anon_sym_isize] = ACTIONS(2915), + [anon_sym_usize] = ACTIONS(2915), + [anon_sym_f32] = ACTIONS(2915), + [anon_sym_f64] = ACTIONS(2915), + [anon_sym_bool] = ACTIONS(2915), + [anon_sym_str] = ACTIONS(2915), + [anon_sym_char] = ACTIONS(2915), + [anon_sym_DASH] = ACTIONS(2913), + [anon_sym_BANG] = ACTIONS(2913), + [anon_sym_AMP] = ACTIONS(2913), + [anon_sym_PIPE] = ACTIONS(2913), + [anon_sym_LT] = ACTIONS(2913), + [anon_sym_DOT_DOT] = ACTIONS(2913), + [anon_sym_COLON_COLON] = ACTIONS(2913), + [anon_sym_POUND] = ACTIONS(2913), + [anon_sym_SQUOTE] = ACTIONS(2915), + [anon_sym_async] = ACTIONS(2915), + [anon_sym_break] = ACTIONS(2915), + [anon_sym_const] = ACTIONS(2915), + [anon_sym_continue] = ACTIONS(2915), + [anon_sym_default] = ACTIONS(2915), + [anon_sym_enum] = ACTIONS(2915), + [anon_sym_fn] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2915), + [anon_sym_gen] = ACTIONS(2915), + [anon_sym_if] = ACTIONS(2915), + [anon_sym_impl] = ACTIONS(2915), + [anon_sym_let] = ACTIONS(2915), + [anon_sym_loop] = ACTIONS(2915), + [anon_sym_match] = ACTIONS(2915), + [anon_sym_mod] = ACTIONS(2915), + [anon_sym_pub] = ACTIONS(2915), + [anon_sym_return] = ACTIONS(2915), + [anon_sym_static] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(2915), + [anon_sym_trait] = ACTIONS(2915), + [anon_sym_type] = ACTIONS(2915), + [anon_sym_union] = ACTIONS(2915), + [anon_sym_unsafe] = ACTIONS(2915), + [anon_sym_use] = ACTIONS(2915), + [anon_sym_while] = ACTIONS(2915), + [anon_sym_extern] = ACTIONS(2915), + [anon_sym_yield] = ACTIONS(2915), + [anon_sym_move] = ACTIONS(2915), + [anon_sym_try] = ACTIONS(2915), + [sym_integer_literal] = ACTIONS(2913), + [aux_sym_string_literal_token1] = ACTIONS(2913), + [sym_char_literal] = ACTIONS(2913), + [anon_sym_true] = ACTIONS(2915), + [anon_sym_false] = ACTIONS(2915), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2915), + [sym_super] = ACTIONS(2915), + [sym_crate] = ACTIONS(2915), + [sym_metavariable] = ACTIONS(2913), + [sym__raw_string_literal_start] = ACTIONS(2913), + [sym_float_literal] = ACTIONS(2913), }, [STATE(794)] = { - [sym_attribute_item] = STATE(1254), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym_visibility_modifier] = STATE(944), - [sym__type] = STATE(3026), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(794), [sym_block_comment] = STATE(794), - [aux_sym_enum_variant_list_repeat1] = STATE(797), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_RPAREN] = ACTIONS(3098), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_POUND] = ACTIONS(3068), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_pub] = ACTIONS(3086), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(3088), - [sym_metavariable] = ACTIONS(1647), + [ts_builtin_sym_end] = ACTIONS(2917), + [sym_identifier] = ACTIONS(2919), + [anon_sym_SEMI] = ACTIONS(2917), + [anon_sym_macro_rules_BANG] = ACTIONS(2917), + [anon_sym_LPAREN] = ACTIONS(2917), + [anon_sym_LBRACK] = ACTIONS(2917), + [anon_sym_LBRACE] = ACTIONS(2917), + [anon_sym_RBRACE] = ACTIONS(2917), + [anon_sym_STAR] = ACTIONS(2917), + [anon_sym_u8] = ACTIONS(2919), + [anon_sym_i8] = ACTIONS(2919), + [anon_sym_u16] = ACTIONS(2919), + [anon_sym_i16] = ACTIONS(2919), + [anon_sym_u32] = ACTIONS(2919), + [anon_sym_i32] = ACTIONS(2919), + [anon_sym_u64] = ACTIONS(2919), + [anon_sym_i64] = ACTIONS(2919), + [anon_sym_u128] = ACTIONS(2919), + [anon_sym_i128] = ACTIONS(2919), + [anon_sym_isize] = ACTIONS(2919), + [anon_sym_usize] = ACTIONS(2919), + [anon_sym_f32] = ACTIONS(2919), + [anon_sym_f64] = ACTIONS(2919), + [anon_sym_bool] = ACTIONS(2919), + [anon_sym_str] = ACTIONS(2919), + [anon_sym_char] = ACTIONS(2919), + [anon_sym_DASH] = ACTIONS(2917), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_AMP] = ACTIONS(2917), + [anon_sym_PIPE] = ACTIONS(2917), + [anon_sym_LT] = ACTIONS(2917), + [anon_sym_DOT_DOT] = ACTIONS(2917), + [anon_sym_COLON_COLON] = ACTIONS(2917), + [anon_sym_POUND] = ACTIONS(2917), + [anon_sym_SQUOTE] = ACTIONS(2919), + [anon_sym_async] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2919), + [anon_sym_const] = ACTIONS(2919), + [anon_sym_continue] = ACTIONS(2919), + [anon_sym_default] = ACTIONS(2919), + [anon_sym_enum] = ACTIONS(2919), + [anon_sym_fn] = ACTIONS(2919), + [anon_sym_for] = ACTIONS(2919), + [anon_sym_gen] = ACTIONS(2919), + [anon_sym_if] = ACTIONS(2919), + [anon_sym_impl] = ACTIONS(2919), + [anon_sym_let] = ACTIONS(2919), + [anon_sym_loop] = ACTIONS(2919), + [anon_sym_match] = ACTIONS(2919), + [anon_sym_mod] = ACTIONS(2919), + [anon_sym_pub] = ACTIONS(2919), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_static] = ACTIONS(2919), + [anon_sym_struct] = ACTIONS(2919), + [anon_sym_trait] = ACTIONS(2919), + [anon_sym_type] = ACTIONS(2919), + [anon_sym_union] = ACTIONS(2919), + [anon_sym_unsafe] = ACTIONS(2919), + [anon_sym_use] = ACTIONS(2919), + [anon_sym_while] = ACTIONS(2919), + [anon_sym_extern] = ACTIONS(2919), + [anon_sym_yield] = ACTIONS(2919), + [anon_sym_move] = ACTIONS(2919), + [anon_sym_try] = ACTIONS(2919), + [sym_integer_literal] = ACTIONS(2917), + [aux_sym_string_literal_token1] = ACTIONS(2917), + [sym_char_literal] = ACTIONS(2917), + [anon_sym_true] = ACTIONS(2919), + [anon_sym_false] = ACTIONS(2919), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2919), + [sym_super] = ACTIONS(2919), + [sym_crate] = ACTIONS(2919), + [sym_metavariable] = ACTIONS(2917), + [sym__raw_string_literal_start] = ACTIONS(2917), + [sym_float_literal] = ACTIONS(2917), }, [STATE(795)] = { - [sym_attribute_item] = STATE(1254), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym_visibility_modifier] = STATE(944), - [sym__type] = STATE(3026), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_attribute_item] = STATE(825), [sym_line_comment] = STATE(795), [sym_block_comment] = STATE(795), - [aux_sym_enum_variant_list_repeat1] = STATE(797), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_RPAREN] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_POUND] = ACTIONS(3068), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_pub] = ACTIONS(3086), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(3088), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_attributes_repeat1] = STATE(593), + [sym_identifier] = ACTIONS(2921), + [anon_sym_SEMI] = ACTIONS(2923), + [anon_sym_macro_rules_BANG] = ACTIONS(2923), + [anon_sym_LPAREN] = ACTIONS(2923), + [anon_sym_LBRACK] = ACTIONS(2923), + [anon_sym_LBRACE] = ACTIONS(2923), + [anon_sym_STAR] = ACTIONS(2923), + [anon_sym_u8] = ACTIONS(2921), + [anon_sym_i8] = ACTIONS(2921), + [anon_sym_u16] = ACTIONS(2921), + [anon_sym_i16] = ACTIONS(2921), + [anon_sym_u32] = ACTIONS(2921), + [anon_sym_i32] = ACTIONS(2921), + [anon_sym_u64] = ACTIONS(2921), + [anon_sym_i64] = ACTIONS(2921), + [anon_sym_u128] = ACTIONS(2921), + [anon_sym_i128] = ACTIONS(2921), + [anon_sym_isize] = ACTIONS(2921), + [anon_sym_usize] = ACTIONS(2921), + [anon_sym_f32] = ACTIONS(2921), + [anon_sym_f64] = ACTIONS(2921), + [anon_sym_bool] = ACTIONS(2921), + [anon_sym_str] = ACTIONS(2921), + [anon_sym_char] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2923), + [anon_sym_BANG] = ACTIONS(2923), + [anon_sym_AMP] = ACTIONS(2923), + [anon_sym_PIPE] = ACTIONS(2923), + [anon_sym_LT] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2923), + [anon_sym_COLON_COLON] = ACTIONS(2923), + [anon_sym_POUND] = ACTIONS(2925), + [anon_sym_SQUOTE] = ACTIONS(2921), + [anon_sym_async] = ACTIONS(2921), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_const] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2921), + [anon_sym_default] = ACTIONS(2921), + [anon_sym_enum] = ACTIONS(2921), + [anon_sym_fn] = ACTIONS(2921), + [anon_sym_for] = ACTIONS(2921), + [anon_sym_gen] = ACTIONS(2921), + [anon_sym_if] = ACTIONS(2921), + [anon_sym_impl] = ACTIONS(2921), + [anon_sym_let] = ACTIONS(2921), + [anon_sym_loop] = ACTIONS(2921), + [anon_sym_match] = ACTIONS(2921), + [anon_sym_mod] = ACTIONS(2921), + [anon_sym_pub] = ACTIONS(2921), + [anon_sym_return] = ACTIONS(2921), + [anon_sym_static] = ACTIONS(2921), + [anon_sym_struct] = ACTIONS(2921), + [anon_sym_trait] = ACTIONS(2921), + [anon_sym_type] = ACTIONS(2921), + [anon_sym_union] = ACTIONS(2921), + [anon_sym_unsafe] = ACTIONS(2921), + [anon_sym_use] = ACTIONS(2921), + [anon_sym_while] = ACTIONS(2921), + [anon_sym_extern] = ACTIONS(2921), + [anon_sym_yield] = ACTIONS(2921), + [anon_sym_move] = ACTIONS(2921), + [anon_sym_try] = ACTIONS(2921), + [sym_integer_literal] = ACTIONS(2923), + [aux_sym_string_literal_token1] = ACTIONS(2923), + [sym_char_literal] = ACTIONS(2923), + [anon_sym_true] = ACTIONS(2921), + [anon_sym_false] = ACTIONS(2921), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2921), + [sym_super] = ACTIONS(2921), + [sym_crate] = ACTIONS(2921), + [sym_metavariable] = ACTIONS(2923), + [sym__raw_string_literal_start] = ACTIONS(2923), + [sym_float_literal] = ACTIONS(2923), }, [STATE(796)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2708), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(796), [sym_block_comment] = STATE(796), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(3102), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COMMA] = ACTIONS(3104), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [ts_builtin_sym_end] = ACTIONS(2927), + [sym_identifier] = ACTIONS(2929), + [anon_sym_SEMI] = ACTIONS(2927), + [anon_sym_macro_rules_BANG] = ACTIONS(2927), + [anon_sym_LPAREN] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2927), + [anon_sym_LBRACE] = ACTIONS(2927), + [anon_sym_RBRACE] = ACTIONS(2927), + [anon_sym_STAR] = ACTIONS(2927), + [anon_sym_u8] = ACTIONS(2929), + [anon_sym_i8] = ACTIONS(2929), + [anon_sym_u16] = ACTIONS(2929), + [anon_sym_i16] = ACTIONS(2929), + [anon_sym_u32] = ACTIONS(2929), + [anon_sym_i32] = ACTIONS(2929), + [anon_sym_u64] = ACTIONS(2929), + [anon_sym_i64] = ACTIONS(2929), + [anon_sym_u128] = ACTIONS(2929), + [anon_sym_i128] = ACTIONS(2929), + [anon_sym_isize] = ACTIONS(2929), + [anon_sym_usize] = ACTIONS(2929), + [anon_sym_f32] = ACTIONS(2929), + [anon_sym_f64] = ACTIONS(2929), + [anon_sym_bool] = ACTIONS(2929), + [anon_sym_str] = ACTIONS(2929), + [anon_sym_char] = ACTIONS(2929), + [anon_sym_DASH] = ACTIONS(2927), + [anon_sym_BANG] = ACTIONS(2927), + [anon_sym_AMP] = ACTIONS(2927), + [anon_sym_PIPE] = ACTIONS(2927), + [anon_sym_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT] = ACTIONS(2927), + [anon_sym_COLON_COLON] = ACTIONS(2927), + [anon_sym_POUND] = ACTIONS(2927), + [anon_sym_SQUOTE] = ACTIONS(2929), + [anon_sym_async] = ACTIONS(2929), + [anon_sym_break] = ACTIONS(2929), + [anon_sym_const] = ACTIONS(2929), + [anon_sym_continue] = ACTIONS(2929), + [anon_sym_default] = ACTIONS(2929), + [anon_sym_enum] = ACTIONS(2929), + [anon_sym_fn] = ACTIONS(2929), + [anon_sym_for] = ACTIONS(2929), + [anon_sym_gen] = ACTIONS(2929), + [anon_sym_if] = ACTIONS(2929), + [anon_sym_impl] = ACTIONS(2929), + [anon_sym_let] = ACTIONS(2929), + [anon_sym_loop] = ACTIONS(2929), + [anon_sym_match] = ACTIONS(2929), + [anon_sym_mod] = ACTIONS(2929), + [anon_sym_pub] = ACTIONS(2929), + [anon_sym_return] = ACTIONS(2929), + [anon_sym_static] = ACTIONS(2929), + [anon_sym_struct] = ACTIONS(2929), + [anon_sym_trait] = ACTIONS(2929), + [anon_sym_type] = ACTIONS(2929), + [anon_sym_union] = ACTIONS(2929), + [anon_sym_unsafe] = ACTIONS(2929), + [anon_sym_use] = ACTIONS(2929), + [anon_sym_while] = ACTIONS(2929), + [anon_sym_extern] = ACTIONS(2929), + [anon_sym_yield] = ACTIONS(2929), + [anon_sym_move] = ACTIONS(2929), + [anon_sym_try] = ACTIONS(2929), + [sym_integer_literal] = ACTIONS(2927), + [aux_sym_string_literal_token1] = ACTIONS(2927), + [sym_char_literal] = ACTIONS(2927), + [anon_sym_true] = ACTIONS(2929), + [anon_sym_false] = ACTIONS(2929), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2929), + [sym_super] = ACTIONS(2929), + [sym_crate] = ACTIONS(2929), + [sym_metavariable] = ACTIONS(2927), + [sym__raw_string_literal_start] = ACTIONS(2927), + [sym_float_literal] = ACTIONS(2927), }, [STATE(797)] = { - [sym_attribute_item] = STATE(1254), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym_visibility_modifier] = STATE(904), - [sym__type] = STATE(3063), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(797), [sym_block_comment] = STATE(797), - [aux_sym_enum_variant_list_repeat1] = STATE(1093), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_POUND] = ACTIONS(3068), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_pub] = ACTIONS(3086), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(3088), - [sym_metavariable] = ACTIONS(1647), + [ts_builtin_sym_end] = ACTIONS(2931), + [sym_identifier] = ACTIONS(2933), + [anon_sym_SEMI] = ACTIONS(2931), + [anon_sym_macro_rules_BANG] = ACTIONS(2931), + [anon_sym_LPAREN] = ACTIONS(2931), + [anon_sym_LBRACK] = ACTIONS(2931), + [anon_sym_LBRACE] = ACTIONS(2931), + [anon_sym_RBRACE] = ACTIONS(2931), + [anon_sym_STAR] = ACTIONS(2931), + [anon_sym_u8] = ACTIONS(2933), + [anon_sym_i8] = ACTIONS(2933), + [anon_sym_u16] = ACTIONS(2933), + [anon_sym_i16] = ACTIONS(2933), + [anon_sym_u32] = ACTIONS(2933), + [anon_sym_i32] = ACTIONS(2933), + [anon_sym_u64] = ACTIONS(2933), + [anon_sym_i64] = ACTIONS(2933), + [anon_sym_u128] = ACTIONS(2933), + [anon_sym_i128] = ACTIONS(2933), + [anon_sym_isize] = ACTIONS(2933), + [anon_sym_usize] = ACTIONS(2933), + [anon_sym_f32] = ACTIONS(2933), + [anon_sym_f64] = ACTIONS(2933), + [anon_sym_bool] = ACTIONS(2933), + [anon_sym_str] = ACTIONS(2933), + [anon_sym_char] = ACTIONS(2933), + [anon_sym_DASH] = ACTIONS(2931), + [anon_sym_BANG] = ACTIONS(2931), + [anon_sym_AMP] = ACTIONS(2931), + [anon_sym_PIPE] = ACTIONS(2931), + [anon_sym_LT] = ACTIONS(2931), + [anon_sym_DOT_DOT] = ACTIONS(2931), + [anon_sym_COLON_COLON] = ACTIONS(2931), + [anon_sym_POUND] = ACTIONS(2931), + [anon_sym_SQUOTE] = ACTIONS(2933), + [anon_sym_async] = ACTIONS(2933), + [anon_sym_break] = ACTIONS(2933), + [anon_sym_const] = ACTIONS(2933), + [anon_sym_continue] = ACTIONS(2933), + [anon_sym_default] = ACTIONS(2933), + [anon_sym_enum] = ACTIONS(2933), + [anon_sym_fn] = ACTIONS(2933), + [anon_sym_for] = ACTIONS(2933), + [anon_sym_gen] = ACTIONS(2933), + [anon_sym_if] = ACTIONS(2933), + [anon_sym_impl] = ACTIONS(2933), + [anon_sym_let] = ACTIONS(2933), + [anon_sym_loop] = ACTIONS(2933), + [anon_sym_match] = ACTIONS(2933), + [anon_sym_mod] = ACTIONS(2933), + [anon_sym_pub] = ACTIONS(2933), + [anon_sym_return] = ACTIONS(2933), + [anon_sym_static] = ACTIONS(2933), + [anon_sym_struct] = ACTIONS(2933), + [anon_sym_trait] = ACTIONS(2933), + [anon_sym_type] = ACTIONS(2933), + [anon_sym_union] = ACTIONS(2933), + [anon_sym_unsafe] = ACTIONS(2933), + [anon_sym_use] = ACTIONS(2933), + [anon_sym_while] = ACTIONS(2933), + [anon_sym_extern] = ACTIONS(2933), + [anon_sym_yield] = ACTIONS(2933), + [anon_sym_move] = ACTIONS(2933), + [anon_sym_try] = ACTIONS(2933), + [sym_integer_literal] = ACTIONS(2931), + [aux_sym_string_literal_token1] = ACTIONS(2931), + [sym_char_literal] = ACTIONS(2931), + [anon_sym_true] = ACTIONS(2933), + [anon_sym_false] = ACTIONS(2933), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2933), + [sym_super] = ACTIONS(2933), + [sym_crate] = ACTIONS(2933), + [sym_metavariable] = ACTIONS(2931), + [sym__raw_string_literal_start] = ACTIONS(2931), + [sym_float_literal] = ACTIONS(2931), }, [STATE(798)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2707), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(798), [sym_block_comment] = STATE(798), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(3106), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COMMA] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [ts_builtin_sym_end] = ACTIONS(2935), + [sym_identifier] = ACTIONS(2937), + [anon_sym_SEMI] = ACTIONS(2935), + [anon_sym_macro_rules_BANG] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2935), + [anon_sym_LBRACK] = ACTIONS(2935), + [anon_sym_LBRACE] = ACTIONS(2935), + [anon_sym_RBRACE] = ACTIONS(2935), + [anon_sym_STAR] = ACTIONS(2935), + [anon_sym_u8] = ACTIONS(2937), + [anon_sym_i8] = ACTIONS(2937), + [anon_sym_u16] = ACTIONS(2937), + [anon_sym_i16] = ACTIONS(2937), + [anon_sym_u32] = ACTIONS(2937), + [anon_sym_i32] = ACTIONS(2937), + [anon_sym_u64] = ACTIONS(2937), + [anon_sym_i64] = ACTIONS(2937), + [anon_sym_u128] = ACTIONS(2937), + [anon_sym_i128] = ACTIONS(2937), + [anon_sym_isize] = ACTIONS(2937), + [anon_sym_usize] = ACTIONS(2937), + [anon_sym_f32] = ACTIONS(2937), + [anon_sym_f64] = ACTIONS(2937), + [anon_sym_bool] = ACTIONS(2937), + [anon_sym_str] = ACTIONS(2937), + [anon_sym_char] = ACTIONS(2937), + [anon_sym_DASH] = ACTIONS(2935), + [anon_sym_BANG] = ACTIONS(2935), + [anon_sym_AMP] = ACTIONS(2935), + [anon_sym_PIPE] = ACTIONS(2935), + [anon_sym_LT] = ACTIONS(2935), + [anon_sym_DOT_DOT] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(2935), + [anon_sym_POUND] = ACTIONS(2935), + [anon_sym_SQUOTE] = ACTIONS(2937), + [anon_sym_async] = ACTIONS(2937), + [anon_sym_break] = ACTIONS(2937), + [anon_sym_const] = ACTIONS(2937), + [anon_sym_continue] = ACTIONS(2937), + [anon_sym_default] = ACTIONS(2937), + [anon_sym_enum] = ACTIONS(2937), + [anon_sym_fn] = ACTIONS(2937), + [anon_sym_for] = ACTIONS(2937), + [anon_sym_gen] = ACTIONS(2937), + [anon_sym_if] = ACTIONS(2937), + [anon_sym_impl] = ACTIONS(2937), + [anon_sym_let] = ACTIONS(2937), + [anon_sym_loop] = ACTIONS(2937), + [anon_sym_match] = ACTIONS(2937), + [anon_sym_mod] = ACTIONS(2937), + [anon_sym_pub] = ACTIONS(2937), + [anon_sym_return] = ACTIONS(2937), + [anon_sym_static] = ACTIONS(2937), + [anon_sym_struct] = ACTIONS(2937), + [anon_sym_trait] = ACTIONS(2937), + [anon_sym_type] = ACTIONS(2937), + [anon_sym_union] = ACTIONS(2937), + [anon_sym_unsafe] = ACTIONS(2937), + [anon_sym_use] = ACTIONS(2937), + [anon_sym_while] = ACTIONS(2937), + [anon_sym_extern] = ACTIONS(2937), + [anon_sym_yield] = ACTIONS(2937), + [anon_sym_move] = ACTIONS(2937), + [anon_sym_try] = ACTIONS(2937), + [sym_integer_literal] = ACTIONS(2935), + [aux_sym_string_literal_token1] = ACTIONS(2935), + [sym_char_literal] = ACTIONS(2935), + [anon_sym_true] = ACTIONS(2937), + [anon_sym_false] = ACTIONS(2937), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2937), + [sym_super] = ACTIONS(2937), + [sym_crate] = ACTIONS(2937), + [sym_metavariable] = ACTIONS(2935), + [sym__raw_string_literal_start] = ACTIONS(2935), + [sym_float_literal] = ACTIONS(2935), }, [STATE(799)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2776), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(799), [sym_block_comment] = STATE(799), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(3110), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COMMA] = ACTIONS(3112), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [ts_builtin_sym_end] = ACTIONS(2939), + [sym_identifier] = ACTIONS(2941), + [anon_sym_SEMI] = ACTIONS(2939), + [anon_sym_macro_rules_BANG] = ACTIONS(2939), + [anon_sym_LPAREN] = ACTIONS(2939), + [anon_sym_LBRACK] = ACTIONS(2939), + [anon_sym_LBRACE] = ACTIONS(2939), + [anon_sym_RBRACE] = ACTIONS(2939), + [anon_sym_STAR] = ACTIONS(2939), + [anon_sym_u8] = ACTIONS(2941), + [anon_sym_i8] = ACTIONS(2941), + [anon_sym_u16] = ACTIONS(2941), + [anon_sym_i16] = ACTIONS(2941), + [anon_sym_u32] = ACTIONS(2941), + [anon_sym_i32] = ACTIONS(2941), + [anon_sym_u64] = ACTIONS(2941), + [anon_sym_i64] = ACTIONS(2941), + [anon_sym_u128] = ACTIONS(2941), + [anon_sym_i128] = ACTIONS(2941), + [anon_sym_isize] = ACTIONS(2941), + [anon_sym_usize] = ACTIONS(2941), + [anon_sym_f32] = ACTIONS(2941), + [anon_sym_f64] = ACTIONS(2941), + [anon_sym_bool] = ACTIONS(2941), + [anon_sym_str] = ACTIONS(2941), + [anon_sym_char] = ACTIONS(2941), + [anon_sym_DASH] = ACTIONS(2939), + [anon_sym_BANG] = ACTIONS(2939), + [anon_sym_AMP] = ACTIONS(2939), + [anon_sym_PIPE] = ACTIONS(2939), + [anon_sym_LT] = ACTIONS(2939), + [anon_sym_DOT_DOT] = ACTIONS(2939), + [anon_sym_COLON_COLON] = ACTIONS(2939), + [anon_sym_POUND] = ACTIONS(2939), + [anon_sym_SQUOTE] = ACTIONS(2941), + [anon_sym_async] = ACTIONS(2941), + [anon_sym_break] = ACTIONS(2941), + [anon_sym_const] = ACTIONS(2941), + [anon_sym_continue] = ACTIONS(2941), + [anon_sym_default] = ACTIONS(2941), + [anon_sym_enum] = ACTIONS(2941), + [anon_sym_fn] = ACTIONS(2941), + [anon_sym_for] = ACTIONS(2941), + [anon_sym_gen] = ACTIONS(2941), + [anon_sym_if] = ACTIONS(2941), + [anon_sym_impl] = ACTIONS(2941), + [anon_sym_let] = ACTIONS(2941), + [anon_sym_loop] = ACTIONS(2941), + [anon_sym_match] = ACTIONS(2941), + [anon_sym_mod] = ACTIONS(2941), + [anon_sym_pub] = ACTIONS(2941), + [anon_sym_return] = ACTIONS(2941), + [anon_sym_static] = ACTIONS(2941), + [anon_sym_struct] = ACTIONS(2941), + [anon_sym_trait] = ACTIONS(2941), + [anon_sym_type] = ACTIONS(2941), + [anon_sym_union] = ACTIONS(2941), + [anon_sym_unsafe] = ACTIONS(2941), + [anon_sym_use] = ACTIONS(2941), + [anon_sym_while] = ACTIONS(2941), + [anon_sym_extern] = ACTIONS(2941), + [anon_sym_yield] = ACTIONS(2941), + [anon_sym_move] = ACTIONS(2941), + [anon_sym_try] = ACTIONS(2941), + [sym_integer_literal] = ACTIONS(2939), + [aux_sym_string_literal_token1] = ACTIONS(2939), + [sym_char_literal] = ACTIONS(2939), + [anon_sym_true] = ACTIONS(2941), + [anon_sym_false] = ACTIONS(2941), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2941), + [sym_super] = ACTIONS(2941), + [sym_crate] = ACTIONS(2941), + [sym_metavariable] = ACTIONS(2939), + [sym__raw_string_literal_start] = ACTIONS(2939), + [sym_float_literal] = ACTIONS(2939), }, [STATE(800)] = { - [sym_attribute_item] = STATE(1254), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym_visibility_modifier] = STATE(944), - [sym__type] = STATE(3026), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(800), [sym_block_comment] = STATE(800), - [aux_sym_enum_variant_list_repeat1] = STATE(797), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_POUND] = ACTIONS(3068), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_pub] = ACTIONS(3086), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(3088), - [sym_metavariable] = ACTIONS(1647), + [ts_builtin_sym_end] = ACTIONS(2943), + [sym_identifier] = ACTIONS(2945), + [anon_sym_SEMI] = ACTIONS(2943), + [anon_sym_macro_rules_BANG] = ACTIONS(2943), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_LBRACK] = ACTIONS(2943), + [anon_sym_LBRACE] = ACTIONS(2943), + [anon_sym_RBRACE] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2943), + [anon_sym_u8] = ACTIONS(2945), + [anon_sym_i8] = ACTIONS(2945), + [anon_sym_u16] = ACTIONS(2945), + [anon_sym_i16] = ACTIONS(2945), + [anon_sym_u32] = ACTIONS(2945), + [anon_sym_i32] = ACTIONS(2945), + [anon_sym_u64] = ACTIONS(2945), + [anon_sym_i64] = ACTIONS(2945), + [anon_sym_u128] = ACTIONS(2945), + [anon_sym_i128] = ACTIONS(2945), + [anon_sym_isize] = ACTIONS(2945), + [anon_sym_usize] = ACTIONS(2945), + [anon_sym_f32] = ACTIONS(2945), + [anon_sym_f64] = ACTIONS(2945), + [anon_sym_bool] = ACTIONS(2945), + [anon_sym_str] = ACTIONS(2945), + [anon_sym_char] = ACTIONS(2945), + [anon_sym_DASH] = ACTIONS(2943), + [anon_sym_BANG] = ACTIONS(2943), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_PIPE] = ACTIONS(2943), + [anon_sym_LT] = ACTIONS(2943), + [anon_sym_DOT_DOT] = ACTIONS(2943), + [anon_sym_COLON_COLON] = ACTIONS(2943), + [anon_sym_POUND] = ACTIONS(2943), + [anon_sym_SQUOTE] = ACTIONS(2945), + [anon_sym_async] = ACTIONS(2945), + [anon_sym_break] = ACTIONS(2945), + [anon_sym_const] = ACTIONS(2945), + [anon_sym_continue] = ACTIONS(2945), + [anon_sym_default] = ACTIONS(2945), + [anon_sym_enum] = ACTIONS(2945), + [anon_sym_fn] = ACTIONS(2945), + [anon_sym_for] = ACTIONS(2945), + [anon_sym_gen] = ACTIONS(2945), + [anon_sym_if] = ACTIONS(2945), + [anon_sym_impl] = ACTIONS(2945), + [anon_sym_let] = ACTIONS(2945), + [anon_sym_loop] = ACTIONS(2945), + [anon_sym_match] = ACTIONS(2945), + [anon_sym_mod] = ACTIONS(2945), + [anon_sym_pub] = ACTIONS(2945), + [anon_sym_return] = ACTIONS(2945), + [anon_sym_static] = ACTIONS(2945), + [anon_sym_struct] = ACTIONS(2945), + [anon_sym_trait] = ACTIONS(2945), + [anon_sym_type] = ACTIONS(2945), + [anon_sym_union] = ACTIONS(2945), + [anon_sym_unsafe] = ACTIONS(2945), + [anon_sym_use] = ACTIONS(2945), + [anon_sym_while] = ACTIONS(2945), + [anon_sym_extern] = ACTIONS(2945), + [anon_sym_yield] = ACTIONS(2945), + [anon_sym_move] = ACTIONS(2945), + [anon_sym_try] = ACTIONS(2945), + [sym_integer_literal] = ACTIONS(2943), + [aux_sym_string_literal_token1] = ACTIONS(2943), + [sym_char_literal] = ACTIONS(2943), + [anon_sym_true] = ACTIONS(2945), + [anon_sym_false] = ACTIONS(2945), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2945), + [sym_super] = ACTIONS(2945), + [sym_crate] = ACTIONS(2945), + [sym_metavariable] = ACTIONS(2943), + [sym__raw_string_literal_start] = ACTIONS(2943), + [sym_float_literal] = ACTIONS(2943), }, [STATE(801)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2626), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(801), [sym_block_comment] = STATE(801), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(3114), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COMMA] = ACTIONS(3116), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [ts_builtin_sym_end] = ACTIONS(2947), + [sym_identifier] = ACTIONS(2949), + [anon_sym_SEMI] = ACTIONS(2947), + [anon_sym_macro_rules_BANG] = ACTIONS(2947), + [anon_sym_LPAREN] = ACTIONS(2947), + [anon_sym_LBRACK] = ACTIONS(2947), + [anon_sym_LBRACE] = ACTIONS(2947), + [anon_sym_RBRACE] = ACTIONS(2947), + [anon_sym_STAR] = ACTIONS(2947), + [anon_sym_u8] = ACTIONS(2949), + [anon_sym_i8] = ACTIONS(2949), + [anon_sym_u16] = ACTIONS(2949), + [anon_sym_i16] = ACTIONS(2949), + [anon_sym_u32] = ACTIONS(2949), + [anon_sym_i32] = ACTIONS(2949), + [anon_sym_u64] = ACTIONS(2949), + [anon_sym_i64] = ACTIONS(2949), + [anon_sym_u128] = ACTIONS(2949), + [anon_sym_i128] = ACTIONS(2949), + [anon_sym_isize] = ACTIONS(2949), + [anon_sym_usize] = ACTIONS(2949), + [anon_sym_f32] = ACTIONS(2949), + [anon_sym_f64] = ACTIONS(2949), + [anon_sym_bool] = ACTIONS(2949), + [anon_sym_str] = ACTIONS(2949), + [anon_sym_char] = ACTIONS(2949), + [anon_sym_DASH] = ACTIONS(2947), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_AMP] = ACTIONS(2947), + [anon_sym_PIPE] = ACTIONS(2947), + [anon_sym_LT] = ACTIONS(2947), + [anon_sym_DOT_DOT] = ACTIONS(2947), + [anon_sym_COLON_COLON] = ACTIONS(2947), + [anon_sym_POUND] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2949), + [anon_sym_async] = ACTIONS(2949), + [anon_sym_break] = ACTIONS(2949), + [anon_sym_const] = ACTIONS(2949), + [anon_sym_continue] = ACTIONS(2949), + [anon_sym_default] = ACTIONS(2949), + [anon_sym_enum] = ACTIONS(2949), + [anon_sym_fn] = ACTIONS(2949), + [anon_sym_for] = ACTIONS(2949), + [anon_sym_gen] = ACTIONS(2949), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_impl] = ACTIONS(2949), + [anon_sym_let] = ACTIONS(2949), + [anon_sym_loop] = ACTIONS(2949), + [anon_sym_match] = ACTIONS(2949), + [anon_sym_mod] = ACTIONS(2949), + [anon_sym_pub] = ACTIONS(2949), + [anon_sym_return] = ACTIONS(2949), + [anon_sym_static] = ACTIONS(2949), + [anon_sym_struct] = ACTIONS(2949), + [anon_sym_trait] = ACTIONS(2949), + [anon_sym_type] = ACTIONS(2949), + [anon_sym_union] = ACTIONS(2949), + [anon_sym_unsafe] = ACTIONS(2949), + [anon_sym_use] = ACTIONS(2949), + [anon_sym_while] = ACTIONS(2949), + [anon_sym_extern] = ACTIONS(2949), + [anon_sym_yield] = ACTIONS(2949), + [anon_sym_move] = ACTIONS(2949), + [anon_sym_try] = ACTIONS(2949), + [sym_integer_literal] = ACTIONS(2947), + [aux_sym_string_literal_token1] = ACTIONS(2947), + [sym_char_literal] = ACTIONS(2947), + [anon_sym_true] = ACTIONS(2949), + [anon_sym_false] = ACTIONS(2949), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2949), + [sym_super] = ACTIONS(2949), + [sym_crate] = ACTIONS(2949), + [sym_metavariable] = ACTIONS(2947), + [sym__raw_string_literal_start] = ACTIONS(2947), + [sym_float_literal] = ACTIONS(2947), }, [STATE(802)] = { - [sym_attribute_item] = STATE(1254), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym_visibility_modifier] = STATE(1012), - [sym__type] = STATE(2681), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(802), [sym_block_comment] = STATE(802), - [aux_sym_enum_variant_list_repeat1] = STATE(1093), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_POUND] = ACTIONS(3068), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_pub] = ACTIONS(3086), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(3088), - [sym_metavariable] = ACTIONS(1647), + [ts_builtin_sym_end] = ACTIONS(2951), + [sym_identifier] = ACTIONS(2953), + [anon_sym_SEMI] = ACTIONS(2951), + [anon_sym_macro_rules_BANG] = ACTIONS(2951), + [anon_sym_LPAREN] = ACTIONS(2951), + [anon_sym_LBRACK] = ACTIONS(2951), + [anon_sym_LBRACE] = ACTIONS(2951), + [anon_sym_RBRACE] = ACTIONS(2951), + [anon_sym_STAR] = ACTIONS(2951), + [anon_sym_u8] = ACTIONS(2953), + [anon_sym_i8] = ACTIONS(2953), + [anon_sym_u16] = ACTIONS(2953), + [anon_sym_i16] = ACTIONS(2953), + [anon_sym_u32] = ACTIONS(2953), + [anon_sym_i32] = ACTIONS(2953), + [anon_sym_u64] = ACTIONS(2953), + [anon_sym_i64] = ACTIONS(2953), + [anon_sym_u128] = ACTIONS(2953), + [anon_sym_i128] = ACTIONS(2953), + [anon_sym_isize] = ACTIONS(2953), + [anon_sym_usize] = ACTIONS(2953), + [anon_sym_f32] = ACTIONS(2953), + [anon_sym_f64] = ACTIONS(2953), + [anon_sym_bool] = ACTIONS(2953), + [anon_sym_str] = ACTIONS(2953), + [anon_sym_char] = ACTIONS(2953), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_BANG] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2951), + [anon_sym_PIPE] = ACTIONS(2951), + [anon_sym_LT] = ACTIONS(2951), + [anon_sym_DOT_DOT] = ACTIONS(2951), + [anon_sym_COLON_COLON] = ACTIONS(2951), + [anon_sym_POUND] = ACTIONS(2951), + [anon_sym_SQUOTE] = ACTIONS(2953), + [anon_sym_async] = ACTIONS(2953), + [anon_sym_break] = ACTIONS(2953), + [anon_sym_const] = ACTIONS(2953), + [anon_sym_continue] = ACTIONS(2953), + [anon_sym_default] = ACTIONS(2953), + [anon_sym_enum] = ACTIONS(2953), + [anon_sym_fn] = ACTIONS(2953), + [anon_sym_for] = ACTIONS(2953), + [anon_sym_gen] = ACTIONS(2953), + [anon_sym_if] = ACTIONS(2953), + [anon_sym_impl] = ACTIONS(2953), + [anon_sym_let] = ACTIONS(2953), + [anon_sym_loop] = ACTIONS(2953), + [anon_sym_match] = ACTIONS(2953), + [anon_sym_mod] = ACTIONS(2953), + [anon_sym_pub] = ACTIONS(2953), + [anon_sym_return] = ACTIONS(2953), + [anon_sym_static] = ACTIONS(2953), + [anon_sym_struct] = ACTIONS(2953), + [anon_sym_trait] = ACTIONS(2953), + [anon_sym_type] = ACTIONS(2953), + [anon_sym_union] = ACTIONS(2953), + [anon_sym_unsafe] = ACTIONS(2953), + [anon_sym_use] = ACTIONS(2953), + [anon_sym_while] = ACTIONS(2953), + [anon_sym_extern] = ACTIONS(2953), + [anon_sym_yield] = ACTIONS(2953), + [anon_sym_move] = ACTIONS(2953), + [anon_sym_try] = ACTIONS(2953), + [sym_integer_literal] = ACTIONS(2951), + [aux_sym_string_literal_token1] = ACTIONS(2951), + [sym_char_literal] = ACTIONS(2951), + [anon_sym_true] = ACTIONS(2953), + [anon_sym_false] = ACTIONS(2953), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2953), + [sym_super] = ACTIONS(2953), + [sym_crate] = ACTIONS(2953), + [sym_metavariable] = ACTIONS(2951), + [sym__raw_string_literal_start] = ACTIONS(2951), + [sym_float_literal] = ACTIONS(2951), }, [STATE(803)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2828), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(803), [sym_block_comment] = STATE(803), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_RBRACK] = ACTIONS(1561), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COMMA] = ACTIONS(1567), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [ts_builtin_sym_end] = ACTIONS(2955), + [sym_identifier] = ACTIONS(2957), + [anon_sym_SEMI] = ACTIONS(2955), + [anon_sym_macro_rules_BANG] = ACTIONS(2955), + [anon_sym_LPAREN] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2955), + [anon_sym_LBRACE] = ACTIONS(2955), + [anon_sym_RBRACE] = ACTIONS(2955), + [anon_sym_STAR] = ACTIONS(2955), + [anon_sym_u8] = ACTIONS(2957), + [anon_sym_i8] = ACTIONS(2957), + [anon_sym_u16] = ACTIONS(2957), + [anon_sym_i16] = ACTIONS(2957), + [anon_sym_u32] = ACTIONS(2957), + [anon_sym_i32] = ACTIONS(2957), + [anon_sym_u64] = ACTIONS(2957), + [anon_sym_i64] = ACTIONS(2957), + [anon_sym_u128] = ACTIONS(2957), + [anon_sym_i128] = ACTIONS(2957), + [anon_sym_isize] = ACTIONS(2957), + [anon_sym_usize] = ACTIONS(2957), + [anon_sym_f32] = ACTIONS(2957), + [anon_sym_f64] = ACTIONS(2957), + [anon_sym_bool] = ACTIONS(2957), + [anon_sym_str] = ACTIONS(2957), + [anon_sym_char] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2955), + [anon_sym_BANG] = ACTIONS(2955), + [anon_sym_AMP] = ACTIONS(2955), + [anon_sym_PIPE] = ACTIONS(2955), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_DOT_DOT] = ACTIONS(2955), + [anon_sym_COLON_COLON] = ACTIONS(2955), + [anon_sym_POUND] = ACTIONS(2955), + [anon_sym_SQUOTE] = ACTIONS(2957), + [anon_sym_async] = ACTIONS(2957), + [anon_sym_break] = ACTIONS(2957), + [anon_sym_const] = ACTIONS(2957), + [anon_sym_continue] = ACTIONS(2957), + [anon_sym_default] = ACTIONS(2957), + [anon_sym_enum] = ACTIONS(2957), + [anon_sym_fn] = ACTIONS(2957), + [anon_sym_for] = ACTIONS(2957), + [anon_sym_gen] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_impl] = ACTIONS(2957), + [anon_sym_let] = ACTIONS(2957), + [anon_sym_loop] = ACTIONS(2957), + [anon_sym_match] = ACTIONS(2957), + [anon_sym_mod] = ACTIONS(2957), + [anon_sym_pub] = ACTIONS(2957), + [anon_sym_return] = ACTIONS(2957), + [anon_sym_static] = ACTIONS(2957), + [anon_sym_struct] = ACTIONS(2957), + [anon_sym_trait] = ACTIONS(2957), + [anon_sym_type] = ACTIONS(2957), + [anon_sym_union] = ACTIONS(2957), + [anon_sym_unsafe] = ACTIONS(2957), + [anon_sym_use] = ACTIONS(2957), + [anon_sym_while] = ACTIONS(2957), + [anon_sym_extern] = ACTIONS(2957), + [anon_sym_yield] = ACTIONS(2957), + [anon_sym_move] = ACTIONS(2957), + [anon_sym_try] = ACTIONS(2957), + [sym_integer_literal] = ACTIONS(2955), + [aux_sym_string_literal_token1] = ACTIONS(2955), + [sym_char_literal] = ACTIONS(2955), + [anon_sym_true] = ACTIONS(2957), + [anon_sym_false] = ACTIONS(2957), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2957), + [sym_super] = ACTIONS(2957), + [sym_crate] = ACTIONS(2957), + [sym_metavariable] = ACTIONS(2955), + [sym__raw_string_literal_start] = ACTIONS(2955), + [sym_float_literal] = ACTIONS(2955), }, [STATE(804)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2671), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(804), [sym_block_comment] = STATE(804), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_RBRACK] = ACTIONS(3118), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COMMA] = ACTIONS(3120), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [ts_builtin_sym_end] = ACTIONS(2959), + [sym_identifier] = ACTIONS(2961), + [anon_sym_SEMI] = ACTIONS(2959), + [anon_sym_macro_rules_BANG] = ACTIONS(2959), + [anon_sym_LPAREN] = ACTIONS(2959), + [anon_sym_LBRACK] = ACTIONS(2959), + [anon_sym_LBRACE] = ACTIONS(2959), + [anon_sym_RBRACE] = ACTIONS(2959), + [anon_sym_STAR] = ACTIONS(2959), + [anon_sym_u8] = ACTIONS(2961), + [anon_sym_i8] = ACTIONS(2961), + [anon_sym_u16] = ACTIONS(2961), + [anon_sym_i16] = ACTIONS(2961), + [anon_sym_u32] = ACTIONS(2961), + [anon_sym_i32] = ACTIONS(2961), + [anon_sym_u64] = ACTIONS(2961), + [anon_sym_i64] = ACTIONS(2961), + [anon_sym_u128] = ACTIONS(2961), + [anon_sym_i128] = ACTIONS(2961), + [anon_sym_isize] = ACTIONS(2961), + [anon_sym_usize] = ACTIONS(2961), + [anon_sym_f32] = ACTIONS(2961), + [anon_sym_f64] = ACTIONS(2961), + [anon_sym_bool] = ACTIONS(2961), + [anon_sym_str] = ACTIONS(2961), + [anon_sym_char] = ACTIONS(2961), + [anon_sym_DASH] = ACTIONS(2959), + [anon_sym_BANG] = ACTIONS(2959), + [anon_sym_AMP] = ACTIONS(2959), + [anon_sym_PIPE] = ACTIONS(2959), + [anon_sym_LT] = ACTIONS(2959), + [anon_sym_DOT_DOT] = ACTIONS(2959), + [anon_sym_COLON_COLON] = ACTIONS(2959), + [anon_sym_POUND] = ACTIONS(2959), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(2961), + [anon_sym_break] = ACTIONS(2961), + [anon_sym_const] = ACTIONS(2961), + [anon_sym_continue] = ACTIONS(2961), + [anon_sym_default] = ACTIONS(2961), + [anon_sym_enum] = ACTIONS(2961), + [anon_sym_fn] = ACTIONS(2961), + [anon_sym_for] = ACTIONS(2961), + [anon_sym_gen] = ACTIONS(2961), + [anon_sym_if] = ACTIONS(2961), + [anon_sym_impl] = ACTIONS(2961), + [anon_sym_let] = ACTIONS(2961), + [anon_sym_loop] = ACTIONS(2961), + [anon_sym_match] = ACTIONS(2961), + [anon_sym_mod] = ACTIONS(2961), + [anon_sym_pub] = ACTIONS(2961), + [anon_sym_return] = ACTIONS(2961), + [anon_sym_static] = ACTIONS(2961), + [anon_sym_struct] = ACTIONS(2961), + [anon_sym_trait] = ACTIONS(2961), + [anon_sym_type] = ACTIONS(2961), + [anon_sym_union] = ACTIONS(2961), + [anon_sym_unsafe] = ACTIONS(2961), + [anon_sym_use] = ACTIONS(2961), + [anon_sym_while] = ACTIONS(2961), + [anon_sym_extern] = ACTIONS(2961), + [anon_sym_yield] = ACTIONS(2961), + [anon_sym_move] = ACTIONS(2961), + [anon_sym_try] = ACTIONS(2961), + [sym_integer_literal] = ACTIONS(2959), + [aux_sym_string_literal_token1] = ACTIONS(2959), + [sym_char_literal] = ACTIONS(2959), + [anon_sym_true] = ACTIONS(2961), + [anon_sym_false] = ACTIONS(2961), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2961), + [sym_super] = ACTIONS(2961), + [sym_crate] = ACTIONS(2961), + [sym_metavariable] = ACTIONS(2959), + [sym__raw_string_literal_start] = ACTIONS(2959), + [sym_float_literal] = ACTIONS(2959), }, [STATE(805)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2656), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(805), [sym_block_comment] = STATE(805), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_RBRACK] = ACTIONS(3122), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [ts_builtin_sym_end] = ACTIONS(2963), + [sym_identifier] = ACTIONS(2965), + [anon_sym_SEMI] = ACTIONS(2963), + [anon_sym_macro_rules_BANG] = ACTIONS(2963), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_LBRACK] = ACTIONS(2963), + [anon_sym_LBRACE] = ACTIONS(2963), + [anon_sym_RBRACE] = ACTIONS(2963), + [anon_sym_STAR] = ACTIONS(2963), + [anon_sym_u8] = ACTIONS(2965), + [anon_sym_i8] = ACTIONS(2965), + [anon_sym_u16] = ACTIONS(2965), + [anon_sym_i16] = ACTIONS(2965), + [anon_sym_u32] = ACTIONS(2965), + [anon_sym_i32] = ACTIONS(2965), + [anon_sym_u64] = ACTIONS(2965), + [anon_sym_i64] = ACTIONS(2965), + [anon_sym_u128] = ACTIONS(2965), + [anon_sym_i128] = ACTIONS(2965), + [anon_sym_isize] = ACTIONS(2965), + [anon_sym_usize] = ACTIONS(2965), + [anon_sym_f32] = ACTIONS(2965), + [anon_sym_f64] = ACTIONS(2965), + [anon_sym_bool] = ACTIONS(2965), + [anon_sym_str] = ACTIONS(2965), + [anon_sym_char] = ACTIONS(2965), + [anon_sym_DASH] = ACTIONS(2963), + [anon_sym_BANG] = ACTIONS(2963), + [anon_sym_AMP] = ACTIONS(2963), + [anon_sym_PIPE] = ACTIONS(2963), + [anon_sym_LT] = ACTIONS(2963), + [anon_sym_DOT_DOT] = ACTIONS(2963), + [anon_sym_COLON_COLON] = ACTIONS(2963), + [anon_sym_POUND] = ACTIONS(2963), + [anon_sym_SQUOTE] = ACTIONS(2965), + [anon_sym_async] = ACTIONS(2965), + [anon_sym_break] = ACTIONS(2965), + [anon_sym_const] = ACTIONS(2965), + [anon_sym_continue] = ACTIONS(2965), + [anon_sym_default] = ACTIONS(2965), + [anon_sym_enum] = ACTIONS(2965), + [anon_sym_fn] = ACTIONS(2965), + [anon_sym_for] = ACTIONS(2965), + [anon_sym_gen] = ACTIONS(2965), + [anon_sym_if] = ACTIONS(2965), + [anon_sym_impl] = ACTIONS(2965), + [anon_sym_let] = ACTIONS(2965), + [anon_sym_loop] = ACTIONS(2965), + [anon_sym_match] = ACTIONS(2965), + [anon_sym_mod] = ACTIONS(2965), + [anon_sym_pub] = ACTIONS(2965), + [anon_sym_return] = ACTIONS(2965), + [anon_sym_static] = ACTIONS(2965), + [anon_sym_struct] = ACTIONS(2965), + [anon_sym_trait] = ACTIONS(2965), + [anon_sym_type] = ACTIONS(2965), + [anon_sym_union] = ACTIONS(2965), + [anon_sym_unsafe] = ACTIONS(2965), + [anon_sym_use] = ACTIONS(2965), + [anon_sym_while] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(2965), + [anon_sym_yield] = ACTIONS(2965), + [anon_sym_move] = ACTIONS(2965), + [anon_sym_try] = ACTIONS(2965), + [sym_integer_literal] = ACTIONS(2963), + [aux_sym_string_literal_token1] = ACTIONS(2963), + [sym_char_literal] = ACTIONS(2963), + [anon_sym_true] = ACTIONS(2965), + [anon_sym_false] = ACTIONS(2965), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2965), + [sym_super] = ACTIONS(2965), + [sym_crate] = ACTIONS(2965), + [sym_metavariable] = ACTIONS(2963), + [sym__raw_string_literal_start] = ACTIONS(2963), + [sym_float_literal] = ACTIONS(2963), }, [STATE(806)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2656), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(806), [sym_block_comment] = STATE(806), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [ts_builtin_sym_end] = ACTIONS(2967), + [sym_identifier] = ACTIONS(2969), + [anon_sym_SEMI] = ACTIONS(2967), + [anon_sym_macro_rules_BANG] = ACTIONS(2967), + [anon_sym_LPAREN] = ACTIONS(2967), + [anon_sym_LBRACK] = ACTIONS(2967), + [anon_sym_LBRACE] = ACTIONS(2967), + [anon_sym_RBRACE] = ACTIONS(2967), + [anon_sym_STAR] = ACTIONS(2967), + [anon_sym_u8] = ACTIONS(2969), + [anon_sym_i8] = ACTIONS(2969), + [anon_sym_u16] = ACTIONS(2969), + [anon_sym_i16] = ACTIONS(2969), + [anon_sym_u32] = ACTIONS(2969), + [anon_sym_i32] = ACTIONS(2969), + [anon_sym_u64] = ACTIONS(2969), + [anon_sym_i64] = ACTIONS(2969), + [anon_sym_u128] = ACTIONS(2969), + [anon_sym_i128] = ACTIONS(2969), + [anon_sym_isize] = ACTIONS(2969), + [anon_sym_usize] = ACTIONS(2969), + [anon_sym_f32] = ACTIONS(2969), + [anon_sym_f64] = ACTIONS(2969), + [anon_sym_bool] = ACTIONS(2969), + [anon_sym_str] = ACTIONS(2969), + [anon_sym_char] = ACTIONS(2969), + [anon_sym_DASH] = ACTIONS(2967), + [anon_sym_BANG] = ACTIONS(2967), + [anon_sym_AMP] = ACTIONS(2967), + [anon_sym_PIPE] = ACTIONS(2967), + [anon_sym_LT] = ACTIONS(2967), + [anon_sym_DOT_DOT] = ACTIONS(2967), + [anon_sym_COLON_COLON] = ACTIONS(2967), + [anon_sym_POUND] = ACTIONS(2967), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_async] = ACTIONS(2969), + [anon_sym_break] = ACTIONS(2969), + [anon_sym_const] = ACTIONS(2969), + [anon_sym_continue] = ACTIONS(2969), + [anon_sym_default] = ACTIONS(2969), + [anon_sym_enum] = ACTIONS(2969), + [anon_sym_fn] = ACTIONS(2969), + [anon_sym_for] = ACTIONS(2969), + [anon_sym_gen] = ACTIONS(2969), + [anon_sym_if] = ACTIONS(2969), + [anon_sym_impl] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_loop] = ACTIONS(2969), + [anon_sym_match] = ACTIONS(2969), + [anon_sym_mod] = ACTIONS(2969), + [anon_sym_pub] = ACTIONS(2969), + [anon_sym_return] = ACTIONS(2969), + [anon_sym_static] = ACTIONS(2969), + [anon_sym_struct] = ACTIONS(2969), + [anon_sym_trait] = ACTIONS(2969), + [anon_sym_type] = ACTIONS(2969), + [anon_sym_union] = ACTIONS(2969), + [anon_sym_unsafe] = ACTIONS(2969), + [anon_sym_use] = ACTIONS(2969), + [anon_sym_while] = ACTIONS(2969), + [anon_sym_extern] = ACTIONS(2969), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_move] = ACTIONS(2969), + [anon_sym_try] = ACTIONS(2969), + [sym_integer_literal] = ACTIONS(2967), + [aux_sym_string_literal_token1] = ACTIONS(2967), + [sym_char_literal] = ACTIONS(2967), + [anon_sym_true] = ACTIONS(2969), + [anon_sym_false] = ACTIONS(2969), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2969), + [sym_super] = ACTIONS(2969), + [sym_crate] = ACTIONS(2969), + [sym_metavariable] = ACTIONS(2967), + [sym__raw_string_literal_start] = ACTIONS(2967), + [sym_float_literal] = ACTIONS(2967), }, [STATE(807)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2656), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(807), [sym_block_comment] = STATE(807), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(3126), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [ts_builtin_sym_end] = ACTIONS(2971), + [sym_identifier] = ACTIONS(2973), + [anon_sym_SEMI] = ACTIONS(2971), + [anon_sym_macro_rules_BANG] = ACTIONS(2971), + [anon_sym_LPAREN] = ACTIONS(2971), + [anon_sym_LBRACK] = ACTIONS(2971), + [anon_sym_LBRACE] = ACTIONS(2971), + [anon_sym_RBRACE] = ACTIONS(2971), + [anon_sym_STAR] = ACTIONS(2971), + [anon_sym_u8] = ACTIONS(2973), + [anon_sym_i8] = ACTIONS(2973), + [anon_sym_u16] = ACTIONS(2973), + [anon_sym_i16] = ACTIONS(2973), + [anon_sym_u32] = ACTIONS(2973), + [anon_sym_i32] = ACTIONS(2973), + [anon_sym_u64] = ACTIONS(2973), + [anon_sym_i64] = ACTIONS(2973), + [anon_sym_u128] = ACTIONS(2973), + [anon_sym_i128] = ACTIONS(2973), + [anon_sym_isize] = ACTIONS(2973), + [anon_sym_usize] = ACTIONS(2973), + [anon_sym_f32] = ACTIONS(2973), + [anon_sym_f64] = ACTIONS(2973), + [anon_sym_bool] = ACTIONS(2973), + [anon_sym_str] = ACTIONS(2973), + [anon_sym_char] = ACTIONS(2973), + [anon_sym_DASH] = ACTIONS(2971), + [anon_sym_BANG] = ACTIONS(2971), + [anon_sym_AMP] = ACTIONS(2971), + [anon_sym_PIPE] = ACTIONS(2971), + [anon_sym_LT] = ACTIONS(2971), + [anon_sym_DOT_DOT] = ACTIONS(2971), + [anon_sym_COLON_COLON] = ACTIONS(2971), + [anon_sym_POUND] = ACTIONS(2971), + [anon_sym_SQUOTE] = ACTIONS(2973), + [anon_sym_async] = ACTIONS(2973), + [anon_sym_break] = ACTIONS(2973), + [anon_sym_const] = ACTIONS(2973), + [anon_sym_continue] = ACTIONS(2973), + [anon_sym_default] = ACTIONS(2973), + [anon_sym_enum] = ACTIONS(2973), + [anon_sym_fn] = ACTIONS(2973), + [anon_sym_for] = ACTIONS(2973), + [anon_sym_gen] = ACTIONS(2973), + [anon_sym_if] = ACTIONS(2973), + [anon_sym_impl] = ACTIONS(2973), + [anon_sym_let] = ACTIONS(2973), + [anon_sym_loop] = ACTIONS(2973), + [anon_sym_match] = ACTIONS(2973), + [anon_sym_mod] = ACTIONS(2973), + [anon_sym_pub] = ACTIONS(2973), + [anon_sym_return] = ACTIONS(2973), + [anon_sym_static] = ACTIONS(2973), + [anon_sym_struct] = ACTIONS(2973), + [anon_sym_trait] = ACTIONS(2973), + [anon_sym_type] = ACTIONS(2973), + [anon_sym_union] = ACTIONS(2973), + [anon_sym_unsafe] = ACTIONS(2973), + [anon_sym_use] = ACTIONS(2973), + [anon_sym_while] = ACTIONS(2973), + [anon_sym_extern] = ACTIONS(2973), + [anon_sym_yield] = ACTIONS(2973), + [anon_sym_move] = ACTIONS(2973), + [anon_sym_try] = ACTIONS(2973), + [sym_integer_literal] = ACTIONS(2971), + [aux_sym_string_literal_token1] = ACTIONS(2971), + [sym_char_literal] = ACTIONS(2971), + [anon_sym_true] = ACTIONS(2973), + [anon_sym_false] = ACTIONS(2973), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2973), + [sym_super] = ACTIONS(2973), + [sym_crate] = ACTIONS(2973), + [sym_metavariable] = ACTIONS(2971), + [sym__raw_string_literal_start] = ACTIONS(2971), + [sym_float_literal] = ACTIONS(2971), }, [STATE(808)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2656), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(808), [sym_block_comment] = STATE(808), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [ts_builtin_sym_end] = ACTIONS(2975), + [sym_identifier] = ACTIONS(2977), + [anon_sym_SEMI] = ACTIONS(2975), + [anon_sym_macro_rules_BANG] = ACTIONS(2975), + [anon_sym_LPAREN] = ACTIONS(2975), + [anon_sym_LBRACK] = ACTIONS(2975), + [anon_sym_LBRACE] = ACTIONS(2975), + [anon_sym_RBRACE] = ACTIONS(2975), + [anon_sym_STAR] = ACTIONS(2975), + [anon_sym_u8] = ACTIONS(2977), + [anon_sym_i8] = ACTIONS(2977), + [anon_sym_u16] = ACTIONS(2977), + [anon_sym_i16] = ACTIONS(2977), + [anon_sym_u32] = ACTIONS(2977), + [anon_sym_i32] = ACTIONS(2977), + [anon_sym_u64] = ACTIONS(2977), + [anon_sym_i64] = ACTIONS(2977), + [anon_sym_u128] = ACTIONS(2977), + [anon_sym_i128] = ACTIONS(2977), + [anon_sym_isize] = ACTIONS(2977), + [anon_sym_usize] = ACTIONS(2977), + [anon_sym_f32] = ACTIONS(2977), + [anon_sym_f64] = ACTIONS(2977), + [anon_sym_bool] = ACTIONS(2977), + [anon_sym_str] = ACTIONS(2977), + [anon_sym_char] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2975), + [anon_sym_BANG] = ACTIONS(2975), + [anon_sym_AMP] = ACTIONS(2975), + [anon_sym_PIPE] = ACTIONS(2975), + [anon_sym_LT] = ACTIONS(2975), + [anon_sym_DOT_DOT] = ACTIONS(2975), + [anon_sym_COLON_COLON] = ACTIONS(2975), + [anon_sym_POUND] = ACTIONS(2975), + [anon_sym_SQUOTE] = ACTIONS(2977), + [anon_sym_async] = ACTIONS(2977), + [anon_sym_break] = ACTIONS(2977), + [anon_sym_const] = ACTIONS(2977), + [anon_sym_continue] = ACTIONS(2977), + [anon_sym_default] = ACTIONS(2977), + [anon_sym_enum] = ACTIONS(2977), + [anon_sym_fn] = ACTIONS(2977), + [anon_sym_for] = ACTIONS(2977), + [anon_sym_gen] = ACTIONS(2977), + [anon_sym_if] = ACTIONS(2977), + [anon_sym_impl] = ACTIONS(2977), + [anon_sym_let] = ACTIONS(2977), + [anon_sym_loop] = ACTIONS(2977), + [anon_sym_match] = ACTIONS(2977), + [anon_sym_mod] = ACTIONS(2977), + [anon_sym_pub] = ACTIONS(2977), + [anon_sym_return] = ACTIONS(2977), + [anon_sym_static] = ACTIONS(2977), + [anon_sym_struct] = ACTIONS(2977), + [anon_sym_trait] = ACTIONS(2977), + [anon_sym_type] = ACTIONS(2977), + [anon_sym_union] = ACTIONS(2977), + [anon_sym_unsafe] = ACTIONS(2977), + [anon_sym_use] = ACTIONS(2977), + [anon_sym_while] = ACTIONS(2977), + [anon_sym_extern] = ACTIONS(2977), + [anon_sym_yield] = ACTIONS(2977), + [anon_sym_move] = ACTIONS(2977), + [anon_sym_try] = ACTIONS(2977), + [sym_integer_literal] = ACTIONS(2975), + [aux_sym_string_literal_token1] = ACTIONS(2975), + [sym_char_literal] = ACTIONS(2975), + [anon_sym_true] = ACTIONS(2977), + [anon_sym_false] = ACTIONS(2977), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2977), + [sym_super] = ACTIONS(2977), + [sym_crate] = ACTIONS(2977), + [sym_metavariable] = ACTIONS(2975), + [sym__raw_string_literal_start] = ACTIONS(2975), + [sym_float_literal] = ACTIONS(2975), }, [STATE(809)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2656), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(809), [sym_block_comment] = STATE(809), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(3130), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [ts_builtin_sym_end] = ACTIONS(2979), + [sym_identifier] = ACTIONS(2981), + [anon_sym_SEMI] = ACTIONS(2979), + [anon_sym_macro_rules_BANG] = ACTIONS(2979), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_RBRACE] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_u8] = ACTIONS(2981), + [anon_sym_i8] = ACTIONS(2981), + [anon_sym_u16] = ACTIONS(2981), + [anon_sym_i16] = ACTIONS(2981), + [anon_sym_u32] = ACTIONS(2981), + [anon_sym_i32] = ACTIONS(2981), + [anon_sym_u64] = ACTIONS(2981), + [anon_sym_i64] = ACTIONS(2981), + [anon_sym_u128] = ACTIONS(2981), + [anon_sym_i128] = ACTIONS(2981), + [anon_sym_isize] = ACTIONS(2981), + [anon_sym_usize] = ACTIONS(2981), + [anon_sym_f32] = ACTIONS(2981), + [anon_sym_f64] = ACTIONS(2981), + [anon_sym_bool] = ACTIONS(2981), + [anon_sym_str] = ACTIONS(2981), + [anon_sym_char] = ACTIONS(2981), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_BANG] = ACTIONS(2979), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_PIPE] = ACTIONS(2979), + [anon_sym_LT] = ACTIONS(2979), + [anon_sym_DOT_DOT] = ACTIONS(2979), + [anon_sym_COLON_COLON] = ACTIONS(2979), + [anon_sym_POUND] = ACTIONS(2979), + [anon_sym_SQUOTE] = ACTIONS(2981), + [anon_sym_async] = ACTIONS(2981), + [anon_sym_break] = ACTIONS(2981), + [anon_sym_const] = ACTIONS(2981), + [anon_sym_continue] = ACTIONS(2981), + [anon_sym_default] = ACTIONS(2981), + [anon_sym_enum] = ACTIONS(2981), + [anon_sym_fn] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2981), + [anon_sym_gen] = ACTIONS(2981), + [anon_sym_if] = ACTIONS(2981), + [anon_sym_impl] = ACTIONS(2981), + [anon_sym_let] = ACTIONS(2981), + [anon_sym_loop] = ACTIONS(2981), + [anon_sym_match] = ACTIONS(2981), + [anon_sym_mod] = ACTIONS(2981), + [anon_sym_pub] = ACTIONS(2981), + [anon_sym_return] = ACTIONS(2981), + [anon_sym_static] = ACTIONS(2981), + [anon_sym_struct] = ACTIONS(2981), + [anon_sym_trait] = ACTIONS(2981), + [anon_sym_type] = ACTIONS(2981), + [anon_sym_union] = ACTIONS(2981), + [anon_sym_unsafe] = ACTIONS(2981), + [anon_sym_use] = ACTIONS(2981), + [anon_sym_while] = ACTIONS(2981), + [anon_sym_extern] = ACTIONS(2981), + [anon_sym_yield] = ACTIONS(2981), + [anon_sym_move] = ACTIONS(2981), + [anon_sym_try] = ACTIONS(2981), + [sym_integer_literal] = ACTIONS(2979), + [aux_sym_string_literal_token1] = ACTIONS(2979), + [sym_char_literal] = ACTIONS(2979), + [anon_sym_true] = ACTIONS(2981), + [anon_sym_false] = ACTIONS(2981), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2981), + [sym_super] = ACTIONS(2981), + [sym_crate] = ACTIONS(2981), + [sym_metavariable] = ACTIONS(2979), + [sym__raw_string_literal_start] = ACTIONS(2979), + [sym_float_literal] = ACTIONS(2979), }, [STATE(810)] = { - [sym_parameter] = STATE(3217), - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3053), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(810), [sym_block_comment] = STATE(810), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(3132), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3134), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [ts_builtin_sym_end] = ACTIONS(2983), + [sym_identifier] = ACTIONS(2985), + [anon_sym_SEMI] = ACTIONS(2983), + [anon_sym_macro_rules_BANG] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2983), + [anon_sym_LBRACK] = ACTIONS(2983), + [anon_sym_LBRACE] = ACTIONS(2983), + [anon_sym_RBRACE] = ACTIONS(2983), + [anon_sym_STAR] = ACTIONS(2983), + [anon_sym_u8] = ACTIONS(2985), + [anon_sym_i8] = ACTIONS(2985), + [anon_sym_u16] = ACTIONS(2985), + [anon_sym_i16] = ACTIONS(2985), + [anon_sym_u32] = ACTIONS(2985), + [anon_sym_i32] = ACTIONS(2985), + [anon_sym_u64] = ACTIONS(2985), + [anon_sym_i64] = ACTIONS(2985), + [anon_sym_u128] = ACTIONS(2985), + [anon_sym_i128] = ACTIONS(2985), + [anon_sym_isize] = ACTIONS(2985), + [anon_sym_usize] = ACTIONS(2985), + [anon_sym_f32] = ACTIONS(2985), + [anon_sym_f64] = ACTIONS(2985), + [anon_sym_bool] = ACTIONS(2985), + [anon_sym_str] = ACTIONS(2985), + [anon_sym_char] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_BANG] = ACTIONS(2983), + [anon_sym_AMP] = ACTIONS(2983), + [anon_sym_PIPE] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2983), + [anon_sym_DOT_DOT] = ACTIONS(2983), + [anon_sym_COLON_COLON] = ACTIONS(2983), + [anon_sym_POUND] = ACTIONS(2983), + [anon_sym_SQUOTE] = ACTIONS(2985), + [anon_sym_async] = ACTIONS(2985), + [anon_sym_break] = ACTIONS(2985), + [anon_sym_const] = ACTIONS(2985), + [anon_sym_continue] = ACTIONS(2985), + [anon_sym_default] = ACTIONS(2985), + [anon_sym_enum] = ACTIONS(2985), + [anon_sym_fn] = ACTIONS(2985), + [anon_sym_for] = ACTIONS(2985), + [anon_sym_gen] = ACTIONS(2985), + [anon_sym_if] = ACTIONS(2985), + [anon_sym_impl] = ACTIONS(2985), + [anon_sym_let] = ACTIONS(2985), + [anon_sym_loop] = ACTIONS(2985), + [anon_sym_match] = ACTIONS(2985), + [anon_sym_mod] = ACTIONS(2985), + [anon_sym_pub] = ACTIONS(2985), + [anon_sym_return] = ACTIONS(2985), + [anon_sym_static] = ACTIONS(2985), + [anon_sym_struct] = ACTIONS(2985), + [anon_sym_trait] = ACTIONS(2985), + [anon_sym_type] = ACTIONS(2985), + [anon_sym_union] = ACTIONS(2985), + [anon_sym_unsafe] = ACTIONS(2985), + [anon_sym_use] = ACTIONS(2985), + [anon_sym_while] = ACTIONS(2985), + [anon_sym_extern] = ACTIONS(2985), + [anon_sym_yield] = ACTIONS(2985), + [anon_sym_move] = ACTIONS(2985), + [anon_sym_try] = ACTIONS(2985), + [sym_integer_literal] = ACTIONS(2983), + [aux_sym_string_literal_token1] = ACTIONS(2983), + [sym_char_literal] = ACTIONS(2983), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2985), + [sym_super] = ACTIONS(2985), + [sym_crate] = ACTIONS(2985), + [sym_metavariable] = ACTIONS(2983), + [sym__raw_string_literal_start] = ACTIONS(2983), + [sym_float_literal] = ACTIONS(2983), }, [STATE(811)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2656), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(811), [sym_block_comment] = STATE(811), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(3136), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [ts_builtin_sym_end] = ACTIONS(2987), + [sym_identifier] = ACTIONS(2989), + [anon_sym_SEMI] = ACTIONS(2987), + [anon_sym_macro_rules_BANG] = ACTIONS(2987), + [anon_sym_LPAREN] = ACTIONS(2987), + [anon_sym_LBRACK] = ACTIONS(2987), + [anon_sym_LBRACE] = ACTIONS(2987), + [anon_sym_RBRACE] = ACTIONS(2987), + [anon_sym_STAR] = ACTIONS(2987), + [anon_sym_u8] = ACTIONS(2989), + [anon_sym_i8] = ACTIONS(2989), + [anon_sym_u16] = ACTIONS(2989), + [anon_sym_i16] = ACTIONS(2989), + [anon_sym_u32] = ACTIONS(2989), + [anon_sym_i32] = ACTIONS(2989), + [anon_sym_u64] = ACTIONS(2989), + [anon_sym_i64] = ACTIONS(2989), + [anon_sym_u128] = ACTIONS(2989), + [anon_sym_i128] = ACTIONS(2989), + [anon_sym_isize] = ACTIONS(2989), + [anon_sym_usize] = ACTIONS(2989), + [anon_sym_f32] = ACTIONS(2989), + [anon_sym_f64] = ACTIONS(2989), + [anon_sym_bool] = ACTIONS(2989), + [anon_sym_str] = ACTIONS(2989), + [anon_sym_char] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2987), + [anon_sym_BANG] = ACTIONS(2987), + [anon_sym_AMP] = ACTIONS(2987), + [anon_sym_PIPE] = ACTIONS(2987), + [anon_sym_LT] = ACTIONS(2987), + [anon_sym_DOT_DOT] = ACTIONS(2987), + [anon_sym_COLON_COLON] = ACTIONS(2987), + [anon_sym_POUND] = ACTIONS(2987), + [anon_sym_SQUOTE] = ACTIONS(2989), + [anon_sym_async] = ACTIONS(2989), + [anon_sym_break] = ACTIONS(2989), + [anon_sym_const] = ACTIONS(2989), + [anon_sym_continue] = ACTIONS(2989), + [anon_sym_default] = ACTIONS(2989), + [anon_sym_enum] = ACTIONS(2989), + [anon_sym_fn] = ACTIONS(2989), + [anon_sym_for] = ACTIONS(2989), + [anon_sym_gen] = ACTIONS(2989), + [anon_sym_if] = ACTIONS(2989), + [anon_sym_impl] = ACTIONS(2989), + [anon_sym_let] = ACTIONS(2989), + [anon_sym_loop] = ACTIONS(2989), + [anon_sym_match] = ACTIONS(2989), + [anon_sym_mod] = ACTIONS(2989), + [anon_sym_pub] = ACTIONS(2989), + [anon_sym_return] = ACTIONS(2989), + [anon_sym_static] = ACTIONS(2989), + [anon_sym_struct] = ACTIONS(2989), + [anon_sym_trait] = ACTIONS(2989), + [anon_sym_type] = ACTIONS(2989), + [anon_sym_union] = ACTIONS(2989), + [anon_sym_unsafe] = ACTIONS(2989), + [anon_sym_use] = ACTIONS(2989), + [anon_sym_while] = ACTIONS(2989), + [anon_sym_extern] = ACTIONS(2989), + [anon_sym_yield] = ACTIONS(2989), + [anon_sym_move] = ACTIONS(2989), + [anon_sym_try] = ACTIONS(2989), + [sym_integer_literal] = ACTIONS(2987), + [aux_sym_string_literal_token1] = ACTIONS(2987), + [sym_char_literal] = ACTIONS(2987), + [anon_sym_true] = ACTIONS(2989), + [anon_sym_false] = ACTIONS(2989), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2989), + [sym_super] = ACTIONS(2989), + [sym_crate] = ACTIONS(2989), + [sym_metavariable] = ACTIONS(2987), + [sym__raw_string_literal_start] = ACTIONS(2987), + [sym_float_literal] = ACTIONS(2987), }, [STATE(812)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2656), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(812), [sym_block_comment] = STATE(812), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(3138), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [ts_builtin_sym_end] = ACTIONS(2991), + [sym_identifier] = ACTIONS(2993), + [anon_sym_SEMI] = ACTIONS(2991), + [anon_sym_macro_rules_BANG] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_LBRACE] = ACTIONS(2991), + [anon_sym_RBRACE] = ACTIONS(2991), + [anon_sym_STAR] = ACTIONS(2991), + [anon_sym_u8] = ACTIONS(2993), + [anon_sym_i8] = ACTIONS(2993), + [anon_sym_u16] = ACTIONS(2993), + [anon_sym_i16] = ACTIONS(2993), + [anon_sym_u32] = ACTIONS(2993), + [anon_sym_i32] = ACTIONS(2993), + [anon_sym_u64] = ACTIONS(2993), + [anon_sym_i64] = ACTIONS(2993), + [anon_sym_u128] = ACTIONS(2993), + [anon_sym_i128] = ACTIONS(2993), + [anon_sym_isize] = ACTIONS(2993), + [anon_sym_usize] = ACTIONS(2993), + [anon_sym_f32] = ACTIONS(2993), + [anon_sym_f64] = ACTIONS(2993), + [anon_sym_bool] = ACTIONS(2993), + [anon_sym_str] = ACTIONS(2993), + [anon_sym_char] = ACTIONS(2993), + [anon_sym_DASH] = ACTIONS(2991), + [anon_sym_BANG] = ACTIONS(2991), + [anon_sym_AMP] = ACTIONS(2991), + [anon_sym_PIPE] = ACTIONS(2991), + [anon_sym_LT] = ACTIONS(2991), + [anon_sym_DOT_DOT] = ACTIONS(2991), + [anon_sym_COLON_COLON] = ACTIONS(2991), + [anon_sym_POUND] = ACTIONS(2991), + [anon_sym_SQUOTE] = ACTIONS(2993), + [anon_sym_async] = ACTIONS(2993), + [anon_sym_break] = ACTIONS(2993), + [anon_sym_const] = ACTIONS(2993), + [anon_sym_continue] = ACTIONS(2993), + [anon_sym_default] = ACTIONS(2993), + [anon_sym_enum] = ACTIONS(2993), + [anon_sym_fn] = ACTIONS(2993), + [anon_sym_for] = ACTIONS(2993), + [anon_sym_gen] = ACTIONS(2993), + [anon_sym_if] = ACTIONS(2993), + [anon_sym_impl] = ACTIONS(2993), + [anon_sym_let] = ACTIONS(2993), + [anon_sym_loop] = ACTIONS(2993), + [anon_sym_match] = ACTIONS(2993), + [anon_sym_mod] = ACTIONS(2993), + [anon_sym_pub] = ACTIONS(2993), + [anon_sym_return] = ACTIONS(2993), + [anon_sym_static] = ACTIONS(2993), + [anon_sym_struct] = ACTIONS(2993), + [anon_sym_trait] = ACTIONS(2993), + [anon_sym_type] = ACTIONS(2993), + [anon_sym_union] = ACTIONS(2993), + [anon_sym_unsafe] = ACTIONS(2993), + [anon_sym_use] = ACTIONS(2993), + [anon_sym_while] = ACTIONS(2993), + [anon_sym_extern] = ACTIONS(2993), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_move] = ACTIONS(2993), + [anon_sym_try] = ACTIONS(2993), + [sym_integer_literal] = ACTIONS(2991), + [aux_sym_string_literal_token1] = ACTIONS(2991), + [sym_char_literal] = ACTIONS(2991), + [anon_sym_true] = ACTIONS(2993), + [anon_sym_false] = ACTIONS(2993), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2993), + [sym_super] = ACTIONS(2993), + [sym_crate] = ACTIONS(2993), + [sym_metavariable] = ACTIONS(2991), + [sym__raw_string_literal_start] = ACTIONS(2991), + [sym_float_literal] = ACTIONS(2991), }, [STATE(813)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2656), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(813), [sym_block_comment] = STATE(813), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_RBRACK] = ACTIONS(3140), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [ts_builtin_sym_end] = ACTIONS(2995), + [sym_identifier] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(2995), + [anon_sym_macro_rules_BANG] = ACTIONS(2995), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2995), + [anon_sym_RBRACE] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_u8] = ACTIONS(2997), + [anon_sym_i8] = ACTIONS(2997), + [anon_sym_u16] = ACTIONS(2997), + [anon_sym_i16] = ACTIONS(2997), + [anon_sym_u32] = ACTIONS(2997), + [anon_sym_i32] = ACTIONS(2997), + [anon_sym_u64] = ACTIONS(2997), + [anon_sym_i64] = ACTIONS(2997), + [anon_sym_u128] = ACTIONS(2997), + [anon_sym_i128] = ACTIONS(2997), + [anon_sym_isize] = ACTIONS(2997), + [anon_sym_usize] = ACTIONS(2997), + [anon_sym_f32] = ACTIONS(2997), + [anon_sym_f64] = ACTIONS(2997), + [anon_sym_bool] = ACTIONS(2997), + [anon_sym_str] = ACTIONS(2997), + [anon_sym_char] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_BANG] = ACTIONS(2995), + [anon_sym_AMP] = ACTIONS(2995), + [anon_sym_PIPE] = ACTIONS(2995), + [anon_sym_LT] = ACTIONS(2995), + [anon_sym_DOT_DOT] = ACTIONS(2995), + [anon_sym_COLON_COLON] = ACTIONS(2995), + [anon_sym_POUND] = ACTIONS(2995), + [anon_sym_SQUOTE] = ACTIONS(2997), + [anon_sym_async] = ACTIONS(2997), + [anon_sym_break] = ACTIONS(2997), + [anon_sym_const] = ACTIONS(2997), + [anon_sym_continue] = ACTIONS(2997), + [anon_sym_default] = ACTIONS(2997), + [anon_sym_enum] = ACTIONS(2997), + [anon_sym_fn] = ACTIONS(2997), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_gen] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_impl] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_loop] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_mod] = ACTIONS(2997), + [anon_sym_pub] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_static] = ACTIONS(2997), + [anon_sym_struct] = ACTIONS(2997), + [anon_sym_trait] = ACTIONS(2997), + [anon_sym_type] = ACTIONS(2997), + [anon_sym_union] = ACTIONS(2997), + [anon_sym_unsafe] = ACTIONS(2997), + [anon_sym_use] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_extern] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_move] = ACTIONS(2997), + [anon_sym_try] = ACTIONS(2997), + [sym_integer_literal] = ACTIONS(2995), + [aux_sym_string_literal_token1] = ACTIONS(2995), + [sym_char_literal] = ACTIONS(2995), + [anon_sym_true] = ACTIONS(2997), + [anon_sym_false] = ACTIONS(2997), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2997), + [sym_super] = ACTIONS(2997), + [sym_crate] = ACTIONS(2997), + [sym_metavariable] = ACTIONS(2995), + [sym__raw_string_literal_start] = ACTIONS(2995), + [sym_float_literal] = ACTIONS(2995), }, [STATE(814)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2674), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(814), [sym_block_comment] = STATE(814), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3142), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3144), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [ts_builtin_sym_end] = ACTIONS(2999), + [sym_identifier] = ACTIONS(3001), + [anon_sym_SEMI] = ACTIONS(2999), + [anon_sym_macro_rules_BANG] = ACTIONS(2999), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(2999), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_RBRACE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_u8] = ACTIONS(3001), + [anon_sym_i8] = ACTIONS(3001), + [anon_sym_u16] = ACTIONS(3001), + [anon_sym_i16] = ACTIONS(3001), + [anon_sym_u32] = ACTIONS(3001), + [anon_sym_i32] = ACTIONS(3001), + [anon_sym_u64] = ACTIONS(3001), + [anon_sym_i64] = ACTIONS(3001), + [anon_sym_u128] = ACTIONS(3001), + [anon_sym_i128] = ACTIONS(3001), + [anon_sym_isize] = ACTIONS(3001), + [anon_sym_usize] = ACTIONS(3001), + [anon_sym_f32] = ACTIONS(3001), + [anon_sym_f64] = ACTIONS(3001), + [anon_sym_bool] = ACTIONS(3001), + [anon_sym_str] = ACTIONS(3001), + [anon_sym_char] = ACTIONS(3001), + [anon_sym_DASH] = ACTIONS(2999), + [anon_sym_BANG] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(2999), + [anon_sym_PIPE] = ACTIONS(2999), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(2999), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_POUND] = ACTIONS(2999), + [anon_sym_SQUOTE] = ACTIONS(3001), + [anon_sym_async] = ACTIONS(3001), + [anon_sym_break] = ACTIONS(3001), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_continue] = ACTIONS(3001), + [anon_sym_default] = ACTIONS(3001), + [anon_sym_enum] = ACTIONS(3001), + [anon_sym_fn] = ACTIONS(3001), + [anon_sym_for] = ACTIONS(3001), + [anon_sym_gen] = ACTIONS(3001), + [anon_sym_if] = ACTIONS(3001), + [anon_sym_impl] = ACTIONS(3001), + [anon_sym_let] = ACTIONS(3001), + [anon_sym_loop] = ACTIONS(3001), + [anon_sym_match] = ACTIONS(3001), + [anon_sym_mod] = ACTIONS(3001), + [anon_sym_pub] = ACTIONS(3001), + [anon_sym_return] = ACTIONS(3001), + [anon_sym_static] = ACTIONS(3001), + [anon_sym_struct] = ACTIONS(3001), + [anon_sym_trait] = ACTIONS(3001), + [anon_sym_type] = ACTIONS(3001), + [anon_sym_union] = ACTIONS(3001), + [anon_sym_unsafe] = ACTIONS(3001), + [anon_sym_use] = ACTIONS(3001), + [anon_sym_while] = ACTIONS(3001), + [anon_sym_extern] = ACTIONS(3001), + [anon_sym_yield] = ACTIONS(3001), + [anon_sym_move] = ACTIONS(3001), + [anon_sym_try] = ACTIONS(3001), + [sym_integer_literal] = ACTIONS(2999), + [aux_sym_string_literal_token1] = ACTIONS(2999), + [sym_char_literal] = ACTIONS(2999), + [anon_sym_true] = ACTIONS(3001), + [anon_sym_false] = ACTIONS(3001), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3001), + [sym_super] = ACTIONS(3001), + [sym_crate] = ACTIONS(3001), + [sym_metavariable] = ACTIONS(2999), + [sym__raw_string_literal_start] = ACTIONS(2999), + [sym_float_literal] = ACTIONS(2999), }, [STATE(815)] = { - [sym_parameter] = STATE(3002), - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2576), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(815), [sym_block_comment] = STATE(815), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(3146), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(3132), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3134), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [ts_builtin_sym_end] = ACTIONS(3003), + [sym_identifier] = ACTIONS(3005), + [anon_sym_SEMI] = ACTIONS(3003), + [anon_sym_macro_rules_BANG] = ACTIONS(3003), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_LBRACE] = ACTIONS(3003), + [anon_sym_RBRACE] = ACTIONS(3003), + [anon_sym_STAR] = ACTIONS(3003), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3003), + [anon_sym_BANG] = ACTIONS(3003), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_PIPE] = ACTIONS(3003), + [anon_sym_LT] = ACTIONS(3003), + [anon_sym_DOT_DOT] = ACTIONS(3003), + [anon_sym_COLON_COLON] = ACTIONS(3003), + [anon_sym_POUND] = ACTIONS(3003), + [anon_sym_SQUOTE] = ACTIONS(3005), + [anon_sym_async] = ACTIONS(3005), + [anon_sym_break] = ACTIONS(3005), + [anon_sym_const] = ACTIONS(3005), + [anon_sym_continue] = ACTIONS(3005), + [anon_sym_default] = ACTIONS(3005), + [anon_sym_enum] = ACTIONS(3005), + [anon_sym_fn] = ACTIONS(3005), + [anon_sym_for] = ACTIONS(3005), + [anon_sym_gen] = ACTIONS(3005), + [anon_sym_if] = ACTIONS(3005), + [anon_sym_impl] = ACTIONS(3005), + [anon_sym_let] = ACTIONS(3005), + [anon_sym_loop] = ACTIONS(3005), + [anon_sym_match] = ACTIONS(3005), + [anon_sym_mod] = ACTIONS(3005), + [anon_sym_pub] = ACTIONS(3005), + [anon_sym_return] = ACTIONS(3005), + [anon_sym_static] = ACTIONS(3005), + [anon_sym_struct] = ACTIONS(3005), + [anon_sym_trait] = ACTIONS(3005), + [anon_sym_type] = ACTIONS(3005), + [anon_sym_union] = ACTIONS(3005), + [anon_sym_unsafe] = ACTIONS(3005), + [anon_sym_use] = ACTIONS(3005), + [anon_sym_while] = ACTIONS(3005), + [anon_sym_extern] = ACTIONS(3005), + [anon_sym_yield] = ACTIONS(3005), + [anon_sym_move] = ACTIONS(3005), + [anon_sym_try] = ACTIONS(3005), + [sym_integer_literal] = ACTIONS(3003), + [aux_sym_string_literal_token1] = ACTIONS(3003), + [sym_char_literal] = ACTIONS(3003), + [anon_sym_true] = ACTIONS(3005), + [anon_sym_false] = ACTIONS(3005), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3005), + [sym_super] = ACTIONS(3005), + [sym_crate] = ACTIONS(3005), + [sym_metavariable] = ACTIONS(3003), + [sym__raw_string_literal_start] = ACTIONS(3003), + [sym_float_literal] = ACTIONS(3003), }, [STATE(816)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2656), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(816), [sym_block_comment] = STATE(816), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(3148), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [ts_builtin_sym_end] = ACTIONS(3007), + [sym_identifier] = ACTIONS(3009), + [anon_sym_SEMI] = ACTIONS(3007), + [anon_sym_macro_rules_BANG] = ACTIONS(3007), + [anon_sym_LPAREN] = ACTIONS(3007), + [anon_sym_LBRACK] = ACTIONS(3007), + [anon_sym_LBRACE] = ACTIONS(3007), + [anon_sym_RBRACE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3007), + [anon_sym_u8] = ACTIONS(3009), + [anon_sym_i8] = ACTIONS(3009), + [anon_sym_u16] = ACTIONS(3009), + [anon_sym_i16] = ACTIONS(3009), + [anon_sym_u32] = ACTIONS(3009), + [anon_sym_i32] = ACTIONS(3009), + [anon_sym_u64] = ACTIONS(3009), + [anon_sym_i64] = ACTIONS(3009), + [anon_sym_u128] = ACTIONS(3009), + [anon_sym_i128] = ACTIONS(3009), + [anon_sym_isize] = ACTIONS(3009), + [anon_sym_usize] = ACTIONS(3009), + [anon_sym_f32] = ACTIONS(3009), + [anon_sym_f64] = ACTIONS(3009), + [anon_sym_bool] = ACTIONS(3009), + [anon_sym_str] = ACTIONS(3009), + [anon_sym_char] = ACTIONS(3009), + [anon_sym_DASH] = ACTIONS(3007), + [anon_sym_BANG] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(3007), + [anon_sym_LT] = ACTIONS(3007), + [anon_sym_DOT_DOT] = ACTIONS(3007), + [anon_sym_COLON_COLON] = ACTIONS(3007), + [anon_sym_POUND] = ACTIONS(3007), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(3009), + [anon_sym_break] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3009), + [anon_sym_continue] = ACTIONS(3009), + [anon_sym_default] = ACTIONS(3009), + [anon_sym_enum] = ACTIONS(3009), + [anon_sym_fn] = ACTIONS(3009), + [anon_sym_for] = ACTIONS(3009), + [anon_sym_gen] = ACTIONS(3009), + [anon_sym_if] = ACTIONS(3009), + [anon_sym_impl] = ACTIONS(3009), + [anon_sym_let] = ACTIONS(3009), + [anon_sym_loop] = ACTIONS(3009), + [anon_sym_match] = ACTIONS(3009), + [anon_sym_mod] = ACTIONS(3009), + [anon_sym_pub] = ACTIONS(3009), + [anon_sym_return] = ACTIONS(3009), + [anon_sym_static] = ACTIONS(3009), + [anon_sym_struct] = ACTIONS(3009), + [anon_sym_trait] = ACTIONS(3009), + [anon_sym_type] = ACTIONS(3009), + [anon_sym_union] = ACTIONS(3009), + [anon_sym_unsafe] = ACTIONS(3009), + [anon_sym_use] = ACTIONS(3009), + [anon_sym_while] = ACTIONS(3009), + [anon_sym_extern] = ACTIONS(3009), + [anon_sym_yield] = ACTIONS(3009), + [anon_sym_move] = ACTIONS(3009), + [anon_sym_try] = ACTIONS(3009), + [sym_integer_literal] = ACTIONS(3007), + [aux_sym_string_literal_token1] = ACTIONS(3007), + [sym_char_literal] = ACTIONS(3007), + [anon_sym_true] = ACTIONS(3009), + [anon_sym_false] = ACTIONS(3009), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3009), + [sym_super] = ACTIONS(3009), + [sym_crate] = ACTIONS(3009), + [sym_metavariable] = ACTIONS(3007), + [sym__raw_string_literal_start] = ACTIONS(3007), + [sym_float_literal] = ACTIONS(3007), }, [STATE(817)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2656), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_attribute_item] = STATE(1389), + [sym_attributes] = STATE(888), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym_visibility_modifier] = STATE(1010), + [sym__type] = STATE(3107), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(817), [sym_block_comment] = STATE(817), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(3150), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [aux_sym_attributes_repeat1] = STATE(1138), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_RPAREN] = ACTIONS(3011), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_POUND] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_pub] = ACTIONS(2289), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(2291), + [sym_metavariable] = ACTIONS(1553), }, [STATE(818)] = { - [sym_parameter] = STATE(3002), - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2687), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_attribute_item] = STATE(1389), + [sym_attributes] = STATE(888), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym_visibility_modifier] = STATE(1010), + [sym__type] = STATE(3107), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(818), [sym_block_comment] = STATE(818), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(3146), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(3132), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3134), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [aux_sym_attributes_repeat1] = STATE(1138), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_RPAREN] = ACTIONS(3013), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_POUND] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_pub] = ACTIONS(2289), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(2291), + [sym_metavariable] = ACTIONS(1553), }, [STATE(819)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2656), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_attribute_item] = STATE(1389), + [sym_attributes] = STATE(888), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym_visibility_modifier] = STATE(1010), + [sym__type] = STATE(3107), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(819), [sym_block_comment] = STATE(819), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_RBRACK] = ACTIONS(3152), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [aux_sym_attributes_repeat1] = STATE(1138), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_RPAREN] = ACTIONS(3015), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_POUND] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_pub] = ACTIONS(2289), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(2291), + [sym_metavariable] = ACTIONS(1553), }, [STATE(820)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2656), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_attribute_item] = STATE(1389), + [sym_attributes] = STATE(888), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym_visibility_modifier] = STATE(1010), + [sym__type] = STATE(3107), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(820), [sym_block_comment] = STATE(820), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_RBRACK] = ACTIONS(3154), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [aux_sym_attributes_repeat1] = STATE(1138), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_RPAREN] = ACTIONS(3017), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_POUND] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_pub] = ACTIONS(2289), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(2291), + [sym_metavariable] = ACTIONS(1553), }, [STATE(821)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2194), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_attribute_item] = STATE(1389), + [sym_attributes] = STATE(888), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym_visibility_modifier] = STATE(1010), + [sym__type] = STATE(3107), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(821), [sym_block_comment] = STATE(821), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [aux_sym_attributes_repeat1] = STATE(1138), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_RPAREN] = ACTIONS(3019), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_POUND] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_pub] = ACTIONS(2289), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(2291), + [sym_metavariable] = ACTIONS(1553), }, [STATE(822)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3478), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_attribute_item] = STATE(1389), + [sym_attributes] = STATE(888), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym_visibility_modifier] = STATE(1010), + [sym__type] = STATE(3107), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(822), [sym_block_comment] = STATE(822), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [aux_sym_attributes_repeat1] = STATE(1138), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_RPAREN] = ACTIONS(3021), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_POUND] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_pub] = ACTIONS(2289), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(2291), + [sym_metavariable] = ACTIONS(1553), }, [STATE(823)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2589), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(823), [sym_block_comment] = STATE(823), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(3156), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(3023), + [anon_sym_SEMI] = ACTIONS(3025), + [anon_sym_macro_rules_BANG] = ACTIONS(3025), + [anon_sym_LPAREN] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(3025), + [anon_sym_LBRACE] = ACTIONS(3025), + [anon_sym_STAR] = ACTIONS(3025), + [anon_sym_u8] = ACTIONS(3023), + [anon_sym_i8] = ACTIONS(3023), + [anon_sym_u16] = ACTIONS(3023), + [anon_sym_i16] = ACTIONS(3023), + [anon_sym_u32] = ACTIONS(3023), + [anon_sym_i32] = ACTIONS(3023), + [anon_sym_u64] = ACTIONS(3023), + [anon_sym_i64] = ACTIONS(3023), + [anon_sym_u128] = ACTIONS(3023), + [anon_sym_i128] = ACTIONS(3023), + [anon_sym_isize] = ACTIONS(3023), + [anon_sym_usize] = ACTIONS(3023), + [anon_sym_f32] = ACTIONS(3023), + [anon_sym_f64] = ACTIONS(3023), + [anon_sym_bool] = ACTIONS(3023), + [anon_sym_str] = ACTIONS(3023), + [anon_sym_char] = ACTIONS(3023), + [anon_sym_DASH] = ACTIONS(3025), + [anon_sym_BANG] = ACTIONS(3025), + [anon_sym_AMP] = ACTIONS(3025), + [anon_sym_PIPE] = ACTIONS(3025), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_DOT_DOT] = ACTIONS(3025), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_POUND] = ACTIONS(3025), + [anon_sym_SQUOTE] = ACTIONS(3023), + [anon_sym_async] = ACTIONS(3023), + [anon_sym_break] = ACTIONS(3023), + [anon_sym_const] = ACTIONS(3023), + [anon_sym_continue] = ACTIONS(3023), + [anon_sym_default] = ACTIONS(3023), + [anon_sym_enum] = ACTIONS(3023), + [anon_sym_fn] = ACTIONS(3023), + [anon_sym_for] = ACTIONS(3023), + [anon_sym_gen] = ACTIONS(3023), + [anon_sym_if] = ACTIONS(3023), + [anon_sym_impl] = ACTIONS(3023), + [anon_sym_let] = ACTIONS(3023), + [anon_sym_loop] = ACTIONS(3023), + [anon_sym_match] = ACTIONS(3023), + [anon_sym_mod] = ACTIONS(3023), + [anon_sym_pub] = ACTIONS(3023), + [anon_sym_return] = ACTIONS(3023), + [anon_sym_static] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3023), + [anon_sym_trait] = ACTIONS(3023), + [anon_sym_type] = ACTIONS(3023), + [anon_sym_union] = ACTIONS(3023), + [anon_sym_unsafe] = ACTIONS(3023), + [anon_sym_use] = ACTIONS(3023), + [anon_sym_while] = ACTIONS(3023), + [anon_sym_extern] = ACTIONS(3023), + [anon_sym_yield] = ACTIONS(3023), + [anon_sym_move] = ACTIONS(3023), + [anon_sym_try] = ACTIONS(3023), + [sym_integer_literal] = ACTIONS(3025), + [aux_sym_string_literal_token1] = ACTIONS(3025), + [sym_char_literal] = ACTIONS(3025), + [anon_sym_true] = ACTIONS(3023), + [anon_sym_false] = ACTIONS(3023), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3023), + [sym_super] = ACTIONS(3023), + [sym_crate] = ACTIONS(3023), + [sym_metavariable] = ACTIONS(3025), + [sym__raw_string_literal_start] = ACTIONS(3025), + [sym_float_literal] = ACTIONS(3025), }, [STATE(824)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3260), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_attribute_item] = STATE(1389), + [sym_attributes] = STATE(888), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym_visibility_modifier] = STATE(1010), + [sym__type] = STATE(3107), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(824), [sym_block_comment] = STATE(824), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [aux_sym_attributes_repeat1] = STATE(1138), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_POUND] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_pub] = ACTIONS(2289), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(2291), + [sym_metavariable] = ACTIONS(1553), }, [STATE(825)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2608), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(825), [sym_block_comment] = STATE(825), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(3158), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(3027), + [anon_sym_SEMI] = ACTIONS(3029), + [anon_sym_macro_rules_BANG] = ACTIONS(3029), + [anon_sym_LPAREN] = ACTIONS(3029), + [anon_sym_LBRACK] = ACTIONS(3029), + [anon_sym_LBRACE] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3029), + [anon_sym_u8] = ACTIONS(3027), + [anon_sym_i8] = ACTIONS(3027), + [anon_sym_u16] = ACTIONS(3027), + [anon_sym_i16] = ACTIONS(3027), + [anon_sym_u32] = ACTIONS(3027), + [anon_sym_i32] = ACTIONS(3027), + [anon_sym_u64] = ACTIONS(3027), + [anon_sym_i64] = ACTIONS(3027), + [anon_sym_u128] = ACTIONS(3027), + [anon_sym_i128] = ACTIONS(3027), + [anon_sym_isize] = ACTIONS(3027), + [anon_sym_usize] = ACTIONS(3027), + [anon_sym_f32] = ACTIONS(3027), + [anon_sym_f64] = ACTIONS(3027), + [anon_sym_bool] = ACTIONS(3027), + [anon_sym_str] = ACTIONS(3027), + [anon_sym_char] = ACTIONS(3027), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_BANG] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3029), + [anon_sym_PIPE] = ACTIONS(3029), + [anon_sym_LT] = ACTIONS(3029), + [anon_sym_DOT_DOT] = ACTIONS(3029), + [anon_sym_COLON_COLON] = ACTIONS(3029), + [anon_sym_POUND] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3027), + [anon_sym_async] = ACTIONS(3027), + [anon_sym_break] = ACTIONS(3027), + [anon_sym_const] = ACTIONS(3027), + [anon_sym_continue] = ACTIONS(3027), + [anon_sym_default] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3027), + [anon_sym_fn] = ACTIONS(3027), + [anon_sym_for] = ACTIONS(3027), + [anon_sym_gen] = ACTIONS(3027), + [anon_sym_if] = ACTIONS(3027), + [anon_sym_impl] = ACTIONS(3027), + [anon_sym_let] = ACTIONS(3027), + [anon_sym_loop] = ACTIONS(3027), + [anon_sym_match] = ACTIONS(3027), + [anon_sym_mod] = ACTIONS(3027), + [anon_sym_pub] = ACTIONS(3027), + [anon_sym_return] = ACTIONS(3027), + [anon_sym_static] = ACTIONS(3027), + [anon_sym_struct] = ACTIONS(3027), + [anon_sym_trait] = ACTIONS(3027), + [anon_sym_type] = ACTIONS(3027), + [anon_sym_union] = ACTIONS(3027), + [anon_sym_unsafe] = ACTIONS(3027), + [anon_sym_use] = ACTIONS(3027), + [anon_sym_while] = ACTIONS(3027), + [anon_sym_extern] = ACTIONS(3027), + [anon_sym_yield] = ACTIONS(3027), + [anon_sym_move] = ACTIONS(3027), + [anon_sym_try] = ACTIONS(3027), + [sym_integer_literal] = ACTIONS(3029), + [aux_sym_string_literal_token1] = ACTIONS(3029), + [sym_char_literal] = ACTIONS(3029), + [anon_sym_true] = ACTIONS(3027), + [anon_sym_false] = ACTIONS(3027), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3027), + [sym_super] = ACTIONS(3027), + [sym_crate] = ACTIONS(3027), + [sym_metavariable] = ACTIONS(3029), + [sym__raw_string_literal_start] = ACTIONS(3029), + [sym_float_literal] = ACTIONS(3029), }, [STATE(826)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3490), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2800), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(826), [sym_block_comment] = STATE(826), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_RBRACK] = ACTIONS(1467), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COMMA] = ACTIONS(1473), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(827)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3430), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2732), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(827), [sym_block_comment] = STATE(827), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_RPAREN] = ACTIONS(3031), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COMMA] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(828)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2549), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2694), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(828), [sym_block_comment] = STATE(828), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_RPAREN] = ACTIONS(3035), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COMMA] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(829)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2213), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2693), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(829), [sym_block_comment] = STATE(829), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_RPAREN] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COMMA] = ACTIONS(3041), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(830)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2603), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2905), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(830), [sym_block_comment] = STATE(830), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_RBRACK] = ACTIONS(3043), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COMMA] = ACTIONS(3045), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(831)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2214), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2816), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(831), [sym_block_comment] = STATE(831), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), - }, + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_RPAREN] = ACTIONS(3047), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COMMA] = ACTIONS(3049), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), + }, [STATE(832)] = { - [sym_bracketed_type] = STATE(3695), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3416), - [sym_macro_invocation] = STATE(2883), - [sym_scoped_identifier] = STATE(2241), - [sym_scoped_type_identifier] = STATE(3110), - [sym_const_block] = STATE(2883), - [sym__pattern] = STATE(3068), - [sym_generic_pattern] = STATE(2883), - [sym_tuple_pattern] = STATE(2883), - [sym_slice_pattern] = STATE(2883), - [sym_tuple_struct_pattern] = STATE(2883), - [sym_struct_pattern] = STATE(2883), - [sym_remaining_field_pattern] = STATE(2883), - [sym_mut_pattern] = STATE(2883), - [sym_range_pattern] = STATE(2883), - [sym_ref_pattern] = STATE(2883), - [sym_captured_pattern] = STATE(2883), - [sym_reference_pattern] = STATE(2883), - [sym_or_pattern] = STATE(2883), - [sym__literal_pattern] = STATE(2449), - [sym_negative_literal] = STATE(2408), - [sym_string_literal] = STATE(2408), - [sym_raw_string_literal] = STATE(2408), - [sym_boolean_literal] = STATE(2408), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2826), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(832), [sym_block_comment] = STATE(832), - [sym_identifier] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_u8] = ACTIONS(1679), - [anon_sym_i8] = ACTIONS(1679), - [anon_sym_u16] = ACTIONS(1679), - [anon_sym_i16] = ACTIONS(1679), - [anon_sym_u32] = ACTIONS(1679), - [anon_sym_i32] = ACTIONS(1679), - [anon_sym_u64] = ACTIONS(1679), - [anon_sym_i64] = ACTIONS(1679), - [anon_sym_u128] = ACTIONS(1679), - [anon_sym_i128] = ACTIONS(1679), - [anon_sym_isize] = ACTIONS(1679), - [anon_sym_usize] = ACTIONS(1679), - [anon_sym_f32] = ACTIONS(1679), - [anon_sym_f64] = ACTIONS(1679), - [anon_sym_bool] = ACTIONS(1679), - [anon_sym_str] = ACTIONS(1679), - [anon_sym_char] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), - [anon_sym_COLON_COLON] = ACTIONS(1693), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_gen] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [sym_mutable_specifier] = ACTIONS(3160), - [sym_integer_literal] = ACTIONS(1705), - [aux_sym_string_literal_token1] = ACTIONS(1707), - [sym_char_literal] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1709), - [anon_sym_false] = ACTIONS(1709), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1711), - [sym_super] = ACTIONS(1711), - [sym_crate] = ACTIONS(1711), - [sym_metavariable] = ACTIONS(1713), - [sym__raw_string_literal_start] = ACTIONS(1715), - [sym_float_literal] = ACTIONS(1705), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_RBRACK] = ACTIONS(3051), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(833)] = { - [sym_bracketed_type] = STATE(3695), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3416), - [sym_macro_invocation] = STATE(2883), - [sym_scoped_identifier] = STATE(2241), - [sym_scoped_type_identifier] = STATE(3110), - [sym_const_block] = STATE(2883), - [sym__pattern] = STATE(3072), - [sym_generic_pattern] = STATE(2883), - [sym_tuple_pattern] = STATE(2883), - [sym_slice_pattern] = STATE(2883), - [sym_tuple_struct_pattern] = STATE(2883), - [sym_struct_pattern] = STATE(2883), - [sym_remaining_field_pattern] = STATE(2883), - [sym_mut_pattern] = STATE(2883), - [sym_range_pattern] = STATE(2883), - [sym_ref_pattern] = STATE(2883), - [sym_captured_pattern] = STATE(2883), - [sym_reference_pattern] = STATE(2883), - [sym_or_pattern] = STATE(2883), - [sym__literal_pattern] = STATE(2449), - [sym_negative_literal] = STATE(2408), - [sym_string_literal] = STATE(2408), - [sym_raw_string_literal] = STATE(2408), - [sym_boolean_literal] = STATE(2408), + [sym_bracketed_type] = STATE(3755), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3470), + [sym_macro_invocation] = STATE(3150), + [sym_scoped_identifier] = STATE(2303), + [sym_scoped_type_identifier] = STATE(3084), + [sym_match_pattern] = STATE(3568), + [sym_const_block] = STATE(3150), + [sym__pattern] = STATE(3193), + [sym_generic_pattern] = STATE(3150), + [sym_tuple_pattern] = STATE(3150), + [sym_slice_pattern] = STATE(3150), + [sym_tuple_struct_pattern] = STATE(3150), + [sym_struct_pattern] = STATE(3150), + [sym_remaining_field_pattern] = STATE(3150), + [sym_mut_pattern] = STATE(3150), + [sym_range_pattern] = STATE(3150), + [sym_ref_pattern] = STATE(3150), + [sym_captured_pattern] = STATE(3150), + [sym_reference_pattern] = STATE(3150), + [sym_or_pattern] = STATE(3150), + [sym__literal_pattern] = STATE(2485), + [sym_negative_literal] = STATE(2477), + [sym_string_literal] = STATE(2477), + [sym_raw_string_literal] = STATE(2477), + [sym_boolean_literal] = STATE(2477), [sym_line_comment] = STATE(833), [sym_block_comment] = STATE(833), - [sym_identifier] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_u8] = ACTIONS(1679), - [anon_sym_i8] = ACTIONS(1679), - [anon_sym_u16] = ACTIONS(1679), - [anon_sym_i16] = ACTIONS(1679), - [anon_sym_u32] = ACTIONS(1679), - [anon_sym_i32] = ACTIONS(1679), - [anon_sym_u64] = ACTIONS(1679), - [anon_sym_i64] = ACTIONS(1679), - [anon_sym_u128] = ACTIONS(1679), - [anon_sym_i128] = ACTIONS(1679), - [anon_sym_isize] = ACTIONS(1679), - [anon_sym_usize] = ACTIONS(1679), - [anon_sym_f32] = ACTIONS(1679), - [anon_sym_f64] = ACTIONS(1679), - [anon_sym_bool] = ACTIONS(1679), - [anon_sym_str] = ACTIONS(1679), - [anon_sym_char] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), - [anon_sym_COLON_COLON] = ACTIONS(1693), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_gen] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [sym_mutable_specifier] = ACTIONS(1703), - [sym_integer_literal] = ACTIONS(1705), - [aux_sym_string_literal_token1] = ACTIONS(1707), - [sym_char_literal] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1709), - [anon_sym_false] = ACTIONS(1709), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1711), - [sym_super] = ACTIONS(1711), - [sym_crate] = ACTIONS(1711), - [sym_metavariable] = ACTIONS(1713), - [sym__raw_string_literal_start] = ACTIONS(1715), - [sym_float_literal] = ACTIONS(1705), + [sym_identifier] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_u8] = ACTIONS(1585), + [anon_sym_i8] = ACTIONS(1585), + [anon_sym_u16] = ACTIONS(1585), + [anon_sym_i16] = ACTIONS(1585), + [anon_sym_u32] = ACTIONS(1585), + [anon_sym_i32] = ACTIONS(1585), + [anon_sym_u64] = ACTIONS(1585), + [anon_sym_i64] = ACTIONS(1585), + [anon_sym_u128] = ACTIONS(1585), + [anon_sym_i128] = ACTIONS(1585), + [anon_sym_isize] = ACTIONS(1585), + [anon_sym_usize] = ACTIONS(1585), + [anon_sym_f32] = ACTIONS(1585), + [anon_sym_f64] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_str] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1597), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_const] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1605), + [anon_sym_gen] = ACTIONS(1605), + [anon_sym_union] = ACTIONS(1605), + [anon_sym_ref] = ACTIONS(1607), + [sym_mutable_specifier] = ACTIONS(1609), + [sym_integer_literal] = ACTIONS(1611), + [aux_sym_string_literal_token1] = ACTIONS(1613), + [sym_char_literal] = ACTIONS(1611), + [anon_sym_true] = ACTIONS(1615), + [anon_sym_false] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1617), + [sym_super] = ACTIONS(1617), + [sym_crate] = ACTIONS(1617), + [sym_metavariable] = ACTIONS(1619), + [sym__raw_string_literal_start] = ACTIONS(1621), + [sym_float_literal] = ACTIONS(1611), }, [STATE(834)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2751), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2826), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(834), [sym_block_comment] = STATE(834), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3162), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_RBRACK] = ACTIONS(3053), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(835)] = { - [sym_bracketed_type] = STATE(3695), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3416), - [sym_macro_invocation] = STATE(2883), - [sym_scoped_identifier] = STATE(2241), - [sym_scoped_type_identifier] = STATE(3110), - [sym_const_block] = STATE(2883), - [sym__pattern] = STATE(3183), - [sym_generic_pattern] = STATE(2883), - [sym_tuple_pattern] = STATE(2883), - [sym_slice_pattern] = STATE(2883), - [sym_tuple_struct_pattern] = STATE(2883), - [sym_struct_pattern] = STATE(2883), - [sym_remaining_field_pattern] = STATE(2883), - [sym_mut_pattern] = STATE(2883), - [sym_range_pattern] = STATE(2883), - [sym_ref_pattern] = STATE(2883), - [sym_captured_pattern] = STATE(2883), - [sym_reference_pattern] = STATE(2883), - [sym_or_pattern] = STATE(2883), - [sym__literal_pattern] = STATE(2449), - [sym_negative_literal] = STATE(2408), - [sym_string_literal] = STATE(2408), - [sym_raw_string_literal] = STATE(2408), - [sym_boolean_literal] = STATE(2408), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2826), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(835), [sym_block_comment] = STATE(835), - [sym_identifier] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_u8] = ACTIONS(1679), - [anon_sym_i8] = ACTIONS(1679), - [anon_sym_u16] = ACTIONS(1679), - [anon_sym_i16] = ACTIONS(1679), - [anon_sym_u32] = ACTIONS(1679), - [anon_sym_i32] = ACTIONS(1679), - [anon_sym_u64] = ACTIONS(1679), - [anon_sym_i64] = ACTIONS(1679), - [anon_sym_u128] = ACTIONS(1679), - [anon_sym_i128] = ACTIONS(1679), - [anon_sym_isize] = ACTIONS(1679), - [anon_sym_usize] = ACTIONS(1679), - [anon_sym_f32] = ACTIONS(1679), - [anon_sym_f64] = ACTIONS(1679), - [anon_sym_bool] = ACTIONS(1679), - [anon_sym_str] = ACTIONS(1679), - [anon_sym_char] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), - [anon_sym_COLON_COLON] = ACTIONS(1693), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_gen] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [sym_mutable_specifier] = ACTIONS(1703), - [sym_integer_literal] = ACTIONS(1705), - [aux_sym_string_literal_token1] = ACTIONS(1707), - [sym_char_literal] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1709), - [anon_sym_false] = ACTIONS(1709), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1711), - [sym_super] = ACTIONS(1711), - [sym_crate] = ACTIONS(1711), - [sym_metavariable] = ACTIONS(1713), - [sym__raw_string_literal_start] = ACTIONS(1715), - [sym_float_literal] = ACTIONS(1705), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_RPAREN] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(836)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2229), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3755), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3470), + [sym_macro_invocation] = STATE(3150), + [sym_scoped_identifier] = STATE(2303), + [sym_scoped_type_identifier] = STATE(3084), + [sym_match_pattern] = STATE(3804), + [sym_const_block] = STATE(3150), + [sym__pattern] = STATE(3193), + [sym_generic_pattern] = STATE(3150), + [sym_tuple_pattern] = STATE(3150), + [sym_slice_pattern] = STATE(3150), + [sym_tuple_struct_pattern] = STATE(3150), + [sym_struct_pattern] = STATE(3150), + [sym_remaining_field_pattern] = STATE(3150), + [sym_mut_pattern] = STATE(3150), + [sym_range_pattern] = STATE(3150), + [sym_ref_pattern] = STATE(3150), + [sym_captured_pattern] = STATE(3150), + [sym_reference_pattern] = STATE(3150), + [sym_or_pattern] = STATE(3150), + [sym__literal_pattern] = STATE(2485), + [sym_negative_literal] = STATE(2477), + [sym_string_literal] = STATE(2477), + [sym_raw_string_literal] = STATE(2477), + [sym_boolean_literal] = STATE(2477), [sym_line_comment] = STATE(836), [sym_block_comment] = STATE(836), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(3164), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_u8] = ACTIONS(1585), + [anon_sym_i8] = ACTIONS(1585), + [anon_sym_u16] = ACTIONS(1585), + [anon_sym_i16] = ACTIONS(1585), + [anon_sym_u32] = ACTIONS(1585), + [anon_sym_i32] = ACTIONS(1585), + [anon_sym_u64] = ACTIONS(1585), + [anon_sym_i64] = ACTIONS(1585), + [anon_sym_u128] = ACTIONS(1585), + [anon_sym_i128] = ACTIONS(1585), + [anon_sym_isize] = ACTIONS(1585), + [anon_sym_usize] = ACTIONS(1585), + [anon_sym_f32] = ACTIONS(1585), + [anon_sym_f64] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_str] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1597), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_const] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1605), + [anon_sym_gen] = ACTIONS(1605), + [anon_sym_union] = ACTIONS(1605), + [anon_sym_ref] = ACTIONS(1607), + [sym_mutable_specifier] = ACTIONS(1609), + [sym_integer_literal] = ACTIONS(1611), + [aux_sym_string_literal_token1] = ACTIONS(1613), + [sym_char_literal] = ACTIONS(1611), + [anon_sym_true] = ACTIONS(1615), + [anon_sym_false] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1617), + [sym_super] = ACTIONS(1617), + [sym_crate] = ACTIONS(1617), + [sym_metavariable] = ACTIONS(1619), + [sym__raw_string_literal_start] = ACTIONS(1621), + [sym_float_literal] = ACTIONS(1611), }, [STATE(837)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3423), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2826), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(837), [sym_block_comment] = STATE(837), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_RPAREN] = ACTIONS(3057), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(838)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2656), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_parameter] = STATE(3157), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2907), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(838), [sym_block_comment] = STATE(838), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(3059), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(3061), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3063), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(839)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2182), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2826), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(839), [sym_block_comment] = STATE(839), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_RPAREN] = ACTIONS(3065), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(840)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2201), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2826), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(840), [sym_block_comment] = STATE(840), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_RPAREN] = ACTIONS(3067), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(841)] = { - [sym_bracketed_type] = STATE(3695), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3416), - [sym_macro_invocation] = STATE(2883), - [sym_scoped_identifier] = STATE(2241), - [sym_scoped_type_identifier] = STATE(3110), - [sym_const_block] = STATE(2883), - [sym__pattern] = STATE(2991), - [sym_generic_pattern] = STATE(2883), - [sym_tuple_pattern] = STATE(2883), - [sym_slice_pattern] = STATE(2883), - [sym_tuple_struct_pattern] = STATE(2883), - [sym_struct_pattern] = STATE(2883), - [sym_remaining_field_pattern] = STATE(2883), - [sym_mut_pattern] = STATE(2883), - [sym_range_pattern] = STATE(2883), - [sym_ref_pattern] = STATE(2883), - [sym_captured_pattern] = STATE(2883), - [sym_reference_pattern] = STATE(2883), - [sym_or_pattern] = STATE(2883), - [sym__literal_pattern] = STATE(2449), - [sym_negative_literal] = STATE(2408), - [sym_string_literal] = STATE(2408), - [sym_raw_string_literal] = STATE(2408), - [sym_boolean_literal] = STATE(2408), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2826), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(841), [sym_block_comment] = STATE(841), - [sym_identifier] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_u8] = ACTIONS(1679), - [anon_sym_i8] = ACTIONS(1679), - [anon_sym_u16] = ACTIONS(1679), - [anon_sym_i16] = ACTIONS(1679), - [anon_sym_u32] = ACTIONS(1679), - [anon_sym_i32] = ACTIONS(1679), - [anon_sym_u64] = ACTIONS(1679), - [anon_sym_i64] = ACTIONS(1679), - [anon_sym_u128] = ACTIONS(1679), - [anon_sym_i128] = ACTIONS(1679), - [anon_sym_isize] = ACTIONS(1679), - [anon_sym_usize] = ACTIONS(1679), - [anon_sym_f32] = ACTIONS(1679), - [anon_sym_f64] = ACTIONS(1679), - [anon_sym_bool] = ACTIONS(1679), - [anon_sym_str] = ACTIONS(1679), - [anon_sym_char] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), - [anon_sym_COLON_COLON] = ACTIONS(1693), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_gen] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [sym_mutable_specifier] = ACTIONS(1703), - [sym_integer_literal] = ACTIONS(1705), - [aux_sym_string_literal_token1] = ACTIONS(1707), - [sym_char_literal] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1709), - [anon_sym_false] = ACTIONS(1709), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1711), - [sym_super] = ACTIONS(1711), - [sym_crate] = ACTIONS(1711), - [sym_metavariable] = ACTIONS(1713), - [sym__raw_string_literal_start] = ACTIONS(1715), - [sym_float_literal] = ACTIONS(1705), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_RPAREN] = ACTIONS(3069), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(842)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3101), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_parameter] = STATE(3393), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(3013), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(842), [sym_block_comment] = STATE(842), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(3061), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3063), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(843)] = { - [sym_bracketed_type] = STATE(3695), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3416), - [sym_macro_invocation] = STATE(2883), - [sym_scoped_identifier] = STATE(2241), - [sym_scoped_type_identifier] = STATE(3110), - [sym_const_block] = STATE(2883), - [sym__pattern] = STATE(3000), - [sym_generic_pattern] = STATE(2883), - [sym_tuple_pattern] = STATE(2883), - [sym_slice_pattern] = STATE(2883), - [sym_tuple_struct_pattern] = STATE(2883), - [sym_struct_pattern] = STATE(2883), - [sym_remaining_field_pattern] = STATE(2883), - [sym_mut_pattern] = STATE(2883), - [sym_range_pattern] = STATE(2883), - [sym_ref_pattern] = STATE(2883), - [sym_captured_pattern] = STATE(2883), - [sym_reference_pattern] = STATE(2883), - [sym_or_pattern] = STATE(2883), - [sym__literal_pattern] = STATE(2449), - [sym_negative_literal] = STATE(2408), - [sym_string_literal] = STATE(2408), - [sym_raw_string_literal] = STATE(2408), - [sym_boolean_literal] = STATE(2408), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2826), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(843), [sym_block_comment] = STATE(843), - [sym_identifier] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_u8] = ACTIONS(1679), - [anon_sym_i8] = ACTIONS(1679), - [anon_sym_u16] = ACTIONS(1679), - [anon_sym_i16] = ACTIONS(1679), - [anon_sym_u32] = ACTIONS(1679), - [anon_sym_i32] = ACTIONS(1679), - [anon_sym_u64] = ACTIONS(1679), - [anon_sym_i64] = ACTIONS(1679), - [anon_sym_u128] = ACTIONS(1679), - [anon_sym_i128] = ACTIONS(1679), - [anon_sym_isize] = ACTIONS(1679), - [anon_sym_usize] = ACTIONS(1679), - [anon_sym_f32] = ACTIONS(1679), - [anon_sym_f64] = ACTIONS(1679), - [anon_sym_bool] = ACTIONS(1679), - [anon_sym_str] = ACTIONS(1679), - [anon_sym_char] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), - [anon_sym_COLON_COLON] = ACTIONS(1693), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_gen] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [sym_mutable_specifier] = ACTIONS(1703), - [sym_integer_literal] = ACTIONS(1705), - [aux_sym_string_literal_token1] = ACTIONS(1707), - [sym_char_literal] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1709), - [anon_sym_false] = ACTIONS(1709), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1711), - [sym_super] = ACTIONS(1711), - [sym_crate] = ACTIONS(1711), - [sym_metavariable] = ACTIONS(1713), - [sym__raw_string_literal_start] = ACTIONS(1715), - [sym_float_literal] = ACTIONS(1705), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_RPAREN] = ACTIONS(3071), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(844)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3135), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2826), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(844), [sym_block_comment] = STATE(844), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_RBRACK] = ACTIONS(3073), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(845)] = { - [sym_bracketed_type] = STATE(3695), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3416), - [sym_macro_invocation] = STATE(2883), - [sym_scoped_identifier] = STATE(2241), - [sym_scoped_type_identifier] = STATE(3110), - [sym_const_block] = STATE(2883), - [sym__pattern] = STATE(3014), - [sym_generic_pattern] = STATE(2883), - [sym_tuple_pattern] = STATE(2883), - [sym_slice_pattern] = STATE(2883), - [sym_tuple_struct_pattern] = STATE(2883), - [sym_struct_pattern] = STATE(2883), - [sym_remaining_field_pattern] = STATE(2883), - [sym_mut_pattern] = STATE(2883), - [sym_range_pattern] = STATE(2883), - [sym_ref_pattern] = STATE(2883), - [sym_captured_pattern] = STATE(2883), - [sym_reference_pattern] = STATE(2883), - [sym_or_pattern] = STATE(2883), - [sym__literal_pattern] = STATE(2449), - [sym_negative_literal] = STATE(2408), - [sym_string_literal] = STATE(2408), - [sym_raw_string_literal] = STATE(2408), - [sym_boolean_literal] = STATE(2408), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2826), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(845), [sym_block_comment] = STATE(845), - [sym_identifier] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_u8] = ACTIONS(1679), - [anon_sym_i8] = ACTIONS(1679), - [anon_sym_u16] = ACTIONS(1679), - [anon_sym_i16] = ACTIONS(1679), - [anon_sym_u32] = ACTIONS(1679), - [anon_sym_i32] = ACTIONS(1679), - [anon_sym_u64] = ACTIONS(1679), - [anon_sym_i64] = ACTIONS(1679), - [anon_sym_u128] = ACTIONS(1679), - [anon_sym_i128] = ACTIONS(1679), - [anon_sym_isize] = ACTIONS(1679), - [anon_sym_usize] = ACTIONS(1679), - [anon_sym_f32] = ACTIONS(1679), - [anon_sym_f64] = ACTIONS(1679), - [anon_sym_bool] = ACTIONS(1679), - [anon_sym_str] = ACTIONS(1679), - [anon_sym_char] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), - [anon_sym_COLON_COLON] = ACTIONS(1693), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_gen] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [sym_mutable_specifier] = ACTIONS(1703), - [sym_integer_literal] = ACTIONS(1705), - [aux_sym_string_literal_token1] = ACTIONS(1707), - [sym_char_literal] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1709), - [anon_sym_false] = ACTIONS(1709), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1711), - [sym_super] = ACTIONS(1711), - [sym_crate] = ACTIONS(1711), - [sym_metavariable] = ACTIONS(1713), - [sym__raw_string_literal_start] = ACTIONS(1715), - [sym_float_literal] = ACTIONS(1705), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_RPAREN] = ACTIONS(3075), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(846)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3071), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_parameter] = STATE(3157), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2643), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(846), [sym_block_comment] = STATE(846), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(3059), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(3061), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3063), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(847)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3479), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2692), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(847), [sym_block_comment] = STATE(847), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3079), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(848)] = { - [sym_bracketed_type] = STATE(3695), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3416), - [sym_macro_invocation] = STATE(2883), - [sym_scoped_identifier] = STATE(2241), - [sym_scoped_type_identifier] = STATE(3110), - [sym_const_block] = STATE(2883), - [sym__pattern] = STATE(3096), - [sym_generic_pattern] = STATE(2883), - [sym_tuple_pattern] = STATE(2883), - [sym_slice_pattern] = STATE(2883), - [sym_tuple_struct_pattern] = STATE(2883), - [sym_struct_pattern] = STATE(2883), - [sym_remaining_field_pattern] = STATE(2883), - [sym_mut_pattern] = STATE(2883), - [sym_range_pattern] = STATE(2883), - [sym_ref_pattern] = STATE(2883), - [sym_captured_pattern] = STATE(2883), - [sym_reference_pattern] = STATE(2883), - [sym_or_pattern] = STATE(2883), - [sym__literal_pattern] = STATE(2449), - [sym_negative_literal] = STATE(2408), - [sym_string_literal] = STATE(2408), - [sym_raw_string_literal] = STATE(2408), - [sym_boolean_literal] = STATE(2408), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2826), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(848), [sym_block_comment] = STATE(848), - [sym_identifier] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_u8] = ACTIONS(1679), - [anon_sym_i8] = ACTIONS(1679), - [anon_sym_u16] = ACTIONS(1679), - [anon_sym_i16] = ACTIONS(1679), - [anon_sym_u32] = ACTIONS(1679), - [anon_sym_i32] = ACTIONS(1679), - [anon_sym_u64] = ACTIONS(1679), - [anon_sym_i64] = ACTIONS(1679), - [anon_sym_u128] = ACTIONS(1679), - [anon_sym_i128] = ACTIONS(1679), - [anon_sym_isize] = ACTIONS(1679), - [anon_sym_usize] = ACTIONS(1679), - [anon_sym_f32] = ACTIONS(1679), - [anon_sym_f64] = ACTIONS(1679), - [anon_sym_bool] = ACTIONS(1679), - [anon_sym_str] = ACTIONS(1679), - [anon_sym_char] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), - [anon_sym_COLON_COLON] = ACTIONS(1693), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_gen] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [sym_mutable_specifier] = ACTIONS(1703), - [sym_integer_literal] = ACTIONS(1705), - [aux_sym_string_literal_token1] = ACTIONS(1707), - [sym_char_literal] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1709), - [anon_sym_false] = ACTIONS(1709), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1711), - [sym_super] = ACTIONS(1711), - [sym_crate] = ACTIONS(1711), - [sym_metavariable] = ACTIONS(1713), - [sym__raw_string_literal_start] = ACTIONS(1715), - [sym_float_literal] = ACTIONS(1705), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_RBRACK] = ACTIONS(3081), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(849)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3449), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2826), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(849), [sym_block_comment] = STATE(849), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_RPAREN] = ACTIONS(3083), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(850)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3471), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(3242), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(850), [sym_block_comment] = STATE(850), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(851)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3476), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(3536), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(851), [sym_block_comment] = STATE(851), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(852)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3477), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2290), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(852), [sym_block_comment] = STATE(852), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(3085), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(853)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2230), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2243), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(853), [sym_block_comment] = STATE(853), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(854)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2061), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2285), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(854), [sym_block_comment] = STATE(854), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(3168), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3170), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(855)] = { - [sym_function_modifiers] = STATE(3772), - [sym_removed_trait_bound] = STATE(1456), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1437), - [sym_bracketed_type] = STATE(3685), - [sym_lifetime] = STATE(3522), - [sym_array_type] = STATE(1456), - [sym_for_lifetimes] = STATE(1647), - [sym_function_type] = STATE(1456), - [sym_tuple_type] = STATE(1456), - [sym_unit_type] = STATE(1456), - [sym_generic_type] = STATE(1265), - [sym_generic_type_with_turbofish] = STATE(3673), - [sym_bounded_type] = STATE(1456), - [sym_use_bounds] = STATE(3522), - [sym_reference_type] = STATE(1456), - [sym_pointer_type] = STATE(1456), - [sym_never_type] = STATE(1456), - [sym_abstract_type] = STATE(1456), - [sym_dynamic_type] = STATE(1456), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1084), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2287), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(855), [sym_block_comment] = STATE(855), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3172), - [anon_sym_LPAREN] = ACTIONS(3174), - [anon_sym_LBRACK] = ACTIONS(3176), - [anon_sym_PLUS] = ACTIONS(3178), - [anon_sym_STAR] = ACTIONS(3180), - [anon_sym_QMARK] = ACTIONS(3182), - [anon_sym_u8] = ACTIONS(3184), - [anon_sym_i8] = ACTIONS(3184), - [anon_sym_u16] = ACTIONS(3184), - [anon_sym_i16] = ACTIONS(3184), - [anon_sym_u32] = ACTIONS(3184), - [anon_sym_i32] = ACTIONS(3184), - [anon_sym_u64] = ACTIONS(3184), - [anon_sym_i64] = ACTIONS(3184), - [anon_sym_u128] = ACTIONS(3184), - [anon_sym_i128] = ACTIONS(3184), - [anon_sym_isize] = ACTIONS(3184), - [anon_sym_usize] = ACTIONS(3184), - [anon_sym_f32] = ACTIONS(3184), - [anon_sym_f64] = ACTIONS(3184), - [anon_sym_bool] = ACTIONS(3184), - [anon_sym_str] = ACTIONS(3184), - [anon_sym_char] = ACTIONS(3184), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_AMP] = ACTIONS(3188), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3192), - [anon_sym_fn] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3196), - [anon_sym_impl] = ACTIONS(3198), - [anon_sym_union] = ACTIONS(3196), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3200), - [sym_mutable_specifier] = ACTIONS(3202), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_crate] = ACTIONS(3204), - [sym_metavariable] = ACTIONS(3206), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(856)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3359), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_bracketed_type] = STATE(3755), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3470), + [sym_macro_invocation] = STATE(3150), + [sym_scoped_identifier] = STATE(2303), + [sym_scoped_type_identifier] = STATE(3084), + [sym_const_block] = STATE(3150), + [sym__pattern] = STATE(3156), + [sym_generic_pattern] = STATE(3150), + [sym_tuple_pattern] = STATE(3150), + [sym_slice_pattern] = STATE(3150), + [sym_tuple_struct_pattern] = STATE(3150), + [sym_struct_pattern] = STATE(3150), + [sym_remaining_field_pattern] = STATE(3150), + [sym_mut_pattern] = STATE(3150), + [sym_range_pattern] = STATE(3150), + [sym_ref_pattern] = STATE(3150), + [sym_captured_pattern] = STATE(3150), + [sym_reference_pattern] = STATE(3150), + [sym_or_pattern] = STATE(3150), + [sym__literal_pattern] = STATE(2485), + [sym_negative_literal] = STATE(2477), + [sym_string_literal] = STATE(2477), + [sym_raw_string_literal] = STATE(2477), + [sym_boolean_literal] = STATE(2477), [sym_line_comment] = STATE(856), [sym_block_comment] = STATE(856), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(3210), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [sym_mutable_specifier] = ACTIONS(3212), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_u8] = ACTIONS(1585), + [anon_sym_i8] = ACTIONS(1585), + [anon_sym_u16] = ACTIONS(1585), + [anon_sym_i16] = ACTIONS(1585), + [anon_sym_u32] = ACTIONS(1585), + [anon_sym_i32] = ACTIONS(1585), + [anon_sym_u64] = ACTIONS(1585), + [anon_sym_i64] = ACTIONS(1585), + [anon_sym_u128] = ACTIONS(1585), + [anon_sym_i128] = ACTIONS(1585), + [anon_sym_isize] = ACTIONS(1585), + [anon_sym_usize] = ACTIONS(1585), + [anon_sym_f32] = ACTIONS(1585), + [anon_sym_f64] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_str] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1597), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_const] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1605), + [anon_sym_gen] = ACTIONS(1605), + [anon_sym_union] = ACTIONS(1605), + [anon_sym_ref] = ACTIONS(1607), + [sym_mutable_specifier] = ACTIONS(3087), + [sym_integer_literal] = ACTIONS(1611), + [aux_sym_string_literal_token1] = ACTIONS(1613), + [sym_char_literal] = ACTIONS(1611), + [anon_sym_true] = ACTIONS(1615), + [anon_sym_false] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1617), + [sym_super] = ACTIONS(1617), + [sym_crate] = ACTIONS(1617), + [sym_metavariable] = ACTIONS(1619), + [sym__raw_string_literal_start] = ACTIONS(1621), + [sym_float_literal] = ACTIONS(1611), }, [STATE(857)] = { - [sym_function_modifiers] = STATE(3641), - [sym_removed_trait_bound] = STATE(1745), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1838), - [sym_bracketed_type] = STATE(3701), - [sym_lifetime] = STATE(3813), - [sym_array_type] = STATE(1745), - [sym_for_lifetimes] = STATE(1625), - [sym_function_type] = STATE(1745), - [sym_tuple_type] = STATE(1745), - [sym_unit_type] = STATE(1745), - [sym_generic_type] = STATE(1692), - [sym_generic_type_with_turbofish] = STATE(3692), - [sym_bounded_type] = STATE(1745), - [sym_use_bounds] = STATE(3813), - [sym_reference_type] = STATE(1745), - [sym_pointer_type] = STATE(1745), - [sym_never_type] = STATE(1745), - [sym_abstract_type] = STATE(1745), - [sym_dynamic_type] = STATE(1745), - [sym_macro_invocation] = STATE(1745), - [sym_scoped_identifier] = STATE(3433), - [sym_scoped_type_identifier] = STATE(1614), + [sym_bracketed_type] = STATE(3755), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3470), + [sym_macro_invocation] = STATE(3150), + [sym_scoped_identifier] = STATE(2303), + [sym_scoped_type_identifier] = STATE(3084), + [sym_const_block] = STATE(3150), + [sym__pattern] = STATE(2935), + [sym_generic_pattern] = STATE(3150), + [sym_tuple_pattern] = STATE(3150), + [sym_slice_pattern] = STATE(3150), + [sym_tuple_struct_pattern] = STATE(3150), + [sym_struct_pattern] = STATE(3150), + [sym_remaining_field_pattern] = STATE(3150), + [sym_mut_pattern] = STATE(3150), + [sym_range_pattern] = STATE(3150), + [sym_ref_pattern] = STATE(3150), + [sym_captured_pattern] = STATE(3150), + [sym_reference_pattern] = STATE(3150), + [sym_or_pattern] = STATE(3150), + [sym__literal_pattern] = STATE(2485), + [sym_negative_literal] = STATE(2477), + [sym_string_literal] = STATE(2477), + [sym_raw_string_literal] = STATE(2477), + [sym_boolean_literal] = STATE(2477), [sym_line_comment] = STATE(857), [sym_block_comment] = STATE(857), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_PLUS] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(3222), - [anon_sym_QMARK] = ACTIONS(3224), - [anon_sym_u8] = ACTIONS(3226), - [anon_sym_i8] = ACTIONS(3226), - [anon_sym_u16] = ACTIONS(3226), - [anon_sym_i16] = ACTIONS(3226), - [anon_sym_u32] = ACTIONS(3226), - [anon_sym_i32] = ACTIONS(3226), - [anon_sym_u64] = ACTIONS(3226), - [anon_sym_i64] = ACTIONS(3226), - [anon_sym_u128] = ACTIONS(3226), - [anon_sym_i128] = ACTIONS(3226), - [anon_sym_isize] = ACTIONS(3226), - [anon_sym_usize] = ACTIONS(3226), - [anon_sym_f32] = ACTIONS(3226), - [anon_sym_f64] = ACTIONS(3226), - [anon_sym_bool] = ACTIONS(3226), - [anon_sym_str] = ACTIONS(3226), - [anon_sym_char] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3230), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3234), - [anon_sym_fn] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3238), - [anon_sym_impl] = ACTIONS(3240), - [anon_sym_union] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3242), - [sym_mutable_specifier] = ACTIONS(3244), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_crate] = ACTIONS(3246), - [sym_metavariable] = ACTIONS(3248), + [sym_identifier] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_u8] = ACTIONS(1585), + [anon_sym_i8] = ACTIONS(1585), + [anon_sym_u16] = ACTIONS(1585), + [anon_sym_i16] = ACTIONS(1585), + [anon_sym_u32] = ACTIONS(1585), + [anon_sym_i32] = ACTIONS(1585), + [anon_sym_u64] = ACTIONS(1585), + [anon_sym_i64] = ACTIONS(1585), + [anon_sym_u128] = ACTIONS(1585), + [anon_sym_i128] = ACTIONS(1585), + [anon_sym_isize] = ACTIONS(1585), + [anon_sym_usize] = ACTIONS(1585), + [anon_sym_f32] = ACTIONS(1585), + [anon_sym_f64] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_str] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1597), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_const] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1605), + [anon_sym_gen] = ACTIONS(1605), + [anon_sym_union] = ACTIONS(1605), + [anon_sym_ref] = ACTIONS(1607), + [sym_mutable_specifier] = ACTIONS(1609), + [sym_integer_literal] = ACTIONS(1611), + [aux_sym_string_literal_token1] = ACTIONS(1613), + [sym_char_literal] = ACTIONS(1611), + [anon_sym_true] = ACTIONS(1615), + [anon_sym_false] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1617), + [sym_super] = ACTIONS(1617), + [sym_crate] = ACTIONS(1617), + [sym_metavariable] = ACTIONS(1619), + [sym__raw_string_literal_start] = ACTIONS(1621), + [sym_float_literal] = ACTIONS(1611), }, [STATE(858)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2061), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_bracketed_type] = STATE(3755), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3470), + [sym_macro_invocation] = STATE(3150), + [sym_scoped_identifier] = STATE(2303), + [sym_scoped_type_identifier] = STATE(3084), + [sym_const_block] = STATE(3150), + [sym__pattern] = STATE(3161), + [sym_generic_pattern] = STATE(3150), + [sym_tuple_pattern] = STATE(3150), + [sym_slice_pattern] = STATE(3150), + [sym_tuple_struct_pattern] = STATE(3150), + [sym_struct_pattern] = STATE(3150), + [sym_remaining_field_pattern] = STATE(3150), + [sym_mut_pattern] = STATE(3150), + [sym_range_pattern] = STATE(3150), + [sym_ref_pattern] = STATE(3150), + [sym_captured_pattern] = STATE(3150), + [sym_reference_pattern] = STATE(3150), + [sym_or_pattern] = STATE(3150), + [sym__literal_pattern] = STATE(2485), + [sym_negative_literal] = STATE(2477), + [sym_string_literal] = STATE(2477), + [sym_raw_string_literal] = STATE(2477), + [sym_boolean_literal] = STATE(2477), [sym_line_comment] = STATE(858), [sym_block_comment] = STATE(858), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(3250), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_u8] = ACTIONS(1585), + [anon_sym_i8] = ACTIONS(1585), + [anon_sym_u16] = ACTIONS(1585), + [anon_sym_i16] = ACTIONS(1585), + [anon_sym_u32] = ACTIONS(1585), + [anon_sym_i32] = ACTIONS(1585), + [anon_sym_u64] = ACTIONS(1585), + [anon_sym_i64] = ACTIONS(1585), + [anon_sym_u128] = ACTIONS(1585), + [anon_sym_i128] = ACTIONS(1585), + [anon_sym_isize] = ACTIONS(1585), + [anon_sym_usize] = ACTIONS(1585), + [anon_sym_f32] = ACTIONS(1585), + [anon_sym_f64] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_str] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1597), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_const] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1605), + [anon_sym_gen] = ACTIONS(1605), + [anon_sym_union] = ACTIONS(1605), + [anon_sym_ref] = ACTIONS(1607), + [sym_mutable_specifier] = ACTIONS(1609), + [sym_integer_literal] = ACTIONS(1611), + [aux_sym_string_literal_token1] = ACTIONS(1613), + [sym_char_literal] = ACTIONS(1611), + [anon_sym_true] = ACTIONS(1615), + [anon_sym_false] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1617), + [sym_super] = ACTIONS(1617), + [sym_crate] = ACTIONS(1617), + [sym_metavariable] = ACTIONS(1619), + [sym__raw_string_literal_start] = ACTIONS(1621), + [sym_float_literal] = ACTIONS(1611), }, [STATE(859)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2061), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_bracketed_type] = STATE(3755), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3470), + [sym_macro_invocation] = STATE(3150), + [sym_scoped_identifier] = STATE(2303), + [sym_scoped_type_identifier] = STATE(3084), + [sym_const_block] = STATE(3150), + [sym__pattern] = STATE(3020), + [sym_generic_pattern] = STATE(3150), + [sym_tuple_pattern] = STATE(3150), + [sym_slice_pattern] = STATE(3150), + [sym_tuple_struct_pattern] = STATE(3150), + [sym_struct_pattern] = STATE(3150), + [sym_remaining_field_pattern] = STATE(3150), + [sym_mut_pattern] = STATE(3150), + [sym_range_pattern] = STATE(3150), + [sym_ref_pattern] = STATE(3150), + [sym_captured_pattern] = STATE(3150), + [sym_reference_pattern] = STATE(3150), + [sym_or_pattern] = STATE(3150), + [sym__literal_pattern] = STATE(2485), + [sym_negative_literal] = STATE(2477), + [sym_string_literal] = STATE(2477), + [sym_raw_string_literal] = STATE(2477), + [sym_boolean_literal] = STATE(2477), [sym_line_comment] = STATE(859), [sym_block_comment] = STATE(859), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(3210), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [sym_mutable_specifier] = ACTIONS(3252), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_u8] = ACTIONS(1585), + [anon_sym_i8] = ACTIONS(1585), + [anon_sym_u16] = ACTIONS(1585), + [anon_sym_i16] = ACTIONS(1585), + [anon_sym_u32] = ACTIONS(1585), + [anon_sym_i32] = ACTIONS(1585), + [anon_sym_u64] = ACTIONS(1585), + [anon_sym_i64] = ACTIONS(1585), + [anon_sym_u128] = ACTIONS(1585), + [anon_sym_i128] = ACTIONS(1585), + [anon_sym_isize] = ACTIONS(1585), + [anon_sym_usize] = ACTIONS(1585), + [anon_sym_f32] = ACTIONS(1585), + [anon_sym_f64] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_str] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1597), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_const] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1605), + [anon_sym_gen] = ACTIONS(1605), + [anon_sym_union] = ACTIONS(1605), + [anon_sym_ref] = ACTIONS(1607), + [sym_mutable_specifier] = ACTIONS(1609), + [sym_integer_literal] = ACTIONS(1611), + [aux_sym_string_literal_token1] = ACTIONS(1613), + [sym_char_literal] = ACTIONS(1611), + [anon_sym_true] = ACTIONS(1615), + [anon_sym_false] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1617), + [sym_super] = ACTIONS(1617), + [sym_crate] = ACTIONS(1617), + [sym_metavariable] = ACTIONS(1619), + [sym__raw_string_literal_start] = ACTIONS(1621), + [sym_float_literal] = ACTIONS(1611), }, [STATE(860)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2989), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2862), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(860), [sym_block_comment] = STATE(860), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_RPAREN] = ACTIONS(3254), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3089), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(861)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2732), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(3182), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(861), [sym_block_comment] = STATE(861), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_RPAREN] = ACTIONS(3256), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(862)] = { - [sym_function_modifiers] = STATE(3772), - [sym_removed_trait_bound] = STATE(1456), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1508), - [sym_bracketed_type] = STATE(3685), - [sym_lifetime] = STATE(855), - [sym_array_type] = STATE(1456), - [sym_for_lifetimes] = STATE(1647), - [sym_function_type] = STATE(1456), - [sym_tuple_type] = STATE(1456), - [sym_unit_type] = STATE(1456), - [sym_generic_type] = STATE(1265), - [sym_generic_type_with_turbofish] = STATE(3673), - [sym_bounded_type] = STATE(1456), - [sym_use_bounds] = STATE(3522), - [sym_reference_type] = STATE(1456), - [sym_pointer_type] = STATE(1456), - [sym_never_type] = STATE(1456), - [sym_abstract_type] = STATE(1456), - [sym_dynamic_type] = STATE(1456), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1084), + [sym_bracketed_type] = STATE(3755), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3470), + [sym_macro_invocation] = STATE(3150), + [sym_scoped_identifier] = STATE(2303), + [sym_scoped_type_identifier] = STATE(3084), + [sym_const_block] = STATE(3150), + [sym__pattern] = STATE(3102), + [sym_generic_pattern] = STATE(3150), + [sym_tuple_pattern] = STATE(3150), + [sym_slice_pattern] = STATE(3150), + [sym_tuple_struct_pattern] = STATE(3150), + [sym_struct_pattern] = STATE(3150), + [sym_remaining_field_pattern] = STATE(3150), + [sym_mut_pattern] = STATE(3150), + [sym_range_pattern] = STATE(3150), + [sym_ref_pattern] = STATE(3150), + [sym_captured_pattern] = STATE(3150), + [sym_reference_pattern] = STATE(3150), + [sym_or_pattern] = STATE(3150), + [sym__literal_pattern] = STATE(2485), + [sym_negative_literal] = STATE(2477), + [sym_string_literal] = STATE(2477), + [sym_raw_string_literal] = STATE(2477), + [sym_boolean_literal] = STATE(2477), [sym_line_comment] = STATE(862), [sym_block_comment] = STATE(862), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3172), - [anon_sym_LPAREN] = ACTIONS(3174), - [anon_sym_LBRACK] = ACTIONS(3176), - [anon_sym_STAR] = ACTIONS(3180), - [anon_sym_QMARK] = ACTIONS(3182), - [anon_sym_u8] = ACTIONS(3184), - [anon_sym_i8] = ACTIONS(3184), - [anon_sym_u16] = ACTIONS(3184), - [anon_sym_i16] = ACTIONS(3184), - [anon_sym_u32] = ACTIONS(3184), - [anon_sym_i32] = ACTIONS(3184), - [anon_sym_u64] = ACTIONS(3184), - [anon_sym_i64] = ACTIONS(3184), - [anon_sym_u128] = ACTIONS(3184), - [anon_sym_i128] = ACTIONS(3184), - [anon_sym_isize] = ACTIONS(3184), - [anon_sym_usize] = ACTIONS(3184), - [anon_sym_f32] = ACTIONS(3184), - [anon_sym_f64] = ACTIONS(3184), - [anon_sym_bool] = ACTIONS(3184), - [anon_sym_str] = ACTIONS(3184), - [anon_sym_char] = ACTIONS(3184), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_AMP] = ACTIONS(3188), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3192), - [anon_sym_fn] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3196), - [anon_sym_impl] = ACTIONS(3198), - [anon_sym_union] = ACTIONS(3196), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3200), - [sym_mutable_specifier] = ACTIONS(3258), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_crate] = ACTIONS(3204), - [sym_metavariable] = ACTIONS(3206), + [sym_identifier] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_u8] = ACTIONS(1585), + [anon_sym_i8] = ACTIONS(1585), + [anon_sym_u16] = ACTIONS(1585), + [anon_sym_i16] = ACTIONS(1585), + [anon_sym_u32] = ACTIONS(1585), + [anon_sym_i32] = ACTIONS(1585), + [anon_sym_u64] = ACTIONS(1585), + [anon_sym_i64] = ACTIONS(1585), + [anon_sym_u128] = ACTIONS(1585), + [anon_sym_i128] = ACTIONS(1585), + [anon_sym_isize] = ACTIONS(1585), + [anon_sym_usize] = ACTIONS(1585), + [anon_sym_f32] = ACTIONS(1585), + [anon_sym_f64] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_str] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1597), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_const] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1605), + [anon_sym_gen] = ACTIONS(1605), + [anon_sym_union] = ACTIONS(1605), + [anon_sym_ref] = ACTIONS(1607), + [sym_mutable_specifier] = ACTIONS(1609), + [sym_integer_literal] = ACTIONS(1611), + [aux_sym_string_literal_token1] = ACTIONS(1613), + [sym_char_literal] = ACTIONS(1611), + [anon_sym_true] = ACTIONS(1615), + [anon_sym_false] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1617), + [sym_super] = ACTIONS(1617), + [sym_crate] = ACTIONS(1617), + [sym_metavariable] = ACTIONS(1619), + [sym__raw_string_literal_start] = ACTIONS(1621), + [sym_float_literal] = ACTIONS(1611), }, [STATE(863)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2660), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_bracketed_type] = STATE(3755), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3470), + [sym_macro_invocation] = STATE(3150), + [sym_scoped_identifier] = STATE(2303), + [sym_scoped_type_identifier] = STATE(3084), + [sym_const_block] = STATE(3150), + [sym__pattern] = STATE(3034), + [sym_generic_pattern] = STATE(3150), + [sym_tuple_pattern] = STATE(3150), + [sym_slice_pattern] = STATE(3150), + [sym_tuple_struct_pattern] = STATE(3150), + [sym_struct_pattern] = STATE(3150), + [sym_remaining_field_pattern] = STATE(3150), + [sym_mut_pattern] = STATE(3150), + [sym_range_pattern] = STATE(3150), + [sym_ref_pattern] = STATE(3150), + [sym_captured_pattern] = STATE(3150), + [sym_reference_pattern] = STATE(3150), + [sym_or_pattern] = STATE(3150), + [sym__literal_pattern] = STATE(2485), + [sym_negative_literal] = STATE(2477), + [sym_string_literal] = STATE(2477), + [sym_raw_string_literal] = STATE(2477), + [sym_boolean_literal] = STATE(2477), [sym_line_comment] = STATE(863), [sym_block_comment] = STATE(863), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3260), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_u8] = ACTIONS(1585), + [anon_sym_i8] = ACTIONS(1585), + [anon_sym_u16] = ACTIONS(1585), + [anon_sym_i16] = ACTIONS(1585), + [anon_sym_u32] = ACTIONS(1585), + [anon_sym_i32] = ACTIONS(1585), + [anon_sym_u64] = ACTIONS(1585), + [anon_sym_i64] = ACTIONS(1585), + [anon_sym_u128] = ACTIONS(1585), + [anon_sym_i128] = ACTIONS(1585), + [anon_sym_isize] = ACTIONS(1585), + [anon_sym_usize] = ACTIONS(1585), + [anon_sym_f32] = ACTIONS(1585), + [anon_sym_f64] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_str] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1597), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_const] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1605), + [anon_sym_gen] = ACTIONS(1605), + [anon_sym_union] = ACTIONS(1605), + [anon_sym_ref] = ACTIONS(1607), + [sym_mutable_specifier] = ACTIONS(1609), + [sym_integer_literal] = ACTIONS(1611), + [aux_sym_string_literal_token1] = ACTIONS(1613), + [sym_char_literal] = ACTIONS(1611), + [anon_sym_true] = ACTIONS(1615), + [anon_sym_false] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1617), + [sym_super] = ACTIONS(1617), + [sym_crate] = ACTIONS(1617), + [sym_metavariable] = ACTIONS(1619), + [sym__raw_string_literal_start] = ACTIONS(1621), + [sym_float_literal] = ACTIONS(1611), }, [STATE(864)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_type_parameters] = STATE(1011), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2462), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2486), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2280), + [sym_bracketed_type] = STATE(3755), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3470), + [sym_macro_invocation] = STATE(3150), + [sym_scoped_identifier] = STATE(2303), + [sym_scoped_type_identifier] = STATE(3084), + [sym_const_block] = STATE(3150), + [sym__pattern] = STATE(2977), + [sym_generic_pattern] = STATE(3150), + [sym_tuple_pattern] = STATE(3150), + [sym_slice_pattern] = STATE(3150), + [sym_tuple_struct_pattern] = STATE(3150), + [sym_struct_pattern] = STATE(3150), + [sym_remaining_field_pattern] = STATE(3150), + [sym_mut_pattern] = STATE(3150), + [sym_range_pattern] = STATE(3150), + [sym_ref_pattern] = STATE(3150), + [sym_captured_pattern] = STATE(3150), + [sym_reference_pattern] = STATE(3150), + [sym_or_pattern] = STATE(3150), + [sym__literal_pattern] = STATE(2485), + [sym_negative_literal] = STATE(2477), + [sym_string_literal] = STATE(2477), + [sym_raw_string_literal] = STATE(2477), + [sym_boolean_literal] = STATE(2477), [sym_line_comment] = STATE(864), [sym_block_comment] = STATE(864), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3262), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(3264), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(3266), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_u8] = ACTIONS(1585), + [anon_sym_i8] = ACTIONS(1585), + [anon_sym_u16] = ACTIONS(1585), + [anon_sym_i16] = ACTIONS(1585), + [anon_sym_u32] = ACTIONS(1585), + [anon_sym_i32] = ACTIONS(1585), + [anon_sym_u64] = ACTIONS(1585), + [anon_sym_i64] = ACTIONS(1585), + [anon_sym_u128] = ACTIONS(1585), + [anon_sym_i128] = ACTIONS(1585), + [anon_sym_isize] = ACTIONS(1585), + [anon_sym_usize] = ACTIONS(1585), + [anon_sym_f32] = ACTIONS(1585), + [anon_sym_f64] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_str] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1597), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_const] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1605), + [anon_sym_gen] = ACTIONS(1605), + [anon_sym_union] = ACTIONS(1605), + [anon_sym_ref] = ACTIONS(1607), + [sym_mutable_specifier] = ACTIONS(1609), + [sym_integer_literal] = ACTIONS(1611), + [aux_sym_string_literal_token1] = ACTIONS(1613), + [sym_char_literal] = ACTIONS(1611), + [anon_sym_true] = ACTIONS(1615), + [anon_sym_false] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1617), + [sym_super] = ACTIONS(1617), + [sym_crate] = ACTIONS(1617), + [sym_metavariable] = ACTIONS(1619), + [sym__raw_string_literal_start] = ACTIONS(1621), + [sym_float_literal] = ACTIONS(1611), }, [STATE(865)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2732), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2262), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(865), [sym_block_comment] = STATE(865), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_RPAREN] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(866)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2989), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(3262), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(866), [sym_block_comment] = STATE(866), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_RPAREN] = ACTIONS(3270), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(867)] = { - [sym_function_modifiers] = STATE(3812), - [sym_higher_ranked_trait_bound] = STATE(2263), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2264), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(2264), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(3537), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(867), [sym_block_comment] = STATE(867), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(3272), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(868)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2680), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2271), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(868), [sym_block_comment] = STATE(868), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_RPAREN] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(869)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2989), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(3483), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(869), [sym_block_comment] = STATE(869), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_RPAREN] = ACTIONS(3274), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(870)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2926), - [sym_bracketed_type] = STATE(3752), - [sym_qualified_type] = STATE(3704), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2826), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(870), [sym_block_comment] = STATE(870), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(871)] = { - [sym_function_modifiers] = STATE(3812), - [sym_higher_ranked_trait_bound] = STATE(2301), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2302), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(2302), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(3204), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(871), [sym_block_comment] = STATE(871), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(3272), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(872)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2989), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(3440), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(872), [sym_block_comment] = STATE(872), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_RPAREN] = ACTIONS(3276), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(873)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2779), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2572), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(873), [sym_block_comment] = STATE(873), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_RPAREN] = ACTIONS(3278), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(874)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2649), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2662), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(874), [sym_block_comment] = STATE(874), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3280), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(3091), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(875)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2989), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(3464), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(875), [sym_block_comment] = STATE(875), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_RPAREN] = ACTIONS(3282), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(876)] = { - [sym_function_modifiers] = STATE(3812), - [sym_higher_ranked_trait_bound] = STATE(2301), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2303), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(2303), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(2091), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2608), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(876), [sym_block_comment] = STATE(876), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(3272), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(877)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_type_parameters] = STATE(903), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2499), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2506), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2252), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(3181), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(877), [sym_block_comment] = STATE(877), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3284), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(3266), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(878)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2989), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2632), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(878), [sym_block_comment] = STATE(878), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_RPAREN] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(3093), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(879)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3467), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(856), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(3527), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(879), [sym_block_comment] = STATE(879), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [sym_mutable_specifier] = ACTIONS(3290), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(880)] = { - [sym_function_modifiers] = STATE(3641), - [sym_removed_trait_bound] = STATE(1745), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1818), - [sym_bracketed_type] = STATE(3701), - [sym_lifetime] = STATE(857), - [sym_array_type] = STATE(1745), - [sym_for_lifetimes] = STATE(1625), - [sym_function_type] = STATE(1745), - [sym_tuple_type] = STATE(1745), - [sym_unit_type] = STATE(1745), - [sym_generic_type] = STATE(1692), - [sym_generic_type_with_turbofish] = STATE(3692), - [sym_bounded_type] = STATE(1745), - [sym_use_bounds] = STATE(3813), - [sym_reference_type] = STATE(1745), - [sym_pointer_type] = STATE(1745), - [sym_never_type] = STATE(1745), - [sym_abstract_type] = STATE(1745), - [sym_dynamic_type] = STATE(1745), - [sym_macro_invocation] = STATE(1745), - [sym_scoped_identifier] = STATE(3433), - [sym_scoped_type_identifier] = STATE(1614), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(3534), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(880), [sym_block_comment] = STATE(880), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_STAR] = ACTIONS(3222), - [anon_sym_QMARK] = ACTIONS(3224), - [anon_sym_u8] = ACTIONS(3226), - [anon_sym_i8] = ACTIONS(3226), - [anon_sym_u16] = ACTIONS(3226), - [anon_sym_i16] = ACTIONS(3226), - [anon_sym_u32] = ACTIONS(3226), - [anon_sym_i32] = ACTIONS(3226), - [anon_sym_u64] = ACTIONS(3226), - [anon_sym_i64] = ACTIONS(3226), - [anon_sym_u128] = ACTIONS(3226), - [anon_sym_i128] = ACTIONS(3226), - [anon_sym_isize] = ACTIONS(3226), - [anon_sym_usize] = ACTIONS(3226), - [anon_sym_f32] = ACTIONS(3226), - [anon_sym_f64] = ACTIONS(3226), - [anon_sym_bool] = ACTIONS(3226), - [anon_sym_str] = ACTIONS(3226), - [anon_sym_char] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3230), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3234), - [anon_sym_fn] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3238), - [anon_sym_impl] = ACTIONS(3240), - [anon_sym_union] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3242), - [sym_mutable_specifier] = ACTIONS(3292), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_crate] = ACTIONS(3246), - [sym_metavariable] = ACTIONS(3248), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(881)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2056), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(858), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(3535), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(881), [sym_block_comment] = STATE(881), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(3294), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(882)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2056), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(859), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_bracketed_type] = STATE(3670), + [sym_generic_type] = STATE(3671), + [sym_generic_type_with_turbofish] = STATE(3463), + [sym_macro_invocation] = STATE(2249), + [sym_scoped_identifier] = STATE(2097), + [sym_scoped_type_identifier] = STATE(3183), + [sym_const_block] = STATE(2249), + [sym__pattern] = STATE(2248), + [sym_generic_pattern] = STATE(2249), + [sym_tuple_pattern] = STATE(2249), + [sym_slice_pattern] = STATE(2249), + [sym_tuple_struct_pattern] = STATE(2249), + [sym_struct_pattern] = STATE(2249), + [sym_remaining_field_pattern] = STATE(2249), + [sym_mut_pattern] = STATE(2249), + [sym_range_pattern] = STATE(2249), + [sym_ref_pattern] = STATE(2249), + [sym_captured_pattern] = STATE(2249), + [sym_reference_pattern] = STATE(2249), + [sym_or_pattern] = STATE(2249), + [sym__literal_pattern] = STATE(2169), + [sym_negative_literal] = STATE(2165), + [sym_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), [sym_line_comment] = STATE(882), [sym_block_comment] = STATE(882), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [sym_mutable_specifier] = ACTIONS(3296), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_ref] = ACTIONS(1109), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1117), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1115), }, [STATE(883)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2779), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym_visibility_modifier] = STATE(962), + [sym__type] = STATE(2808), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(883), [sym_block_comment] = STATE(883), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_RPAREN] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_pub] = ACTIONS(2289), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(2291), + [sym_metavariable] = ACTIONS(1553), }, [STATE(884)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_type_parameters] = STATE(998), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2423), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2477), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2277), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2122), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(884), [sym_block_comment] = STATE(884), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(3300), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(3266), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_PLUS] = ACTIONS(3095), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [sym_mutable_specifier] = ACTIONS(3097), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3099), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(885)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_type_parameters] = STATE(959), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2434), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2439), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2270), + [sym_function_modifiers] = STATE(3689), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(3507), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3674), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1685), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3674), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2330), [sym_line_comment] = STATE(885), [sym_block_comment] = STATE(885), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3302), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(3304), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(3266), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_PLUS] = ACTIONS(3103), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1547), + [sym_mutable_specifier] = ACTIONS(3105), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(886)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3018), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3689), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2122), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3674), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1685), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3674), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2330), [sym_line_comment] = STATE(886), [sym_block_comment] = STATE(886), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_PLUS] = ACTIONS(3103), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1547), + [sym_mutable_specifier] = ACTIONS(3107), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(887)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3037), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3700), + [sym_removed_trait_bound] = STATE(1910), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(1908), + [sym_bracketed_type] = STATE(3761), + [sym_lifetime] = STATE(3860), + [sym_array_type] = STATE(1910), + [sym_for_lifetimes] = STATE(1684), + [sym_function_type] = STATE(1910), + [sym_tuple_type] = STATE(1910), + [sym_unit_type] = STATE(1910), + [sym_generic_type] = STATE(1717), + [sym_generic_type_with_turbofish] = STATE(3752), + [sym_bounded_type] = STATE(1910), + [sym_use_bounds] = STATE(3860), + [sym_reference_type] = STATE(1910), + [sym_pointer_type] = STATE(1910), + [sym_never_type] = STATE(1910), + [sym_abstract_type] = STATE(1910), + [sym_dynamic_type] = STATE(1910), + [sym_macro_invocation] = STATE(1910), + [sym_scoped_identifier] = STATE(3487), + [sym_scoped_type_identifier] = STATE(1647), [sym_line_comment] = STATE(887), [sym_block_comment] = STATE(887), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3111), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3115), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_QMARK] = ACTIONS(3119), + [anon_sym_u8] = ACTIONS(3121), + [anon_sym_i8] = ACTIONS(3121), + [anon_sym_u16] = ACTIONS(3121), + [anon_sym_i16] = ACTIONS(3121), + [anon_sym_u32] = ACTIONS(3121), + [anon_sym_i32] = ACTIONS(3121), + [anon_sym_u64] = ACTIONS(3121), + [anon_sym_i64] = ACTIONS(3121), + [anon_sym_u128] = ACTIONS(3121), + [anon_sym_i128] = ACTIONS(3121), + [anon_sym_isize] = ACTIONS(3121), + [anon_sym_usize] = ACTIONS(3121), + [anon_sym_f32] = ACTIONS(3121), + [anon_sym_f64] = ACTIONS(3121), + [anon_sym_bool] = ACTIONS(3121), + [anon_sym_str] = ACTIONS(3121), + [anon_sym_char] = ACTIONS(3121), + [anon_sym_BANG] = ACTIONS(3123), + [anon_sym_AMP] = ACTIONS(3125), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3127), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(3129), + [anon_sym_fn] = ACTIONS(3131), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(3133), + [anon_sym_impl] = ACTIONS(3135), + [anon_sym_union] = ACTIONS(3133), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(3137), + [sym_mutable_specifier] = ACTIONS(3139), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3141), + [sym_super] = ACTIONS(3141), + [sym_crate] = ACTIONS(3141), + [sym_metavariable] = ACTIONS(3143), }, [STATE(888)] = { - [sym_function_modifiers] = STATE(3772), - [sym_removed_trait_bound] = STATE(1456), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1461), - [sym_bracketed_type] = STATE(3685), - [sym_lifetime] = STATE(3522), - [sym_array_type] = STATE(1456), - [sym_for_lifetimes] = STATE(1647), - [sym_function_type] = STATE(1456), - [sym_tuple_type] = STATE(1456), - [sym_unit_type] = STATE(1456), - [sym_generic_type] = STATE(1265), - [sym_generic_type_with_turbofish] = STATE(3673), - [sym_bounded_type] = STATE(1456), - [sym_use_bounds] = STATE(3522), - [sym_reference_type] = STATE(1456), - [sym_pointer_type] = STATE(1456), - [sym_never_type] = STATE(1456), - [sym_abstract_type] = STATE(1456), - [sym_dynamic_type] = STATE(1456), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1084), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym_visibility_modifier] = STATE(1008), + [sym__type] = STATE(2947), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(888), [sym_block_comment] = STATE(888), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3172), - [anon_sym_LPAREN] = ACTIONS(3174), - [anon_sym_LBRACK] = ACTIONS(3176), - [anon_sym_STAR] = ACTIONS(3180), - [anon_sym_QMARK] = ACTIONS(3182), - [anon_sym_u8] = ACTIONS(3184), - [anon_sym_i8] = ACTIONS(3184), - [anon_sym_u16] = ACTIONS(3184), - [anon_sym_i16] = ACTIONS(3184), - [anon_sym_u32] = ACTIONS(3184), - [anon_sym_i32] = ACTIONS(3184), - [anon_sym_u64] = ACTIONS(3184), - [anon_sym_i64] = ACTIONS(3184), - [anon_sym_u128] = ACTIONS(3184), - [anon_sym_i128] = ACTIONS(3184), - [anon_sym_isize] = ACTIONS(3184), - [anon_sym_usize] = ACTIONS(3184), - [anon_sym_f32] = ACTIONS(3184), - [anon_sym_f64] = ACTIONS(3184), - [anon_sym_bool] = ACTIONS(3184), - [anon_sym_str] = ACTIONS(3184), - [anon_sym_char] = ACTIONS(3184), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_AMP] = ACTIONS(3188), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3192), - [anon_sym_fn] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3196), - [anon_sym_impl] = ACTIONS(3198), - [anon_sym_union] = ACTIONS(3196), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3200), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_crate] = ACTIONS(3204), - [sym_metavariable] = ACTIONS(3206), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_pub] = ACTIONS(2289), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(2291), + [sym_metavariable] = ACTIONS(1553), }, [STATE(889)] = { - [sym_function_modifiers] = STATE(3772), - [sym_removed_trait_bound] = STATE(1456), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1462), - [sym_bracketed_type] = STATE(3685), - [sym_lifetime] = STATE(3522), - [sym_array_type] = STATE(1456), - [sym_for_lifetimes] = STATE(1647), - [sym_function_type] = STATE(1456), - [sym_tuple_type] = STATE(1456), - [sym_unit_type] = STATE(1456), - [sym_generic_type] = STATE(1265), - [sym_generic_type_with_turbofish] = STATE(3673), - [sym_bounded_type] = STATE(1456), - [sym_use_bounds] = STATE(3522), - [sym_reference_type] = STATE(1456), - [sym_pointer_type] = STATE(1456), - [sym_never_type] = STATE(1456), - [sym_abstract_type] = STATE(1456), - [sym_dynamic_type] = STATE(1456), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1084), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2122), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(889), [sym_block_comment] = STATE(889), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3172), - [anon_sym_LPAREN] = ACTIONS(3174), - [anon_sym_LBRACK] = ACTIONS(3176), - [anon_sym_STAR] = ACTIONS(3180), - [anon_sym_QMARK] = ACTIONS(3182), - [anon_sym_u8] = ACTIONS(3184), - [anon_sym_i8] = ACTIONS(3184), - [anon_sym_u16] = ACTIONS(3184), - [anon_sym_i16] = ACTIONS(3184), - [anon_sym_u32] = ACTIONS(3184), - [anon_sym_i32] = ACTIONS(3184), - [anon_sym_u64] = ACTIONS(3184), - [anon_sym_i64] = ACTIONS(3184), - [anon_sym_u128] = ACTIONS(3184), - [anon_sym_i128] = ACTIONS(3184), - [anon_sym_isize] = ACTIONS(3184), - [anon_sym_usize] = ACTIONS(3184), - [anon_sym_f32] = ACTIONS(3184), - [anon_sym_f64] = ACTIONS(3184), - [anon_sym_bool] = ACTIONS(3184), - [anon_sym_str] = ACTIONS(3184), - [anon_sym_char] = ACTIONS(3184), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_AMP] = ACTIONS(3188), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3192), - [anon_sym_fn] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3196), - [anon_sym_impl] = ACTIONS(3198), - [anon_sym_union] = ACTIONS(3196), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3200), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_crate] = ACTIONS(3204), - [sym_metavariable] = ACTIONS(3206), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_PLUS] = ACTIONS(3095), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [sym_mutable_specifier] = ACTIONS(3145), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(890)] = { - [sym_function_modifiers] = STATE(3772), - [sym_removed_trait_bound] = STATE(1456), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1473), - [sym_bracketed_type] = STATE(3685), - [sym_lifetime] = STATE(3522), - [sym_array_type] = STATE(1456), - [sym_for_lifetimes] = STATE(1647), - [sym_function_type] = STATE(1456), - [sym_tuple_type] = STATE(1456), - [sym_unit_type] = STATE(1456), - [sym_generic_type] = STATE(1265), - [sym_generic_type_with_turbofish] = STATE(3673), - [sym_bounded_type] = STATE(1456), - [sym_use_bounds] = STATE(3522), - [sym_reference_type] = STATE(1456), - [sym_pointer_type] = STATE(1456), - [sym_never_type] = STATE(1456), - [sym_abstract_type] = STATE(1456), - [sym_dynamic_type] = STATE(1456), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1084), + [sym_function_modifiers] = STATE(3835), + [sym_removed_trait_bound] = STATE(1488), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(1584), + [sym_bracketed_type] = STATE(3745), + [sym_lifetime] = STATE(3601), + [sym_array_type] = STATE(1488), + [sym_for_lifetimes] = STATE(1690), + [sym_function_type] = STATE(1488), + [sym_tuple_type] = STATE(1488), + [sym_unit_type] = STATE(1488), + [sym_generic_type] = STATE(1399), + [sym_generic_type_with_turbofish] = STATE(3732), + [sym_bounded_type] = STATE(1488), + [sym_use_bounds] = STATE(3601), + [sym_reference_type] = STATE(1488), + [sym_pointer_type] = STATE(1488), + [sym_never_type] = STATE(1488), + [sym_abstract_type] = STATE(1488), + [sym_dynamic_type] = STATE(1488), + [sym_macro_invocation] = STATE(1488), + [sym_scoped_identifier] = STATE(3405), + [sym_scoped_type_identifier] = STATE(1121), [sym_line_comment] = STATE(890), [sym_block_comment] = STATE(890), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3172), - [anon_sym_LPAREN] = ACTIONS(3174), - [anon_sym_LBRACK] = ACTIONS(3176), - [anon_sym_STAR] = ACTIONS(3180), - [anon_sym_QMARK] = ACTIONS(3182), - [anon_sym_u8] = ACTIONS(3184), - [anon_sym_i8] = ACTIONS(3184), - [anon_sym_u16] = ACTIONS(3184), - [anon_sym_i16] = ACTIONS(3184), - [anon_sym_u32] = ACTIONS(3184), - [anon_sym_i32] = ACTIONS(3184), - [anon_sym_u64] = ACTIONS(3184), - [anon_sym_i64] = ACTIONS(3184), - [anon_sym_u128] = ACTIONS(3184), - [anon_sym_i128] = ACTIONS(3184), - [anon_sym_isize] = ACTIONS(3184), - [anon_sym_usize] = ACTIONS(3184), - [anon_sym_f32] = ACTIONS(3184), - [anon_sym_f64] = ACTIONS(3184), - [anon_sym_bool] = ACTIONS(3184), - [anon_sym_str] = ACTIONS(3184), - [anon_sym_char] = ACTIONS(3184), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_AMP] = ACTIONS(3188), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3192), - [anon_sym_fn] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3196), - [anon_sym_impl] = ACTIONS(3198), - [anon_sym_union] = ACTIONS(3196), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3200), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_crate] = ACTIONS(3204), - [sym_metavariable] = ACTIONS(3206), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3147), + [anon_sym_LPAREN] = ACTIONS(3149), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_PLUS] = ACTIONS(3153), + [anon_sym_STAR] = ACTIONS(3155), + [anon_sym_QMARK] = ACTIONS(3157), + [anon_sym_u8] = ACTIONS(3159), + [anon_sym_i8] = ACTIONS(3159), + [anon_sym_u16] = ACTIONS(3159), + [anon_sym_i16] = ACTIONS(3159), + [anon_sym_u32] = ACTIONS(3159), + [anon_sym_i32] = ACTIONS(3159), + [anon_sym_u64] = ACTIONS(3159), + [anon_sym_i64] = ACTIONS(3159), + [anon_sym_u128] = ACTIONS(3159), + [anon_sym_i128] = ACTIONS(3159), + [anon_sym_isize] = ACTIONS(3159), + [anon_sym_usize] = ACTIONS(3159), + [anon_sym_f32] = ACTIONS(3159), + [anon_sym_f64] = ACTIONS(3159), + [anon_sym_bool] = ACTIONS(3159), + [anon_sym_str] = ACTIONS(3159), + [anon_sym_char] = ACTIONS(3159), + [anon_sym_BANG] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3165), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(3167), + [anon_sym_fn] = ACTIONS(3169), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(3171), + [anon_sym_impl] = ACTIONS(3173), + [anon_sym_union] = ACTIONS(3171), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(3175), + [sym_mutable_specifier] = ACTIONS(3177), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3179), + [sym_super] = ACTIONS(3179), + [sym_crate] = ACTIONS(3179), + [sym_metavariable] = ACTIONS(3181), }, [STATE(891)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2458), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_type_parameters] = STATE(981), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2495), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2496), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2335), [sym_line_comment] = STATE(891), [sym_block_comment] = STATE(891), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3183), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(3185), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(3187), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(892)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3024), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2871), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(892), [sym_block_comment] = STATE(892), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3189), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(893)] = { - [sym_function_modifiers] = STATE(3772), - [sym_removed_trait_bound] = STATE(1456), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1499), - [sym_bracketed_type] = STATE(3685), - [sym_lifetime] = STATE(3522), - [sym_array_type] = STATE(1456), - [sym_for_lifetimes] = STATE(1647), - [sym_function_type] = STATE(1456), - [sym_tuple_type] = STATE(1456), - [sym_unit_type] = STATE(1456), - [sym_generic_type] = STATE(1265), - [sym_generic_type_with_turbofish] = STATE(3673), - [sym_bounded_type] = STATE(1456), - [sym_use_bounds] = STATE(3522), - [sym_reference_type] = STATE(1456), - [sym_pointer_type] = STATE(1456), - [sym_never_type] = STATE(1456), - [sym_abstract_type] = STATE(1456), - [sym_dynamic_type] = STATE(1456), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1084), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(3142), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(893), [sym_block_comment] = STATE(893), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3172), - [anon_sym_LPAREN] = ACTIONS(3174), - [anon_sym_LBRACK] = ACTIONS(3176), - [anon_sym_STAR] = ACTIONS(3180), - [anon_sym_QMARK] = ACTIONS(3182), - [anon_sym_u8] = ACTIONS(3184), - [anon_sym_i8] = ACTIONS(3184), - [anon_sym_u16] = ACTIONS(3184), - [anon_sym_i16] = ACTIONS(3184), - [anon_sym_u32] = ACTIONS(3184), - [anon_sym_i32] = ACTIONS(3184), - [anon_sym_u64] = ACTIONS(3184), - [anon_sym_i64] = ACTIONS(3184), - [anon_sym_u128] = ACTIONS(3184), - [anon_sym_i128] = ACTIONS(3184), - [anon_sym_isize] = ACTIONS(3184), - [anon_sym_usize] = ACTIONS(3184), - [anon_sym_f32] = ACTIONS(3184), - [anon_sym_f64] = ACTIONS(3184), - [anon_sym_bool] = ACTIONS(3184), - [anon_sym_str] = ACTIONS(3184), - [anon_sym_char] = ACTIONS(3184), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_AMP] = ACTIONS(3188), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3192), - [anon_sym_fn] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3196), - [anon_sym_impl] = ACTIONS(3198), - [anon_sym_union] = ACTIONS(3196), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3200), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_crate] = ACTIONS(3204), - [sym_metavariable] = ACTIONS(3206), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_RPAREN] = ACTIONS(3191), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(894)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2815), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2769), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(894), [sym_block_comment] = STATE(894), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_RPAREN] = ACTIONS(3193), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(895)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2640), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(3142), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(895), [sym_block_comment] = STATE(895), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_RPAREN] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(896)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2474), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(3142), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(896), [sym_block_comment] = STATE(896), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_RPAREN] = ACTIONS(3197), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(897)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2476), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3700), + [sym_removed_trait_bound] = STATE(1910), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(1870), + [sym_bracketed_type] = STATE(3761), + [sym_lifetime] = STATE(887), + [sym_array_type] = STATE(1910), + [sym_for_lifetimes] = STATE(1684), + [sym_function_type] = STATE(1910), + [sym_tuple_type] = STATE(1910), + [sym_unit_type] = STATE(1910), + [sym_generic_type] = STATE(1717), + [sym_generic_type_with_turbofish] = STATE(3752), + [sym_bounded_type] = STATE(1910), + [sym_use_bounds] = STATE(3860), + [sym_reference_type] = STATE(1910), + [sym_pointer_type] = STATE(1910), + [sym_never_type] = STATE(1910), + [sym_abstract_type] = STATE(1910), + [sym_dynamic_type] = STATE(1910), + [sym_macro_invocation] = STATE(1910), + [sym_scoped_identifier] = STATE(3487), + [sym_scoped_type_identifier] = STATE(1647), [sym_line_comment] = STATE(897), [sym_block_comment] = STATE(897), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3111), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_QMARK] = ACTIONS(3119), + [anon_sym_u8] = ACTIONS(3121), + [anon_sym_i8] = ACTIONS(3121), + [anon_sym_u16] = ACTIONS(3121), + [anon_sym_i16] = ACTIONS(3121), + [anon_sym_u32] = ACTIONS(3121), + [anon_sym_i32] = ACTIONS(3121), + [anon_sym_u64] = ACTIONS(3121), + [anon_sym_i64] = ACTIONS(3121), + [anon_sym_u128] = ACTIONS(3121), + [anon_sym_i128] = ACTIONS(3121), + [anon_sym_isize] = ACTIONS(3121), + [anon_sym_usize] = ACTIONS(3121), + [anon_sym_f32] = ACTIONS(3121), + [anon_sym_f64] = ACTIONS(3121), + [anon_sym_bool] = ACTIONS(3121), + [anon_sym_str] = ACTIONS(3121), + [anon_sym_char] = ACTIONS(3121), + [anon_sym_BANG] = ACTIONS(3123), + [anon_sym_AMP] = ACTIONS(3125), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3127), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(3129), + [anon_sym_fn] = ACTIONS(3131), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(3133), + [anon_sym_impl] = ACTIONS(3135), + [anon_sym_union] = ACTIONS(3133), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(3137), + [sym_mutable_specifier] = ACTIONS(3199), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3141), + [sym_super] = ACTIONS(3141), + [sym_crate] = ACTIONS(3141), + [sym_metavariable] = ACTIONS(3143), }, [STATE(898)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2479), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3689), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(3257), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(885), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1685), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3674), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2330), [sym_line_comment] = STATE(898), [sym_block_comment] = STATE(898), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1547), + [sym_mutable_specifier] = ACTIONS(3201), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(899)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3109), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3689), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2971), + [sym_bracketed_type] = STATE(3816), + [sym_qualified_type] = STATE(3620), + [sym_lifetime] = STATE(3674), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1685), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3674), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2330), [sym_line_comment] = STATE(899), [sym_block_comment] = STATE(899), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1547), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(900)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2681), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2918), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(900), [sym_block_comment] = STATE(900), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_RPAREN] = ACTIONS(3203), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(901)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2487), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_type_parameters] = STATE(1021), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2552), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2551), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2306), [sym_line_comment] = STATE(901), [sym_block_comment] = STATE(901), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3205), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(3207), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(3187), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(902)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2668), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2735), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(902), [sym_block_comment] = STATE(902), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_RPAREN] = ACTIONS(3209), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(903)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2505), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2403), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2267), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2918), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(903), [sym_block_comment] = STATE(903), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3306), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(3308), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_RPAREN] = ACTIONS(3209), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(904)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2961), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3689), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2128), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(886), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1685), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3674), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2330), [sym_line_comment] = STATE(904), [sym_block_comment] = STATE(904), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1547), + [sym_mutable_specifier] = ACTIONS(3211), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(905)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2337), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3835), + [sym_removed_trait_bound] = STATE(1488), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(1526), + [sym_bracketed_type] = STATE(3745), + [sym_lifetime] = STATE(890), + [sym_array_type] = STATE(1488), + [sym_for_lifetimes] = STATE(1690), + [sym_function_type] = STATE(1488), + [sym_tuple_type] = STATE(1488), + [sym_unit_type] = STATE(1488), + [sym_generic_type] = STATE(1399), + [sym_generic_type_with_turbofish] = STATE(3732), + [sym_bounded_type] = STATE(1488), + [sym_use_bounds] = STATE(3601), + [sym_reference_type] = STATE(1488), + [sym_pointer_type] = STATE(1488), + [sym_never_type] = STATE(1488), + [sym_abstract_type] = STATE(1488), + [sym_dynamic_type] = STATE(1488), + [sym_macro_invocation] = STATE(1488), + [sym_scoped_identifier] = STATE(3405), + [sym_scoped_type_identifier] = STATE(1121), [sym_line_comment] = STATE(905), [sym_block_comment] = STATE(905), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3147), + [anon_sym_LPAREN] = ACTIONS(3149), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_STAR] = ACTIONS(3155), + [anon_sym_QMARK] = ACTIONS(3157), + [anon_sym_u8] = ACTIONS(3159), + [anon_sym_i8] = ACTIONS(3159), + [anon_sym_u16] = ACTIONS(3159), + [anon_sym_i16] = ACTIONS(3159), + [anon_sym_u32] = ACTIONS(3159), + [anon_sym_i32] = ACTIONS(3159), + [anon_sym_u64] = ACTIONS(3159), + [anon_sym_i64] = ACTIONS(3159), + [anon_sym_u128] = ACTIONS(3159), + [anon_sym_i128] = ACTIONS(3159), + [anon_sym_isize] = ACTIONS(3159), + [anon_sym_usize] = ACTIONS(3159), + [anon_sym_f32] = ACTIONS(3159), + [anon_sym_f64] = ACTIONS(3159), + [anon_sym_bool] = ACTIONS(3159), + [anon_sym_str] = ACTIONS(3159), + [anon_sym_char] = ACTIONS(3159), + [anon_sym_BANG] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3165), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(3167), + [anon_sym_fn] = ACTIONS(3169), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(3171), + [anon_sym_impl] = ACTIONS(3173), + [anon_sym_union] = ACTIONS(3171), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(3175), + [sym_mutable_specifier] = ACTIONS(3213), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3179), + [sym_super] = ACTIONS(3179), + [sym_crate] = ACTIONS(3179), + [sym_metavariable] = ACTIONS(3181), }, [STATE(906)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2760), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_type_parameters] = STATE(1035), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2465), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2556), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2314), [sym_line_comment] = STATE(906), [sym_block_comment] = STATE(906), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3215), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(3217), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(3187), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(907)] = { - [sym_function_modifiers] = STATE(3641), - [sym_removed_trait_bound] = STATE(1745), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1837), - [sym_bracketed_type] = STATE(3701), - [sym_lifetime] = STATE(3813), - [sym_array_type] = STATE(1745), - [sym_for_lifetimes] = STATE(1625), - [sym_function_type] = STATE(1745), - [sym_tuple_type] = STATE(1745), - [sym_unit_type] = STATE(1745), - [sym_generic_type] = STATE(1692), - [sym_generic_type_with_turbofish] = STATE(3692), - [sym_bounded_type] = STATE(1745), - [sym_use_bounds] = STATE(3813), - [sym_reference_type] = STATE(1745), - [sym_pointer_type] = STATE(1745), - [sym_never_type] = STATE(1745), - [sym_abstract_type] = STATE(1745), - [sym_dynamic_type] = STATE(1745), - [sym_macro_invocation] = STATE(1745), - [sym_scoped_identifier] = STATE(3433), - [sym_scoped_type_identifier] = STATE(1614), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(3142), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(907), [sym_block_comment] = STATE(907), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_STAR] = ACTIONS(3222), - [anon_sym_QMARK] = ACTIONS(3224), - [anon_sym_u8] = ACTIONS(3226), - [anon_sym_i8] = ACTIONS(3226), - [anon_sym_u16] = ACTIONS(3226), - [anon_sym_i16] = ACTIONS(3226), - [anon_sym_u32] = ACTIONS(3226), - [anon_sym_i32] = ACTIONS(3226), - [anon_sym_u64] = ACTIONS(3226), - [anon_sym_i64] = ACTIONS(3226), - [anon_sym_u128] = ACTIONS(3226), - [anon_sym_i128] = ACTIONS(3226), - [anon_sym_isize] = ACTIONS(3226), - [anon_sym_usize] = ACTIONS(3226), - [anon_sym_f32] = ACTIONS(3226), - [anon_sym_f64] = ACTIONS(3226), - [anon_sym_bool] = ACTIONS(3226), - [anon_sym_str] = ACTIONS(3226), - [anon_sym_char] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3230), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3234), - [anon_sym_fn] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3238), - [anon_sym_impl] = ACTIONS(3240), - [anon_sym_union] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3242), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_crate] = ACTIONS(3246), - [sym_metavariable] = ACTIONS(3248), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_RPAREN] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(908)] = { - [sym_function_modifiers] = STATE(3641), - [sym_removed_trait_bound] = STATE(1745), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1838), - [sym_bracketed_type] = STATE(3701), - [sym_lifetime] = STATE(3813), - [sym_array_type] = STATE(1745), - [sym_for_lifetimes] = STATE(1625), - [sym_function_type] = STATE(1745), - [sym_tuple_type] = STATE(1745), - [sym_unit_type] = STATE(1745), - [sym_generic_type] = STATE(1692), - [sym_generic_type_with_turbofish] = STATE(3692), - [sym_bounded_type] = STATE(1745), - [sym_use_bounds] = STATE(3813), - [sym_reference_type] = STATE(1745), - [sym_pointer_type] = STATE(1745), - [sym_never_type] = STATE(1745), - [sym_abstract_type] = STATE(1745), - [sym_dynamic_type] = STATE(1745), - [sym_macro_invocation] = STATE(1745), - [sym_scoped_identifier] = STATE(3433), - [sym_scoped_type_identifier] = STATE(1614), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2769), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(908), [sym_block_comment] = STATE(908), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_STAR] = ACTIONS(3222), - [anon_sym_QMARK] = ACTIONS(3224), - [anon_sym_u8] = ACTIONS(3226), - [anon_sym_i8] = ACTIONS(3226), - [anon_sym_u16] = ACTIONS(3226), - [anon_sym_i16] = ACTIONS(3226), - [anon_sym_u32] = ACTIONS(3226), - [anon_sym_i32] = ACTIONS(3226), - [anon_sym_u64] = ACTIONS(3226), - [anon_sym_i64] = ACTIONS(3226), - [anon_sym_u128] = ACTIONS(3226), - [anon_sym_i128] = ACTIONS(3226), - [anon_sym_isize] = ACTIONS(3226), - [anon_sym_usize] = ACTIONS(3226), - [anon_sym_f32] = ACTIONS(3226), - [anon_sym_f64] = ACTIONS(3226), - [anon_sym_bool] = ACTIONS(3226), - [anon_sym_str] = ACTIONS(3226), - [anon_sym_char] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3230), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3234), - [anon_sym_fn] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3238), - [anon_sym_impl] = ACTIONS(3240), - [anon_sym_union] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3242), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_crate] = ACTIONS(3246), - [sym_metavariable] = ACTIONS(3248), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_RPAREN] = ACTIONS(3209), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(909)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2622), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(3142), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(909), [sym_block_comment] = STATE(909), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_RPAREN] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(910)] = { - [sym_function_modifiers] = STATE(3641), - [sym_removed_trait_bound] = STATE(1745), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1786), - [sym_bracketed_type] = STATE(3701), - [sym_lifetime] = STATE(1786), - [sym_array_type] = STATE(1745), - [sym_for_lifetimes] = STATE(1625), - [sym_function_type] = STATE(1745), - [sym_tuple_type] = STATE(1745), - [sym_unit_type] = STATE(1745), - [sym_generic_type] = STATE(1692), - [sym_generic_type_with_turbofish] = STATE(3692), - [sym_bounded_type] = STATE(1745), - [sym_use_bounds] = STATE(1786), - [sym_reference_type] = STATE(1745), - [sym_pointer_type] = STATE(1745), - [sym_never_type] = STATE(1745), - [sym_abstract_type] = STATE(1745), - [sym_dynamic_type] = STATE(1745), - [sym_macro_invocation] = STATE(1745), - [sym_scoped_identifier] = STATE(3433), - [sym_scoped_type_identifier] = STATE(1614), + [sym_function_modifiers] = STATE(3874), + [sym_higher_ranked_trait_bound] = STATE(2381), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2382), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(2382), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(910), [sym_block_comment] = STATE(910), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_STAR] = ACTIONS(3222), - [anon_sym_QMARK] = ACTIONS(3224), - [anon_sym_u8] = ACTIONS(3226), - [anon_sym_i8] = ACTIONS(3226), - [anon_sym_u16] = ACTIONS(3226), - [anon_sym_i16] = ACTIONS(3226), - [anon_sym_u32] = ACTIONS(3226), - [anon_sym_i32] = ACTIONS(3226), - [anon_sym_u64] = ACTIONS(3226), - [anon_sym_i64] = ACTIONS(3226), - [anon_sym_u128] = ACTIONS(3226), - [anon_sym_i128] = ACTIONS(3226), - [anon_sym_isize] = ACTIONS(3226), - [anon_sym_usize] = ACTIONS(3226), - [anon_sym_f32] = ACTIONS(3226), - [anon_sym_f64] = ACTIONS(3226), - [anon_sym_bool] = ACTIONS(3226), - [anon_sym_str] = ACTIONS(3226), - [anon_sym_char] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3230), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3310), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3234), - [anon_sym_fn] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3238), - [anon_sym_impl] = ACTIONS(3240), - [anon_sym_union] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(3312), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3242), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_crate] = ACTIONS(3246), - [sym_metavariable] = ACTIONS(3248), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(3223), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(911)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2706), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_higher_ranked_trait_bound] = STATE(2381), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2383), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(2383), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(2148), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(911), [sym_block_comment] = STATE(911), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(3223), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(912)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2710), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2128), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(889), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(912), [sym_block_comment] = STATE(912), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [sym_mutable_specifier] = ACTIONS(3225), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(913)] = { - [sym_function_modifiers] = STATE(3641), - [sym_removed_trait_bound] = STATE(1745), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1843), - [sym_bracketed_type] = STATE(3701), - [sym_lifetime] = STATE(3813), - [sym_array_type] = STATE(1745), - [sym_for_lifetimes] = STATE(1625), - [sym_function_type] = STATE(1745), - [sym_tuple_type] = STATE(1745), - [sym_unit_type] = STATE(1745), - [sym_generic_type] = STATE(1692), - [sym_generic_type_with_turbofish] = STATE(3692), - [sym_bounded_type] = STATE(1745), - [sym_use_bounds] = STATE(3813), - [sym_reference_type] = STATE(1745), - [sym_pointer_type] = STATE(1745), - [sym_never_type] = STATE(1745), - [sym_abstract_type] = STATE(1745), - [sym_dynamic_type] = STATE(1745), - [sym_macro_invocation] = STATE(1745), - [sym_scoped_identifier] = STATE(3433), - [sym_scoped_type_identifier] = STATE(1614), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2713), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(913), [sym_block_comment] = STATE(913), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_STAR] = ACTIONS(3222), - [anon_sym_QMARK] = ACTIONS(3224), - [anon_sym_u8] = ACTIONS(3226), - [anon_sym_i8] = ACTIONS(3226), - [anon_sym_u16] = ACTIONS(3226), - [anon_sym_i16] = ACTIONS(3226), - [anon_sym_u32] = ACTIONS(3226), - [anon_sym_i32] = ACTIONS(3226), - [anon_sym_u64] = ACTIONS(3226), - [anon_sym_i64] = ACTIONS(3226), - [anon_sym_u128] = ACTIONS(3226), - [anon_sym_i128] = ACTIONS(3226), - [anon_sym_isize] = ACTIONS(3226), - [anon_sym_usize] = ACTIONS(3226), - [anon_sym_f32] = ACTIONS(3226), - [anon_sym_f64] = ACTIONS(3226), - [anon_sym_bool] = ACTIONS(3226), - [anon_sym_str] = ACTIONS(3226), - [anon_sym_char] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3230), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3234), - [anon_sym_fn] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3238), - [anon_sym_impl] = ACTIONS(3240), - [anon_sym_union] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3242), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_crate] = ACTIONS(3246), - [sym_metavariable] = ACTIONS(3248), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3227), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(914)] = { - [sym_function_modifiers] = STATE(3641), - [sym_removed_trait_bound] = STATE(1745), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1791), - [sym_bracketed_type] = STATE(3701), - [sym_lifetime] = STATE(3813), - [sym_array_type] = STATE(1745), - [sym_for_lifetimes] = STATE(1625), - [sym_function_type] = STATE(1745), - [sym_tuple_type] = STATE(1745), - [sym_unit_type] = STATE(1745), - [sym_generic_type] = STATE(1692), - [sym_generic_type_with_turbofish] = STATE(3692), - [sym_bounded_type] = STATE(1745), - [sym_use_bounds] = STATE(3813), - [sym_reference_type] = STATE(1745), - [sym_pointer_type] = STATE(1745), - [sym_never_type] = STATE(1745), - [sym_abstract_type] = STATE(1745), - [sym_dynamic_type] = STATE(1745), - [sym_macro_invocation] = STATE(1745), - [sym_scoped_identifier] = STATE(3433), - [sym_scoped_type_identifier] = STATE(1614), + [sym_function_modifiers] = STATE(3874), + [sym_higher_ranked_trait_bound] = STATE(2304), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2308), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(2308), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(914), [sym_block_comment] = STATE(914), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_STAR] = ACTIONS(3222), - [anon_sym_QMARK] = ACTIONS(3224), - [anon_sym_u8] = ACTIONS(3226), - [anon_sym_i8] = ACTIONS(3226), - [anon_sym_u16] = ACTIONS(3226), - [anon_sym_i16] = ACTIONS(3226), - [anon_sym_u32] = ACTIONS(3226), - [anon_sym_i32] = ACTIONS(3226), - [anon_sym_u64] = ACTIONS(3226), - [anon_sym_i64] = ACTIONS(3226), - [anon_sym_u128] = ACTIONS(3226), - [anon_sym_i128] = ACTIONS(3226), - [anon_sym_isize] = ACTIONS(3226), - [anon_sym_usize] = ACTIONS(3226), - [anon_sym_f32] = ACTIONS(3226), - [anon_sym_f64] = ACTIONS(3226), - [anon_sym_bool] = ACTIONS(3226), - [anon_sym_str] = ACTIONS(3226), - [anon_sym_char] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3230), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3234), - [anon_sym_fn] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3238), - [anon_sym_impl] = ACTIONS(3240), - [anon_sym_union] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3242), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_crate] = ACTIONS(3246), - [sym_metavariable] = ACTIONS(3248), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(3223), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(915)] = { - [sym_function_modifiers] = STATE(3641), - [sym_removed_trait_bound] = STATE(1745), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1844), - [sym_bracketed_type] = STATE(3701), - [sym_lifetime] = STATE(3813), - [sym_array_type] = STATE(1745), - [sym_for_lifetimes] = STATE(1625), - [sym_function_type] = STATE(1745), - [sym_tuple_type] = STATE(1745), - [sym_unit_type] = STATE(1745), - [sym_generic_type] = STATE(1692), - [sym_generic_type_with_turbofish] = STATE(3692), - [sym_bounded_type] = STATE(1745), - [sym_use_bounds] = STATE(3813), - [sym_reference_type] = STATE(1745), - [sym_pointer_type] = STATE(1745), - [sym_never_type] = STATE(1745), - [sym_abstract_type] = STATE(1745), - [sym_dynamic_type] = STATE(1745), - [sym_macro_invocation] = STATE(1745), - [sym_scoped_identifier] = STATE(3433), - [sym_scoped_type_identifier] = STATE(1614), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_type_parameters] = STATE(1000), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2547), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2548), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2301), [sym_line_comment] = STATE(915), [sym_block_comment] = STATE(915), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_STAR] = ACTIONS(3222), - [anon_sym_QMARK] = ACTIONS(3224), - [anon_sym_u8] = ACTIONS(3226), - [anon_sym_i8] = ACTIONS(3226), - [anon_sym_u16] = ACTIONS(3226), - [anon_sym_i16] = ACTIONS(3226), - [anon_sym_u32] = ACTIONS(3226), - [anon_sym_i32] = ACTIONS(3226), - [anon_sym_u64] = ACTIONS(3226), - [anon_sym_i64] = ACTIONS(3226), - [anon_sym_u128] = ACTIONS(3226), - [anon_sym_i128] = ACTIONS(3226), - [anon_sym_isize] = ACTIONS(3226), - [anon_sym_usize] = ACTIONS(3226), - [anon_sym_f32] = ACTIONS(3226), - [anon_sym_f64] = ACTIONS(3226), - [anon_sym_bool] = ACTIONS(3226), - [anon_sym_str] = ACTIONS(3226), - [anon_sym_char] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3230), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3234), - [anon_sym_fn] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3238), - [anon_sym_impl] = ACTIONS(3240), - [anon_sym_union] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3242), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_crate] = ACTIONS(3246), - [sym_metavariable] = ACTIONS(3248), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3229), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(3231), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(3187), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(916)] = { - [sym_function_modifiers] = STATE(3641), - [sym_removed_trait_bound] = STATE(1745), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1796), - [sym_bracketed_type] = STATE(3701), - [sym_lifetime] = STATE(3813), - [sym_array_type] = STATE(1745), - [sym_for_lifetimes] = STATE(1625), - [sym_function_type] = STATE(1745), - [sym_tuple_type] = STATE(1745), - [sym_unit_type] = STATE(1745), - [sym_generic_type] = STATE(1692), - [sym_generic_type_with_turbofish] = STATE(3692), - [sym_bounded_type] = STATE(1745), - [sym_use_bounds] = STATE(3813), - [sym_reference_type] = STATE(1745), - [sym_pointer_type] = STATE(1745), - [sym_never_type] = STATE(1745), - [sym_abstract_type] = STATE(1745), - [sym_dynamic_type] = STATE(1745), - [sym_macro_invocation] = STATE(1745), - [sym_scoped_identifier] = STATE(3433), - [sym_scoped_type_identifier] = STATE(1614), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(3142), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(916), [sym_block_comment] = STATE(916), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_STAR] = ACTIONS(3222), - [anon_sym_QMARK] = ACTIONS(3224), - [anon_sym_u8] = ACTIONS(3226), - [anon_sym_i8] = ACTIONS(3226), - [anon_sym_u16] = ACTIONS(3226), - [anon_sym_i16] = ACTIONS(3226), - [anon_sym_u32] = ACTIONS(3226), - [anon_sym_i32] = ACTIONS(3226), - [anon_sym_u64] = ACTIONS(3226), - [anon_sym_i64] = ACTIONS(3226), - [anon_sym_u128] = ACTIONS(3226), - [anon_sym_i128] = ACTIONS(3226), - [anon_sym_isize] = ACTIONS(3226), - [anon_sym_usize] = ACTIONS(3226), - [anon_sym_f32] = ACTIONS(3226), - [anon_sym_f64] = ACTIONS(3226), - [anon_sym_bool] = ACTIONS(3226), - [anon_sym_str] = ACTIONS(3226), - [anon_sym_char] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3230), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3234), - [anon_sym_fn] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3238), - [anon_sym_impl] = ACTIONS(3240), - [anon_sym_union] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3242), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_crate] = ACTIONS(3246), - [sym_metavariable] = ACTIONS(3248), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_RPAREN] = ACTIONS(3233), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(917)] = { - [sym_function_modifiers] = STATE(3641), - [sym_removed_trait_bound] = STATE(1745), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1797), - [sym_bracketed_type] = STATE(3701), - [sym_lifetime] = STATE(3813), - [sym_array_type] = STATE(1745), - [sym_for_lifetimes] = STATE(1625), - [sym_function_type] = STATE(1745), - [sym_tuple_type] = STATE(1745), - [sym_unit_type] = STATE(1745), - [sym_generic_type] = STATE(1692), - [sym_generic_type_with_turbofish] = STATE(3692), - [sym_bounded_type] = STATE(1745), - [sym_use_bounds] = STATE(3813), - [sym_reference_type] = STATE(1745), - [sym_pointer_type] = STATE(1745), - [sym_never_type] = STATE(1745), - [sym_abstract_type] = STATE(1745), - [sym_dynamic_type] = STATE(1745), - [sym_macro_invocation] = STATE(1745), - [sym_scoped_identifier] = STATE(3433), - [sym_scoped_type_identifier] = STATE(1614), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2906), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(917), [sym_block_comment] = STATE(917), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_STAR] = ACTIONS(3222), - [anon_sym_QMARK] = ACTIONS(3224), - [anon_sym_u8] = ACTIONS(3226), - [anon_sym_i8] = ACTIONS(3226), - [anon_sym_u16] = ACTIONS(3226), - [anon_sym_i16] = ACTIONS(3226), - [anon_sym_u32] = ACTIONS(3226), - [anon_sym_i32] = ACTIONS(3226), - [anon_sym_u64] = ACTIONS(3226), - [anon_sym_i64] = ACTIONS(3226), - [anon_sym_u128] = ACTIONS(3226), - [anon_sym_i128] = ACTIONS(3226), - [anon_sym_isize] = ACTIONS(3226), - [anon_sym_usize] = ACTIONS(3226), - [anon_sym_f32] = ACTIONS(3226), - [anon_sym_f64] = ACTIONS(3226), - [anon_sym_bool] = ACTIONS(3226), - [anon_sym_str] = ACTIONS(3226), - [anon_sym_char] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3230), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3234), - [anon_sym_fn] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3238), - [anon_sym_impl] = ACTIONS(3240), - [anon_sym_union] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3242), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_crate] = ACTIONS(3246), - [sym_metavariable] = ACTIONS(3248), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(918)] = { - [sym_function_modifiers] = STATE(3641), - [sym_removed_trait_bound] = STATE(1745), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1804), - [sym_bracketed_type] = STATE(3701), - [sym_lifetime] = STATE(3813), - [sym_array_type] = STATE(1745), - [sym_for_lifetimes] = STATE(1625), - [sym_function_type] = STATE(1745), - [sym_tuple_type] = STATE(1745), - [sym_unit_type] = STATE(1745), - [sym_generic_type] = STATE(1692), - [sym_generic_type_with_turbofish] = STATE(3692), - [sym_bounded_type] = STATE(1745), - [sym_use_bounds] = STATE(3813), - [sym_reference_type] = STATE(1745), - [sym_pointer_type] = STATE(1745), - [sym_never_type] = STATE(1745), - [sym_abstract_type] = STATE(1745), - [sym_dynamic_type] = STATE(1745), - [sym_macro_invocation] = STATE(1745), - [sym_scoped_identifier] = STATE(3433), - [sym_scoped_type_identifier] = STATE(1614), + [sym_function_modifiers] = STATE(3835), + [sym_removed_trait_bound] = STATE(1488), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(1537), + [sym_bracketed_type] = STATE(3745), + [sym_lifetime] = STATE(3601), + [sym_array_type] = STATE(1488), + [sym_for_lifetimes] = STATE(1690), + [sym_function_type] = STATE(1488), + [sym_tuple_type] = STATE(1488), + [sym_unit_type] = STATE(1488), + [sym_generic_type] = STATE(1399), + [sym_generic_type_with_turbofish] = STATE(3732), + [sym_bounded_type] = STATE(1488), + [sym_use_bounds] = STATE(3601), + [sym_reference_type] = STATE(1488), + [sym_pointer_type] = STATE(1488), + [sym_never_type] = STATE(1488), + [sym_abstract_type] = STATE(1488), + [sym_dynamic_type] = STATE(1488), + [sym_macro_invocation] = STATE(1488), + [sym_scoped_identifier] = STATE(3405), + [sym_scoped_type_identifier] = STATE(1121), [sym_line_comment] = STATE(918), [sym_block_comment] = STATE(918), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_STAR] = ACTIONS(3222), - [anon_sym_QMARK] = ACTIONS(3224), - [anon_sym_u8] = ACTIONS(3226), - [anon_sym_i8] = ACTIONS(3226), - [anon_sym_u16] = ACTIONS(3226), - [anon_sym_i16] = ACTIONS(3226), - [anon_sym_u32] = ACTIONS(3226), - [anon_sym_i32] = ACTIONS(3226), - [anon_sym_u64] = ACTIONS(3226), - [anon_sym_i64] = ACTIONS(3226), - [anon_sym_u128] = ACTIONS(3226), - [anon_sym_i128] = ACTIONS(3226), - [anon_sym_isize] = ACTIONS(3226), - [anon_sym_usize] = ACTIONS(3226), - [anon_sym_f32] = ACTIONS(3226), - [anon_sym_f64] = ACTIONS(3226), - [anon_sym_bool] = ACTIONS(3226), - [anon_sym_str] = ACTIONS(3226), - [anon_sym_char] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3230), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3234), - [anon_sym_fn] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3238), - [anon_sym_impl] = ACTIONS(3240), - [anon_sym_union] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3242), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_crate] = ACTIONS(3246), - [sym_metavariable] = ACTIONS(3248), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3147), + [anon_sym_LPAREN] = ACTIONS(3149), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_STAR] = ACTIONS(3155), + [anon_sym_QMARK] = ACTIONS(3157), + [anon_sym_u8] = ACTIONS(3159), + [anon_sym_i8] = ACTIONS(3159), + [anon_sym_u16] = ACTIONS(3159), + [anon_sym_i16] = ACTIONS(3159), + [anon_sym_u32] = ACTIONS(3159), + [anon_sym_i32] = ACTIONS(3159), + [anon_sym_u64] = ACTIONS(3159), + [anon_sym_i64] = ACTIONS(3159), + [anon_sym_u128] = ACTIONS(3159), + [anon_sym_i128] = ACTIONS(3159), + [anon_sym_isize] = ACTIONS(3159), + [anon_sym_usize] = ACTIONS(3159), + [anon_sym_f32] = ACTIONS(3159), + [anon_sym_f64] = ACTIONS(3159), + [anon_sym_bool] = ACTIONS(3159), + [anon_sym_str] = ACTIONS(3159), + [anon_sym_char] = ACTIONS(3159), + [anon_sym_BANG] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3165), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(3167), + [anon_sym_fn] = ACTIONS(3169), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(3171), + [anon_sym_impl] = ACTIONS(3173), + [anon_sym_union] = ACTIONS(3171), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(3175), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3179), + [sym_super] = ACTIONS(3179), + [sym_crate] = ACTIONS(3179), + [sym_metavariable] = ACTIONS(3181), }, [STATE(919)] = { - [sym_function_modifiers] = STATE(3641), - [sym_removed_trait_bound] = STATE(1745), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1805), - [sym_bracketed_type] = STATE(3701), - [sym_lifetime] = STATE(3813), - [sym_array_type] = STATE(1745), - [sym_for_lifetimes] = STATE(1625), - [sym_function_type] = STATE(1745), - [sym_tuple_type] = STATE(1745), - [sym_unit_type] = STATE(1745), - [sym_generic_type] = STATE(1692), - [sym_generic_type_with_turbofish] = STATE(3692), - [sym_bounded_type] = STATE(1745), - [sym_use_bounds] = STATE(3813), - [sym_reference_type] = STATE(1745), - [sym_pointer_type] = STATE(1745), - [sym_never_type] = STATE(1745), - [sym_abstract_type] = STATE(1745), - [sym_dynamic_type] = STATE(1745), - [sym_macro_invocation] = STATE(1745), - [sym_scoped_identifier] = STATE(3433), - [sym_scoped_type_identifier] = STATE(1614), + [sym_function_modifiers] = STATE(3835), + [sym_removed_trait_bound] = STATE(1488), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(1503), + [sym_bracketed_type] = STATE(3745), + [sym_lifetime] = STATE(3601), + [sym_array_type] = STATE(1488), + [sym_for_lifetimes] = STATE(1690), + [sym_function_type] = STATE(1488), + [sym_tuple_type] = STATE(1488), + [sym_unit_type] = STATE(1488), + [sym_generic_type] = STATE(1399), + [sym_generic_type_with_turbofish] = STATE(3732), + [sym_bounded_type] = STATE(1488), + [sym_use_bounds] = STATE(3601), + [sym_reference_type] = STATE(1488), + [sym_pointer_type] = STATE(1488), + [sym_never_type] = STATE(1488), + [sym_abstract_type] = STATE(1488), + [sym_dynamic_type] = STATE(1488), + [sym_macro_invocation] = STATE(1488), + [sym_scoped_identifier] = STATE(3405), + [sym_scoped_type_identifier] = STATE(1121), [sym_line_comment] = STATE(919), [sym_block_comment] = STATE(919), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_STAR] = ACTIONS(3222), - [anon_sym_QMARK] = ACTIONS(3224), - [anon_sym_u8] = ACTIONS(3226), - [anon_sym_i8] = ACTIONS(3226), - [anon_sym_u16] = ACTIONS(3226), - [anon_sym_i16] = ACTIONS(3226), - [anon_sym_u32] = ACTIONS(3226), - [anon_sym_i32] = ACTIONS(3226), - [anon_sym_u64] = ACTIONS(3226), - [anon_sym_i64] = ACTIONS(3226), - [anon_sym_u128] = ACTIONS(3226), - [anon_sym_i128] = ACTIONS(3226), - [anon_sym_isize] = ACTIONS(3226), - [anon_sym_usize] = ACTIONS(3226), - [anon_sym_f32] = ACTIONS(3226), - [anon_sym_f64] = ACTIONS(3226), - [anon_sym_bool] = ACTIONS(3226), - [anon_sym_str] = ACTIONS(3226), - [anon_sym_char] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3230), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3234), - [anon_sym_fn] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3238), - [anon_sym_impl] = ACTIONS(3240), - [anon_sym_union] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3242), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_crate] = ACTIONS(3246), - [sym_metavariable] = ACTIONS(3248), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3147), + [anon_sym_LPAREN] = ACTIONS(3149), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_STAR] = ACTIONS(3155), + [anon_sym_QMARK] = ACTIONS(3157), + [anon_sym_u8] = ACTIONS(3159), + [anon_sym_i8] = ACTIONS(3159), + [anon_sym_u16] = ACTIONS(3159), + [anon_sym_i16] = ACTIONS(3159), + [anon_sym_u32] = ACTIONS(3159), + [anon_sym_i32] = ACTIONS(3159), + [anon_sym_u64] = ACTIONS(3159), + [anon_sym_i64] = ACTIONS(3159), + [anon_sym_u128] = ACTIONS(3159), + [anon_sym_i128] = ACTIONS(3159), + [anon_sym_isize] = ACTIONS(3159), + [anon_sym_usize] = ACTIONS(3159), + [anon_sym_f32] = ACTIONS(3159), + [anon_sym_f64] = ACTIONS(3159), + [anon_sym_bool] = ACTIONS(3159), + [anon_sym_str] = ACTIONS(3159), + [anon_sym_char] = ACTIONS(3159), + [anon_sym_BANG] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3165), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(3167), + [anon_sym_fn] = ACTIONS(3169), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(3171), + [anon_sym_impl] = ACTIONS(3173), + [anon_sym_union] = ACTIONS(3171), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(3175), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3179), + [sym_super] = ACTIONS(3179), + [sym_crate] = ACTIONS(3179), + [sym_metavariable] = ACTIONS(3181), }, [STATE(920)] = { - [sym_function_modifiers] = STATE(3641), - [sym_removed_trait_bound] = STATE(1745), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1806), - [sym_bracketed_type] = STATE(3701), - [sym_lifetime] = STATE(3813), - [sym_array_type] = STATE(1745), - [sym_for_lifetimes] = STATE(1625), - [sym_function_type] = STATE(1745), - [sym_tuple_type] = STATE(1745), - [sym_unit_type] = STATE(1745), - [sym_generic_type] = STATE(1692), - [sym_generic_type_with_turbofish] = STATE(3692), - [sym_bounded_type] = STATE(1745), - [sym_use_bounds] = STATE(3813), - [sym_reference_type] = STATE(1745), - [sym_pointer_type] = STATE(1745), - [sym_never_type] = STATE(1745), - [sym_abstract_type] = STATE(1745), - [sym_dynamic_type] = STATE(1745), - [sym_macro_invocation] = STATE(1745), - [sym_scoped_identifier] = STATE(3433), - [sym_scoped_type_identifier] = STATE(1614), + [sym_function_modifiers] = STATE(3835), + [sym_removed_trait_bound] = STATE(1488), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(1539), + [sym_bracketed_type] = STATE(3745), + [sym_lifetime] = STATE(3601), + [sym_array_type] = STATE(1488), + [sym_for_lifetimes] = STATE(1690), + [sym_function_type] = STATE(1488), + [sym_tuple_type] = STATE(1488), + [sym_unit_type] = STATE(1488), + [sym_generic_type] = STATE(1399), + [sym_generic_type_with_turbofish] = STATE(3732), + [sym_bounded_type] = STATE(1488), + [sym_use_bounds] = STATE(3601), + [sym_reference_type] = STATE(1488), + [sym_pointer_type] = STATE(1488), + [sym_never_type] = STATE(1488), + [sym_abstract_type] = STATE(1488), + [sym_dynamic_type] = STATE(1488), + [sym_macro_invocation] = STATE(1488), + [sym_scoped_identifier] = STATE(3405), + [sym_scoped_type_identifier] = STATE(1121), [sym_line_comment] = STATE(920), [sym_block_comment] = STATE(920), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_STAR] = ACTIONS(3222), - [anon_sym_QMARK] = ACTIONS(3224), - [anon_sym_u8] = ACTIONS(3226), - [anon_sym_i8] = ACTIONS(3226), - [anon_sym_u16] = ACTIONS(3226), - [anon_sym_i16] = ACTIONS(3226), - [anon_sym_u32] = ACTIONS(3226), - [anon_sym_i32] = ACTIONS(3226), - [anon_sym_u64] = ACTIONS(3226), - [anon_sym_i64] = ACTIONS(3226), - [anon_sym_u128] = ACTIONS(3226), - [anon_sym_i128] = ACTIONS(3226), - [anon_sym_isize] = ACTIONS(3226), - [anon_sym_usize] = ACTIONS(3226), - [anon_sym_f32] = ACTIONS(3226), - [anon_sym_f64] = ACTIONS(3226), - [anon_sym_bool] = ACTIONS(3226), - [anon_sym_str] = ACTIONS(3226), - [anon_sym_char] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3230), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3234), - [anon_sym_fn] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3238), - [anon_sym_impl] = ACTIONS(3240), - [anon_sym_union] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3242), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_crate] = ACTIONS(3246), - [sym_metavariable] = ACTIONS(3248), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3147), + [anon_sym_LPAREN] = ACTIONS(3149), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_STAR] = ACTIONS(3155), + [anon_sym_QMARK] = ACTIONS(3157), + [anon_sym_u8] = ACTIONS(3159), + [anon_sym_i8] = ACTIONS(3159), + [anon_sym_u16] = ACTIONS(3159), + [anon_sym_i16] = ACTIONS(3159), + [anon_sym_u32] = ACTIONS(3159), + [anon_sym_i32] = ACTIONS(3159), + [anon_sym_u64] = ACTIONS(3159), + [anon_sym_i64] = ACTIONS(3159), + [anon_sym_u128] = ACTIONS(3159), + [anon_sym_i128] = ACTIONS(3159), + [anon_sym_isize] = ACTIONS(3159), + [anon_sym_usize] = ACTIONS(3159), + [anon_sym_f32] = ACTIONS(3159), + [anon_sym_f64] = ACTIONS(3159), + [anon_sym_bool] = ACTIONS(3159), + [anon_sym_str] = ACTIONS(3159), + [anon_sym_char] = ACTIONS(3159), + [anon_sym_BANG] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3165), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(3167), + [anon_sym_fn] = ACTIONS(3169), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(3171), + [anon_sym_impl] = ACTIONS(3173), + [anon_sym_union] = ACTIONS(3171), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(3175), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3179), + [sym_super] = ACTIONS(3179), + [sym_crate] = ACTIONS(3179), + [sym_metavariable] = ACTIONS(3181), }, [STATE(921)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2921), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3835), + [sym_removed_trait_bound] = STATE(1488), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(1519), + [sym_bracketed_type] = STATE(3745), + [sym_lifetime] = STATE(3601), + [sym_array_type] = STATE(1488), + [sym_for_lifetimes] = STATE(1690), + [sym_function_type] = STATE(1488), + [sym_tuple_type] = STATE(1488), + [sym_unit_type] = STATE(1488), + [sym_generic_type] = STATE(1399), + [sym_generic_type_with_turbofish] = STATE(3732), + [sym_bounded_type] = STATE(1488), + [sym_use_bounds] = STATE(3601), + [sym_reference_type] = STATE(1488), + [sym_pointer_type] = STATE(1488), + [sym_never_type] = STATE(1488), + [sym_abstract_type] = STATE(1488), + [sym_dynamic_type] = STATE(1488), + [sym_macro_invocation] = STATE(1488), + [sym_scoped_identifier] = STATE(3405), + [sym_scoped_type_identifier] = STATE(1121), [sym_line_comment] = STATE(921), [sym_block_comment] = STATE(921), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3147), + [anon_sym_LPAREN] = ACTIONS(3149), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_STAR] = ACTIONS(3155), + [anon_sym_QMARK] = ACTIONS(3157), + [anon_sym_u8] = ACTIONS(3159), + [anon_sym_i8] = ACTIONS(3159), + [anon_sym_u16] = ACTIONS(3159), + [anon_sym_i16] = ACTIONS(3159), + [anon_sym_u32] = ACTIONS(3159), + [anon_sym_i32] = ACTIONS(3159), + [anon_sym_u64] = ACTIONS(3159), + [anon_sym_i64] = ACTIONS(3159), + [anon_sym_u128] = ACTIONS(3159), + [anon_sym_i128] = ACTIONS(3159), + [anon_sym_isize] = ACTIONS(3159), + [anon_sym_usize] = ACTIONS(3159), + [anon_sym_f32] = ACTIONS(3159), + [anon_sym_f64] = ACTIONS(3159), + [anon_sym_bool] = ACTIONS(3159), + [anon_sym_str] = ACTIONS(3159), + [anon_sym_char] = ACTIONS(3159), + [anon_sym_BANG] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3165), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(3167), + [anon_sym_fn] = ACTIONS(3169), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(3171), + [anon_sym_impl] = ACTIONS(3173), + [anon_sym_union] = ACTIONS(3171), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(3175), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3179), + [sym_super] = ACTIONS(3179), + [sym_crate] = ACTIONS(3179), + [sym_metavariable] = ACTIONS(3181), }, [STATE(922)] = { - [sym_function_modifiers] = STATE(3641), - [sym_removed_trait_bound] = STATE(1745), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1809), - [sym_bracketed_type] = STATE(3701), - [sym_lifetime] = STATE(3813), - [sym_array_type] = STATE(1745), - [sym_for_lifetimes] = STATE(1625), - [sym_function_type] = STATE(1745), - [sym_tuple_type] = STATE(1745), - [sym_unit_type] = STATE(1745), - [sym_generic_type] = STATE(1692), - [sym_generic_type_with_turbofish] = STATE(3692), - [sym_bounded_type] = STATE(1745), - [sym_use_bounds] = STATE(3813), - [sym_reference_type] = STATE(1745), - [sym_pointer_type] = STATE(1745), - [sym_never_type] = STATE(1745), - [sym_abstract_type] = STATE(1745), - [sym_dynamic_type] = STATE(1745), - [sym_macro_invocation] = STATE(1745), - [sym_scoped_identifier] = STATE(3433), - [sym_scoped_type_identifier] = STATE(1614), + [sym_function_modifiers] = STATE(3835), + [sym_removed_trait_bound] = STATE(1488), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(1547), + [sym_bracketed_type] = STATE(3745), + [sym_lifetime] = STATE(3601), + [sym_array_type] = STATE(1488), + [sym_for_lifetimes] = STATE(1690), + [sym_function_type] = STATE(1488), + [sym_tuple_type] = STATE(1488), + [sym_unit_type] = STATE(1488), + [sym_generic_type] = STATE(1399), + [sym_generic_type_with_turbofish] = STATE(3732), + [sym_bounded_type] = STATE(1488), + [sym_use_bounds] = STATE(3601), + [sym_reference_type] = STATE(1488), + [sym_pointer_type] = STATE(1488), + [sym_never_type] = STATE(1488), + [sym_abstract_type] = STATE(1488), + [sym_dynamic_type] = STATE(1488), + [sym_macro_invocation] = STATE(1488), + [sym_scoped_identifier] = STATE(3405), + [sym_scoped_type_identifier] = STATE(1121), [sym_line_comment] = STATE(922), [sym_block_comment] = STATE(922), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_STAR] = ACTIONS(3222), - [anon_sym_QMARK] = ACTIONS(3224), - [anon_sym_u8] = ACTIONS(3226), - [anon_sym_i8] = ACTIONS(3226), - [anon_sym_u16] = ACTIONS(3226), - [anon_sym_i16] = ACTIONS(3226), - [anon_sym_u32] = ACTIONS(3226), - [anon_sym_i32] = ACTIONS(3226), - [anon_sym_u64] = ACTIONS(3226), - [anon_sym_i64] = ACTIONS(3226), - [anon_sym_u128] = ACTIONS(3226), - [anon_sym_i128] = ACTIONS(3226), - [anon_sym_isize] = ACTIONS(3226), - [anon_sym_usize] = ACTIONS(3226), - [anon_sym_f32] = ACTIONS(3226), - [anon_sym_f64] = ACTIONS(3226), - [anon_sym_bool] = ACTIONS(3226), - [anon_sym_str] = ACTIONS(3226), - [anon_sym_char] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3230), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3234), - [anon_sym_fn] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3238), - [anon_sym_impl] = ACTIONS(3240), - [anon_sym_union] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3242), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_crate] = ACTIONS(3246), - [sym_metavariable] = ACTIONS(3248), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3147), + [anon_sym_LPAREN] = ACTIONS(3149), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_STAR] = ACTIONS(3155), + [anon_sym_QMARK] = ACTIONS(3157), + [anon_sym_u8] = ACTIONS(3159), + [anon_sym_i8] = ACTIONS(3159), + [anon_sym_u16] = ACTIONS(3159), + [anon_sym_i16] = ACTIONS(3159), + [anon_sym_u32] = ACTIONS(3159), + [anon_sym_i32] = ACTIONS(3159), + [anon_sym_u64] = ACTIONS(3159), + [anon_sym_i64] = ACTIONS(3159), + [anon_sym_u128] = ACTIONS(3159), + [anon_sym_i128] = ACTIONS(3159), + [anon_sym_isize] = ACTIONS(3159), + [anon_sym_usize] = ACTIONS(3159), + [anon_sym_f32] = ACTIONS(3159), + [anon_sym_f64] = ACTIONS(3159), + [anon_sym_bool] = ACTIONS(3159), + [anon_sym_str] = ACTIONS(3159), + [anon_sym_char] = ACTIONS(3159), + [anon_sym_BANG] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3165), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(3167), + [anon_sym_fn] = ACTIONS(3169), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(3171), + [anon_sym_impl] = ACTIONS(3173), + [anon_sym_union] = ACTIONS(3171), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(3175), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3179), + [sym_super] = ACTIONS(3179), + [sym_crate] = ACTIONS(3179), + [sym_metavariable] = ACTIONS(3181), }, [STATE(923)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2312), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3689), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2122), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3674), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1685), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3674), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2330), [sym_line_comment] = STATE(923), [sym_block_comment] = STATE(923), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1547), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(924)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2825), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3835), + [sym_removed_trait_bound] = STATE(1488), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(1551), + [sym_bracketed_type] = STATE(3745), + [sym_lifetime] = STATE(3601), + [sym_array_type] = STATE(1488), + [sym_for_lifetimes] = STATE(1690), + [sym_function_type] = STATE(1488), + [sym_tuple_type] = STATE(1488), + [sym_unit_type] = STATE(1488), + [sym_generic_type] = STATE(1399), + [sym_generic_type_with_turbofish] = STATE(3732), + [sym_bounded_type] = STATE(1488), + [sym_use_bounds] = STATE(3601), + [sym_reference_type] = STATE(1488), + [sym_pointer_type] = STATE(1488), + [sym_never_type] = STATE(1488), + [sym_abstract_type] = STATE(1488), + [sym_dynamic_type] = STATE(1488), + [sym_macro_invocation] = STATE(1488), + [sym_scoped_identifier] = STATE(3405), + [sym_scoped_type_identifier] = STATE(1121), [sym_line_comment] = STATE(924), [sym_block_comment] = STATE(924), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3147), + [anon_sym_LPAREN] = ACTIONS(3149), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_STAR] = ACTIONS(3155), + [anon_sym_QMARK] = ACTIONS(3157), + [anon_sym_u8] = ACTIONS(3159), + [anon_sym_i8] = ACTIONS(3159), + [anon_sym_u16] = ACTIONS(3159), + [anon_sym_i16] = ACTIONS(3159), + [anon_sym_u32] = ACTIONS(3159), + [anon_sym_i32] = ACTIONS(3159), + [anon_sym_u64] = ACTIONS(3159), + [anon_sym_i64] = ACTIONS(3159), + [anon_sym_u128] = ACTIONS(3159), + [anon_sym_i128] = ACTIONS(3159), + [anon_sym_isize] = ACTIONS(3159), + [anon_sym_usize] = ACTIONS(3159), + [anon_sym_f32] = ACTIONS(3159), + [anon_sym_f64] = ACTIONS(3159), + [anon_sym_bool] = ACTIONS(3159), + [anon_sym_str] = ACTIONS(3159), + [anon_sym_char] = ACTIONS(3159), + [anon_sym_BANG] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3165), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(3167), + [anon_sym_fn] = ACTIONS(3169), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(3171), + [anon_sym_impl] = ACTIONS(3173), + [anon_sym_union] = ACTIONS(3171), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(3175), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3179), + [sym_super] = ACTIONS(3179), + [sym_crate] = ACTIONS(3179), + [sym_metavariable] = ACTIONS(3181), }, [STATE(925)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2755), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_function_modifiers] = STATE(3835), + [sym_removed_trait_bound] = STATE(1488), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(1479), + [sym_bracketed_type] = STATE(3745), + [sym_lifetime] = STATE(3601), + [sym_array_type] = STATE(1488), + [sym_for_lifetimes] = STATE(1690), + [sym_function_type] = STATE(1488), + [sym_tuple_type] = STATE(1488), + [sym_unit_type] = STATE(1488), + [sym_generic_type] = STATE(1399), + [sym_generic_type_with_turbofish] = STATE(3732), + [sym_bounded_type] = STATE(1488), + [sym_use_bounds] = STATE(3601), + [sym_reference_type] = STATE(1488), + [sym_pointer_type] = STATE(1488), + [sym_never_type] = STATE(1488), + [sym_abstract_type] = STATE(1488), + [sym_dynamic_type] = STATE(1488), + [sym_macro_invocation] = STATE(1488), + [sym_scoped_identifier] = STATE(3405), + [sym_scoped_type_identifier] = STATE(1121), [sym_line_comment] = STATE(925), [sym_block_comment] = STATE(925), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3147), + [anon_sym_LPAREN] = ACTIONS(3149), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_STAR] = ACTIONS(3155), + [anon_sym_QMARK] = ACTIONS(3157), + [anon_sym_u8] = ACTIONS(3159), + [anon_sym_i8] = ACTIONS(3159), + [anon_sym_u16] = ACTIONS(3159), + [anon_sym_i16] = ACTIONS(3159), + [anon_sym_u32] = ACTIONS(3159), + [anon_sym_i32] = ACTIONS(3159), + [anon_sym_u64] = ACTIONS(3159), + [anon_sym_i64] = ACTIONS(3159), + [anon_sym_u128] = ACTIONS(3159), + [anon_sym_i128] = ACTIONS(3159), + [anon_sym_isize] = ACTIONS(3159), + [anon_sym_usize] = ACTIONS(3159), + [anon_sym_f32] = ACTIONS(3159), + [anon_sym_f64] = ACTIONS(3159), + [anon_sym_bool] = ACTIONS(3159), + [anon_sym_str] = ACTIONS(3159), + [anon_sym_char] = ACTIONS(3159), + [anon_sym_BANG] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3165), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(3167), + [anon_sym_fn] = ACTIONS(3169), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(3171), + [anon_sym_impl] = ACTIONS(3173), + [anon_sym_union] = ACTIONS(3171), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(3175), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3179), + [sym_super] = ACTIONS(3179), + [sym_crate] = ACTIONS(3179), + [sym_metavariable] = ACTIONS(3181), }, [STATE(926)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3066), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3835), + [sym_removed_trait_bound] = STATE(1488), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(1481), + [sym_bracketed_type] = STATE(3745), + [sym_lifetime] = STATE(3601), + [sym_array_type] = STATE(1488), + [sym_for_lifetimes] = STATE(1690), + [sym_function_type] = STATE(1488), + [sym_tuple_type] = STATE(1488), + [sym_unit_type] = STATE(1488), + [sym_generic_type] = STATE(1399), + [sym_generic_type_with_turbofish] = STATE(3732), + [sym_bounded_type] = STATE(1488), + [sym_use_bounds] = STATE(3601), + [sym_reference_type] = STATE(1488), + [sym_pointer_type] = STATE(1488), + [sym_never_type] = STATE(1488), + [sym_abstract_type] = STATE(1488), + [sym_dynamic_type] = STATE(1488), + [sym_macro_invocation] = STATE(1488), + [sym_scoped_identifier] = STATE(3405), + [sym_scoped_type_identifier] = STATE(1121), [sym_line_comment] = STATE(926), [sym_block_comment] = STATE(926), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3147), + [anon_sym_LPAREN] = ACTIONS(3149), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_STAR] = ACTIONS(3155), + [anon_sym_QMARK] = ACTIONS(3157), + [anon_sym_u8] = ACTIONS(3159), + [anon_sym_i8] = ACTIONS(3159), + [anon_sym_u16] = ACTIONS(3159), + [anon_sym_i16] = ACTIONS(3159), + [anon_sym_u32] = ACTIONS(3159), + [anon_sym_i32] = ACTIONS(3159), + [anon_sym_u64] = ACTIONS(3159), + [anon_sym_i64] = ACTIONS(3159), + [anon_sym_u128] = ACTIONS(3159), + [anon_sym_i128] = ACTIONS(3159), + [anon_sym_isize] = ACTIONS(3159), + [anon_sym_usize] = ACTIONS(3159), + [anon_sym_f32] = ACTIONS(3159), + [anon_sym_f64] = ACTIONS(3159), + [anon_sym_bool] = ACTIONS(3159), + [anon_sym_str] = ACTIONS(3159), + [anon_sym_char] = ACTIONS(3159), + [anon_sym_BANG] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3165), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(3167), + [anon_sym_fn] = ACTIONS(3169), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(3171), + [anon_sym_impl] = ACTIONS(3173), + [anon_sym_union] = ACTIONS(3171), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(3175), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3179), + [sym_super] = ACTIONS(3179), + [sym_crate] = ACTIONS(3179), + [sym_metavariable] = ACTIONS(3181), }, [STATE(927)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2989), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3835), + [sym_removed_trait_bound] = STATE(1488), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(1489), + [sym_bracketed_type] = STATE(3745), + [sym_lifetime] = STATE(3601), + [sym_array_type] = STATE(1488), + [sym_for_lifetimes] = STATE(1690), + [sym_function_type] = STATE(1488), + [sym_tuple_type] = STATE(1488), + [sym_unit_type] = STATE(1488), + [sym_generic_type] = STATE(1399), + [sym_generic_type_with_turbofish] = STATE(3732), + [sym_bounded_type] = STATE(1488), + [sym_use_bounds] = STATE(3601), + [sym_reference_type] = STATE(1488), + [sym_pointer_type] = STATE(1488), + [sym_never_type] = STATE(1488), + [sym_abstract_type] = STATE(1488), + [sym_dynamic_type] = STATE(1488), + [sym_macro_invocation] = STATE(1488), + [sym_scoped_identifier] = STATE(3405), + [sym_scoped_type_identifier] = STATE(1121), [sym_line_comment] = STATE(927), [sym_block_comment] = STATE(927), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3147), + [anon_sym_LPAREN] = ACTIONS(3149), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_STAR] = ACTIONS(3155), + [anon_sym_QMARK] = ACTIONS(3157), + [anon_sym_u8] = ACTIONS(3159), + [anon_sym_i8] = ACTIONS(3159), + [anon_sym_u16] = ACTIONS(3159), + [anon_sym_i16] = ACTIONS(3159), + [anon_sym_u32] = ACTIONS(3159), + [anon_sym_i32] = ACTIONS(3159), + [anon_sym_u64] = ACTIONS(3159), + [anon_sym_i64] = ACTIONS(3159), + [anon_sym_u128] = ACTIONS(3159), + [anon_sym_i128] = ACTIONS(3159), + [anon_sym_isize] = ACTIONS(3159), + [anon_sym_usize] = ACTIONS(3159), + [anon_sym_f32] = ACTIONS(3159), + [anon_sym_f64] = ACTIONS(3159), + [anon_sym_bool] = ACTIONS(3159), + [anon_sym_str] = ACTIONS(3159), + [anon_sym_char] = ACTIONS(3159), + [anon_sym_BANG] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3165), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(3167), + [anon_sym_fn] = ACTIONS(3169), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(3171), + [anon_sym_impl] = ACTIONS(3173), + [anon_sym_union] = ACTIONS(3171), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(3175), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3179), + [sym_super] = ACTIONS(3179), + [sym_crate] = ACTIONS(3179), + [sym_metavariable] = ACTIONS(3181), }, [STATE(928)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2088), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2601), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(928), [sym_block_comment] = STATE(928), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3314), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(929)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2660), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3835), + [sym_removed_trait_bound] = STATE(1488), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(1572), + [sym_bracketed_type] = STATE(3745), + [sym_lifetime] = STATE(3601), + [sym_array_type] = STATE(1488), + [sym_for_lifetimes] = STATE(1690), + [sym_function_type] = STATE(1488), + [sym_tuple_type] = STATE(1488), + [sym_unit_type] = STATE(1488), + [sym_generic_type] = STATE(1399), + [sym_generic_type_with_turbofish] = STATE(3732), + [sym_bounded_type] = STATE(1488), + [sym_use_bounds] = STATE(3601), + [sym_reference_type] = STATE(1488), + [sym_pointer_type] = STATE(1488), + [sym_never_type] = STATE(1488), + [sym_abstract_type] = STATE(1488), + [sym_dynamic_type] = STATE(1488), + [sym_macro_invocation] = STATE(1488), + [sym_scoped_identifier] = STATE(3405), + [sym_scoped_type_identifier] = STATE(1121), [sym_line_comment] = STATE(929), [sym_block_comment] = STATE(929), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3147), + [anon_sym_LPAREN] = ACTIONS(3149), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_STAR] = ACTIONS(3155), + [anon_sym_QMARK] = ACTIONS(3157), + [anon_sym_u8] = ACTIONS(3159), + [anon_sym_i8] = ACTIONS(3159), + [anon_sym_u16] = ACTIONS(3159), + [anon_sym_i16] = ACTIONS(3159), + [anon_sym_u32] = ACTIONS(3159), + [anon_sym_i32] = ACTIONS(3159), + [anon_sym_u64] = ACTIONS(3159), + [anon_sym_i64] = ACTIONS(3159), + [anon_sym_u128] = ACTIONS(3159), + [anon_sym_i128] = ACTIONS(3159), + [anon_sym_isize] = ACTIONS(3159), + [anon_sym_usize] = ACTIONS(3159), + [anon_sym_f32] = ACTIONS(3159), + [anon_sym_f64] = ACTIONS(3159), + [anon_sym_bool] = ACTIONS(3159), + [anon_sym_str] = ACTIONS(3159), + [anon_sym_char] = ACTIONS(3159), + [anon_sym_BANG] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3165), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(3167), + [anon_sym_fn] = ACTIONS(3169), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(3171), + [anon_sym_impl] = ACTIONS(3173), + [anon_sym_union] = ACTIONS(3171), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(3175), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3179), + [sym_super] = ACTIONS(3179), + [sym_crate] = ACTIONS(3179), + [sym_metavariable] = ACTIONS(3181), }, [STATE(930)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2083), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_function_modifiers] = STATE(3689), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2124), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3674), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1685), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3674), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2330), [sym_line_comment] = STATE(930), [sym_block_comment] = STATE(930), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1547), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(931)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2055), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_function_modifiers] = STATE(3689), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2140), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3674), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1685), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3674), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2330), [sym_line_comment] = STATE(931), [sym_block_comment] = STATE(931), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1547), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(932)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2076), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_function_modifiers] = STATE(3689), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2143), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3674), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1685), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3674), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2330), [sym_line_comment] = STATE(932), [sym_block_comment] = STATE(932), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1547), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(933)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2061), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2987), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(933), [sym_block_comment] = STATE(933), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(934)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2062), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3531), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2062), - [sym_tuple_type] = STATE(2062), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2042), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2062), - [sym_use_bounds] = STATE(3531), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2234), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2735), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(934), [sym_block_comment] = STATE(934), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(3318), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), - }, - [STATE(935)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2680), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), - [sym_line_comment] = STATE(935), - [sym_block_comment] = STATE(935), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), - }, - [STATE(936)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2091), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(2091), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(2091), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2255), - [sym_line_comment] = STATE(936), - [sym_block_comment] = STATE(936), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + }, + [STATE(935)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2378), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), + [sym_line_comment] = STATE(935), + [sym_block_comment] = STATE(935), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + }, + [STATE(936)] = { + [sym_function_modifiers] = STATE(3689), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2148), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(2148), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1685), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(2148), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2330), + [sym_line_comment] = STATE(936), + [sym_block_comment] = STATE(936), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2435), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1547), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(937)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3396), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(3336), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(937), [sym_block_comment] = STATE(937), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(938)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2813), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2828), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(938), [sym_block_comment] = STATE(938), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(939)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2649), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(3051), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(939), [sym_block_comment] = STATE(939), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(940)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2088), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_function_modifiers] = STATE(3700), + [sym_removed_trait_bound] = STATE(1910), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(1907), + [sym_bracketed_type] = STATE(3761), + [sym_lifetime] = STATE(3860), + [sym_array_type] = STATE(1910), + [sym_for_lifetimes] = STATE(1684), + [sym_function_type] = STATE(1910), + [sym_tuple_type] = STATE(1910), + [sym_unit_type] = STATE(1910), + [sym_generic_type] = STATE(1717), + [sym_generic_type_with_turbofish] = STATE(3752), + [sym_bounded_type] = STATE(1910), + [sym_use_bounds] = STATE(3860), + [sym_reference_type] = STATE(1910), + [sym_pointer_type] = STATE(1910), + [sym_never_type] = STATE(1910), + [sym_abstract_type] = STATE(1910), + [sym_dynamic_type] = STATE(1910), + [sym_macro_invocation] = STATE(1910), + [sym_scoped_identifier] = STATE(3487), + [sym_scoped_type_identifier] = STATE(1647), [sym_line_comment] = STATE(940), [sym_block_comment] = STATE(940), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3111), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_QMARK] = ACTIONS(3119), + [anon_sym_u8] = ACTIONS(3121), + [anon_sym_i8] = ACTIONS(3121), + [anon_sym_u16] = ACTIONS(3121), + [anon_sym_i16] = ACTIONS(3121), + [anon_sym_u32] = ACTIONS(3121), + [anon_sym_i32] = ACTIONS(3121), + [anon_sym_u64] = ACTIONS(3121), + [anon_sym_i64] = ACTIONS(3121), + [anon_sym_u128] = ACTIONS(3121), + [anon_sym_i128] = ACTIONS(3121), + [anon_sym_isize] = ACTIONS(3121), + [anon_sym_usize] = ACTIONS(3121), + [anon_sym_f32] = ACTIONS(3121), + [anon_sym_f64] = ACTIONS(3121), + [anon_sym_bool] = ACTIONS(3121), + [anon_sym_str] = ACTIONS(3121), + [anon_sym_char] = ACTIONS(3121), + [anon_sym_BANG] = ACTIONS(3123), + [anon_sym_AMP] = ACTIONS(3125), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3127), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(3129), + [anon_sym_fn] = ACTIONS(3131), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(3133), + [anon_sym_impl] = ACTIONS(3135), + [anon_sym_union] = ACTIONS(3133), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(3137), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3141), + [sym_super] = ACTIONS(3141), + [sym_crate] = ACTIONS(3141), + [sym_metavariable] = ACTIONS(3143), }, [STATE(941)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2525), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3700), + [sym_removed_trait_bound] = STATE(1910), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(1908), + [sym_bracketed_type] = STATE(3761), + [sym_lifetime] = STATE(3860), + [sym_array_type] = STATE(1910), + [sym_for_lifetimes] = STATE(1684), + [sym_function_type] = STATE(1910), + [sym_tuple_type] = STATE(1910), + [sym_unit_type] = STATE(1910), + [sym_generic_type] = STATE(1717), + [sym_generic_type_with_turbofish] = STATE(3752), + [sym_bounded_type] = STATE(1910), + [sym_use_bounds] = STATE(3860), + [sym_reference_type] = STATE(1910), + [sym_pointer_type] = STATE(1910), + [sym_never_type] = STATE(1910), + [sym_abstract_type] = STATE(1910), + [sym_dynamic_type] = STATE(1910), + [sym_macro_invocation] = STATE(1910), + [sym_scoped_identifier] = STATE(3487), + [sym_scoped_type_identifier] = STATE(1647), [sym_line_comment] = STATE(941), [sym_block_comment] = STATE(941), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3111), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_QMARK] = ACTIONS(3119), + [anon_sym_u8] = ACTIONS(3121), + [anon_sym_i8] = ACTIONS(3121), + [anon_sym_u16] = ACTIONS(3121), + [anon_sym_i16] = ACTIONS(3121), + [anon_sym_u32] = ACTIONS(3121), + [anon_sym_i32] = ACTIONS(3121), + [anon_sym_u64] = ACTIONS(3121), + [anon_sym_i64] = ACTIONS(3121), + [anon_sym_u128] = ACTIONS(3121), + [anon_sym_i128] = ACTIONS(3121), + [anon_sym_isize] = ACTIONS(3121), + [anon_sym_usize] = ACTIONS(3121), + [anon_sym_f32] = ACTIONS(3121), + [anon_sym_f64] = ACTIONS(3121), + [anon_sym_bool] = ACTIONS(3121), + [anon_sym_str] = ACTIONS(3121), + [anon_sym_char] = ACTIONS(3121), + [anon_sym_BANG] = ACTIONS(3123), + [anon_sym_AMP] = ACTIONS(3125), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3127), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(3129), + [anon_sym_fn] = ACTIONS(3131), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(3133), + [anon_sym_impl] = ACTIONS(3135), + [anon_sym_union] = ACTIONS(3133), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(3137), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3141), + [sym_super] = ACTIONS(3141), + [sym_crate] = ACTIONS(3141), + [sym_metavariable] = ACTIONS(3143), }, [STATE(942)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2945), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3689), + [sym_removed_trait_bound] = STATE(2142), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(3674), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3674), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1685), + [sym_function_type] = STATE(2142), + [sym_tuple_type] = STATE(2142), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2110), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2142), + [sym_use_bounds] = STATE(3674), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2317), [sym_line_comment] = STATE(942), [sym_block_comment] = STATE(942), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3235), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(943)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_function_modifiers] = STATE(3700), + [sym_removed_trait_bound] = STATE(1910), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(1919), + [sym_bracketed_type] = STATE(3761), + [sym_lifetime] = STATE(1919), + [sym_array_type] = STATE(1910), + [sym_for_lifetimes] = STATE(1684), + [sym_function_type] = STATE(1910), + [sym_tuple_type] = STATE(1910), + [sym_unit_type] = STATE(1910), + [sym_generic_type] = STATE(1717), + [sym_generic_type_with_turbofish] = STATE(3752), + [sym_bounded_type] = STATE(1910), + [sym_use_bounds] = STATE(1919), + [sym_reference_type] = STATE(1910), + [sym_pointer_type] = STATE(1910), + [sym_never_type] = STATE(1910), + [sym_abstract_type] = STATE(1910), + [sym_dynamic_type] = STATE(1910), + [sym_macro_invocation] = STATE(1910), + [sym_scoped_identifier] = STATE(3487), + [sym_scoped_type_identifier] = STATE(1647), [sym_line_comment] = STATE(943), [sym_block_comment] = STATE(943), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3111), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_QMARK] = ACTIONS(3119), + [anon_sym_u8] = ACTIONS(3121), + [anon_sym_i8] = ACTIONS(3121), + [anon_sym_u16] = ACTIONS(3121), + [anon_sym_i16] = ACTIONS(3121), + [anon_sym_u32] = ACTIONS(3121), + [anon_sym_i32] = ACTIONS(3121), + [anon_sym_u64] = ACTIONS(3121), + [anon_sym_i64] = ACTIONS(3121), + [anon_sym_u128] = ACTIONS(3121), + [anon_sym_i128] = ACTIONS(3121), + [anon_sym_isize] = ACTIONS(3121), + [anon_sym_usize] = ACTIONS(3121), + [anon_sym_f32] = ACTIONS(3121), + [anon_sym_f64] = ACTIONS(3121), + [anon_sym_bool] = ACTIONS(3121), + [anon_sym_str] = ACTIONS(3121), + [anon_sym_char] = ACTIONS(3121), + [anon_sym_BANG] = ACTIONS(3123), + [anon_sym_AMP] = ACTIONS(3125), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3127), + [anon_sym_SQUOTE] = ACTIONS(3237), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(3129), + [anon_sym_fn] = ACTIONS(3131), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(3133), + [anon_sym_impl] = ACTIONS(3135), + [anon_sym_union] = ACTIONS(3133), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(3239), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(3137), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3141), + [sym_super] = ACTIONS(3141), + [sym_crate] = ACTIONS(3141), + [sym_metavariable] = ACTIONS(3143), }, [STATE(944)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3063), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2808), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(944), [sym_block_comment] = STATE(944), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(945)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2077), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(3083), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(945), [sym_block_comment] = STATE(945), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(946)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2078), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2521), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(946), [sym_block_comment] = STATE(946), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(947)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2079), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2522), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(947), [sym_block_comment] = STATE(947), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(948)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2881), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3700), + [sym_removed_trait_bound] = STATE(1910), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(1936), + [sym_bracketed_type] = STATE(3761), + [sym_lifetime] = STATE(3860), + [sym_array_type] = STATE(1910), + [sym_for_lifetimes] = STATE(1684), + [sym_function_type] = STATE(1910), + [sym_tuple_type] = STATE(1910), + [sym_unit_type] = STATE(1910), + [sym_generic_type] = STATE(1717), + [sym_generic_type_with_turbofish] = STATE(3752), + [sym_bounded_type] = STATE(1910), + [sym_use_bounds] = STATE(3860), + [sym_reference_type] = STATE(1910), + [sym_pointer_type] = STATE(1910), + [sym_never_type] = STATE(1910), + [sym_abstract_type] = STATE(1910), + [sym_dynamic_type] = STATE(1910), + [sym_macro_invocation] = STATE(1910), + [sym_scoped_identifier] = STATE(3487), + [sym_scoped_type_identifier] = STATE(1647), [sym_line_comment] = STATE(948), [sym_block_comment] = STATE(948), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3111), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_QMARK] = ACTIONS(3119), + [anon_sym_u8] = ACTIONS(3121), + [anon_sym_i8] = ACTIONS(3121), + [anon_sym_u16] = ACTIONS(3121), + [anon_sym_i16] = ACTIONS(3121), + [anon_sym_u32] = ACTIONS(3121), + [anon_sym_i32] = ACTIONS(3121), + [anon_sym_u64] = ACTIONS(3121), + [anon_sym_i64] = ACTIONS(3121), + [anon_sym_u128] = ACTIONS(3121), + [anon_sym_i128] = ACTIONS(3121), + [anon_sym_isize] = ACTIONS(3121), + [anon_sym_usize] = ACTIONS(3121), + [anon_sym_f32] = ACTIONS(3121), + [anon_sym_f64] = ACTIONS(3121), + [anon_sym_bool] = ACTIONS(3121), + [anon_sym_str] = ACTIONS(3121), + [anon_sym_char] = ACTIONS(3121), + [anon_sym_BANG] = ACTIONS(3123), + [anon_sym_AMP] = ACTIONS(3125), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3127), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(3129), + [anon_sym_fn] = ACTIONS(3131), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(3133), + [anon_sym_impl] = ACTIONS(3135), + [anon_sym_union] = ACTIONS(3133), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(3137), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3141), + [sym_super] = ACTIONS(3141), + [sym_crate] = ACTIONS(3141), + [sym_metavariable] = ACTIONS(3143), }, [STATE(949)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2072), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3531), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2072), - [sym_tuple_type] = STATE(2072), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2032), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2072), - [sym_use_bounds] = STATE(3531), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2258), + [sym_function_modifiers] = STATE(3700), + [sym_removed_trait_bound] = STATE(1910), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(1768), + [sym_bracketed_type] = STATE(3761), + [sym_lifetime] = STATE(3860), + [sym_array_type] = STATE(1910), + [sym_for_lifetimes] = STATE(1684), + [sym_function_type] = STATE(1910), + [sym_tuple_type] = STATE(1910), + [sym_unit_type] = STATE(1910), + [sym_generic_type] = STATE(1717), + [sym_generic_type_with_turbofish] = STATE(3752), + [sym_bounded_type] = STATE(1910), + [sym_use_bounds] = STATE(3860), + [sym_reference_type] = STATE(1910), + [sym_pointer_type] = STATE(1910), + [sym_never_type] = STATE(1910), + [sym_abstract_type] = STATE(1910), + [sym_dynamic_type] = STATE(1910), + [sym_macro_invocation] = STATE(1910), + [sym_scoped_identifier] = STATE(3487), + [sym_scoped_type_identifier] = STATE(1647), [sym_line_comment] = STATE(949), [sym_block_comment] = STATE(949), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3320), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3111), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_QMARK] = ACTIONS(3119), + [anon_sym_u8] = ACTIONS(3121), + [anon_sym_i8] = ACTIONS(3121), + [anon_sym_u16] = ACTIONS(3121), + [anon_sym_i16] = ACTIONS(3121), + [anon_sym_u32] = ACTIONS(3121), + [anon_sym_i32] = ACTIONS(3121), + [anon_sym_u64] = ACTIONS(3121), + [anon_sym_i64] = ACTIONS(3121), + [anon_sym_u128] = ACTIONS(3121), + [anon_sym_i128] = ACTIONS(3121), + [anon_sym_isize] = ACTIONS(3121), + [anon_sym_usize] = ACTIONS(3121), + [anon_sym_f32] = ACTIONS(3121), + [anon_sym_f64] = ACTIONS(3121), + [anon_sym_bool] = ACTIONS(3121), + [anon_sym_str] = ACTIONS(3121), + [anon_sym_char] = ACTIONS(3121), + [anon_sym_BANG] = ACTIONS(3123), + [anon_sym_AMP] = ACTIONS(3125), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3127), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(3129), + [anon_sym_fn] = ACTIONS(3131), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(3133), + [anon_sym_impl] = ACTIONS(3135), + [anon_sym_union] = ACTIONS(3133), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(3137), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3141), + [sym_super] = ACTIONS(3141), + [sym_crate] = ACTIONS(3141), + [sym_metavariable] = ACTIONS(3143), }, [STATE(950)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2085), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_function_modifiers] = STATE(3700), + [sym_removed_trait_bound] = STATE(1910), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(1937), + [sym_bracketed_type] = STATE(3761), + [sym_lifetime] = STATE(3860), + [sym_array_type] = STATE(1910), + [sym_for_lifetimes] = STATE(1684), + [sym_function_type] = STATE(1910), + [sym_tuple_type] = STATE(1910), + [sym_unit_type] = STATE(1910), + [sym_generic_type] = STATE(1717), + [sym_generic_type_with_turbofish] = STATE(3752), + [sym_bounded_type] = STATE(1910), + [sym_use_bounds] = STATE(3860), + [sym_reference_type] = STATE(1910), + [sym_pointer_type] = STATE(1910), + [sym_never_type] = STATE(1910), + [sym_abstract_type] = STATE(1910), + [sym_dynamic_type] = STATE(1910), + [sym_macro_invocation] = STATE(1910), + [sym_scoped_identifier] = STATE(3487), + [sym_scoped_type_identifier] = STATE(1647), [sym_line_comment] = STATE(950), [sym_block_comment] = STATE(950), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3111), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_QMARK] = ACTIONS(3119), + [anon_sym_u8] = ACTIONS(3121), + [anon_sym_i8] = ACTIONS(3121), + [anon_sym_u16] = ACTIONS(3121), + [anon_sym_i16] = ACTIONS(3121), + [anon_sym_u32] = ACTIONS(3121), + [anon_sym_i32] = ACTIONS(3121), + [anon_sym_u64] = ACTIONS(3121), + [anon_sym_i64] = ACTIONS(3121), + [anon_sym_u128] = ACTIONS(3121), + [anon_sym_i128] = ACTIONS(3121), + [anon_sym_isize] = ACTIONS(3121), + [anon_sym_usize] = ACTIONS(3121), + [anon_sym_f32] = ACTIONS(3121), + [anon_sym_f64] = ACTIONS(3121), + [anon_sym_bool] = ACTIONS(3121), + [anon_sym_str] = ACTIONS(3121), + [anon_sym_char] = ACTIONS(3121), + [anon_sym_BANG] = ACTIONS(3123), + [anon_sym_AMP] = ACTIONS(3125), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3127), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(3129), + [anon_sym_fn] = ACTIONS(3131), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(3133), + [anon_sym_impl] = ACTIONS(3135), + [anon_sym_union] = ACTIONS(3133), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(3137), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3141), + [sym_super] = ACTIONS(3141), + [sym_crate] = ACTIONS(3141), + [sym_metavariable] = ACTIONS(3143), }, [STATE(951)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2086), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_function_modifiers] = STATE(3700), + [sym_removed_trait_bound] = STATE(1910), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(1778), + [sym_bracketed_type] = STATE(3761), + [sym_lifetime] = STATE(3860), + [sym_array_type] = STATE(1910), + [sym_for_lifetimes] = STATE(1684), + [sym_function_type] = STATE(1910), + [sym_tuple_type] = STATE(1910), + [sym_unit_type] = STATE(1910), + [sym_generic_type] = STATE(1717), + [sym_generic_type_with_turbofish] = STATE(3752), + [sym_bounded_type] = STATE(1910), + [sym_use_bounds] = STATE(3860), + [sym_reference_type] = STATE(1910), + [sym_pointer_type] = STATE(1910), + [sym_never_type] = STATE(1910), + [sym_abstract_type] = STATE(1910), + [sym_dynamic_type] = STATE(1910), + [sym_macro_invocation] = STATE(1910), + [sym_scoped_identifier] = STATE(3487), + [sym_scoped_type_identifier] = STATE(1647), [sym_line_comment] = STATE(951), [sym_block_comment] = STATE(951), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3111), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_QMARK] = ACTIONS(3119), + [anon_sym_u8] = ACTIONS(3121), + [anon_sym_i8] = ACTIONS(3121), + [anon_sym_u16] = ACTIONS(3121), + [anon_sym_i16] = ACTIONS(3121), + [anon_sym_u32] = ACTIONS(3121), + [anon_sym_i32] = ACTIONS(3121), + [anon_sym_u64] = ACTIONS(3121), + [anon_sym_i64] = ACTIONS(3121), + [anon_sym_u128] = ACTIONS(3121), + [anon_sym_i128] = ACTIONS(3121), + [anon_sym_isize] = ACTIONS(3121), + [anon_sym_usize] = ACTIONS(3121), + [anon_sym_f32] = ACTIONS(3121), + [anon_sym_f64] = ACTIONS(3121), + [anon_sym_bool] = ACTIONS(3121), + [anon_sym_str] = ACTIONS(3121), + [anon_sym_char] = ACTIONS(3121), + [anon_sym_BANG] = ACTIONS(3123), + [anon_sym_AMP] = ACTIONS(3125), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3127), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(3129), + [anon_sym_fn] = ACTIONS(3131), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(3133), + [anon_sym_impl] = ACTIONS(3135), + [anon_sym_union] = ACTIONS(3133), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(3137), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3141), + [sym_super] = ACTIONS(3141), + [sym_crate] = ACTIONS(3141), + [sym_metavariable] = ACTIONS(3143), }, [STATE(952)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2087), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_function_modifiers] = STATE(3700), + [sym_removed_trait_bound] = STATE(1910), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(1786), + [sym_bracketed_type] = STATE(3761), + [sym_lifetime] = STATE(3860), + [sym_array_type] = STATE(1910), + [sym_for_lifetimes] = STATE(1684), + [sym_function_type] = STATE(1910), + [sym_tuple_type] = STATE(1910), + [sym_unit_type] = STATE(1910), + [sym_generic_type] = STATE(1717), + [sym_generic_type_with_turbofish] = STATE(3752), + [sym_bounded_type] = STATE(1910), + [sym_use_bounds] = STATE(3860), + [sym_reference_type] = STATE(1910), + [sym_pointer_type] = STATE(1910), + [sym_never_type] = STATE(1910), + [sym_abstract_type] = STATE(1910), + [sym_dynamic_type] = STATE(1910), + [sym_macro_invocation] = STATE(1910), + [sym_scoped_identifier] = STATE(3487), + [sym_scoped_type_identifier] = STATE(1647), [sym_line_comment] = STATE(952), [sym_block_comment] = STATE(952), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3111), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_QMARK] = ACTIONS(3119), + [anon_sym_u8] = ACTIONS(3121), + [anon_sym_i8] = ACTIONS(3121), + [anon_sym_u16] = ACTIONS(3121), + [anon_sym_i16] = ACTIONS(3121), + [anon_sym_u32] = ACTIONS(3121), + [anon_sym_i32] = ACTIONS(3121), + [anon_sym_u64] = ACTIONS(3121), + [anon_sym_i64] = ACTIONS(3121), + [anon_sym_u128] = ACTIONS(3121), + [anon_sym_i128] = ACTIONS(3121), + [anon_sym_isize] = ACTIONS(3121), + [anon_sym_usize] = ACTIONS(3121), + [anon_sym_f32] = ACTIONS(3121), + [anon_sym_f64] = ACTIONS(3121), + [anon_sym_bool] = ACTIONS(3121), + [anon_sym_str] = ACTIONS(3121), + [anon_sym_char] = ACTIONS(3121), + [anon_sym_BANG] = ACTIONS(3123), + [anon_sym_AMP] = ACTIONS(3125), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3127), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(3129), + [anon_sym_fn] = ACTIONS(3131), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(3133), + [anon_sym_impl] = ACTIONS(3135), + [anon_sym_union] = ACTIONS(3133), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(3137), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3141), + [sym_super] = ACTIONS(3141), + [sym_crate] = ACTIONS(3141), + [sym_metavariable] = ACTIONS(3143), }, [STATE(953)] = { - [sym_function_modifiers] = STATE(3772), - [sym_removed_trait_bound] = STATE(1456), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1505), - [sym_bracketed_type] = STATE(3685), - [sym_lifetime] = STATE(3522), - [sym_array_type] = STATE(1456), - [sym_for_lifetimes] = STATE(1647), - [sym_function_type] = STATE(1456), - [sym_tuple_type] = STATE(1456), - [sym_unit_type] = STATE(1456), - [sym_generic_type] = STATE(1265), - [sym_generic_type_with_turbofish] = STATE(3673), - [sym_bounded_type] = STATE(1456), - [sym_use_bounds] = STATE(3522), - [sym_reference_type] = STATE(1456), - [sym_pointer_type] = STATE(1456), - [sym_never_type] = STATE(1456), - [sym_abstract_type] = STATE(1456), - [sym_dynamic_type] = STATE(1456), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1084), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2597), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(953), [sym_block_comment] = STATE(953), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3172), - [anon_sym_LPAREN] = ACTIONS(3174), - [anon_sym_LBRACK] = ACTIONS(3176), - [anon_sym_STAR] = ACTIONS(3180), - [anon_sym_QMARK] = ACTIONS(3182), - [anon_sym_u8] = ACTIONS(3184), - [anon_sym_i8] = ACTIONS(3184), - [anon_sym_u16] = ACTIONS(3184), - [anon_sym_i16] = ACTIONS(3184), - [anon_sym_u32] = ACTIONS(3184), - [anon_sym_i32] = ACTIONS(3184), - [anon_sym_u64] = ACTIONS(3184), - [anon_sym_i64] = ACTIONS(3184), - [anon_sym_u128] = ACTIONS(3184), - [anon_sym_i128] = ACTIONS(3184), - [anon_sym_isize] = ACTIONS(3184), - [anon_sym_usize] = ACTIONS(3184), - [anon_sym_f32] = ACTIONS(3184), - [anon_sym_f64] = ACTIONS(3184), - [anon_sym_bool] = ACTIONS(3184), - [anon_sym_str] = ACTIONS(3184), - [anon_sym_char] = ACTIONS(3184), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_AMP] = ACTIONS(3188), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3192), - [anon_sym_fn] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3196), - [anon_sym_impl] = ACTIONS(3198), - [anon_sym_union] = ACTIONS(3196), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3200), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_crate] = ACTIONS(3204), - [sym_metavariable] = ACTIONS(3206), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(954)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2443), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3700), + [sym_removed_trait_bound] = STATE(1910), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(1805), + [sym_bracketed_type] = STATE(3761), + [sym_lifetime] = STATE(3860), + [sym_array_type] = STATE(1910), + [sym_for_lifetimes] = STATE(1684), + [sym_function_type] = STATE(1910), + [sym_tuple_type] = STATE(1910), + [sym_unit_type] = STATE(1910), + [sym_generic_type] = STATE(1717), + [sym_generic_type_with_turbofish] = STATE(3752), + [sym_bounded_type] = STATE(1910), + [sym_use_bounds] = STATE(3860), + [sym_reference_type] = STATE(1910), + [sym_pointer_type] = STATE(1910), + [sym_never_type] = STATE(1910), + [sym_abstract_type] = STATE(1910), + [sym_dynamic_type] = STATE(1910), + [sym_macro_invocation] = STATE(1910), + [sym_scoped_identifier] = STATE(3487), + [sym_scoped_type_identifier] = STATE(1647), [sym_line_comment] = STATE(954), [sym_block_comment] = STATE(954), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3111), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_QMARK] = ACTIONS(3119), + [anon_sym_u8] = ACTIONS(3121), + [anon_sym_i8] = ACTIONS(3121), + [anon_sym_u16] = ACTIONS(3121), + [anon_sym_i16] = ACTIONS(3121), + [anon_sym_u32] = ACTIONS(3121), + [anon_sym_i32] = ACTIONS(3121), + [anon_sym_u64] = ACTIONS(3121), + [anon_sym_i64] = ACTIONS(3121), + [anon_sym_u128] = ACTIONS(3121), + [anon_sym_i128] = ACTIONS(3121), + [anon_sym_isize] = ACTIONS(3121), + [anon_sym_usize] = ACTIONS(3121), + [anon_sym_f32] = ACTIONS(3121), + [anon_sym_f64] = ACTIONS(3121), + [anon_sym_bool] = ACTIONS(3121), + [anon_sym_str] = ACTIONS(3121), + [anon_sym_char] = ACTIONS(3121), + [anon_sym_BANG] = ACTIONS(3123), + [anon_sym_AMP] = ACTIONS(3125), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3127), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(3129), + [anon_sym_fn] = ACTIONS(3131), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(3133), + [anon_sym_impl] = ACTIONS(3135), + [anon_sym_union] = ACTIONS(3133), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(3137), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3141), + [sym_super] = ACTIONS(3141), + [sym_crate] = ACTIONS(3141), + [sym_metavariable] = ACTIONS(3143), }, [STATE(955)] = { - [sym_function_modifiers] = STATE(3772), - [sym_removed_trait_bound] = STATE(1515), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3522), - [sym_bracketed_type] = STATE(3685), - [sym_lifetime] = STATE(3522), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1647), - [sym_function_type] = STATE(1515), - [sym_tuple_type] = STATE(1515), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(1296), - [sym_generic_type_with_turbofish] = STATE(3673), - [sym_bounded_type] = STATE(1515), - [sym_use_bounds] = STATE(3522), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3420), - [sym_scoped_type_identifier] = STATE(1091), + [sym_function_modifiers] = STATE(3700), + [sym_removed_trait_bound] = STATE(1910), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(1806), + [sym_bracketed_type] = STATE(3761), + [sym_lifetime] = STATE(3860), + [sym_array_type] = STATE(1910), + [sym_for_lifetimes] = STATE(1684), + [sym_function_type] = STATE(1910), + [sym_tuple_type] = STATE(1910), + [sym_unit_type] = STATE(1910), + [sym_generic_type] = STATE(1717), + [sym_generic_type_with_turbofish] = STATE(3752), + [sym_bounded_type] = STATE(1910), + [sym_use_bounds] = STATE(3860), + [sym_reference_type] = STATE(1910), + [sym_pointer_type] = STATE(1910), + [sym_never_type] = STATE(1910), + [sym_abstract_type] = STATE(1910), + [sym_dynamic_type] = STATE(1910), + [sym_macro_invocation] = STATE(1910), + [sym_scoped_identifier] = STATE(3487), + [sym_scoped_type_identifier] = STATE(1647), [sym_line_comment] = STATE(955), [sym_block_comment] = STATE(955), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3322), - [anon_sym_LPAREN] = ACTIONS(3324), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(3182), - [anon_sym_u8] = ACTIONS(3326), - [anon_sym_i8] = ACTIONS(3326), - [anon_sym_u16] = ACTIONS(3326), - [anon_sym_i16] = ACTIONS(3326), - [anon_sym_u32] = ACTIONS(3326), - [anon_sym_i32] = ACTIONS(3326), - [anon_sym_u64] = ACTIONS(3326), - [anon_sym_i64] = ACTIONS(3326), - [anon_sym_u128] = ACTIONS(3326), - [anon_sym_i128] = ACTIONS(3326), - [anon_sym_isize] = ACTIONS(3326), - [anon_sym_usize] = ACTIONS(3326), - [anon_sym_f32] = ACTIONS(3326), - [anon_sym_f64] = ACTIONS(3326), - [anon_sym_bool] = ACTIONS(3326), - [anon_sym_str] = ACTIONS(3326), - [anon_sym_char] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3328), - [anon_sym_fn] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(3330), - [anon_sym_gen] = ACTIONS(3332), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(3332), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_crate] = ACTIONS(3204), - [sym_metavariable] = ACTIONS(3334), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3111), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_QMARK] = ACTIONS(3119), + [anon_sym_u8] = ACTIONS(3121), + [anon_sym_i8] = ACTIONS(3121), + [anon_sym_u16] = ACTIONS(3121), + [anon_sym_i16] = ACTIONS(3121), + [anon_sym_u32] = ACTIONS(3121), + [anon_sym_i32] = ACTIONS(3121), + [anon_sym_u64] = ACTIONS(3121), + [anon_sym_i64] = ACTIONS(3121), + [anon_sym_u128] = ACTIONS(3121), + [anon_sym_i128] = ACTIONS(3121), + [anon_sym_isize] = ACTIONS(3121), + [anon_sym_usize] = ACTIONS(3121), + [anon_sym_f32] = ACTIONS(3121), + [anon_sym_f64] = ACTIONS(3121), + [anon_sym_bool] = ACTIONS(3121), + [anon_sym_str] = ACTIONS(3121), + [anon_sym_char] = ACTIONS(3121), + [anon_sym_BANG] = ACTIONS(3123), + [anon_sym_AMP] = ACTIONS(3125), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3127), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(3129), + [anon_sym_fn] = ACTIONS(3131), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(3133), + [anon_sym_impl] = ACTIONS(3135), + [anon_sym_union] = ACTIONS(3133), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(3137), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3141), + [sym_super] = ACTIONS(3141), + [sym_crate] = ACTIONS(3141), + [sym_metavariable] = ACTIONS(3143), }, [STATE(956)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2463), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3700), + [sym_removed_trait_bound] = STATE(1910), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(1813), + [sym_bracketed_type] = STATE(3761), + [sym_lifetime] = STATE(3860), + [sym_array_type] = STATE(1910), + [sym_for_lifetimes] = STATE(1684), + [sym_function_type] = STATE(1910), + [sym_tuple_type] = STATE(1910), + [sym_unit_type] = STATE(1910), + [sym_generic_type] = STATE(1717), + [sym_generic_type_with_turbofish] = STATE(3752), + [sym_bounded_type] = STATE(1910), + [sym_use_bounds] = STATE(3860), + [sym_reference_type] = STATE(1910), + [sym_pointer_type] = STATE(1910), + [sym_never_type] = STATE(1910), + [sym_abstract_type] = STATE(1910), + [sym_dynamic_type] = STATE(1910), + [sym_macro_invocation] = STATE(1910), + [sym_scoped_identifier] = STATE(3487), + [sym_scoped_type_identifier] = STATE(1647), [sym_line_comment] = STATE(956), [sym_block_comment] = STATE(956), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3111), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_QMARK] = ACTIONS(3119), + [anon_sym_u8] = ACTIONS(3121), + [anon_sym_i8] = ACTIONS(3121), + [anon_sym_u16] = ACTIONS(3121), + [anon_sym_i16] = ACTIONS(3121), + [anon_sym_u32] = ACTIONS(3121), + [anon_sym_i32] = ACTIONS(3121), + [anon_sym_u64] = ACTIONS(3121), + [anon_sym_i64] = ACTIONS(3121), + [anon_sym_u128] = ACTIONS(3121), + [anon_sym_i128] = ACTIONS(3121), + [anon_sym_isize] = ACTIONS(3121), + [anon_sym_usize] = ACTIONS(3121), + [anon_sym_f32] = ACTIONS(3121), + [anon_sym_f64] = ACTIONS(3121), + [anon_sym_bool] = ACTIONS(3121), + [anon_sym_str] = ACTIONS(3121), + [anon_sym_char] = ACTIONS(3121), + [anon_sym_BANG] = ACTIONS(3123), + [anon_sym_AMP] = ACTIONS(3125), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3127), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(3129), + [anon_sym_fn] = ACTIONS(3131), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(3133), + [anon_sym_impl] = ACTIONS(3135), + [anon_sym_union] = ACTIONS(3133), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(3137), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3141), + [sym_super] = ACTIONS(3141), + [sym_crate] = ACTIONS(3141), + [sym_metavariable] = ACTIONS(3143), }, [STATE(957)] = { - [sym_function_modifiers] = STATE(3641), - [sym_removed_trait_bound] = STATE(1745), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1872), - [sym_bracketed_type] = STATE(3701), - [sym_lifetime] = STATE(3813), - [sym_array_type] = STATE(1745), - [sym_for_lifetimes] = STATE(1625), - [sym_function_type] = STATE(1745), - [sym_tuple_type] = STATE(1745), - [sym_unit_type] = STATE(1745), - [sym_generic_type] = STATE(1692), - [sym_generic_type_with_turbofish] = STATE(3692), - [sym_bounded_type] = STATE(1745), - [sym_use_bounds] = STATE(3813), - [sym_reference_type] = STATE(1745), - [sym_pointer_type] = STATE(1745), - [sym_never_type] = STATE(1745), - [sym_abstract_type] = STATE(1745), - [sym_dynamic_type] = STATE(1745), - [sym_macro_invocation] = STATE(1745), - [sym_scoped_identifier] = STATE(3433), - [sym_scoped_type_identifier] = STATE(1614), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(3058), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(957), [sym_block_comment] = STATE(957), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_STAR] = ACTIONS(3222), - [anon_sym_QMARK] = ACTIONS(3224), - [anon_sym_u8] = ACTIONS(3226), - [anon_sym_i8] = ACTIONS(3226), - [anon_sym_u16] = ACTIONS(3226), - [anon_sym_i16] = ACTIONS(3226), - [anon_sym_u32] = ACTIONS(3226), - [anon_sym_i32] = ACTIONS(3226), - [anon_sym_u64] = ACTIONS(3226), - [anon_sym_i64] = ACTIONS(3226), - [anon_sym_u128] = ACTIONS(3226), - [anon_sym_i128] = ACTIONS(3226), - [anon_sym_isize] = ACTIONS(3226), - [anon_sym_usize] = ACTIONS(3226), - [anon_sym_f32] = ACTIONS(3226), - [anon_sym_f64] = ACTIONS(3226), - [anon_sym_bool] = ACTIONS(3226), - [anon_sym_str] = ACTIONS(3226), - [anon_sym_char] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3230), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3234), - [anon_sym_fn] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3238), - [anon_sym_impl] = ACTIONS(3240), - [anon_sym_union] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3242), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_crate] = ACTIONS(3246), - [sym_metavariable] = ACTIONS(3248), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(958)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2520), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3689), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2149), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3674), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1685), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3674), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2330), [sym_line_comment] = STATE(958), [sym_block_comment] = STATE(958), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1547), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(959)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2446), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2467), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2282), + [sym_function_modifiers] = STATE(3700), + [sym_removed_trait_bound] = STATE(1910), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(1824), + [sym_bracketed_type] = STATE(3761), + [sym_lifetime] = STATE(3860), + [sym_array_type] = STATE(1910), + [sym_for_lifetimes] = STATE(1684), + [sym_function_type] = STATE(1910), + [sym_tuple_type] = STATE(1910), + [sym_unit_type] = STATE(1910), + [sym_generic_type] = STATE(1717), + [sym_generic_type_with_turbofish] = STATE(3752), + [sym_bounded_type] = STATE(1910), + [sym_use_bounds] = STATE(3860), + [sym_reference_type] = STATE(1910), + [sym_pointer_type] = STATE(1910), + [sym_never_type] = STATE(1910), + [sym_abstract_type] = STATE(1910), + [sym_dynamic_type] = STATE(1910), + [sym_macro_invocation] = STATE(1910), + [sym_scoped_identifier] = STATE(3487), + [sym_scoped_type_identifier] = STATE(1647), [sym_line_comment] = STATE(959), [sym_block_comment] = STATE(959), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(3338), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3111), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_QMARK] = ACTIONS(3119), + [anon_sym_u8] = ACTIONS(3121), + [anon_sym_i8] = ACTIONS(3121), + [anon_sym_u16] = ACTIONS(3121), + [anon_sym_i16] = ACTIONS(3121), + [anon_sym_u32] = ACTIONS(3121), + [anon_sym_i32] = ACTIONS(3121), + [anon_sym_u64] = ACTIONS(3121), + [anon_sym_i64] = ACTIONS(3121), + [anon_sym_u128] = ACTIONS(3121), + [anon_sym_i128] = ACTIONS(3121), + [anon_sym_isize] = ACTIONS(3121), + [anon_sym_usize] = ACTIONS(3121), + [anon_sym_f32] = ACTIONS(3121), + [anon_sym_f64] = ACTIONS(3121), + [anon_sym_bool] = ACTIONS(3121), + [anon_sym_str] = ACTIONS(3121), + [anon_sym_char] = ACTIONS(3121), + [anon_sym_BANG] = ACTIONS(3123), + [anon_sym_AMP] = ACTIONS(3125), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3127), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(3129), + [anon_sym_fn] = ACTIONS(3131), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(3133), + [anon_sym_impl] = ACTIONS(3135), + [anon_sym_union] = ACTIONS(3133), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(3137), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3141), + [sym_super] = ACTIONS(3141), + [sym_crate] = ACTIONS(3141), + [sym_metavariable] = ACTIONS(3143), }, [STATE(960)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3359), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2610), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(960), [sym_block_comment] = STATE(960), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(961)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2779), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(3096), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(961), [sym_block_comment] = STATE(961), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(962)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2091), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(2091), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(2091), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2860), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(962), [sym_block_comment] = STATE(962), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), - }, - [STATE(963)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2305), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), - [sym_line_comment] = STATE(963), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + }, + [STATE(963)] = { + [sym_function_modifiers] = STATE(3689), + [sym_removed_trait_bound] = STATE(2115), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(3674), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3674), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1685), + [sym_function_type] = STATE(2115), + [sym_tuple_type] = STATE(2115), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2106), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2115), + [sym_use_bounds] = STATE(3674), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2341), + [sym_line_comment] = STATE(963), [sym_block_comment] = STATE(963), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(3243), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(964)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2309), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(3112), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(964), [sym_block_comment] = STATE(964), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(965)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2756), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2841), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(965), [sym_block_comment] = STATE(965), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(966)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2981), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3689), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2127), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3674), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1685), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3674), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2330), [sym_line_comment] = STATE(966), [sym_block_comment] = STATE(966), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1547), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(967)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2910), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2545), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(967), [sym_block_comment] = STATE(967), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(968)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3202), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2872), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(968), [sym_block_comment] = STATE(968), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(969)] = { - [sym_function_modifiers] = STATE(3772), - [sym_removed_trait_bound] = STATE(1511), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3522), - [sym_bracketed_type] = STATE(3685), - [sym_lifetime] = STATE(3522), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1647), - [sym_function_type] = STATE(1511), - [sym_tuple_type] = STATE(1511), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(1150), - [sym_generic_type_with_turbofish] = STATE(3673), - [sym_bounded_type] = STATE(1511), - [sym_use_bounds] = STATE(3522), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3420), - [sym_scoped_type_identifier] = STATE(1089), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2537), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(969), [sym_block_comment] = STATE(969), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3340), - [anon_sym_LPAREN] = ACTIONS(3324), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(3182), - [anon_sym_u8] = ACTIONS(3326), - [anon_sym_i8] = ACTIONS(3326), - [anon_sym_u16] = ACTIONS(3326), - [anon_sym_i16] = ACTIONS(3326), - [anon_sym_u32] = ACTIONS(3326), - [anon_sym_i32] = ACTIONS(3326), - [anon_sym_u64] = ACTIONS(3326), - [anon_sym_i64] = ACTIONS(3326), - [anon_sym_u128] = ACTIONS(3326), - [anon_sym_i128] = ACTIONS(3326), - [anon_sym_isize] = ACTIONS(3326), - [anon_sym_usize] = ACTIONS(3326), - [anon_sym_f32] = ACTIONS(3326), - [anon_sym_f64] = ACTIONS(3326), - [anon_sym_bool] = ACTIONS(3326), - [anon_sym_str] = ACTIONS(3326), - [anon_sym_char] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3328), - [anon_sym_fn] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3332), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(3332), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_crate] = ACTIONS(3204), - [sym_metavariable] = ACTIONS(3334), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(970)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3405), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2538), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(970), [sym_block_comment] = STATE(970), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(971)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2648), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2539), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(971), [sym_block_comment] = STATE(971), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(972)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2455), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2546), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(972), [sym_block_comment] = STATE(972), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(973)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2507), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2541), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(973), [sym_block_comment] = STATE(973), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(974)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2502), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3689), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2113), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3674), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1685), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3674), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2330), [sym_line_comment] = STATE(974), [sym_block_comment] = STATE(974), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1547), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(975)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2335), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(3200), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(975), [sym_block_comment] = STATE(975), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(976)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2436), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2386), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(976), [sym_block_comment] = STATE(976), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(977)] = { - [sym_function_modifiers] = STATE(3772), - [sym_removed_trait_bound] = STATE(1456), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1486), - [sym_bracketed_type] = STATE(3685), - [sym_lifetime] = STATE(3522), - [sym_array_type] = STATE(1456), - [sym_for_lifetimes] = STATE(1647), - [sym_function_type] = STATE(1456), - [sym_tuple_type] = STATE(1456), - [sym_unit_type] = STATE(1456), - [sym_generic_type] = STATE(1265), - [sym_generic_type_with_turbofish] = STATE(3673), - [sym_bounded_type] = STATE(1456), - [sym_use_bounds] = STATE(3522), - [sym_reference_type] = STATE(1456), - [sym_pointer_type] = STATE(1456), - [sym_never_type] = STATE(1456), - [sym_abstract_type] = STATE(1456), - [sym_dynamic_type] = STATE(1456), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1084), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2849), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(977), [sym_block_comment] = STATE(977), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3172), - [anon_sym_LPAREN] = ACTIONS(3174), - [anon_sym_LBRACK] = ACTIONS(3176), - [anon_sym_STAR] = ACTIONS(3180), - [anon_sym_QMARK] = ACTIONS(3182), - [anon_sym_u8] = ACTIONS(3184), - [anon_sym_i8] = ACTIONS(3184), - [anon_sym_u16] = ACTIONS(3184), - [anon_sym_i16] = ACTIONS(3184), - [anon_sym_u32] = ACTIONS(3184), - [anon_sym_i32] = ACTIONS(3184), - [anon_sym_u64] = ACTIONS(3184), - [anon_sym_i64] = ACTIONS(3184), - [anon_sym_u128] = ACTIONS(3184), - [anon_sym_i128] = ACTIONS(3184), - [anon_sym_isize] = ACTIONS(3184), - [anon_sym_usize] = ACTIONS(3184), - [anon_sym_f32] = ACTIONS(3184), - [anon_sym_f64] = ACTIONS(3184), - [anon_sym_bool] = ACTIONS(3184), - [anon_sym_str] = ACTIONS(3184), - [anon_sym_char] = ACTIONS(3184), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_AMP] = ACTIONS(3188), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3192), - [anon_sym_fn] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3196), - [anon_sym_impl] = ACTIONS(3198), - [anon_sym_union] = ACTIONS(3196), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3200), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_crate] = ACTIONS(3204), - [sym_metavariable] = ACTIONS(3206), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(978)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2334), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2896), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(978), [sym_block_comment] = STATE(978), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(979)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2719), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2898), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(979), [sym_block_comment] = STATE(979), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(980)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2508), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2823), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(980), [sym_block_comment] = STATE(980), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(981)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2431), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2536), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2461), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2320), [sym_line_comment] = STATE(981), [sym_block_comment] = STATE(981), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3245), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(3247), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(982)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2447), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(3056), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(982), [sym_block_comment] = STATE(982), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(983)] = { - [sym_function_modifiers] = STATE(3641), - [sym_removed_trait_bound] = STATE(1745), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1756), - [sym_bracketed_type] = STATE(3701), - [sym_lifetime] = STATE(3813), - [sym_array_type] = STATE(1745), - [sym_for_lifetimes] = STATE(1625), - [sym_function_type] = STATE(1745), - [sym_tuple_type] = STATE(1745), - [sym_unit_type] = STATE(1745), - [sym_generic_type] = STATE(1692), - [sym_generic_type_with_turbofish] = STATE(3692), - [sym_bounded_type] = STATE(1745), - [sym_use_bounds] = STATE(3813), - [sym_reference_type] = STATE(1745), - [sym_pointer_type] = STATE(1745), - [sym_never_type] = STATE(1745), - [sym_abstract_type] = STATE(1745), - [sym_dynamic_type] = STATE(1745), - [sym_macro_invocation] = STATE(1745), - [sym_scoped_identifier] = STATE(3433), - [sym_scoped_type_identifier] = STATE(1614), + [sym_function_modifiers] = STATE(3689), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2129), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3674), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1685), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3674), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2330), [sym_line_comment] = STATE(983), [sym_block_comment] = STATE(983), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_STAR] = ACTIONS(3222), - [anon_sym_QMARK] = ACTIONS(3224), - [anon_sym_u8] = ACTIONS(3226), - [anon_sym_i8] = ACTIONS(3226), - [anon_sym_u16] = ACTIONS(3226), - [anon_sym_i16] = ACTIONS(3226), - [anon_sym_u32] = ACTIONS(3226), - [anon_sym_i32] = ACTIONS(3226), - [anon_sym_u64] = ACTIONS(3226), - [anon_sym_i64] = ACTIONS(3226), - [anon_sym_u128] = ACTIONS(3226), - [anon_sym_i128] = ACTIONS(3226), - [anon_sym_isize] = ACTIONS(3226), - [anon_sym_usize] = ACTIONS(3226), - [anon_sym_f32] = ACTIONS(3226), - [anon_sym_f64] = ACTIONS(3226), - [anon_sym_bool] = ACTIONS(3226), - [anon_sym_str] = ACTIONS(3226), - [anon_sym_char] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3230), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3234), - [anon_sym_fn] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3238), - [anon_sym_impl] = ACTIONS(3240), - [anon_sym_union] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3242), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1547), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_crate] = ACTIONS(3246), - [sym_metavariable] = ACTIONS(3248), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(984)] = { - [sym_function_modifiers] = STATE(3641), - [sym_removed_trait_bound] = STATE(1759), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3813), - [sym_bracketed_type] = STATE(3701), - [sym_lifetime] = STATE(3813), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1625), - [sym_function_type] = STATE(1759), - [sym_tuple_type] = STATE(1759), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(1668), - [sym_generic_type_with_turbofish] = STATE(3692), - [sym_bounded_type] = STATE(1759), - [sym_use_bounds] = STATE(3813), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3440), - [sym_scoped_type_identifier] = STATE(1609), + [sym_function_modifiers] = STATE(3835), + [sym_removed_trait_bound] = STATE(1488), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(1524), + [sym_bracketed_type] = STATE(3745), + [sym_lifetime] = STATE(3601), + [sym_array_type] = STATE(1488), + [sym_for_lifetimes] = STATE(1690), + [sym_function_type] = STATE(1488), + [sym_tuple_type] = STATE(1488), + [sym_unit_type] = STATE(1488), + [sym_generic_type] = STATE(1399), + [sym_generic_type_with_turbofish] = STATE(3732), + [sym_bounded_type] = STATE(1488), + [sym_use_bounds] = STATE(3601), + [sym_reference_type] = STATE(1488), + [sym_pointer_type] = STATE(1488), + [sym_never_type] = STATE(1488), + [sym_abstract_type] = STATE(1488), + [sym_dynamic_type] = STATE(1488), + [sym_macro_invocation] = STATE(1488), + [sym_scoped_identifier] = STATE(3405), + [sym_scoped_type_identifier] = STATE(1121), [sym_line_comment] = STATE(984), [sym_block_comment] = STATE(984), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3344), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(3224), - [anon_sym_u8] = ACTIONS(3346), - [anon_sym_i8] = ACTIONS(3346), - [anon_sym_u16] = ACTIONS(3346), - [anon_sym_i16] = ACTIONS(3346), - [anon_sym_u32] = ACTIONS(3346), - [anon_sym_i32] = ACTIONS(3346), - [anon_sym_u64] = ACTIONS(3346), - [anon_sym_i64] = ACTIONS(3346), - [anon_sym_u128] = ACTIONS(3346), - [anon_sym_i128] = ACTIONS(3346), - [anon_sym_isize] = ACTIONS(3346), - [anon_sym_usize] = ACTIONS(3346), - [anon_sym_f32] = ACTIONS(3346), - [anon_sym_f64] = ACTIONS(3346), - [anon_sym_bool] = ACTIONS(3346), - [anon_sym_str] = ACTIONS(3346), - [anon_sym_char] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3348), - [anon_sym_fn] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(3350), - [anon_sym_gen] = ACTIONS(3352), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(3352), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_crate] = ACTIONS(3246), - [sym_metavariable] = ACTIONS(3354), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3147), + [anon_sym_LPAREN] = ACTIONS(3149), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_STAR] = ACTIONS(3155), + [anon_sym_QMARK] = ACTIONS(3157), + [anon_sym_u8] = ACTIONS(3159), + [anon_sym_i8] = ACTIONS(3159), + [anon_sym_u16] = ACTIONS(3159), + [anon_sym_i16] = ACTIONS(3159), + [anon_sym_u32] = ACTIONS(3159), + [anon_sym_i32] = ACTIONS(3159), + [anon_sym_u64] = ACTIONS(3159), + [anon_sym_i64] = ACTIONS(3159), + [anon_sym_u128] = ACTIONS(3159), + [anon_sym_i128] = ACTIONS(3159), + [anon_sym_isize] = ACTIONS(3159), + [anon_sym_usize] = ACTIONS(3159), + [anon_sym_f32] = ACTIONS(3159), + [anon_sym_f64] = ACTIONS(3159), + [anon_sym_bool] = ACTIONS(3159), + [anon_sym_str] = ACTIONS(3159), + [anon_sym_char] = ACTIONS(3159), + [anon_sym_BANG] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3165), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(3167), + [anon_sym_fn] = ACTIONS(3169), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(3171), + [anon_sym_impl] = ACTIONS(3173), + [anon_sym_union] = ACTIONS(3171), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(3175), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3179), + [sym_super] = ACTIONS(3179), + [sym_crate] = ACTIONS(3179), + [sym_metavariable] = ACTIONS(3181), }, [STATE(985)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2709), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(985), [sym_block_comment] = STATE(985), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(986)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2732), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3835), + [sym_removed_trait_bound] = STATE(1532), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(3601), + [sym_bracketed_type] = STATE(3745), + [sym_lifetime] = STATE(3601), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1690), + [sym_function_type] = STATE(1532), + [sym_tuple_type] = STATE(1532), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(1420), + [sym_generic_type_with_turbofish] = STATE(3732), + [sym_bounded_type] = STATE(1532), + [sym_use_bounds] = STATE(3601), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3475), + [sym_scoped_type_identifier] = STATE(1135), [sym_line_comment] = STATE(986), [sym_block_comment] = STATE(986), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(3157), + [anon_sym_u8] = ACTIONS(3253), + [anon_sym_i8] = ACTIONS(3253), + [anon_sym_u16] = ACTIONS(3253), + [anon_sym_i16] = ACTIONS(3253), + [anon_sym_u32] = ACTIONS(3253), + [anon_sym_i32] = ACTIONS(3253), + [anon_sym_u64] = ACTIONS(3253), + [anon_sym_i64] = ACTIONS(3253), + [anon_sym_u128] = ACTIONS(3253), + [anon_sym_i128] = ACTIONS(3253), + [anon_sym_isize] = ACTIONS(3253), + [anon_sym_usize] = ACTIONS(3253), + [anon_sym_f32] = ACTIONS(3253), + [anon_sym_f64] = ACTIONS(3253), + [anon_sym_bool] = ACTIONS(3253), + [anon_sym_str] = ACTIONS(3253), + [anon_sym_char] = ACTIONS(3253), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3165), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(3255), + [anon_sym_fn] = ACTIONS(3169), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_gen] = ACTIONS(3259), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(3259), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3179), + [sym_super] = ACTIONS(3179), + [sym_crate] = ACTIONS(3179), + [sym_metavariable] = ACTIONS(3261), }, [STATE(987)] = { - [sym_function_modifiers] = STATE(3772), - [sym_removed_trait_bound] = STATE(1456), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1436), - [sym_bracketed_type] = STATE(3685), - [sym_lifetime] = STATE(3522), - [sym_array_type] = STATE(1456), - [sym_for_lifetimes] = STATE(1647), - [sym_function_type] = STATE(1456), - [sym_tuple_type] = STATE(1456), - [sym_unit_type] = STATE(1456), - [sym_generic_type] = STATE(1265), - [sym_generic_type_with_turbofish] = STATE(3673), - [sym_bounded_type] = STATE(1456), - [sym_use_bounds] = STATE(3522), - [sym_reference_type] = STATE(1456), - [sym_pointer_type] = STATE(1456), - [sym_never_type] = STATE(1456), - [sym_abstract_type] = STATE(1456), - [sym_dynamic_type] = STATE(1456), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1084), + [sym_function_modifiers] = STATE(3700), + [sym_removed_trait_bound] = STATE(1910), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(1925), + [sym_bracketed_type] = STATE(3761), + [sym_lifetime] = STATE(3860), + [sym_array_type] = STATE(1910), + [sym_for_lifetimes] = STATE(1684), + [sym_function_type] = STATE(1910), + [sym_tuple_type] = STATE(1910), + [sym_unit_type] = STATE(1910), + [sym_generic_type] = STATE(1717), + [sym_generic_type_with_turbofish] = STATE(3752), + [sym_bounded_type] = STATE(1910), + [sym_use_bounds] = STATE(3860), + [sym_reference_type] = STATE(1910), + [sym_pointer_type] = STATE(1910), + [sym_never_type] = STATE(1910), + [sym_abstract_type] = STATE(1910), + [sym_dynamic_type] = STATE(1910), + [sym_macro_invocation] = STATE(1910), + [sym_scoped_identifier] = STATE(3487), + [sym_scoped_type_identifier] = STATE(1647), [sym_line_comment] = STATE(987), [sym_block_comment] = STATE(987), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3172), - [anon_sym_LPAREN] = ACTIONS(3174), - [anon_sym_LBRACK] = ACTIONS(3176), - [anon_sym_STAR] = ACTIONS(3180), - [anon_sym_QMARK] = ACTIONS(3182), - [anon_sym_u8] = ACTIONS(3184), - [anon_sym_i8] = ACTIONS(3184), - [anon_sym_u16] = ACTIONS(3184), - [anon_sym_i16] = ACTIONS(3184), - [anon_sym_u32] = ACTIONS(3184), - [anon_sym_i32] = ACTIONS(3184), - [anon_sym_u64] = ACTIONS(3184), - [anon_sym_i64] = ACTIONS(3184), - [anon_sym_u128] = ACTIONS(3184), - [anon_sym_i128] = ACTIONS(3184), - [anon_sym_isize] = ACTIONS(3184), - [anon_sym_usize] = ACTIONS(3184), - [anon_sym_f32] = ACTIONS(3184), - [anon_sym_f64] = ACTIONS(3184), - [anon_sym_bool] = ACTIONS(3184), - [anon_sym_str] = ACTIONS(3184), - [anon_sym_char] = ACTIONS(3184), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_AMP] = ACTIONS(3188), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3192), - [anon_sym_fn] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3196), - [anon_sym_impl] = ACTIONS(3198), - [anon_sym_union] = ACTIONS(3196), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3200), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_crate] = ACTIONS(3204), - [sym_metavariable] = ACTIONS(3206), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3111), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_QMARK] = ACTIONS(3119), + [anon_sym_u8] = ACTIONS(3121), + [anon_sym_i8] = ACTIONS(3121), + [anon_sym_u16] = ACTIONS(3121), + [anon_sym_i16] = ACTIONS(3121), + [anon_sym_u32] = ACTIONS(3121), + [anon_sym_i32] = ACTIONS(3121), + [anon_sym_u64] = ACTIONS(3121), + [anon_sym_i64] = ACTIONS(3121), + [anon_sym_u128] = ACTIONS(3121), + [anon_sym_i128] = ACTIONS(3121), + [anon_sym_isize] = ACTIONS(3121), + [anon_sym_usize] = ACTIONS(3121), + [anon_sym_f32] = ACTIONS(3121), + [anon_sym_f64] = ACTIONS(3121), + [anon_sym_bool] = ACTIONS(3121), + [anon_sym_str] = ACTIONS(3121), + [anon_sym_char] = ACTIONS(3121), + [anon_sym_BANG] = ACTIONS(3123), + [anon_sym_AMP] = ACTIONS(3125), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3127), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(3129), + [anon_sym_fn] = ACTIONS(3131), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(3133), + [anon_sym_impl] = ACTIONS(3135), + [anon_sym_union] = ACTIONS(3133), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(3137), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3141), + [sym_super] = ACTIONS(3141), + [sym_crate] = ACTIONS(3141), + [sym_metavariable] = ACTIONS(3143), }, [STATE(988)] = { - [sym_function_modifiers] = STATE(3772), - [sym_removed_trait_bound] = STATE(1456), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1437), - [sym_bracketed_type] = STATE(3685), - [sym_lifetime] = STATE(3522), - [sym_array_type] = STATE(1456), - [sym_for_lifetimes] = STATE(1647), - [sym_function_type] = STATE(1456), - [sym_tuple_type] = STATE(1456), - [sym_unit_type] = STATE(1456), - [sym_generic_type] = STATE(1265), - [sym_generic_type_with_turbofish] = STATE(3673), - [sym_bounded_type] = STATE(1456), - [sym_use_bounds] = STATE(3522), - [sym_reference_type] = STATE(1456), - [sym_pointer_type] = STATE(1456), - [sym_never_type] = STATE(1456), - [sym_abstract_type] = STATE(1456), - [sym_dynamic_type] = STATE(1456), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1084), + [sym_function_modifiers] = STATE(3689), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2146), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3674), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1685), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3674), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2330), [sym_line_comment] = STATE(988), [sym_block_comment] = STATE(988), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3172), - [anon_sym_LPAREN] = ACTIONS(3174), - [anon_sym_LBRACK] = ACTIONS(3176), - [anon_sym_STAR] = ACTIONS(3180), - [anon_sym_QMARK] = ACTIONS(3182), - [anon_sym_u8] = ACTIONS(3184), - [anon_sym_i8] = ACTIONS(3184), - [anon_sym_u16] = ACTIONS(3184), - [anon_sym_i16] = ACTIONS(3184), - [anon_sym_u32] = ACTIONS(3184), - [anon_sym_i32] = ACTIONS(3184), - [anon_sym_u64] = ACTIONS(3184), - [anon_sym_i64] = ACTIONS(3184), - [anon_sym_u128] = ACTIONS(3184), - [anon_sym_i128] = ACTIONS(3184), - [anon_sym_isize] = ACTIONS(3184), - [anon_sym_usize] = ACTIONS(3184), - [anon_sym_f32] = ACTIONS(3184), - [anon_sym_f64] = ACTIONS(3184), - [anon_sym_bool] = ACTIONS(3184), - [anon_sym_str] = ACTIONS(3184), - [anon_sym_char] = ACTIONS(3184), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_AMP] = ACTIONS(3188), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3192), - [anon_sym_fn] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3196), - [anon_sym_impl] = ACTIONS(3198), - [anon_sym_union] = ACTIONS(3196), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3200), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1547), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_crate] = ACTIONS(3204), - [sym_metavariable] = ACTIONS(3206), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(989)] = { - [sym_function_modifiers] = STATE(3641), - [sym_removed_trait_bound] = STATE(1792), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3813), - [sym_bracketed_type] = STATE(3701), - [sym_lifetime] = STATE(3813), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1625), - [sym_function_type] = STATE(1792), - [sym_tuple_type] = STATE(1792), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(1656), - [sym_generic_type_with_turbofish] = STATE(3692), - [sym_bounded_type] = STATE(1792), - [sym_use_bounds] = STATE(3813), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3440), - [sym_scoped_type_identifier] = STATE(1615), + [sym_function_modifiers] = STATE(3689), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(3504), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3674), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1685), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3674), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2330), [sym_line_comment] = STATE(989), [sym_block_comment] = STATE(989), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3344), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(3224), - [anon_sym_u8] = ACTIONS(3346), - [anon_sym_i8] = ACTIONS(3346), - [anon_sym_u16] = ACTIONS(3346), - [anon_sym_i16] = ACTIONS(3346), - [anon_sym_u32] = ACTIONS(3346), - [anon_sym_i32] = ACTIONS(3346), - [anon_sym_u64] = ACTIONS(3346), - [anon_sym_i64] = ACTIONS(3346), - [anon_sym_u128] = ACTIONS(3346), - [anon_sym_i128] = ACTIONS(3346), - [anon_sym_isize] = ACTIONS(3346), - [anon_sym_usize] = ACTIONS(3346), - [anon_sym_f32] = ACTIONS(3346), - [anon_sym_f64] = ACTIONS(3346), - [anon_sym_bool] = ACTIONS(3346), - [anon_sym_str] = ACTIONS(3346), - [anon_sym_char] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3348), - [anon_sym_fn] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3352), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(3352), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1547), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_crate] = ACTIONS(3246), - [sym_metavariable] = ACTIONS(3354), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(990)] = { - [sym_function_modifiers] = STATE(3772), - [sym_removed_trait_bound] = STATE(1456), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1450), - [sym_bracketed_type] = STATE(3685), - [sym_lifetime] = STATE(1450), - [sym_array_type] = STATE(1456), - [sym_for_lifetimes] = STATE(1647), - [sym_function_type] = STATE(1456), - [sym_tuple_type] = STATE(1456), - [sym_unit_type] = STATE(1456), - [sym_generic_type] = STATE(1265), - [sym_generic_type_with_turbofish] = STATE(3673), - [sym_bounded_type] = STATE(1456), - [sym_use_bounds] = STATE(1450), - [sym_reference_type] = STATE(1456), - [sym_pointer_type] = STATE(1456), - [sym_never_type] = STATE(1456), - [sym_abstract_type] = STATE(1456), - [sym_dynamic_type] = STATE(1456), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1084), + [sym_function_modifiers] = STATE(3689), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(3507), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3674), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1685), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3674), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2330), [sym_line_comment] = STATE(990), [sym_block_comment] = STATE(990), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3172), - [anon_sym_LPAREN] = ACTIONS(3174), - [anon_sym_LBRACK] = ACTIONS(3176), - [anon_sym_STAR] = ACTIONS(3180), - [anon_sym_QMARK] = ACTIONS(3182), - [anon_sym_u8] = ACTIONS(3184), - [anon_sym_i8] = ACTIONS(3184), - [anon_sym_u16] = ACTIONS(3184), - [anon_sym_i16] = ACTIONS(3184), - [anon_sym_u32] = ACTIONS(3184), - [anon_sym_i32] = ACTIONS(3184), - [anon_sym_u64] = ACTIONS(3184), - [anon_sym_i64] = ACTIONS(3184), - [anon_sym_u128] = ACTIONS(3184), - [anon_sym_i128] = ACTIONS(3184), - [anon_sym_isize] = ACTIONS(3184), - [anon_sym_usize] = ACTIONS(3184), - [anon_sym_f32] = ACTIONS(3184), - [anon_sym_f64] = ACTIONS(3184), - [anon_sym_bool] = ACTIONS(3184), - [anon_sym_str] = ACTIONS(3184), - [anon_sym_char] = ACTIONS(3184), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_AMP] = ACTIONS(3188), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_SQUOTE] = ACTIONS(3358), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3192), - [anon_sym_fn] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3196), - [anon_sym_impl] = ACTIONS(3198), - [anon_sym_union] = ACTIONS(3196), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(3360), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3200), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1547), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_crate] = ACTIONS(3204), - [sym_metavariable] = ACTIONS(3206), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(991)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3004), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3689), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2141), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3674), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1685), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3674), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2330), [sym_line_comment] = STATE(991), [sym_block_comment] = STATE(991), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1547), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(992)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3073), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2918), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(992), [sym_block_comment] = STATE(992), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(993)] = { - [sym_function_modifiers] = STATE(3772), - [sym_removed_trait_bound] = STATE(1456), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1554), - [sym_bracketed_type] = STATE(3685), - [sym_lifetime] = STATE(3522), - [sym_array_type] = STATE(1456), - [sym_for_lifetimes] = STATE(1647), - [sym_function_type] = STATE(1456), - [sym_tuple_type] = STATE(1456), - [sym_unit_type] = STATE(1456), - [sym_generic_type] = STATE(1265), - [sym_generic_type_with_turbofish] = STATE(3673), - [sym_bounded_type] = STATE(1456), - [sym_use_bounds] = STATE(3522), - [sym_reference_type] = STATE(1456), - [sym_pointer_type] = STATE(1456), - [sym_never_type] = STATE(1456), - [sym_abstract_type] = STATE(1456), - [sym_dynamic_type] = STATE(1456), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1084), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2148), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(2148), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(2148), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(993), [sym_block_comment] = STATE(993), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3172), - [anon_sym_LPAREN] = ACTIONS(3174), - [anon_sym_LBRACK] = ACTIONS(3176), - [anon_sym_STAR] = ACTIONS(3180), - [anon_sym_QMARK] = ACTIONS(3182), - [anon_sym_u8] = ACTIONS(3184), - [anon_sym_i8] = ACTIONS(3184), - [anon_sym_u16] = ACTIONS(3184), - [anon_sym_i16] = ACTIONS(3184), - [anon_sym_u32] = ACTIONS(3184), - [anon_sym_i32] = ACTIONS(3184), - [anon_sym_u64] = ACTIONS(3184), - [anon_sym_i64] = ACTIONS(3184), - [anon_sym_u128] = ACTIONS(3184), - [anon_sym_i128] = ACTIONS(3184), - [anon_sym_isize] = ACTIONS(3184), - [anon_sym_usize] = ACTIONS(3184), - [anon_sym_f32] = ACTIONS(3184), - [anon_sym_f64] = ACTIONS(3184), - [anon_sym_bool] = ACTIONS(3184), - [anon_sym_str] = ACTIONS(3184), - [anon_sym_char] = ACTIONS(3184), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_AMP] = ACTIONS(3188), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3192), - [anon_sym_fn] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3196), - [anon_sym_impl] = ACTIONS(3198), - [anon_sym_union] = ACTIONS(3196), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3200), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_crate] = ACTIONS(3204), - [sym_metavariable] = ACTIONS(3206), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(994)] = { - [sym_function_modifiers] = STATE(3772), - [sym_removed_trait_bound] = STATE(1456), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1457), - [sym_bracketed_type] = STATE(3685), - [sym_lifetime] = STATE(3522), - [sym_array_type] = STATE(1456), - [sym_for_lifetimes] = STATE(1647), - [sym_function_type] = STATE(1456), - [sym_tuple_type] = STATE(1456), - [sym_unit_type] = STATE(1456), - [sym_generic_type] = STATE(1265), - [sym_generic_type_with_turbofish] = STATE(3673), - [sym_bounded_type] = STATE(1456), - [sym_use_bounds] = STATE(3522), - [sym_reference_type] = STATE(1456), - [sym_pointer_type] = STATE(1456), - [sym_never_type] = STATE(1456), - [sym_abstract_type] = STATE(1456), - [sym_dynamic_type] = STATE(1456), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1084), + [sym_function_modifiers] = STATE(3689), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2915), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3674), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1685), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3674), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2330), [sym_line_comment] = STATE(994), [sym_block_comment] = STATE(994), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3172), - [anon_sym_LPAREN] = ACTIONS(3174), - [anon_sym_LBRACK] = ACTIONS(3176), - [anon_sym_STAR] = ACTIONS(3180), - [anon_sym_QMARK] = ACTIONS(3182), - [anon_sym_u8] = ACTIONS(3184), - [anon_sym_i8] = ACTIONS(3184), - [anon_sym_u16] = ACTIONS(3184), - [anon_sym_i16] = ACTIONS(3184), - [anon_sym_u32] = ACTIONS(3184), - [anon_sym_i32] = ACTIONS(3184), - [anon_sym_u64] = ACTIONS(3184), - [anon_sym_i64] = ACTIONS(3184), - [anon_sym_u128] = ACTIONS(3184), - [anon_sym_i128] = ACTIONS(3184), - [anon_sym_isize] = ACTIONS(3184), - [anon_sym_usize] = ACTIONS(3184), - [anon_sym_f32] = ACTIONS(3184), - [anon_sym_f64] = ACTIONS(3184), - [anon_sym_bool] = ACTIONS(3184), - [anon_sym_str] = ACTIONS(3184), - [anon_sym_char] = ACTIONS(3184), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_AMP] = ACTIONS(3188), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3192), - [anon_sym_fn] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3196), - [anon_sym_impl] = ACTIONS(3198), - [anon_sym_union] = ACTIONS(3196), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3200), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1547), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_crate] = ACTIONS(3204), - [sym_metavariable] = ACTIONS(3206), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(995)] = { - [sym_function_modifiers] = STATE(3772), - [sym_removed_trait_bound] = STATE(1456), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1538), - [sym_bracketed_type] = STATE(3685), - [sym_lifetime] = STATE(3522), - [sym_array_type] = STATE(1456), - [sym_for_lifetimes] = STATE(1647), - [sym_function_type] = STATE(1456), - [sym_tuple_type] = STATE(1456), - [sym_unit_type] = STATE(1456), - [sym_generic_type] = STATE(1265), - [sym_generic_type_with_turbofish] = STATE(3673), - [sym_bounded_type] = STATE(1456), - [sym_use_bounds] = STATE(3522), - [sym_reference_type] = STATE(1456), - [sym_pointer_type] = STATE(1456), - [sym_never_type] = STATE(1456), - [sym_abstract_type] = STATE(1456), - [sym_dynamic_type] = STATE(1456), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1084), + [sym_function_modifiers] = STATE(3689), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(3292), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3674), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1685), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3674), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2330), [sym_line_comment] = STATE(995), [sym_block_comment] = STATE(995), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3172), - [anon_sym_LPAREN] = ACTIONS(3174), - [anon_sym_LBRACK] = ACTIONS(3176), - [anon_sym_STAR] = ACTIONS(3180), - [anon_sym_QMARK] = ACTIONS(3182), - [anon_sym_u8] = ACTIONS(3184), - [anon_sym_i8] = ACTIONS(3184), - [anon_sym_u16] = ACTIONS(3184), - [anon_sym_i16] = ACTIONS(3184), - [anon_sym_u32] = ACTIONS(3184), - [anon_sym_i32] = ACTIONS(3184), - [anon_sym_u64] = ACTIONS(3184), - [anon_sym_i64] = ACTIONS(3184), - [anon_sym_u128] = ACTIONS(3184), - [anon_sym_i128] = ACTIONS(3184), - [anon_sym_isize] = ACTIONS(3184), - [anon_sym_usize] = ACTIONS(3184), - [anon_sym_f32] = ACTIONS(3184), - [anon_sym_f64] = ACTIONS(3184), - [anon_sym_bool] = ACTIONS(3184), - [anon_sym_str] = ACTIONS(3184), - [anon_sym_char] = ACTIONS(3184), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_AMP] = ACTIONS(3188), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3192), - [anon_sym_fn] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3196), - [anon_sym_impl] = ACTIONS(3198), - [anon_sym_union] = ACTIONS(3196), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3200), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1547), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_crate] = ACTIONS(3204), - [sym_metavariable] = ACTIONS(3206), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(996)] = { - [sym_function_modifiers] = STATE(3772), - [sym_removed_trait_bound] = STATE(1456), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1523), - [sym_bracketed_type] = STATE(3685), - [sym_lifetime] = STATE(3522), - [sym_array_type] = STATE(1456), - [sym_for_lifetimes] = STATE(1647), - [sym_function_type] = STATE(1456), - [sym_tuple_type] = STATE(1456), - [sym_unit_type] = STATE(1456), - [sym_generic_type] = STATE(1265), - [sym_generic_type_with_turbofish] = STATE(3673), - [sym_bounded_type] = STATE(1456), - [sym_use_bounds] = STATE(3522), - [sym_reference_type] = STATE(1456), - [sym_pointer_type] = STATE(1456), - [sym_never_type] = STATE(1456), - [sym_abstract_type] = STATE(1456), - [sym_dynamic_type] = STATE(1456), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1084), + [sym_function_modifiers] = STATE(3835), + [sym_removed_trait_bound] = STATE(1504), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(3601), + [sym_bracketed_type] = STATE(3745), + [sym_lifetime] = STATE(3601), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1690), + [sym_function_type] = STATE(1504), + [sym_tuple_type] = STATE(1504), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(1175), + [sym_generic_type_with_turbofish] = STATE(3732), + [sym_bounded_type] = STATE(1504), + [sym_use_bounds] = STATE(3601), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3475), + [sym_scoped_type_identifier] = STATE(1132), [sym_line_comment] = STATE(996), [sym_block_comment] = STATE(996), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3172), - [anon_sym_LPAREN] = ACTIONS(3174), - [anon_sym_LBRACK] = ACTIONS(3176), - [anon_sym_STAR] = ACTIONS(3180), - [anon_sym_QMARK] = ACTIONS(3182), - [anon_sym_u8] = ACTIONS(3184), - [anon_sym_i8] = ACTIONS(3184), - [anon_sym_u16] = ACTIONS(3184), - [anon_sym_i16] = ACTIONS(3184), - [anon_sym_u32] = ACTIONS(3184), - [anon_sym_i32] = ACTIONS(3184), - [anon_sym_u64] = ACTIONS(3184), - [anon_sym_i64] = ACTIONS(3184), - [anon_sym_u128] = ACTIONS(3184), - [anon_sym_i128] = ACTIONS(3184), - [anon_sym_isize] = ACTIONS(3184), - [anon_sym_usize] = ACTIONS(3184), - [anon_sym_f32] = ACTIONS(3184), - [anon_sym_f64] = ACTIONS(3184), - [anon_sym_bool] = ACTIONS(3184), - [anon_sym_str] = ACTIONS(3184), - [anon_sym_char] = ACTIONS(3184), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_AMP] = ACTIONS(3188), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3192), - [anon_sym_fn] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3196), - [anon_sym_impl] = ACTIONS(3198), - [anon_sym_union] = ACTIONS(3196), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3200), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_crate] = ACTIONS(3204), - [sym_metavariable] = ACTIONS(3206), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3263), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(3157), + [anon_sym_u8] = ACTIONS(3253), + [anon_sym_i8] = ACTIONS(3253), + [anon_sym_u16] = ACTIONS(3253), + [anon_sym_i16] = ACTIONS(3253), + [anon_sym_u32] = ACTIONS(3253), + [anon_sym_i32] = ACTIONS(3253), + [anon_sym_u64] = ACTIONS(3253), + [anon_sym_i64] = ACTIONS(3253), + [anon_sym_u128] = ACTIONS(3253), + [anon_sym_i128] = ACTIONS(3253), + [anon_sym_isize] = ACTIONS(3253), + [anon_sym_usize] = ACTIONS(3253), + [anon_sym_f32] = ACTIONS(3253), + [anon_sym_f64] = ACTIONS(3253), + [anon_sym_bool] = ACTIONS(3253), + [anon_sym_str] = ACTIONS(3253), + [anon_sym_char] = ACTIONS(3253), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3165), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(3255), + [anon_sym_fn] = ACTIONS(3169), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(3259), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(3259), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3179), + [sym_super] = ACTIONS(3179), + [sym_crate] = ACTIONS(3179), + [sym_metavariable] = ACTIONS(3261), }, [STATE(997)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3150), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3689), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(3280), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3674), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1685), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3674), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2330), [sym_line_comment] = STATE(997), [sym_block_comment] = STATE(997), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1547), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(998)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2440), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2483), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2278), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(3142), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(998), [sym_block_comment] = STATE(998), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3362), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(999)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2556), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2113), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(999), [sym_block_comment] = STATE(999), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3265), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1000)] = { - [sym_function_modifiers] = STATE(3772), - [sym_removed_trait_bound] = STATE(1456), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1506), - [sym_bracketed_type] = STATE(3685), - [sym_lifetime] = STATE(3522), - [sym_array_type] = STATE(1456), - [sym_for_lifetimes] = STATE(1647), - [sym_function_type] = STATE(1456), - [sym_tuple_type] = STATE(1456), - [sym_unit_type] = STATE(1456), - [sym_generic_type] = STATE(1265), - [sym_generic_type_with_turbofish] = STATE(3673), - [sym_bounded_type] = STATE(1456), - [sym_use_bounds] = STATE(3522), - [sym_reference_type] = STATE(1456), - [sym_pointer_type] = STATE(1456), - [sym_never_type] = STATE(1456), - [sym_abstract_type] = STATE(1456), - [sym_dynamic_type] = STATE(1456), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1084), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2560), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2456), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2325), [sym_line_comment] = STATE(1000), [sym_block_comment] = STATE(1000), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3172), - [anon_sym_LPAREN] = ACTIONS(3174), - [anon_sym_LBRACK] = ACTIONS(3176), - [anon_sym_STAR] = ACTIONS(3180), - [anon_sym_QMARK] = ACTIONS(3182), - [anon_sym_u8] = ACTIONS(3184), - [anon_sym_i8] = ACTIONS(3184), - [anon_sym_u16] = ACTIONS(3184), - [anon_sym_i16] = ACTIONS(3184), - [anon_sym_u32] = ACTIONS(3184), - [anon_sym_i32] = ACTIONS(3184), - [anon_sym_u64] = ACTIONS(3184), - [anon_sym_i64] = ACTIONS(3184), - [anon_sym_u128] = ACTIONS(3184), - [anon_sym_i128] = ACTIONS(3184), - [anon_sym_isize] = ACTIONS(3184), - [anon_sym_usize] = ACTIONS(3184), - [anon_sym_f32] = ACTIONS(3184), - [anon_sym_f64] = ACTIONS(3184), - [anon_sym_bool] = ACTIONS(3184), - [anon_sym_str] = ACTIONS(3184), - [anon_sym_char] = ACTIONS(3184), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_AMP] = ACTIONS(3188), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3192), - [anon_sym_fn] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3196), - [anon_sym_impl] = ACTIONS(3198), - [anon_sym_union] = ACTIONS(3196), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3200), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_crate] = ACTIONS(3204), - [sym_metavariable] = ACTIONS(3206), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3267), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1001)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2438), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2713), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1001), [sym_block_comment] = STATE(1001), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1002)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2076), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3689), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2135), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3674), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1685), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3674), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2330), [sym_line_comment] = STATE(1002), [sym_block_comment] = STATE(1002), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1547), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1003)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2061), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3700), + [sym_removed_trait_bound] = STATE(1910), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(1835), + [sym_bracketed_type] = STATE(3761), + [sym_lifetime] = STATE(3860), + [sym_array_type] = STATE(1910), + [sym_for_lifetimes] = STATE(1684), + [sym_function_type] = STATE(1910), + [sym_tuple_type] = STATE(1910), + [sym_unit_type] = STATE(1910), + [sym_generic_type] = STATE(1717), + [sym_generic_type_with_turbofish] = STATE(3752), + [sym_bounded_type] = STATE(1910), + [sym_use_bounds] = STATE(3860), + [sym_reference_type] = STATE(1910), + [sym_pointer_type] = STATE(1910), + [sym_never_type] = STATE(1910), + [sym_abstract_type] = STATE(1910), + [sym_dynamic_type] = STATE(1910), + [sym_macro_invocation] = STATE(1910), + [sym_scoped_identifier] = STATE(3487), + [sym_scoped_type_identifier] = STATE(1647), [sym_line_comment] = STATE(1003), [sym_block_comment] = STATE(1003), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3111), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_QMARK] = ACTIONS(3119), + [anon_sym_u8] = ACTIONS(3121), + [anon_sym_i8] = ACTIONS(3121), + [anon_sym_u16] = ACTIONS(3121), + [anon_sym_i16] = ACTIONS(3121), + [anon_sym_u32] = ACTIONS(3121), + [anon_sym_i32] = ACTIONS(3121), + [anon_sym_u64] = ACTIONS(3121), + [anon_sym_i64] = ACTIONS(3121), + [anon_sym_u128] = ACTIONS(3121), + [anon_sym_i128] = ACTIONS(3121), + [anon_sym_isize] = ACTIONS(3121), + [anon_sym_usize] = ACTIONS(3121), + [anon_sym_f32] = ACTIONS(3121), + [anon_sym_f64] = ACTIONS(3121), + [anon_sym_bool] = ACTIONS(3121), + [anon_sym_str] = ACTIONS(3121), + [anon_sym_char] = ACTIONS(3121), + [anon_sym_BANG] = ACTIONS(3123), + [anon_sym_AMP] = ACTIONS(3125), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3127), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(3129), + [anon_sym_fn] = ACTIONS(3131), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(3133), + [anon_sym_impl] = ACTIONS(3135), + [anon_sym_union] = ACTIONS(3133), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(3137), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3141), + [sym_super] = ACTIONS(3141), + [sym_crate] = ACTIONS(3141), + [sym_metavariable] = ACTIONS(3143), }, [STATE(1004)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2567), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3700), + [sym_removed_trait_bound] = STATE(1856), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(3860), + [sym_bracketed_type] = STATE(3761), + [sym_lifetime] = STATE(3860), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1684), + [sym_function_type] = STATE(1856), + [sym_tuple_type] = STATE(1856), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(1736), + [sym_generic_type_with_turbofish] = STATE(3752), + [sym_bounded_type] = STATE(1856), + [sym_use_bounds] = STATE(3860), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3494), + [sym_scoped_type_identifier] = STATE(1648), [sym_line_comment] = STATE(1004), [sym_block_comment] = STATE(1004), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3271), + [anon_sym_LPAREN] = ACTIONS(3273), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(3119), + [anon_sym_u8] = ACTIONS(3275), + [anon_sym_i8] = ACTIONS(3275), + [anon_sym_u16] = ACTIONS(3275), + [anon_sym_i16] = ACTIONS(3275), + [anon_sym_u32] = ACTIONS(3275), + [anon_sym_i32] = ACTIONS(3275), + [anon_sym_u64] = ACTIONS(3275), + [anon_sym_i64] = ACTIONS(3275), + [anon_sym_u128] = ACTIONS(3275), + [anon_sym_i128] = ACTIONS(3275), + [anon_sym_isize] = ACTIONS(3275), + [anon_sym_usize] = ACTIONS(3275), + [anon_sym_f32] = ACTIONS(3275), + [anon_sym_f64] = ACTIONS(3275), + [anon_sym_bool] = ACTIONS(3275), + [anon_sym_str] = ACTIONS(3275), + [anon_sym_char] = ACTIONS(3275), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3127), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(3277), + [anon_sym_fn] = ACTIONS(3131), + [anon_sym_for] = ACTIONS(3279), + [anon_sym_gen] = ACTIONS(3281), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(3281), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3141), + [sym_super] = ACTIONS(3141), + [sym_crate] = ACTIONS(3141), + [sym_metavariable] = ACTIONS(3283), }, [STATE(1005)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2887), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2769), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1005), [sym_block_comment] = STATE(1005), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1006)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2427), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3700), + [sym_removed_trait_bound] = STATE(1772), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(3860), + [sym_bracketed_type] = STATE(3761), + [sym_lifetime] = STATE(3860), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1684), + [sym_function_type] = STATE(1772), + [sym_tuple_type] = STATE(1772), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(1722), + [sym_generic_type_with_turbofish] = STATE(3752), + [sym_bounded_type] = STATE(1772), + [sym_use_bounds] = STATE(3860), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3494), + [sym_scoped_type_identifier] = STATE(1662), [sym_line_comment] = STATE(1006), [sym_block_comment] = STATE(1006), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3285), + [anon_sym_LPAREN] = ACTIONS(3273), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(3119), + [anon_sym_u8] = ACTIONS(3275), + [anon_sym_i8] = ACTIONS(3275), + [anon_sym_u16] = ACTIONS(3275), + [anon_sym_i16] = ACTIONS(3275), + [anon_sym_u32] = ACTIONS(3275), + [anon_sym_i32] = ACTIONS(3275), + [anon_sym_u64] = ACTIONS(3275), + [anon_sym_i64] = ACTIONS(3275), + [anon_sym_u128] = ACTIONS(3275), + [anon_sym_i128] = ACTIONS(3275), + [anon_sym_isize] = ACTIONS(3275), + [anon_sym_usize] = ACTIONS(3275), + [anon_sym_f32] = ACTIONS(3275), + [anon_sym_f64] = ACTIONS(3275), + [anon_sym_bool] = ACTIONS(3275), + [anon_sym_str] = ACTIONS(3275), + [anon_sym_char] = ACTIONS(3275), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3127), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(3277), + [anon_sym_fn] = ACTIONS(3131), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(3281), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(3281), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3141), + [sym_super] = ACTIONS(3141), + [sym_crate] = ACTIONS(3141), + [sym_metavariable] = ACTIONS(3283), }, [STATE(1007)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2430), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2595), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1007), [sym_block_comment] = STATE(1007), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1008)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2737), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(3063), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1008), [sym_block_comment] = STATE(1008), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1009)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2897), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2772), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1009), [sym_block_comment] = STATE(1009), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1010)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2741), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2947), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1010), [sym_block_comment] = STATE(1010), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1011)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2432), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2492), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2233), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(3070), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1011), [sym_block_comment] = STATE(1011), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3366), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1012)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2802), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2501), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1012), [sym_block_comment] = STATE(1012), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1013)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2088), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2532), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1013), [sym_block_comment] = STATE(1013), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1014)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2343), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1014), [sym_block_comment] = STATE(1014), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1015)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2072), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3775), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2072), - [sym_tuple_type] = STATE(2072), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2032), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2072), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2030), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2513), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1015), [sym_block_comment] = STATE(1015), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3370), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1016)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2085), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2517), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1016), [sym_block_comment] = STATE(1016), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1017)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2086), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(3162), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1017), [sym_block_comment] = STATE(1017), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1018)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2087), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3689), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2746), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3674), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1685), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3674), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2330), [sym_line_comment] = STATE(1018), [sym_block_comment] = STATE(1018), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1547), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1019)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2593), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(3205), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1019), [sym_block_comment] = STATE(1019), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1020)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2330), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(3100), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1020), [sym_block_comment] = STATE(1020), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1021)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2478), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2462), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2555), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2312), [sym_line_comment] = STATE(1021), [sym_block_comment] = STATE(1021), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(3289), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1022)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2480), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3689), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2136), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3674), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1685), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3674), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2330), [sym_line_comment] = STATE(1022), [sym_block_comment] = STATE(1022), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1547), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1023)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2484), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2659), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1023), [sym_block_comment] = STATE(1023), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), - }, - [STATE(1024)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2489), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), - [sym_line_comment] = STATE(1024), - [sym_block_comment] = STATE(1024), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), - }, - [STATE(1025)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2823), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), - [sym_line_comment] = STATE(1025), - [sym_block_comment] = STATE(1025), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + }, + [STATE(1024)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2675), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), + [sym_line_comment] = STATE(1024), + [sym_block_comment] = STATE(1024), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + }, + [STATE(1025)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2136), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), + [sym_line_comment] = STATE(1025), + [sym_block_comment] = STATE(1025), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1026)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2934), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2122), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1026), [sym_block_comment] = STATE(1026), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1027)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2831), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2603), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1027), [sym_block_comment] = STATE(1027), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1028)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2832), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(3055), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1028), [sym_block_comment] = STATE(1028), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1029)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2942), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2871), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1029), [sym_block_comment] = STATE(1029), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1030)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2840), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2472), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1030), [sym_block_comment] = STATE(1030), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1031)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2077), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2473), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1031), [sym_block_comment] = STATE(1031), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1032)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2078), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2700), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1032), [sym_block_comment] = STATE(1032), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1033)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2079), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(3163), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1033), [sym_block_comment] = STATE(1033), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1034)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2286), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2702), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1034), [sym_block_comment] = STATE(1034), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1035)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2412), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2474), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2557), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2319), [sym_line_comment] = STATE(1035), [sym_block_comment] = STATE(1035), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3291), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(3293), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1036)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2413), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2113), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1036), [sym_block_comment] = STATE(1036), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1037)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2604), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2390), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1037), [sym_block_comment] = STATE(1037), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1038)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2964), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2141), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1038), [sym_block_comment] = STATE(1038), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1039)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2718), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2142), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(3836), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2142), + [sym_tuple_type] = STATE(2142), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2110), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2142), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2085), [sym_line_comment] = STATE(1039), [sym_block_comment] = STATE(1039), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1040)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2415), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2127), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1040), [sym_block_comment] = STATE(1040), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1041)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2417), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2129), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1041), [sym_block_comment] = STATE(1041), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1042)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2418), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2146), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1042), [sym_block_comment] = STATE(1042), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1043)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2419), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2564), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1043), [sym_block_comment] = STATE(1043), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1044)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2289), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2366), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1044), [sym_block_comment] = STATE(1044), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1045)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2837), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2481), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1045), [sym_block_comment] = STATE(1045), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1046)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2844), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2482), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1046), [sym_block_comment] = STATE(1046), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1047)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2083), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2483), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1047), [sym_block_comment] = STATE(1047), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1048)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2428), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2484), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1048), [sym_block_comment] = STATE(1048), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1049)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2429), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2723), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1049), [sym_block_comment] = STATE(1049), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1050)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2293), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(3009), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1050), [sym_block_comment] = STATE(1050), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1051)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2988), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2724), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1051), [sym_block_comment] = STATE(1051), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1052)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2791), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2725), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1052), [sym_block_comment] = STATE(1052), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1053)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2294), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(3030), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1053), [sym_block_comment] = STATE(1053), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1054)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2295), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2728), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1054), [sym_block_comment] = STATE(1054), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1055)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2055), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2124), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1055), [sym_block_comment] = STATE(1055), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1056)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2062), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3775), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2062), - [sym_tuple_type] = STATE(2062), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2042), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2062), - [sym_use_bounds] = STATE(3775), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2029), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2140), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1056), [sym_block_comment] = STATE(1056), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3372), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(3374), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1057)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3358), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_reference_type] = STATE(2069), - [sym_pointer_type] = STATE(2069), - [sym_never_type] = STATE(2069), - [sym_abstract_type] = STATE(2069), - [sym_dynamic_type] = STATE(2069), - [sym_macro_invocation] = STATE(2069), - [sym_scoped_identifier] = STATE(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2143), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1057), [sym_block_comment] = STATE(1057), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1058)] = { - [sym_attribute_item] = STATE(1059), + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2370), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1058), [sym_block_comment] = STATE(1058), - [aux_sym_enum_variant_list_repeat1] = STATE(1058), - [sym_identifier] = ACTIONS(3376), - [anon_sym_LPAREN] = ACTIONS(763), - [anon_sym_LBRACK] = ACTIONS(763), - [anon_sym_RBRACK] = ACTIONS(763), - [anon_sym_LBRACE] = ACTIONS(763), - [anon_sym_STAR] = ACTIONS(763), - [anon_sym_u8] = ACTIONS(3376), - [anon_sym_i8] = ACTIONS(3376), - [anon_sym_u16] = ACTIONS(3376), - [anon_sym_i16] = ACTIONS(3376), - [anon_sym_u32] = ACTIONS(3376), - [anon_sym_i32] = ACTIONS(3376), - [anon_sym_u64] = ACTIONS(3376), - [anon_sym_i64] = ACTIONS(3376), - [anon_sym_u128] = ACTIONS(3376), - [anon_sym_i128] = ACTIONS(3376), - [anon_sym_isize] = ACTIONS(3376), - [anon_sym_usize] = ACTIONS(3376), - [anon_sym_f32] = ACTIONS(3376), - [anon_sym_f64] = ACTIONS(3376), - [anon_sym_bool] = ACTIONS(3376), - [anon_sym_str] = ACTIONS(3376), - [anon_sym_char] = ACTIONS(3376), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_BANG] = ACTIONS(763), - [anon_sym_AMP] = ACTIONS(763), - [anon_sym_PIPE] = ACTIONS(763), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_DOT_DOT] = ACTIONS(763), - [anon_sym_COMMA] = ACTIONS(763), - [anon_sym_COLON_COLON] = ACTIONS(763), - [anon_sym_POUND] = ACTIONS(789), - [anon_sym_SQUOTE] = ACTIONS(3376), - [anon_sym_async] = ACTIONS(3376), - [anon_sym_break] = ACTIONS(3376), - [anon_sym_const] = ACTIONS(3376), - [anon_sym_continue] = ACTIONS(3376), - [anon_sym_default] = ACTIONS(3376), - [anon_sym_for] = ACTIONS(3376), - [anon_sym_gen] = ACTIONS(3376), - [anon_sym_if] = ACTIONS(3376), - [anon_sym_loop] = ACTIONS(3376), - [anon_sym_match] = ACTIONS(3376), - [anon_sym_return] = ACTIONS(3376), - [anon_sym_static] = ACTIONS(3376), - [anon_sym_union] = ACTIONS(3376), - [anon_sym_unsafe] = ACTIONS(3376), - [anon_sym_while] = ACTIONS(3376), - [anon_sym_yield] = ACTIONS(3376), - [anon_sym_move] = ACTIONS(3376), - [anon_sym_try] = ACTIONS(3376), - [sym_integer_literal] = ACTIONS(763), - [aux_sym_string_literal_token1] = ACTIONS(763), - [sym_char_literal] = ACTIONS(763), - [anon_sym_true] = ACTIONS(3376), - [anon_sym_false] = ACTIONS(3376), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3376), - [sym_super] = ACTIONS(3376), - [sym_crate] = ACTIONS(3376), - [sym_metavariable] = ACTIONS(763), - [sym__raw_string_literal_start] = ACTIONS(763), - [sym_float_literal] = ACTIONS(763), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1059)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2489), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1059), [sym_block_comment] = STATE(1059), - [sym_identifier] = ACTIONS(3378), - [anon_sym_LPAREN] = ACTIONS(3380), - [anon_sym_LBRACK] = ACTIONS(3380), - [anon_sym_RBRACK] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(3380), - [anon_sym_STAR] = ACTIONS(3380), - [anon_sym_u8] = ACTIONS(3378), - [anon_sym_i8] = ACTIONS(3378), - [anon_sym_u16] = ACTIONS(3378), - [anon_sym_i16] = ACTIONS(3378), - [anon_sym_u32] = ACTIONS(3378), - [anon_sym_i32] = ACTIONS(3378), - [anon_sym_u64] = ACTIONS(3378), - [anon_sym_i64] = ACTIONS(3378), - [anon_sym_u128] = ACTIONS(3378), - [anon_sym_i128] = ACTIONS(3378), - [anon_sym_isize] = ACTIONS(3378), - [anon_sym_usize] = ACTIONS(3378), - [anon_sym_f32] = ACTIONS(3378), - [anon_sym_f64] = ACTIONS(3378), - [anon_sym_bool] = ACTIONS(3378), - [anon_sym_str] = ACTIONS(3378), - [anon_sym_char] = ACTIONS(3378), - [anon_sym_DASH] = ACTIONS(3380), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_AMP] = ACTIONS(3380), - [anon_sym_PIPE] = ACTIONS(3380), - [anon_sym_LT] = ACTIONS(3380), - [anon_sym_DOT_DOT] = ACTIONS(3380), - [anon_sym_COMMA] = ACTIONS(3380), - [anon_sym_COLON_COLON] = ACTIONS(3380), - [anon_sym_POUND] = ACTIONS(3380), - [anon_sym_SQUOTE] = ACTIONS(3378), - [anon_sym_async] = ACTIONS(3378), - [anon_sym_break] = ACTIONS(3378), - [anon_sym_const] = ACTIONS(3378), - [anon_sym_continue] = ACTIONS(3378), - [anon_sym_default] = ACTIONS(3378), - [anon_sym_for] = ACTIONS(3378), - [anon_sym_gen] = ACTIONS(3378), - [anon_sym_if] = ACTIONS(3378), - [anon_sym_loop] = ACTIONS(3378), - [anon_sym_match] = ACTIONS(3378), - [anon_sym_return] = ACTIONS(3378), - [anon_sym_static] = ACTIONS(3378), - [anon_sym_union] = ACTIONS(3378), - [anon_sym_unsafe] = ACTIONS(3378), - [anon_sym_while] = ACTIONS(3378), - [anon_sym_yield] = ACTIONS(3378), - [anon_sym_move] = ACTIONS(3378), - [anon_sym_try] = ACTIONS(3378), - [sym_integer_literal] = ACTIONS(3380), - [aux_sym_string_literal_token1] = ACTIONS(3380), - [sym_char_literal] = ACTIONS(3380), - [anon_sym_true] = ACTIONS(3378), - [anon_sym_false] = ACTIONS(3378), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3378), - [sym_super] = ACTIONS(3378), - [sym_crate] = ACTIONS(3378), - [sym_metavariable] = ACTIONS(3380), - [sym__raw_string_literal_start] = ACTIONS(3380), - [sym_float_literal] = ACTIONS(3380), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1060)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2490), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1060), [sym_block_comment] = STATE(1060), - [sym_identifier] = ACTIONS(2380), - [anon_sym_LPAREN] = ACTIONS(2378), - [anon_sym_LBRACK] = ACTIONS(2378), - [anon_sym_RBRACK] = ACTIONS(2378), - [anon_sym_LBRACE] = ACTIONS(2378), - [anon_sym_STAR] = ACTIONS(2378), - [anon_sym_u8] = ACTIONS(2380), - [anon_sym_i8] = ACTIONS(2380), - [anon_sym_u16] = ACTIONS(2380), - [anon_sym_i16] = ACTIONS(2380), - [anon_sym_u32] = ACTIONS(2380), - [anon_sym_i32] = ACTIONS(2380), - [anon_sym_u64] = ACTIONS(2380), - [anon_sym_i64] = ACTIONS(2380), - [anon_sym_u128] = ACTIONS(2380), - [anon_sym_i128] = ACTIONS(2380), - [anon_sym_isize] = ACTIONS(2380), - [anon_sym_usize] = ACTIONS(2380), - [anon_sym_f32] = ACTIONS(2380), - [anon_sym_f64] = ACTIONS(2380), - [anon_sym_bool] = ACTIONS(2380), - [anon_sym_str] = ACTIONS(2380), - [anon_sym_char] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2378), - [anon_sym_BANG] = ACTIONS(2378), - [anon_sym_AMP] = ACTIONS(2378), - [anon_sym_PIPE] = ACTIONS(2378), - [anon_sym_LT] = ACTIONS(2378), - [anon_sym_DOT_DOT] = ACTIONS(2378), - [anon_sym_COMMA] = ACTIONS(2378), - [anon_sym_COLON_COLON] = ACTIONS(2378), - [anon_sym_POUND] = ACTIONS(2378), - [anon_sym_SQUOTE] = ACTIONS(2380), - [anon_sym_async] = ACTIONS(2380), - [anon_sym_break] = ACTIONS(2380), - [anon_sym_const] = ACTIONS(2380), - [anon_sym_continue] = ACTIONS(2380), - [anon_sym_default] = ACTIONS(2380), - [anon_sym_for] = ACTIONS(2380), - [anon_sym_gen] = ACTIONS(2380), - [anon_sym_if] = ACTIONS(2380), - [anon_sym_loop] = ACTIONS(2380), - [anon_sym_match] = ACTIONS(2380), - [anon_sym_return] = ACTIONS(2380), - [anon_sym_static] = ACTIONS(2380), - [anon_sym_union] = ACTIONS(2380), - [anon_sym_unsafe] = ACTIONS(2380), - [anon_sym_while] = ACTIONS(2380), - [anon_sym_yield] = ACTIONS(2380), - [anon_sym_move] = ACTIONS(2380), - [anon_sym_try] = ACTIONS(2380), - [sym_integer_literal] = ACTIONS(2378), - [aux_sym_string_literal_token1] = ACTIONS(2378), - [sym_char_literal] = ACTIONS(2378), - [anon_sym_true] = ACTIONS(2380), - [anon_sym_false] = ACTIONS(2380), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2380), - [sym_super] = ACTIONS(2380), - [sym_crate] = ACTIONS(2380), - [sym_metavariable] = ACTIONS(2378), - [sym__raw_string_literal_start] = ACTIONS(2378), - [sym_float_literal] = ACTIONS(2378), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1061)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2605), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1061), [sym_block_comment] = STATE(1061), - [sym_identifier] = ACTIONS(3382), - [anon_sym_LPAREN] = ACTIONS(3384), - [anon_sym_LBRACK] = ACTIONS(3384), - [anon_sym_LBRACE] = ACTIONS(3384), - [anon_sym_STAR] = ACTIONS(3384), - [anon_sym_u8] = ACTIONS(3382), - [anon_sym_i8] = ACTIONS(3382), - [anon_sym_u16] = ACTIONS(3382), - [anon_sym_i16] = ACTIONS(3382), - [anon_sym_u32] = ACTIONS(3382), - [anon_sym_i32] = ACTIONS(3382), - [anon_sym_u64] = ACTIONS(3382), - [anon_sym_i64] = ACTIONS(3382), - [anon_sym_u128] = ACTIONS(3382), - [anon_sym_i128] = ACTIONS(3382), - [anon_sym_isize] = ACTIONS(3382), - [anon_sym_usize] = ACTIONS(3382), - [anon_sym_f32] = ACTIONS(3382), - [anon_sym_f64] = ACTIONS(3382), - [anon_sym_bool] = ACTIONS(3382), - [anon_sym_str] = ACTIONS(3382), - [anon_sym_char] = ACTIONS(3382), - [anon_sym_DASH] = ACTIONS(3382), - [anon_sym_BANG] = ACTIONS(3384), - [anon_sym_AMP] = ACTIONS(3384), - [anon_sym_PIPE] = ACTIONS(3384), - [anon_sym_LT] = ACTIONS(3384), - [anon_sym__] = ACTIONS(3382), - [anon_sym_DOT_DOT] = ACTIONS(3384), - [anon_sym_COLON_COLON] = ACTIONS(3384), - [anon_sym_DASH_GT] = ACTIONS(3384), - [anon_sym_SQUOTE] = ACTIONS(3382), - [anon_sym_async] = ACTIONS(3382), - [anon_sym_break] = ACTIONS(3382), - [anon_sym_const] = ACTIONS(3382), - [anon_sym_continue] = ACTIONS(3382), - [anon_sym_default] = ACTIONS(3382), - [anon_sym_for] = ACTIONS(3382), - [anon_sym_gen] = ACTIONS(3382), - [anon_sym_if] = ACTIONS(3382), - [anon_sym_loop] = ACTIONS(3382), - [anon_sym_match] = ACTIONS(3382), - [anon_sym_return] = ACTIONS(3382), - [anon_sym_static] = ACTIONS(3382), - [anon_sym_union] = ACTIONS(3382), - [anon_sym_unsafe] = ACTIONS(3382), - [anon_sym_while] = ACTIONS(3382), - [anon_sym_yield] = ACTIONS(3382), - [anon_sym_move] = ACTIONS(3382), - [anon_sym_try] = ACTIONS(3382), - [sym_integer_literal] = ACTIONS(3384), - [aux_sym_string_literal_token1] = ACTIONS(3384), - [sym_char_literal] = ACTIONS(3384), - [anon_sym_true] = ACTIONS(3382), - [anon_sym_false] = ACTIONS(3382), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3382), - [sym_super] = ACTIONS(3382), - [sym_crate] = ACTIONS(3382), - [sym_metavariable] = ACTIONS(3384), - [sym__raw_string_literal_start] = ACTIONS(3384), - [sym_float_literal] = ACTIONS(3384), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), }, [STATE(1062)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(3082), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), [sym_line_comment] = STATE(1062), [sym_block_comment] = STATE(1062), - [sym_identifier] = ACTIONS(1603), - [anon_sym_LPAREN] = ACTIONS(1605), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LBRACE] = ACTIONS(1605), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1605), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_PIPE] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(1605), - [anon_sym__] = ACTIONS(1603), - [anon_sym_DOT_DOT] = ACTIONS(1605), - [anon_sym_COLON_COLON] = ACTIONS(1605), - [anon_sym_DASH_GT] = ACTIONS(1605), - [anon_sym_SQUOTE] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1603), - [anon_sym_break] = ACTIONS(1603), - [anon_sym_const] = ACTIONS(1603), - [anon_sym_continue] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1603), - [anon_sym_for] = ACTIONS(1603), - [anon_sym_gen] = ACTIONS(1603), - [anon_sym_if] = ACTIONS(1603), - [anon_sym_loop] = ACTIONS(1603), - [anon_sym_match] = ACTIONS(1603), - [anon_sym_return] = ACTIONS(1603), - [anon_sym_static] = ACTIONS(1603), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1603), - [anon_sym_while] = ACTIONS(1603), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_move] = ACTIONS(1603), - [anon_sym_try] = ACTIONS(1603), - [sym_integer_literal] = ACTIONS(1605), - [aux_sym_string_literal_token1] = ACTIONS(1605), - [sym_char_literal] = ACTIONS(1605), - [anon_sym_true] = ACTIONS(1603), - [anon_sym_false] = ACTIONS(1603), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1603), - [sym_super] = ACTIONS(1603), - [sym_crate] = ACTIONS(1603), - [sym_metavariable] = ACTIONS(1605), - [sym__raw_string_literal_start] = ACTIONS(1605), - [sym_float_literal] = ACTIONS(1605), - }, -}; - + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + }, + [STATE(1063)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2737), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), + [sym_line_comment] = STATE(1063), + [sym_block_comment] = STATE(1063), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + }, + [STATE(1064)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2491), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), + [sym_line_comment] = STATE(1064), + [sym_block_comment] = STATE(1064), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + }, + [STATE(1065)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2492), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), + [sym_line_comment] = STATE(1065), + [sym_block_comment] = STATE(1065), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + }, + [STATE(1066)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2493), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), + [sym_line_comment] = STATE(1066), + [sym_block_comment] = STATE(1066), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + }, + [STATE(1067)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2494), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), + [sym_line_comment] = STATE(1067), + [sym_block_comment] = STATE(1067), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + }, + [STATE(1068)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2371), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), + [sym_line_comment] = STATE(1068), + [sym_block_comment] = STATE(1068), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + }, + [STATE(1069)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2739), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), + [sym_line_comment] = STATE(1069), + [sym_block_comment] = STATE(1069), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + }, + [STATE(1070)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2740), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), + [sym_line_comment] = STATE(1070), + [sym_block_comment] = STATE(1070), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + }, + [STATE(1071)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2135), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), + [sym_line_comment] = STATE(1071), + [sym_block_comment] = STATE(1071), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + }, + [STATE(1072)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2499), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), + [sym_line_comment] = STATE(1072), + [sym_block_comment] = STATE(1072), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + }, + [STATE(1073)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2500), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), + [sym_line_comment] = STATE(1073), + [sym_block_comment] = STATE(1073), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + }, + [STATE(1074)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2375), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), + [sym_line_comment] = STATE(1074), + [sym_block_comment] = STATE(1074), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + }, + [STATE(1075)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(3138), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), + [sym_line_comment] = STATE(1075), + [sym_block_comment] = STATE(1075), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + }, + [STATE(1076)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2744), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), + [sym_line_comment] = STATE(1076), + [sym_block_comment] = STATE(1076), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + }, + [STATE(1077)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2376), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), + [sym_line_comment] = STATE(1077), + [sym_block_comment] = STATE(1077), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + }, + [STATE(1078)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2377), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), + [sym_line_comment] = STATE(1078), + [sym_block_comment] = STATE(1078), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + }, + [STATE(1079)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2526), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), + [sym_line_comment] = STATE(1079), + [sym_block_comment] = STATE(1079), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + }, + [STATE(1080)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(3217), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), + [sym_line_comment] = STATE(1080), + [sym_block_comment] = STATE(1080), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + }, + [STATE(1081)] = { + [sym_function_modifiers] = STATE(3835), + [sym_removed_trait_bound] = STATE(1488), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(1583), + [sym_bracketed_type] = STATE(3745), + [sym_lifetime] = STATE(3601), + [sym_array_type] = STATE(1488), + [sym_for_lifetimes] = STATE(1690), + [sym_function_type] = STATE(1488), + [sym_tuple_type] = STATE(1488), + [sym_unit_type] = STATE(1488), + [sym_generic_type] = STATE(1399), + [sym_generic_type_with_turbofish] = STATE(3732), + [sym_bounded_type] = STATE(1488), + [sym_use_bounds] = STATE(3601), + [sym_reference_type] = STATE(1488), + [sym_pointer_type] = STATE(1488), + [sym_never_type] = STATE(1488), + [sym_abstract_type] = STATE(1488), + [sym_dynamic_type] = STATE(1488), + [sym_macro_invocation] = STATE(1488), + [sym_scoped_identifier] = STATE(3405), + [sym_scoped_type_identifier] = STATE(1121), + [sym_line_comment] = STATE(1081), + [sym_block_comment] = STATE(1081), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3147), + [anon_sym_LPAREN] = ACTIONS(3149), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_STAR] = ACTIONS(3155), + [anon_sym_QMARK] = ACTIONS(3157), + [anon_sym_u8] = ACTIONS(3159), + [anon_sym_i8] = ACTIONS(3159), + [anon_sym_u16] = ACTIONS(3159), + [anon_sym_i16] = ACTIONS(3159), + [anon_sym_u32] = ACTIONS(3159), + [anon_sym_i32] = ACTIONS(3159), + [anon_sym_u64] = ACTIONS(3159), + [anon_sym_i64] = ACTIONS(3159), + [anon_sym_u128] = ACTIONS(3159), + [anon_sym_i128] = ACTIONS(3159), + [anon_sym_isize] = ACTIONS(3159), + [anon_sym_usize] = ACTIONS(3159), + [anon_sym_f32] = ACTIONS(3159), + [anon_sym_f64] = ACTIONS(3159), + [anon_sym_bool] = ACTIONS(3159), + [anon_sym_str] = ACTIONS(3159), + [anon_sym_char] = ACTIONS(3159), + [anon_sym_BANG] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3165), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(3167), + [anon_sym_fn] = ACTIONS(3169), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(3171), + [anon_sym_impl] = ACTIONS(3173), + [anon_sym_union] = ACTIONS(3171), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(3175), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3179), + [sym_super] = ACTIONS(3179), + [sym_crate] = ACTIONS(3179), + [sym_metavariable] = ACTIONS(3181), + }, + [STATE(1082)] = { + [sym_function_modifiers] = STATE(3835), + [sym_removed_trait_bound] = STATE(1488), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(1584), + [sym_bracketed_type] = STATE(3745), + [sym_lifetime] = STATE(3601), + [sym_array_type] = STATE(1488), + [sym_for_lifetimes] = STATE(1690), + [sym_function_type] = STATE(1488), + [sym_tuple_type] = STATE(1488), + [sym_unit_type] = STATE(1488), + [sym_generic_type] = STATE(1399), + [sym_generic_type_with_turbofish] = STATE(3732), + [sym_bounded_type] = STATE(1488), + [sym_use_bounds] = STATE(3601), + [sym_reference_type] = STATE(1488), + [sym_pointer_type] = STATE(1488), + [sym_never_type] = STATE(1488), + [sym_abstract_type] = STATE(1488), + [sym_dynamic_type] = STATE(1488), + [sym_macro_invocation] = STATE(1488), + [sym_scoped_identifier] = STATE(3405), + [sym_scoped_type_identifier] = STATE(1121), + [sym_line_comment] = STATE(1082), + [sym_block_comment] = STATE(1082), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3147), + [anon_sym_LPAREN] = ACTIONS(3149), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_STAR] = ACTIONS(3155), + [anon_sym_QMARK] = ACTIONS(3157), + [anon_sym_u8] = ACTIONS(3159), + [anon_sym_i8] = ACTIONS(3159), + [anon_sym_u16] = ACTIONS(3159), + [anon_sym_i16] = ACTIONS(3159), + [anon_sym_u32] = ACTIONS(3159), + [anon_sym_i32] = ACTIONS(3159), + [anon_sym_u64] = ACTIONS(3159), + [anon_sym_i64] = ACTIONS(3159), + [anon_sym_u128] = ACTIONS(3159), + [anon_sym_i128] = ACTIONS(3159), + [anon_sym_isize] = ACTIONS(3159), + [anon_sym_usize] = ACTIONS(3159), + [anon_sym_f32] = ACTIONS(3159), + [anon_sym_f64] = ACTIONS(3159), + [anon_sym_bool] = ACTIONS(3159), + [anon_sym_str] = ACTIONS(3159), + [anon_sym_char] = ACTIONS(3159), + [anon_sym_BANG] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3165), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(3167), + [anon_sym_fn] = ACTIONS(3169), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(3171), + [anon_sym_impl] = ACTIONS(3173), + [anon_sym_union] = ACTIONS(3171), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(3175), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3179), + [sym_super] = ACTIONS(3179), + [sym_crate] = ACTIONS(3179), + [sym_metavariable] = ACTIONS(3181), + }, + [STATE(1083)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2527), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), + [sym_line_comment] = STATE(1083), + [sym_block_comment] = STATE(1083), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + }, + [STATE(1084)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2149), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), + [sym_line_comment] = STATE(1084), + [sym_block_comment] = STATE(1084), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + }, + [STATE(1085)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2115), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(3836), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2115), + [sym_tuple_type] = STATE(2115), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2106), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2115), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2086), + [sym_line_comment] = STATE(1085), + [sym_block_comment] = STATE(1085), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(3299), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + }, + [STATE(1086)] = { + [sym_function_modifiers] = STATE(3835), + [sym_removed_trait_bound] = STATE(1488), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(1475), + [sym_bracketed_type] = STATE(3745), + [sym_lifetime] = STATE(1475), + [sym_array_type] = STATE(1488), + [sym_for_lifetimes] = STATE(1690), + [sym_function_type] = STATE(1488), + [sym_tuple_type] = STATE(1488), + [sym_unit_type] = STATE(1488), + [sym_generic_type] = STATE(1399), + [sym_generic_type_with_turbofish] = STATE(3732), + [sym_bounded_type] = STATE(1488), + [sym_use_bounds] = STATE(1475), + [sym_reference_type] = STATE(1488), + [sym_pointer_type] = STATE(1488), + [sym_never_type] = STATE(1488), + [sym_abstract_type] = STATE(1488), + [sym_dynamic_type] = STATE(1488), + [sym_macro_invocation] = STATE(1488), + [sym_scoped_identifier] = STATE(3405), + [sym_scoped_type_identifier] = STATE(1121), + [sym_line_comment] = STATE(1086), + [sym_block_comment] = STATE(1086), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(3147), + [anon_sym_LPAREN] = ACTIONS(3149), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_STAR] = ACTIONS(3155), + [anon_sym_QMARK] = ACTIONS(3157), + [anon_sym_u8] = ACTIONS(3159), + [anon_sym_i8] = ACTIONS(3159), + [anon_sym_u16] = ACTIONS(3159), + [anon_sym_i16] = ACTIONS(3159), + [anon_sym_u32] = ACTIONS(3159), + [anon_sym_i32] = ACTIONS(3159), + [anon_sym_u64] = ACTIONS(3159), + [anon_sym_i64] = ACTIONS(3159), + [anon_sym_u128] = ACTIONS(3159), + [anon_sym_i128] = ACTIONS(3159), + [anon_sym_isize] = ACTIONS(3159), + [anon_sym_usize] = ACTIONS(3159), + [anon_sym_f32] = ACTIONS(3159), + [anon_sym_f64] = ACTIONS(3159), + [anon_sym_bool] = ACTIONS(3159), + [anon_sym_str] = ACTIONS(3159), + [anon_sym_char] = ACTIONS(3159), + [anon_sym_BANG] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3165), + [anon_sym_SQUOTE] = ACTIONS(3301), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(3167), + [anon_sym_fn] = ACTIONS(3169), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(3171), + [anon_sym_impl] = ACTIONS(3173), + [anon_sym_union] = ACTIONS(3171), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(3303), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(3175), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3179), + [sym_super] = ACTIONS(3179), + [sym_crate] = ACTIONS(3179), + [sym_metavariable] = ACTIONS(3181), + }, + [STATE(1087)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2348), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), + [sym_line_comment] = STATE(1087), + [sym_block_comment] = STATE(1087), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + }, + [STATE(1088)] = { + [sym_function_modifiers] = STATE(3874), + [sym_removed_trait_bound] = STATE(2138), + [sym_extern_modifier] = STATE(2535), + [sym__type] = STATE(2352), + [sym_bracketed_type] = STATE(3816), + [sym_lifetime] = STATE(3836), + [sym_array_type] = STATE(2138), + [sym_for_lifetimes] = STATE(1698), + [sym_function_type] = STATE(2138), + [sym_tuple_type] = STATE(2138), + [sym_unit_type] = STATE(2138), + [sym_generic_type] = STATE(2103), + [sym_generic_type_with_turbofish] = STATE(3664), + [sym_bounded_type] = STATE(2138), + [sym_use_bounds] = STATE(3836), + [sym_reference_type] = STATE(2138), + [sym_pointer_type] = STATE(2138), + [sym_never_type] = STATE(2138), + [sym_abstract_type] = STATE(2138), + [sym_dynamic_type] = STATE(2138), + [sym_macro_invocation] = STATE(2138), + [sym_scoped_identifier] = STATE(3465), + [sym_scoped_type_identifier] = STATE(2087), + [sym_line_comment] = STATE(1088), + [sym_block_comment] = STATE(1088), + [aux_sym_function_modifiers_repeat1] = STATE(2385), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(1091), + [anon_sym_const] = ACTIONS(1091), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1103), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1107), + [anon_sym_dyn] = ACTIONS(1111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + }, + [STATE(1089)] = { + [sym_attribute_item] = STATE(1094), + [sym_line_comment] = STATE(1089), + [sym_block_comment] = STATE(1089), + [aux_sym_attributes_repeat1] = STATE(1089), + [sym_identifier] = ACTIONS(2122), + [anon_sym_LPAREN] = ACTIONS(2124), + [anon_sym_LBRACK] = ACTIONS(2124), + [anon_sym_RBRACK] = ACTIONS(2124), + [anon_sym_LBRACE] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(2124), + [anon_sym_u8] = ACTIONS(2122), + [anon_sym_i8] = ACTIONS(2122), + [anon_sym_u16] = ACTIONS(2122), + [anon_sym_i16] = ACTIONS(2122), + [anon_sym_u32] = ACTIONS(2122), + [anon_sym_i32] = ACTIONS(2122), + [anon_sym_u64] = ACTIONS(2122), + [anon_sym_i64] = ACTIONS(2122), + [anon_sym_u128] = ACTIONS(2122), + [anon_sym_i128] = ACTIONS(2122), + [anon_sym_isize] = ACTIONS(2122), + [anon_sym_usize] = ACTIONS(2122), + [anon_sym_f32] = ACTIONS(2122), + [anon_sym_f64] = ACTIONS(2122), + [anon_sym_bool] = ACTIONS(2122), + [anon_sym_str] = ACTIONS(2122), + [anon_sym_char] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_AMP] = ACTIONS(2124), + [anon_sym_PIPE] = ACTIONS(2124), + [anon_sym_LT] = ACTIONS(2124), + [anon_sym_DOT_DOT] = ACTIONS(2124), + [anon_sym_COMMA] = ACTIONS(2124), + [anon_sym_COLON_COLON] = ACTIONS(2124), + [anon_sym_POUND] = ACTIONS(3305), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_async] = ACTIONS(2122), + [anon_sym_break] = ACTIONS(2122), + [anon_sym_const] = ACTIONS(2122), + [anon_sym_continue] = ACTIONS(2122), + [anon_sym_default] = ACTIONS(2122), + [anon_sym_for] = ACTIONS(2122), + [anon_sym_gen] = ACTIONS(2122), + [anon_sym_if] = ACTIONS(2122), + [anon_sym_loop] = ACTIONS(2122), + [anon_sym_match] = ACTIONS(2122), + [anon_sym_return] = ACTIONS(2122), + [anon_sym_static] = ACTIONS(2122), + [anon_sym_union] = ACTIONS(2122), + [anon_sym_unsafe] = ACTIONS(2122), + [anon_sym_while] = ACTIONS(2122), + [anon_sym_yield] = ACTIONS(2122), + [anon_sym_move] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2122), + [sym_integer_literal] = ACTIONS(2124), + [aux_sym_string_literal_token1] = ACTIONS(2124), + [sym_char_literal] = ACTIONS(2124), + [anon_sym_true] = ACTIONS(2122), + [anon_sym_false] = ACTIONS(2122), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2122), + [sym_super] = ACTIONS(2122), + [sym_crate] = ACTIONS(2122), + [sym_metavariable] = ACTIONS(2124), + [sym__raw_string_literal_start] = ACTIONS(2124), + [sym_float_literal] = ACTIONS(2124), + }, + [STATE(1090)] = { + [sym_attribute_item] = STATE(1094), + [sym_line_comment] = STATE(1090), + [sym_block_comment] = STATE(1090), + [aux_sym_attributes_repeat1] = STATE(1089), + [sym_identifier] = ACTIONS(2921), + [anon_sym_LPAREN] = ACTIONS(2923), + [anon_sym_LBRACK] = ACTIONS(2923), + [anon_sym_RBRACK] = ACTIONS(2923), + [anon_sym_LBRACE] = ACTIONS(2923), + [anon_sym_STAR] = ACTIONS(2923), + [anon_sym_u8] = ACTIONS(2921), + [anon_sym_i8] = ACTIONS(2921), + [anon_sym_u16] = ACTIONS(2921), + [anon_sym_i16] = ACTIONS(2921), + [anon_sym_u32] = ACTIONS(2921), + [anon_sym_i32] = ACTIONS(2921), + [anon_sym_u64] = ACTIONS(2921), + [anon_sym_i64] = ACTIONS(2921), + [anon_sym_u128] = ACTIONS(2921), + [anon_sym_i128] = ACTIONS(2921), + [anon_sym_isize] = ACTIONS(2921), + [anon_sym_usize] = ACTIONS(2921), + [anon_sym_f32] = ACTIONS(2921), + [anon_sym_f64] = ACTIONS(2921), + [anon_sym_bool] = ACTIONS(2921), + [anon_sym_str] = ACTIONS(2921), + [anon_sym_char] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2923), + [anon_sym_BANG] = ACTIONS(2923), + [anon_sym_AMP] = ACTIONS(2923), + [anon_sym_PIPE] = ACTIONS(2923), + [anon_sym_LT] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2923), + [anon_sym_COMMA] = ACTIONS(2923), + [anon_sym_COLON_COLON] = ACTIONS(2923), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(2921), + [anon_sym_async] = ACTIONS(2921), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_const] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2921), + [anon_sym_default] = ACTIONS(2921), + [anon_sym_for] = ACTIONS(2921), + [anon_sym_gen] = ACTIONS(2921), + [anon_sym_if] = ACTIONS(2921), + [anon_sym_loop] = ACTIONS(2921), + [anon_sym_match] = ACTIONS(2921), + [anon_sym_return] = ACTIONS(2921), + [anon_sym_static] = ACTIONS(2921), + [anon_sym_union] = ACTIONS(2921), + [anon_sym_unsafe] = ACTIONS(2921), + [anon_sym_while] = ACTIONS(2921), + [anon_sym_yield] = ACTIONS(2921), + [anon_sym_move] = ACTIONS(2921), + [anon_sym_try] = ACTIONS(2921), + [sym_integer_literal] = ACTIONS(2923), + [aux_sym_string_literal_token1] = ACTIONS(2923), + [sym_char_literal] = ACTIONS(2923), + [anon_sym_true] = ACTIONS(2921), + [anon_sym_false] = ACTIONS(2921), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2921), + [sym_super] = ACTIONS(2921), + [sym_crate] = ACTIONS(2921), + [sym_metavariable] = ACTIONS(2923), + [sym__raw_string_literal_start] = ACTIONS(2923), + [sym_float_literal] = ACTIONS(2923), + }, + [STATE(1091)] = { + [sym_line_comment] = STATE(1091), + [sym_block_comment] = STATE(1091), + [sym_identifier] = ACTIONS(1509), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_LBRACK] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_STAR] = ACTIONS(1511), + [anon_sym_u8] = ACTIONS(1509), + [anon_sym_i8] = ACTIONS(1509), + [anon_sym_u16] = ACTIONS(1509), + [anon_sym_i16] = ACTIONS(1509), + [anon_sym_u32] = ACTIONS(1509), + [anon_sym_i32] = ACTIONS(1509), + [anon_sym_u64] = ACTIONS(1509), + [anon_sym_i64] = ACTIONS(1509), + [anon_sym_u128] = ACTIONS(1509), + [anon_sym_i128] = ACTIONS(1509), + [anon_sym_isize] = ACTIONS(1509), + [anon_sym_usize] = ACTIONS(1509), + [anon_sym_f32] = ACTIONS(1509), + [anon_sym_f64] = ACTIONS(1509), + [anon_sym_bool] = ACTIONS(1509), + [anon_sym_str] = ACTIONS(1509), + [anon_sym_char] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_PIPE] = ACTIONS(1511), + [anon_sym_LT] = ACTIONS(1511), + [anon_sym__] = ACTIONS(1509), + [anon_sym_DOT_DOT] = ACTIONS(1511), + [anon_sym_COLON_COLON] = ACTIONS(1511), + [anon_sym_DASH_GT] = ACTIONS(1511), + [anon_sym_POUND] = ACTIONS(1511), + [anon_sym_SQUOTE] = ACTIONS(1509), + [anon_sym_async] = ACTIONS(1509), + [anon_sym_break] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_continue] = ACTIONS(1509), + [anon_sym_default] = ACTIONS(1509), + [anon_sym_for] = ACTIONS(1509), + [anon_sym_gen] = ACTIONS(1509), + [anon_sym_if] = ACTIONS(1509), + [anon_sym_loop] = ACTIONS(1509), + [anon_sym_match] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_union] = ACTIONS(1509), + [anon_sym_unsafe] = ACTIONS(1509), + [anon_sym_while] = ACTIONS(1509), + [anon_sym_yield] = ACTIONS(1509), + [anon_sym_move] = ACTIONS(1509), + [anon_sym_try] = ACTIONS(1509), + [sym_integer_literal] = ACTIONS(1511), + [aux_sym_string_literal_token1] = ACTIONS(1511), + [sym_char_literal] = ACTIONS(1511), + [anon_sym_true] = ACTIONS(1509), + [anon_sym_false] = ACTIONS(1509), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1509), + [sym_super] = ACTIONS(1509), + [sym_crate] = ACTIONS(1509), + [sym_metavariable] = ACTIONS(1511), + [sym__raw_string_literal_start] = ACTIONS(1511), + [sym_float_literal] = ACTIONS(1511), + }, + [STATE(1092)] = { + [sym_line_comment] = STATE(1092), + [sym_block_comment] = STATE(1092), + [sym_identifier] = ACTIONS(3308), + [anon_sym_LPAREN] = ACTIONS(3310), + [anon_sym_LBRACK] = ACTIONS(3310), + [anon_sym_LBRACE] = ACTIONS(3310), + [anon_sym_STAR] = ACTIONS(3310), + [anon_sym_u8] = ACTIONS(3308), + [anon_sym_i8] = ACTIONS(3308), + [anon_sym_u16] = ACTIONS(3308), + [anon_sym_i16] = ACTIONS(3308), + [anon_sym_u32] = ACTIONS(3308), + [anon_sym_i32] = ACTIONS(3308), + [anon_sym_u64] = ACTIONS(3308), + [anon_sym_i64] = ACTIONS(3308), + [anon_sym_u128] = ACTIONS(3308), + [anon_sym_i128] = ACTIONS(3308), + [anon_sym_isize] = ACTIONS(3308), + [anon_sym_usize] = ACTIONS(3308), + [anon_sym_f32] = ACTIONS(3308), + [anon_sym_f64] = ACTIONS(3308), + [anon_sym_bool] = ACTIONS(3308), + [anon_sym_str] = ACTIONS(3308), + [anon_sym_char] = ACTIONS(3308), + [anon_sym_DASH] = ACTIONS(3308), + [anon_sym_BANG] = ACTIONS(3310), + [anon_sym_AMP] = ACTIONS(3310), + [anon_sym_PIPE] = ACTIONS(3310), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym__] = ACTIONS(3308), + [anon_sym_DOT_DOT] = ACTIONS(3310), + [anon_sym_COLON_COLON] = ACTIONS(3310), + [anon_sym_DASH_GT] = ACTIONS(3310), + [anon_sym_POUND] = ACTIONS(3310), + [anon_sym_SQUOTE] = ACTIONS(3308), + [anon_sym_async] = ACTIONS(3308), + [anon_sym_break] = ACTIONS(3308), + [anon_sym_const] = ACTIONS(3308), + [anon_sym_continue] = ACTIONS(3308), + [anon_sym_default] = ACTIONS(3308), + [anon_sym_for] = ACTIONS(3308), + [anon_sym_gen] = ACTIONS(3308), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_loop] = ACTIONS(3308), + [anon_sym_match] = ACTIONS(3308), + [anon_sym_return] = ACTIONS(3308), + [anon_sym_static] = ACTIONS(3308), + [anon_sym_union] = ACTIONS(3308), + [anon_sym_unsafe] = ACTIONS(3308), + [anon_sym_while] = ACTIONS(3308), + [anon_sym_yield] = ACTIONS(3308), + [anon_sym_move] = ACTIONS(3308), + [anon_sym_try] = ACTIONS(3308), + [sym_integer_literal] = ACTIONS(3310), + [aux_sym_string_literal_token1] = ACTIONS(3310), + [sym_char_literal] = ACTIONS(3310), + [anon_sym_true] = ACTIONS(3308), + [anon_sym_false] = ACTIONS(3308), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3308), + [sym_super] = ACTIONS(3308), + [sym_crate] = ACTIONS(3308), + [sym_metavariable] = ACTIONS(3310), + [sym__raw_string_literal_start] = ACTIONS(3310), + [sym_float_literal] = ACTIONS(3310), + }, + [STATE(1093)] = { + [sym_line_comment] = STATE(1093), + [sym_block_comment] = STATE(1093), + [sym_identifier] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(3025), + [anon_sym_RBRACK] = ACTIONS(3025), + [anon_sym_LBRACE] = ACTIONS(3025), + [anon_sym_STAR] = ACTIONS(3025), + [anon_sym_u8] = ACTIONS(3023), + [anon_sym_i8] = ACTIONS(3023), + [anon_sym_u16] = ACTIONS(3023), + [anon_sym_i16] = ACTIONS(3023), + [anon_sym_u32] = ACTIONS(3023), + [anon_sym_i32] = ACTIONS(3023), + [anon_sym_u64] = ACTIONS(3023), + [anon_sym_i64] = ACTIONS(3023), + [anon_sym_u128] = ACTIONS(3023), + [anon_sym_i128] = ACTIONS(3023), + [anon_sym_isize] = ACTIONS(3023), + [anon_sym_usize] = ACTIONS(3023), + [anon_sym_f32] = ACTIONS(3023), + [anon_sym_f64] = ACTIONS(3023), + [anon_sym_bool] = ACTIONS(3023), + [anon_sym_str] = ACTIONS(3023), + [anon_sym_char] = ACTIONS(3023), + [anon_sym_DASH] = ACTIONS(3025), + [anon_sym_BANG] = ACTIONS(3025), + [anon_sym_AMP] = ACTIONS(3025), + [anon_sym_PIPE] = ACTIONS(3025), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_DOT_DOT] = ACTIONS(3025), + [anon_sym_COMMA] = ACTIONS(3025), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_POUND] = ACTIONS(3025), + [anon_sym_SQUOTE] = ACTIONS(3023), + [anon_sym_async] = ACTIONS(3023), + [anon_sym_break] = ACTIONS(3023), + [anon_sym_const] = ACTIONS(3023), + [anon_sym_continue] = ACTIONS(3023), + [anon_sym_default] = ACTIONS(3023), + [anon_sym_for] = ACTIONS(3023), + [anon_sym_gen] = ACTIONS(3023), + [anon_sym_if] = ACTIONS(3023), + [anon_sym_loop] = ACTIONS(3023), + [anon_sym_match] = ACTIONS(3023), + [anon_sym_return] = ACTIONS(3023), + [anon_sym_static] = ACTIONS(3023), + [anon_sym_union] = ACTIONS(3023), + [anon_sym_unsafe] = ACTIONS(3023), + [anon_sym_while] = ACTIONS(3023), + [anon_sym_yield] = ACTIONS(3023), + [anon_sym_move] = ACTIONS(3023), + [anon_sym_try] = ACTIONS(3023), + [sym_integer_literal] = ACTIONS(3025), + [aux_sym_string_literal_token1] = ACTIONS(3025), + [sym_char_literal] = ACTIONS(3025), + [anon_sym_true] = ACTIONS(3023), + [anon_sym_false] = ACTIONS(3023), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3023), + [sym_super] = ACTIONS(3023), + [sym_crate] = ACTIONS(3023), + [sym_metavariable] = ACTIONS(3025), + [sym__raw_string_literal_start] = ACTIONS(3025), + [sym_float_literal] = ACTIONS(3025), + }, + [STATE(1094)] = { + [sym_line_comment] = STATE(1094), + [sym_block_comment] = STATE(1094), + [sym_identifier] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(3029), + [anon_sym_LBRACK] = ACTIONS(3029), + [anon_sym_RBRACK] = ACTIONS(3029), + [anon_sym_LBRACE] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3029), + [anon_sym_u8] = ACTIONS(3027), + [anon_sym_i8] = ACTIONS(3027), + [anon_sym_u16] = ACTIONS(3027), + [anon_sym_i16] = ACTIONS(3027), + [anon_sym_u32] = ACTIONS(3027), + [anon_sym_i32] = ACTIONS(3027), + [anon_sym_u64] = ACTIONS(3027), + [anon_sym_i64] = ACTIONS(3027), + [anon_sym_u128] = ACTIONS(3027), + [anon_sym_i128] = ACTIONS(3027), + [anon_sym_isize] = ACTIONS(3027), + [anon_sym_usize] = ACTIONS(3027), + [anon_sym_f32] = ACTIONS(3027), + [anon_sym_f64] = ACTIONS(3027), + [anon_sym_bool] = ACTIONS(3027), + [anon_sym_str] = ACTIONS(3027), + [anon_sym_char] = ACTIONS(3027), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_BANG] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3029), + [anon_sym_PIPE] = ACTIONS(3029), + [anon_sym_LT] = ACTIONS(3029), + [anon_sym_DOT_DOT] = ACTIONS(3029), + [anon_sym_COMMA] = ACTIONS(3029), + [anon_sym_COLON_COLON] = ACTIONS(3029), + [anon_sym_POUND] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3027), + [anon_sym_async] = ACTIONS(3027), + [anon_sym_break] = ACTIONS(3027), + [anon_sym_const] = ACTIONS(3027), + [anon_sym_continue] = ACTIONS(3027), + [anon_sym_default] = ACTIONS(3027), + [anon_sym_for] = ACTIONS(3027), + [anon_sym_gen] = ACTIONS(3027), + [anon_sym_if] = ACTIONS(3027), + [anon_sym_loop] = ACTIONS(3027), + [anon_sym_match] = ACTIONS(3027), + [anon_sym_return] = ACTIONS(3027), + [anon_sym_static] = ACTIONS(3027), + [anon_sym_union] = ACTIONS(3027), + [anon_sym_unsafe] = ACTIONS(3027), + [anon_sym_while] = ACTIONS(3027), + [anon_sym_yield] = ACTIONS(3027), + [anon_sym_move] = ACTIONS(3027), + [anon_sym_try] = ACTIONS(3027), + [sym_integer_literal] = ACTIONS(3029), + [aux_sym_string_literal_token1] = ACTIONS(3029), + [sym_char_literal] = ACTIONS(3029), + [anon_sym_true] = ACTIONS(3027), + [anon_sym_false] = ACTIONS(3027), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3027), + [sym_super] = ACTIONS(3027), + [sym_crate] = ACTIONS(3027), + [sym_metavariable] = ACTIONS(3029), + [sym__raw_string_literal_start] = ACTIONS(3029), + [sym_float_literal] = ACTIONS(3029), + }, + [STATE(1095)] = { + [sym_line_comment] = STATE(1095), + [sym_block_comment] = STATE(1095), + [sym_identifier] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(866), + [anon_sym_RPAREN] = ACTIONS(866), + [anon_sym_LBRACK] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(866), + [anon_sym_STAR] = ACTIONS(866), + [anon_sym_u8] = ACTIONS(3312), + [anon_sym_i8] = ACTIONS(3312), + [anon_sym_u16] = ACTIONS(3312), + [anon_sym_i16] = ACTIONS(3312), + [anon_sym_u32] = ACTIONS(3312), + [anon_sym_i32] = ACTIONS(3312), + [anon_sym_u64] = ACTIONS(3312), + [anon_sym_i64] = ACTIONS(3312), + [anon_sym_u128] = ACTIONS(3312), + [anon_sym_i128] = ACTIONS(3312), + [anon_sym_isize] = ACTIONS(3312), + [anon_sym_usize] = ACTIONS(3312), + [anon_sym_f32] = ACTIONS(3312), + [anon_sym_f64] = ACTIONS(3312), + [anon_sym_bool] = ACTIONS(3312), + [anon_sym_str] = ACTIONS(3312), + [anon_sym_char] = ACTIONS(3312), + [anon_sym_DASH] = ACTIONS(866), + [anon_sym_BANG] = ACTIONS(866), + [anon_sym_AMP] = ACTIONS(866), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_LT] = ACTIONS(866), + [anon_sym_DOT_DOT] = ACTIONS(866), + [anon_sym_COLON_COLON] = ACTIONS(866), + [anon_sym_POUND] = ACTIONS(866), + [anon_sym_SQUOTE] = ACTIONS(3312), + [anon_sym_async] = ACTIONS(3312), + [anon_sym_break] = ACTIONS(3312), + [anon_sym_const] = ACTIONS(3312), + [anon_sym_continue] = ACTIONS(3312), + [anon_sym_default] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3312), + [anon_sym_gen] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_loop] = ACTIONS(3312), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_return] = ACTIONS(3312), + [anon_sym_static] = ACTIONS(3312), + [anon_sym_union] = ACTIONS(3312), + [anon_sym_unsafe] = ACTIONS(3312), + [anon_sym_while] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3312), + [anon_sym_move] = ACTIONS(3312), + [anon_sym_try] = ACTIONS(3312), + [sym_integer_literal] = ACTIONS(866), + [aux_sym_string_literal_token1] = ACTIONS(866), + [sym_char_literal] = ACTIONS(866), + [anon_sym_true] = ACTIONS(3312), + [anon_sym_false] = ACTIONS(3312), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3312), + [sym_super] = ACTIONS(3312), + [sym_crate] = ACTIONS(3312), + [sym_metavariable] = ACTIONS(866), + [sym__raw_string_literal_start] = ACTIONS(866), + [sym_float_literal] = ACTIONS(866), + }, + [STATE(1096)] = { + [sym_attribute_item] = STATE(1098), + [sym_line_comment] = STATE(1096), + [sym_block_comment] = STATE(1096), + [aux_sym_attributes_repeat1] = STATE(1096), + [sym_identifier] = ACTIONS(2122), + [anon_sym_LPAREN] = ACTIONS(2124), + [anon_sym_LBRACK] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(2124), + [anon_sym_QMARK] = ACTIONS(2124), + [anon_sym_u8] = ACTIONS(2122), + [anon_sym_i8] = ACTIONS(2122), + [anon_sym_u16] = ACTIONS(2122), + [anon_sym_i16] = ACTIONS(2122), + [anon_sym_u32] = ACTIONS(2122), + [anon_sym_i32] = ACTIONS(2122), + [anon_sym_u64] = ACTIONS(2122), + [anon_sym_i64] = ACTIONS(2122), + [anon_sym_u128] = ACTIONS(2122), + [anon_sym_i128] = ACTIONS(2122), + [anon_sym_isize] = ACTIONS(2122), + [anon_sym_usize] = ACTIONS(2122), + [anon_sym_f32] = ACTIONS(2122), + [anon_sym_f64] = ACTIONS(2122), + [anon_sym_bool] = ACTIONS(2122), + [anon_sym_str] = ACTIONS(2122), + [anon_sym_char] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_AMP] = ACTIONS(2124), + [anon_sym_PIPE] = ACTIONS(2124), + [anon_sym_LT] = ACTIONS(2124), + [anon_sym__] = ACTIONS(2122), + [anon_sym_DOT_DOT] = ACTIONS(2122), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2124), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2124), + [anon_sym_COLON_COLON] = ACTIONS(2124), + [anon_sym_POUND] = ACTIONS(3314), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_async] = ACTIONS(2122), + [anon_sym_const] = ACTIONS(2122), + [anon_sym_default] = ACTIONS(2122), + [anon_sym_fn] = ACTIONS(2122), + [anon_sym_for] = ACTIONS(2122), + [anon_sym_gen] = ACTIONS(2122), + [anon_sym_impl] = ACTIONS(2122), + [anon_sym_union] = ACTIONS(2122), + [anon_sym_unsafe] = ACTIONS(2122), + [anon_sym_use] = ACTIONS(2122), + [anon_sym_extern] = ACTIONS(2122), + [anon_sym_ref] = ACTIONS(2122), + [anon_sym_dyn] = ACTIONS(2122), + [sym_mutable_specifier] = ACTIONS(2122), + [sym_integer_literal] = ACTIONS(2124), + [aux_sym_string_literal_token1] = ACTIONS(2124), + [sym_char_literal] = ACTIONS(2124), + [anon_sym_true] = ACTIONS(2122), + [anon_sym_false] = ACTIONS(2122), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2122), + [sym_super] = ACTIONS(2122), + [sym_crate] = ACTIONS(2122), + [sym_metavariable] = ACTIONS(2124), + [sym__raw_string_literal_start] = ACTIONS(2124), + [sym_float_literal] = ACTIONS(2124), + }, + [STATE(1097)] = { + [sym_attribute_item] = STATE(1098), + [sym_line_comment] = STATE(1097), + [sym_block_comment] = STATE(1097), + [aux_sym_attributes_repeat1] = STATE(1096), + [sym_identifier] = ACTIONS(2921), + [anon_sym_LPAREN] = ACTIONS(2923), + [anon_sym_LBRACK] = ACTIONS(2923), + [anon_sym_STAR] = ACTIONS(2923), + [anon_sym_QMARK] = ACTIONS(2923), + [anon_sym_u8] = ACTIONS(2921), + [anon_sym_i8] = ACTIONS(2921), + [anon_sym_u16] = ACTIONS(2921), + [anon_sym_i16] = ACTIONS(2921), + [anon_sym_u32] = ACTIONS(2921), + [anon_sym_i32] = ACTIONS(2921), + [anon_sym_u64] = ACTIONS(2921), + [anon_sym_i64] = ACTIONS(2921), + [anon_sym_u128] = ACTIONS(2921), + [anon_sym_i128] = ACTIONS(2921), + [anon_sym_isize] = ACTIONS(2921), + [anon_sym_usize] = ACTIONS(2921), + [anon_sym_f32] = ACTIONS(2921), + [anon_sym_f64] = ACTIONS(2921), + [anon_sym_bool] = ACTIONS(2921), + [anon_sym_str] = ACTIONS(2921), + [anon_sym_char] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2923), + [anon_sym_BANG] = ACTIONS(2923), + [anon_sym_AMP] = ACTIONS(2923), + [anon_sym_PIPE] = ACTIONS(2923), + [anon_sym_LT] = ACTIONS(2923), + [anon_sym__] = ACTIONS(2921), + [anon_sym_DOT_DOT] = ACTIONS(2921), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2923), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2923), + [anon_sym_COLON_COLON] = ACTIONS(2923), + [anon_sym_POUND] = ACTIONS(1087), + [anon_sym_SQUOTE] = ACTIONS(2921), + [anon_sym_async] = ACTIONS(2921), + [anon_sym_const] = ACTIONS(2921), + [anon_sym_default] = ACTIONS(2921), + [anon_sym_fn] = ACTIONS(2921), + [anon_sym_for] = ACTIONS(2921), + [anon_sym_gen] = ACTIONS(2921), + [anon_sym_impl] = ACTIONS(2921), + [anon_sym_union] = ACTIONS(2921), + [anon_sym_unsafe] = ACTIONS(2921), + [anon_sym_use] = ACTIONS(2921), + [anon_sym_extern] = ACTIONS(2921), + [anon_sym_ref] = ACTIONS(2921), + [anon_sym_dyn] = ACTIONS(2921), + [sym_mutable_specifier] = ACTIONS(2921), + [sym_integer_literal] = ACTIONS(2923), + [aux_sym_string_literal_token1] = ACTIONS(2923), + [sym_char_literal] = ACTIONS(2923), + [anon_sym_true] = ACTIONS(2921), + [anon_sym_false] = ACTIONS(2921), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2921), + [sym_super] = ACTIONS(2921), + [sym_crate] = ACTIONS(2921), + [sym_metavariable] = ACTIONS(2923), + [sym__raw_string_literal_start] = ACTIONS(2923), + [sym_float_literal] = ACTIONS(2923), + }, +}; + static const uint16_t ts_small_parse_table[] = { [0] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1063), 2, + STATE(1098), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3029), 19, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3027), 40, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_ref, + anon_sym_dyn, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [74] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1099), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3025), 19, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3023), 40, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_ref, + anon_sym_dyn, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [148] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1100), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3319), 20, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3317), 36, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_where, + anon_sym_extern, + anon_sym_else, + anon_sym_dyn, + sym_mutable_specifier, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [219] = 21, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1067), 1, + anon_sym_DASH, + ACTIONS(1117), 1, + aux_sym_string_literal_token1, + ACTIONS(1127), 1, + sym__raw_string_literal_start, + ACTIONS(1649), 1, + anon_sym_COLON_COLON, + ACTIONS(3321), 1, + sym_identifier, + ACTIONS(3331), 1, + sym_metavariable, + STATE(2206), 1, + sym_scoped_identifier, + STATE(2297), 1, + sym__literal_pattern, + STATE(3798), 1, + sym_bracketed_type, + STATE(3872), 1, + sym_generic_type_with_turbofish, + ACTIONS(1119), 2, + anon_sym_true, + anon_sym_false, + STATE(1101), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1115), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3325), 3, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + ACTIONS(3329), 3, + sym_self, + sym_super, + sym_crate, + STATE(2165), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3323), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + ACTIONS(3327), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [319] = 21, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1067), 1, + anon_sym_DASH, + ACTIONS(1117), 1, + aux_sym_string_literal_token1, + ACTIONS(1127), 1, + sym__raw_string_literal_start, + ACTIONS(1649), 1, + anon_sym_COLON_COLON, + ACTIONS(3333), 1, + sym_identifier, + ACTIONS(3343), 1, + sym_metavariable, + STATE(2240), 1, + sym_scoped_identifier, + STATE(2295), 1, + sym__literal_pattern, + STATE(3798), 1, + sym_bracketed_type, + STATE(3872), 1, + sym_generic_type_with_turbofish, + ACTIONS(1119), 2, + anon_sym_true, + anon_sym_false, + STATE(1102), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1115), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3337), 3, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + ACTIONS(3341), 3, + sym_self, + sym_super, + sym_crate, + STATE(2165), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3335), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + ACTIONS(3339), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [419] = 21, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1067), 1, + anon_sym_DASH, + ACTIONS(1117), 1, + aux_sym_string_literal_token1, + ACTIONS(1127), 1, + sym__raw_string_literal_start, + ACTIONS(1649), 1, + anon_sym_COLON_COLON, + ACTIONS(3345), 1, + sym_identifier, + ACTIONS(3355), 1, + sym_metavariable, + STATE(2221), 1, + sym_scoped_identifier, + STATE(2281), 1, + sym__literal_pattern, + STATE(3798), 1, + sym_bracketed_type, + STATE(3872), 1, + sym_generic_type_with_turbofish, + ACTIONS(1119), 2, + anon_sym_true, + anon_sym_false, + STATE(1103), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1115), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3349), 3, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + ACTIONS(3353), 3, + sym_self, + sym_super, + sym_crate, + STATE(2165), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3347), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + ACTIONS(3351), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [519] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3359), 1, + anon_sym_LPAREN, + ACTIONS(3363), 1, + anon_sym_BANG, + ACTIONS(3365), 1, + anon_sym_COLON_COLON, + ACTIONS(3367), 1, + anon_sym_LT2, + STATE(1414), 1, + sym_type_arguments, + STATE(1422), 1, + sym_parameters, + STATE(1104), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3361), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3357), 27, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [596] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3359), 1, + anon_sym_LPAREN, + ACTIONS(3365), 1, + anon_sym_COLON_COLON, + ACTIONS(3367), 1, + anon_sym_LT2, + ACTIONS(3373), 1, + anon_sym_BANG, + STATE(1414), 1, + sym_type_arguments, + STATE(1422), 1, + sym_parameters, + STATE(1105), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3371), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3369), 27, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [673] = 12, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(339), 1, + anon_sym_LBRACE, + ACTIONS(3379), 1, + anon_sym_BANG, + ACTIONS(3381), 1, + anon_sym_COLON_COLON, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + ACTIONS(3385), 1, + anon_sym_move, + STATE(1496), 1, + sym_block, + STATE(3775), 1, + sym_label, + STATE(1106), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3377), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3375), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + anon_sym_else, + [752] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3359), 1, + anon_sym_LPAREN, + ACTIONS(3363), 1, + anon_sym_BANG, + ACTIONS(3365), 1, + anon_sym_COLON_COLON, + ACTIONS(3367), 1, + anon_sym_LT2, + STATE(1414), 1, + sym_type_arguments, + STATE(1422), 1, + sym_parameters, + STATE(1107), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3389), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3387), 27, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [829] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1108), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1347), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1349), 40, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_if, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [893] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3359), 1, + anon_sym_LPAREN, + ACTIONS(3367), 1, + anon_sym_LT2, + ACTIONS(3395), 1, + anon_sym_COLON_COLON, + STATE(1414), 1, + sym_type_arguments, + STATE(1422), 1, + sym_parameters, + STATE(1109), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3393), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3391), 27, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [967] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1110), 2, sym_line_comment, sym_block_comment, - ACTIONS(1227), 18, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AMP, + ACTIONS(1293), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_LT, - anon_sym_DOT_DOT, anon_sym_COLON_COLON, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, + anon_sym_POUND, sym_metavariable, - ACTIONS(3386), 42, + ACTIONS(1291), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115915,59 +122109,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_SQUOTE, anon_sym_async, - anon_sym_break, anon_sym_const, - anon_sym_continue, anon_sym_default, - anon_sym_for, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_while, - anon_sym_yield, - anon_sym_move, - anon_sym_try, - anon_sym_true, - anon_sym_false, + anon_sym_use, + anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [75] = 5, + [1031] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1064), 2, + STATE(1111), 2, sym_line_comment, sym_block_comment, - ACTIONS(2378), 18, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AMP, + ACTIONS(1297), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_LT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, + anon_sym_POUND, sym_metavariable, - ACTIONS(2380), 40, + ACTIONS(1295), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115985,59 +122168,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_SQUOTE, anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_gen, + anon_sym_if, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, anon_sym_use, anon_sym_extern, - anon_sym_ref, - anon_sym_dyn, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [148] = 5, + [1095] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1065), 2, + STATE(1112), 2, sym_line_comment, sym_block_comment, - ACTIONS(3390), 20, + ACTIONS(1343), 9, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, + anon_sym_EQ_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3388), 36, + ACTIONS(1345), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116058,81 +122230,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_gen, + anon_sym_if, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, anon_sym_use, - anon_sym_where, anon_sym_extern, - anon_sym_else, - anon_sym_dyn, - sym_mutable_specifier, sym_identifier, sym_self, sym_super, sym_crate, - [219] = 21, - ACTIONS(29), 1, - anon_sym_LT, + [1159] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1117), 1, - anon_sym_DASH, - ACTIONS(1167), 1, - aux_sym_string_literal_token1, - ACTIONS(1177), 1, - sym__raw_string_literal_start, - ACTIONS(2098), 1, - anon_sym_COLON_COLON, - ACTIONS(3392), 1, - sym_identifier, - ACTIONS(3402), 1, - sym_metavariable, - STATE(2129), 1, - sym_scoped_identifier, - STATE(2204), 1, - sym__literal_pattern, - STATE(3732), 1, - sym_bracketed_type, - STATE(3800), 1, - sym_generic_type_with_turbofish, - ACTIONS(1169), 2, - anon_sym_true, - anon_sym_false, - STATE(1066), 2, + STATE(1113), 2, sym_line_comment, sym_block_comment, - ACTIONS(1165), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3396), 3, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - ACTIONS(3400), 3, - sym_self, - sym_super, - sym_crate, - STATE(2110), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3394), 7, + ACTIONS(1335), 9, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - ACTIONS(3398), 20, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1337), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116150,68 +122286,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, + anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_if, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - [319] = 21, - ACTIONS(29), 1, - anon_sym_LT, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [1223] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1117), 1, - anon_sym_DASH, - ACTIONS(1167), 1, - aux_sym_string_literal_token1, - ACTIONS(1177), 1, - sym__raw_string_literal_start, - ACTIONS(2098), 1, - anon_sym_COLON_COLON, - ACTIONS(3404), 1, - sym_identifier, - ACTIONS(3414), 1, - sym_metavariable, - STATE(2154), 1, - sym_scoped_identifier, - STATE(2216), 1, - sym__literal_pattern, - STATE(3732), 1, - sym_bracketed_type, - STATE(3800), 1, - sym_generic_type_with_turbofish, - ACTIONS(1169), 2, - anon_sym_true, - anon_sym_false, - STATE(1067), 2, + STATE(1114), 2, sym_line_comment, sym_block_comment, - ACTIONS(1165), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3408), 3, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - ACTIONS(3412), 3, - sym_self, - sym_super, - sym_crate, - STATE(2110), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3406), 7, + ACTIONS(1331), 9, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - ACTIONS(3410), 20, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1333), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116229,68 +122345,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, + anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_if, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - [419] = 21, - ACTIONS(29), 1, - anon_sym_LT, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [1287] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1117), 1, - anon_sym_DASH, - ACTIONS(1167), 1, - aux_sym_string_literal_token1, - ACTIONS(1177), 1, - sym__raw_string_literal_start, - ACTIONS(2098), 1, - anon_sym_COLON_COLON, - ACTIONS(3416), 1, - sym_identifier, - ACTIONS(3426), 1, - sym_metavariable, - STATE(2166), 1, - sym_scoped_identifier, - STATE(2179), 1, - sym__literal_pattern, - STATE(3732), 1, - sym_bracketed_type, - STATE(3800), 1, - sym_generic_type_with_turbofish, - ACTIONS(1169), 2, - anon_sym_true, - anon_sym_false, - STATE(1068), 2, + STATE(1115), 2, sym_line_comment, sym_block_comment, - ACTIONS(1165), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3420), 3, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - ACTIONS(3424), 3, + ACTIONS(1327), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1329), 40, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_if, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(2110), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3418), 7, + [1351] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1116), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1339), 9, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - ACTIONS(3422), 20, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1341), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116308,98 +122463,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, + anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_if, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - [519] = 11, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [1415] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, - anon_sym_LPAREN, - ACTIONS(3434), 1, - anon_sym_BANG, - ACTIONS(3436), 1, - anon_sym_COLON_COLON, - ACTIONS(3438), 1, - anon_sym_LT2, - STATE(1288), 1, - sym_type_arguments, - STATE(1301), 1, - sym_parameters, - STATE(1069), 2, + ACTIONS(3401), 1, + anon_sym_POUND, + STATE(1149), 1, + sym_inner_attribute_item, + STATE(1117), 3, sym_line_comment, sym_block_comment, - ACTIONS(3432), 17, - anon_sym_PLUS, - anon_sym_STAR, + aux_sym_match_block_repeat1, + ACTIONS(3399), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3397), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym__, anon_sym_DOT_DOT, - ACTIONS(3428), 27, + anon_sym_const, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [1483] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1118), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1437), 9, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [596] = 12, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1439), 40, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_if, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [1547] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3444), 1, + ACTIONS(3408), 1, anon_sym_BANG, - ACTIONS(3446), 1, + ACTIONS(3410), 1, anon_sym_COLON_COLON, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(3450), 1, - anon_sym_move, - STATE(1468), 1, - sym_block, - STATE(3714), 1, - sym_label, - STATE(1070), 2, + STATE(1119), 2, sym_line_comment, sym_block_comment, - ACTIONS(3442), 15, + ACTIONS(3406), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -116410,17 +122629,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3440), 28, + ACTIONS(3404), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -116433,38 +122655,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [675] = 11, + anon_sym_LT2, + [1614] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, - anon_sym_LPAREN, - ACTIONS(3436), 1, - anon_sym_COLON_COLON, - ACTIONS(3438), 1, - anon_sym_LT2, - ACTIONS(3456), 1, + ACTIONS(3416), 1, anon_sym_BANG, - STATE(1288), 1, - sym_type_arguments, - STATE(1301), 1, - sym_parameters, - STATE(1071), 2, + ACTIONS(3418), 1, + anon_sym_COLON_COLON, + STATE(1120), 2, sym_line_comment, sym_block_comment, - ACTIONS(3454), 17, + ACTIONS(3414), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -116482,8 +122696,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3452), 27, + ACTIONS(3412), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -116510,27 +122725,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [752] = 11, + anon_sym_LT2, + [1681] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, + ACTIONS(3359), 1, anon_sym_LPAREN, - ACTIONS(3434), 1, - anon_sym_BANG, - ACTIONS(3436), 1, - anon_sym_COLON_COLON, - ACTIONS(3438), 1, + ACTIONS(3367), 1, anon_sym_LT2, - STATE(1288), 1, + STATE(1415), 1, sym_type_arguments, - STATE(1301), 1, + STATE(1423), 1, sym_parameters, - STATE(1072), 2, + STATE(1121), 2, sym_line_comment, sym_block_comment, - ACTIONS(3460), 17, + ACTIONS(3422), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -116548,7 +122760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3458), 27, + ACTIONS(3420), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -116576,25 +122788,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [829] = 5, + [1752] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1073), 2, + ACTIONS(3424), 1, + anon_sym_POUND, + STATE(1406), 1, + sym_attribute_item, + STATE(1122), 3, sym_line_comment, sym_block_comment, - ACTIONS(1467), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ_GT, + aux_sym_attributes_repeat1, + ACTIONS(2124), 14, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(1469), 40, + ACTIONS(2122), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116612,48 +122834,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - anon_sym_if, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [893] = 5, + [1819] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1074), 2, + STATE(1123), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 9, + ACTIONS(2995), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_LT, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1451), 40, + ACTIONS(2997), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116677,7 +122890,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fn, anon_sym_gen, - anon_sym_if, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -116694,25 +122906,102 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [957] = 5, + [1882] = 24, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1521), 1, + anon_sym_LBRACK, + ACTIONS(3301), 1, + anon_sym_SQUOTE, + ACTIONS(3427), 1, + sym_identifier, + ACTIONS(3431), 1, + anon_sym_LPAREN, + ACTIONS(3433), 1, + anon_sym_STAR, + ACTIONS(3437), 1, + anon_sym_AMP, + ACTIONS(3439), 1, + anon_sym_COLON_COLON, + ACTIONS(3443), 1, + anon_sym_for, + ACTIONS(3447), 1, + sym_metavariable, + STATE(2586), 1, + sym_where_predicate, + STATE(2869), 1, + sym_scoped_type_identifier, + STATE(3113), 1, + sym_generic_type, + STATE(3692), 1, + sym_bracketed_type, + STATE(3823), 1, + sym_scoped_identifier, + STATE(3847), 1, + sym_generic_type_with_turbofish, + STATE(1124), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3429), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3441), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(3445), 3, + sym_self, + sym_super, + sym_crate, + STATE(3420), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3435), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [1983] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1075), 2, + STATE(1125), 2, sym_line_comment, sym_block_comment, - ACTIONS(1433), 9, + ACTIONS(2705), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_LT, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1435), 40, + ACTIONS(2707), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116736,7 +123025,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fn, anon_sym_gen, - anon_sym_if, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -116753,25 +123041,102 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1021] = 5, + [2046] = 24, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1521), 1, + anon_sym_LBRACK, + ACTIONS(3301), 1, + anon_sym_SQUOTE, + ACTIONS(3427), 1, + sym_identifier, + ACTIONS(3431), 1, + anon_sym_LPAREN, + ACTIONS(3433), 1, + anon_sym_STAR, + ACTIONS(3437), 1, + anon_sym_AMP, + ACTIONS(3439), 1, + anon_sym_COLON_COLON, + ACTIONS(3443), 1, + anon_sym_for, + ACTIONS(3447), 1, + sym_metavariable, + STATE(2531), 1, + sym_where_predicate, + STATE(2869), 1, + sym_scoped_type_identifier, + STATE(3113), 1, + sym_generic_type, + STATE(3692), 1, + sym_bracketed_type, + STATE(3823), 1, + sym_scoped_identifier, + STATE(3847), 1, + sym_generic_type_with_turbofish, + STATE(1126), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3441), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(3445), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3449), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(3420), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3435), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [2147] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1076), 2, + STATE(1127), 2, sym_line_comment, sym_block_comment, - ACTIONS(1441), 9, + ACTIONS(2951), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_LT, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1443), 40, + ACTIONS(2953), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116795,7 +123160,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fn, anon_sym_gen, - anon_sym_if, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -116812,21 +123176,21 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1085] = 7, + [2210] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3466), 1, + ACTIONS(1691), 1, anon_sym_POUND, - STATE(1145), 2, + STATE(1122), 1, + aux_sym_attributes_repeat1, + STATE(1406), 1, sym_attribute_item, - sym_inner_attribute_item, - STATE(1077), 3, + STATE(1128), 2, sym_line_comment, sym_block_comment, - aux_sym_match_arm_repeat1, - ACTIONS(3464), 14, + ACTIONS(2923), 14, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -116841,7 +123205,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3462), 31, + ACTIONS(2921), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116873,25 +123237,25 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1153] = 5, + [2279] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1078), 2, + STATE(1129), 2, sym_line_comment, sym_block_comment, - ACTIONS(1047), 9, + ACTIONS(2141), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_LT, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1045), 40, + ACTIONS(2143), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116915,7 +123279,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fn, anon_sym_gen, - anon_sym_if, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -116932,25 +123295,143 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1217] = 10, + [2342] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3457), 1, + anon_sym_COLON_COLON, + STATE(1130), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3453), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3451), 29, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3438), 1, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, anon_sym_LT2, - ACTIONS(3473), 1, + [2409] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3463), 1, + anon_sym_BANG, + ACTIONS(3465), 1, anon_sym_COLON_COLON, - STATE(1288), 1, + STATE(1131), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3461), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3459), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_LT2, + [2476] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3359), 1, + anon_sym_LPAREN, + ACTIONS(3367), 1, + anon_sym_LT2, + STATE(1415), 1, sym_type_arguments, - STATE(1301), 1, + STATE(1423), 1, sym_parameters, - STATE(1079), 2, + STATE(1132), 2, sym_line_comment, sym_block_comment, - ACTIONS(3471), 17, + ACTIONS(3469), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -116968,7 +123449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3469), 27, + ACTIONS(3467), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -116996,25 +123477,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [1291] = 5, + [2547] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1080), 2, + STATE(1133), 2, sym_line_comment, sym_block_comment, - ACTIONS(1531), 9, + ACTIONS(3007), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_LT, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1533), 40, + ACTIONS(3009), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117038,7 +123519,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fn, anon_sym_gen, - anon_sym_if, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -117055,25 +123535,32 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1355] = 5, + [2610] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1081), 2, + ACTIONS(3471), 1, + anon_sym_POUND, + STATE(1389), 1, + sym_attribute_item, + STATE(1134), 3, sym_line_comment, sym_block_comment, - ACTIONS(1055), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PIPE, + aux_sym_attributes_repeat1, + ACTIONS(2124), 11, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, + sym_integer_literal, sym_metavariable, - ACTIONS(1053), 40, + ACTIONS(2122), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117094,45 +123581,248 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_gen, - anon_sym_if, anon_sym_impl, - anon_sym_let, - anon_sym_mod, anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [2677] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3359), 1, + anon_sym_LPAREN, + ACTIONS(3367), 1, + anon_sym_LT2, + STATE(1415), 1, + sym_type_arguments, + STATE(1423), 1, + sym_parameters, + STATE(1135), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3476), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3474), 27, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [2748] = 24, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1521), 1, + anon_sym_LBRACK, + ACTIONS(3301), 1, + anon_sym_SQUOTE, + ACTIONS(3427), 1, sym_identifier, + ACTIONS(3431), 1, + anon_sym_LPAREN, + ACTIONS(3433), 1, + anon_sym_STAR, + ACTIONS(3437), 1, + anon_sym_AMP, + ACTIONS(3439), 1, + anon_sym_COLON_COLON, + ACTIONS(3443), 1, + anon_sym_for, + ACTIONS(3447), 1, + sym_metavariable, + STATE(2586), 1, + sym_where_predicate, + STATE(2869), 1, + sym_scoped_type_identifier, + STATE(3113), 1, + sym_generic_type, + STATE(3692), 1, + sym_bracketed_type, + STATE(3823), 1, + sym_scoped_identifier, + STATE(3847), 1, + sym_generic_type_with_turbofish, + STATE(1136), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3441), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(3445), 3, sym_self, sym_super, sym_crate, - [1419] = 5, + ACTIONS(3478), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(3420), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3435), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [2849] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3359), 1, + anon_sym_LPAREN, + ACTIONS(3367), 1, + anon_sym_LT2, + STATE(1415), 1, + sym_type_arguments, + STATE(1423), 1, + sym_parameters, + STATE(1137), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3482), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3480), 27, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [2920] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1082), 2, + ACTIONS(2285), 1, + anon_sym_POUND, + STATE(1134), 1, + aux_sym_attributes_repeat1, + STATE(1389), 1, + sym_attribute_item, + STATE(1138), 2, sym_line_comment, sym_block_comment, - ACTIONS(1437), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PIPE, + ACTIONS(2923), 11, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, + sym_integer_literal, sym_metavariable, - ACTIONS(1439), 40, + ACTIONS(2921), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117153,45 +123843,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_gen, - anon_sym_if, anon_sym_impl, - anon_sym_let, - anon_sym_mod, anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [1483] = 5, + [2989] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1083), 2, + STATE(1139), 2, sym_line_comment, sym_block_comment, - ACTIONS(1445), 9, + ACTIONS(3416), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3418), 31, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [3051] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3488), 1, + anon_sym_RBRACE, + STATE(1140), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3486), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(1447), 40, + ACTIONS(3484), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117209,46 +123958,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - anon_sym_if, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [1547] = 9, + [3115] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, - anon_sym_LPAREN, - ACTIONS(3438), 1, - anon_sym_LT2, - STATE(1289), 1, - sym_type_arguments, - STATE(1303), 1, - sym_parameters, - STATE(1084), 2, + ACTIONS(3381), 1, + anon_sym_COLON_COLON, + ACTIONS(3490), 1, + anon_sym_BANG, + STATE(1141), 2, sym_line_comment, sym_block_comment, - ACTIONS(3477), 17, + ACTIONS(3492), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + ACTIONS(3377), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -117259,19 +124002,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + anon_sym_as, + ACTIONS(3375), 23, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [3183] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3373), 1, + anon_sym_BANG, + ACTIONS(3494), 1, + anon_sym_LBRACE, + ACTIONS(3496), 1, + anon_sym_COLON_COLON, + STATE(1569), 1, + sym_field_initializer_list, + STATE(1142), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1399), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3475), 27, + ACTIONS(1397), 28, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -117284,35 +124082,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [1618] = 5, + [3253] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1085), 2, + STATE(1143), 2, sym_line_comment, sym_block_comment, - ACTIONS(2250), 9, + ACTIONS(3500), 13, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, anon_sym_EQ, anon_sym_LT, - anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(2252), 39, + ACTIONS(3498), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117333,121 +124136,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_gen, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, anon_sym_use, + anon_sym_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [1681] = 24, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1615), 1, - anon_sym_LBRACK, - ACTIONS(3358), 1, - anon_sym_SQUOTE, - ACTIONS(3479), 1, - sym_identifier, - ACTIONS(3483), 1, - anon_sym_LPAREN, - ACTIONS(3485), 1, - anon_sym_STAR, - ACTIONS(3489), 1, - anon_sym_AMP, - ACTIONS(3491), 1, - anon_sym_COLON_COLON, - ACTIONS(3495), 1, - anon_sym_for, - ACTIONS(3499), 1, - sym_metavariable, - STATE(2559), 1, - sym_where_predicate, - STATE(2796), 1, - sym_scoped_type_identifier, - STATE(3036), 1, - sym_generic_type, - STATE(3610), 1, - sym_scoped_identifier, - STATE(3633), 1, - sym_bracketed_type, - STATE(3780), 1, - sym_generic_type_with_turbofish, - STATE(1086), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3481), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(3493), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(3497), 3, - sym_self, - sym_super, - sym_crate, - STATE(3215), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3487), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [1782] = 5, + [3315] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1087), 2, + STATE(1144), 2, sym_line_comment, sym_block_comment, - ACTIONS(2512), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, + ACTIONS(2253), 16, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_RBRACE, - anon_sym_EQ, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, - anon_sym_COMMA, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2514), 39, + ACTIONS(2255), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117465,59 +124193,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [1845] = 7, + [3377] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3505), 1, + STATE(1145), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3455), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_BANG, - ACTIONS(3507), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3457), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - STATE(1088), 2, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [3439] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1146), 2, sym_line_comment, sym_block_comment, - ACTIONS(3503), 17, + ACTIONS(3463), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3501), 29, + ACTIONS(3465), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -117536,53 +124308,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - anon_sym_LT2, - [1912] = 9, + [3501] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, + STATE(1147), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3504), 13, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3438), 1, - anon_sym_LT2, - STATE(1289), 1, - sym_type_arguments, - STATE(1303), 1, - sym_parameters, - STATE(1089), 2, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3502), 34, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [3563] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1148), 2, sym_line_comment, sym_block_comment, - ACTIONS(3511), 17, + ACTIONS(3408), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3509), 27, + ACTIONS(3410), 31, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -117599,35 +124422,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [1983] = 5, + [3625] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1149), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3508), 16, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3506), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_const, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [3687] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1150), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3512), 13, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3510), 34, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [3749] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1090), 2, + ACTIONS(3514), 1, + anon_sym_POUND, + STATE(1153), 1, + aux_sym_attributes_repeat1, + STATE(1485), 1, + sym_attribute_item, + STATE(1151), 2, sym_line_comment, sym_block_comment, - ACTIONS(2974), 9, + ACTIONS(2923), 5, anon_sym_SEMI, anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ, anon_sym_LT, - anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_POUND, sym_metavariable, - ACTIONS(2976), 39, + ACTIONS(2921), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117667,156 +124609,29 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2046] = 9, + [3817] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, - anon_sym_LPAREN, - ACTIONS(3438), 1, - anon_sym_LT2, - STATE(1289), 1, - sym_type_arguments, - STATE(1303), 1, - sym_parameters, - STATE(1091), 2, + STATE(1152), 2, sym_line_comment, sym_block_comment, - ACTIONS(3515), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3513), 27, + ACTIONS(3518), 13, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [2117] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3430), 1, anon_sym_LPAREN, - ACTIONS(3438), 1, - anon_sym_LT2, - STATE(1289), 1, - sym_type_arguments, - STATE(1303), 1, - sym_parameters, - STATE(1092), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3519), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3517), 27, - anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [2188] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3521), 1, - anon_sym_POUND, - STATE(1254), 1, - sym_attribute_item, - STATE(1093), 3, - sym_line_comment, - sym_block_comment, - aux_sym_enum_variant_list_repeat1, - ACTIONS(763), 11, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_STAR, anon_sym_QMARK, anon_sym_BANG, anon_sym_AMP, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_SQUOTE, - sym_integer_literal, sym_metavariable, - ACTIONS(3376), 34, + ACTIONS(3516), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117841,76 +124656,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_gen, anon_sym_impl, - anon_sym_pub, anon_sym_union, anon_sym_unsafe, anon_sym_use, + anon_sym_where, anon_sym_extern, anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [2255] = 24, - ACTIONS(29), 1, - anon_sym_LT, + [3879] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1615), 1, - anon_sym_LBRACK, - ACTIONS(3358), 1, - anon_sym_SQUOTE, - ACTIONS(3479), 1, - sym_identifier, - ACTIONS(3483), 1, - anon_sym_LPAREN, - ACTIONS(3485), 1, - anon_sym_STAR, - ACTIONS(3489), 1, - anon_sym_AMP, - ACTIONS(3491), 1, - anon_sym_COLON_COLON, - ACTIONS(3495), 1, - anon_sym_for, - ACTIONS(3499), 1, - sym_metavariable, - STATE(2559), 1, - sym_where_predicate, - STATE(2796), 1, - sym_scoped_type_identifier, - STATE(3036), 1, - sym_generic_type, - STATE(3610), 1, - sym_scoped_identifier, - STATE(3633), 1, - sym_bracketed_type, - STATE(3780), 1, - sym_generic_type_with_turbofish, - STATE(1094), 2, + ACTIONS(3520), 1, + anon_sym_POUND, + STATE(1485), 1, + sym_attribute_item, + STATE(1153), 3, sym_line_comment, sym_block_comment, - ACTIONS(3493), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(3497), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3524), 3, + aux_sym_attributes_repeat1, + ACTIONS(2124), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - STATE(3215), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3487), 17, + anon_sym_macro_rules_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(2122), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117928,85 +124703,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2356] = 7, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [3945] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3530), 1, - anon_sym_BANG, - ACTIONS(3532), 1, - anon_sym_COLON_COLON, - STATE(1095), 2, + ACTIONS(3527), 1, + anon_sym_RBRACE, + STATE(1154), 2, sym_line_comment, sym_block_comment, - ACTIONS(3528), 17, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(3525), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3526), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_LT2, - [2423] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3523), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_const, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4009] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1096), 2, + STATE(1155), 2, sym_line_comment, sym_block_comment, - ACTIONS(2658), 9, + ACTIONS(2533), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ, anon_sym_LT, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2660), 39, + ACTIONS(2535), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118046,25 +124839,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2486] = 5, + [4070] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1097), 2, + STATE(1156), 2, sym_line_comment, sym_block_comment, - ACTIONS(2794), 9, + ACTIONS(2765), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ, anon_sym_LT, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2796), 39, + ACTIONS(2767), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118104,186 +124895,135 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2549] = 7, + [4131] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3538), 1, - anon_sym_BANG, - ACTIONS(3540), 1, - anon_sym_COLON_COLON, - STATE(1098), 2, + STATE(1157), 2, sym_line_comment, sym_block_comment, - ACTIONS(3536), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3534), 29, + ACTIONS(2769), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_LT2, - [2616] = 7, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2771), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4192] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3546), 1, - anon_sym_BANG, - ACTIONS(3548), 1, - anon_sym_COLON_COLON, - STATE(1099), 2, + STATE(1158), 2, sym_line_comment, sym_block_comment, - ACTIONS(3544), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3542), 29, + ACTIONS(2773), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_LT2, - [2683] = 24, - ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1615), 1, - anon_sym_LBRACK, - ACTIONS(3358), 1, - anon_sym_SQUOTE, - ACTIONS(3479), 1, - sym_identifier, - ACTIONS(3483), 1, - anon_sym_LPAREN, - ACTIONS(3485), 1, - anon_sym_STAR, - ACTIONS(3489), 1, - anon_sym_AMP, - ACTIONS(3491), 1, anon_sym_COLON_COLON, - ACTIONS(3495), 1, - anon_sym_for, - ACTIONS(3499), 1, + anon_sym_POUND, sym_metavariable, - STATE(2425), 1, - sym_where_predicate, - STATE(2796), 1, - sym_scoped_type_identifier, - STATE(3036), 1, - sym_generic_type, - STATE(3610), 1, - sym_scoped_identifier, - STATE(3633), 1, - sym_bracketed_type, - STATE(3780), 1, - sym_generic_type_with_turbofish, - STATE(1100), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3493), 3, + ACTIONS(2775), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(3497), 3, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - ACTIONS(3550), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - STATE(3215), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3487), 17, + [4253] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1159), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2777), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2779), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118301,33 +125041,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2784] = 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4314] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3556), 1, - anon_sym_RBRACE, - STATE(1101), 2, + STATE(1160), 2, sym_line_comment, sym_block_comment, - ACTIONS(3554), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(2781), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(3552), 31, + ACTIONS(2783), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118345,47 +125097,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [2848] = 6, + [4375] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3562), 1, - anon_sym_RBRACE, - STATE(1102), 2, + STATE(1161), 2, sym_line_comment, sym_block_comment, - ACTIONS(3560), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(2785), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(3558), 31, + ACTIONS(2787), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118403,160 +125153,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [2912] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1103), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3530), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3532), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [2974] = 8, + [4436] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3446), 1, - anon_sym_COLON_COLON, - ACTIONS(3564), 1, - anon_sym_BANG, - STATE(1104), 2, + STATE(1162), 2, sym_line_comment, sym_block_comment, - ACTIONS(3566), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - ACTIONS(3442), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - anon_sym_as, - ACTIONS(3440), 23, + ACTIONS(2789), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [3042] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1105), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3570), 13, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3568), 34, + ACTIONS(2791), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118577,43 +125212,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_gen, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, anon_sym_use, - anon_sym_where, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [3104] = 5, + [4497] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1106), 2, + STATE(1163), 2, sym_line_comment, sym_block_comment, - ACTIONS(3574), 13, + ACTIONS(2801), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3572), 34, + ACTIONS(2803), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118634,275 +125268,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_gen, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, anon_sym_use, - anon_sym_where, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [3166] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1107), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3505), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3507), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [3228] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3456), 1, - anon_sym_BANG, - ACTIONS(3576), 1, - anon_sym_LBRACE, - ACTIONS(3578), 1, - anon_sym_COLON_COLON, - STATE(1481), 1, - sym_field_initializer_list, - STATE(1108), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1459), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1457), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_as, - anon_sym_else, - [3298] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1109), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3538), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3540), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [3360] = 5, + [4558] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1110), 2, + STATE(1164), 2, sym_line_comment, sym_block_comment, - ACTIONS(3546), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3548), 31, + ACTIONS(2809), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [3422] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1111), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3582), 13, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3580), 34, + ACTIONS(2811), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118923,43 +125324,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_gen, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, anon_sym_use, - anon_sym_where, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [3484] = 5, + [4619] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1112), 2, + STATE(1165), 2, sym_line_comment, sym_block_comment, - ACTIONS(3586), 13, + ACTIONS(2813), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3584), 34, + ACTIONS(2815), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118980,29 +125380,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_gen, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, anon_sym_use, - anon_sym_where, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [3546] = 5, + [4680] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1113), 2, + STATE(1166), 2, sym_line_comment, sym_block_comment, - ACTIONS(2060), 7, + ACTIONS(2817), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119010,7 +125415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2062), 39, + ACTIONS(2819), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119050,15 +125455,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3607] = 5, + [4741] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1114), 2, + STATE(1167), 2, sym_line_comment, sym_block_comment, - ACTIONS(1838), 7, + ACTIONS(2821), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119066,7 +125471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1840), 39, + ACTIONS(2823), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119106,15 +125511,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3668] = 5, + [4802] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1115), 2, + STATE(1168), 2, sym_line_comment, sym_block_comment, - ACTIONS(3030), 7, + ACTIONS(2825), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119122,7 +125527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3032), 39, + ACTIONS(2827), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119162,15 +125567,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3729] = 5, + [4863] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1116), 2, + STATE(1169), 2, sym_line_comment, sym_block_comment, - ACTIONS(3034), 7, + ACTIONS(2829), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119178,7 +125583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3036), 39, + ACTIONS(2831), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119218,15 +125623,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3790] = 5, + [4924] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1117), 2, + STATE(1170), 2, sym_line_comment, sym_block_comment, - ACTIONS(3038), 7, + ACTIONS(2833), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119234,7 +125639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3040), 39, + ACTIONS(2835), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119274,15 +125679,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3851] = 5, + [4985] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1118), 2, + STATE(1171), 2, sym_line_comment, sym_block_comment, - ACTIONS(3042), 7, + ACTIONS(2881), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119290,7 +125695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3044), 39, + ACTIONS(2883), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119330,15 +125735,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3912] = 5, + [5046] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1119), 2, + STATE(1172), 2, sym_line_comment, sym_block_comment, - ACTIONS(3046), 7, + ACTIONS(2947), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119346,7 +125751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3048), 39, + ACTIONS(2949), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119386,15 +125791,241 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3973] = 5, + [5107] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1120), 2, + STATE(1173), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3531), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3529), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [5168] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1174), 2, sym_line_comment, sym_block_comment, - ACTIONS(3054), 7, + ACTIONS(3535), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3533), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [5229] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3537), 1, + anon_sym_COLON_COLON, + STATE(1175), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3469), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3467), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [5292] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3543), 1, + anon_sym_DASH_GT, + STATE(1176), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3541), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3539), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [5355] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1177), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2253), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119402,7 +126033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3056), 39, + ACTIONS(2255), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119442,15 +126073,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4034] = 5, + [5416] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1121), 2, + STATE(1178), 2, sym_line_comment, sym_block_comment, - ACTIONS(3058), 7, + ACTIONS(2261), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119458,7 +126089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3060), 39, + ACTIONS(2263), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119498,15 +126129,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4095] = 5, + [5477] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1122), 2, + STATE(1179), 2, sym_line_comment, sym_block_comment, - ACTIONS(1842), 7, + ACTIONS(2349), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119514,7 +126145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1844), 39, + ACTIONS(2351), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119554,15 +126185,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4156] = 5, + [5538] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1123), 2, + STATE(1180), 2, sym_line_comment, sym_block_comment, - ACTIONS(1846), 7, + ACTIONS(2417), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119570,7 +126201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1848), 39, + ACTIONS(2419), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119610,15 +126241,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4217] = 5, + [5599] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1124), 2, + STATE(1181), 2, sym_line_comment, sym_block_comment, - ACTIONS(1850), 7, + ACTIONS(2893), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119626,7 +126257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1852), 39, + ACTIONS(2895), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119666,15 +126297,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4278] = 5, + [5660] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1125), 2, + STATE(1182), 2, sym_line_comment, sym_block_comment, - ACTIONS(1854), 7, + ACTIONS(2913), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119682,7 +126313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1856), 39, + ACTIONS(2915), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119722,15 +126353,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4339] = 5, + [5721] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1126), 2, + STATE(1183), 2, sym_line_comment, sym_block_comment, - ACTIONS(1858), 7, + ACTIONS(2917), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119738,7 +126369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1860), 39, + ACTIONS(2919), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119778,15 +126409,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4400] = 5, + [5782] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1127), 2, + STATE(1184), 2, sym_line_comment, sym_block_comment, - ACTIONS(1862), 7, + ACTIONS(2931), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119794,7 +126425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1864), 39, + ACTIONS(2933), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119834,15 +126465,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4461] = 5, + [5843] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1128), 2, + STATE(1185), 2, sym_line_comment, sym_block_comment, - ACTIONS(1874), 7, + ACTIONS(2849), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119850,7 +126481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1876), 39, + ACTIONS(2851), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119890,15 +126521,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4522] = 5, + [5904] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1129), 2, + STATE(1186), 2, sym_line_comment, sym_block_comment, - ACTIONS(1878), 7, + ACTIONS(2943), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119906,7 +126537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1880), 39, + ACTIONS(2945), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119946,15 +126577,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4583] = 5, + [5965] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1130), 2, + STATE(1187), 2, sym_line_comment, sym_block_comment, - ACTIONS(1882), 7, + ACTIONS(2955), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119962,7 +126593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1884), 39, + ACTIONS(2957), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120002,15 +126633,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4644] = 5, + [6026] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1131), 2, + STATE(1188), 2, sym_line_comment, sym_block_comment, - ACTIONS(1886), 7, + ACTIONS(1962), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120018,7 +126649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1888), 39, + ACTIONS(1964), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120058,15 +126689,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4705] = 5, + [6087] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1132), 2, + STATE(1189), 2, sym_line_comment, sym_block_comment, - ACTIONS(1890), 7, + ACTIONS(1966), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120074,7 +126705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1892), 39, + ACTIONS(1968), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120114,15 +126745,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4766] = 5, + [6148] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1133), 2, + STATE(1190), 2, sym_line_comment, sym_block_comment, - ACTIONS(1894), 7, + ACTIONS(2133), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120130,7 +126761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1896), 39, + ACTIONS(2135), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120170,15 +126801,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4827] = 5, + [6209] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1134), 2, + STATE(1191), 2, sym_line_comment, sym_block_comment, - ACTIONS(1898), 7, + ACTIONS(2377), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120186,7 +126817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1900), 39, + ACTIONS(2379), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120226,15 +126857,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4888] = 5, + [6270] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1135), 2, + STATE(1192), 2, sym_line_comment, sym_block_comment, - ACTIONS(1902), 7, + ACTIONS(2445), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120242,7 +126873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1904), 39, + ACTIONS(2447), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120282,15 +126913,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4949] = 5, + [6331] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1136), 2, + STATE(1193), 2, sym_line_comment, sym_block_comment, - ACTIONS(1906), 7, + ACTIONS(2553), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120298,7 +126929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1908), 39, + ACTIONS(2555), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120338,15 +126969,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5010] = 5, + [6392] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1137), 2, + STATE(1194), 2, sym_line_comment, sym_block_comment, - ACTIONS(1910), 7, + ACTIONS(2963), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120354,7 +126985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1912), 39, + ACTIONS(2965), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120394,15 +127025,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5071] = 5, + [6453] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1138), 2, + STATE(1195), 2, sym_line_comment, sym_block_comment, - ACTIONS(1914), 7, + ACTIONS(1898), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120410,7 +127041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1916), 39, + ACTIONS(1900), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120450,15 +127081,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5132] = 5, + [6514] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1139), 2, + STATE(1196), 2, sym_line_comment, sym_block_comment, - ACTIONS(3062), 7, + ACTIONS(1902), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120466,7 +127097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3064), 39, + ACTIONS(1904), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120506,15 +127137,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5193] = 5, + [6575] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1140), 2, + STATE(1197), 2, sym_line_comment, sym_block_comment, - ACTIONS(1922), 7, + ACTIONS(1906), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120522,7 +127153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1924), 39, + ACTIONS(1908), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120562,15 +127193,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5254] = 5, + [6636] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1141), 2, + STATE(1198), 2, sym_line_comment, sym_block_comment, - ACTIONS(1930), 7, + ACTIONS(1910), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120578,7 +127209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1932), 39, + ACTIONS(1912), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120618,15 +127249,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5315] = 5, + [6697] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1142), 2, + STATE(1199), 2, sym_line_comment, sym_block_comment, - ACTIONS(1934), 7, + ACTIONS(1914), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120634,7 +127265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1936), 39, + ACTIONS(1916), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120674,15 +127305,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5376] = 5, + [6758] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1143), 2, + STATE(1200), 2, sym_line_comment, sym_block_comment, - ACTIONS(1938), 7, + ACTIONS(1922), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120690,7 +127321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1940), 39, + ACTIONS(1924), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120730,15 +127361,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5437] = 5, + [6819] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1144), 2, + STATE(1201), 2, sym_line_comment, sym_block_comment, - ACTIONS(1942), 7, + ACTIONS(1926), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120746,7 +127377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1944), 39, + ACTIONS(1928), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120786,31 +127417,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5498] = 5, + [6880] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1145), 2, + STATE(1202), 2, sym_line_comment, sym_block_comment, - ACTIONS(3590), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1934), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(3588), 31, + ACTIONS(1936), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120828,45 +127451,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [5559] = 5, + [6941] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1146), 2, + STATE(1203), 2, sym_line_comment, sym_block_comment, - ACTIONS(3594), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1946), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(3592), 31, + ACTIONS(1948), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120884,29 +127507,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [5620] = 5, + [7002] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1147), 2, + STATE(1204), 2, sym_line_comment, sym_block_comment, - ACTIONS(2166), 7, + ACTIONS(1950), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120914,7 +127545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2168), 39, + ACTIONS(1952), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120954,78 +127585,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5681] = 12, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3446), 1, - anon_sym_COLON_COLON, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(3564), 1, - anon_sym_BANG, - ACTIONS(3596), 1, - anon_sym_move, - STATE(413), 1, - sym_block, - STATE(3621), 1, - sym_label, - STATE(1148), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3442), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3440), 24, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [5756] = 5, + [7063] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1149), 2, + STATE(1205), 2, sym_line_comment, sym_block_comment, - ACTIONS(2170), 7, + ACTIONS(2002), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121033,7 +127601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2172), 39, + ACTIONS(2004), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121073,72 +127641,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5817] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3598), 1, - anon_sym_COLON_COLON, - STATE(1150), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3511), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3509), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5880] = 5, + [7124] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1151), 2, + STATE(1206), 2, sym_line_comment, sym_block_comment, - ACTIONS(2178), 7, + ACTIONS(2014), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121146,7 +127657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2180), 39, + ACTIONS(2016), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121186,15 +127697,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5941] = 5, + [7185] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1152), 2, + STATE(1207), 2, sym_line_comment, sym_block_comment, - ACTIONS(2182), 7, + ACTIONS(2018), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121202,7 +127713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2184), 39, + ACTIONS(2020), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121242,15 +127753,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6002] = 5, + [7246] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1153), 2, + STATE(1208), 2, sym_line_comment, sym_block_comment, - ACTIONS(2186), 7, + ACTIONS(2058), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121258,7 +127769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2188), 39, + ACTIONS(2060), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121298,15 +127809,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6063] = 5, + [7307] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1154), 2, + STATE(1209), 2, sym_line_comment, sym_block_comment, - ACTIONS(2190), 7, + ACTIONS(2062), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121314,7 +127825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2192), 39, + ACTIONS(2064), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121354,15 +127865,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6124] = 5, + [7368] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1155), 2, + STATE(1210), 2, sym_line_comment, sym_block_comment, - ACTIONS(2194), 7, + ACTIONS(2066), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121370,7 +127881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2196), 39, + ACTIONS(2068), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121410,72 +127921,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6185] = 6, + [7429] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3600), 1, - anon_sym_COLON_COLON, - STATE(1156), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1459), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1457), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [6248] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1157), 2, + STATE(1211), 2, sym_line_comment, sym_block_comment, - ACTIONS(2198), 7, + ACTIONS(2070), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121483,7 +127937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2200), 39, + ACTIONS(2072), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121523,72 +127977,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6309] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3602), 1, - anon_sym_LBRACE, - STATE(1158), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3530), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3532), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_as, - anon_sym_else, - [6372] = 5, + [7490] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1159), 2, + STATE(1212), 2, sym_line_comment, sym_block_comment, - ACTIONS(2206), 7, + ACTIONS(2074), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121596,7 +127993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2208), 39, + ACTIONS(2076), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121636,15 +128033,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6433] = 5, + [7551] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1160), 2, + STATE(1213), 2, sym_line_comment, sym_block_comment, - ACTIONS(2210), 7, + ACTIONS(2086), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121652,7 +128049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2212), 39, + ACTIONS(2088), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121692,72 +128089,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6494] = 6, + [7612] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3604), 1, - anon_sym_LBRACE, - STATE(1161), 2, + STATE(1214), 2, sym_line_comment, sym_block_comment, - ACTIONS(3505), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3507), 29, + ACTIONS(2090), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_as, - anon_sym_else, - [6557] = 5, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2092), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [7673] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1162), 2, + STATE(1215), 2, sym_line_comment, sym_block_comment, - ACTIONS(2214), 7, + ACTIONS(2094), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121765,7 +128161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2216), 39, + ACTIONS(2096), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121805,15 +128201,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6618] = 5, + [7734] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1163), 2, + STATE(1216), 2, sym_line_comment, sym_block_comment, - ACTIONS(2218), 7, + ACTIONS(2098), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121821,7 +128217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2220), 39, + ACTIONS(2100), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121861,15 +128257,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6679] = 5, + [7795] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1164), 2, + STATE(1217), 2, sym_line_comment, sym_block_comment, - ACTIONS(2222), 7, + ACTIONS(2106), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121877,7 +128273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2224), 39, + ACTIONS(2108), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121917,15 +128313,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6740] = 5, + [7856] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1165), 2, + STATE(1218), 2, sym_line_comment, sym_block_comment, - ACTIONS(2226), 7, + ACTIONS(2114), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121933,7 +128329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2228), 39, + ACTIONS(2116), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121973,15 +128369,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6801] = 5, + [7917] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1166), 2, + STATE(1219), 2, sym_line_comment, sym_block_comment, - ACTIONS(2230), 7, + ACTIONS(2189), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121989,7 +128385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2232), 39, + ACTIONS(2191), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122029,15 +128425,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6862] = 5, + [7978] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1167), 2, + STATE(1220), 2, sym_line_comment, sym_block_comment, - ACTIONS(2234), 7, + ACTIONS(2209), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122045,7 +128441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2236), 39, + ACTIONS(2211), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122085,15 +128481,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6923] = 5, + [8039] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1168), 2, + STATE(1221), 2, sym_line_comment, sym_block_comment, - ACTIONS(2238), 7, + ACTIONS(2213), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122101,7 +128497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2240), 39, + ACTIONS(2215), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122141,15 +128537,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6984] = 5, + [8100] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1169), 2, + STATE(1222), 2, sym_line_comment, sym_block_comment, - ACTIONS(2242), 7, + ACTIONS(2233), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122157,7 +128553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2244), 39, + ACTIONS(2235), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122197,15 +128593,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7045] = 5, + [8161] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1170), 2, + STATE(1223), 2, sym_line_comment, sym_block_comment, - ACTIONS(3608), 7, + ACTIONS(2237), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122213,7 +128609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3606), 39, + ACTIONS(2239), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122253,71 +128649,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7106] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1171), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3612), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3610), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [7167] = 5, + [8222] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1172), 2, + STATE(1224), 2, sym_line_comment, sym_block_comment, - ACTIONS(2254), 7, + ACTIONS(2241), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122325,7 +128665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2256), 39, + ACTIONS(2243), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122365,15 +128705,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7228] = 5, + [8283] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1173), 2, + STATE(1225), 2, sym_line_comment, sym_block_comment, - ACTIONS(2258), 7, + ACTIONS(2269), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122381,7 +128721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2260), 39, + ACTIONS(2271), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122421,15 +128761,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7289] = 5, + [8344] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1174), 2, + STATE(1226), 2, sym_line_comment, sym_block_comment, - ACTIONS(2262), 7, + ACTIONS(2337), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122437,7 +128777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2264), 39, + ACTIONS(2339), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122477,15 +128817,127 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7350] = 5, + [8405] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1175), 2, + STATE(1227), 2, sym_line_comment, sym_block_comment, - ACTIONS(2266), 7, + ACTIONS(3547), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3545), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [8466] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1228), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3551), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3549), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [8527] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1229), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2453), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122493,7 +128945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2268), 39, + ACTIONS(2455), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122533,15 +128985,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7411] = 5, + [8588] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1176), 2, + STATE(1230), 2, sym_line_comment, sym_block_comment, - ACTIONS(2270), 7, + ACTIONS(2457), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122549,7 +129001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2272), 39, + ACTIONS(2459), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122589,15 +129041,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7472] = 5, + [8649] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1177), 2, + STATE(1231), 2, sym_line_comment, sym_block_comment, - ACTIONS(2274), 7, + ACTIONS(2481), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122605,7 +129057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2276), 39, + ACTIONS(2483), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122645,15 +129097,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7533] = 5, + [8710] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1178), 2, + STATE(1232), 2, sym_line_comment, sym_block_comment, - ACTIONS(2278), 7, + ACTIONS(2501), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122661,7 +129113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2280), 39, + ACTIONS(2503), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122701,15 +129153,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7594] = 5, + [8771] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1179), 2, + STATE(1233), 2, sym_line_comment, sym_block_comment, - ACTIONS(2282), 7, + ACTIONS(2513), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122717,7 +129169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2284), 39, + ACTIONS(2515), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122757,28 +129209,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7655] = 5, + [8832] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1180), 2, + STATE(1234), 2, sym_line_comment, sym_block_comment, - ACTIONS(2378), 12, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, + ACTIONS(2605), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_POUND, - anon_sym_SQUOTE, - sym_integer_literal, sym_metavariable, - ACTIONS(2380), 34, + ACTIONS(2607), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122799,86 +129246,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_gen, anon_sym_impl, + anon_sym_let, + anon_sym_mod, anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [7716] = 6, + [8893] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3614), 1, - anon_sym_LBRACE, - STATE(1181), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3546), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3548), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_as, - anon_sym_else, - [7779] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1182), 2, + STATE(1235), 2, sym_line_comment, sym_block_comment, - ACTIONS(2286), 7, + ACTIONS(2625), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122886,7 +129281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2288), 39, + ACTIONS(2627), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122926,15 +129321,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7840] = 5, + [8954] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1183), 2, + STATE(1236), 2, sym_line_comment, sym_block_comment, - ACTIONS(2290), 7, + ACTIONS(2649), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122942,7 +129337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2292), 39, + ACTIONS(2651), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122982,15 +129377,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7901] = 5, + [9015] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1184), 2, + STATE(1237), 2, sym_line_comment, sym_block_comment, - ACTIONS(2294), 7, + ACTIONS(2793), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122998,7 +129393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2296), 39, + ACTIONS(2795), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123038,15 +129433,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7962] = 5, + [9076] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1185), 2, + STATE(1238), 2, sym_line_comment, sym_block_comment, - ACTIONS(2298), 7, + ACTIONS(2797), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123054,7 +129449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2300), 39, + ACTIONS(2799), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123094,71 +129489,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8023] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1186), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2166), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2168), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_const, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [8084] = 5, + [9137] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1187), 2, + STATE(1239), 2, sym_line_comment, sym_block_comment, - ACTIONS(2302), 7, + ACTIONS(2853), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123166,7 +129505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2304), 39, + ACTIONS(2855), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123206,15 +129545,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8145] = 5, + [9198] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1188), 2, + STATE(1240), 2, sym_line_comment, sym_block_comment, - ACTIONS(2306), 7, + ACTIONS(2861), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123222,7 +129561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2308), 39, + ACTIONS(2863), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123262,127 +129601,127 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8206] = 5, + [9259] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1189), 2, + STATE(1241), 2, sym_line_comment, sym_block_comment, - ACTIONS(3618), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3616), 31, + ACTIONS(2865), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [8267] = 5, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2867), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [9320] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1190), 2, + STATE(1242), 2, sym_line_comment, sym_block_comment, - ACTIONS(3622), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3620), 31, + ACTIONS(2869), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [8328] = 5, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2871), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [9381] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1191), 2, + STATE(1243), 2, sym_line_comment, sym_block_comment, - ACTIONS(2310), 7, + ACTIONS(2873), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123390,7 +129729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2312), 39, + ACTIONS(2875), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123430,15 +129769,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8389] = 5, + [9442] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1192), 2, + STATE(1244), 2, sym_line_comment, sym_block_comment, - ACTIONS(2314), 7, + ACTIONS(2877), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123446,7 +129785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2316), 39, + ACTIONS(2879), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123486,15 +129825,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8450] = 5, + [9503] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1193), 2, + STATE(1245), 2, sym_line_comment, sym_block_comment, - ACTIONS(2318), 7, + ACTIONS(2885), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123502,7 +129841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2320), 39, + ACTIONS(2887), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123542,15 +129881,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8511] = 5, + [9564] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1194), 2, + STATE(1246), 2, sym_line_comment, sym_block_comment, - ACTIONS(2322), 7, + ACTIONS(2889), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123558,7 +129897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2324), 39, + ACTIONS(2891), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123598,15 +129937,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8572] = 5, + [9625] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1195), 2, + STATE(1247), 2, sym_line_comment, sym_block_comment, - ACTIONS(2326), 7, + ACTIONS(2901), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123614,7 +129953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2328), 39, + ACTIONS(2903), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123654,15 +129993,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8633] = 5, + [9686] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1196), 2, + STATE(1248), 2, sym_line_comment, sym_block_comment, - ACTIONS(2330), 7, + ACTIONS(2905), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123670,7 +130009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2332), 39, + ACTIONS(2907), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123710,15 +130049,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8694] = 5, + [9747] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1197), 2, + STATE(1249), 2, sym_line_comment, sym_block_comment, - ACTIONS(2334), 7, + ACTIONS(2927), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123726,7 +130065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2336), 39, + ACTIONS(2929), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123766,15 +130105,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8755] = 5, + [9808] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1198), 2, + STATE(1250), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3525), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3523), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_const, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [9869] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1251), 2, sym_line_comment, sym_block_comment, - ACTIONS(2338), 7, + ACTIONS(2967), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123782,7 +130177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2340), 39, + ACTIONS(2969), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123822,15 +130217,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8816] = 5, + [9930] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1199), 2, + STATE(1252), 2, sym_line_comment, sym_block_comment, - ACTIONS(2342), 7, + ACTIONS(2975), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123838,7 +130233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2344), 39, + ACTIONS(2977), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123878,15 +130273,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8877] = 5, + [9991] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1200), 2, + STATE(1253), 2, sym_line_comment, sym_block_comment, - ACTIONS(2346), 7, + ACTIONS(2979), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123894,7 +130289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2348), 39, + ACTIONS(2981), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123934,15 +130329,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8938] = 5, + [10052] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1201), 2, + STATE(1254), 2, sym_line_comment, sym_block_comment, - ACTIONS(2350), 7, + ACTIONS(2987), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123950,7 +130345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2352), 39, + ACTIONS(2989), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123990,15 +130385,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8999] = 5, + [10113] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1202), 2, + STATE(1255), 2, sym_line_comment, sym_block_comment, - ACTIONS(2354), 7, + ACTIONS(2999), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124006,7 +130401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2356), 39, + ACTIONS(3001), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124046,15 +130441,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9060] = 5, + [10174] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1203), 2, + STATE(1256), 2, sym_line_comment, sym_block_comment, - ACTIONS(2358), 7, + ACTIONS(3003), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124062,7 +130457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2360), 39, + ACTIONS(3005), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124102,15 +130497,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9121] = 5, + [10235] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1204), 2, + STATE(1257), 2, sym_line_comment, sym_block_comment, - ACTIONS(2362), 7, + ACTIONS(2309), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124118,7 +130513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2364), 39, + ACTIONS(2311), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124158,15 +130553,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9182] = 5, + [10296] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1205), 2, + STATE(1258), 2, sym_line_comment, sym_block_comment, - ACTIONS(2366), 7, + ACTIONS(2461), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124174,7 +130569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2368), 39, + ACTIONS(2463), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124214,15 +130609,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9243] = 5, + [10357] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1206), 2, + STATE(1259), 2, sym_line_comment, sym_block_comment, - ACTIONS(2370), 7, + ACTIONS(1942), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124230,7 +130625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2372), 39, + ACTIONS(1944), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124270,15 +130665,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9304] = 5, + [10418] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1207), 2, + STATE(1260), 2, sym_line_comment, sym_block_comment, - ACTIONS(2378), 7, + ACTIONS(2841), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124286,7 +130681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2380), 39, + ACTIONS(2843), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124326,15 +130721,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9365] = 5, + [10479] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1208), 2, + STATE(1261), 2, sym_line_comment, sym_block_comment, - ACTIONS(2382), 7, + ACTIONS(2845), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124342,7 +130737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2384), 39, + ACTIONS(2847), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124382,15 +130777,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9426] = 5, + [10540] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1209), 2, + STATE(1262), 2, sym_line_comment, sym_block_comment, - ACTIONS(2386), 7, + ACTIONS(2857), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124398,7 +130793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2388), 39, + ACTIONS(2859), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124438,178 +130833,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9487] = 5, + [10601] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1210), 2, + STATE(1263), 2, sym_line_comment, sym_block_comment, - ACTIONS(3626), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3624), 31, + ACTIONS(2897), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [9548] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1211), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3630), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3628), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [9609] = 26, - ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1157), 1, - anon_sym_extern, - ACTIONS(1635), 1, - anon_sym_fn, - ACTIONS(3483), 1, - anon_sym_LPAREN, - ACTIONS(3491), 1, anon_sym_COLON_COLON, - ACTIONS(3499), 1, + anon_sym_POUND, sym_metavariable, - ACTIONS(3632), 1, - sym_identifier, - ACTIONS(3636), 1, - anon_sym_default, - ACTIONS(3638), 1, - anon_sym_for, - STATE(1632), 1, - sym_for_lifetimes, - STATE(2047), 1, - sym_generic_type, - STATE(2239), 1, - sym_scoped_type_identifier, - STATE(2317), 1, - aux_sym_function_modifiers_repeat1, - STATE(2461), 1, - sym_extern_modifier, - STATE(3583), 1, - sym_function_modifiers, - STATE(3610), 1, - sym_scoped_identifier, - STATE(3633), 1, - sym_bracketed_type, - STATE(3780), 1, - sym_generic_type_with_turbofish, - ACTIONS(3493), 2, - anon_sym_gen, - anon_sym_union, - STATE(1212), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1141), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3497), 3, - sym_self, - sym_super, - sym_crate, - STATE(2063), 3, - sym_higher_ranked_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3634), 17, + ACTIONS(2899), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124627,72 +130867,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9712] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3640), 1, - anon_sym_LBRACE, - STATE(1213), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3538), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3540), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_as, - anon_sym_else, - [9775] = 5, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [10662] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1214), 2, + STATE(1264), 2, sym_line_comment, sym_block_comment, - ACTIONS(2410), 7, + ACTIONS(2909), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124700,7 +130905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2412), 39, + ACTIONS(2911), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124740,31 +130945,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9836] = 5, + [10723] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1215), 2, + STATE(1265), 2, sym_line_comment, sym_block_comment, - ACTIONS(2378), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(2939), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(2380), 31, + ACTIONS(2941), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124782,29 +130979,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [9897] = 5, + [10784] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1216), 2, + STATE(1266), 2, sym_line_comment, sym_block_comment, - ACTIONS(2418), 7, + ACTIONS(1930), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124812,7 +131017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2420), 39, + ACTIONS(1932), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124852,15 +131057,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9958] = 5, + [10845] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1217), 2, + STATE(1267), 2, sym_line_comment, sym_block_comment, - ACTIONS(2422), 7, + ACTIONS(1938), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124868,7 +131073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2424), 39, + ACTIONS(1940), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124908,15 +131113,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10019] = 5, + [10906] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1218), 2, + STATE(1268), 2, sym_line_comment, sym_block_comment, - ACTIONS(2426), 7, + ACTIONS(1954), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124924,7 +131129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2428), 39, + ACTIONS(1956), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124964,15 +131169,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10080] = 5, + [10967] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1219), 2, + STATE(1269), 2, sym_line_comment, sym_block_comment, - ACTIONS(2430), 7, + ACTIONS(2102), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124980,7 +131185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2432), 39, + ACTIONS(2104), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125020,15 +131225,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10141] = 5, + [11028] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1220), 2, + STATE(1270), 2, sym_line_comment, sym_block_comment, - ACTIONS(2434), 7, + ACTIONS(2110), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125036,7 +131241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2436), 39, + ACTIONS(2112), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125076,15 +131281,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10202] = 5, + [11089] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1221), 2, + STATE(1271), 2, sym_line_comment, sym_block_comment, - ACTIONS(2438), 7, + ACTIONS(2361), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125092,7 +131297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2440), 39, + ACTIONS(2363), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125132,15 +131337,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10263] = 5, + [11150] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1222), 2, + STATE(1272), 2, sym_line_comment, sym_block_comment, - ACTIONS(2442), 7, + ACTIONS(2365), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125148,7 +131353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2444), 39, + ACTIONS(2367), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125188,15 +131393,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10324] = 5, + [11211] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1223), 2, + STATE(1273), 2, sym_line_comment, sym_block_comment, - ACTIONS(2446), 7, + ACTIONS(2613), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125204,7 +131409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2448), 39, + ACTIONS(2615), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125244,71 +131449,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10385] = 5, + [11272] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1224), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3554), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3552), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_const, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [10446] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1225), 2, + STATE(1274), 2, sym_line_comment, sym_block_comment, - ACTIONS(2450), 7, + ACTIONS(2617), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125316,7 +131465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2452), 39, + ACTIONS(2619), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125356,15 +131505,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10507] = 5, + [11333] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1226), 2, + STATE(1275), 2, sym_line_comment, sym_block_comment, - ACTIONS(2454), 7, + ACTIONS(2701), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125372,7 +131521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2456), 39, + ACTIONS(2703), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125412,15 +131561,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10568] = 5, + [11394] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1227), 2, + STATE(1276), 2, sym_line_comment, sym_block_comment, - ACTIONS(2458), 7, + ACTIONS(2725), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125428,7 +131577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2460), 39, + ACTIONS(2727), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125468,15 +131617,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10629] = 5, + [11455] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1228), 2, + STATE(1277), 2, sym_line_comment, sym_block_comment, - ACTIONS(2462), 7, + ACTIONS(2805), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125484,7 +131633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2464), 39, + ACTIONS(2807), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125524,15 +131673,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10690] = 5, + [11516] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1229), 2, + STATE(1278), 2, sym_line_comment, sym_block_comment, - ACTIONS(2466), 7, + ACTIONS(2837), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125540,7 +131689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2468), 39, + ACTIONS(2839), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125580,15 +131729,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10751] = 5, + [11577] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1230), 2, + STATE(1279), 2, sym_line_comment, sym_block_comment, - ACTIONS(2470), 7, + ACTIONS(2983), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125596,7 +131745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2472), 39, + ACTIONS(2985), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125636,15 +131785,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10812] = 5, + [11638] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1231), 2, + STATE(1280), 2, sym_line_comment, sym_block_comment, - ACTIONS(2474), 7, + ACTIONS(1918), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125652,7 +131801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2476), 39, + ACTIONS(1920), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125692,127 +131841,127 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10873] = 5, + [11699] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1232), 2, + STATE(1281), 2, sym_line_comment, sym_block_comment, - ACTIONS(2478), 7, + ACTIONS(3555), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3553), 31, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2480), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [10934] = 5, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [11760] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1233), 2, + STATE(1282), 2, sym_line_comment, sym_block_comment, - ACTIONS(2482), 7, + ACTIONS(3559), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3557), 31, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2484), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [10995] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [11821] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1234), 2, + STATE(1283), 2, sym_line_comment, sym_block_comment, - ACTIONS(2490), 7, + ACTIONS(1958), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125820,7 +131969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2492), 39, + ACTIONS(1960), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125860,15 +132009,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11056] = 5, + [11882] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1235), 2, + STATE(1284), 2, sym_line_comment, sym_block_comment, - ACTIONS(2494), 7, + ACTIONS(1970), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125876,7 +132025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2496), 39, + ACTIONS(1972), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125916,15 +132065,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11117] = 5, + [11943] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1236), 2, + STATE(1285), 2, sym_line_comment, sym_block_comment, - ACTIONS(2504), 7, + ACTIONS(1974), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125932,7 +132081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2506), 39, + ACTIONS(1976), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125972,66 +132121,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11178] = 26, - ACTIONS(29), 1, - anon_sym_LT, + [12004] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1157), 1, - anon_sym_extern, - ACTIONS(3194), 1, - anon_sym_fn, - ACTIONS(3642), 1, - sym_identifier, - ACTIONS(3644), 1, - anon_sym_LPAREN, - ACTIONS(3648), 1, - anon_sym_COLON_COLON, - ACTIONS(3650), 1, - anon_sym_default, - ACTIONS(3652), 1, - anon_sym_for, - ACTIONS(3658), 1, - sym_metavariable, - STATE(1092), 1, - sym_scoped_type_identifier, - STATE(1299), 1, - sym_generic_type, - STATE(1647), 1, - sym_for_lifetimes, - STATE(2317), 1, - aux_sym_function_modifiers_repeat1, - STATE(2461), 1, - sym_extern_modifier, - STATE(3651), 1, - sym_scoped_identifier, - STATE(3686), 1, - sym_generic_type_with_turbofish, - STATE(3698), 1, - sym_bracketed_type, - STATE(3772), 1, - sym_function_modifiers, - ACTIONS(3654), 2, - anon_sym_gen, - anon_sym_union, - STATE(1237), 2, + STATE(1286), 2, sym_line_comment, sym_block_comment, - ACTIONS(1141), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3656), 3, - sym_self, - sym_super, - sym_crate, - STATE(1519), 3, - sym_higher_ranked_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3646), 17, + ACTIONS(1978), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1980), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126049,71 +132155,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11281] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1238), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1599), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1601), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [11342] = 5, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [12065] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1239), 2, + STATE(1287), 2, sym_line_comment, sym_block_comment, - ACTIONS(2516), 7, + ACTIONS(1982), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126121,7 +132193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2518), 39, + ACTIONS(1984), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126161,31 +132233,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11403] = 5, + [12126] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1240), 2, + STATE(1288), 2, sym_line_comment, sym_block_comment, - ACTIONS(3560), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1986), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(3558), 31, + ACTIONS(1988), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126203,29 +132267,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [11464] = 5, + [12187] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1241), 2, + STATE(1289), 2, sym_line_comment, sym_block_comment, - ACTIONS(2520), 7, + ACTIONS(1990), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126233,7 +132305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2522), 39, + ACTIONS(1992), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126273,15 +132345,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11525] = 5, + [12248] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1242), 2, + STATE(1290), 2, sym_line_comment, sym_block_comment, - ACTIONS(2526), 7, + ACTIONS(1994), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126289,7 +132361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2528), 39, + ACTIONS(1996), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126329,15 +132401,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11586] = 5, + [12309] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1243), 2, + STATE(1291), 2, sym_line_comment, sym_block_comment, - ACTIONS(2530), 7, + ACTIONS(2006), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126345,7 +132417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2532), 39, + ACTIONS(2008), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126385,15 +132457,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11647] = 5, + [12370] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1244), 2, + STATE(1292), 2, sym_line_comment, sym_block_comment, - ACTIONS(2534), 7, + ACTIONS(2010), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126401,7 +132473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2536), 39, + ACTIONS(2012), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126441,15 +132513,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11708] = 5, + [12431] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1245), 2, + STATE(1293), 2, sym_line_comment, sym_block_comment, - ACTIONS(2538), 7, + ACTIONS(2022), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126457,7 +132529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2540), 39, + ACTIONS(2024), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126497,15 +132569,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11769] = 5, + [12492] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1246), 2, + STATE(1294), 2, sym_line_comment, sym_block_comment, - ACTIONS(2542), 7, + ACTIONS(2026), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126513,7 +132585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2544), 39, + ACTIONS(2028), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126553,15 +132625,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11830] = 5, + [12553] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1247), 2, + STATE(1295), 2, sym_line_comment, sym_block_comment, - ACTIONS(1918), 7, + ACTIONS(2030), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126569,7 +132641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1920), 39, + ACTIONS(2032), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126609,15 +132681,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11891] = 5, + [12614] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1248), 2, + STATE(1296), 2, sym_line_comment, sym_block_comment, - ACTIONS(2546), 7, + ACTIONS(2034), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126625,7 +132697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2548), 39, + ACTIONS(2036), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126665,15 +132737,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11952] = 5, + [12675] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1249), 2, + STATE(1297), 2, sym_line_comment, sym_block_comment, - ACTIONS(2550), 7, + ACTIONS(2038), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126681,7 +132753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2552), 39, + ACTIONS(2040), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126721,15 +132793,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12013] = 5, + [12736] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1250), 2, + STATE(1298), 2, sym_line_comment, sym_block_comment, - ACTIONS(2554), 7, + ACTIONS(2042), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126737,7 +132809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2556), 39, + ACTIONS(2044), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126777,73 +132849,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12074] = 7, + [12797] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(1496), 1, - sym_label, - STATE(1251), 2, + STATE(1299), 2, sym_line_comment, sym_block_comment, - ACTIONS(3662), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3660), 29, + ACTIONS(2046), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_as, - anon_sym_else, - [12139] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2048), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [12858] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1252), 2, + STATE(1300), 2, sym_line_comment, sym_block_comment, - ACTIONS(2558), 7, + ACTIONS(2050), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126851,7 +132921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2560), 39, + ACTIONS(2052), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126891,15 +132961,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12200] = 5, + [12919] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1253), 2, + STATE(1301), 2, sym_line_comment, sym_block_comment, - ACTIONS(2562), 7, + ACTIONS(2054), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126907,7 +132977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2564), 39, + ACTIONS(2056), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126947,28 +133017,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12261] = 5, + [12980] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1254), 2, + STATE(1302), 2, sym_line_comment, sym_block_comment, - ACTIONS(3380), 12, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, + ACTIONS(2078), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_POUND, - anon_sym_SQUOTE, - sym_integer_literal, sym_metavariable, - ACTIONS(3378), 34, + ACTIONS(2080), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126989,29 +133054,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_gen, anon_sym_impl, + anon_sym_let, + anon_sym_mod, anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [12322] = 5, + [13041] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1255), 2, + STATE(1303), 2, sym_line_comment, sym_block_comment, - ACTIONS(2566), 7, + ACTIONS(2082), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127019,7 +133089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2568), 39, + ACTIONS(2084), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127059,15 +133129,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12383] = 5, + [13102] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1256), 2, + STATE(1304), 2, sym_line_comment, sym_block_comment, - ACTIONS(2570), 7, + ACTIONS(2129), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127075,7 +133145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2572), 39, + ACTIONS(2131), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127115,58 +133185,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12444] = 21, - ACTIONS(29), 1, - anon_sym_LT, + [13163] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1681), 1, - anon_sym_DASH, - ACTIONS(1707), 1, - aux_sym_string_literal_token1, - ACTIONS(1715), 1, - sym__raw_string_literal_start, - ACTIONS(3420), 1, - anon_sym_if, - ACTIONS(3664), 1, - sym_identifier, - ACTIONS(3668), 1, - anon_sym_COLON_COLON, - ACTIONS(3672), 1, - sym_metavariable, - STATE(2830), 1, - sym_scoped_identifier, - STATE(3090), 1, - sym__literal_pattern, - STATE(3629), 1, - sym_bracketed_type, - STATE(3646), 1, - sym_generic_type_with_turbofish, - ACTIONS(1709), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3418), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - STATE(1257), 2, + STATE(1305), 2, sym_line_comment, sym_block_comment, - ACTIONS(1705), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3670), 3, - sym_self, - sym_super, - sym_crate, - STATE(2408), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3666), 20, + ACTIONS(2137), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2139), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127184,18 +133219,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, + anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - [12537] = 5, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [13224] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1258), 2, + STATE(1306), 2, sym_line_comment, sym_block_comment, - ACTIONS(2574), 7, + ACTIONS(2149), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127203,7 +133257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2576), 39, + ACTIONS(2151), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127243,15 +133297,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12598] = 5, + [13285] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1259), 2, + STATE(1307), 2, sym_line_comment, sym_block_comment, - ACTIONS(2578), 7, + ACTIONS(2153), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127259,7 +133313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2580), 39, + ACTIONS(2155), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127299,15 +133353,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12659] = 5, + [13346] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1260), 2, + STATE(1308), 2, sym_line_comment, sym_block_comment, - ACTIONS(3026), 7, + ACTIONS(2157), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127315,7 +133369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3028), 39, + ACTIONS(2159), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127355,15 +133409,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12720] = 5, + [13407] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1261), 2, + STATE(1309), 2, sym_line_comment, sym_block_comment, - ACTIONS(2590), 7, + ACTIONS(2161), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127371,7 +133425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2592), 39, + ACTIONS(2163), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127411,72 +133465,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12781] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3674), 1, - anon_sym_COLON_COLON, - STATE(1262), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3477), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3475), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [12844] = 5, + [13468] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1263), 2, + STATE(1310), 2, sym_line_comment, sym_block_comment, - ACTIONS(2594), 7, + ACTIONS(2165), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127484,7 +133481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2596), 39, + ACTIONS(2167), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127524,129 +133521,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12905] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3676), 1, - anon_sym_COLON_COLON, - STATE(1264), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3477), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3475), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [12968] = 6, + [13529] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3598), 1, - anon_sym_COLON_COLON, - STATE(1265), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3477), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3475), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [13031] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1266), 2, + STATE(1311), 2, sym_line_comment, sym_block_comment, - ACTIONS(2598), 7, + ACTIONS(2169), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127654,7 +133537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2600), 39, + ACTIONS(2171), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127694,73 +133577,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13092] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3680), 1, - anon_sym_LPAREN, - STATE(1552), 1, - sym_arguments, - STATE(1267), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3682), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3678), 29, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [13157] = 5, + [13590] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1268), 2, + STATE(1312), 2, sym_line_comment, sym_block_comment, - ACTIONS(2602), 7, + ACTIONS(2173), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127768,7 +133593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2604), 39, + ACTIONS(2175), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127808,15 +133633,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13218] = 5, + [13651] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1269), 2, + STATE(1313), 2, sym_line_comment, sym_block_comment, - ACTIONS(2606), 7, + ACTIONS(2177), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127824,7 +133649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2608), 39, + ACTIONS(2179), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127864,15 +133689,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13279] = 5, + [13712] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1270), 2, + STATE(1314), 2, sym_line_comment, sym_block_comment, - ACTIONS(2610), 7, + ACTIONS(2181), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127880,7 +133705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2612), 39, + ACTIONS(2183), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127920,15 +133745,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13340] = 5, + [13773] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1271), 2, + STATE(1315), 2, sym_line_comment, sym_block_comment, - ACTIONS(2152), 7, + ACTIONS(2193), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127936,7 +133761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2154), 39, + ACTIONS(2195), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127976,15 +133801,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13401] = 5, + [13834] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1272), 2, + STATE(1316), 2, sym_line_comment, sym_block_comment, - ACTIONS(2158), 7, + ACTIONS(2197), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127992,7 +133817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2160), 39, + ACTIONS(2199), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128032,15 +133857,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13462] = 5, + [13895] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1273), 2, + STATE(1317), 2, sym_line_comment, sym_block_comment, - ACTIONS(2614), 7, + ACTIONS(2201), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128048,7 +133873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2616), 39, + ACTIONS(2203), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128088,15 +133913,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13523] = 5, + [13956] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1274), 2, + STATE(1318), 2, sym_line_comment, sym_block_comment, - ACTIONS(2618), 7, + ACTIONS(2225), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128104,7 +133929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2620), 39, + ACTIONS(2227), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128144,15 +133969,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13584] = 5, + [14017] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1275), 2, + STATE(1319), 2, sym_line_comment, sym_block_comment, - ACTIONS(2622), 7, + ACTIONS(2229), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128160,7 +133985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2624), 39, + ACTIONS(2231), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128200,15 +134025,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13645] = 5, + [14078] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1276), 2, + STATE(1320), 2, sym_line_comment, sym_block_comment, - ACTIONS(2626), 7, + ACTIONS(2245), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128216,7 +134041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2628), 39, + ACTIONS(2247), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128256,15 +134081,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13706] = 5, + [14139] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1277), 2, + STATE(1321), 2, sym_line_comment, sym_block_comment, - ACTIONS(2630), 7, + ACTIONS(2249), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128272,7 +134097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2632), 39, + ACTIONS(2251), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128312,15 +134137,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13767] = 5, + [14200] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1278), 2, + STATE(1322), 2, sym_line_comment, sym_block_comment, - ACTIONS(2662), 7, + ACTIONS(2257), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128328,7 +134153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2664), 39, + ACTIONS(2259), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128368,15 +134193,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13828] = 5, + [14261] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1279), 2, + STATE(1323), 2, sym_line_comment, sym_block_comment, - ACTIONS(2666), 7, + ACTIONS(2265), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128384,7 +134209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2668), 39, + ACTIONS(2267), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128424,170 +134249,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13889] = 5, + [14322] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1280), 2, + STATE(1324), 2, sym_line_comment, sym_block_comment, - ACTIONS(3686), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3684), 31, + ACTIONS(2273), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [13950] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1281), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3690), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3688), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [14011] = 21, - ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1681), 1, - anon_sym_DASH, - ACTIONS(1707), 1, - aux_sym_string_literal_token1, - ACTIONS(1715), 1, - sym__raw_string_literal_start, - ACTIONS(3408), 1, - anon_sym_if, - ACTIONS(3668), 1, anon_sym_COLON_COLON, - ACTIONS(3692), 1, - sym_identifier, - ACTIONS(3698), 1, + anon_sym_POUND, sym_metavariable, - STATE(2752), 1, - sym_scoped_identifier, - STATE(2987), 1, - sym__literal_pattern, - STATE(3629), 1, - sym_bracketed_type, - STATE(3646), 1, - sym_generic_type_with_turbofish, - ACTIONS(1709), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3406), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - STATE(1282), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1705), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3696), 3, - sym_self, - sym_super, - sym_crate, - STATE(2408), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3694), 20, + ACTIONS(2275), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128605,188 +134283,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, + anon_sym_const, anon_sym_default, - anon_sym_gen, - anon_sym_union, - [14104] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1383), 1, - anon_sym_LBRACE, - ACTIONS(3444), 1, - anon_sym_BANG, - ACTIONS(3446), 1, - anon_sym_COLON_COLON, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(3700), 1, - anon_sym_move, - STATE(486), 1, - sym_block, - STATE(3778), 1, - sym_label, - STATE(1283), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3442), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3440), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_as, - [14179] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1284), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3704), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3702), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [14240] = 26, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1157), 1, - anon_sym_extern, - ACTIONS(3236), 1, + anon_sym_enum, anon_sym_fn, - ACTIONS(3706), 1, - sym_identifier, - ACTIONS(3708), 1, - anon_sym_LPAREN, - ACTIONS(3712), 1, - anon_sym_COLON_COLON, - ACTIONS(3714), 1, - anon_sym_default, - ACTIONS(3716), 1, - anon_sym_for, - ACTIONS(3722), 1, - sym_metavariable, - STATE(1611), 1, - sym_scoped_type_identifier, - STATE(1625), 1, - sym_for_lifetimes, - STATE(1683), 1, - sym_generic_type, - STATE(2317), 1, - aux_sym_function_modifiers_repeat1, - STATE(2461), 1, - sym_extern_modifier, - STATE(3641), 1, - sym_function_modifiers, - STATE(3678), 1, - sym_scoped_identifier, - STATE(3696), 1, - sym_generic_type_with_turbofish, - STATE(3702), 1, - sym_bracketed_type, - ACTIONS(3718), 2, anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - STATE(1285), 2, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14383] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1325), 2, sym_line_comment, sym_block_comment, - ACTIONS(1141), 3, + ACTIONS(2293), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2295), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, anon_sym_async, anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, anon_sym_unsafe, - ACTIONS(3720), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1762), 3, - sym_higher_ranked_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3710), 17, + [14444] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1326), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2297), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2299), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128804,15 +134395,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [14343] = 5, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14505] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1286), 2, + STATE(1327), 2, sym_line_comment, sym_block_comment, - ACTIONS(2686), 7, + ACTIONS(2749), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128820,7 +134433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2688), 39, + ACTIONS(2751), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128860,58 +134473,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14404] = 21, - ACTIONS(29), 1, - anon_sym_LT, + [14566] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1681), 1, - anon_sym_DASH, - ACTIONS(1707), 1, - aux_sym_string_literal_token1, - ACTIONS(1715), 1, - sym__raw_string_literal_start, - ACTIONS(3396), 1, - anon_sym_if, - ACTIONS(3668), 1, - anon_sym_COLON_COLON, - ACTIONS(3724), 1, - sym_identifier, - ACTIONS(3730), 1, - sym_metavariable, - STATE(2827), 1, - sym_scoped_identifier, - STATE(3007), 1, - sym__literal_pattern, - STATE(3629), 1, - sym_bracketed_type, - STATE(3646), 1, - sym_generic_type_with_turbofish, - ACTIONS(1709), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3394), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - STATE(1287), 2, + STATE(1328), 2, sym_line_comment, sym_block_comment, - ACTIONS(1705), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3728), 3, - sym_self, - sym_super, - sym_crate, - STATE(2408), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3726), 20, + ACTIONS(2313), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2315), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128929,130 +134507,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, + anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - [14497] = 5, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14627] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1288), 2, + STATE(1329), 2, sym_line_comment, sym_block_comment, - ACTIONS(3734), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3732), 31, + ACTIONS(2321), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [14558] = 5, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2323), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14688] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1289), 2, + STATE(1330), 2, sym_line_comment, sym_block_comment, - ACTIONS(3738), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3736), 31, + ACTIONS(2333), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [14619] = 5, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2335), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14749] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1290), 2, + STATE(1331), 2, sym_line_comment, sym_block_comment, - ACTIONS(2690), 7, + ACTIONS(2345), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129060,7 +134657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2692), 39, + ACTIONS(2347), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129100,15 +134697,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14680] = 5, + [14810] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1291), 2, + STATE(1332), 2, sym_line_comment, sym_block_comment, - ACTIONS(2698), 7, + ACTIONS(2353), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129116,7 +134713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2700), 39, + ACTIONS(2355), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129156,15 +134753,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14741] = 5, + [14871] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1292), 2, + STATE(1333), 2, sym_line_comment, sym_block_comment, - ACTIONS(2702), 7, + ACTIONS(2357), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129172,7 +134769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2704), 39, + ACTIONS(2359), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129212,15 +134809,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14802] = 5, + [14932] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1293), 2, + STATE(1334), 2, sym_line_comment, sym_block_comment, - ACTIONS(3388), 15, + ACTIONS(3563), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -129236,7 +134833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3390), 31, + ACTIONS(3561), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -129244,7 +134841,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -129265,20 +134861,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [14863] = 6, + [14993] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_DASH_GT, - STATE(1294), 2, + STATE(1335), 2, sym_line_comment, sym_block_comment, - ACTIONS(3742), 15, + ACTIONS(3567), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -129294,7 +134889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3740), 30, + ACTIONS(3565), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -129322,18 +134917,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [14926] = 5, + [15054] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1295), 2, + STATE(1336), 2, sym_line_comment, sym_block_comment, - ACTIONS(2706), 7, + ACTIONS(2381), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129341,7 +134937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2708), 39, + ACTIONS(2383), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129381,72 +134977,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14987] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3598), 1, - anon_sym_COLON_COLON, - STATE(1296), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3515), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3513), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [15050] = 5, + [15115] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1297), 2, + STATE(1337), 2, sym_line_comment, sym_block_comment, - ACTIONS(2710), 7, + ACTIONS(2389), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129454,7 +134993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2712), 39, + ACTIONS(2391), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129494,15 +135033,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15111] = 5, + [15176] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1298), 2, + STATE(1338), 2, sym_line_comment, sym_block_comment, - ACTIONS(2714), 7, + ACTIONS(2397), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129510,7 +135049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2716), 39, + ACTIONS(2399), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129550,72 +135089,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15172] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3598), 1, - anon_sym_COLON_COLON, - STATE(1299), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3519), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3517), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [15235] = 5, + [15237] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1300), 2, + STATE(1339), 2, sym_line_comment, sym_block_comment, - ACTIONS(2718), 7, + ACTIONS(2401), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129623,7 +135105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2720), 39, + ACTIONS(2403), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129663,72 +135145,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15296] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3750), 1, - anon_sym_DASH_GT, - STATE(1301), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3748), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3746), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [15359] = 5, + [15298] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1302), 2, + STATE(1340), 2, sym_line_comment, sym_block_comment, - ACTIONS(2722), 7, + ACTIONS(2405), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129736,7 +135161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2724), 39, + ACTIONS(2407), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129776,72 +135201,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15420] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3756), 1, - anon_sym_DASH_GT, - STATE(1303), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3754), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3752), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [15483] = 5, + [15359] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1304), 2, + STATE(1341), 2, sym_line_comment, sym_block_comment, - ACTIONS(2374), 7, + ACTIONS(2409), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129849,7 +135217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2376), 39, + ACTIONS(2411), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129889,15 +135257,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15544] = 5, + [15420] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1305), 2, + STATE(1342), 2, sym_line_comment, sym_block_comment, - ACTIONS(2726), 7, + ACTIONS(2413), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129905,7 +135273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2728), 39, + ACTIONS(2415), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129945,15 +135313,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15605] = 5, + [15481] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1306), 2, + STATE(1343), 2, sym_line_comment, sym_block_comment, - ACTIONS(2730), 7, + ACTIONS(2421), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129961,7 +135329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2732), 39, + ACTIONS(2423), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130001,73 +135369,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15666] = 7, + [15542] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3758), 1, - anon_sym_else, - STATE(1475), 1, - sym_else_clause, - STATE(1307), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1407), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1405), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - [15731] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1308), 2, + STATE(1344), 2, sym_line_comment, sym_block_comment, - ACTIONS(2390), 7, + ACTIONS(2441), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130075,7 +135385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2392), 39, + ACTIONS(2443), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130115,15 +135425,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15792] = 5, + [15603] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1309), 2, + STATE(1345), 2, sym_line_comment, sym_block_comment, - ACTIONS(2394), 7, + ACTIONS(2449), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130131,7 +135441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2396), 39, + ACTIONS(2451), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130171,15 +135481,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15853] = 5, + [15664] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1310), 2, + STATE(1346), 2, sym_line_comment, sym_block_comment, - ACTIONS(2398), 7, + ACTIONS(2465), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130187,7 +135497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2400), 39, + ACTIONS(2467), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130227,15 +135537,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15914] = 5, + [15725] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1311), 2, + STATE(1347), 2, sym_line_comment, sym_block_comment, - ACTIONS(2646), 7, + ACTIONS(2469), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130243,7 +135553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2648), 39, + ACTIONS(2471), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130283,15 +135593,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15975] = 5, + [15786] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1312), 2, + STATE(1348), 2, sym_line_comment, sym_block_comment, - ACTIONS(2650), 7, + ACTIONS(2473), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130299,7 +135609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2652), 39, + ACTIONS(2475), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130339,15 +135649,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16036] = 5, + [15847] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1313), 2, + STATE(1349), 2, sym_line_comment, sym_block_comment, - ACTIONS(2654), 7, + ACTIONS(2477), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130355,7 +135665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2656), 39, + ACTIONS(2479), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130395,15 +135705,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16097] = 5, + [15908] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1314), 2, + STATE(1350), 2, sym_line_comment, sym_block_comment, - ACTIONS(1926), 7, + ACTIONS(2485), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130411,7 +135721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1928), 39, + ACTIONS(2487), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130451,15 +135761,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16158] = 5, + [15969] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1315), 2, + STATE(1351), 2, sym_line_comment, sym_block_comment, - ACTIONS(2064), 7, + ACTIONS(2489), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130467,7 +135777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2066), 39, + ACTIONS(2491), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130507,15 +135817,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16219] = 5, + [16030] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1316), 2, + STATE(1352), 2, sym_line_comment, sym_block_comment, - ACTIONS(2068), 7, + ACTIONS(2493), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130523,7 +135833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2070), 39, + ACTIONS(2495), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130563,15 +135873,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16280] = 5, + [16091] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1317), 2, + STATE(1353), 2, sym_line_comment, sym_block_comment, - ACTIONS(2072), 7, + ACTIONS(2497), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130579,7 +135889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2074), 39, + ACTIONS(2499), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130619,15 +135929,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16341] = 5, + [16152] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1318), 2, + STATE(1354), 2, sym_line_comment, sym_block_comment, - ACTIONS(2076), 7, + ACTIONS(2505), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130635,7 +135945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2078), 39, + ACTIONS(2507), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130675,15 +135985,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16402] = 5, + [16213] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1319), 2, + STATE(1355), 2, sym_line_comment, sym_block_comment, - ACTIONS(2084), 7, + ACTIONS(2509), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130691,7 +136001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2086), 39, + ACTIONS(2511), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130731,15 +136041,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16463] = 5, + [16274] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1320), 2, + STATE(1356), 2, sym_line_comment, sym_block_comment, - ACTIONS(2144), 7, + ACTIONS(2517), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130747,7 +136057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2146), 39, + ACTIONS(2519), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130787,15 +136097,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16524] = 5, + [16335] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1321), 2, + STATE(1357), 2, sym_line_comment, sym_block_comment, - ACTIONS(2148), 7, + ACTIONS(2521), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130803,7 +136113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2150), 39, + ACTIONS(2523), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130843,15 +136153,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16585] = 5, + [16396] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1322), 2, + STATE(1358), 2, sym_line_comment, sym_block_comment, - ACTIONS(2162), 7, + ACTIONS(2525), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130859,7 +136169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2164), 39, + ACTIONS(2527), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130899,15 +136209,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16646] = 5, + [16457] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1323), 2, + STATE(1359), 2, sym_line_comment, sym_block_comment, - ACTIONS(2174), 7, + ACTIONS(2529), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130915,7 +136225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2176), 39, + ACTIONS(2531), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130955,71 +136265,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16707] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1324), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3503), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3501), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_LT2, - [16768] = 5, + [16518] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1325), 2, + STATE(1360), 2, sym_line_comment, sym_block_comment, - ACTIONS(2734), 7, + ACTIONS(2537), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131027,7 +136281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2736), 39, + ACTIONS(2539), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131067,71 +136321,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16829] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1326), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3762), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3760), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [16890] = 5, + [16579] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1327), 2, + STATE(1361), 2, sym_line_comment, sym_block_comment, - ACTIONS(2738), 7, + ACTIONS(2541), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131139,7 +136337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2740), 39, + ACTIONS(2543), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131179,15 +136377,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16951] = 5, + [16640] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1328), 2, + STATE(1362), 2, sym_line_comment, sym_block_comment, - ACTIONS(2742), 7, + ACTIONS(2545), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131195,7 +136393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2744), 39, + ACTIONS(2547), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131235,15 +136433,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17012] = 5, + [16701] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1329), 2, + STATE(1363), 2, sym_line_comment, sym_block_comment, - ACTIONS(2746), 7, + ACTIONS(2549), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131251,7 +136449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2748), 39, + ACTIONS(2551), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131291,15 +136489,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17073] = 5, + [16762] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1330), 2, + STATE(1364), 2, sym_line_comment, sym_block_comment, - ACTIONS(2750), 7, + ACTIONS(2557), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131307,7 +136505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2752), 39, + ACTIONS(2559), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131347,15 +136545,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17134] = 5, + [16823] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1331), 2, + STATE(1365), 2, sym_line_comment, sym_block_comment, - ACTIONS(2754), 7, + ACTIONS(2561), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131363,7 +136561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2756), 39, + ACTIONS(2563), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131403,15 +136601,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17195] = 5, + [16884] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1332), 2, + STATE(1366), 2, sym_line_comment, sym_block_comment, - ACTIONS(2758), 7, + ACTIONS(2565), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131419,7 +136617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2760), 39, + ACTIONS(2567), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131459,72 +136657,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17256] = 6, + [16945] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3768), 1, - anon_sym_DASH_GT, - STATE(1333), 2, + STATE(1367), 2, sym_line_comment, sym_block_comment, - ACTIONS(3766), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3764), 30, + ACTIONS(2569), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [17319] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2571), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17006] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1334), 2, + STATE(1368), 2, sym_line_comment, sym_block_comment, - ACTIONS(2762), 7, + ACTIONS(2589), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131532,7 +136729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2764), 39, + ACTIONS(2591), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131572,129 +136769,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17380] = 6, + [17067] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3774), 1, - anon_sym_DASH_GT, - STATE(1335), 2, + STATE(1369), 2, sym_line_comment, sym_block_comment, - ACTIONS(3772), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3770), 30, + ACTIONS(2593), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [17443] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3780), 1, - anon_sym_DASH_GT, - STATE(1336), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3778), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3776), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [17506] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2595), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17128] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1337), 2, + STATE(1370), 2, sym_line_comment, sym_block_comment, - ACTIONS(2766), 7, + ACTIONS(2597), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131702,7 +136841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2768), 39, + ACTIONS(2599), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131742,15 +136881,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17567] = 5, + [17189] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1338), 2, + STATE(1371), 2, sym_line_comment, sym_block_comment, - ACTIONS(2770), 7, + ACTIONS(2609), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131758,7 +136897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2772), 39, + ACTIONS(2611), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131798,15 +136937,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17628] = 5, + [17250] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1339), 2, + STATE(1372), 2, sym_line_comment, sym_block_comment, - ACTIONS(2782), 7, + ACTIONS(2637), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131814,7 +136953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2784), 39, + ACTIONS(2639), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131854,15 +136993,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17689] = 5, + [17311] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1340), 2, + STATE(1373), 2, sym_line_comment, sym_block_comment, - ACTIONS(2790), 7, + ACTIONS(2653), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131870,7 +137009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2792), 39, + ACTIONS(2655), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131910,15 +137049,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17750] = 5, + [17372] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1341), 2, + STATE(1374), 2, sym_line_comment, sym_block_comment, - ACTIONS(2798), 7, + ACTIONS(2657), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131926,7 +137065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2800), 39, + ACTIONS(2659), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131966,15 +137105,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17811] = 5, + [17433] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1342), 2, + STATE(1375), 2, sym_line_comment, sym_block_comment, - ACTIONS(2802), 7, + ACTIONS(2661), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131982,7 +137121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2804), 39, + ACTIONS(2663), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132022,15 +137161,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17872] = 5, + [17494] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1343), 2, + STATE(1376), 2, sym_line_comment, sym_block_comment, - ACTIONS(2806), 7, + ACTIONS(2665), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132038,7 +137177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2808), 39, + ACTIONS(2667), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132078,15 +137217,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17933] = 5, + [17555] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1344), 2, + STATE(1377), 2, sym_line_comment, sym_block_comment, - ACTIONS(2402), 7, + ACTIONS(2669), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132094,7 +137233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2404), 39, + ACTIONS(2671), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132134,15 +137273,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17994] = 5, + [17616] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1345), 2, + STATE(1378), 2, sym_line_comment, sym_block_comment, - ACTIONS(2810), 7, + ACTIONS(2673), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132150,7 +137289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2812), 39, + ACTIONS(2675), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132190,15 +137329,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18055] = 5, + [17677] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1346), 2, + STATE(1379), 2, sym_line_comment, sym_block_comment, - ACTIONS(2814), 7, + ACTIONS(2677), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132206,7 +137345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2816), 39, + ACTIONS(2679), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132246,15 +137385,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18116] = 5, + [17738] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1347), 2, + STATE(1380), 2, sym_line_comment, sym_block_comment, - ACTIONS(2818), 7, + ACTIONS(2681), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132262,7 +137401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2820), 39, + ACTIONS(2683), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132302,15 +137441,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18177] = 5, + [17799] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1348), 2, + STATE(1381), 2, sym_line_comment, sym_block_comment, - ACTIONS(2406), 7, + ACTIONS(2685), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132318,7 +137457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2408), 39, + ACTIONS(2687), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132358,15 +137497,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18238] = 5, + [17860] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1349), 2, + STATE(1382), 2, sym_line_comment, sym_block_comment, - ACTIONS(2822), 7, + ACTIONS(2689), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132374,7 +137513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2824), 39, + ACTIONS(2691), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132414,15 +137553,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18299] = 5, + [17921] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1350), 2, + STATE(1383), 2, sym_line_comment, sym_block_comment, - ACTIONS(2826), 7, + ACTIONS(2693), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132430,7 +137569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2828), 39, + ACTIONS(2695), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132470,15 +137609,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18360] = 5, + [17982] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1351), 2, + STATE(1384), 2, sym_line_comment, sym_block_comment, - ACTIONS(2830), 7, + ACTIONS(2697), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132486,7 +137625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2832), 39, + ACTIONS(2699), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132526,15 +137665,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18421] = 5, + [18043] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1352), 2, + STATE(1385), 2, sym_line_comment, sym_block_comment, - ACTIONS(2414), 7, + ACTIONS(2745), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132542,7 +137681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2416), 39, + ACTIONS(2747), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132582,15 +137721,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18482] = 5, + [18104] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1353), 2, + STATE(1386), 2, sym_line_comment, sym_block_comment, - ACTIONS(2486), 7, + ACTIONS(2753), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132598,7 +137737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2488), 39, + ACTIONS(2755), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132638,15 +137777,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18543] = 5, + [18165] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1354), 2, + STATE(1387), 2, sym_line_comment, sym_block_comment, - ACTIONS(2498), 7, + ACTIONS(2757), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132654,7 +137793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2500), 39, + ACTIONS(2759), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132694,15 +137833,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18604] = 5, + [18226] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1355), 2, + STATE(1388), 2, sym_line_comment, sym_block_comment, - ACTIONS(2834), 7, + ACTIONS(2761), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132710,7 +137849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2836), 39, + ACTIONS(2763), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132750,23 +137889,28 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18665] = 5, + [18287] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1356), 2, + STATE(1389), 2, sym_line_comment, sym_block_comment, - ACTIONS(2838), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3029), 12, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_POUND, + anon_sym_SQUOTE, + sym_integer_literal, sym_metavariable, - ACTIONS(2840), 39, + ACTIONS(3027), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132787,42 +137931,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_gen, anon_sym_impl, - anon_sym_let, - anon_sym_mod, anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [18726] = 5, + [18348] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1357), 2, + STATE(1390), 2, sym_line_comment, sym_block_comment, - ACTIONS(2842), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3486), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2844), 39, + ACTIONS(3484), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132840,45 +137987,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [18787] = 5, + [18409] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1358), 2, + STATE(1391), 2, sym_line_comment, sym_block_comment, - ACTIONS(2846), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(1888), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2848), 39, + ACTIONS(1886), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132896,37 +138043,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [18848] = 5, + [18470] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1359), 2, + STATE(1392), 2, sym_line_comment, sym_block_comment, - ACTIONS(2850), 7, + ACTIONS(2959), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132934,7 +138073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2852), 39, + ACTIONS(2961), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132974,23 +138113,143 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18909] = 5, + [18531] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1360), 2, + ACTIONS(3569), 1, + anon_sym_COLON_COLON, + STATE(1393), 2, sym_line_comment, sym_block_comment, - ACTIONS(2854), 7, + ACTIONS(1399), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1397), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [18594] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + STATE(1511), 1, + sym_label, + STATE(1394), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3573), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3571), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + anon_sym_else, + [18659] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1395), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3025), 12, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_POUND, + anon_sym_SQUOTE, + sym_integer_literal, sym_metavariable, - ACTIONS(2856), 39, + ACTIONS(3023), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133011,42 +138270,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_gen, anon_sym_impl, - anon_sym_let, - anon_sym_mod, anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [18970] = 5, + [18720] = 21, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1361), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2858), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, + ACTIONS(1587), 1, + anon_sym_DASH, + ACTIONS(1613), 1, + aux_sym_string_literal_token1, + ACTIONS(1621), 1, + sym__raw_string_literal_start, + ACTIONS(3337), 1, + anon_sym_if, + ACTIONS(3575), 1, + sym_identifier, + ACTIONS(3579), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3583), 1, sym_metavariable, - ACTIONS(2860), 39, + STATE(2770), 1, + sym_scoped_identifier, + STATE(3221), 1, + sym__literal_pattern, + STATE(3688), 1, + sym_bracketed_type, + STATE(3705), 1, + sym_generic_type_with_turbofish, + ACTIONS(1615), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3335), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + STATE(1396), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1611), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3581), 3, + sym_self, + sym_super, + sym_crate, + STATE(2477), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3577), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133064,45 +138353,240 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, + [18813] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3585), 1, + anon_sym_COLON_COLON, + STATE(1397), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3422), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3420), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [18876] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3587), 1, + anon_sym_COLON_COLON, + STATE(1398), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3422), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3420), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [18939] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3537), 1, + anon_sym_COLON_COLON, + STATE(1399), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3422), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3420), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [19002] = 26, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1107), 1, + anon_sym_extern, + ACTIONS(1541), 1, + anon_sym_fn, + ACTIONS(3431), 1, + anon_sym_LPAREN, + ACTIONS(3439), 1, + anon_sym_COLON_COLON, + ACTIONS(3447), 1, + sym_metavariable, + ACTIONS(3589), 1, + sym_identifier, + ACTIONS(3593), 1, + anon_sym_default, + ACTIONS(3595), 1, + anon_sym_for, + STATE(1685), 1, + sym_for_lifetimes, + STATE(2098), 1, + sym_generic_type, + STATE(2307), 1, + sym_scoped_type_identifier, + STATE(2385), 1, + aux_sym_function_modifiers_repeat1, + STATE(2535), 1, + sym_extern_modifier, + STATE(3689), 1, + sym_function_modifiers, + STATE(3692), 1, + sym_bracketed_type, + STATE(3823), 1, + sym_scoped_identifier, + STATE(3847), 1, + sym_generic_type_with_turbofish, + ACTIONS(3441), 2, + anon_sym_gen, + anon_sym_union, + STATE(1400), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1091), 3, + anon_sym_async, + anon_sym_const, anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, + ACTIONS(3445), 3, sym_self, sym_super, sym_crate, - [19031] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1362), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2862), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2864), 39, + STATE(2119), 3, + sym_higher_ranked_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3591), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133120,93 +138604,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19092] = 5, + [19105] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1363), 2, + ACTIONS(3597), 1, + anon_sym_LBRACE, + STATE(1401), 2, sym_line_comment, sym_block_comment, - ACTIONS(2866), 7, + ACTIONS(3416), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3418), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_LT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2868), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19153] = 5, + anon_sym_as, + anon_sym_else, + [19168] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1364), 2, + STATE(1402), 2, sym_line_comment, sym_block_comment, - ACTIONS(2870), 7, + ACTIONS(1405), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133214,7 +138677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2872), 39, + ACTIONS(1407), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133254,15 +138717,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19214] = 5, + [19229] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1365), 2, + STATE(1403), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1505), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1507), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [19290] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1404), 2, sym_line_comment, sym_block_comment, - ACTIONS(2874), 7, + ACTIONS(2935), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133270,7 +138789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2876), 39, + ACTIONS(2937), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133310,15 +138829,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19275] = 5, + [19351] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1366), 2, + STATE(1405), 2, sym_line_comment, sym_block_comment, - ACTIONS(2878), 7, + ACTIONS(2971), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133326,7 +138845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2880), 39, + ACTIONS(2973), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133366,23 +138885,31 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19336] = 5, + [19412] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1367), 2, + STATE(1406), 2, sym_line_comment, sym_block_comment, - ACTIONS(2882), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3029), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2884), 39, + ACTIONS(3027), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133400,45 +138927,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [19397] = 5, + [19473] = 12, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1368), 2, + ACTIONS(3381), 1, + anon_sym_COLON_COLON, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + ACTIONS(3490), 1, + anon_sym_BANG, + ACTIONS(3599), 1, + anon_sym_move, + STATE(415), 1, + sym_block, + STATE(3801), 1, + sym_label, + STATE(1407), 2, sym_line_comment, sym_block_comment, - ACTIONS(2886), 7, + ACTIONS(3377), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3375), 24, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [19548] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1408), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3025), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2888), 39, + ACTIONS(3023), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133456,45 +139046,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [19458] = 5, + [19609] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1369), 2, + STATE(1409), 2, sym_line_comment, sym_block_comment, - ACTIONS(2508), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3603), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2510), 39, + ACTIONS(3601), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133512,45 +139102,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [19519] = 5, + [19670] = 21, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1370), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2586), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, + ACTIONS(1587), 1, + anon_sym_DASH, + ACTIONS(1613), 1, + aux_sym_string_literal_token1, + ACTIONS(1621), 1, + sym__raw_string_literal_start, + ACTIONS(3349), 1, + anon_sym_if, + ACTIONS(3579), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3605), 1, + sym_identifier, + ACTIONS(3611), 1, sym_metavariable, - ACTIONS(2588), 39, + STATE(2929), 1, + sym_scoped_identifier, + STATE(3239), 1, + sym__literal_pattern, + STATE(3688), 1, + sym_bracketed_type, + STATE(3705), 1, + sym_generic_type_with_turbofish, + ACTIONS(1615), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3347), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + STATE(1410), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1611), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3609), 3, + sym_self, + sym_super, + sym_crate, + STATE(2477), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3607), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133568,101 +139185,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19580] = 5, + [19763] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1371), 2, + STATE(1411), 2, sym_line_comment, sym_block_comment, - ACTIONS(2890), 7, + ACTIONS(3615), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3613), 31, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [19824] = 21, + ACTIONS(29), 1, anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1587), 1, + anon_sym_DASH, + ACTIONS(1613), 1, + aux_sym_string_literal_token1, + ACTIONS(1621), 1, + sym__raw_string_literal_start, + ACTIONS(3325), 1, + anon_sym_if, + ACTIONS(3579), 1, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2892), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + ACTIONS(3617), 1, sym_identifier, + ACTIONS(3623), 1, + sym_metavariable, + STATE(2688), 1, + sym_scoped_identifier, + STATE(3173), 1, + sym__literal_pattern, + STATE(3688), 1, + sym_bracketed_type, + STATE(3705), 1, + sym_generic_type_with_turbofish, + ACTIONS(1615), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3323), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + STATE(1412), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1611), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3621), 3, sym_self, sym_super, sym_crate, - [19641] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1372), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2894), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2896), 39, + STATE(2477), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3619), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133680,45 +139313,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19702] = 5, + [19917] = 26, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1373), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2898), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, + ACTIONS(1107), 1, + anon_sym_extern, + ACTIONS(3169), 1, + anon_sym_fn, + ACTIONS(3625), 1, + sym_identifier, + ACTIONS(3627), 1, + anon_sym_LPAREN, + ACTIONS(3631), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3633), 1, + anon_sym_default, + ACTIONS(3635), 1, + anon_sym_for, + ACTIONS(3641), 1, sym_metavariable, - ACTIONS(2900), 39, + STATE(1137), 1, + sym_scoped_type_identifier, + STATE(1421), 1, + sym_generic_type, + STATE(1690), 1, + sym_for_lifetimes, + STATE(2385), 1, + aux_sym_function_modifiers_repeat1, + STATE(2535), 1, + sym_extern_modifier, + STATE(3710), 1, + sym_scoped_identifier, + STATE(3746), 1, + sym_generic_type_with_turbofish, + STATE(3758), 1, + sym_bracketed_type, + STATE(3835), 1, + sym_function_modifiers, + ACTIONS(3637), 2, + anon_sym_gen, + anon_sym_union, + STATE(1413), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1091), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3639), 3, + sym_self, + sym_super, + sym_crate, + STATE(1536), 3, + sym_higher_ranked_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3629), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133736,93 +139393,297 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19763] = 5, + [20020] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1374), 2, + STATE(1414), 2, sym_line_comment, sym_block_comment, - ACTIONS(2902), 7, + ACTIONS(3645), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3643), 31, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [20081] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1415), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3649), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3647), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2904), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19824] = 5, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [20142] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1375), 2, + ACTIONS(3651), 1, + anon_sym_LBRACE, + STATE(1416), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3463), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3465), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_as, + anon_sym_else, + [20205] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1417), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3317), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3319), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [20266] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3657), 1, + anon_sym_DASH_GT, + STATE(1418), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3655), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3653), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [20329] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1419), 2, sym_line_comment, sym_block_comment, - ACTIONS(2906), 7, + ACTIONS(3661), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133830,7 +139691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2908), 39, + ACTIONS(3659), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133870,15 +139731,131 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19885] = 5, + [20390] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3537), 1, + anon_sym_COLON_COLON, + STATE(1420), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3476), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3474), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [20453] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3537), 1, + anon_sym_COLON_COLON, + STATE(1421), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3482), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3480), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [20516] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1376), 2, + ACTIONS(3667), 1, + anon_sym_DASH_GT, + STATE(1422), 2, sym_line_comment, sym_block_comment, - ACTIONS(3784), 15, + ACTIONS(3665), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133894,7 +139871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3782), 31, + ACTIONS(3663), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133922,75 +139899,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [19946] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1377), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2634), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2636), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20007] = 5, + [20579] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1378), 2, + ACTIONS(3673), 1, + anon_sym_DASH_GT, + STATE(1423), 2, sym_line_comment, sym_block_comment, - ACTIONS(3788), 15, + ACTIONS(3671), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134006,7 +139928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3786), 31, + ACTIONS(3669), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134034,531 +139956,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [20068] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1379), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2926), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2928), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20129] = 5, + [20642] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1380), 2, + ACTIONS(3675), 1, + anon_sym_LBRACE, + STATE(1424), 2, sym_line_comment, sym_block_comment, - ACTIONS(2930), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3408), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2932), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20190] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1381), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2638), 7, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3410), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_LT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2640), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20251] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1382), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2934), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + anon_sym_as, + anon_sym_else, + [20705] = 26, + ACTIONS(29), 1, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2936), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20312] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1383), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2938), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2940), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, + ACTIONS(1107), 1, anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20373] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1384), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2642), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2644), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, + ACTIONS(3131), 1, anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + ACTIONS(3677), 1, sym_identifier, - sym_self, - sym_super, - sym_crate, - [20434] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1385), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2942), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, + ACTIONS(3679), 1, + anon_sym_LPAREN, + ACTIONS(3683), 1, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2944), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, + ACTIONS(3685), 1, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20495] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1386), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2946), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3687), 1, + anon_sym_for, + ACTIONS(3693), 1, sym_metavariable, - ACTIONS(2948), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, + STATE(1650), 1, + sym_scoped_type_identifier, + STATE(1684), 1, + sym_for_lifetimes, + STATE(1739), 1, + sym_generic_type, + STATE(2385), 1, + aux_sym_function_modifiers_repeat1, + STATE(2535), 1, + sym_extern_modifier, + STATE(3700), 1, + sym_function_modifiers, + STATE(3737), 1, + sym_scoped_identifier, + STATE(3756), 1, + sym_generic_type_with_turbofish, + STATE(3762), 1, + sym_bracketed_type, + ACTIONS(3689), 2, anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20556] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1387), 2, + STATE(1425), 2, sym_line_comment, sym_block_comment, - ACTIONS(2950), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2952), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, + ACTIONS(1091), 3, anon_sym_async, anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, + ACTIONS(3691), 3, sym_self, sym_super, sym_crate, - [20617] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1388), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2954), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2956), 39, + STATE(1871), 3, + sym_higher_ranked_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3681), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134576,37 +140093,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20678] = 5, + [20808] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1389), 2, + STATE(1426), 2, sym_line_comment, sym_block_comment, - ACTIONS(2958), 7, + ACTIONS(1998), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134614,7 +140109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2960), 39, + ACTIONS(2000), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134654,129 +140149,131 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20739] = 5, + [20869] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1390), 2, + STATE(1427), 2, sym_line_comment, sym_block_comment, - ACTIONS(2962), 7, + ACTIONS(3697), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3695), 31, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2964), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20800] = 5, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [20930] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1391), 2, + STATE(1428), 2, sym_line_comment, sym_block_comment, - ACTIONS(2970), 7, + ACTIONS(3701), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3699), 31, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2972), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20861] = 6, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [20991] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3794), 1, - anon_sym_DASH_GT, - STATE(1392), 2, + ACTIONS(3703), 1, + anon_sym_else, + STATE(1592), 1, + sym_else_clause, + STATE(1429), 2, sym_line_comment, sym_block_comment, - ACTIONS(3792), 15, + ACTIONS(1319), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134792,7 +140289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3790), 30, + ACTIONS(1317), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134822,16 +140319,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [20924] = 5, + [21056] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1393), 2, + STATE(1430), 2, sym_line_comment, sym_block_comment, - ACTIONS(2978), 7, + ACTIONS(2118), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134839,7 +140335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2980), 39, + ACTIONS(2120), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134879,23 +140375,31 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20985] = 5, + [21117] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1394), 2, + STATE(1431), 2, sym_line_comment, sym_block_comment, - ACTIONS(2982), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(1856), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2984), 39, + ACTIONS(1854), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134913,93 +140417,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [21046] = 5, + [21178] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1395), 2, + ACTIONS(983), 1, + anon_sym_LBRACE, + ACTIONS(3379), 1, + anon_sym_BANG, + ACTIONS(3381), 1, + anon_sym_COLON_COLON, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + ACTIONS(3705), 1, + anon_sym_move, + STATE(506), 1, + sym_block, + STATE(3840), 1, + sym_label, + STATE(1432), 2, sym_line_comment, sym_block_comment, - ACTIONS(2986), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3377), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2988), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21107] = 5, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3375), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [21253] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1396), 2, + STATE(1433), 2, sym_line_comment, sym_block_comment, - ACTIONS(2990), 7, + ACTIONS(2145), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135007,7 +140510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2992), 39, + ACTIONS(2147), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135047,15 +140550,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21168] = 5, + [21314] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1397), 2, + STATE(1434), 2, sym_line_comment, sym_block_comment, - ACTIONS(2994), 7, + ACTIONS(2185), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135063,7 +140566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2996), 39, + ACTIONS(2187), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135103,71 +140606,73 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21229] = 5, + [21375] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1398), 2, + ACTIONS(3709), 1, + anon_sym_LPAREN, + STATE(1531), 1, + sym_arguments, + STATE(1435), 2, sym_line_comment, sym_block_comment, - ACTIONS(2670), 7, + ACTIONS(3711), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3707), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2672), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21290] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [21440] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1399), 2, + STATE(1436), 2, sym_line_comment, sym_block_comment, - ACTIONS(2998), 7, + ACTIONS(2205), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135175,7 +140680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3000), 39, + ACTIONS(2207), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135215,15 +140720,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21351] = 5, + [21501] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1400), 2, + STATE(1437), 2, sym_line_comment, sym_block_comment, - ACTIONS(3002), 7, + ACTIONS(2217), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135231,7 +140736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3004), 39, + ACTIONS(2219), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135271,15 +140776,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21412] = 5, + [21562] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1401), 2, + STATE(1438), 2, sym_line_comment, sym_block_comment, - ACTIONS(3006), 7, + ACTIONS(2221), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135287,7 +140792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3008), 39, + ACTIONS(2223), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135327,15 +140832,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21473] = 5, + [21623] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1402), 2, + STATE(1439), 2, sym_line_comment, sym_block_comment, - ACTIONS(2674), 7, + ACTIONS(2301), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135343,7 +140848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2676), 39, + ACTIONS(2303), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135383,15 +140888,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21534] = 5, + [21684] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1403), 2, + STATE(1440), 2, sym_line_comment, sym_block_comment, - ACTIONS(3010), 7, + ACTIONS(2317), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135399,7 +140904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3012), 39, + ACTIONS(2319), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135439,15 +140944,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21595] = 5, + [21745] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1404), 2, + STATE(1441), 2, sym_line_comment, sym_block_comment, - ACTIONS(2678), 7, + ACTIONS(2325), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135455,7 +140960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2680), 39, + ACTIONS(2327), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135495,15 +141000,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21656] = 5, + [21806] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1405), 2, + STATE(1442), 2, sym_line_comment, sym_block_comment, - ACTIONS(2682), 7, + ACTIONS(2329), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135511,7 +141016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2684), 39, + ACTIONS(2331), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135551,15 +141056,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21717] = 5, + [21867] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1406), 2, + STATE(1443), 2, sym_line_comment, sym_block_comment, - ACTIONS(2694), 7, + ACTIONS(2341), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135567,7 +141072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2696), 39, + ACTIONS(2343), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135607,15 +141112,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21778] = 5, + [21928] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1407), 2, + STATE(1444), 2, sym_line_comment, sym_block_comment, - ACTIONS(2774), 7, + ACTIONS(2373), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135623,7 +141128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2776), 39, + ACTIONS(2375), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135663,15 +141168,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21839] = 5, + [21989] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1408), 2, + STATE(1445), 2, sym_line_comment, sym_block_comment, - ACTIONS(2778), 7, + ACTIONS(2385), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135679,7 +141184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2780), 39, + ACTIONS(2387), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135719,15 +141224,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21900] = 5, + [22050] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1409), 2, + STATE(1446), 2, sym_line_comment, sym_block_comment, - ACTIONS(2786), 7, + ACTIONS(2393), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135735,7 +141240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2788), 39, + ACTIONS(2395), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135775,15 +141280,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21961] = 5, + [22111] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1410), 2, + STATE(1447), 2, sym_line_comment, sym_block_comment, - ACTIONS(2910), 7, + ACTIONS(2737), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135791,7 +141296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2912), 39, + ACTIONS(2739), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135831,15 +141336,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22022] = 5, + [22172] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1411), 2, + STATE(1448), 2, sym_line_comment, sym_block_comment, - ACTIONS(2914), 7, + ACTIONS(2425), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135847,7 +141352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2916), 39, + ACTIONS(2427), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135887,15 +141392,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22083] = 5, + [22233] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1412), 2, + STATE(1449), 2, sym_line_comment, sym_block_comment, - ACTIONS(2918), 7, + ACTIONS(2429), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135903,7 +141408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2920), 39, + ACTIONS(2431), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135943,127 +141448,184 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22144] = 5, + [22294] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1413), 2, + STATE(1450), 2, sym_line_comment, sym_block_comment, - ACTIONS(2922), 7, + ACTIONS(3461), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3459), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2924), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22205] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_LT2, + [22355] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1414), 2, + STATE(1451), 2, sym_line_comment, sym_block_comment, - ACTIONS(2966), 7, + ACTIONS(3715), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3713), 31, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [22416] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3721), 1, + anon_sym_DASH_GT, + STATE(1452), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3719), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2968), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22266] = 5, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3717), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [22479] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1415), 2, + STATE(1453), 2, sym_line_comment, sym_block_comment, - ACTIONS(3050), 7, + ACTIONS(2741), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -136071,7 +141633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3052), 39, + ACTIONS(2743), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136111,71 +141673,129 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22327] = 5, + [22540] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1416), 2, + ACTIONS(3727), 1, + anon_sym_DASH_GT, + STATE(1454), 2, sym_line_comment, sym_block_comment, - ACTIONS(1866), 7, + ACTIONS(3725), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3723), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [22603] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3733), 1, + anon_sym_DASH_GT, + STATE(1455), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3731), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1868), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22388] = 5, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3729), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [22666] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1417), 2, + STATE(1456), 2, sym_line_comment, sym_block_comment, - ACTIONS(1870), 7, + ACTIONS(2573), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -136183,7 +141803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1872), 39, + ACTIONS(2575), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136223,15 +141843,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22449] = 5, + [22727] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1418), 2, + STATE(1457), 2, sym_line_comment, sym_block_comment, - ACTIONS(1946), 7, + ACTIONS(2577), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -136239,7 +141859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1948), 39, + ACTIONS(2579), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136279,15 +141899,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22510] = 5, + [22788] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1419), 2, + STATE(1458), 2, sym_line_comment, sym_block_comment, - ACTIONS(2036), 7, + ACTIONS(2581), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -136295,7 +141915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2038), 39, + ACTIONS(2583), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136335,15 +141955,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22571] = 5, + [22849] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1420), 2, + STATE(1459), 2, sym_line_comment, sym_block_comment, - ACTIONS(2040), 7, + ACTIONS(2585), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -136351,7 +141971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2042), 39, + ACTIONS(2587), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136391,15 +142011,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22632] = 5, + [22910] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1421), 2, + STATE(1460), 2, sym_line_comment, sym_block_comment, - ACTIONS(2044), 7, + ACTIONS(2601), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -136407,7 +142027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2046), 39, + ACTIONS(2603), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136447,15 +142067,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22693] = 5, + [22971] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1422), 2, + ACTIONS(3735), 1, + anon_sym_LBRACE, + STATE(1461), 2, sym_line_comment, sym_block_comment, - ACTIONS(2048), 7, + ACTIONS(3455), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3457), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_as, + anon_sym_else, + [23034] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1462), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2621), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -136463,7 +142140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2050), 39, + ACTIONS(2623), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136503,15 +142180,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22754] = 5, + [23095] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1423), 2, + STATE(1463), 2, sym_line_comment, sym_block_comment, - ACTIONS(2052), 7, + ACTIONS(2629), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -136519,7 +142196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2054), 39, + ACTIONS(2631), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136559,15 +142236,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22815] = 5, + [23156] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1424), 2, + STATE(1464), 2, sym_line_comment, sym_block_comment, - ACTIONS(2056), 7, + ACTIONS(2633), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -136575,7 +142252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2058), 39, + ACTIONS(2635), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136615,15 +142292,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22876] = 5, + [23217] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1425), 2, + STATE(1465), 2, sym_line_comment, sym_block_comment, - ACTIONS(3014), 7, + ACTIONS(2641), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -136631,7 +142308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3016), 39, + ACTIONS(2643), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136671,15 +142348,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22937] = 5, + [23278] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1426), 2, + STATE(1466), 2, sym_line_comment, sym_block_comment, - ACTIONS(3018), 7, + ACTIONS(2645), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -136687,7 +142364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3020), 39, + ACTIONS(2647), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136727,15 +142404,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22998] = 5, + [23339] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1427), 2, + STATE(1467), 2, sym_line_comment, sym_block_comment, - ACTIONS(3022), 7, + ACTIONS(2709), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -136743,7 +142420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3024), 39, + ACTIONS(2711), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136783,66 +142460,66 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23059] = 26, + [23400] = 26, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1147), 1, + ACTIONS(1097), 1, anon_sym_fn, - ACTIONS(1157), 1, + ACTIONS(1107), 1, anon_sym_extern, - ACTIONS(3272), 1, + ACTIONS(3223), 1, anon_sym_for, - ACTIONS(3483), 1, + ACTIONS(3431), 1, anon_sym_LPAREN, - ACTIONS(3491), 1, + ACTIONS(3439), 1, anon_sym_COLON_COLON, - ACTIONS(3499), 1, + ACTIONS(3447), 1, sym_metavariable, - ACTIONS(3636), 1, + ACTIONS(3593), 1, anon_sym_default, - ACTIONS(3796), 1, + ACTIONS(3737), 1, sym_identifier, - STATE(1652), 1, + STATE(1698), 1, sym_for_lifetimes, - STATE(2031), 1, + STATE(2089), 1, sym_scoped_type_identifier, - STATE(2047), 1, + STATE(2098), 1, sym_generic_type, - STATE(2317), 1, + STATE(2385), 1, aux_sym_function_modifiers_repeat1, - STATE(2461), 1, + STATE(2535), 1, sym_extern_modifier, - STATE(3610), 1, - sym_scoped_identifier, - STATE(3633), 1, + STATE(3692), 1, sym_bracketed_type, - STATE(3780), 1, + STATE(3823), 1, + sym_scoped_identifier, + STATE(3847), 1, sym_generic_type_with_turbofish, - STATE(3812), 1, + STATE(3874), 1, sym_function_modifiers, - ACTIONS(3493), 2, + ACTIONS(3441), 2, anon_sym_gen, anon_sym_union, - STATE(1428), 2, + STATE(1468), 2, sym_line_comment, sym_block_comment, - ACTIONS(1141), 3, + ACTIONS(1091), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3497), 3, + ACTIONS(3445), 3, sym_self, sym_super, sym_crate, - STATE(2063), 3, + STATE(2119), 3, sym_higher_ranked_trait_bound, sym_function_type, sym_tuple_type, - ACTIONS(3634), 17, + ACTIONS(3591), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136860,15 +142537,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [23162] = 5, + [23503] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1429), 2, + STATE(1469), 2, sym_line_comment, sym_block_comment, - ACTIONS(2080), 7, + ACTIONS(2713), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -136876,7 +142553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2082), 39, + ACTIONS(2715), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136916,15 +142593,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23223] = 5, + [23564] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1430), 2, + STATE(1470), 2, sym_line_comment, sym_block_comment, - ACTIONS(2140), 7, + ACTIONS(2717), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -136932,7 +142609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2142), 39, + ACTIONS(2719), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136972,71 +142649,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23284] = 5, + [23625] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1431), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3800), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3798), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [23345] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1432), 2, + STATE(1471), 2, sym_line_comment, sym_block_comment, - ACTIONS(2582), 7, + ACTIONS(2721), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -137044,7 +142665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2584), 39, + ACTIONS(2723), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -137084,62 +142705,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23406] = 23, - ACTIONS(29), 1, - anon_sym_LT, + [23686] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1615), 1, - anon_sym_LBRACK, - ACTIONS(3358), 1, - anon_sym_SQUOTE, - ACTIONS(3479), 1, - sym_identifier, - ACTIONS(3483), 1, - anon_sym_LPAREN, - ACTIONS(3485), 1, - anon_sym_STAR, - ACTIONS(3489), 1, - anon_sym_AMP, - ACTIONS(3491), 1, - anon_sym_COLON_COLON, - ACTIONS(3495), 1, - anon_sym_for, - ACTIONS(3499), 1, - sym_metavariable, - STATE(2559), 1, - sym_where_predicate, - STATE(2796), 1, - sym_scoped_type_identifier, - STATE(3036), 1, - sym_generic_type, - STATE(3610), 1, - sym_scoped_identifier, - STATE(3633), 1, - sym_bracketed_type, - STATE(3780), 1, - sym_generic_type_with_turbofish, - STATE(1433), 2, + STATE(1472), 2, sym_line_comment, sym_block_comment, - ACTIONS(3493), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(3497), 3, - sym_self, - sym_super, - sym_crate, - STATE(3215), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3487), 17, + ACTIONS(2729), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2731), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -137157,125 +142739,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [23502] = 5, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23747] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1434), 2, + STATE(1473), 2, sym_line_comment, sym_block_comment, - ACTIONS(3804), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3802), 30, + ACTIONS(2733), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [23562] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2735), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23808] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1435), 2, + STATE(1474), 2, sym_line_comment, sym_block_comment, - ACTIONS(3808), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3806), 30, + ACTIONS(2305), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [23622] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2307), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23869] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1436), 2, + STATE(1475), 2, sym_line_comment, sym_block_comment, - ACTIONS(3812), 15, + ACTIONS(3741), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137291,7 +142897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3810), 30, + ACTIONS(3739), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137322,15 +142928,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23682] = 5, + [23929] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1437), 2, + STATE(1476), 2, sym_line_comment, sym_block_comment, - ACTIONS(3816), 15, + ACTIONS(3745), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137346,7 +142952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3814), 30, + ACTIONS(3743), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137377,15 +142983,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23742] = 5, + [23989] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1438), 2, + STATE(1477), 2, sym_line_comment, sym_block_comment, - ACTIONS(3820), 15, + ACTIONS(3749), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137401,7 +143007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3818), 30, + ACTIONS(3747), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137432,15 +143038,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23802] = 5, + [24049] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1439), 2, + STATE(1478), 2, sym_line_comment, sym_block_comment, - ACTIONS(955), 15, + ACTIONS(1207), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137456,7 +143062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(957), 30, + ACTIONS(1209), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137487,15 +143093,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23862] = 5, + [24109] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1440), 2, + STATE(1479), 2, sym_line_comment, sym_block_comment, - ACTIONS(1439), 15, + ACTIONS(3753), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137511,7 +143117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1437), 30, + ACTIONS(3751), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137542,15 +143148,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23922] = 5, + [24169] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1441), 2, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + STATE(1480), 2, sym_line_comment, sym_block_comment, - ACTIONS(1477), 15, + ACTIONS(3759), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137564,17 +143176,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1475), 30, + ACTIONS(3755), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -137597,15 +143206,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23982] = 5, + [24235] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1442), 2, + STATE(1481), 2, sym_line_comment, sym_block_comment, - ACTIONS(3824), 15, + ACTIONS(3767), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137621,7 +143230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3822), 30, + ACTIONS(3765), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137652,15 +143261,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24042] = 5, + [24295] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1443), 2, + STATE(1482), 2, sym_line_comment, sym_block_comment, - ACTIONS(3828), 15, + ACTIONS(3771), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137676,7 +143285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3826), 30, + ACTIONS(3769), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137707,15 +143316,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24102] = 5, + [24355] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1444), 2, + ACTIONS(417), 1, + anon_sym_LBRACE, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + ACTIONS(3773), 1, + anon_sym_BANG, + ACTIONS(3775), 1, + anon_sym_COLON_COLON, + ACTIONS(3777), 1, + anon_sym_move, + STATE(1845), 1, + sym_block, + STATE(3841), 1, + sym_label, + STATE(1483), 2, sym_line_comment, sym_block_comment, - ACTIONS(3832), 15, + ACTIONS(3377), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137731,7 +143354,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3830), 30, + ACTIONS(3375), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [24429] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1484), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3781), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3779), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137762,19 +143433,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24162] = 7, + [24489] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3456), 1, - anon_sym_BANG, - ACTIONS(3834), 1, + STATE(1485), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3029), 6, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_LT, anon_sym_COLON_COLON, - STATE(1445), 2, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3027), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24549] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1486), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(3711), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137790,12 +143512,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 28, + ACTIONS(3707), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -137817,17 +143540,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24226] = 5, + [24609] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1446), 2, + STATE(1487), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 15, + ACTIONS(1399), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137843,7 +143567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3836), 30, + ACTIONS(1397), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137874,15 +143598,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24286] = 5, + [24669] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1447), 2, + STATE(1488), 2, sym_line_comment, sym_block_comment, - ACTIONS(3842), 15, + ACTIONS(3422), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137898,7 +143622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3840), 30, + ACTIONS(3420), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137929,15 +143653,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24346] = 5, + [24729] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1448), 2, + STATE(1489), 2, sym_line_comment, sym_block_comment, - ACTIONS(3846), 15, + ACTIONS(3785), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137953,7 +143677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3844), 30, + ACTIONS(3783), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137984,21 +143708,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24406] = 8, + [24789] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - STATE(1449), 2, + STATE(1490), 2, sym_line_comment, sym_block_comment, - ACTIONS(3852), 14, + ACTIONS(1431), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138012,14 +143730,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3848), 28, + ACTIONS(1429), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -138042,15 +143763,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24472] = 5, + [24849] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1450), 2, + STATE(1491), 2, sym_line_comment, sym_block_comment, - ACTIONS(3860), 15, + ACTIONS(3789), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138066,7 +143787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3858), 30, + ACTIONS(3787), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138097,15 +143818,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24532] = 5, + [24909] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1451), 2, + STATE(1492), 2, sym_line_comment, sym_block_comment, - ACTIONS(3864), 15, + ACTIONS(1359), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138121,7 +143842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3862), 30, + ACTIONS(1357), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138152,15 +143873,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24592] = 5, + [24969] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1452), 2, + STATE(1493), 2, sym_line_comment, sym_block_comment, - ACTIONS(3868), 15, + ACTIONS(1363), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138176,7 +143897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3866), 30, + ACTIONS(1361), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138207,15 +143928,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24652] = 5, + [25029] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1453), 2, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + STATE(1494), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(3793), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138229,17 +143956,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 30, + ACTIONS(3791), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -138262,15 +143986,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24712] = 5, + [25095] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1454), 2, + STATE(1495), 2, sym_line_comment, sym_block_comment, - ACTIONS(3872), 15, + ACTIONS(3025), 6, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3023), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25155] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1496), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1367), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138286,7 +144065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3870), 30, + ACTIONS(1365), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138317,23 +144096,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24772] = 9, + [25215] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + STATE(1497), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1371), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1369), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(3854), 1, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, - STATE(1455), 2, + anon_sym_else, + [25275] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1498), 2, sym_line_comment, sym_block_comment, - ACTIONS(3876), 14, + ACTIONS(1375), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138347,14 +144173,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3874), 27, + ACTIONS(1373), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -138375,16 +144204,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_SQUOTE, + anon_sym_as, anon_sym_else, - [24840] = 5, + [25335] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1456), 2, + STATE(1499), 2, sym_line_comment, sym_block_comment, - ACTIONS(3477), 15, + ACTIONS(1461), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138400,7 +144230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3475), 30, + ACTIONS(1459), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138431,15 +144261,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24900] = 5, + [25395] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1457), 2, + STATE(1500), 2, sym_line_comment, sym_block_comment, - ACTIONS(3882), 15, + ACTIONS(1295), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138455,7 +144285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3880), 30, + ACTIONS(1297), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138486,15 +144316,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24960] = 5, + [25455] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1458), 2, + STATE(1501), 2, sym_line_comment, sym_block_comment, - ACTIONS(3886), 15, + ACTIONS(1355), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138510,7 +144340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3884), 30, + ACTIONS(1353), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138541,15 +144371,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25020] = 5, + [25515] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1459), 2, + STATE(1502), 2, sym_line_comment, sym_block_comment, - ACTIONS(1053), 15, + ACTIONS(3797), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138565,7 +144395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1055), 30, + ACTIONS(3795), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138596,15 +144426,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25080] = 5, + [25575] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1460), 2, + STATE(1503), 2, sym_line_comment, sym_block_comment, - ACTIONS(3890), 15, + ACTIONS(3801), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138620,7 +144450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3888), 30, + ACTIONS(3799), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138651,15 +144481,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25140] = 5, + [25635] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1461), 2, + STATE(1504), 2, sym_line_comment, sym_block_comment, - ACTIONS(3894), 15, + ACTIONS(3469), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138675,7 +144505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3892), 30, + ACTIONS(3467), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138706,15 +144536,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25200] = 5, + [25695] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1462), 2, + STATE(1505), 2, sym_line_comment, sym_block_comment, - ACTIONS(3898), 15, + ACTIONS(3805), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138730,7 +144560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3896), 30, + ACTIONS(3803), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138761,15 +144591,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25260] = 5, + [25755] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1463), 2, + STATE(1506), 2, sym_line_comment, sym_block_comment, - ACTIONS(1495), 15, + ACTIONS(3809), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138785,7 +144615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1493), 30, + ACTIONS(3807), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138816,15 +144646,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25320] = 5, + [25815] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1464), 2, + STATE(1507), 2, sym_line_comment, sym_block_comment, - ACTIONS(3902), 15, + ACTIONS(1399), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138840,7 +144670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3900), 30, + ACTIONS(1397), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138871,15 +144701,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25380] = 5, + [25875] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1465), 2, + STATE(1508), 2, sym_line_comment, sym_block_comment, - ACTIONS(1503), 15, + ACTIONS(1451), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138895,7 +144725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1501), 30, + ACTIONS(1449), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138926,15 +144756,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25440] = 5, + [25935] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1466), 2, + STATE(1509), 2, sym_line_comment, sym_block_comment, - ACTIONS(1013), 15, + ACTIONS(3813), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138950,7 +144780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1015), 30, + ACTIONS(3811), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138981,21 +144811,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25500] = 8, + [25995] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - STATE(1467), 2, + STATE(1510), 2, sym_line_comment, sym_block_comment, - ACTIONS(3906), 14, + ACTIONS(1337), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139009,14 +144833,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3904), 28, + ACTIONS(1335), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -139039,15 +144866,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25566] = 5, + [26055] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1468), 2, + STATE(1511), 2, sym_line_comment, sym_block_comment, - ACTIONS(1511), 15, + ACTIONS(3817), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139063,7 +144890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1509), 30, + ACTIONS(3815), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139094,15 +144921,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25626] = 5, + [26115] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1469), 2, + STATE(1512), 2, sym_line_comment, sym_block_comment, - ACTIONS(1515), 15, + ACTIONS(3821), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139118,7 +144945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1513), 30, + ACTIONS(3819), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139149,15 +144976,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25686] = 5, + [26175] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1470), 2, + STATE(1513), 2, sym_line_comment, sym_block_comment, - ACTIONS(1523), 15, + ACTIONS(3825), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139173,7 +145000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1521), 30, + ACTIONS(3823), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139204,15 +145031,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25746] = 5, + [26235] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1471), 2, + STATE(1514), 2, sym_line_comment, sym_block_comment, - ACTIONS(1549), 15, + ACTIONS(1229), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139228,7 +145055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1547), 30, + ACTIONS(1231), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139259,15 +145086,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25806] = 5, + [26295] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1472), 2, + STATE(1515), 2, sym_line_comment, sym_block_comment, - ACTIONS(951), 15, + ACTIONS(3829), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139283,7 +145110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(953), 30, + ACTIONS(3827), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139314,15 +145141,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25866] = 5, + [26355] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1473), 2, + STATE(1516), 2, sym_line_comment, sym_block_comment, - ACTIONS(3910), 15, + ACTIONS(1381), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139338,7 +145165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3908), 30, + ACTIONS(1379), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139369,15 +145196,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25926] = 5, + [26415] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1474), 2, + STATE(1517), 2, sym_line_comment, sym_block_comment, - ACTIONS(3914), 15, + ACTIONS(1385), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139393,7 +145220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3912), 30, + ACTIONS(1383), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139424,15 +145251,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25986] = 5, + [26475] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1475), 2, + STATE(1518), 2, sym_line_comment, sym_block_comment, - ACTIONS(1487), 15, + ACTIONS(3833), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139448,7 +145275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1485), 30, + ACTIONS(3831), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139479,15 +145306,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26046] = 5, + [26535] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1476), 2, + STATE(1519), 2, sym_line_comment, sym_block_comment, - ACTIONS(3918), 15, + ACTIONS(3837), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139503,7 +145330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3916), 30, + ACTIONS(3835), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139534,21 +145361,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26106] = 8, + [26595] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - STATE(1477), 2, + STATE(1520), 2, sym_line_comment, sym_block_comment, - ACTIONS(3922), 14, + ACTIONS(1443), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139562,14 +145383,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3920), 28, + ACTIONS(1441), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -139592,15 +145416,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26172] = 5, + [26655] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1478), 2, + STATE(1521), 2, sym_line_comment, sym_block_comment, - ACTIONS(3926), 15, + ACTIONS(3841), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139616,7 +145440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3924), 30, + ACTIONS(3839), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139647,15 +145471,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26232] = 5, + [26715] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1479), 2, + STATE(1522), 2, sym_line_comment, sym_block_comment, - ACTIONS(3930), 15, + ACTIONS(3845), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139671,7 +145495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3928), 30, + ACTIONS(3843), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139702,15 +145526,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26292] = 5, + [26775] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1480), 2, + ACTIONS(3849), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1523), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(3851), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139726,13 +145553,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 30, + ACTIONS(3847), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -139754,18 +145580,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26352] = 5, + [26837] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1481), 2, + STATE(1524), 2, sym_line_comment, sym_block_comment, - ACTIONS(3934), 15, + ACTIONS(3855), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139781,7 +145606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3932), 30, + ACTIONS(3853), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139812,15 +145637,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26412] = 5, + [26897] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1482), 2, + STATE(1525), 2, sym_line_comment, sym_block_comment, - ACTIONS(1443), 15, + ACTIONS(3859), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139836,7 +145661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1441), 30, + ACTIONS(3857), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139867,15 +145692,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26472] = 5, + [26957] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1483), 2, + STATE(1526), 2, sym_line_comment, sym_block_comment, - ACTIONS(3938), 15, + ACTIONS(3863), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139891,7 +145716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3936), 30, + ACTIONS(3861), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139922,15 +145747,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26532] = 5, + [27017] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1484), 2, + STATE(1527), 2, sym_line_comment, sym_block_comment, - ACTIONS(3942), 15, + ACTIONS(3867), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139946,7 +145771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3940), 30, + ACTIONS(3865), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139977,15 +145802,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26592] = 5, + [27077] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1485), 2, + STATE(1528), 2, sym_line_comment, sym_block_comment, - ACTIONS(3682), 15, + ACTIONS(3871), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140001,7 +145826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3678), 30, + ACTIONS(3869), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140032,15 +145857,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26652] = 5, + [27137] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1486), 2, + STATE(1529), 2, sym_line_comment, sym_block_comment, - ACTIONS(3946), 15, + ACTIONS(3875), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140056,7 +145881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3944), 30, + ACTIONS(3873), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140087,77 +145912,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26712] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(3948), 1, - anon_sym_BANG, - ACTIONS(3950), 1, - anon_sym_COLON_COLON, - ACTIONS(3952), 1, - anon_sym_move, - STATE(1812), 1, - sym_block, - STATE(3779), 1, - sym_label, - STATE(1487), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3442), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3440), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [26786] = 5, + [27197] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1488), 2, + STATE(1530), 2, sym_line_comment, sym_block_comment, - ACTIONS(1447), 15, + ACTIONS(1329), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140173,7 +145936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1445), 30, + ACTIONS(1327), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140204,15 +145967,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26846] = 5, + [27257] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1489), 2, + STATE(1531), 2, sym_line_comment, sym_block_comment, - ACTIONS(3956), 15, + ACTIONS(3879), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140228,7 +145991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3954), 30, + ACTIONS(3877), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140259,15 +146022,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26906] = 5, + [27317] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1490), 2, + STATE(1532), 2, sym_line_comment, sym_block_comment, - ACTIONS(3960), 15, + ACTIONS(3476), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140283,7 +146046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3958), 30, + ACTIONS(3474), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140314,15 +146077,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26966] = 5, + [27377] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1491), 2, + STATE(1533), 2, sym_line_comment, sym_block_comment, - ACTIONS(3964), 15, + ACTIONS(1415), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140338,7 +146101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3962), 30, + ACTIONS(1413), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140369,15 +146132,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27026] = 5, + [27437] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1492), 2, + STATE(1534), 2, sym_line_comment, sym_block_comment, - ACTIONS(3968), 15, + ACTIONS(3883), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140393,7 +146156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3966), 30, + ACTIONS(3881), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140424,15 +146187,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27086] = 5, + [27497] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1493), 2, + STATE(1535), 2, sym_line_comment, sym_block_comment, - ACTIONS(3972), 15, + ACTIONS(1399), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140448,7 +146211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3970), 30, + ACTIONS(1397), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140479,15 +146242,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27146] = 5, + [27557] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1494), 2, + STATE(1536), 2, sym_line_comment, sym_block_comment, - ACTIONS(1541), 15, + ACTIONS(3482), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140503,7 +146266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1539), 30, + ACTIONS(3480), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140534,15 +146297,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27206] = 5, + [27617] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1495), 2, + STATE(1537), 2, sym_line_comment, sym_block_comment, - ACTIONS(1451), 15, + ACTIONS(3887), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140558,7 +146321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1449), 30, + ACTIONS(3885), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140589,15 +146352,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27266] = 5, + [27677] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1496), 2, + ACTIONS(3379), 1, + anon_sym_BANG, + ACTIONS(3381), 1, + anon_sym_COLON_COLON, + STATE(1538), 2, sym_line_comment, sym_block_comment, - ACTIONS(3976), 15, + ACTIONS(3377), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140613,13 +146380,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3974), 30, + ACTIONS(3375), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -140641,18 +146407,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27326] = 5, + [27741] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1497), 2, + STATE(1539), 2, sym_line_comment, sym_block_comment, - ACTIONS(3980), 15, + ACTIONS(3891), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140668,7 +146433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3978), 30, + ACTIONS(3889), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140699,18 +146464,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27386] = 6, + [27801] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3984), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1498), 2, + STATE(1540), 2, sym_line_comment, sym_block_comment, - ACTIONS(3986), 15, + ACTIONS(1341), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140726,12 +146488,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3982), 28, + ACTIONS(1339), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -140753,17 +146516,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27448] = 5, + [27861] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1499), 2, + STATE(1541), 2, sym_line_comment, sym_block_comment, - ACTIONS(3990), 15, + ACTIONS(3895), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140779,7 +146543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3988), 30, + ACTIONS(3893), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140810,15 +146574,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27508] = 5, + [27921] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1500), 2, + STATE(1542), 2, sym_line_comment, sym_block_comment, - ACTIONS(975), 15, + ACTIONS(1457), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140834,7 +146598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(977), 30, + ACTIONS(1455), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140865,19 +146629,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27568] = 7, + [27981] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3444), 1, - anon_sym_BANG, - ACTIONS(3446), 1, - anon_sym_COLON_COLON, - STATE(1501), 2, + STATE(1543), 2, sym_line_comment, sym_block_comment, - ACTIONS(3442), 15, + ACTIONS(3899), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140893,71 +146653,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3440), 28, + ACTIONS(3897), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_as, - anon_sym_else, - [27632] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - STATE(1502), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3994), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3992), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -140980,15 +146684,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27698] = 5, + [28041] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1503), 2, + STATE(1544), 2, sym_line_comment, sym_block_comment, - ACTIONS(3998), 15, + ACTIONS(3903), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141004,7 +146708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3996), 30, + ACTIONS(3901), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141035,15 +146739,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27758] = 5, + [28101] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1504), 2, + STATE(1545), 2, sym_line_comment, sym_block_comment, - ACTIONS(4002), 15, + ACTIONS(1423), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141059,7 +146763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4000), 30, + ACTIONS(1421), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141090,15 +146794,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27818] = 5, + [28161] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1505), 2, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + STATE(1546), 2, sym_line_comment, sym_block_comment, - ACTIONS(4006), 15, + ACTIONS(3907), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141112,17 +146824,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4004), 30, + ACTIONS(3905), 27, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -141143,17 +146852,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_SQUOTE, - anon_sym_as, anon_sym_else, - [27878] = 5, + [28229] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1506), 2, + STATE(1547), 2, sym_line_comment, sym_block_comment, - ACTIONS(4010), 15, + ACTIONS(3913), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141169,7 +146877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4008), 30, + ACTIONS(3911), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141200,15 +146908,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27938] = 5, + [28289] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1507), 2, + STATE(1548), 2, sym_line_comment, sym_block_comment, - ACTIONS(4014), 15, + ACTIONS(1349), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141224,7 +146932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4012), 30, + ACTIONS(1347), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141255,15 +146963,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27998] = 5, + [28349] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1508), 2, + STATE(1549), 2, sym_line_comment, sym_block_comment, - ACTIONS(4018), 15, + ACTIONS(3917), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141279,7 +146987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4016), 30, + ACTIONS(3915), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141310,15 +147018,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28058] = 5, + [28409] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1509), 2, + STATE(1550), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(3921), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141334,7 +147042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 30, + ACTIONS(3919), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141365,15 +147073,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28118] = 5, + [28469] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1510), 2, + STATE(1551), 2, sym_line_comment, sym_block_comment, - ACTIONS(4022), 15, + ACTIONS(3925), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141389,7 +147097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4020), 30, + ACTIONS(3923), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141420,15 +147128,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28178] = 5, + [28529] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1511), 2, + ACTIONS(3927), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1552), 2, sym_line_comment, sym_block_comment, - ACTIONS(3511), 15, + ACTIONS(3851), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141444,13 +147155,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3509), 30, + ACTIONS(3847), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -141472,18 +147182,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28238] = 5, + [28591] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1512), 2, + STATE(1553), 2, sym_line_comment, sym_block_comment, - ACTIONS(1491), 15, + ACTIONS(1389), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141499,7 +147208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1489), 30, + ACTIONS(1387), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141530,15 +147239,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28298] = 5, + [28651] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1513), 2, + STATE(1554), 2, sym_line_comment, sym_block_comment, - ACTIONS(4026), 15, + ACTIONS(3931), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141554,7 +147263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4024), 30, + ACTIONS(3929), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141585,15 +147294,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28358] = 5, + [28711] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1514), 2, + STATE(1555), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(3935), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141609,7 +147318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 30, + ACTIONS(3933), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141640,15 +147349,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28418] = 5, + [28771] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1515), 2, + STATE(1556), 2, sym_line_comment, sym_block_comment, - ACTIONS(3515), 15, + ACTIONS(3851), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141664,7 +147373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3513), 30, + ACTIONS(3847), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141695,71 +147404,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28478] = 6, + [28831] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4028), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1516), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3986), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3982), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_as, - anon_sym_else, - [28540] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1517), 2, + STATE(1557), 2, sym_line_comment, sym_block_comment, - ACTIONS(4032), 15, + ACTIONS(1399), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141775,7 +147428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4030), 30, + ACTIONS(1397), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141806,15 +147459,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28600] = 5, + [28891] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1518), 2, + STATE(1558), 2, sym_line_comment, sym_block_comment, - ACTIONS(3986), 15, + ACTIONS(3939), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141830,7 +147483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3982), 30, + ACTIONS(3937), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141861,15 +147514,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28660] = 5, + [28951] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1519), 2, + STATE(1559), 2, sym_line_comment, sym_block_comment, - ACTIONS(3519), 15, + ACTIONS(3943), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141885,7 +147538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3517), 30, + ACTIONS(3941), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141916,15 +147569,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28720] = 5, + [29011] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1520), 2, + STATE(1560), 2, sym_line_comment, sym_block_comment, - ACTIONS(1483), 15, + ACTIONS(3947), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141940,7 +147593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1481), 30, + ACTIONS(3945), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141971,15 +147624,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28780] = 5, + [29071] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1521), 2, + STATE(1561), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 15, + ACTIONS(1435), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141995,7 +147648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4034), 30, + ACTIONS(1433), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142026,15 +147679,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28840] = 5, + [29131] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1522), 2, + STATE(1562), 2, sym_line_comment, sym_block_comment, - ACTIONS(1045), 15, + ACTIONS(3951), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142050,7 +147703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1047), 30, + ACTIONS(3949), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142081,15 +147734,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28900] = 5, + [29191] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1523), 2, + STATE(1563), 2, sym_line_comment, sym_block_comment, - ACTIONS(4040), 15, + ACTIONS(3955), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142105,7 +147758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4038), 30, + ACTIONS(3953), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142136,15 +147789,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28960] = 5, + [29251] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1524), 2, + STATE(1564), 2, sym_line_comment, sym_block_comment, - ACTIONS(4044), 15, + ACTIONS(3959), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142160,7 +147813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4042), 30, + ACTIONS(3957), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142191,15 +147844,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29020] = 5, + [29311] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1525), 2, + STATE(1565), 2, sym_line_comment, sym_block_comment, - ACTIONS(4048), 15, + ACTIONS(1211), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142215,7 +147868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4046), 30, + ACTIONS(1213), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142246,70 +147899,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29080] = 5, + [29371] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1526), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1507), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1505), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3757), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(3761), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [29140] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1527), 2, + ACTIONS(3763), 1, + anon_sym_DOT, + STATE(1566), 2, sym_line_comment, sym_block_comment, - ACTIONS(1533), 15, + ACTIONS(3963), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142323,17 +147927,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1531), 30, + ACTIONS(3961), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -142356,15 +147957,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29200] = 5, + [29437] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1528), 2, + STATE(1567), 2, sym_line_comment, sym_block_comment, - ACTIONS(1465), 15, + ACTIONS(3967), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142380,7 +147981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1463), 30, + ACTIONS(3965), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142411,15 +148012,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29260] = 5, + [29497] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1529), 2, + STATE(1568), 2, sym_line_comment, sym_block_comment, - ACTIONS(4052), 15, + ACTIONS(3971), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142435,7 +148036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4050), 30, + ACTIONS(3969), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142466,15 +148067,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29320] = 5, + [29557] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1530), 2, + STATE(1569), 2, sym_line_comment, sym_block_comment, - ACTIONS(1529), 15, + ACTIONS(3975), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142490,7 +148091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1527), 30, + ACTIONS(3973), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142521,15 +148122,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29380] = 5, + [29617] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1531), 2, + STATE(1570), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(3979), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142545,7 +148146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 30, + ACTIONS(3977), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142576,15 +148177,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29440] = 5, + [29677] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1532), 2, + STATE(1571), 2, sym_line_comment, sym_block_comment, - ACTIONS(4056), 15, + ACTIONS(3983), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142600,7 +148201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4054), 30, + ACTIONS(3981), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142631,15 +148232,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29500] = 5, + [29737] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1533), 2, + STATE(1572), 2, sym_line_comment, sym_block_comment, - ACTIONS(4060), 15, + ACTIONS(3987), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142655,7 +148256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4058), 30, + ACTIONS(3985), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142686,15 +148287,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29560] = 5, + [29797] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1534), 2, + STATE(1573), 2, sym_line_comment, sym_block_comment, - ACTIONS(4064), 15, + ACTIONS(1203), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142710,7 +148311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4062), 30, + ACTIONS(1205), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142741,70 +148342,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29620] = 5, + [29857] = 23, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1535), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4068), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4066), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(1521), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + ACTIONS(3301), 1, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [29680] = 5, + ACTIONS(3427), 1, + sym_identifier, + ACTIONS(3431), 1, + anon_sym_LPAREN, + ACTIONS(3433), 1, + anon_sym_STAR, + ACTIONS(3437), 1, + anon_sym_AMP, + ACTIONS(3439), 1, + anon_sym_COLON_COLON, + ACTIONS(3443), 1, + anon_sym_for, + ACTIONS(3447), 1, + sym_metavariable, + STATE(2586), 1, + sym_where_predicate, + STATE(2869), 1, + sym_scoped_type_identifier, + STATE(3113), 1, + sym_generic_type, + STATE(3692), 1, + sym_bracketed_type, + STATE(3823), 1, + sym_scoped_identifier, + STATE(3847), 1, + sym_generic_type_with_turbofish, + STATE(1574), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3441), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(3445), 3, + sym_self, + sym_super, + sym_crate, + STATE(3420), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3435), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [29953] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1536), 2, + ACTIONS(3373), 1, + anon_sym_BANG, + ACTIONS(3989), 1, + anon_sym_COLON_COLON, + STATE(1575), 2, sym_line_comment, sym_block_comment, - ACTIONS(4072), 15, + ACTIONS(1399), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142820,13 +148443,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4070), 30, + ACTIONS(1397), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -142848,18 +148470,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29740] = 5, + [30017] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1537), 2, + STATE(1576), 2, sym_line_comment, sym_block_comment, - ACTIONS(1473), 15, + ACTIONS(1419), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142875,7 +148496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1471), 30, + ACTIONS(1417), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142906,15 +148527,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29800] = 5, + [30077] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1538), 2, + STATE(1577), 2, sym_line_comment, sym_block_comment, - ACTIONS(4076), 15, + ACTIONS(1439), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142930,7 +148551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4074), 30, + ACTIONS(1437), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142961,15 +148582,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29860] = 5, + [30137] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1539), 2, + STATE(1578), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(3993), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142985,7 +148606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 30, + ACTIONS(3991), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143016,15 +148637,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29920] = 5, + [30197] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1540), 2, + STATE(1579), 2, sym_line_comment, sym_block_comment, - ACTIONS(4080), 15, + ACTIONS(1333), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143040,7 +148661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4078), 30, + ACTIONS(1331), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143071,15 +148692,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29980] = 5, + [30257] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1541), 2, + STATE(1580), 2, sym_line_comment, sym_block_comment, - ACTIONS(4084), 15, + ACTIONS(3997), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143095,7 +148716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4082), 30, + ACTIONS(3995), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143126,15 +148747,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30040] = 5, + [30317] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1542), 2, + STATE(1581), 2, sym_line_comment, sym_block_comment, - ACTIONS(4088), 15, + ACTIONS(4001), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143150,7 +148771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4086), 30, + ACTIONS(3999), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143181,15 +148802,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30100] = 5, + [30377] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1543), 2, + STATE(1582), 2, sym_line_comment, sym_block_comment, - ACTIONS(1435), 15, + ACTIONS(4005), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143205,7 +148826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1433), 30, + ACTIONS(4003), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143236,15 +148857,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30160] = 5, + [30437] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1544), 2, + STATE(1583), 2, sym_line_comment, sym_block_comment, - ACTIONS(1553), 15, + ACTIONS(4009), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143260,7 +148881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1551), 30, + ACTIONS(4007), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143291,15 +148912,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30220] = 5, + [30497] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1545), 2, + STATE(1584), 2, sym_line_comment, sym_block_comment, - ACTIONS(1021), 15, + ACTIONS(4013), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143315,7 +148936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1023), 30, + ACTIONS(4011), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143346,15 +148967,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30280] = 5, + [30557] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1546), 2, + STATE(1585), 2, sym_line_comment, sym_block_comment, - ACTIONS(1545), 15, + ACTIONS(4017), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143370,7 +148991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1543), 30, + ACTIONS(4015), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143401,15 +149022,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30340] = 5, + [30617] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1547), 2, + STATE(1586), 2, sym_line_comment, sym_block_comment, - ACTIONS(1499), 15, + ACTIONS(4021), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143425,7 +149046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1497), 30, + ACTIONS(4019), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143456,15 +149077,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30400] = 5, + [30677] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1548), 2, + STATE(1587), 2, sym_line_comment, sym_block_comment, - ACTIONS(1469), 15, + ACTIONS(4025), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143480,7 +149101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1467), 30, + ACTIONS(4023), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143511,15 +149132,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30460] = 5, + [30737] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1549), 2, + STATE(1588), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 15, + ACTIONS(1399), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143535,7 +149156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4090), 30, + ACTIONS(1397), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143566,15 +149187,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30520] = 5, + [30797] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1550), 2, + STATE(1589), 2, sym_line_comment, sym_block_comment, - ACTIONS(1519), 15, + ACTIONS(1291), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143590,7 +149211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1517), 30, + ACTIONS(1293), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143621,15 +149242,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30580] = 5, + [30857] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1551), 2, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + STATE(1590), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 15, + ACTIONS(4029), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143643,17 +149270,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4094), 30, + ACTIONS(4027), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -143676,15 +149300,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30640] = 5, + [30923] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1552), 2, + STATE(1591), 2, sym_line_comment, sym_block_comment, - ACTIONS(4100), 15, + ACTIONS(4033), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143700,7 +149324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4098), 30, + ACTIONS(4031), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143731,15 +149355,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30700] = 5, + [30983] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1553), 2, + STATE(1592), 2, sym_line_comment, sym_block_comment, - ACTIONS(4104), 15, + ACTIONS(1403), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143755,7 +149379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4102), 30, + ACTIONS(1401), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143786,15 +149410,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30760] = 5, + [31043] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1554), 2, + STATE(1593), 2, sym_line_comment, sym_block_comment, - ACTIONS(4108), 15, + ACTIONS(4037), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143810,7 +149434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4106), 30, + ACTIONS(4035), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143841,15 +149465,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30820] = 5, + [31103] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1555), 2, + STATE(1594), 2, sym_line_comment, sym_block_comment, - ACTIONS(4112), 15, + ACTIONS(4041), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143865,7 +149489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4110), 30, + ACTIONS(4039), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143896,17 +149520,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30880] = 6, + [31163] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4114), 1, - anon_sym_COLON_COLON, - STATE(1556), 2, + STATE(1595), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(4045), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143922,12 +149544,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 28, + ACTIONS(4043), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -143949,19 +149572,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30941] = 6, + [31223] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3446), 1, - anon_sym_COLON_COLON, - STATE(1557), 2, + STATE(1596), 2, sym_line_comment, sym_block_comment, - ACTIONS(3442), 15, + ACTIONS(4049), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143977,12 +149599,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3440), 28, + ACTIONS(4047), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -144004,29 +149627,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [31002] = 11, + [31283] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3444), 1, - anon_sym_BANG, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(3450), 1, - anon_sym_move, - ACTIONS(4116), 1, - anon_sym_COLON_COLON, - STATE(1468), 1, - sym_block, - STATE(3714), 1, - sym_label, - STATE(1558), 2, + STATE(1597), 2, sym_line_comment, sym_block_comment, - ACTIONS(3442), 15, + ACTIONS(1411), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144042,10 +149654,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3440), 23, + ACTIONS(1409), 30, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -144065,26 +149681,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, - [31073] = 10, + anon_sym_else, + [31343] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3444), 1, - anon_sym_BANG, - ACTIONS(3450), 1, - anon_sym_move, - ACTIONS(4116), 1, - anon_sym_COLON_COLON, - STATE(1468), 1, - sym_block, - STATE(3714), 1, - sym_label, - STATE(1559), 2, + STATE(1598), 2, sym_line_comment, sym_block_comment, - ACTIONS(3442), 15, + ACTIONS(4053), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144100,10 +149709,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3440), 24, + ACTIONS(4051), 30, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -144123,134 +149736,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, - [31142] = 21, + anon_sym_else, + [31403] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, - anon_sym_AMP, - ACTIONS(4128), 1, - anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4136), 1, - anon_sym_EQ, - ACTIONS(4142), 1, - anon_sym_DOT_DOT, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4140), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4144), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1560), 2, + STATE(1599), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(1345), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4118), 17, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_COMMA, - anon_sym_else, - [31232] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4142), 1, - anon_sym_DOT_DOT, - ACTIONS(4148), 1, - anon_sym_EQ, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4144), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1561), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4146), 17, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1343), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144261,473 +149785,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_COMMA, - anon_sym_else, - [31322] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1681), 1, - anon_sym_DASH, - ACTIONS(1707), 1, - aux_sym_string_literal_token1, - ACTIONS(1715), 1, - sym__raw_string_literal_start, - ACTIONS(3664), 1, - sym_identifier, - ACTIONS(3668), 1, - anon_sym_COLON_COLON, - ACTIONS(3672), 1, - sym_metavariable, - STATE(2830), 1, - sym_scoped_identifier, - STATE(3090), 1, - sym__literal_pattern, - STATE(3629), 1, - sym_bracketed_type, - STATE(3646), 1, - sym_generic_type_with_turbofish, - ACTIONS(1709), 2, - anon_sym_true, - anon_sym_false, - STATE(1562), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1705), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3670), 3, - sym_self, - sym_super, - sym_crate, - STATE(2408), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3666), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [31408] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, - anon_sym_AMP, - ACTIONS(4128), 1, - anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4142), 1, - anon_sym_DOT_DOT, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4140), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4144), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1563), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4058), 7, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, anon_sym_else, - ACTIONS(4150), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [31500] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1681), 1, - anon_sym_DASH, - ACTIONS(1707), 1, - aux_sym_string_literal_token1, - ACTIONS(1715), 1, - sym__raw_string_literal_start, - ACTIONS(3668), 1, - anon_sym_COLON_COLON, - ACTIONS(3692), 1, - sym_identifier, - ACTIONS(3698), 1, - sym_metavariable, - STATE(2752), 1, - sym_scoped_identifier, - STATE(2987), 1, - sym__literal_pattern, - STATE(3629), 1, - sym_bracketed_type, - STATE(3646), 1, - sym_generic_type_with_turbofish, - ACTIONS(1709), 2, - anon_sym_true, - anon_sym_false, - STATE(1564), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1705), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3696), 3, - sym_self, - sym_super, - sym_crate, - STATE(2408), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3694), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [31586] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1681), 1, - anon_sym_DASH, - ACTIONS(1707), 1, - aux_sym_string_literal_token1, - ACTIONS(1715), 1, - sym__raw_string_literal_start, - ACTIONS(3668), 1, - anon_sym_COLON_COLON, - ACTIONS(3724), 1, - sym_identifier, - ACTIONS(3730), 1, - sym_metavariable, - STATE(2827), 1, - sym_scoped_identifier, - STATE(3007), 1, - sym__literal_pattern, - STATE(3629), 1, - sym_bracketed_type, - STATE(3646), 1, - sym_generic_type_with_turbofish, - ACTIONS(1709), 2, - anon_sym_true, - anon_sym_false, - STATE(1565), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1705), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3728), 3, - sym_self, - sym_super, - sym_crate, - STATE(2408), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3726), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [31672] = 6, + [31463] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - STATE(1566), 2, + STATE(1600), 2, sym_line_comment, sym_block_comment, - ACTIONS(4156), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(1399), 15, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(4154), 33, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_gen, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [31732] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4142), 1, - anon_sym_DOT_DOT, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4144), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1567), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3936), 7, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1397), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(4150), 10, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [31824] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1568), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4163), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(4161), 33, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_gen, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [31882] = 9, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [31523] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3576), 1, - anon_sym_LBRACE, - ACTIONS(3578), 1, - anon_sym_COLON_COLON, - ACTIONS(4165), 1, - anon_sym_BANG, - STATE(1481), 1, - sym_field_initializer_list, - STATE(1569), 2, + STATE(1601), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(1225), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144743,10 +149874,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 24, + ACTIONS(1227), 30, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -144767,389 +149901,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [31948] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1570), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4169), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_COLON_COLON, + anon_sym_COMMA, anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(4167), 33, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_gen, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [32006] = 5, + anon_sym_as, + anon_sym_else, + [31583] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1571), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4173), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, + ACTIONS(3379), 1, anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_COLON_COLON, + ACTIONS(3383), 1, anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(4171), 33, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_gen, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [32064] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1117), 1, - anon_sym_DASH, - ACTIONS(1167), 1, - aux_sym_string_literal_token1, - ACTIONS(1177), 1, - sym__raw_string_literal_start, - ACTIONS(2098), 1, + ACTIONS(3385), 1, + anon_sym_move, + ACTIONS(4055), 1, anon_sym_COLON_COLON, - ACTIONS(3416), 1, - sym_identifier, - ACTIONS(3426), 1, - sym_metavariable, - STATE(2166), 1, - sym_scoped_identifier, - STATE(2179), 1, - sym__literal_pattern, - STATE(3732), 1, - sym_bracketed_type, - STATE(3800), 1, - sym_generic_type_with_turbofish, - ACTIONS(1169), 2, - anon_sym_true, - anon_sym_false, - STATE(1572), 2, + STATE(1496), 1, + sym_block, + STATE(3775), 1, + sym_label, + STATE(1602), 2, sym_line_comment, sym_block_comment, - ACTIONS(1165), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3424), 3, - sym_self, - sym_super, - sym_crate, - STATE(2110), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3422), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [32150] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1117), 1, + ACTIONS(3377), 15, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(1167), 1, - aux_sym_string_literal_token1, - ACTIONS(1177), 1, - sym__raw_string_literal_start, - ACTIONS(2098), 1, - anon_sym_COLON_COLON, - ACTIONS(3404), 1, - sym_identifier, - ACTIONS(3414), 1, - sym_metavariable, - STATE(2154), 1, - sym_scoped_identifier, - STATE(2216), 1, - sym__literal_pattern, - STATE(3732), 1, - sym_bracketed_type, - STATE(3800), 1, - sym_generic_type_with_turbofish, - ACTIONS(1169), 2, - anon_sym_true, - anon_sym_false, - STATE(1573), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1165), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3412), 3, - sym_self, - sym_super, - sym_crate, - STATE(2110), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3410), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [32236] = 19, - ACTIONS(29), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1117), 1, - anon_sym_DASH, - ACTIONS(1167), 1, - aux_sym_string_literal_token1, - ACTIONS(1177), 1, - sym__raw_string_literal_start, - ACTIONS(2098), 1, - anon_sym_COLON_COLON, - ACTIONS(3392), 1, - sym_identifier, - ACTIONS(3402), 1, - sym_metavariable, - STATE(2129), 1, - sym_scoped_identifier, - STATE(2204), 1, - sym__literal_pattern, - STATE(3732), 1, - sym_bracketed_type, - STATE(3800), 1, - sym_generic_type_with_turbofish, - ACTIONS(1169), 2, - anon_sym_true, - anon_sym_false, - STATE(1574), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1165), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3400), 3, - sym_self, - sym_super, - sym_crate, - STATE(2110), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3398), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [32322] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4175), 1, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3375), 23, anon_sym_LPAREN, - STATE(1575), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4156), 9, anon_sym_LBRACK, - anon_sym_STAR, + anon_sym_LBRACE, anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(4154), 33, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_gen, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [32382] = 11, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [31654] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4178), 1, - anon_sym_LPAREN, - ACTIONS(4180), 1, - anon_sym_BANG, - ACTIONS(4182), 1, + ACTIONS(4057), 1, anon_sym_COLON_COLON, - ACTIONS(4184), 1, - anon_sym_LT2, - STATE(1661), 1, - sym_type_arguments, - STATE(1688), 1, - sym_parameters, - STATE(1576), 2, + STATE(1603), 2, sym_line_comment, sym_block_comment, - ACTIONS(3454), 17, + ACTIONS(1399), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145160,16 +149986,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3452), 20, + ACTIONS(1397), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -145181,73 +150009,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_as, - [32452] = 22, + anon_sym_else, + [31715] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(3381), 1, + anon_sym_COLON_COLON, + STATE(1604), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3377), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4142), 1, - anon_sym_DOT_DOT, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4144), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1577), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3912), 7, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3375), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(4150), 10, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145258,63 +150066,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32544] = 21, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + anon_sym_else, + [31776] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(3379), 1, + anon_sym_BANG, + ACTIONS(3385), 1, + anon_sym_move, + ACTIONS(4055), 1, + anon_sym_COLON_COLON, + STATE(1496), 1, + sym_block, + STATE(3775), 1, + sym_label, + STATE(1605), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3377), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4142), 1, - anon_sym_DOT_DOT, - ACTIONS(4188), 1, - anon_sym_EQ, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4144), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3375), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1578), 2, + anon_sym_SQUOTE, + anon_sym_as, + [31845] = 12, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(339), 1, + anon_sym_LBRACE, + ACTIONS(3381), 1, + anon_sym_COLON_COLON, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + ACTIONS(3385), 1, + anon_sym_move, + ACTIONS(3490), 1, + anon_sym_BANG, + STATE(1496), 1, + sym_block, + STATE(3775), 1, + sym_label, + STATE(1606), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(3377), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4186), 17, - anon_sym_SEMI, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3375), 22, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145325,50 +150188,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_COMMA, - anon_sym_else, - [32634] = 11, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [31918] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, - anon_sym_BANG, - ACTIONS(4178), 1, - anon_sym_LPAREN, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(4184), 1, - anon_sym_LT2, - STATE(1661), 1, - sym_type_arguments, - STATE(1688), 1, - sym_parameters, - STATE(1579), 2, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + STATE(1607), 2, sym_line_comment, sym_block_comment, - ACTIONS(3432), 17, - anon_sym_PLUS, + ACTIONS(4059), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3907), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3428), 20, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + ACTIONS(3905), 25, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -145379,34 +150243,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [32704] = 11, + anon_sym_COMMA, + anon_sym_else, + [31986] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, + ACTIONS(3363), 1, anon_sym_BANG, - ACTIONS(4178), 1, + ACTIONS(4061), 1, anon_sym_LPAREN, - ACTIONS(4182), 1, + ACTIONS(4063), 1, anon_sym_COLON_COLON, - ACTIONS(4184), 1, + ACTIONS(4065), 1, anon_sym_LT2, - STATE(1661), 1, + STATE(1732), 1, sym_type_arguments, - STATE(1688), 1, + STATE(1740), 1, sym_parameters, - STATE(1580), 2, + STATE(1608), 2, sym_line_comment, sym_block_comment, - ACTIONS(3460), 17, + ACTIONS(3361), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145424,7 +150291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3458), 20, + ACTIONS(3357), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -145445,54 +150312,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [32774] = 19, + [32056] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(399), 2, + ACTIONS(4083), 1, anon_sym_EQ, + ACTIONS(4089), 1, anon_sym_DOT_DOT, - ACTIONS(4120), 2, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - STATE(1581), 2, + ACTIONS(4091), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1609), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(397), 19, + ACTIONS(4067), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -145508,62 +150379,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [32860] = 21, + [32146] = 19, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(3850), 1, + ACTIONS(1067), 1, + anon_sym_DASH, + ACTIONS(1117), 1, + aux_sym_string_literal_token1, + ACTIONS(1127), 1, + sym__raw_string_literal_start, + ACTIONS(1649), 1, + anon_sym_COLON_COLON, + ACTIONS(3333), 1, + sym_identifier, + ACTIONS(3343), 1, + sym_metavariable, + STATE(2240), 1, + sym_scoped_identifier, + STATE(2295), 1, + sym__literal_pattern, + STATE(3798), 1, + sym_bracketed_type, + STATE(3872), 1, + sym_generic_type_with_turbofish, + ACTIONS(1119), 2, + anon_sym_true, + anon_sym_false, + STATE(1610), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1115), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3341), 3, + sym_self, + sym_super, + sym_crate, + STATE(2165), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3339), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [32232] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4142), 1, + ACTIONS(4089), 1, anon_sym_DOT_DOT, - ACTIONS(4120), 2, + ACTIONS(4095), 1, + anon_sym_EQ, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4144), 2, + ACTIONS(4091), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1582), 2, + STATE(1611), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(341), 17, + ACTIONS(4093), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -145581,44 +150517,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_COMMA, anon_sym_else, - [32950] = 10, + [32322] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - STATE(1583), 2, + ACTIONS(4061), 1, + anon_sym_LPAREN, + ACTIONS(4063), 1, + anon_sym_COLON_COLON, + ACTIONS(4065), 1, + anon_sym_LT2, + ACTIONS(4097), 1, + anon_sym_BANG, + STATE(1732), 1, + sym_type_arguments, + STATE(1740), 1, + sym_parameters, + STATE(1612), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(3371), 17, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3876), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3874), 25, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(3369), 20, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -145629,59 +150569,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [33018] = 13, + anon_sym_as, + [32392] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4126), 1, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4120), 2, + ACTIONS(4075), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4089), 1, + anon_sym_DOT_DOT, + ACTIONS(4101), 1, + anon_sym_EQ, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1584), 2, + ACTIONS(4087), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4091), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1613), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3876), 6, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3874), 25, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4099), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145692,56 +150643,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [33092] = 12, + [32482] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4120), 2, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_AMP, + ACTIONS(4075), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(405), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1585), 2, + ACTIONS(4087), 2, + anon_sym_GT, + anon_sym_LT, + STATE(1614), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3876), 7, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3874), 25, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(403), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145752,56 +150708,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [33164] = 14, + [32568] = 19, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, - anon_sym_AMP, - ACTIONS(4120), 2, - anon_sym_PLUS, + ACTIONS(1587), 1, anon_sym_DASH, - ACTIONS(4134), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1586), 2, + ACTIONS(1613), 1, + aux_sym_string_literal_token1, + ACTIONS(1621), 1, + sym__raw_string_literal_start, + ACTIONS(3579), 1, + anon_sym_COLON_COLON, + ACTIONS(3605), 1, + sym_identifier, + ACTIONS(3611), 1, + sym_metavariable, + STATE(2929), 1, + sym_scoped_identifier, + STATE(3239), 1, + sym__literal_pattern, + STATE(3688), 1, + sym_bracketed_type, + STATE(3705), 1, + sym_generic_type_with_turbofish, + ACTIONS(1615), 2, + anon_sym_true, + anon_sym_false, + STATE(1615), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1611), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3609), 3, + sym_self, + sym_super, + sym_crate, + STATE(2477), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3607), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [32654] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, + anon_sym_LBRACE, + ACTIONS(3496), 1, + anon_sym_COLON_COLON, + ACTIONS(4103), 1, + anon_sym_BANG, + STATE(1569), 1, + sym_field_initializer_list, + STATE(1616), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(1399), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3876), 5, + anon_sym_CARET, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3874), 25, + ACTIONS(1397), 24, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -145820,125 +150835,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [33240] = 17, + anon_sym_as, + [32720] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + STATE(1617), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4107), 10, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3854), 1, + anon_sym_STAR, anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + anon_sym_BANG, anon_sym_AMP, - ACTIONS(4128), 1, - anon_sym_PIPE, - ACTIONS(3876), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4140), 2, - anon_sym_GT, anon_sym_LT, - STATE(1587), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3874), 21, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [33322] = 18, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(4105), 33, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [32778] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(3876), 2, - anon_sym_EQ, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4089), 1, anon_sym_DOT_DOT, - ACTIONS(4120), 2, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - STATE(1588), 2, + ACTIONS(4091), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1618), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3874), 20, + ACTIONS(3811), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_PIPE_PIPE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145949,126 +150959,253 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [33406] = 11, + [32870] = 19, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1587), 1, + anon_sym_DASH, + ACTIONS(1613), 1, + aux_sym_string_literal_token1, + ACTIONS(1621), 1, + sym__raw_string_literal_start, + ACTIONS(3579), 1, + anon_sym_COLON_COLON, + ACTIONS(3617), 1, + sym_identifier, + ACTIONS(3623), 1, + sym_metavariable, + STATE(2688), 1, + sym_scoped_identifier, + STATE(3173), 1, + sym__literal_pattern, + STATE(3688), 1, + sym_bracketed_type, + STATE(3705), 1, + sym_generic_type_with_turbofish, + ACTIONS(1615), 2, + anon_sym_true, + anon_sym_false, + STATE(1619), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1611), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3621), 3, + sym_self, + sym_super, + sym_crate, + STATE(2477), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3619), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [32956] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + STATE(1620), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4115), 10, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3854), 1, + anon_sym_STAR, anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4120), 2, - anon_sym_PLUS, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(4113), 33, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [33014] = 19, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1067), 1, anon_sym_DASH, - STATE(1589), 2, + ACTIONS(1117), 1, + aux_sym_string_literal_token1, + ACTIONS(1127), 1, + sym__raw_string_literal_start, + ACTIONS(1649), 1, + anon_sym_COLON_COLON, + ACTIONS(3321), 1, + sym_identifier, + ACTIONS(3331), 1, + sym_metavariable, + STATE(2206), 1, + sym_scoped_identifier, + STATE(2297), 1, + sym__literal_pattern, + STATE(3798), 1, + sym_bracketed_type, + STATE(3872), 1, + sym_generic_type_with_turbofish, + ACTIONS(1119), 2, + anon_sym_true, + anon_sym_false, + STATE(1621), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3876), 9, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3874), 25, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [33476] = 21, + ACTIONS(1115), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3329), 3, + sym_self, + sym_super, + sym_crate, + STATE(2165), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3327), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [33100] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4142), 1, + ACTIONS(4089), 1, anon_sym_DOT_DOT, - ACTIONS(4192), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4120), 2, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4144), 2, + ACTIONS(4091), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1590), 2, + STATE(1622), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4190), 17, + ACTIONS(3779), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146079,65 +151216,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_COMMA, - anon_sym_else, - [33566] = 21, + [33192] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4119), 1, + anon_sym_LPAREN, + STATE(1623), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 9, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(4117), 33, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [33252] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, - anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4142), 1, - anon_sym_DOT_DOT, - ACTIONS(4196), 1, - anon_sym_EQ, - ACTIONS(4120), 2, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4144), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1591), 2, + STATE(1624), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4194), 17, + ACTIONS(3907), 6, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3905), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146148,46 +151323,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [33656] = 15, + [33326] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, - anon_sym_AMP, - ACTIONS(4128), 1, - anon_sym_PIPE, - ACTIONS(4120), 2, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1592), 2, + STATE(1625), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3876), 4, + ACTIONS(3907), 7, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3874), 25, + ACTIONS(3905), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -146213,59 +151391,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [33734] = 19, + [33398] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, - anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4120), 2, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4200), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - STATE(1593), 2, + STATE(1626), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4198), 19, + ACTIONS(3907), 5, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3905), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146276,115 +151445,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [33820] = 22, + [33474] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4142), 1, - anon_sym_DOT_DOT, - ACTIONS(4152), 1, + ACTIONS(3907), 2, anon_sym_EQ, - ACTIONS(4120), 2, + anon_sym_DOT_DOT, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4144), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1594), 2, + STATE(1627), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3966), 7, + ACTIONS(3905), 21, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(4150), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [33912] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3456), 1, - anon_sym_BANG, - ACTIONS(4202), 1, - anon_sym_COLON_COLON, - STATE(1481), 1, - sym_field_initializer_list, - STATE(1595), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1459), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1457), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -146397,247 +151514,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - anon_sym_as, - [33975] = 8, + anon_sym_COMMA, + anon_sym_else, + [33556] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3446), 1, + ACTIONS(4124), 1, anon_sym_COLON_COLON, - ACTIONS(3564), 1, - anon_sym_BANG, - ACTIONS(4204), 1, - sym_identifier, - STATE(1596), 2, + STATE(1628), 2, sym_line_comment, sym_block_comment, - ACTIONS(3442), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - anon_sym_as, - ACTIONS(3440), 23, - anon_sym_SEMI, + ACTIONS(4122), 9, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [34038] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4180), 1, anon_sym_BANG, - ACTIONS(4206), 1, - anon_sym_LBRACE, - ACTIONS(4208), 1, - anon_sym_COLON_COLON, - STATE(1751), 1, - sym_field_initializer_list, - STATE(1597), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1459), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1457), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [34103] = 10, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(4117), 33, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [33616] = 19, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4178), 1, - anon_sym_LPAREN, - ACTIONS(4184), 1, - anon_sym_LT2, - ACTIONS(4210), 1, + ACTIONS(1587), 1, + anon_sym_DASH, + ACTIONS(1613), 1, + aux_sym_string_literal_token1, + ACTIONS(1621), 1, + sym__raw_string_literal_start, + ACTIONS(3575), 1, + sym_identifier, + ACTIONS(3579), 1, anon_sym_COLON_COLON, - STATE(1661), 1, - sym_type_arguments, - STATE(1688), 1, - sym_parameters, - STATE(1598), 2, + ACTIONS(3583), 1, + sym_metavariable, + STATE(2770), 1, + sym_scoped_identifier, + STATE(3221), 1, + sym__literal_pattern, + STATE(3688), 1, + sym_bracketed_type, + STATE(3705), 1, + sym_generic_type_with_turbofish, + ACTIONS(1615), 2, + anon_sym_true, + anon_sym_false, + STATE(1629), 2, sym_line_comment, sym_block_comment, - ACTIONS(3471), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3469), 20, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [34170] = 6, + ACTIONS(1611), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3581), 3, + sym_self, + sym_super, + sym_crate, + STATE(2477), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3577), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [33702] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3602), 1, - anon_sym_LBRACE, - STATE(1599), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3530), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3363), 1, anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3532), 24, + ACTIONS(4061), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [34228] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3530), 1, - anon_sym_BANG, - ACTIONS(3532), 1, + ACTIONS(4063), 1, anon_sym_COLON_COLON, - STATE(1600), 2, + ACTIONS(4065), 1, + anon_sym_LT2, + STATE(1732), 1, + sym_type_arguments, + STATE(1740), 1, + sym_parameters, + STATE(1630), 2, sym_line_comment, sym_block_comment, - ACTIONS(3528), 17, + ACTIONS(3389), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146655,8 +151677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3526), 22, - anon_sym_LPAREN, + ACTIONS(3387), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -146677,43 +151698,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_LT2, - [34288] = 7, + [33772] = 18, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3507), 1, - anon_sym_COLON_COLON, - STATE(1601), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3503), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_AMP, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(3907), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, + STATE(1631), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4059), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3501), 22, + ACTIONS(3905), 20, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -146723,49 +151758,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - anon_sym_LT2, - [34348] = 7, + anon_sym_COMMA, + anon_sym_else, + [33856] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3546), 1, - anon_sym_BANG, - ACTIONS(3548), 1, - anon_sym_COLON_COLON, - STATE(1602), 2, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1632), 2, sym_line_comment, sym_block_comment, - ACTIONS(3544), 17, - anon_sym_PLUS, + ACTIONS(4059), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3907), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3542), 22, + ACTIONS(3905), 25, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -146776,46 +151813,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - anon_sym_LT2, - [34408] = 5, + anon_sym_COMMA, + anon_sym_else, + [33926] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1603), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3530), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4071), 1, anon_sym_CARET, - anon_sym_BANG, + ACTIONS(4073), 1, anon_sym_AMP, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4089), 1, + anon_sym_DOT_DOT, + ACTIONS(4129), 1, + anon_sym_EQ, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3532), 25, + ACTIONS(4091), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1633), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4059), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4127), 17, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146826,49 +151890,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - [34464] = 7, + anon_sym_COMMA, + anon_sym_else, + [34016] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3834), 1, - anon_sym_COLON_COLON, - ACTIONS(4165), 1, - anon_sym_BANG, - STATE(1604), 2, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_AMP, + ACTIONS(4075), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4089), 1, + anon_sym_DOT_DOT, + ACTIONS(4133), 1, + anon_sym_EQ, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4087), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4091), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1634), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, - anon_sym_PLUS, + ACTIONS(4059), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4131), 17, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_COMMA, + anon_sym_else, + [34106] = 15, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_AMP, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, + STATE(1635), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4059), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3907), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 24, + ACTIONS(3905), 25, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -146887,42 +152022,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [34524] = 7, + anon_sym_COMMA, + anon_sym_else, + [34184] = 19, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3444), 1, - anon_sym_BANG, - ACTIONS(4116), 1, + ACTIONS(1067), 1, + anon_sym_DASH, + ACTIONS(1117), 1, + aux_sym_string_literal_token1, + ACTIONS(1127), 1, + sym__raw_string_literal_start, + ACTIONS(1649), 1, anon_sym_COLON_COLON, - STATE(1605), 2, + ACTIONS(3345), 1, + sym_identifier, + ACTIONS(3355), 1, + sym_metavariable, + STATE(2221), 1, + sym_scoped_identifier, + STATE(2281), 1, + sym__literal_pattern, + STATE(3798), 1, + sym_bracketed_type, + STATE(3872), 1, + sym_generic_type_with_turbofish, + ACTIONS(1119), 2, + anon_sym_true, + anon_sym_false, + STATE(1636), 2, sym_line_comment, sym_block_comment, - ACTIONS(3442), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1115), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3353), 3, + sym_self, + sym_super, + sym_crate, + STATE(2165), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3351), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [34270] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(367), 1, + anon_sym_EQ, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_AMP, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4089), 1, + anon_sym_DOT_DOT, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3440), 24, + ACTIONS(4091), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1637), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4059), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(363), 17, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146933,46 +152158,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - anon_sym_as, - [34584] = 5, + anon_sym_COMMA, + anon_sym_else, + [34360] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1606), 2, + STATE(1638), 2, sym_line_comment, sym_block_comment, - ACTIONS(3538), 16, - anon_sym_PLUS, + ACTIONS(4137), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + anon_sym_QMARK, anon_sym_BANG, anon_sym_AMP, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(4135), 33, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [34418] = 19, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_AMP, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, + ACTIONS(4141), 2, + anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(3540), 25, + STATE(1639), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4059), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4139), 19, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146983,50 +152276,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - [34640] = 7, + anon_sym_COMMA, + anon_sym_else, + [34504] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3456), 1, - anon_sym_BANG, - ACTIONS(4212), 1, - anon_sym_COLON_COLON, - STATE(1607), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1459), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_AMP, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4089), 1, + anon_sym_DOT_DOT, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1457), 24, + ACTIONS(4091), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1640), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4059), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4031), 7, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147037,46 +152350,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - anon_sym_as, - [34700] = 5, + [34596] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1608), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3505), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4071), 1, anon_sym_CARET, - anon_sym_BANG, + ACTIONS(4073), 1, anon_sym_AMP, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4089), 1, + anon_sym_DOT_DOT, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3507), 25, + ACTIONS(4091), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1641), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4059), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4035), 7, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147087,32 +152420,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - [34756] = 9, + [34688] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4178), 1, + ACTIONS(4061), 1, anon_sym_LPAREN, - ACTIONS(4184), 1, + ACTIONS(4065), 1, anon_sym_LT2, - STATE(1663), 1, + ACTIONS(4143), 1, + anon_sym_COLON_COLON, + STATE(1732), 1, sym_type_arguments, - STATE(1690), 1, + STATE(1740), 1, sym_parameters, - STATE(1609), 2, + STATE(1642), 2, sym_line_comment, sym_block_comment, - ACTIONS(3515), 17, + ACTIONS(3393), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147130,7 +152456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3513), 20, + ACTIONS(3391), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -147151,22 +152477,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [34820] = 5, + [34755] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1610), 2, + ACTIONS(3381), 1, + anon_sym_COLON_COLON, + ACTIONS(3490), 1, + anon_sym_BANG, + ACTIONS(4145), 1, + sym_identifier, + STATE(1643), 2, sym_line_comment, sym_block_comment, - ACTIONS(3546), 16, + ACTIONS(3377), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -147176,10 +152507,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3548), 25, + anon_sym_as, + ACTIONS(3375), 23, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -147199,26 +152532,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - [34876] = 9, + [34818] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4178), 1, - anon_sym_LPAREN, - ACTIONS(4184), 1, - anon_sym_LT2, - STATE(1663), 1, - sym_type_arguments, - STATE(1690), 1, - sym_parameters, - STATE(1611), 2, + ACTIONS(4097), 1, + anon_sym_BANG, + ACTIONS(4147), 1, + anon_sym_LBRACE, + ACTIONS(4149), 1, + anon_sym_COLON_COLON, + STATE(1960), 1, + sym_field_initializer_list, + STATE(1644), 2, sym_line_comment, sym_block_comment, - ACTIONS(3519), 17, + ACTIONS(1399), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147229,14 +152559,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3517), 20, + ACTIONS(1397), 23, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -147250,31 +152579,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [34940] = 6, + [34883] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3604), 1, - anon_sym_LBRACE, - STATE(1612), 2, + ACTIONS(3373), 1, + anon_sym_BANG, + ACTIONS(4151), 1, + anon_sym_COLON_COLON, + STATE(1569), 1, + sym_field_initializer_list, + STATE(1645), 2, sym_line_comment, sym_block_comment, - ACTIONS(3505), 16, + ACTIONS(1399), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -147284,10 +152618,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3507), 24, + ACTIONS(1397), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -147307,36 +152641,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [34998] = 6, + [34946] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3614), 1, - anon_sym_LBRACE, - STATE(1613), 2, + ACTIONS(3455), 1, + anon_sym_BANG, + ACTIONS(3457), 1, + anon_sym_COLON_COLON, + STATE(1646), 2, sym_line_comment, sym_block_comment, - ACTIONS(3546), 16, + ACTIONS(3453), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3548), 24, + ACTIONS(3451), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147351,33 +152688,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [35056] = 9, + anon_sym_LT2, + [35006] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4178), 1, + ACTIONS(4061), 1, anon_sym_LPAREN, - ACTIONS(4184), 1, + ACTIONS(4065), 1, anon_sym_LT2, - STATE(1663), 1, + STATE(1733), 1, sym_type_arguments, - STATE(1690), 1, + STATE(1753), 1, sym_parameters, - STATE(1614), 2, + STATE(1647), 2, sym_line_comment, sym_block_comment, - ACTIONS(3477), 17, + ACTIONS(3422), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147395,7 +152730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3475), 20, + ACTIONS(3420), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -147416,23 +152751,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [35120] = 9, + [35070] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4178), 1, + ACTIONS(4061), 1, anon_sym_LPAREN, - ACTIONS(4184), 1, + ACTIONS(4065), 1, anon_sym_LT2, - STATE(1663), 1, + STATE(1733), 1, sym_type_arguments, - STATE(1690), 1, + STATE(1753), 1, sym_parameters, - STATE(1615), 2, + STATE(1648), 2, sym_line_comment, sym_block_comment, - ACTIONS(3511), 17, + ACTIONS(3476), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147450,7 +152785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3509), 20, + ACTIONS(3474), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -147471,17 +152806,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [35184] = 6, + [35134] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3640), 1, - anon_sym_LBRACE, - STATE(1616), 2, + STATE(1649), 2, sym_line_comment, sym_block_comment, - ACTIONS(3538), 16, + ACTIONS(3463), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147498,10 +152831,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3540), 24, + ACTIONS(3465), 25, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -147522,20 +152855,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [35242] = 7, + [35190] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3538), 1, - anon_sym_BANG, - ACTIONS(3540), 1, - anon_sym_COLON_COLON, - STATE(1617), 2, + ACTIONS(4061), 1, + anon_sym_LPAREN, + ACTIONS(4065), 1, + anon_sym_LT2, + STATE(1733), 1, + sym_type_arguments, + STATE(1753), 1, + sym_parameters, + STATE(1650), 2, sym_line_comment, sym_block_comment, - ACTIONS(3536), 17, + ACTIONS(3482), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147553,8 +152891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3534), 22, - anon_sym_LPAREN, + ACTIONS(3480), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -147575,25 +152912,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_LT2, - [35302] = 6, + [35254] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4028), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1618), 2, + STATE(1651), 2, sym_line_comment, sym_block_comment, - ACTIONS(3986), 15, + ACTIONS(3416), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -147603,10 +152937,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3982), 23, + ACTIONS(3418), 25, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -147626,67 +152960,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [35359] = 25, + [35310] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(887), 1, - anon_sym_RBRACK, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + STATE(1652), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3408), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4126), 1, + anon_sym_BANG, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4214), 1, - anon_sym_SEMI, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4220), 1, - anon_sym_COMMA, - STATE(3163), 1, - aux_sym_arguments_repeat1, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3410), 25, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1619), 2, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + [35366] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3735), 1, + anon_sym_LBRACE, + STATE(1653), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(3455), 16, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3457), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147697,23 +153058,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35454] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + [35424] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4028), 1, - anon_sym_COLON_COLON, - STATE(1620), 2, + ACTIONS(3651), 1, + anon_sym_LBRACE, + STATE(1654), 2, sym_line_comment, sym_block_comment, - ACTIONS(3986), 15, + ACTIONS(3463), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -147723,10 +153093,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3982), 24, + ACTIONS(3465), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -147746,17 +153116,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, - [35511] = 5, + [35482] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1621), 2, + ACTIONS(3675), 1, + anon_sym_LBRACE, + STATE(1655), 2, sym_line_comment, sym_block_comment, - ACTIONS(3538), 16, + ACTIONS(3408), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147773,7 +153145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3540), 24, + ACTIONS(3410), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147798,19 +153170,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [35566] = 7, + [35540] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3948), 1, + ACTIONS(3373), 1, anon_sym_BANG, - ACTIONS(3950), 1, + ACTIONS(4153), 1, anon_sym_COLON_COLON, - STATE(1622), 2, + STATE(1656), 2, sym_line_comment, sym_block_comment, - ACTIONS(3442), 15, + ACTIONS(1399), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147826,10 +153198,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3440), 23, + ACTIONS(1397), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -147849,33 +153221,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, anon_sym_as, - [35625] = 5, + [35600] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1623), 2, + ACTIONS(3416), 1, + anon_sym_BANG, + ACTIONS(3418), 1, + anon_sym_COLON_COLON, + STATE(1657), 2, sym_line_comment, sym_block_comment, - ACTIONS(3530), 16, + ACTIONS(3414), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3532), 24, + ACTIONS(3412), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147890,25 +153268,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [35680] = 5, + anon_sym_LT2, + [35660] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1624), 2, + STATE(1658), 2, sym_line_comment, sym_block_comment, - ACTIONS(3505), 16, + ACTIONS(3455), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147925,10 +153301,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3507), 24, + ACTIONS(3457), 25, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -147949,100 +153325,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - anon_sym_as, - [35735] = 22, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1157), 1, - anon_sym_extern, - ACTIONS(3491), 1, - anon_sym_COLON_COLON, - ACTIONS(3499), 1, - sym_metavariable, - ACTIONS(3636), 1, - anon_sym_default, - ACTIONS(4222), 1, - sym_identifier, - ACTIONS(4224), 1, - anon_sym_fn, - STATE(2317), 1, - aux_sym_function_modifiers_repeat1, - STATE(2461), 1, - sym_extern_modifier, - STATE(2758), 1, - sym_scoped_type_identifier, - STATE(3610), 1, - sym_scoped_identifier, - STATE(3633), 1, - sym_bracketed_type, - STATE(3652), 1, - sym_function_modifiers, - STATE(3711), 1, - sym_generic_type, - STATE(3780), 1, - sym_generic_type_with_turbofish, - ACTIONS(3493), 2, - anon_sym_gen, - anon_sym_union, - STATE(1625), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1141), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3497), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3634), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [35824] = 5, + anon_sym_SQUOTE, + anon_sym_as, + [35716] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1626), 2, + ACTIONS(3463), 1, + anon_sym_BANG, + ACTIONS(3465), 1, + anon_sym_COLON_COLON, + STATE(1659), 2, sym_line_comment, sym_block_comment, - ACTIONS(3546), 16, + ACTIONS(3461), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3548), 24, + ACTIONS(3459), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148057,34 +153372,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [35879] = 6, + anon_sym_LT2, + [35776] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3984), 2, + ACTIONS(3597), 1, anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1627), 2, + STATE(1660), 2, sym_line_comment, sym_block_comment, - ACTIONS(3986), 15, + ACTIONS(3416), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -148094,7 +153407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3982), 23, + ACTIONS(3418), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148117,16 +153430,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [35936] = 5, + [35834] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1628), 2, + ACTIONS(3989), 1, + anon_sym_COLON_COLON, + ACTIONS(4103), 1, + anon_sym_BANG, + STATE(1661), 2, sym_line_comment, sym_block_comment, - ACTIONS(3800), 15, + ACTIONS(1399), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148142,11 +153460,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3798), 25, + ACTIONS(1397), 24, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ_GT, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -148166,17 +153484,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [35991] = 5, + [35894] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1629), 2, + ACTIONS(4061), 1, + anon_sym_LPAREN, + ACTIONS(4065), 1, + anon_sym_LT2, + STATE(1733), 1, + sym_type_arguments, + STATE(1753), 1, + sym_parameters, + STATE(1662), 2, sym_line_comment, sym_block_comment, - ACTIONS(3626), 15, + ACTIONS(3469), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148187,15 +153512,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3624), 25, - anon_sym_LPAREN, + ACTIONS(3467), 20, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -148208,25 +153533,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [36046] = 5, + [35958] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1630), 2, + ACTIONS(3379), 1, + anon_sym_BANG, + ACTIONS(4055), 1, + anon_sym_COLON_COLON, + STATE(1663), 2, sym_line_comment, sym_block_comment, - ACTIONS(3686), 15, + ACTIONS(3377), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148242,11 +153568,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3684), 25, + ACTIONS(3375), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -148266,17 +153591,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [36101] = 5, + [36018] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1631), 2, + ACTIONS(3408), 1, + anon_sym_BANG, + ACTIONS(3410), 1, + anon_sym_COLON_COLON, + STATE(1664), 2, sym_line_comment, sym_block_comment, - ACTIONS(3784), 15, + ACTIONS(3406), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148287,15 +153616,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3782), 25, + ACTIONS(3404), 22, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -148308,96 +153638,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [36156] = 22, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1157), 1, - anon_sym_extern, - ACTIONS(3491), 1, - anon_sym_COLON_COLON, - ACTIONS(3499), 1, - sym_metavariable, - ACTIONS(3636), 1, - anon_sym_default, - ACTIONS(4226), 1, - sym_identifier, - ACTIONS(4228), 1, - anon_sym_fn, - STATE(2317), 1, - aux_sym_function_modifiers_repeat1, - STATE(2461), 1, - sym_extern_modifier, - STATE(2686), 1, - sym_scoped_type_identifier, - STATE(3509), 1, - sym_function_modifiers, - STATE(3610), 1, - sym_scoped_identifier, - STATE(3633), 1, - sym_bracketed_type, - STATE(3711), 1, - sym_generic_type, - STATE(3780), 1, - sym_generic_type_with_turbofish, - ACTIONS(3493), 2, - anon_sym_gen, - anon_sym_union, - STATE(1632), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1141), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3497), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3634), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [36245] = 7, + anon_sym_LT2, + [36078] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4230), 1, - anon_sym_else, - STATE(1840), 1, - sym_else_clause, - STATE(1633), 2, + ACTIONS(4155), 1, + anon_sym_SQUOTE, + STATE(1893), 1, + sym_label, + STATE(1665), 2, sym_line_comment, sym_block_comment, - ACTIONS(1407), 15, + ACTIONS(3573), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148413,7 +153674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1405), 23, + ACTIONS(3571), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148437,19 +153698,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [36304] = 7, + [36137] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4180), 1, - anon_sym_BANG, - ACTIONS(4232), 1, + ACTIONS(4055), 1, anon_sym_COLON_COLON, - STATE(1634), 2, + STATE(1666), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(3377), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148465,10 +153724,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 23, + ACTIONS(3375), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -148488,18 +153747,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, anon_sym_as, - [36363] = 6, + [36194] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3984), 1, - anon_sym_COLON_COLON, - STATE(1635), 2, + ACTIONS(830), 1, + anon_sym_RBRACK, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_AMP, + ACTIONS(4075), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4157), 1, + anon_sym_SEMI, + ACTIONS(4159), 1, + anon_sym_DOT_DOT, + ACTIONS(4163), 1, + anon_sym_COMMA, + STATE(3089), 1, + aux_sym_array_expression_repeat1, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4087), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1667), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4059), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4109), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [36289] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1511), 1, + sym_label, + STATE(1668), 2, sym_line_comment, sym_block_comment, - ACTIONS(3986), 15, + ACTIONS(3573), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148515,7 +153845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3982), 24, + ACTIONS(3571), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -148540,66 +153870,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, anon_sym_as, - [36420] = 25, + [36346] = 25, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(871), 1, - anon_sym_RBRACK, - ACTIONS(3850), 1, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4169), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4171), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4173), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4175), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4177), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4183), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4189), 1, anon_sym_DOT_DOT, - ACTIONS(4234), 1, - anon_sym_SEMI, - ACTIONS(4236), 1, - anon_sym_COMMA, - STATE(3143), 1, - aux_sym_arguments_repeat1, - ACTIONS(4120), 2, + STATE(420), 1, + sym_block, + STATE(3801), 1, + sym_label, + ACTIONS(4165), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4179), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4187), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1636), 2, + STATE(1669), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4167), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4185), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4181), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148610,66 +153940,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36515] = 25, + [36441] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(941), 1, + ACTIONS(1007), 1, anon_sym_RBRACK, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4238), 1, + ACTIONS(4193), 1, anon_sym_SEMI, - ACTIONS(4240), 1, + ACTIONS(4195), 1, anon_sym_COMMA, - STATE(3184), 1, - aux_sym_arguments_repeat1, - ACTIONS(4120), 2, + STATE(3230), 1, + aux_sym_array_expression_repeat1, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1637), 2, + STATE(1670), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148680,23 +154010,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36610] = 6, + [36536] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1496), 1, - sym_label, - STATE(1638), 2, + STATE(1671), 2, sym_line_comment, sym_block_comment, - ACTIONS(3662), 15, + ACTIONS(3416), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -148706,10 +154035,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3660), 24, + ACTIONS(3418), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -148729,68 +154058,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, - [36667] = 25, + [36591] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4246), 1, + ACTIONS(3927), 1, + anon_sym_COLON_COLON, + STATE(1672), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3851), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4248), 1, anon_sym_AMP, - ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(4252), 1, - anon_sym_AMP_AMP, - ACTIONS(4254), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4260), 1, - anon_sym_EQ, - ACTIONS(4266), 1, - anon_sym_DOT_DOT, - STATE(1528), 1, - sym_block, - STATE(3714), 1, - sym_label, - ACTIONS(4242), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4264), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4268), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3847), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1639), 2, + anon_sym_SQUOTE, + anon_sym_as, + [36648] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4097), 1, + anon_sym_BANG, + ACTIONS(4197), 1, + anon_sym_COLON_COLON, + STATE(1673), 2, sym_line_comment, sym_block_comment, - ACTIONS(4244), 3, + ACTIONS(1399), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4262), 4, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1397), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4258), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [36707] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1674), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3455), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3457), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148801,66 +154205,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, [36762] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(417), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4246), 1, + ACTIONS(4169), 1, anon_sym_CARET, - ACTIONS(4248), 1, + ACTIONS(4171), 1, anon_sym_AMP, - ACTIONS(4250), 1, + ACTIONS(4173), 1, anon_sym_PIPE, - ACTIONS(4252), 1, + ACTIONS(4175), 1, anon_sym_AMP_AMP, - ACTIONS(4254), 1, + ACTIONS(4177), 1, anon_sym_PIPE_PIPE, - ACTIONS(4260), 1, + ACTIONS(4183), 1, anon_sym_EQ, - ACTIONS(4266), 1, + ACTIONS(4189), 1, anon_sym_DOT_DOT, - STATE(1494), 1, + STATE(1948), 1, sym_block, - STATE(3714), 1, + STATE(3841), 1, sym_label, - ACTIONS(4242), 2, + ACTIONS(4165), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4256), 2, + ACTIONS(4179), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4264), 2, + ACTIONS(4187), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4268), 2, + ACTIONS(4191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1640), 2, + STATE(1675), 2, sym_line_comment, sym_block_comment, - ACTIONS(4244), 3, + ACTIONS(4167), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4262), 4, + ACTIONS(4185), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4258), 10, + ACTIONS(4181), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148871,66 +154283,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36857] = 25, + [36857] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1383), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4246), 1, + STATE(1676), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3463), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4248), 1, + anon_sym_BANG, anon_sym_AMP, - ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(4252), 1, - anon_sym_AMP_AMP, - ACTIONS(4254), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4260), 1, - anon_sym_EQ, - ACTIONS(4266), 1, - anon_sym_DOT_DOT, - STATE(480), 1, - sym_block, - STATE(3778), 1, - sym_label, - ACTIONS(4242), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4264), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4268), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3465), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1641), 2, + anon_sym_COLON_COLON, + anon_sym_as, + [36912] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3849), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1677), 2, sym_line_comment, sym_block_comment, - ACTIONS(4244), 3, + ACTIONS(3851), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4262), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4258), 10, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3847), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148941,66 +154377,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36952] = 25, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [36969] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1383), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4246), 1, + ACTIONS(4169), 1, anon_sym_CARET, - ACTIONS(4248), 1, + ACTIONS(4171), 1, anon_sym_AMP, - ACTIONS(4250), 1, + ACTIONS(4173), 1, anon_sym_PIPE, - ACTIONS(4252), 1, + ACTIONS(4175), 1, anon_sym_AMP_AMP, - ACTIONS(4254), 1, + ACTIONS(4177), 1, anon_sym_PIPE_PIPE, - ACTIONS(4260), 1, + ACTIONS(4183), 1, anon_sym_EQ, - ACTIONS(4266), 1, + ACTIONS(4189), 1, anon_sym_DOT_DOT, - STATE(498), 1, + STATE(1508), 1, sym_block, - STATE(3778), 1, + STATE(3775), 1, sym_label, - ACTIONS(4242), 2, + ACTIONS(4165), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4256), 2, + ACTIONS(4179), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4264), 2, + ACTIONS(4187), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4268), 2, + ACTIONS(4191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1642), 2, + STATE(1678), 2, sym_line_comment, sym_block_comment, - ACTIONS(4244), 3, + ACTIONS(4167), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4262), 4, + ACTIONS(4185), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4258), 10, + ACTIONS(4181), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149011,66 +154454,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37047] = 25, + [37064] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4246), 1, + STATE(1679), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3563), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4248), 1, anon_sym_AMP, - ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(4252), 1, - anon_sym_AMP_AMP, - ACTIONS(4254), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4260), 1, - anon_sym_EQ, - ACTIONS(4266), 1, - anon_sym_DOT_DOT, - STATE(1845), 1, - sym_block, - STATE(3779), 1, - sym_label, - ACTIONS(4242), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4264), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4268), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3561), 25, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1643), 2, + anon_sym_COLON_COLON, + anon_sym_as, + [37119] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1680), 2, sym_line_comment, sym_block_comment, - ACTIONS(4244), 3, + ACTIONS(3408), 16, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4262), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4258), 10, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3410), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149081,66 +154546,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37142] = 25, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + [37174] = 25, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4246), 1, + ACTIONS(4169), 1, anon_sym_CARET, - ACTIONS(4248), 1, + ACTIONS(4171), 1, anon_sym_AMP, - ACTIONS(4250), 1, + ACTIONS(4173), 1, anon_sym_PIPE, - ACTIONS(4252), 1, + ACTIONS(4175), 1, anon_sym_AMP_AMP, - ACTIONS(4254), 1, + ACTIONS(4177), 1, anon_sym_PIPE_PIPE, - ACTIONS(4260), 1, + ACTIONS(4183), 1, anon_sym_EQ, - ACTIONS(4266), 1, + ACTIONS(4189), 1, anon_sym_DOT_DOT, - STATE(1851), 1, + STATE(439), 1, sym_block, - STATE(3779), 1, + STATE(3801), 1, sym_label, - ACTIONS(4242), 2, + ACTIONS(4165), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4256), 2, + ACTIONS(4179), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4264), 2, + ACTIONS(4187), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4268), 2, + ACTIONS(4191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1644), 2, + STATE(1681), 2, sym_line_comment, sym_block_comment, - ACTIONS(4244), 3, + ACTIONS(4167), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4262), 4, + ACTIONS(4185), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4258), 10, + ACTIONS(4181), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149151,17 +154624,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37237] = 6, + [37269] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4116), 1, + ACTIONS(3927), 2, + anon_sym_LBRACE, anon_sym_COLON_COLON, - STATE(1645), 2, + STATE(1682), 2, sym_line_comment, sym_block_comment, - ACTIONS(3442), 15, + ACTIONS(3851), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149177,10 +154651,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3440), 24, + ACTIONS(3847), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -149200,19 +154674,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [37294] = 6, + [37326] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4270), 1, - anon_sym_COLON_COLON, - STATE(1646), 2, + ACTIONS(4199), 1, + anon_sym_else, + STATE(1929), 1, + sym_else_clause, + STATE(1683), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(1319), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149228,10 +154703,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 24, + ACTIONS(1317), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -149251,58 +154726,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [37351] = 22, + [37385] = 22, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1157), 1, + ACTIONS(1107), 1, anon_sym_extern, - ACTIONS(3491), 1, + ACTIONS(3439), 1, anon_sym_COLON_COLON, - ACTIONS(3499), 1, + ACTIONS(3447), 1, sym_metavariable, - ACTIONS(3636), 1, + ACTIONS(3593), 1, anon_sym_default, - ACTIONS(4272), 1, + ACTIONS(4201), 1, sym_identifier, - ACTIONS(4274), 1, + ACTIONS(4203), 1, anon_sym_fn, - STATE(2317), 1, + STATE(2385), 1, aux_sym_function_modifiers_repeat1, - STATE(2461), 1, + STATE(2535), 1, sym_extern_modifier, - STATE(2872), 1, + STATE(2773), 1, sym_scoped_type_identifier, - STATE(3514), 1, - sym_function_modifiers, - STATE(3610), 1, - sym_scoped_identifier, - STATE(3633), 1, + STATE(3671), 1, + sym_generic_type, + STATE(3692), 1, sym_bracketed_type, STATE(3711), 1, - sym_generic_type, - STATE(3780), 1, + sym_function_modifiers, + STATE(3823), 1, + sym_scoped_identifier, + STATE(3847), 1, sym_generic_type_with_turbofish, - ACTIONS(3493), 2, + ACTIONS(3441), 2, anon_sym_gen, anon_sym_union, - STATE(1647), 2, + STATE(1684), 2, sym_line_comment, sym_block_comment, - ACTIONS(1141), 3, + ACTIONS(1091), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3497), 3, + ACTIONS(3445), 3, sym_self, sym_super, sym_crate, - ACTIONS(3634), 17, + ACTIONS(3591), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -149320,136 +154794,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [37440] = 25, - ACTIONS(19), 1, - anon_sym_LBRACE, + [37474] = 22, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4246), 1, - anon_sym_CARET, - ACTIONS(4248), 1, - anon_sym_AMP, - ACTIONS(4250), 1, - anon_sym_PIPE, - ACTIONS(4252), 1, - anon_sym_AMP_AMP, - ACTIONS(4254), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4260), 1, - anon_sym_EQ, - ACTIONS(4266), 1, - anon_sym_DOT_DOT, - STATE(422), 1, - sym_block, - STATE(3621), 1, - sym_label, - ACTIONS(4242), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4256), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4264), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4268), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1648), 2, + ACTIONS(1107), 1, + anon_sym_extern, + ACTIONS(3439), 1, + anon_sym_COLON_COLON, + ACTIONS(3447), 1, + sym_metavariable, + ACTIONS(3593), 1, + anon_sym_default, + ACTIONS(4205), 1, + sym_identifier, + ACTIONS(4207), 1, + anon_sym_fn, + STATE(2385), 1, + aux_sym_function_modifiers_repeat1, + STATE(2535), 1, + sym_extern_modifier, + STATE(2837), 1, + sym_scoped_type_identifier, + STATE(3671), 1, + sym_generic_type, + STATE(3692), 1, + sym_bracketed_type, + STATE(3694), 1, + sym_function_modifiers, + STATE(3823), 1, + sym_scoped_identifier, + STATE(3847), 1, + sym_generic_type_with_turbofish, + ACTIONS(3441), 2, + anon_sym_gen, + anon_sym_union, + STATE(1685), 2, sym_line_comment, sym_block_comment, - ACTIONS(4244), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4262), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4258), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [37535] = 25, + ACTIONS(1091), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3445), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3591), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [37563] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1011), 1, - anon_sym_RBRACK, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + STATE(1686), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3547), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4276), 1, - anon_sym_SEMI, - ACTIONS(4278), 1, - anon_sym_COMMA, - STATE(3147), 1, - aux_sym_arguments_repeat1, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1649), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3545), 25, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149460,66 +154903,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37630] = 25, - ACTIONS(19), 1, - anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + [37618] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(983), 1, + anon_sym_LBRACE, + ACTIONS(3383), 1, anon_sym_SQUOTE, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4246), 1, + ACTIONS(4169), 1, anon_sym_CARET, - ACTIONS(4248), 1, + ACTIONS(4171), 1, anon_sym_AMP, - ACTIONS(4250), 1, + ACTIONS(4173), 1, anon_sym_PIPE, - ACTIONS(4252), 1, + ACTIONS(4175), 1, anon_sym_AMP_AMP, - ACTIONS(4254), 1, + ACTIONS(4177), 1, anon_sym_PIPE_PIPE, - ACTIONS(4260), 1, + ACTIONS(4183), 1, anon_sym_EQ, - ACTIONS(4266), 1, + ACTIONS(4189), 1, anon_sym_DOT_DOT, - STATE(401), 1, + STATE(522), 1, sym_block, - STATE(3621), 1, + STATE(3840), 1, sym_label, - ACTIONS(4242), 2, + ACTIONS(4165), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4256), 2, + ACTIONS(4179), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4264), 2, + ACTIONS(4187), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4268), 2, + ACTIONS(4191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1650), 2, + STATE(1687), 2, sym_line_comment, sym_block_comment, - ACTIONS(4244), 3, + ACTIONS(4167), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4262), 4, + ACTIONS(4185), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4258), 10, + ACTIONS(4181), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149530,19 +154981,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37725] = 7, + [37713] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4280), 1, - anon_sym_SQUOTE, - STATE(1747), 1, - sym_label, - STATE(1651), 2, + STATE(1688), 2, sym_line_comment, sym_block_comment, - ACTIONS(3662), 15, + ACTIONS(3555), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149558,9 +155005,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3660), 23, + ACTIONS(3553), 25, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -149581,57 +155029,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + [37768] = 25, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(339), 1, + anon_sym_LBRACE, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, anon_sym_as, - [37784] = 22, + ACTIONS(4169), 1, + anon_sym_CARET, + ACTIONS(4171), 1, + anon_sym_AMP, + ACTIONS(4173), 1, + anon_sym_PIPE, + ACTIONS(4175), 1, + anon_sym_AMP_AMP, + ACTIONS(4177), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4183), 1, + anon_sym_EQ, + ACTIONS(4189), 1, + anon_sym_DOT_DOT, + STATE(1516), 1, + sym_block, + STATE(3775), 1, + sym_label, + ACTIONS(4165), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4179), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4187), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4191), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1689), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4167), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4185), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4181), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [37863] = 22, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1157), 1, + ACTIONS(1107), 1, anon_sym_extern, - ACTIONS(3491), 1, + ACTIONS(3439), 1, anon_sym_COLON_COLON, - ACTIONS(3499), 1, + ACTIONS(3447), 1, sym_metavariable, - ACTIONS(3636), 1, + ACTIONS(3593), 1, anon_sym_default, - ACTIONS(4282), 1, + ACTIONS(4209), 1, sym_identifier, - ACTIONS(4284), 1, + ACTIONS(4211), 1, anon_sym_fn, - STATE(2317), 1, + STATE(2385), 1, aux_sym_function_modifiers_repeat1, - STATE(2461), 1, + STATE(2535), 1, sym_extern_modifier, - STATE(2868), 1, + STATE(2930), 1, sym_scoped_type_identifier, - STATE(3610), 1, - sym_scoped_identifier, - STATE(3633), 1, - sym_bracketed_type, - STATE(3711), 1, + STATE(3572), 1, + sym_function_modifiers, + STATE(3671), 1, sym_generic_type, - STATE(3780), 1, + STATE(3692), 1, + sym_bracketed_type, + STATE(3823), 1, + sym_scoped_identifier, + STATE(3847), 1, sym_generic_type_with_turbofish, - STATE(3814), 1, - sym_function_modifiers, - ACTIONS(3493), 2, + ACTIONS(3441), 2, anon_sym_gen, anon_sym_union, - STATE(1652), 2, + STATE(1690), 2, sym_line_comment, sym_block_comment, - ACTIONS(1141), 3, + ACTIONS(1091), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3497), 3, + ACTIONS(3445), 3, sym_self, sym_super, sym_crate, - ACTIONS(3634), 17, + ACTIONS(3591), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -149649,15 +155168,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [37873] = 5, + [37952] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1653), 2, + ACTIONS(3773), 1, + anon_sym_BANG, + ACTIONS(3775), 1, + anon_sym_COLON_COLON, + STATE(1691), 2, sym_line_comment, sym_block_comment, - ACTIONS(1443), 15, + ACTIONS(3377), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149673,7 +155196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1441), 24, + ACTIONS(3375), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149697,38 +155220,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_else, - [37927] = 5, + [38011] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1654), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3612), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(842), 1, + anon_sym_RBRACK, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_AMP, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4159), 1, + anon_sym_DOT_DOT, + ACTIONS(4213), 1, + anon_sym_SEMI, + ACTIONS(4215), 1, + anon_sym_COMMA, + STATE(3168), 1, + aux_sym_array_expression_repeat1, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3610), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1692), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4059), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149739,68 +155290,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, - anon_sym_as, - [37981] = 21, + [38106] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(417), 1, + anon_sym_LBRACE, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4196), 1, - anon_sym_EQ, - ACTIONS(4246), 1, + ACTIONS(4169), 1, anon_sym_CARET, - ACTIONS(4248), 1, + ACTIONS(4171), 1, anon_sym_AMP, - ACTIONS(4250), 1, + ACTIONS(4173), 1, anon_sym_PIPE, - ACTIONS(4252), 1, + ACTIONS(4175), 1, anon_sym_AMP_AMP, - ACTIONS(4254), 1, + ACTIONS(4177), 1, anon_sym_PIPE_PIPE, - ACTIONS(4286), 1, + ACTIONS(4183), 1, + anon_sym_EQ, + ACTIONS(4189), 1, anon_sym_DOT_DOT, - ACTIONS(4242), 2, + STATE(1939), 1, + sym_block, + STATE(3841), 1, + sym_label, + ACTIONS(4165), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4256), 2, + ACTIONS(4179), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4264), 2, + ACTIONS(4187), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4288), 2, + ACTIONS(4191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1655), 2, + STATE(1693), 2, sym_line_comment, sym_block_comment, - ACTIONS(4244), 3, + ACTIONS(4167), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4262), 4, + ACTIONS(4185), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4194), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4181), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149811,40 +155360,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [38067] = 6, + [38201] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4290), 1, - anon_sym_COLON_COLON, - STATE(1656), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3511), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1027), 1, + anon_sym_RBRACK, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_AMP, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4159), 1, + anon_sym_DOT_DOT, + ACTIONS(4217), 1, + anon_sym_SEMI, + ACTIONS(4219), 1, + anon_sym_COMMA, + STATE(3037), 1, + aux_sym_array_expression_repeat1, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3509), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1694), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4059), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149855,55 +155430,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [38123] = 15, + [38296] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(983), 1, + anon_sym_LBRACE, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4246), 1, + ACTIONS(4169), 1, anon_sym_CARET, - ACTIONS(4248), 1, + ACTIONS(4171), 1, anon_sym_AMP, - ACTIONS(4250), 1, + ACTIONS(4173), 1, anon_sym_PIPE, - ACTIONS(4242), 2, + ACTIONS(4175), 1, + anon_sym_AMP_AMP, + ACTIONS(4177), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4183), 1, + anon_sym_EQ, + ACTIONS(4189), 1, + anon_sym_DOT_DOT, + STATE(526), 1, + sym_block, + STATE(3840), 1, + sym_label, + ACTIONS(4165), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4256), 2, + ACTIONS(4179), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1657), 2, + ACTIONS(4187), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4191), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1695), 2, sym_line_comment, sym_block_comment, - ACTIONS(4244), 3, + ACTIONS(4167), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3876), 4, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3874), 21, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4185), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4181), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149914,24 +155500,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [38197] = 6, + [38391] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4292), 1, - anon_sym_DASH_GT, - STATE(1658), 2, + STATE(1696), 2, sym_line_comment, sym_block_comment, - ACTIONS(3792), 15, + ACTIONS(3531), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149947,9 +155524,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3790), 23, + ACTIONS(3529), 25, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -149970,16 +155548,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [38253] = 5, + [38446] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1659), 2, + ACTIONS(3849), 1, + anon_sym_COLON_COLON, + STATE(1697), 2, sym_line_comment, sym_block_comment, - ACTIONS(3704), 15, + ACTIONS(3851), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149995,10 +155576,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3702), 24, + ACTIONS(3847), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -150018,17 +155599,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [38307] = 5, + [38503] = 22, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1660), 2, + ACTIONS(1107), 1, + anon_sym_extern, + ACTIONS(3439), 1, + anon_sym_COLON_COLON, + ACTIONS(3447), 1, + sym_metavariable, + ACTIONS(3593), 1, + anon_sym_default, + ACTIONS(4221), 1, + sym_identifier, + ACTIONS(4223), 1, + anon_sym_fn, + STATE(2385), 1, + aux_sym_function_modifiers_repeat1, + STATE(2535), 1, + sym_extern_modifier, + STATE(2931), 1, + sym_scoped_type_identifier, + STATE(3671), 1, + sym_generic_type, + STATE(3692), 1, + sym_bracketed_type, + STATE(3823), 1, + sym_scoped_identifier, + STATE(3847), 1, + sym_generic_type_with_turbofish, + STATE(3876), 1, + sym_function_modifiers, + ACTIONS(3441), 2, + anon_sym_gen, + anon_sym_union, + STATE(1698), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1091), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3445), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3591), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [38592] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4225), 1, + anon_sym_COLON_COLON, + STATE(1699), 2, sym_line_comment, sym_block_comment, - ACTIONS(3630), 15, + ACTIONS(1399), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150044,10 +155694,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3628), 24, + ACTIONS(1397), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -150067,39 +155717,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, + anon_sym_SQUOTE, anon_sym_as, - [38361] = 5, + [38649] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1661), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3734), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4169), 1, anon_sym_CARET, + ACTIONS(4171), 1, anon_sym_AMP, + ACTIONS(4173), 1, anon_sym_PIPE, + ACTIONS(4175), 1, + anon_sym_AMP_AMP, + ACTIONS(4177), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4141), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4165), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4179), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4187), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3732), 24, + STATE(1700), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4167), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4185), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4139), 15, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150110,23 +155779,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [38415] = 5, + anon_sym_SQUOTE, + [38731] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1662), 2, + STATE(1701), 2, sym_line_comment, sym_block_comment, - ACTIONS(3690), 15, + ACTIONS(1337), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150142,7 +155806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3688), 24, + ACTIONS(1335), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150165,17 +155829,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, anon_sym_as, - [38469] = 5, + anon_sym_else, + [38785] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1663), 2, + STATE(1702), 2, sym_line_comment, sym_block_comment, - ACTIONS(3738), 15, + ACTIONS(1333), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150191,7 +155855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3736), 24, + ACTIONS(1331), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150214,17 +155878,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [38523] = 5, + anon_sym_else, + [38839] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1664), 2, + STATE(1703), 2, sym_line_comment, sym_block_comment, - ACTIONS(3788), 15, + ACTIONS(1329), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150240,7 +155904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3786), 24, + ACTIONS(1327), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150263,19 +155927,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, anon_sym_as, - [38577] = 6, + anon_sym_else, + [38893] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4294), 1, - anon_sym_DASH_GT, - STATE(1665), 2, + STATE(1704), 2, sym_line_comment, sym_block_comment, - ACTIONS(3742), 15, + ACTIONS(1341), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150291,7 +155953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3740), 23, + ACTIONS(1339), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150315,45 +155977,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [38633] = 12, + anon_sym_else, + [38947] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4242), 2, + ACTIONS(4169), 1, + anon_sym_CARET, + ACTIONS(4171), 1, + anon_sym_AMP, + ACTIONS(4173), 1, + anon_sym_PIPE, + ACTIONS(4175), 1, + anon_sym_AMP_AMP, + ACTIONS(4177), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4183), 1, + anon_sym_EQ, + ACTIONS(4227), 1, + anon_sym_DOT_DOT, + ACTIONS(4165), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4256), 2, + ACTIONS(4179), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1666), 2, + ACTIONS(4187), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4229), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1705), 2, sym_line_comment, sym_block_comment, - ACTIONS(4244), 3, + ACTIONS(3811), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4167), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3876), 7, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3874), 21, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4185), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4181), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150364,22 +156044,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [38701] = 5, + [39035] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1667), 2, + STATE(1706), 2, sym_line_comment, sym_block_comment, - ACTIONS(3618), 15, + ACTIONS(3461), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150390,12 +156063,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3616), 24, + ACTIONS(3459), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150410,27 +156085,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [38755] = 6, + anon_sym_LT2, + [39089] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4290), 1, + ACTIONS(4231), 1, anon_sym_COLON_COLON, - STATE(1668), 2, + STATE(1707), 2, sym_line_comment, sym_block_comment, - ACTIONS(3515), 15, + ACTIONS(1399), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150446,7 +156119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3513), 23, + ACTIONS(1397), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150470,15 +156143,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [38811] = 5, + [39145] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1669), 2, + ACTIONS(4233), 1, + anon_sym_COLON_COLON, + STATE(1708), 2, sym_line_comment, sym_block_comment, - ACTIONS(1439), 15, + ACTIONS(3422), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150494,7 +156169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1437), 24, + ACTIONS(3420), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150518,16 +156193,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_else, - [38865] = 5, + [39201] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1670), 2, + STATE(1709), 2, sym_line_comment, sym_block_comment, - ACTIONS(1447), 15, + ACTIONS(3715), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150543,7 +156217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1445), 24, + ACTIONS(3713), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150566,39 +156240,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_DASH_GT, anon_sym_as, - anon_sym_else, - [38919] = 5, + [39255] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1671), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1451), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4169), 1, anon_sym_CARET, + ACTIONS(4171), 1, anon_sym_AMP, + ACTIONS(4173), 1, anon_sym_PIPE, + ACTIONS(4175), 1, + anon_sym_AMP_AMP, + ACTIONS(4177), 1, + anon_sym_PIPE_PIPE, + ACTIONS(405), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4165), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4179), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4187), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1449), 24, + STATE(1710), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4167), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4185), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(403), 15, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150609,45 +156302,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - anon_sym_else, - [38973] = 5, + anon_sym_SQUOTE, + [39337] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1672), 2, + ACTIONS(367), 1, + anon_sym_EQ, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4169), 1, + anon_sym_CARET, + ACTIONS(4171), 1, + anon_sym_AMP, + ACTIONS(4173), 1, + anon_sym_PIPE, + ACTIONS(4175), 1, + anon_sym_AMP_AMP, + ACTIONS(4177), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4227), 1, + anon_sym_DOT_DOT, + ACTIONS(4165), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4179), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4187), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4229), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1711), 2, sym_line_comment, sym_block_comment, - ACTIONS(1435), 15, - anon_sym_PLUS, + ACTIONS(4167), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4185), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(363), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_SQUOTE, + [39423] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4083), 1, + anon_sym_EQ, + ACTIONS(4169), 1, anon_sym_CARET, + ACTIONS(4171), 1, anon_sym_AMP, + ACTIONS(4173), 1, anon_sym_PIPE, + ACTIONS(4175), 1, + anon_sym_AMP_AMP, + ACTIONS(4177), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4227), 1, + anon_sym_DOT_DOT, + ACTIONS(4165), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4179), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4187), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1433), 24, + ACTIONS(4229), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1712), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4167), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4185), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4067), 13, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150658,70 +156434,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - anon_sym_else, - [39027] = 22, + anon_sym_SQUOTE, + [39509] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4101), 1, + anon_sym_EQ, + ACTIONS(4169), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4171), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4173), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4175), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4177), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4227), 1, anon_sym_DOT_DOT, - ACTIONS(4120), 2, + ACTIONS(4165), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4179), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4187), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4229), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1673), 2, + STATE(1713), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4167), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4296), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(4138), 4, + ACTIONS(4185), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4099), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150732,15 +156499,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39115] = 5, + anon_sym_SQUOTE, + [39595] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1674), 2, + ACTIONS(4235), 1, + anon_sym_DASH_GT, + STATE(1714), 2, sym_line_comment, sym_block_comment, - ACTIONS(3622), 15, + ACTIONS(3719), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150756,7 +156526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3620), 24, + ACTIONS(3717), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150779,58 +156549,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [39169] = 19, + [39651] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4246), 1, + ACTIONS(4237), 1, + anon_sym_DASH_GT, + STATE(1715), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3725), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4248), 1, anon_sym_AMP, - ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(4252), 1, - anon_sym_AMP_AMP, - ACTIONS(4254), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4200), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4242), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4264), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1675), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4244), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4262), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4198), 15, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3723), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150841,48 +156593,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [39251] = 14, + anon_sym_as, + [39707] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4246), 1, - anon_sym_CARET, - ACTIONS(4248), 1, - anon_sym_AMP, - ACTIONS(4242), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4256), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1676), 2, + ACTIONS(4239), 1, + anon_sym_DASH_GT, + STATE(1716), 2, sym_line_comment, sym_block_comment, - ACTIONS(4244), 3, + ACTIONS(3731), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3876), 5, + anon_sym_CARET, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3874), 21, + ACTIONS(3729), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -150901,18 +156649,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [39323] = 6, + anon_sym_as, + [39763] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3950), 1, + ACTIONS(4241), 1, anon_sym_COLON_COLON, - STATE(1677), 2, + STATE(1717), 2, sym_line_comment, sym_block_comment, - ACTIONS(3442), 15, + ACTIONS(3422), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150928,7 +156676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3440), 23, + ACTIONS(3420), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150952,52 +156700,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39379] = 17, + [39819] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4246), 1, + ACTIONS(4169), 1, anon_sym_CARET, - ACTIONS(4248), 1, + ACTIONS(4171), 1, anon_sym_AMP, - ACTIONS(4250), 1, + ACTIONS(4173), 1, anon_sym_PIPE, - ACTIONS(3876), 2, + ACTIONS(4175), 1, + anon_sym_AMP_AMP, + ACTIONS(4177), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4183), 1, anon_sym_EQ, + ACTIONS(4227), 1, anon_sym_DOT_DOT, - ACTIONS(4242), 2, + ACTIONS(4165), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4256), 2, + ACTIONS(4179), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4264), 2, + ACTIONS(4187), 2, anon_sym_GT, anon_sym_LT, - STATE(1678), 2, + ACTIONS(4229), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1718), 2, sym_line_comment, sym_block_comment, - ACTIONS(4244), 3, + ACTIONS(3779), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4167), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4262), 4, + ACTIONS(4185), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3874), 17, + ACTIONS(4181), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [39907] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1719), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3535), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3533), 24, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -151010,59 +156807,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [39457] = 19, + anon_sym_DASH_GT, + anon_sym_as, + [39961] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4246), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4248), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4250), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4252), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4254), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(399), 2, + ACTIONS(4111), 1, anon_sym_EQ, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4242), 2, + ACTIONS(4243), 1, + anon_sym_RPAREN, + ACTIONS(4245), 1, + anon_sym_COMMA, + STATE(3206), 1, + aux_sym_arguments_repeat1, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4256), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4264), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - STATE(1679), 2, + ACTIONS(4161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1720), 2, sym_line_comment, sym_block_comment, - ACTIONS(4244), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4262), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(397), 15, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151073,63 +156883,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [39539] = 21, + [40053] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(3850), 1, + ACTIONS(1011), 1, + anon_sym_RBRACK, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4246), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4248), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4250), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4252), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4254), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4286), 1, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4242), 2, + ACTIONS(4247), 1, + anon_sym_COMMA, + STATE(3234), 1, + aux_sym_array_expression_repeat1, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4256), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4264), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4288), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1680), 2, + STATE(1721), 2, sym_line_comment, sym_block_comment, - ACTIONS(4244), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4262), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(341), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151140,18 +156951,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [39625] = 6, + [40145] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4298), 1, + ACTIONS(4241), 1, anon_sym_COLON_COLON, - STATE(1681), 2, + STATE(1722), 2, sym_line_comment, sym_block_comment, - ACTIONS(3477), 15, + ACTIONS(3469), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151167,7 +156977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3475), 23, + ACTIONS(3467), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151191,60 +157001,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39681] = 21, + [40201] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4136), 1, - anon_sym_EQ, - ACTIONS(4246), 1, + ACTIONS(4249), 1, + anon_sym_DASH_GT, + STATE(1723), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3541), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4248), 1, anon_sym_AMP, - ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(4252), 1, - anon_sym_AMP_AMP, - ACTIONS(4254), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4286), 1, - anon_sym_DOT_DOT, - ACTIONS(4242), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4264), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4288), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1682), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4244), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4262), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4118), 13, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3539), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151255,18 +157044,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [39767] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [40257] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4290), 1, + ACTIONS(3775), 1, anon_sym_COLON_COLON, - STATE(1683), 2, + STATE(1724), 2, sym_line_comment, sym_block_comment, - ACTIONS(3519), 15, + ACTIONS(3377), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151282,7 +157077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3517), 23, + ACTIONS(3375), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151306,64 +157101,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39823] = 24, + [40313] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4300), 1, + ACTIONS(4251), 1, anon_sym_RPAREN, - ACTIONS(4302), 1, + ACTIONS(4253), 1, anon_sym_COMMA, - STATE(2907), 1, + STATE(2994), 1, aux_sym_arguments_repeat1, - ACTIONS(4120), 2, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1684), 2, + STATE(1725), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151374,54 +157169,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39915] = 18, + [40405] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4246), 1, + STATE(1726), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3551), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4248), 1, anon_sym_AMP, - ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(4252), 1, - anon_sym_AMP_AMP, - ACTIONS(3876), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4242), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4264), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1685), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4244), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4262), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3874), 16, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3549), 24, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -151433,65 +157210,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [39995] = 22, + anon_sym_DASH_GT, + anon_sym_as, + [40459] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4246), 1, + ACTIONS(4169), 1, anon_sym_CARET, - ACTIONS(4248), 1, + ACTIONS(4171), 1, anon_sym_AMP, - ACTIONS(4250), 1, + ACTIONS(4173), 1, anon_sym_PIPE, - ACTIONS(4252), 1, + ACTIONS(4175), 1, anon_sym_AMP_AMP, - ACTIONS(4254), 1, + ACTIONS(4177), 1, anon_sym_PIPE_PIPE, - ACTIONS(4260), 1, + ACTIONS(4183), 1, anon_sym_EQ, - ACTIONS(4286), 1, + ACTIONS(4227), 1, anon_sym_DOT_DOT, - ACTIONS(4242), 2, + ACTIONS(4165), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4256), 2, + ACTIONS(4179), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4264), 2, + ACTIONS(4187), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4288), 2, + ACTIONS(4229), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1686), 2, + STATE(1727), 2, sym_line_comment, sym_block_comment, - ACTIONS(4058), 3, + ACTIONS(4031), 3, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_SQUOTE, - ACTIONS(4244), 3, + ACTIONS(4167), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4262), 4, + ACTIONS(4185), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4258), 10, + ACTIONS(4181), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151502,85 +157284,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40083] = 24, + [40547] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(959), 1, - anon_sym_RBRACK, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, - anon_sym_AMP, - ACTIONS(4128), 1, - anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4304), 1, - anon_sym_COMMA, - STATE(2911), 1, - aux_sym_arguments_repeat1, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4140), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1687), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [40175] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4306), 1, - anon_sym_DASH_GT, - STATE(1688), 2, + ACTIONS(4255), 1, + anon_sym_COLON_COLON, + STATE(1728), 2, sym_line_comment, sym_block_comment, - ACTIONS(3748), 15, + ACTIONS(3422), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151596,7 +157310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3746), 23, + ACTIONS(3420), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151620,64 +157334,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40231] = 24, + [40603] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(965), 1, - anon_sym_RPAREN, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + STATE(1729), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3559), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4308), 1, - anon_sym_COMMA, - STATE(2946), 1, - aux_sym_arguments_repeat1, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1689), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3557), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151688,17 +157375,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40323] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DASH_GT, + anon_sym_as, + [40657] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4310), 1, - anon_sym_DASH_GT, - STATE(1690), 2, + STATE(1730), 2, sym_line_comment, sym_block_comment, - ACTIONS(3754), 15, + ACTIONS(3567), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151714,7 +157407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3752), 23, + ACTIONS(3565), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151737,31 +157430,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_DASH_GT, anon_sym_as, - [40379] = 11, + [40711] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4242), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1691), 2, + STATE(1731), 2, sym_line_comment, sym_block_comment, - ACTIONS(4244), 3, + ACTIONS(3615), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3876), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -151770,10 +157454,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3874), 21, + ACTIONS(3613), 24, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -151792,18 +157479,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [40445] = 6, + anon_sym_COLON_COLON, + anon_sym_as, + [40765] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4290), 1, - anon_sym_COLON_COLON, - STATE(1692), 2, + STATE(1732), 2, sym_line_comment, sym_block_comment, - ACTIONS(3477), 15, + ACTIONS(3645), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151819,7 +157505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3475), 23, + ACTIONS(3643), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151842,18 +157528,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [40501] = 6, + [40819] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4312), 1, - anon_sym_COLON_COLON, - STATE(1693), 2, + STATE(1733), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(3649), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151869,7 +157554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 23, + ACTIONS(3647), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151892,61 +157577,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [40557] = 21, + [40873] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4192), 1, - anon_sym_EQ, - ACTIONS(4246), 1, + ACTIONS(4257), 1, + anon_sym_COLON_COLON, + STATE(1734), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1399), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4248), 1, anon_sym_AMP, - ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(4252), 1, - anon_sym_AMP_AMP, - ACTIONS(4254), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4286), 1, - anon_sym_DOT_DOT, - ACTIONS(4242), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4264), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4288), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1694), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4244), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4262), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4190), 13, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1397), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151957,30 +157622,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [40643] = 10, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [40929] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - STATE(1695), 2, + ACTIONS(4259), 1, + anon_sym_DASH_GT, + STATE(1735), 2, sym_line_comment, sym_block_comment, - ACTIONS(4244), 3, + ACTIONS(3655), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3876), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -151989,10 +157653,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3874), 21, + ACTIONS(3653), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -152011,45 +157678,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [40707] = 13, + anon_sym_as, + [40985] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4248), 1, - anon_sym_AMP, - ACTIONS(4242), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4256), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1696), 2, + ACTIONS(4241), 1, + anon_sym_COLON_COLON, + STATE(1736), 2, sym_line_comment, sym_block_comment, - ACTIONS(4244), 3, + ACTIONS(3476), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3876), 6, anon_sym_CARET, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3874), 21, + ACTIONS(3474), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -152068,49 +157728,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [40777] = 18, + anon_sym_as, + [41041] = 18, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4314), 1, + ACTIONS(4261), 1, sym_identifier, - ACTIONS(4316), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - ACTIONS(4318), 1, + ACTIONS(4265), 1, anon_sym_RBRACE, - ACTIONS(4320), 1, + ACTIONS(4267), 1, anon_sym_STAR, - ACTIONS(4324), 1, + ACTIONS(4271), 1, anon_sym_COMMA, - ACTIONS(4326), 1, + ACTIONS(4273), 1, anon_sym_COLON_COLON, - ACTIONS(4330), 1, + ACTIONS(4277), 1, sym_metavariable, - STATE(2562), 1, + STATE(2593), 1, sym_scoped_identifier, - STATE(2954), 1, + STATE(3106), 1, sym__use_clause, - STATE(3653), 1, - sym_generic_type_with_turbofish, - STATE(3666), 1, + STATE(3612), 1, sym_bracketed_type, - STATE(1697), 2, + STATE(3615), 1, + sym_generic_type_with_turbofish, + STATE(1737), 2, sym_line_comment, sym_block_comment, - ACTIONS(4328), 3, + ACTIONS(4275), 3, sym_self, sym_super, sym_crate, - STATE(3067), 4, + STATE(3014), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4322), 20, + ACTIONS(4269), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -152131,15 +157791,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [40857] = 5, + [41121] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1698), 2, + ACTIONS(1017), 1, + anon_sym_RBRACK, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_AMP, + ACTIONS(4075), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4159), 1, + anon_sym_DOT_DOT, + ACTIONS(4279), 1, + anon_sym_COMMA, + STATE(2954), 1, + aux_sym_array_expression_repeat1, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4087), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1738), 2, sym_line_comment, sym_block_comment, - ACTIONS(3503), 17, + ACTIONS(4059), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4109), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [41213] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4241), 1, + anon_sym_COLON_COLON, + STATE(1739), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3482), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152150,14 +157880,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3501), 22, + ACTIONS(3480), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152172,23 +157900,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_LT2, - [40911] = 5, + [41269] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1699), 2, + ACTIONS(4281), 1, + anon_sym_DASH_GT, + STATE(1740), 2, sym_line_comment, sym_block_comment, - ACTIONS(3762), 15, + ACTIONS(3665), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152204,7 +157935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3760), 24, + ACTIONS(3663), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152227,66 +157958,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, anon_sym_as, - [40965] = 24, + [41325] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + STATE(1741), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4167), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3907), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4332), 1, - anon_sym_RPAREN, - ACTIONS(4334), 1, - anon_sym_COMMA, - STATE(2891), 1, - aux_sym_arguments_repeat1, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1700), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, + anon_sym_DOT_DOT, + ACTIONS(3905), 21, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152297,103 +158006,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41057] = 22, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [41389] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4246), 1, - anon_sym_CARET, - ACTIONS(4248), 1, + ACTIONS(4171), 1, anon_sym_AMP, - ACTIONS(4250), 1, - anon_sym_PIPE, - ACTIONS(4252), 1, - anon_sym_AMP_AMP, - ACTIONS(4254), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4260), 1, - anon_sym_EQ, - ACTIONS(4286), 1, - anon_sym_DOT_DOT, - ACTIONS(4242), 2, + ACTIONS(4165), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4256), 2, + ACTIONS(4179), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4264), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4288), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1701), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3936), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4244), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4262), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4258), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [41145] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4336), 1, - anon_sym_DASH_GT, - STATE(1702), 2, + STATE(1742), 2, sym_line_comment, sym_block_comment, - ACTIONS(3766), 15, - anon_sym_PLUS, + ACTIONS(4167), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3907), 6, anon_sym_CARET, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3764), 23, + ACTIONS(3905), 21, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -152412,65 +158069,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [41201] = 24, + anon_sym_SQUOTE, + [41459] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1035), 1, - anon_sym_RBRACK, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, - anon_sym_AMP, - ACTIONS(4128), 1, - anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4338), 1, - anon_sym_COMMA, - STATE(2948), 1, - aux_sym_arguments_repeat1, - ACTIONS(4120), 2, + ACTIONS(4165), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4179), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1703), 2, + STATE(1743), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4167), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(3907), 7, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3905), 21, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152481,37 +158119,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41293] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [41527] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4340), 1, - anon_sym_COLON_COLON, - STATE(1704), 2, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4169), 1, + anon_sym_CARET, + ACTIONS(4171), 1, + anon_sym_AMP, + ACTIONS(4165), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4179), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1744), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, - anon_sym_PLUS, + ACTIONS(4167), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3907), 5, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 23, + ACTIONS(3905), 21, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -152530,105 +158183,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [41349] = 22, + anon_sym_SQUOTE, + [41599] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4246), 1, + ACTIONS(4169), 1, anon_sym_CARET, - ACTIONS(4248), 1, + ACTIONS(4171), 1, anon_sym_AMP, - ACTIONS(4250), 1, + ACTIONS(4173), 1, anon_sym_PIPE, - ACTIONS(4252), 1, - anon_sym_AMP_AMP, - ACTIONS(4254), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4260), 1, + ACTIONS(3907), 2, anon_sym_EQ, - ACTIONS(4286), 1, anon_sym_DOT_DOT, - ACTIONS(4242), 2, + ACTIONS(4165), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4256), 2, + ACTIONS(4179), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4264), 2, + ACTIONS(4187), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4288), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1705), 2, + STATE(1745), 2, sym_line_comment, sym_block_comment, - ACTIONS(3966), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4244), 3, + ACTIONS(4167), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4262), 4, + ACTIONS(4185), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4258), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [41437] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4342), 1, + ACTIONS(3905), 17, anon_sym_LPAREN, - STATE(1753), 1, - sym_arguments, - STATE(1706), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3682), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3678), 22, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -152641,71 +158242,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [41495] = 24, + anon_sym_SQUOTE, + [41677] = 18, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(931), 1, - anon_sym_RPAREN, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4169), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4171), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4173), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4175), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(3907), 2, anon_sym_EQ, - ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4344), 1, - anon_sym_COMMA, - STATE(2986), 1, - aux_sym_arguments_repeat1, - ACTIONS(4120), 2, + ACTIONS(4165), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4179), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4187), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1707), 2, + STATE(1746), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4167), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4185), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(3905), 16, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152716,22 +158304,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41587] = 6, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [41757] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4346), 1, - anon_sym_DASH_GT, - STATE(1708), 2, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4165), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1747), 2, sym_line_comment, sym_block_comment, - ACTIONS(3772), 15, - anon_sym_PLUS, + ACTIONS(4167), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3907), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -152740,13 +158339,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3770), 23, + ACTIONS(3905), 21, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -152765,63 +158361,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [41643] = 22, + anon_sym_SQUOTE, + [41823] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4129), 1, + anon_sym_EQ, + ACTIONS(4169), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4171), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4173), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4175), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4177), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4227), 1, anon_sym_DOT_DOT, - ACTIONS(4120), 2, + ACTIONS(4165), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4179), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4187), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4229), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1709), 2, + STATE(1748), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4167), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4348), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(4138), 4, + ACTIONS(4185), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4127), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152832,62 +158426,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41731] = 22, + anon_sym_SQUOTE, + [41909] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4246), 1, + ACTIONS(4133), 1, + anon_sym_EQ, + ACTIONS(4169), 1, anon_sym_CARET, - ACTIONS(4248), 1, + ACTIONS(4171), 1, anon_sym_AMP, - ACTIONS(4250), 1, + ACTIONS(4173), 1, anon_sym_PIPE, - ACTIONS(4252), 1, + ACTIONS(4175), 1, anon_sym_AMP_AMP, - ACTIONS(4254), 1, + ACTIONS(4177), 1, anon_sym_PIPE_PIPE, - ACTIONS(4260), 1, - anon_sym_EQ, - ACTIONS(4286), 1, + ACTIONS(4227), 1, anon_sym_DOT_DOT, - ACTIONS(4242), 2, + ACTIONS(4165), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4256), 2, + ACTIONS(4179), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4264), 2, + ACTIONS(4187), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4288), 2, + ACTIONS(4229), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1710), 2, + STATE(1749), 2, sym_line_comment, sym_block_comment, - ACTIONS(3912), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4244), 3, + ACTIONS(4167), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4262), 4, + ACTIONS(4185), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4258), 10, + ACTIONS(4131), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152898,60 +158491,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41819] = 21, + anon_sym_SQUOTE, + [41995] = 15, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4188), 1, - anon_sym_EQ, - ACTIONS(4246), 1, + ACTIONS(4169), 1, anon_sym_CARET, - ACTIONS(4248), 1, + ACTIONS(4171), 1, anon_sym_AMP, - ACTIONS(4250), 1, + ACTIONS(4173), 1, anon_sym_PIPE, - ACTIONS(4252), 1, - anon_sym_AMP_AMP, - ACTIONS(4254), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4286), 1, - anon_sym_DOT_DOT, - ACTIONS(4242), 2, + ACTIONS(4165), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4256), 2, + ACTIONS(4179), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4264), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4288), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1711), 2, + STATE(1750), 2, sym_line_comment, sym_block_comment, - ACTIONS(4244), 3, + ACTIONS(4167), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4262), 4, + ACTIONS(3907), 4, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3905), 21, + anon_sym_LPAREN, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4186), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [42069] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1751), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3697), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3695), 24, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152962,18 +158592,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [41905] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + [42123] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4350), 1, - anon_sym_DASH_GT, - STATE(1712), 2, + STATE(1752), 2, sym_line_comment, sym_block_comment, - ACTIONS(3778), 15, + ACTIONS(3701), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152989,7 +158624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3776), 23, + ACTIONS(3699), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153012,18 +158647,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [41961] = 6, + [42177] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4352), 1, - anon_sym_COLON_COLON, - STATE(1713), 2, + ACTIONS(4283), 1, + anon_sym_DASH_GT, + STATE(1753), 2, sym_line_comment, sym_block_comment, - ACTIONS(3477), 15, + ACTIONS(3671), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153039,7 +158675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3475), 23, + ACTIONS(3669), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153063,60 +158699,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42017] = 21, + [42233] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4148), 1, - anon_sym_EQ, - ACTIONS(4246), 1, + ACTIONS(4169), 1, anon_sym_CARET, - ACTIONS(4248), 1, + ACTIONS(4171), 1, anon_sym_AMP, - ACTIONS(4250), 1, + ACTIONS(4173), 1, anon_sym_PIPE, - ACTIONS(4252), 1, + ACTIONS(4175), 1, anon_sym_AMP_AMP, - ACTIONS(4254), 1, + ACTIONS(4177), 1, anon_sym_PIPE_PIPE, - ACTIONS(4286), 1, + ACTIONS(4183), 1, + anon_sym_EQ, + ACTIONS(4227), 1, anon_sym_DOT_DOT, - ACTIONS(4242), 2, + ACTIONS(4165), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4256), 2, + ACTIONS(4179), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4264), 2, + ACTIONS(4187), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4288), 2, + ACTIONS(4229), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1714), 2, + STATE(1754), 2, sym_line_comment, sym_block_comment, - ACTIONS(4244), 3, + ACTIONS(4035), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4167), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4262), 4, + ACTIONS(4185), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4146), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4181), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153127,44 +158765,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [42103] = 12, + [42321] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4354), 1, - anon_sym_LBRACK, - ACTIONS(4360), 1, - anon_sym_QMARK, - ACTIONS(4364), 1, - anon_sym_DOT, - ACTIONS(4366), 1, - anon_sym_as, - ACTIONS(4356), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4362), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1715), 2, + ACTIONS(4285), 1, + anon_sym_LPAREN, + STATE(1985), 1, + sym_arguments, + STATE(1755), 2, sym_line_comment, sym_block_comment, - ACTIONS(4358), 3, + ACTIONS(3711), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3876), 7, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3874), 20, - anon_sym_LPAREN, + ACTIONS(3707), 22, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -153183,62 +158815,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [42170] = 23, + anon_sym_as, + [42379] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + STATE(1756), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1345), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4368), 1, - anon_sym_RBRACE, - ACTIONS(4370), 1, - anon_sym_COMMA, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1716), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1343), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153249,62 +158857,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42259] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + anon_sym_else, + [42433] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(287), 1, - anon_sym_RBRACE, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4095), 1, + anon_sym_EQ, + ACTIONS(4169), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4171), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4173), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4175), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4177), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4227), 1, anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, + ACTIONS(4165), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4179), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4187), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4229), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1717), 2, + STATE(1757), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4167), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4185), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4093), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153315,15 +158929,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42348] = 5, + anon_sym_SQUOTE, + [42519] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1718), 2, + STATE(1758), 2, sym_line_comment, sym_block_comment, - ACTIONS(3682), 15, + ACTIONS(1363), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153339,7 +158954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3678), 23, + ACTIONS(1361), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153363,15 +158978,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42401] = 5, + [42572] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1719), 2, + STATE(1759), 2, sym_line_comment, sym_block_comment, - ACTIONS(3968), 15, + ACTIONS(4041), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153387,7 +159002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3966), 23, + ACTIONS(4039), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153411,15 +159026,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42454] = 5, + [42625] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1720), 2, + STATE(1760), 2, sym_line_comment, sym_block_comment, - ACTIONS(3832), 15, + ACTIONS(4045), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153435,7 +159050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3830), 23, + ACTIONS(4043), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153459,20 +159074,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42507] = 5, + [42678] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1721), 2, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_AMP, + ACTIONS(4075), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4159), 1, + anon_sym_DOT_DOT, + ACTIONS(4287), 1, + anon_sym_SEMI, + ACTIONS(4289), 1, + anon_sym_else, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4087), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1761), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, - anon_sym_PLUS, + ACTIONS(4059), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4109), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [42767] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4291), 2, + anon_sym_PLUS, anon_sym_DASH, + STATE(1762), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4293), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3907), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -153481,13 +159172,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 23, + ACTIONS(3905), 20, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -153506,16 +159194,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + [42832] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, anon_sym_as, - [42560] = 5, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_AMP, + ACTIONS(4075), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4159), 1, + anon_sym_DOT_DOT, + ACTIONS(4295), 1, + anon_sym_RPAREN, + ACTIONS(4297), 1, + anon_sym_COMMA, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4087), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1763), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4059), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4109), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [42921] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1722), 2, + STATE(1764), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(3805), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153531,7 +159284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 23, + ACTIONS(3803), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153555,62 +159308,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42613] = 23, + [42974] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(289), 1, - anon_sym_RBRACE, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4169), 1, + anon_sym_CARET, + ACTIONS(4171), 1, + anon_sym_AMP, + ACTIONS(4173), 1, + anon_sym_PIPE, + ACTIONS(4177), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4183), 1, + anon_sym_EQ, + ACTIONS(4189), 1, + anon_sym_DOT_DOT, + ACTIONS(4301), 1, + anon_sym_AMP_AMP, + ACTIONS(4165), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4179), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4187), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4191), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4299), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(1765), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4167), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4185), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4181), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [43061] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4129), 1, + anon_sym_EQ, + ACTIONS(4303), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4305), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4307), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4309), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4311), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4319), 1, + anon_sym_DOT_DOT, + ACTIONS(4291), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4313), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4317), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4321), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1766), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4293), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4315), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4127), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [43146] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4133), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4303), 1, + anon_sym_CARET, + ACTIONS(4305), 1, + anon_sym_AMP, + ACTIONS(4307), 1, + anon_sym_PIPE, + ACTIONS(4309), 1, + anon_sym_AMP_AMP, + ACTIONS(4311), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4319), 1, anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, + ACTIONS(4291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4313), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4317), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4321), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1723), 2, + STATE(1767), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4293), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4315), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4131), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153621,15 +159501,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42702] = 5, + [43231] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1724), 2, + STATE(1768), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 15, + ACTIONS(3801), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153645,7 +159525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4094), 23, + ACTIONS(3799), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153669,63 +159549,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42755] = 5, + [43284] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1725), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4088), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4086), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [42808] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1726), 2, + STATE(1769), 2, sym_line_comment, sym_block_comment, - ACTIONS(4044), 15, + ACTIONS(3967), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153741,7 +159573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4042), 23, + ACTIONS(3965), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153765,62 +159597,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42861] = 23, + [43337] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1331), 1, + ACTIONS(973), 1, anon_sym_RPAREN, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4374), 1, + ACTIONS(4297), 1, anon_sym_COMMA, - ACTIONS(4120), 2, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1727), 2, + STATE(1770), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153831,35 +159663,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42950] = 5, + [43426] = 15, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1728), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3956), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4303), 1, anon_sym_CARET, + ACTIONS(4305), 1, anon_sym_AMP, + ACTIONS(4307), 1, anon_sym_PIPE, + ACTIONS(4291), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4313), 2, anon_sym_LT_LT, anon_sym_GT_GT, + STATE(1771), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4293), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3907), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3954), 23, + ACTIONS(3905), 20, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -153878,16 +159721,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [43003] = 5, + [43499] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1729), 2, + STATE(1772), 2, sym_line_comment, sym_block_comment, - ACTIONS(3960), 15, + ACTIONS(3469), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153903,7 +159745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3958), 23, + ACTIONS(3467), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153927,15 +159769,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43056] = 5, + [43552] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1730), 2, + STATE(1773), 2, sym_line_comment, sym_block_comment, - ACTIONS(3972), 15, + ACTIONS(3899), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153951,7 +159793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3970), 23, + ACTIONS(3897), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153975,21 +159817,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43109] = 8, + [43605] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4354), 1, - anon_sym_LBRACK, - ACTIONS(4360), 1, - anon_sym_QMARK, - ACTIONS(4364), 1, - anon_sym_DOT, - STATE(1731), 2, + STATE(1774), 2, sym_line_comment, sym_block_comment, - ACTIONS(3906), 14, + ACTIONS(1399), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154003,10 +159839,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3904), 21, + ACTIONS(1397), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -154026,15 +159865,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43168] = 5, + [43658] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1732), 2, + STATE(1775), 2, sym_line_comment, sym_block_comment, - ACTIONS(4056), 15, + ACTIONS(3825), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154050,7 +159889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4054), 23, + ACTIONS(3823), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154074,15 +159913,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43221] = 5, + [43711] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1733), 2, + STATE(1776), 2, sym_line_comment, sym_block_comment, - ACTIONS(4080), 15, + ACTIONS(3829), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154098,7 +159937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4078), 23, + ACTIONS(3827), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154122,21 +159961,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43274] = 8, + [43764] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4354), 1, - anon_sym_LBRACK, - ACTIONS(4360), 1, - anon_sym_QMARK, - ACTIONS(4364), 1, - anon_sym_DOT, - STATE(1734), 2, + STATE(1777), 2, sym_line_comment, sym_block_comment, - ACTIONS(3922), 14, + ACTIONS(3749), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154150,10 +159983,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3920), 21, + ACTIONS(3747), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -154173,15 +160009,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43333] = 5, + [43817] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1735), 2, + STATE(1778), 2, sym_line_comment, sym_block_comment, - ACTIONS(3926), 15, + ACTIONS(3837), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154197,7 +160033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3924), 23, + ACTIONS(3835), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154221,37 +160057,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43386] = 5, + [43870] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1736), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4048), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_AMP, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4159), 1, + anon_sym_DOT_DOT, + ACTIONS(4323), 1, + anon_sym_SEMI, + ACTIONS(4325), 1, + anon_sym_else, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4046), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1779), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4059), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154262,44 +160123,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [43439] = 5, + [43959] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1737), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4052), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(299), 1, + anon_sym_RBRACE, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_AMP, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4159), 1, + anon_sym_DOT_DOT, + ACTIONS(4327), 1, + anon_sym_SEMI, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4050), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1780), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4059), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154310,22 +160189,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [43492] = 5, + [44048] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1738), 2, + STATE(1781), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 15, + ACTIONS(3745), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154341,7 +160213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4034), 23, + ACTIONS(3743), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154365,79 +160237,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43545] = 21, + [44101] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(4331), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(4333), 1, anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4246), 1, - anon_sym_CARET, - ACTIONS(4248), 1, - anon_sym_AMP, - ACTIONS(4250), 1, - anon_sym_PIPE, - ACTIONS(4254), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4260), 1, - anon_sym_EQ, - ACTIONS(4266), 1, - anon_sym_DOT_DOT, - ACTIONS(4242), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4256), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4264), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4268), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1739), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4244), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4376), 3, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - ACTIONS(4262), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4258), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [43630] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1740), 2, + STATE(1782), 2, sym_line_comment, sym_block_comment, - ACTIONS(3964), 15, + ACTIONS(3759), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154451,13 +160265,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3962), 23, + ACTIONS(3755), 21, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -154477,62 +160288,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43683] = 23, + [44160] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(776), 1, + anon_sym_RPAREN, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4378), 1, - anon_sym_SEMI, - ACTIONS(4380), 1, - anon_sym_else, - ACTIONS(4120), 2, + ACTIONS(4297), 1, + anon_sym_COMMA, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1741), 2, + STATE(1783), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154543,61 +160354,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43772] = 22, + [44249] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + STATE(1784), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4017), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4382), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1742), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4015), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154608,56 +160395,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43859] = 19, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [44302] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4354), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(4360), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(4364), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(4366), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4384), 1, + ACTIONS(4303), 1, anon_sym_CARET, - ACTIONS(4386), 1, + ACTIONS(4305), 1, anon_sym_AMP, - ACTIONS(4388), 1, + ACTIONS(4307), 1, anon_sym_PIPE, - ACTIONS(4390), 1, + ACTIONS(4309), 1, anon_sym_AMP_AMP, - ACTIONS(4392), 1, + ACTIONS(4311), 1, anon_sym_PIPE_PIPE, - ACTIONS(399), 2, + ACTIONS(4141), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4356), 2, + ACTIONS(4291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4362), 2, + ACTIONS(4313), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4396), 2, + ACTIONS(4317), 2, anon_sym_GT, anon_sym_LT, - STATE(1743), 2, + STATE(1785), 2, sym_line_comment, sym_block_comment, - ACTIONS(4358), 3, + ACTIONS(4293), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4394), 4, + ACTIONS(4315), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(397), 14, + ACTIONS(4139), 14, anon_sym_LPAREN, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154670,15 +160464,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [43940] = 5, + [44383] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1744), 2, + STATE(1786), 2, sym_line_comment, sym_block_comment, - ACTIONS(3868), 15, + ACTIONS(3913), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154694,7 +160488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3866), 23, + ACTIONS(3911), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154718,15 +160512,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43993] = 5, + [44436] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1745), 2, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4331), 1, + anon_sym_QMARK, + ACTIONS(4333), 1, + anon_sym_DOT, + STATE(1787), 2, sym_line_comment, sym_block_comment, - ACTIONS(3477), 15, + ACTIONS(3793), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154740,13 +160540,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3475), 23, + ACTIONS(3791), 21, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -154766,60 +160563,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44046] = 21, + [44495] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(4354), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(4360), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(4364), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(4366), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4384), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4386), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4388), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4390), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4392), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4356), 2, + ACTIONS(4335), 1, + anon_sym_SEMI, + ACTIONS(4337), 1, + anon_sym_else, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4362), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4396), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4400), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1746), 2, + STATE(1788), 2, sym_line_comment, sym_block_comment, - ACTIONS(4358), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4394), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(341), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154830,37 +160629,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44131] = 5, + [44584] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1747), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3976), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_AMP, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4159), 1, + anon_sym_DOT_DOT, + ACTIONS(4327), 1, + anon_sym_SEMI, + ACTIONS(4339), 1, + anon_sym_RBRACE, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3974), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1789), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4059), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154871,67 +160695,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [44184] = 21, + [44673] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4148), 1, - anon_sym_EQ, - ACTIONS(4354), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(4360), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(4364), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(4366), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4384), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4386), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4388), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4390), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4392), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4356), 2, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4362), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4396), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4400), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1748), 2, + ACTIONS(4341), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1790), 2, sym_line_comment, sym_block_comment, - ACTIONS(4358), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4394), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4146), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154942,60 +160760,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44269] = 21, + [44760] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4136), 1, - anon_sym_EQ, - ACTIONS(4354), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(4360), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(4364), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(4366), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4384), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4386), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4388), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4390), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4392), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4356), 2, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4362), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4396), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4400), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1749), 2, + ACTIONS(4343), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1791), 2, sym_line_comment, sym_block_comment, - ACTIONS(4358), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4394), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4118), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155006,61 +160825,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44354] = 22, + [44847] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4406), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4408), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4410), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4412), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4414), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4420), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4426), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(3936), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4402), 2, + ACTIONS(4297), 1, + anon_sym_COMMA, + ACTIONS(4345), 1, + anon_sym_RPAREN, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4416), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4424), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4428), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1750), 2, + STATE(1792), 2, sym_line_comment, sym_block_comment, - ACTIONS(4404), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4422), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4418), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155071,85 +160891,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44441] = 5, + [44936] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1751), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3934), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4169), 1, anon_sym_CARET, + ACTIONS(4171), 1, anon_sym_AMP, + ACTIONS(4173), 1, anon_sym_PIPE, + ACTIONS(4177), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4183), 1, + anon_sym_EQ, + ACTIONS(4189), 1, + anon_sym_DOT_DOT, + ACTIONS(4165), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4179), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4187), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3932), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [44494] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1752), 2, + STATE(1793), 2, sym_line_comment, sym_block_comment, - ACTIONS(4068), 15, - anon_sym_PLUS, + ACTIONS(4167), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4066), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + ACTIONS(4347), 3, + anon_sym_LBRACE, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_SQUOTE, + ACTIONS(4185), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4181), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155160,44 +160955,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [44547] = 5, + [45021] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1753), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4100), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4303), 1, anon_sym_CARET, + ACTIONS(4305), 1, anon_sym_AMP, + ACTIONS(4307), 1, anon_sym_PIPE, + ACTIONS(4309), 1, + anon_sym_AMP_AMP, + ACTIONS(4311), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4319), 1, + anon_sym_DOT_DOT, + ACTIONS(4351), 1, + anon_sym_EQ, + ACTIONS(3811), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4291), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4313), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4317), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4098), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4321), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1794), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4293), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4315), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4349), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155208,44 +161020,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [44600] = 5, + [45108] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1754), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4032), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4303), 1, anon_sym_CARET, + ACTIONS(4305), 1, anon_sym_AMP, + ACTIONS(4307), 1, anon_sym_PIPE, + ACTIONS(4309), 1, + anon_sym_AMP_AMP, + ACTIONS(4311), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4319), 1, + anon_sym_DOT_DOT, + ACTIONS(4351), 1, + anon_sym_EQ, + ACTIONS(3779), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4291), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4313), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4317), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4030), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4321), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1795), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4293), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4315), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4349), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155256,44 +161085,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [44653] = 5, + [45195] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1755), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3998), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_AMP, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4159), 1, + anon_sym_DOT_DOT, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3996), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4353), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1796), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4059), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155304,22 +161150,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [44706] = 5, + [45282] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1756), 2, + STATE(1797), 2, sym_line_comment, sym_block_comment, - ACTIONS(4006), 15, + ACTIONS(3993), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155335,7 +161174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4004), 23, + ACTIONS(3991), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155359,37 +161198,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44759] = 5, + [45335] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1757), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3388), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_AMP, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4159), 1, + anon_sym_DOT_DOT, + ACTIONS(4355), 1, + anon_sym_SEMI, + ACTIONS(4357), 1, + anon_sym_else, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3390), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1798), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4059), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155400,22 +161264,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [44812] = 5, + [45424] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1758), 2, + STATE(1799), 2, sym_line_comment, sym_block_comment, - ACTIONS(3938), 15, + ACTIONS(3917), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155431,7 +161288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3936), 23, + ACTIONS(3915), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155455,15 +161312,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44865] = 5, + [45477] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1759), 2, + STATE(1800), 2, sym_line_comment, sym_block_comment, - ACTIONS(3515), 15, + ACTIONS(3931), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155479,7 +161336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3513), 23, + ACTIONS(3929), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155503,15 +161360,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44918] = 5, + [45530] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1760), 2, + STATE(1801), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(3711), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155527,7 +161384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 23, + ACTIONS(3707), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155551,15 +161408,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44971] = 5, + [45583] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1761), 2, + STATE(1802), 2, sym_line_comment, sym_block_comment, - ACTIONS(3942), 15, + ACTIONS(4049), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155575,7 +161432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3940), 23, + ACTIONS(4047), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155599,15 +161456,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45024] = 5, + [45636] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1762), 2, + STATE(1803), 2, sym_line_comment, sym_block_comment, - ACTIONS(3519), 15, + ACTIONS(4053), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155623,7 +161480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3517), 23, + ACTIONS(4051), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155647,37 +161504,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45077] = 5, + [45689] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1763), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4072), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_AMP, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4159), 1, + anon_sym_DOT_DOT, + ACTIONS(4359), 1, + anon_sym_SEMI, + ACTIONS(4361), 1, + anon_sym_else, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4070), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1804), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4059), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155688,88 +161570,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [45130] = 17, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4314), 1, - sym_identifier, - ACTIONS(4316), 1, - anon_sym_LBRACE, - ACTIONS(4320), 1, - anon_sym_STAR, - ACTIONS(4326), 1, - anon_sym_COLON_COLON, - ACTIONS(4330), 1, - sym_metavariable, - ACTIONS(4430), 1, - anon_sym_RBRACE, - STATE(2562), 1, - sym_scoped_identifier, - STATE(3468), 1, - sym__use_clause, - STATE(3653), 1, - sym_generic_type_with_turbofish, - STATE(3666), 1, - sym_bracketed_type, - STATE(1764), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4328), 3, - sym_self, - sym_super, - sym_crate, - STATE(3067), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4322), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [45207] = 8, + [45778] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4354), 1, - anon_sym_LBRACK, - ACTIONS(4360), 1, - anon_sym_QMARK, - ACTIONS(4364), 1, - anon_sym_DOT, - STATE(1765), 2, + STATE(1805), 2, sym_line_comment, sym_block_comment, - ACTIONS(3994), 14, + ACTIONS(3753), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155783,10 +161592,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3992), 21, + ACTIONS(3751), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -155806,61 +161618,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45266] = 22, + [45831] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4406), 1, + STATE(1806), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3767), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4408), 1, anon_sym_AMP, - ACTIONS(4410), 1, anon_sym_PIPE, - ACTIONS(4412), 1, - anon_sym_AMP_AMP, - ACTIONS(4414), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4420), 1, - anon_sym_EQ, - ACTIONS(4426), 1, - anon_sym_DOT_DOT, - ACTIONS(3912), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4402), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4416), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4424), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4428), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1766), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4404), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4422), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4418), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3765), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155871,60 +161659,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45353] = 21, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [45884] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4188), 1, - anon_sym_EQ, - ACTIONS(4406), 1, + STATE(1807), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4033), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4408), 1, anon_sym_AMP, - ACTIONS(4410), 1, anon_sym_PIPE, - ACTIONS(4412), 1, - anon_sym_AMP_AMP, - ACTIONS(4414), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4426), 1, - anon_sym_DOT_DOT, - ACTIONS(4402), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4416), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4424), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4428), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1767), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4404), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4422), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4186), 12, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4031), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155935,61 +161707,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45438] = 22, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [45937] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + STATE(1808), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3895), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4432), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1768), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3893), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156000,61 +161755,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45525] = 22, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [45990] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(303), 1, + anon_sym_RBRACE, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4120), 2, + ACTIONS(4327), 1, + anon_sym_SEMI, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4434), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1769), 2, + STATE(1809), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156065,29 +161828,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45612] = 10, + [46079] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - STATE(1770), 2, + STATE(1810), 2, sym_line_comment, sym_block_comment, - ACTIONS(4404), 3, + ACTIONS(3781), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3876), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -156096,10 +161850,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3874), 20, + ACTIONS(3779), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -156118,44 +161875,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [45675] = 13, + anon_sym_as, + [46132] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4408), 1, - anon_sym_AMP, - ACTIONS(4402), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4416), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1771), 2, + STATE(1811), 2, sym_line_comment, sym_block_comment, - ACTIONS(4404), 3, + ACTIONS(1399), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3876), 6, anon_sym_CARET, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3874), 20, + ACTIONS(1397), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -156174,45 +161923,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [45744] = 12, + anon_sym_as, + [46185] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4402), 2, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_AMP, + ACTIONS(4075), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4159), 1, + anon_sym_DOT_DOT, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4416), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1772), 2, + ACTIONS(4087), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4363), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(1812), 2, sym_line_comment, sym_block_comment, - ACTIONS(4404), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3876), 7, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3874), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156223,51 +161989,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [45811] = 14, + [46272] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4406), 1, - anon_sym_CARET, - ACTIONS(4408), 1, - anon_sym_AMP, - ACTIONS(4402), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4416), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1773), 2, + STATE(1813), 2, sym_line_comment, sym_block_comment, - ACTIONS(4404), 3, + ACTIONS(3785), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3876), 5, + anon_sym_CARET, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3874), 20, + ACTIONS(3783), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -156286,54 +162036,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [45882] = 17, + anon_sym_as, + [46325] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4406), 1, + ACTIONS(4303), 1, anon_sym_CARET, - ACTIONS(4408), 1, + ACTIONS(4305), 1, anon_sym_AMP, - ACTIONS(4410), 1, + ACTIONS(4307), 1, anon_sym_PIPE, - ACTIONS(3876), 2, + ACTIONS(4309), 1, + anon_sym_AMP_AMP, + ACTIONS(4311), 1, + anon_sym_PIPE_PIPE, + ACTIONS(405), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4402), 2, + ACTIONS(4291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4416), 2, + ACTIONS(4313), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4424), 2, + ACTIONS(4317), 2, anon_sym_GT, anon_sym_LT, - STATE(1774), 2, + STATE(1814), 2, sym_line_comment, sym_block_comment, - ACTIONS(4404), 3, + ACTIONS(4293), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4422), 4, + ACTIONS(4315), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3874), 16, + ACTIONS(403), 14, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156346,55 +162099,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [45959] = 18, + [46406] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(367), 1, + anon_sym_EQ, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4406), 1, + ACTIONS(4303), 1, anon_sym_CARET, - ACTIONS(4408), 1, + ACTIONS(4305), 1, anon_sym_AMP, - ACTIONS(4410), 1, + ACTIONS(4307), 1, anon_sym_PIPE, - ACTIONS(4412), 1, + ACTIONS(4309), 1, anon_sym_AMP_AMP, - ACTIONS(3876), 2, - anon_sym_EQ, + ACTIONS(4311), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4319), 1, anon_sym_DOT_DOT, - ACTIONS(4402), 2, + ACTIONS(4291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4416), 2, + ACTIONS(4313), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4424), 2, + ACTIONS(4317), 2, anon_sym_GT, anon_sym_LT, - STATE(1775), 2, + ACTIONS(4321), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1815), 2, sym_line_comment, sym_block_comment, - ACTIONS(4404), 3, + ACTIONS(4293), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4422), 4, + ACTIONS(4315), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3874), 15, + ACTIONS(363), 12, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156405,46 +162163,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [46038] = 11, + [46491] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4402), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1776), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4404), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3876), 9, + ACTIONS(4303), 1, anon_sym_CARET, + ACTIONS(4305), 1, anon_sym_AMP, + ACTIONS(4307), 1, anon_sym_PIPE, + ACTIONS(4309), 1, + anon_sym_AMP_AMP, + ACTIONS(4311), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4351), 1, + anon_sym_EQ, + ACTIONS(4365), 1, + anon_sym_LBRACE, + ACTIONS(4367), 1, + anon_sym_DOT_DOT, + STATE(513), 1, + sym_match_block, + ACTIONS(4291), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4313), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4317), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3874), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4369), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1816), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4293), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4315), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4349), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156455,64 +162229,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [46103] = 21, + [46580] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4192), 1, + ACTIONS(4083), 1, anon_sym_EQ, - ACTIONS(4406), 1, + ACTIONS(4303), 1, anon_sym_CARET, - ACTIONS(4408), 1, + ACTIONS(4305), 1, anon_sym_AMP, - ACTIONS(4410), 1, + ACTIONS(4307), 1, anon_sym_PIPE, - ACTIONS(4412), 1, + ACTIONS(4309), 1, anon_sym_AMP_AMP, - ACTIONS(4414), 1, + ACTIONS(4311), 1, anon_sym_PIPE_PIPE, - ACTIONS(4426), 1, + ACTIONS(4319), 1, anon_sym_DOT_DOT, - ACTIONS(4402), 2, + ACTIONS(4291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4416), 2, + ACTIONS(4313), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4424), 2, + ACTIONS(4317), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4428), 2, + ACTIONS(4321), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1777), 2, + STATE(1817), 2, sym_line_comment, sym_block_comment, - ACTIONS(4404), 3, + ACTIONS(4293), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4422), 4, + ACTIONS(4315), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4190), 12, + ACTIONS(4067), 12, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -156525,58 +162293,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46188] = 21, + [46665] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4196), 1, + ACTIONS(4101), 1, anon_sym_EQ, - ACTIONS(4406), 1, + ACTIONS(4303), 1, anon_sym_CARET, - ACTIONS(4408), 1, + ACTIONS(4305), 1, anon_sym_AMP, - ACTIONS(4410), 1, + ACTIONS(4307), 1, anon_sym_PIPE, - ACTIONS(4412), 1, + ACTIONS(4309), 1, anon_sym_AMP_AMP, - ACTIONS(4414), 1, + ACTIONS(4311), 1, anon_sym_PIPE_PIPE, - ACTIONS(4426), 1, + ACTIONS(4319), 1, anon_sym_DOT_DOT, - ACTIONS(4402), 2, + ACTIONS(4291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4416), 2, + ACTIONS(4313), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4424), 2, + ACTIONS(4317), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4428), 2, + ACTIONS(4321), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1778), 2, + STATE(1818), 2, sym_line_comment, sym_block_comment, - ACTIONS(4404), 3, + ACTIONS(4293), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4422), 4, + ACTIONS(4315), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4194), 12, + ACTIONS(4099), 12, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -156589,46 +162357,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46273] = 15, + [46750] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(305), 1, + anon_sym_RBRACE, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4406), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4408), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4410), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4402), 2, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4159), 1, + anon_sym_DOT_DOT, + ACTIONS(4327), 1, + anon_sym_SEMI, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4416), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1779), 2, + ACTIONS(4087), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1819), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4059), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4109), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [46839] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1820), 2, sym_line_comment, sym_block_comment, - ACTIONS(4404), 3, + ACTIONS(3789), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3876), 4, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3874), 20, + ACTIONS(3787), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -156647,56 +162470,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [46346] = 19, + anon_sym_as, + [46892] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(4331), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(4333), 1, anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4406), 1, + STATE(1821), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4029), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4408), 1, anon_sym_AMP, - ACTIONS(4410), 1, anon_sym_PIPE, - ACTIONS(4412), 1, - anon_sym_AMP_AMP, - ACTIONS(4414), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4200), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4402), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4416), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4424), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1780), 2, + anon_sym_DOT_DOT, + ACTIONS(4027), 21, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [46951] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1822), 2, sym_line_comment, sym_block_comment, - ACTIONS(4404), 3, + ACTIONS(3947), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4422), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4198), 14, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3945), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156707,62 +162563,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [46427] = 21, + anon_sym_as, + [47004] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4246), 1, + STATE(1823), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3971), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4248), 1, anon_sym_AMP, - ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(4254), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4260), 1, - anon_sym_EQ, - ACTIONS(4266), 1, - anon_sym_DOT_DOT, - ACTIONS(4242), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4264), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4268), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3969), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1781), 2, + anon_sym_as, + [47057] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1824), 2, sym_line_comment, sym_block_comment, - ACTIONS(4244), 3, + ACTIONS(3987), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4436), 3, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3985), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, - anon_sym_SQUOTE, - ACTIONS(4262), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4258), 10, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156773,15 +162659,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46512] = 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [47110] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1782), 2, + STATE(1825), 2, sym_line_comment, sym_block_comment, - ACTIONS(3804), 15, + ACTIONS(3821), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156797,7 +162690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3802), 23, + ACTIONS(3819), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156821,15 +162714,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46565] = 5, + [47163] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1783), 2, + STATE(1826), 2, sym_line_comment, sym_block_comment, - ACTIONS(3808), 15, + ACTIONS(3943), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156845,7 +162738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3806), 23, + ACTIONS(3941), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156869,15 +162762,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46618] = 5, + [47216] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1784), 2, + STATE(1827), 2, sym_line_comment, sym_block_comment, - ACTIONS(3914), 15, + ACTIONS(1291), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156893,7 +162786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3912), 23, + ACTIONS(1293), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156917,15 +162810,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46671] = 5, + [47269] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1785), 2, + STATE(1828), 2, sym_line_comment, sym_block_comment, - ACTIONS(3824), 15, + ACTIONS(3809), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156941,7 +162834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3822), 23, + ACTIONS(3807), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156965,15 +162858,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46724] = 5, + [47322] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1786), 2, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_AMP, + ACTIONS(4075), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4159), 1, + anon_sym_DOT_DOT, + ACTIONS(4371), 1, + anon_sym_RPAREN, + ACTIONS(4373), 1, + anon_sym_COMMA, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4087), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1829), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4059), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4109), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [47411] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_AMP, + ACTIONS(4075), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4159), 1, + anon_sym_DOT_DOT, + ACTIONS(4327), 1, + anon_sym_SEMI, + ACTIONS(4375), 1, + anon_sym_RBRACE, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4087), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1830), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4059), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4109), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [47500] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1831), 2, sym_line_comment, sym_block_comment, - ACTIONS(3860), 15, + ACTIONS(1295), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156989,7 +163014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3858), 23, + ACTIONS(1297), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157013,15 +163038,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46777] = 5, + [47553] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1787), 2, + STATE(1832), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(3845), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157037,7 +163062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 23, + ACTIONS(3843), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157061,61 +163086,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46830] = 22, + [47606] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(812), 1, + anon_sym_RPAREN, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4406), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4408), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4410), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4412), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4414), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4420), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4426), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4058), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4402), 2, + ACTIONS(4297), 1, + anon_sym_COMMA, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4416), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4424), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4428), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1788), 2, + STATE(1833), 2, sym_line_comment, sym_block_comment, - ACTIONS(4404), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4422), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4418), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157126,62 +163152,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46917] = 23, + [47695] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(307), 1, + anon_sym_RBRACE, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4438), 1, - anon_sym_RPAREN, - ACTIONS(4440), 1, - anon_sym_COMMA, - ACTIONS(4120), 2, + ACTIONS(4327), 1, + anon_sym_SEMI, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1789), 2, + STATE(1834), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157192,15 +163218,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47006] = 5, + [47784] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1790), 2, + STATE(1835), 2, sym_line_comment, sym_block_comment, - ACTIONS(4104), 15, + ACTIONS(3855), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157216,7 +163242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4102), 23, + ACTIONS(3853), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157240,85 +163266,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47059] = 5, + [47837] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1791), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3882), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_AMP, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4159), 1, + anon_sym_DOT_DOT, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3880), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [47112] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1792), 2, + ACTIONS(4377), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1836), 2, sym_line_comment, sym_block_comment, - ACTIONS(3511), 15, - anon_sym_PLUS, + ACTIONS(4059), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3509), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157329,69 +163331,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [47165] = 23, + [47924] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4442), 1, + ACTIONS(4379), 1, anon_sym_SEMI, - ACTIONS(4444), 1, + ACTIONS(4381), 1, anon_sym_else, - ACTIONS(4120), 2, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1793), 2, + STATE(1837), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157402,85 +163397,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47254] = 5, + [48013] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1794), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3872), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(295), 1, + anon_sym_RBRACE, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_AMP, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4159), 1, + anon_sym_DOT_DOT, + ACTIONS(4327), 1, + anon_sym_SEMI, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3870), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [47307] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1795), 2, + STATE(1838), 2, sym_line_comment, sym_block_comment, - ACTIONS(3902), 15, - anon_sym_PLUS, + ACTIONS(4059), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3900), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157491,44 +163463,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [47360] = 5, + [48102] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1796), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4040), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_AMP, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4159), 1, + anon_sym_DOT_DOT, + ACTIONS(4327), 1, + anon_sym_SEMI, + ACTIONS(4383), 1, + anon_sym_RBRACE, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4038), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1839), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4059), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157539,22 +163529,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [47413] = 5, + [48191] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1797), 2, + STATE(1840), 2, sym_line_comment, sym_block_comment, - ACTIONS(4010), 15, + ACTIONS(3317), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157570,7 +163553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4008), 23, + ACTIONS(3319), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157594,61 +163577,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47466] = 22, + [48244] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4406), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4408), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4410), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4412), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4414), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4420), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4426), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(3966), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4402), 2, + ACTIONS(4385), 1, + anon_sym_RBRACE, + ACTIONS(4387), 1, + anon_sym_COMMA, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4416), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4424), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4428), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1798), 2, + STATE(1841), 2, sym_line_comment, sym_block_comment, - ACTIONS(4404), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4422), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4418), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157659,15 +163643,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47553] = 5, + [48333] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1799), 2, + STATE(1842), 2, sym_line_comment, sym_block_comment, - ACTIONS(3846), 15, + ACTIONS(1505), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157683,7 +163667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3844), 23, + ACTIONS(1507), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157707,15 +163691,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47606] = 5, + [48386] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1800), 2, + STATE(1843), 2, sym_line_comment, sym_block_comment, - ACTIONS(3864), 15, + ACTIONS(1359), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157731,7 +163715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3862), 23, + ACTIONS(1357), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157755,15 +163739,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47659] = 5, + [48439] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1801), 2, + STATE(1844), 2, sym_line_comment, sym_block_comment, - ACTIONS(3930), 15, + ACTIONS(4001), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157779,7 +163763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3928), 23, + ACTIONS(3999), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157803,15 +163787,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47712] = 5, + [48492] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1802), 2, + STATE(1845), 2, sym_line_comment, sym_block_comment, - ACTIONS(3886), 15, + ACTIONS(1367), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157827,7 +163811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3884), 23, + ACTIONS(1365), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157851,15 +163835,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47765] = 5, + [48545] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1803), 2, + STATE(1846), 2, sym_line_comment, sym_block_comment, - ACTIONS(3890), 15, + ACTIONS(1371), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157875,7 +163859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3888), 23, + ACTIONS(1369), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157899,37 +163883,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47818] = 5, + [48598] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1804), 2, + ACTIONS(311), 1, + anon_sym_RBRACE, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_AMP, + ACTIONS(4075), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4159), 1, + anon_sym_DOT_DOT, + ACTIONS(4327), 1, + anon_sym_SEMI, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4087), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1847), 2, sym_line_comment, sym_block_comment, - ACTIONS(3894), 15, - anon_sym_PLUS, + ACTIONS(4059), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4109), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [48687] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4303), 1, anon_sym_CARET, + ACTIONS(4305), 1, anon_sym_AMP, + ACTIONS(4307), 1, anon_sym_PIPE, + ACTIONS(4309), 1, + anon_sym_AMP_AMP, + ACTIONS(4311), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4351), 1, + anon_sym_EQ, + ACTIONS(4367), 1, + anon_sym_DOT_DOT, + ACTIONS(4389), 1, + anon_sym_LBRACE, + STATE(435), 1, + sym_match_block, + ACTIONS(4291), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4313), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4317), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3892), 23, - anon_sym_LPAREN, + ACTIONS(4369), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1848), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4293), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4315), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4349), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [48776] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3757), 1, anon_sym_LBRACK, - anon_sym_EQ_GT, + ACTIONS(3761), 1, anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4303), 1, + anon_sym_CARET, + ACTIONS(4305), 1, + anon_sym_AMP, + ACTIONS(4307), 1, + anon_sym_PIPE, + ACTIONS(4309), 1, anon_sym_AMP_AMP, + ACTIONS(4311), 1, anon_sym_PIPE_PIPE, + ACTIONS(4351), 1, + anon_sym_EQ, + ACTIONS(4367), 1, + anon_sym_DOT_DOT, + ACTIONS(4391), 1, + anon_sym_LBRACE, + STATE(1891), 1, + sym_match_block, + ACTIONS(4291), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4313), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4317), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4369), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1849), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4293), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4315), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4349), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157940,22 +164081,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + [48865] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(313), 1, + anon_sym_RBRACE, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_AMP, + ACTIONS(4075), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4159), 1, + anon_sym_DOT_DOT, + ACTIONS(4327), 1, + anon_sym_SEMI, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4087), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1850), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4059), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [47871] = 5, + ACTIONS(4109), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [48954] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1805), 2, + STATE(1851), 2, sym_line_comment, sym_block_comment, - ACTIONS(3898), 15, + ACTIONS(1375), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157971,7 +164171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3896), 23, + ACTIONS(1373), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157995,15 +164195,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47924] = 5, + [49007] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1806), 2, + STATE(1852), 2, sym_line_comment, sym_block_comment, - ACTIONS(3910), 15, + ACTIONS(1461), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158019,7 +164219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3908), 23, + ACTIONS(1459), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158043,15 +164243,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47977] = 5, + [49060] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1807), 2, + STATE(1853), 2, sym_line_comment, sym_block_comment, - ACTIONS(4112), 15, + ACTIONS(3797), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158067,7 +164267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4110), 23, + ACTIONS(3795), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158091,37 +164291,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48030] = 5, + [49113] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1808), 2, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_AMP, + ACTIONS(4075), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4159), 1, + anon_sym_DOT_DOT, + ACTIONS(4393), 1, + anon_sym_SEMI, + ACTIONS(4395), 1, + anon_sym_else, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4087), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1854), 2, sym_line_comment, sym_block_comment, - ACTIONS(3980), 15, - anon_sym_PLUS, + ACTIONS(4059), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4109), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [49202] = 19, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4331), 1, + anon_sym_QMARK, + ACTIONS(4333), 1, + anon_sym_DOT, + ACTIONS(4401), 1, anon_sym_CARET, + ACTIONS(4403), 1, anon_sym_AMP, + ACTIONS(4405), 1, anon_sym_PIPE, + ACTIONS(4407), 1, + anon_sym_AMP_AMP, + ACTIONS(4409), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4417), 1, + anon_sym_as, + ACTIONS(405), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4397), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4411), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4415), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3978), 23, + STATE(1855), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4399), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4413), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(403), 14, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158132,22 +164417,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [48083] = 5, + [49283] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1809), 2, + STATE(1856), 2, sym_line_comment, sym_block_comment, - ACTIONS(3990), 15, + ACTIONS(3476), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158163,7 +164443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3988), 23, + ACTIONS(3474), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158187,15 +164467,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48136] = 5, + [49336] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1810), 2, + STATE(1857), 2, sym_line_comment, sym_block_comment, - ACTIONS(1599), 15, + ACTIONS(4005), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158211,7 +164491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1601), 23, + ACTIONS(4003), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158235,15 +164515,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48189] = 5, + [49389] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1811), 2, + ACTIONS(315), 1, + anon_sym_RBRACE, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_AMP, + ACTIONS(4075), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4159), 1, + anon_sym_DOT_DOT, + ACTIONS(4327), 1, + anon_sym_SEMI, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4087), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1858), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4059), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4109), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [49478] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1859), 2, sym_line_comment, sym_block_comment, - ACTIONS(1495), 15, + ACTIONS(3935), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158259,7 +164605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1493), 23, + ACTIONS(3933), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158283,37 +164629,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48242] = 5, + [49531] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1812), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1511), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(858), 1, + anon_sym_RPAREN, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_AMP, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4159), 1, + anon_sym_DOT_DOT, + ACTIONS(4297), 1, + anon_sym_COMMA, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1509), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1860), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4059), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158324,44 +164695,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [48295] = 5, + [49620] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1813), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1515), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_AMP, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4159), 1, + anon_sym_DOT_DOT, + ACTIONS(4327), 1, + anon_sym_SEMI, + ACTIONS(4419), 1, + anon_sym_RBRACE, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1513), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1861), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4059), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158372,22 +164761,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [48348] = 5, + [49709] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1814), 2, + STATE(1862), 2, sym_line_comment, sym_block_comment, - ACTIONS(1523), 15, + ACTIONS(3859), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158403,7 +164785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1521), 23, + ACTIONS(3857), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158427,15 +164809,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48401] = 5, + [49762] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1815), 2, + STATE(1863), 2, sym_line_comment, sym_block_comment, - ACTIONS(1549), 15, + ACTIONS(3771), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158451,7 +164833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1547), 23, + ACTIONS(3769), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158475,62 +164857,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48454] = 23, + [49815] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4446), 1, - anon_sym_RBRACE, - ACTIONS(4120), 2, + ACTIONS(3811), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1816), 2, + STATE(1864), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158541,61 +164922,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48543] = 22, + [49902] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(319), 1, + anon_sym_RBRACE, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(3936), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(4120), 2, + ACTIONS(4327), 1, + anon_sym_SEMI, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1817), 2, + STATE(1865), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158606,85 +164988,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48630] = 5, + [49991] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1818), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4018), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_AMP, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4159), 1, + anon_sym_DOT_DOT, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4016), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [48683] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1819), 2, + ACTIONS(4421), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1866), 2, sym_line_comment, sym_block_comment, - ACTIONS(1507), 15, - anon_sym_PLUS, + ACTIONS(4059), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1505), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158695,68 +165053,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [48736] = 22, + [50078] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(321), 1, + anon_sym_RBRACE, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(3912), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(4120), 2, + ACTIONS(4327), 1, + anon_sym_SEMI, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1820), 2, + STATE(1867), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158767,58 +165119,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48823] = 21, + [50167] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4188), 1, + ACTIONS(367), 1, anon_sym_EQ, - ACTIONS(4354), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(4360), 1, + ACTIONS(4331), 1, anon_sym_QMARK, - ACTIONS(4364), 1, + ACTIONS(4333), 1, anon_sym_DOT, - ACTIONS(4366), 1, - anon_sym_as, - ACTIONS(4384), 1, + ACTIONS(4401), 1, anon_sym_CARET, - ACTIONS(4386), 1, + ACTIONS(4403), 1, anon_sym_AMP, - ACTIONS(4388), 1, + ACTIONS(4405), 1, anon_sym_PIPE, - ACTIONS(4390), 1, + ACTIONS(4407), 1, anon_sym_AMP_AMP, - ACTIONS(4392), 1, + ACTIONS(4409), 1, anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, + ACTIONS(4417), 1, + anon_sym_as, + ACTIONS(4423), 1, anon_sym_DOT_DOT, - ACTIONS(4356), 2, + ACTIONS(4397), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4362), 2, + ACTIONS(4411), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4396), 2, + ACTIONS(4415), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4400), 2, + ACTIONS(4425), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1821), 2, + STATE(1868), 2, sym_line_comment, sym_block_comment, - ACTIONS(4358), 3, + ACTIONS(4399), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4394), 4, + ACTIONS(4413), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4186), 12, + ACTIONS(363), 12, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_PLUS_EQ, @@ -158831,37 +165183,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48908] = 5, + [50252] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1822), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1529), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_AMP, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4159), 1, + anon_sym_DOT_DOT, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1527), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4427), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + STATE(1869), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4059), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158872,22 +165248,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [48961] = 5, + [50339] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1823), 2, + STATE(1870), 2, sym_line_comment, sym_block_comment, - ACTIONS(1473), 15, + ACTIONS(3863), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158903,7 +165272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1471), 23, + ACTIONS(3861), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158927,15 +165296,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49014] = 5, + [50392] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1824), 2, + STATE(1871), 2, sym_line_comment, sym_block_comment, - ACTIONS(1545), 15, + ACTIONS(3482), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158951,7 +165320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1543), 23, + ACTIONS(3480), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158975,62 +165344,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49067] = 23, + [50445] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4374), 1, - anon_sym_COMMA, - ACTIONS(4448), 1, - anon_sym_RPAREN, - ACTIONS(4120), 2, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1825), 2, + ACTIONS(4429), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + STATE(1872), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159041,37 +165409,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49156] = 5, + [50532] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1826), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3828), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(323), 1, + anon_sym_RBRACE, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_AMP, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4159), 1, + anon_sym_DOT_DOT, + ACTIONS(4327), 1, + anon_sym_SEMI, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3826), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1873), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4059), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159082,36 +165475,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49209] = 10, + [50621] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4354), 1, - anon_sym_LBRACK, - ACTIONS(4360), 1, - anon_sym_QMARK, - ACTIONS(4364), 1, - anon_sym_DOT, - ACTIONS(4366), 1, - anon_sym_as, - STATE(1827), 2, + STATE(1874), 2, sym_line_comment, sym_block_comment, - ACTIONS(4358), 3, + ACTIONS(1423), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3876), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -159120,10 +165497,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3874), 20, + ACTIONS(1421), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -159142,46 +165522,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [49272] = 13, + anon_sym_as, + [50674] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4354), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(4360), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(4364), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(4366), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4356), 2, + ACTIONS(4075), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4159), 1, + anon_sym_DOT_DOT, + ACTIONS(4327), 1, + anon_sym_SEMI, + ACTIONS(4431), 1, + anon_sym_RBRACE, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4362), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1828), 2, + ACTIONS(4087), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1875), 2, sym_line_comment, sym_block_comment, - ACTIONS(4358), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3876), 6, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3874), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159192,53 +165589,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [49341] = 14, + [50763] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4354), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(4360), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(4364), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(4366), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4384), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4386), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4356), 2, + ACTIONS(4075), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4159), 1, + anon_sym_DOT_DOT, + ACTIONS(4031), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4362), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1829), 2, + ACTIONS(4087), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1876), 2, sym_line_comment, sym_block_comment, - ACTIONS(4358), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3876), 5, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3874), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159249,60 +165654,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [49412] = 17, + [50850] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4354), 1, + ACTIONS(327), 1, + anon_sym_RBRACE, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(4360), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(4364), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(4366), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4384), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4386), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4388), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(3876), 2, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, anon_sym_EQ, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4356), 2, + ACTIONS(4327), 1, + anon_sym_SEMI, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4362), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4396), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - STATE(1830), 2, + ACTIONS(4161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1877), 2, sym_line_comment, sym_block_comment, - ACTIONS(4358), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4394), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3874), 16, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159313,57 +165720,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [49489] = 18, + [50939] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4354), 1, + ACTIONS(329), 1, + anon_sym_RBRACE, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(4360), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(4364), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(4366), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4384), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4386), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4388), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4390), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(3876), 2, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, anon_sym_EQ, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4356), 2, + ACTIONS(4327), 1, + anon_sym_SEMI, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4362), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4396), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - STATE(1831), 2, + ACTIONS(4161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1878), 2, sym_line_comment, sym_block_comment, - ACTIONS(4358), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4394), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3874), 15, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE_PIPE, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159374,46 +165786,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [49568] = 11, + [51028] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4354), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(4360), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(4364), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(4366), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4356), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1832), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4358), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3876), 9, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_AMP, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4159), 1, + anon_sym_DOT_DOT, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3874), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4433), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1879), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4059), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159424,66 +165851,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [49633] = 21, + [51115] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4192), 1, - anon_sym_EQ, - ACTIONS(4354), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(4360), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(4364), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(4366), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4384), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4386), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4388), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4390), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4392), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4356), 2, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4362), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4396), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4400), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1833), 2, + ACTIONS(4435), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1880), 2, sym_line_comment, sym_block_comment, - ACTIONS(4358), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4394), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4190), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159494,58 +165916,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49718] = 21, + [51202] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4196), 1, + ACTIONS(4095), 1, anon_sym_EQ, - ACTIONS(4354), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(4360), 1, + ACTIONS(4331), 1, anon_sym_QMARK, - ACTIONS(4364), 1, + ACTIONS(4333), 1, anon_sym_DOT, - ACTIONS(4366), 1, - anon_sym_as, - ACTIONS(4384), 1, + ACTIONS(4401), 1, anon_sym_CARET, - ACTIONS(4386), 1, + ACTIONS(4403), 1, anon_sym_AMP, - ACTIONS(4388), 1, + ACTIONS(4405), 1, anon_sym_PIPE, - ACTIONS(4390), 1, + ACTIONS(4407), 1, anon_sym_AMP_AMP, - ACTIONS(4392), 1, + ACTIONS(4409), 1, anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, + ACTIONS(4417), 1, + anon_sym_as, + ACTIONS(4423), 1, anon_sym_DOT_DOT, - ACTIONS(4356), 2, + ACTIONS(4397), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4362), 2, + ACTIONS(4411), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4396), 2, + ACTIONS(4415), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4400), 2, + ACTIONS(4425), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1834), 2, + STATE(1881), 2, sym_line_comment, sym_block_comment, - ACTIONS(4358), 3, + ACTIONS(4399), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4394), 4, + ACTIONS(4413), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4194), 12, + ACTIONS(4093), 12, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_PLUS_EQ, @@ -159558,46 +165980,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49803] = 15, + [51287] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4354), 1, - anon_sym_LBRACK, - ACTIONS(4360), 1, - anon_sym_QMARK, - ACTIONS(4364), 1, - anon_sym_DOT, - ACTIONS(4366), 1, - anon_sym_as, - ACTIONS(4384), 1, - anon_sym_CARET, - ACTIONS(4386), 1, - anon_sym_AMP, - ACTIONS(4388), 1, - anon_sym_PIPE, - ACTIONS(4356), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4362), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1835), 2, + STATE(1882), 2, sym_line_comment, sym_block_comment, - ACTIONS(4358), 3, + ACTIONS(4025), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3876), 4, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3874), 20, + ACTIONS(4023), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -159616,56 +166027,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [49876] = 19, + anon_sym_as, + [51340] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4354), 1, + ACTIONS(331), 1, + anon_sym_RBRACE, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(4360), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(4364), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(4366), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4384), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4386), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4388), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4390), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4392), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4200), 2, + ACTIONS(4111), 1, anon_sym_EQ, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4356), 2, + ACTIONS(4327), 1, + anon_sym_SEMI, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4362), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4396), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - STATE(1836), 2, + ACTIONS(4161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1883), 2, sym_line_comment, sym_block_comment, - ACTIONS(4358), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4394), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4198), 14, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159676,39 +166094,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [49957] = 5, + [51429] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1837), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3812), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_AMP, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4159), 1, + anon_sym_DOT_DOT, + ACTIONS(4327), 1, + anon_sym_SEMI, + ACTIONS(4437), 1, + anon_sym_RBRACE, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3810), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1884), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4059), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159719,22 +166160,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [50010] = 5, + [51518] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1838), 2, + STATE(1885), 2, sym_line_comment, sym_block_comment, - ACTIONS(3816), 15, + ACTIONS(1389), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159750,7 +166184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3814), 23, + ACTIONS(1387), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159774,61 +166208,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50063] = 22, + [51571] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(335), 1, + anon_sym_RBRACE, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4058), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(4120), 2, + ACTIONS(4327), 1, + anon_sym_SEMI, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1839), 2, + STATE(1886), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159839,37 +166274,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50150] = 5, + [51660] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1840), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1487), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(123), 1, + anon_sym_RBRACE, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_AMP, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4159), 1, + anon_sym_DOT_DOT, + ACTIONS(4327), 1, + anon_sym_SEMI, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1485), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1887), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4059), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159880,44 +166340,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [50203] = 5, + [51749] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1841), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1491), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(119), 1, + anon_sym_RBRACE, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_AMP, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4159), 1, + anon_sym_DOT_DOT, + ACTIONS(4327), 1, + anon_sym_SEMI, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1489), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1888), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4059), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159928,44 +166406,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [50256] = 5, + [51838] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1842), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1499), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_AMP, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4159), 1, + anon_sym_DOT_DOT, + ACTIONS(4327), 1, + anon_sym_SEMI, + ACTIONS(4439), 1, + anon_sym_RBRACE, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1497), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1889), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4059), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159976,22 +166472,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [50309] = 5, + [51927] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1843), 2, + STATE(1890), 2, sym_line_comment, sym_block_comment, - ACTIONS(4108), 15, + ACTIONS(3871), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160007,7 +166496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4106), 23, + ACTIONS(3869), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -160031,15 +166520,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50362] = 5, + [51980] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1844), 2, + STATE(1891), 2, sym_line_comment, sym_block_comment, - ACTIONS(4076), 15, + ACTIONS(1435), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160055,7 +166544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4074), 23, + ACTIONS(1433), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -160079,15 +166568,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50415] = 5, + [52033] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1845), 2, + STATE(1892), 2, sym_line_comment, sym_block_comment, - ACTIONS(1465), 15, + ACTIONS(1419), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160103,7 +166592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1463), 23, + ACTIONS(1417), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -160127,15 +166616,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50468] = 5, + [52086] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1846), 2, + STATE(1893), 2, sym_line_comment, sym_block_comment, - ACTIONS(1477), 15, + ACTIONS(3817), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160151,7 +166640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1475), 23, + ACTIONS(3815), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -160175,20 +166664,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50521] = 5, + [52139] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1847), 2, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4331), 1, + anon_sym_QMARK, + ACTIONS(4333), 1, + anon_sym_DOT, + ACTIONS(4417), 1, + anon_sym_as, + STATE(1894), 2, sym_line_comment, sym_block_comment, - ACTIONS(1519), 15, - anon_sym_PLUS, + ACTIONS(4399), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3907), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -160197,13 +166695,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1517), 23, + ACTIONS(3905), 20, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -160222,62 +166717,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [50574] = 22, + [52202] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(4331), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(4333), 1, anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4403), 1, anon_sym_AMP, - ACTIONS(4128), 1, - anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(3966), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(4120), 2, + ACTIONS(4417), 1, + anon_sym_as, + ACTIONS(4397), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4411), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1848), 2, + STATE(1895), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4399), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(3907), 6, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3905), 20, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160288,35 +166767,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50661] = 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [52271] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1849), 2, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4331), 1, + anon_sym_QMARK, + ACTIONS(4333), 1, + anon_sym_DOT, + ACTIONS(4417), 1, + anon_sym_as, + ACTIONS(4397), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4411), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1896), 2, sym_line_comment, sym_block_comment, - ACTIONS(4022), 15, - anon_sym_PLUS, + ACTIONS(4399), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3907), 7, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4020), 23, + ACTIONS(3905), 20, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -160335,36 +166828,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [50714] = 5, + [52338] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1850), 2, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4331), 1, + anon_sym_QMARK, + ACTIONS(4333), 1, + anon_sym_DOT, + ACTIONS(4401), 1, + anon_sym_CARET, + ACTIONS(4403), 1, + anon_sym_AMP, + ACTIONS(4417), 1, + anon_sym_as, + ACTIONS(4397), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4411), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1897), 2, sym_line_comment, sym_block_comment, - ACTIONS(1483), 15, - anon_sym_PLUS, + ACTIONS(4399), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3907), 5, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1481), 23, + ACTIONS(3905), 20, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -160383,36 +166885,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [50767] = 5, + [52409] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1851), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1541), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4331), 1, + anon_sym_QMARK, + ACTIONS(4333), 1, + anon_sym_DOT, + ACTIONS(4401), 1, anon_sym_CARET, + ACTIONS(4403), 1, anon_sym_AMP, + ACTIONS(4405), 1, anon_sym_PIPE, + ACTIONS(4417), 1, + anon_sym_as, + ACTIONS(3907), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4397), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4411), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4415), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1539), 23, + STATE(1898), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4399), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4413), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3905), 16, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -160425,43 +166943,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [50820] = 5, + [52486] = 18, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1852), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1021), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4331), 1, + anon_sym_QMARK, + ACTIONS(4333), 1, + anon_sym_DOT, + ACTIONS(4401), 1, anon_sym_CARET, + ACTIONS(4403), 1, anon_sym_AMP, + ACTIONS(4405), 1, anon_sym_PIPE, + ACTIONS(4407), 1, + anon_sym_AMP_AMP, + ACTIONS(4417), 1, + anon_sym_as, + ACTIONS(3907), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4397), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4411), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4415), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1023), 23, + STATE(1899), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4399), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4413), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3905), 15, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -160473,22 +167004,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [50873] = 5, + [52565] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1853), 2, + STATE(1900), 2, sym_line_comment, sym_block_comment, - ACTIONS(975), 15, + ACTIONS(3833), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160504,7 +167030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(977), 23, + ACTIONS(3831), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -160528,20 +167054,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50926] = 5, + [52618] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1854), 2, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4331), 1, + anon_sym_QMARK, + ACTIONS(4333), 1, + anon_sym_DOT, + ACTIONS(4417), 1, + anon_sym_as, + ACTIONS(4397), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1901), 2, sym_line_comment, sym_block_comment, - ACTIONS(1503), 15, - anon_sym_PLUS, + ACTIONS(4399), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3907), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -160550,13 +167086,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1501), 23, + ACTIONS(3905), 20, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -160575,38 +167108,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [50979] = 5, + [52683] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1855), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(951), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4129), 1, + anon_sym_EQ, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4331), 1, + anon_sym_QMARK, + ACTIONS(4333), 1, + anon_sym_DOT, + ACTIONS(4401), 1, anon_sym_CARET, + ACTIONS(4403), 1, anon_sym_AMP, + ACTIONS(4405), 1, anon_sym_PIPE, + ACTIONS(4407), 1, + anon_sym_AMP_AMP, + ACTIONS(4409), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4417), 1, + anon_sym_as, + ACTIONS(4423), 1, + anon_sym_DOT_DOT, + ACTIONS(4397), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4411), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4415), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(953), 23, + ACTIONS(4425), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1902), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4399), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4413), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4127), 12, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160617,68 +167172,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [51032] = 22, + [52768] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4354), 1, + ACTIONS(4133), 1, + anon_sym_EQ, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(4360), 1, + ACTIONS(4331), 1, anon_sym_QMARK, - ACTIONS(4364), 1, + ACTIONS(4333), 1, anon_sym_DOT, - ACTIONS(4366), 1, - anon_sym_as, - ACTIONS(4384), 1, + ACTIONS(4401), 1, anon_sym_CARET, - ACTIONS(4386), 1, + ACTIONS(4403), 1, anon_sym_AMP, - ACTIONS(4388), 1, + ACTIONS(4405), 1, anon_sym_PIPE, - ACTIONS(4390), 1, + ACTIONS(4407), 1, anon_sym_AMP_AMP, - ACTIONS(4392), 1, + ACTIONS(4409), 1, anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, + ACTIONS(4417), 1, + anon_sym_as, + ACTIONS(4423), 1, anon_sym_DOT_DOT, - ACTIONS(4452), 1, - anon_sym_EQ, - ACTIONS(3936), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4356), 2, + ACTIONS(4397), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4362), 2, + ACTIONS(4411), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4396), 2, + ACTIONS(4415), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4400), 2, + ACTIONS(4425), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1856), 2, + STATE(1903), 2, sym_line_comment, sym_block_comment, - ACTIONS(4358), 3, + ACTIONS(4399), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4394), 4, + ACTIONS(4413), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4450), 10, + ACTIONS(4131), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160689,35 +167236,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51119] = 5, + [52853] = 15, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1857), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(955), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4331), 1, + anon_sym_QMARK, + ACTIONS(4333), 1, + anon_sym_DOT, + ACTIONS(4401), 1, anon_sym_CARET, + ACTIONS(4403), 1, anon_sym_AMP, + ACTIONS(4405), 1, anon_sym_PIPE, + ACTIONS(4417), 1, + anon_sym_as, + ACTIONS(4397), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4411), 2, anon_sym_LT_LT, anon_sym_GT_GT, + STATE(1904), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4399), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3907), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(957), 23, + ACTIONS(3905), 20, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -160736,62 +167294,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [51172] = 22, + [52926] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4354), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(4360), 1, + ACTIONS(4331), 1, anon_sym_QMARK, - ACTIONS(4364), 1, + ACTIONS(4333), 1, anon_sym_DOT, - ACTIONS(4366), 1, - anon_sym_as, - ACTIONS(4384), 1, + ACTIONS(4401), 1, anon_sym_CARET, - ACTIONS(4386), 1, + ACTIONS(4403), 1, anon_sym_AMP, - ACTIONS(4388), 1, + ACTIONS(4405), 1, anon_sym_PIPE, - ACTIONS(4390), 1, + ACTIONS(4407), 1, anon_sym_AMP_AMP, - ACTIONS(4392), 1, + ACTIONS(4409), 1, anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, - anon_sym_DOT_DOT, - ACTIONS(4452), 1, + ACTIONS(4417), 1, + anon_sym_as, + ACTIONS(4141), 2, anon_sym_EQ, - ACTIONS(3912), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4356), 2, + anon_sym_DOT_DOT, + ACTIONS(4397), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4362), 2, + ACTIONS(4411), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4396), 2, + ACTIONS(4415), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4400), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1858), 2, + STATE(1905), 2, sym_line_comment, sym_block_comment, - ACTIONS(4358), 3, + ACTIONS(4399), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4394), 4, + ACTIONS(4413), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4450), 10, + ACTIONS(4139), 14, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160802,15 +167354,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51259] = 5, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [53007] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1859), 2, + STATE(1906), 2, sym_line_comment, sym_block_comment, - ACTIONS(1533), 15, + ACTIONS(4021), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160826,7 +167380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1531), 23, + ACTIONS(4019), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -160850,15 +167404,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [51312] = 5, + [53060] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1860), 2, + STATE(1907), 2, sym_line_comment, sym_block_comment, - ACTIONS(1013), 15, + ACTIONS(4009), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160874,7 +167428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1015), 23, + ACTIONS(4007), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -160898,15 +167452,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [51365] = 5, + [53113] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1861), 2, + STATE(1908), 2, sym_line_comment, sym_block_comment, - ACTIONS(1469), 15, + ACTIONS(4013), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160922,7 +167476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1467), 23, + ACTIONS(4011), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -160946,61 +167500,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [51418] = 22, + [53166] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4354), 1, - anon_sym_LBRACK, - ACTIONS(4360), 1, - anon_sym_QMARK, - ACTIONS(4364), 1, - anon_sym_DOT, - ACTIONS(4366), 1, - anon_sym_as, - ACTIONS(4384), 1, + STATE(1909), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3903), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4386), 1, anon_sym_AMP, - ACTIONS(4388), 1, anon_sym_PIPE, - ACTIONS(4390), 1, - anon_sym_AMP_AMP, - ACTIONS(4392), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, - anon_sym_DOT_DOT, - ACTIONS(4452), 1, - anon_sym_EQ, - ACTIONS(4058), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4356), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4396), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4400), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1862), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4358), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4394), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4450), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3901), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161011,61 +167541,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51505] = 22, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [53219] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4354), 1, - anon_sym_LBRACK, - ACTIONS(4360), 1, - anon_sym_QMARK, - ACTIONS(4364), 1, - anon_sym_DOT, - ACTIONS(4366), 1, - anon_sym_as, - ACTIONS(4384), 1, + STATE(1910), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3422), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4386), 1, anon_sym_AMP, - ACTIONS(4388), 1, anon_sym_PIPE, - ACTIONS(4390), 1, - anon_sym_AMP_AMP, - ACTIONS(4392), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, - anon_sym_DOT_DOT, - ACTIONS(4452), 1, - anon_sym_EQ, - ACTIONS(3966), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4356), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4396), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4400), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1863), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4358), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4394), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4450), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3420), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161076,23 +167589,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51592] = 9, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [53272] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4354), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(4360), 1, + ACTIONS(4331), 1, anon_sym_QMARK, - ACTIONS(4364), 1, + ACTIONS(4333), 1, anon_sym_DOT, - ACTIONS(4366), 1, + ACTIONS(4417), 1, anon_sym_as, - STATE(1864), 2, + STATE(1911), 2, sym_line_comment, sym_block_comment, - ACTIONS(3876), 14, + ACTIONS(3907), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -161107,7 +167627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3874), 20, + ACTIONS(3905), 20, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_AMP_AMP, @@ -161128,15 +167648,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [51653] = 5, + [53333] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1865), 2, + STATE(1912), 2, sym_line_comment, sym_block_comment, - ACTIONS(1053), 15, + ACTIONS(1399), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -161152,7 +167672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1055), 23, + ACTIONS(1397), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -161175,36 +167695,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [51706] = 5, + anon_sym_as, + [53386] = 13, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4305), 1, + anon_sym_AMP, + ACTIONS(4291), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4313), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1913), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4293), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3907), 6, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3905), 20, + anon_sym_LPAREN, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [53455] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1866), 2, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4291), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4313), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1914), 2, sym_line_comment, sym_block_comment, - ACTIONS(1045), 15, - anon_sym_PLUS, + ACTIONS(4293), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3907), 7, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1047), 23, + ACTIONS(3905), 20, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -161223,63 +167807,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [51759] = 23, + [53522] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1179), 1, - anon_sym_RPAREN, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4303), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4305), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4307), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4309), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4311), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4351), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4367), 1, anon_sym_DOT_DOT, - ACTIONS(4374), 1, - anon_sym_COMMA, - ACTIONS(4120), 2, + ACTIONS(4441), 1, + anon_sym_LBRACE, + STATE(1561), 1, + sym_match_block, + ACTIONS(4291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4313), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4317), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4369), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1867), 2, + STATE(1915), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4293), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4315), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4349), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161290,62 +167873,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51848] = 23, + [53611] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4303), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4305), 1, anon_sym_AMP, - ACTIONS(4128), 1, - anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4454), 1, - anon_sym_RPAREN, - ACTIONS(4456), 1, - anon_sym_COMMA, - ACTIONS(4120), 2, + ACTIONS(4291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4313), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1868), 2, + STATE(1916), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4293), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(3907), 5, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3905), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161356,62 +167924,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51937] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [53682] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(293), 1, - anon_sym_RBRACE, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4303), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4305), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4307), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(3907), 2, anon_sym_EQ, - ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, + ACTIONS(4291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4313), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4317), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1869), 2, + STATE(1917), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4293), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4315), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(3905), 16, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161422,15 +167988,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52026] = 5, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [53759] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1870), 2, + STATE(1918), 2, sym_line_comment, sym_block_comment, - ACTIONS(3918), 15, + ACTIONS(3813), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -161446,7 +168014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3916), 23, + ACTIONS(3811), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -161470,81 +168038,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [52079] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4406), 1, - anon_sym_CARET, - ACTIONS(4408), 1, - anon_sym_AMP, - ACTIONS(4410), 1, - anon_sym_PIPE, - ACTIONS(4412), 1, - anon_sym_AMP_AMP, - ACTIONS(4414), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4420), 1, - anon_sym_EQ, - ACTIONS(4458), 1, - anon_sym_LBRACE, - ACTIONS(4460), 1, - anon_sym_DOT_DOT, - STATE(1537), 1, - sym_match_block, - ACTIONS(4402), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4416), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4424), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4462), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1871), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4404), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4422), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4418), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [52168] = 5, + [53812] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1872), 2, + STATE(1919), 2, sym_line_comment, sym_block_comment, - ACTIONS(3946), 15, + ACTIONS(3741), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -161560,7 +168062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3944), 23, + ACTIONS(3739), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -161584,127 +168086,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [52221] = 23, + [53865] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(295), 1, - anon_sym_RBRACE, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, - anon_sym_AMP, - ACTIONS(4128), 1, - anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4140), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1873), 2, + STATE(1920), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4293), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [52310] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(3907), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4464), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1874), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, + anon_sym_DOT_DOT, + ACTIONS(3905), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161715,15 +168133,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52397] = 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [53928] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1875), 2, + STATE(1921), 2, sym_line_comment, sym_block_comment, - ACTIONS(3986), 15, + ACTIONS(3921), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -161739,7 +168163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3982), 23, + ACTIONS(3919), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -161763,62 +168187,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [52450] = 23, + [53981] = 18, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1087), 1, - anon_sym_RPAREN, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4303), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4305), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4307), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4309), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(3907), 2, anon_sym_EQ, - ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4374), 1, - anon_sym_COMMA, - ACTIONS(4120), 2, + ACTIONS(4291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4313), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4317), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1876), 2, + STATE(1922), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4293), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4315), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(3905), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161829,15 +168246,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52539] = 5, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [54060] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1877), 2, + STATE(1923), 2, sym_line_comment, sym_block_comment, - ACTIONS(4084), 15, + ACTIONS(3841), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -161853,7 +168272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4082), 23, + ACTIONS(3839), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -161877,15 +168296,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [52592] = 5, + [54113] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1878), 2, + STATE(1924), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 15, + ACTIONS(3875), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -161901,7 +168320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4090), 23, + ACTIONS(3873), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -161925,21 +168344,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [52645] = 8, + [54166] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4354), 1, - anon_sym_LBRACK, - ACTIONS(4360), 1, - anon_sym_QMARK, - ACTIONS(4364), 1, - anon_sym_DOT, - STATE(1879), 2, + STATE(1925), 2, sym_line_comment, sym_block_comment, - ACTIONS(3852), 14, + ACTIONS(3925), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -161953,10 +168366,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3848), 21, + ACTIONS(3923), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -161976,62 +168392,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [52704] = 23, + [54219] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4466), 1, - anon_sym_SEMI, - ACTIONS(4468), 1, - anon_sym_else, - ACTIONS(4120), 2, + ACTIONS(4035), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1880), 2, + STATE(1926), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162042,128 +168457,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52793] = 23, + [54306] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(297), 1, - anon_sym_RBRACE, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, - anon_sym_AMP, - ACTIONS(4128), 1, - anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4140), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1881), 2, + STATE(1927), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(3851), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [52882] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1347), 1, - anon_sym_RPAREN, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4374), 1, - anon_sym_COMMA, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1882), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3847), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162174,62 +168498,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52971] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [54359] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(297), 1, + anon_sym_RBRACE, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4470), 1, + ACTIONS(4327), 1, anon_sym_SEMI, - ACTIONS(4472), 1, - anon_sym_else, - ACTIONS(4120), 2, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1883), 2, + STATE(1928), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162240,62 +168571,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53060] = 23, + [54448] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + STATE(1929), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1403), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4474), 1, - anon_sym_RBRACE, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1884), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1401), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162306,62 +168612,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53149] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [54501] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + STATE(1930), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3951), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4374), 1, - anon_sym_COMMA, - ACTIONS(4476), 1, - anon_sym_RPAREN, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1885), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3949), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162372,62 +168660,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53238] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [54554] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + STATE(1931), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3955), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4478), 1, - anon_sym_SEMI, - ACTIONS(4480), 1, - anon_sym_else, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1886), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3953), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162438,62 +168708,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53327] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [54607] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, - anon_sym_AMP, - ACTIONS(4128), 1, - anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4482), 1, - anon_sym_SEMI, - ACTIONS(4484), 1, - anon_sym_else, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4140), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1887), 2, + STATE(1932), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(1411), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1409), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162504,62 +168756,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53416] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [54660] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(4331), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(4333), 1, anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + STATE(1933), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3963), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4486), 1, - anon_sym_RBRACE, - ACTIONS(4488), 1, - anon_sym_COMMA, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1888), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, + anon_sym_DOT_DOT, + ACTIONS(3961), 21, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162570,62 +168807,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53505] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [54719] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + STATE(1934), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1399), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4490), 1, - anon_sym_SEMI, - ACTIONS(4492), 1, - anon_sym_else, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1889), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1397), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162636,62 +168855,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53594] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [54772] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(301), 1, - anon_sym_RBRACE, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + STATE(1935), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1431), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1890), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1429), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162702,56 +168903,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53683] = 19, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [54825] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4406), 1, + STATE(1936), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3887), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4408), 1, anon_sym_AMP, - ACTIONS(4410), 1, anon_sym_PIPE, - ACTIONS(4412), 1, - anon_sym_AMP_AMP, - ACTIONS(4414), 1, - anon_sym_PIPE_PIPE, - ACTIONS(399), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4402), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4416), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4424), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1891), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4404), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4422), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(397), 14, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3885), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162762,62 +168951,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [53764] = 21, + anon_sym_as, + [54878] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4406), 1, + STATE(1937), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3891), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4408), 1, anon_sym_AMP, - ACTIONS(4410), 1, anon_sym_PIPE, - ACTIONS(4412), 1, - anon_sym_AMP_AMP, - ACTIONS(4414), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4426), 1, - anon_sym_DOT_DOT, - ACTIONS(4402), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4416), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4424), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4428), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1892), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4404), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4422), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(341), 12, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3889), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162828,62 +168999,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53849] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [54931] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4406), 1, + ACTIONS(4303), 1, anon_sym_CARET, - ACTIONS(4408), 1, + ACTIONS(4305), 1, anon_sym_AMP, - ACTIONS(4410), 1, + ACTIONS(4307), 1, anon_sym_PIPE, - ACTIONS(4412), 1, + ACTIONS(4309), 1, anon_sym_AMP_AMP, - ACTIONS(4414), 1, + ACTIONS(4311), 1, anon_sym_PIPE_PIPE, - ACTIONS(4420), 1, - anon_sym_EQ, - ACTIONS(4460), 1, + ACTIONS(4319), 1, anon_sym_DOT_DOT, - ACTIONS(4494), 1, + ACTIONS(4351), 1, + anon_sym_EQ, + ACTIONS(4031), 2, + anon_sym_LPAREN, anon_sym_LBRACE, - STATE(477), 1, - sym_match_block, - ACTIONS(4402), 2, + ACTIONS(4291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4416), 2, + ACTIONS(4313), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4424), 2, + ACTIONS(4317), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4462), 2, + ACTIONS(4321), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1893), 2, + STATE(1938), 2, sym_line_comment, sym_block_comment, - ACTIONS(4404), 3, + ACTIONS(4293), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4422), 4, + ACTIONS(4315), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4418), 10, + ACTIONS(4349), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162894,60 +169071,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53938] = 21, + [55018] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4148), 1, - anon_sym_EQ, - ACTIONS(4406), 1, + STATE(1939), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1381), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4408), 1, anon_sym_AMP, - ACTIONS(4410), 1, anon_sym_PIPE, - ACTIONS(4412), 1, - anon_sym_AMP_AMP, - ACTIONS(4414), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4426), 1, - anon_sym_DOT_DOT, - ACTIONS(4402), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4416), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4424), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4428), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1894), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4404), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4422), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4146), 12, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1379), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162958,60 +169112,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54023] = 21, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [55071] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4136), 1, - anon_sym_EQ, - ACTIONS(4406), 1, + STATE(1940), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1385), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4408), 1, anon_sym_AMP, - ACTIONS(4410), 1, anon_sym_PIPE, - ACTIONS(4412), 1, - anon_sym_AMP_AMP, - ACTIONS(4414), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4426), 1, - anon_sym_DOT_DOT, - ACTIONS(4402), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4416), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4424), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4428), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1895), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4404), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4422), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4118), 12, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1383), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163022,62 +169160,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54108] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [55124] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(337), 1, - anon_sym_RBRACE, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + STATE(1941), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1355), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1896), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1353), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163088,62 +169208,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54197] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [55177] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(305), 1, - anon_sym_RBRACE, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, + ACTIONS(4443), 1, + anon_sym_RPAREN, + ACTIONS(4445), 1, + anon_sym_COMMA, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1897), 2, + STATE(1942), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163154,62 +169281,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54286] = 23, + [55266] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4496), 1, - anon_sym_RBRACE, - ACTIONS(4120), 2, + ACTIONS(3779), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1898), 2, + STATE(1943), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163220,62 +169346,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54375] = 23, + [55353] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(309), 1, - anon_sym_RBRACE, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + STATE(1944), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1415), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1899), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1413), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163286,62 +169387,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54464] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [55406] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4406), 1, + STATE(1945), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1457), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4408), 1, anon_sym_AMP, - ACTIONS(4410), 1, anon_sym_PIPE, - ACTIONS(4412), 1, - anon_sym_AMP_AMP, - ACTIONS(4414), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4420), 1, - anon_sym_EQ, - ACTIONS(4460), 1, - anon_sym_DOT_DOT, - ACTIONS(4498), 1, - anon_sym_LBRACE, - STATE(1823), 1, - sym_match_block, - ACTIONS(4402), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4416), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4424), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4462), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1900), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4404), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4422), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4418), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1455), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163352,62 +169435,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54553] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [55459] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(311), 1, - anon_sym_RBRACE, - ACTIONS(3850), 1, + ACTIONS(4083), 1, + anon_sym_EQ, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(4331), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(4333), 1, anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4401), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4403), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4405), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4407), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4409), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4417), 1, + anon_sym_as, + ACTIONS(4423), 1, anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, + ACTIONS(4397), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4411), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4415), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4425), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1901), 2, + STATE(1946), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4399), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4413), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4067), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163418,62 +169506,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54642] = 23, + [55544] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(123), 1, - anon_sym_RBRACE, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + STATE(1947), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1443), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1902), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1441), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163484,62 +169547,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54731] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [55597] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, - anon_sym_RBRACE, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + STATE(1948), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1451), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1449), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1903), 2, + anon_sym_as, + [55650] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1949), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(1203), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1205), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163550,62 +169643,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54820] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [55703] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4095), 1, + anon_sym_EQ, + ACTIONS(4303), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4305), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4307), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4309), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4311), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4319), 1, anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4500), 1, - anon_sym_RBRACE, - ACTIONS(4120), 2, + ACTIONS(4291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4313), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4317), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4321), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1904), 2, + STATE(1950), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4293), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4315), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4093), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163616,62 +169714,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54909] = 23, + [55788] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(317), 1, - anon_sym_RBRACE, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + STATE(1951), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1207), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1905), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1209), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163682,62 +169755,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54998] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [55841] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(319), 1, + ACTIONS(289), 1, anon_sym_RBRACE, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4372), 1, + ACTIONS(4327), 1, anon_sym_SEMI, - ACTIONS(4120), 2, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1906), 2, + STATE(1952), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163748,61 +169828,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55087] = 22, + [55930] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4246), 1, + STATE(1953), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4037), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4248), 1, anon_sym_AMP, - ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(4254), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4260), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(4266), 1, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4504), 1, + ACTIONS(4035), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, - ACTIONS(4242), 2, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [55983] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1954), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1399), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(4256), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4264), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4268), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1397), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4502), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(1907), 2, + anon_sym_as, + [56036] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1955), 2, sym_line_comment, sym_block_comment, - ACTIONS(4244), 3, + ACTIONS(1399), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4262), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4258), 10, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1397), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163813,62 +169965,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55174] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [56089] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(321), 1, - anon_sym_RBRACE, - ACTIONS(3850), 1, + ACTIONS(4101), 1, + anon_sym_EQ, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(4331), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(4333), 1, anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4401), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4403), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4405), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4407), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4409), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4417), 1, + anon_sym_as, + ACTIONS(4423), 1, anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, + ACTIONS(4397), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4411), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4415), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4425), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1908), 2, + STATE(1956), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4399), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4413), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4099), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163879,62 +170036,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55263] = 23, + [56174] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4303), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4305), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4307), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4309), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4311), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4319), 1, anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4506), 1, - anon_sym_RBRACE, - ACTIONS(4120), 2, + ACTIONS(4351), 1, + anon_sym_EQ, + ACTIONS(4035), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4313), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4317), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4321), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1909), 2, + STATE(1957), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4293), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4315), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4349), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163945,62 +170101,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55352] = 23, + [56261] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, - anon_sym_RBRACE, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + STATE(1958), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3959), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1910), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3957), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164011,62 +170142,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55441] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [56314] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(327), 1, + ACTIONS(127), 1, anon_sym_RBRACE, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4372), 1, + ACTIONS(4327), 1, anon_sym_SEMI, - ACTIONS(4120), 2, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1911), 2, + STATE(1959), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164077,61 +170215,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55530] = 22, + [56403] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + STATE(1960), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3975), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4508), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1912), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3973), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164142,61 +170256,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55617] = 22, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [56456] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4120), 2, + ACTIONS(4447), 1, + anon_sym_SEMI, + ACTIONS(4449), 1, + anon_sym_else, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4510), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1913), 2, + STATE(1961), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164207,62 +170329,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55704] = 23, + [56545] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(329), 1, - anon_sym_RBRACE, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + STATE(1962), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1211), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1914), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1213), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164273,62 +170370,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55793] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [56598] = 17, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4261), 1, + sym_identifier, + ACTIONS(4263), 1, + anon_sym_LBRACE, + ACTIONS(4267), 1, + anon_sym_STAR, + ACTIONS(4273), 1, + anon_sym_COLON_COLON, + ACTIONS(4277), 1, + sym_metavariable, + ACTIONS(4451), 1, + anon_sym_RBRACE, + STATE(2593), 1, + sym_scoped_identifier, + STATE(3407), 1, + sym__use_clause, + STATE(3612), 1, + sym_bracketed_type, + STATE(3615), 1, + sym_generic_type_with_turbofish, + STATE(1963), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4275), 3, + sym_self, + sym_super, + sym_crate, + STATE(3014), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4269), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [56675] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4512), 1, - anon_sym_RBRACE, - ACTIONS(4120), 2, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1915), 2, + ACTIONS(4453), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1964), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164339,62 +170502,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55882] = 23, + [56762] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(333), 1, - anon_sym_RBRACE, - ACTIONS(3850), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(4331), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(4333), 1, anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4401), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4403), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4405), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4407), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4409), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4417), 1, + anon_sym_as, + ACTIONS(4423), 1, anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, + ACTIONS(4457), 1, + anon_sym_EQ, + ACTIONS(3811), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4397), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4411), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4415), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4425), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1916), 2, + STATE(1965), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4399), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4413), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4455), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164405,62 +170567,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55971] = 23, + [56849] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(335), 1, - anon_sym_RBRACE, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + STATE(1966), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3979), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1917), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3977), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164471,62 +170608,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56060] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [56902] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(303), 1, - anon_sym_RBRACE, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + STATE(1967), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1225), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1918), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1227), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164537,62 +170656,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56149] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [56955] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4514), 1, - anon_sym_RBRACE, - ACTIONS(4120), 2, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1919), 2, + ACTIONS(4459), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1968), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164603,15 +170728,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56238] = 5, + [57042] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1920), 2, + STATE(1969), 2, sym_line_comment, sym_block_comment, - ACTIONS(4060), 15, + ACTIONS(3939), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -164627,7 +170752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4058), 23, + ACTIONS(3937), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -164651,37 +170776,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [56291] = 5, + [57095] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1921), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1459), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4331), 1, + anon_sym_QMARK, + ACTIONS(4333), 1, + anon_sym_DOT, + ACTIONS(4401), 1, anon_sym_CARET, + ACTIONS(4403), 1, anon_sym_AMP, + ACTIONS(4405), 1, anon_sym_PIPE, + ACTIONS(4407), 1, + anon_sym_AMP_AMP, + ACTIONS(4409), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4417), 1, + anon_sym_as, + ACTIONS(4423), 1, + anon_sym_DOT_DOT, + ACTIONS(4457), 1, + anon_sym_EQ, + ACTIONS(4031), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4397), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4411), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4415), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1457), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4425), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1970), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4399), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4413), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4455), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164692,22 +170841,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [56344] = 5, + [57182] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1922), 2, + STATE(1971), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(1349), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -164723,7 +170865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 23, + ACTIONS(1347), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -164747,15 +170889,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [56397] = 5, + [57235] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1923), 2, + STATE(1972), 2, sym_line_comment, sym_block_comment, - ACTIONS(4064), 15, + ACTIONS(1229), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -164771,7 +170913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4062), 23, + ACTIONS(1231), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -164795,15 +170937,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [56450] = 5, + [57288] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1924), 2, + STATE(1973), 2, sym_line_comment, sym_block_comment, - ACTIONS(4002), 15, + ACTIONS(1439), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -164819,7 +170961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4000), 23, + ACTIONS(1437), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -164843,15 +170985,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [56503] = 5, + [57341] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1925), 2, + STATE(1974), 2, sym_line_comment, sym_block_comment, - ACTIONS(4014), 15, + ACTIONS(3983), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -164867,7 +171009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4012), 23, + ACTIONS(3981), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -164891,37 +171033,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [56556] = 5, + [57394] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1926), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4026), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4331), 1, + anon_sym_QMARK, + ACTIONS(4333), 1, + anon_sym_DOT, + ACTIONS(4401), 1, anon_sym_CARET, + ACTIONS(4403), 1, anon_sym_AMP, + ACTIONS(4405), 1, anon_sym_PIPE, + ACTIONS(4407), 1, + anon_sym_AMP_AMP, + ACTIONS(4409), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4417), 1, + anon_sym_as, + ACTIONS(4423), 1, + anon_sym_DOT_DOT, + ACTIONS(4457), 1, + anon_sym_EQ, + ACTIONS(4035), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4397), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4411), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4415), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4024), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4425), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1975), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4399), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4413), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4455), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164932,53 +171098,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [56609] = 17, + [57481] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4314), 1, + ACTIONS(4261), 1, sym_identifier, - ACTIONS(4316), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - ACTIONS(4320), 1, + ACTIONS(4267), 1, anon_sym_STAR, - ACTIONS(4326), 1, + ACTIONS(4273), 1, anon_sym_COLON_COLON, - ACTIONS(4330), 1, + ACTIONS(4277), 1, sym_metavariable, - ACTIONS(4516), 1, + ACTIONS(4461), 1, anon_sym_RBRACE, - STATE(2562), 1, + STATE(2593), 1, sym_scoped_identifier, - STATE(3468), 1, + STATE(3407), 1, sym__use_clause, - STATE(3653), 1, - sym_generic_type_with_turbofish, - STATE(3666), 1, + STATE(3612), 1, sym_bracketed_type, - STATE(1927), 2, + STATE(3615), 1, + sym_generic_type_with_turbofish, + STATE(1976), 2, sym_line_comment, sym_block_comment, - ACTIONS(4328), 3, + ACTIONS(4275), 3, sym_self, sym_super, sym_crate, - STATE(3067), 4, + STATE(3014), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4322), 20, + ACTIONS(4269), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -164999,15 +171158,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [56686] = 5, + [57558] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1928), 2, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_AMP, + ACTIONS(4075), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4159), 1, + anon_sym_DOT_DOT, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4087), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4463), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1977), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4059), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4109), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [57645] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_AMP, + ACTIONS(4075), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4159), 1, + anon_sym_DOT_DOT, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4087), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4465), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1978), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4059), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4109), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [57732] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1979), 2, sym_line_comment, sym_block_comment, - ACTIONS(3820), 15, + ACTIONS(3997), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -165023,7 +171312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3818), 23, + ACTIONS(3995), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -165047,61 +171336,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [56739] = 22, + [57785] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4169), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4171), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4173), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4177), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4183), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4189), 1, + anon_sym_DOT_DOT, + ACTIONS(4165), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4179), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4187), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4191), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1980), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4167), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4467), 3, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + ACTIONS(4185), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4181), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [57870] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4331), 1, + anon_sym_QMARK, + ACTIONS(4333), 1, + anon_sym_DOT, + ACTIONS(4401), 1, + anon_sym_CARET, + ACTIONS(4403), 1, + anon_sym_AMP, + ACTIONS(4405), 1, + anon_sym_PIPE, + ACTIONS(4407), 1, + anon_sym_AMP_AMP, + ACTIONS(4409), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4417), 1, + anon_sym_as, + ACTIONS(4423), 1, anon_sym_DOT_DOT, - ACTIONS(4120), 2, + ACTIONS(4457), 1, + anon_sym_EQ, + ACTIONS(3779), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4397), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4411), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4415), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4425), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4518), 2, + STATE(1981), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4399), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4413), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4455), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [57957] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(291), 1, anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1929), 2, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_AMP, + ACTIONS(4075), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4159), 1, + anon_sym_DOT_DOT, + ACTIONS(4327), 1, + anon_sym_SEMI, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4087), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1982), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165112,15 +171531,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56826] = 5, + [58046] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1930), 2, + STATE(1983), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 15, + ACTIONS(3867), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -165136,7 +171555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3836), 23, + ACTIONS(3865), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -165160,61 +171579,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [56879] = 22, + [58099] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4120), 2, + ACTIONS(4469), 1, + anon_sym_RBRACE, + ACTIONS(4471), 1, + anon_sym_COMMA, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4520), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1931), 2, + STATE(1984), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165225,15 +171645,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56966] = 5, + [58188] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1932), 2, + STATE(1985), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3879), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3877), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [58241] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1986), 2, sym_line_comment, sym_block_comment, - ACTIONS(3842), 15, + ACTIONS(3883), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -165249,7 +171717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3840), 23, + ACTIONS(3881), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -165273,62 +171741,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [57019] = 23, + [58294] = 16, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(4261), 1, + sym_identifier, + ACTIONS(4263), 1, + anon_sym_LBRACE, + ACTIONS(4267), 1, + anon_sym_STAR, + ACTIONS(4273), 1, + anon_sym_COLON_COLON, + ACTIONS(4277), 1, + sym_metavariable, + STATE(2593), 1, + sym_scoped_identifier, + STATE(3612), 1, + sym_bracketed_type, + STATE(3615), 1, + sym_generic_type_with_turbofish, + STATE(3693), 1, + sym__use_clause, + STATE(1987), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4275), 3, + sym_self, + sym_super, + sym_crate, + STATE(3014), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4269), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [58368] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4406), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4408), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4410), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4412), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4414), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4420), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4460), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4522), 1, - anon_sym_LBRACE, - STATE(403), 1, - sym_match_block, - ACTIONS(4402), 2, + ACTIONS(4473), 1, + anon_sym_RBRACK, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4416), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4424), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4462), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1933), 2, + STATE(1988), 2, sym_line_comment, sym_block_comment, - ACTIONS(4404), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4422), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4418), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165339,61 +171863,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57108] = 22, + [58454] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4120), 2, + ACTIONS(4475), 1, + anon_sym_SEMI, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4524), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1934), 2, + STATE(1989), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165404,62 +171927,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57195] = 23, + [58540] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4526), 1, + ACTIONS(4477), 1, anon_sym_SEMI, - ACTIONS(4528), 1, - anon_sym_else, - ACTIONS(4120), 2, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1935), 2, + STATE(1990), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165470,37 +171991,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57284] = 5, + [58626] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1936), 2, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_AMP, + ACTIONS(4075), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4159), 1, + anon_sym_DOT_DOT, + ACTIONS(4479), 1, + anon_sym_SEMI, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4087), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1991), 2, sym_line_comment, sym_block_comment, - ACTIONS(1553), 15, - anon_sym_PLUS, + ACTIONS(4059), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4109), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [58712] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_AMP, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4159), 1, + anon_sym_DOT_DOT, + ACTIONS(4481), 1, + anon_sym_RBRACK, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1551), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1992), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4059), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165511,51 +172119,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [57337] = 16, + [58798] = 16, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4314), 1, + ACTIONS(4261), 1, sym_identifier, - ACTIONS(4316), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - ACTIONS(4320), 1, + ACTIONS(4267), 1, anon_sym_STAR, - ACTIONS(4326), 1, + ACTIONS(4273), 1, anon_sym_COLON_COLON, - ACTIONS(4330), 1, + ACTIONS(4277), 1, sym_metavariable, - STATE(2562), 1, + STATE(2593), 1, sym_scoped_identifier, - STATE(3653), 1, - sym_generic_type_with_turbofish, - STATE(3666), 1, + STATE(3612), 1, sym_bracketed_type, - STATE(3744), 1, + STATE(3615), 1, + sym_generic_type_with_turbofish, + STATE(3773), 1, sym__use_clause, - STATE(1937), 2, + STATE(1993), 2, sym_line_comment, sym_block_comment, - ACTIONS(4328), 3, + ACTIONS(4275), 3, sym_self, sym_super, sym_crate, - STATE(3067), 4, + STATE(3014), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4322), 20, + ACTIONS(4269), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -165576,60 +172177,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [57411] = 22, + [58872] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4530), 1, - anon_sym_RBRACK, - ACTIONS(4120), 2, + ACTIONS(4483), 1, + anon_sym_SEMI, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1938), 2, + STATE(1994), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165640,60 +172241,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57497] = 22, + [58958] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4532), 1, - anon_sym_RBRACK, - ACTIONS(4120), 2, + ACTIONS(4485), 1, + anon_sym_SEMI, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1939), 2, + STATE(1995), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165704,60 +172305,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57583] = 22, + [59044] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4534), 1, + ACTIONS(4487), 1, anon_sym_SEMI, - ACTIONS(4120), 2, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1940), 2, + STATE(1996), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165768,60 +172369,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57669] = 22, + [59130] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4536), 1, + ACTIONS(4489), 1, anon_sym_SEMI, - ACTIONS(4120), 2, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1941), 2, + STATE(1997), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165832,60 +172433,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57755] = 22, + [59216] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(4331), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(4333), 1, anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4401), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4403), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4405), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4409), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4417), 1, + anon_sym_as, + ACTIONS(4457), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4491), 1, anon_sym_DOT_DOT, - ACTIONS(4538), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, + ACTIONS(4347), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(4397), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4411), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4415), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4493), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1942), 2, + STATE(1998), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4399), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4413), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4455), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165896,60 +172496,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57841] = 22, + [59300] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4540), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, + ACTIONS(4495), 1, + anon_sym_COMMA, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1943), 2, + STATE(1999), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165960,60 +172560,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57927] = 22, + [59386] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4542), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, + ACTIONS(4497), 1, + anon_sym_RBRACK, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1944), 2, + STATE(2000), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166024,118 +172624,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58013] = 16, - ACTIONS(29), 1, - anon_sym_LT, + [59472] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4314), 1, - sym_identifier, - ACTIONS(4316), 1, - anon_sym_LBRACE, - ACTIONS(4320), 1, - anon_sym_STAR, - ACTIONS(4326), 1, - anon_sym_COLON_COLON, - ACTIONS(4330), 1, - sym_metavariable, - STATE(2562), 1, - sym_scoped_identifier, - STATE(3521), 1, - sym__use_clause, - STATE(3653), 1, - sym_generic_type_with_turbofish, - STATE(3666), 1, - sym_bracketed_type, - STATE(1945), 2, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4331), 1, + anon_sym_QMARK, + ACTIONS(4333), 1, + anon_sym_DOT, + ACTIONS(4401), 1, + anon_sym_CARET, + ACTIONS(4403), 1, + anon_sym_AMP, + ACTIONS(4405), 1, + anon_sym_PIPE, + ACTIONS(4409), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4417), 1, + anon_sym_as, + ACTIONS(4457), 1, + anon_sym_EQ, + ACTIONS(4491), 1, + anon_sym_DOT_DOT, + ACTIONS(4397), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4411), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4415), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4467), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(4493), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2001), 2, sym_line_comment, sym_block_comment, - ACTIONS(4328), 3, - sym_self, - sym_super, - sym_crate, - STATE(3067), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4322), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [58087] = 22, + ACTIONS(4399), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4413), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4455), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [59556] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4544), 1, + ACTIONS(4499), 1, anon_sym_SEMI, - ACTIONS(4120), 2, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1946), 2, + STATE(2002), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166146,60 +172751,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58173] = 22, + [59642] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4546), 1, + ACTIONS(4501), 1, anon_sym_RBRACK, - ACTIONS(4120), 2, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1947), 2, + STATE(2003), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166210,60 +172815,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58259] = 22, + [59728] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4548), 1, + ACTIONS(4503), 1, anon_sym_SEMI, - ACTIONS(4120), 2, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1948), 2, + STATE(2004), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166274,118 +172879,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58345] = 16, - ACTIONS(29), 1, - anon_sym_LT, + [59814] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4314), 1, - sym_identifier, - ACTIONS(4316), 1, - anon_sym_LBRACE, - ACTIONS(4320), 1, - anon_sym_STAR, - ACTIONS(4326), 1, - anon_sym_COLON_COLON, - ACTIONS(4330), 1, - sym_metavariable, - STATE(2562), 1, - sym_scoped_identifier, - STATE(3551), 1, - sym__use_clause, - STATE(3653), 1, - sym_generic_type_with_turbofish, - STATE(3666), 1, - sym_bracketed_type, - STATE(1949), 2, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_AMP, + ACTIONS(4075), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4159), 1, + anon_sym_DOT_DOT, + ACTIONS(4505), 1, + anon_sym_SEMI, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4087), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2005), 2, sym_line_comment, sym_block_comment, - ACTIONS(4328), 3, - sym_self, - sym_super, - sym_crate, - STATE(3067), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4322), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [58419] = 22, + ACTIONS(4059), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4109), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [59900] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4550), 1, - anon_sym_RBRACK, - ACTIONS(4120), 2, + ACTIONS(4507), 1, + anon_sym_SEMI, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1950), 2, + STATE(2006), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166396,60 +173007,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58505] = 22, + [59986] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4552), 1, - anon_sym_COMMA, - ACTIONS(4120), 2, + ACTIONS(4509), 1, + anon_sym_RBRACK, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1951), 2, + STATE(2007), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166460,59 +173071,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58591] = 21, + [60072] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4354), 1, + ACTIONS(4299), 1, + anon_sym_EQ_GT, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(4360), 1, + ACTIONS(4331), 1, anon_sym_QMARK, - ACTIONS(4364), 1, + ACTIONS(4333), 1, anon_sym_DOT, - ACTIONS(4366), 1, - anon_sym_as, - ACTIONS(4384), 1, + ACTIONS(4401), 1, anon_sym_CARET, - ACTIONS(4386), 1, + ACTIONS(4403), 1, anon_sym_AMP, - ACTIONS(4388), 1, + ACTIONS(4405), 1, anon_sym_PIPE, - ACTIONS(4392), 1, + ACTIONS(4409), 1, anon_sym_PIPE_PIPE, - ACTIONS(4452), 1, + ACTIONS(4417), 1, + anon_sym_as, + ACTIONS(4457), 1, anon_sym_EQ, - ACTIONS(4554), 1, + ACTIONS(4491), 1, anon_sym_DOT_DOT, - ACTIONS(4356), 2, + ACTIONS(4511), 1, + anon_sym_AMP_AMP, + ACTIONS(4397), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4362), 2, + ACTIONS(4411), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4376), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(4396), 2, + ACTIONS(4415), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4556), 2, + ACTIONS(4493), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1952), 2, + STATE(2008), 2, sym_line_comment, sym_block_comment, - ACTIONS(4358), 3, + ACTIONS(4399), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4394), 4, + ACTIONS(4413), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4450), 10, + ACTIONS(4455), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166523,44 +173135,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58675] = 16, + [60158] = 16, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4314), 1, + ACTIONS(4261), 1, sym_identifier, - ACTIONS(4316), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - ACTIONS(4320), 1, + ACTIONS(4267), 1, anon_sym_STAR, - ACTIONS(4326), 1, + ACTIONS(4273), 1, anon_sym_COLON_COLON, - ACTIONS(4330), 1, + ACTIONS(4277), 1, sym_metavariable, - STATE(2562), 1, + STATE(2593), 1, sym_scoped_identifier, - STATE(3468), 1, - sym__use_clause, - STATE(3653), 1, - sym_generic_type_with_turbofish, - STATE(3666), 1, + STATE(3612), 1, sym_bracketed_type, - STATE(1953), 2, + STATE(3615), 1, + sym_generic_type_with_turbofish, + STATE(3655), 1, + sym__use_clause, + STATE(2009), 2, sym_line_comment, sym_block_comment, - ACTIONS(4328), 3, + ACTIONS(4275), 3, sym_self, sym_super, sym_crate, - STATE(3067), 4, + STATE(3014), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4322), 20, + ACTIONS(4269), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166581,60 +173193,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [58749] = 22, + [60232] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4558), 1, - anon_sym_RBRACK, - ACTIONS(4120), 2, + ACTIONS(4327), 1, + anon_sym_SEMI, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1954), 2, + STATE(2010), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166645,59 +173257,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58835] = 21, + [60318] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4354), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(4360), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(4364), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(4366), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4384), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4386), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4388), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4392), 1, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4452), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4554), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4356), 2, + ACTIONS(4513), 1, + anon_sym_RBRACK, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4362), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4396), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4436), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(4556), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1955), 2, + STATE(2011), 2, sym_line_comment, sym_block_comment, - ACTIONS(4358), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4394), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4450), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166708,60 +173321,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58919] = 22, + [60404] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4560), 1, - anon_sym_RBRACK, - ACTIONS(4120), 2, + ACTIONS(4515), 1, + anon_sym_COMMA, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1956), 2, + STATE(2012), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166772,60 +173385,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59005] = 22, + [60490] = 16, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4354), 1, + ACTIONS(4261), 1, + sym_identifier, + ACTIONS(4263), 1, + anon_sym_LBRACE, + ACTIONS(4267), 1, + anon_sym_STAR, + ACTIONS(4273), 1, + anon_sym_COLON_COLON, + ACTIONS(4277), 1, + sym_metavariable, + STATE(2593), 1, + sym_scoped_identifier, + STATE(3407), 1, + sym__use_clause, + STATE(3612), 1, + sym_bracketed_type, + STATE(3615), 1, + sym_generic_type_with_turbofish, + STATE(2013), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4275), 3, + sym_self, + sym_super, + sym_crate, + STATE(3014), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4269), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [60564] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(4360), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(4364), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(4366), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4384), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4386), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4388), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4392), 1, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4452), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4502), 1, - anon_sym_EQ_GT, - ACTIONS(4554), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4562), 1, - anon_sym_AMP_AMP, - ACTIONS(4356), 2, + ACTIONS(4517), 1, + anon_sym_SEMI, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4362), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4396), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4556), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1957), 2, + STATE(2014), 2, sym_line_comment, sym_block_comment, - ACTIONS(4358), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4394), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4450), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166836,60 +173507,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59091] = 22, + [60650] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4564), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, + ACTIONS(4519), 1, + anon_sym_COMMA, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1958), 2, + STATE(2015), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166900,60 +173571,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59177] = 22, + [60736] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4566), 1, + ACTIONS(4521), 1, anon_sym_RBRACK, - ACTIONS(4120), 2, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1959), 2, + STATE(2016), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166964,60 +173635,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59263] = 22, + [60822] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, + ACTIONS(4523), 1, + anon_sym_RBRACK, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1960), 2, + STATE(2017), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167028,44 +173699,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59349] = 16, + [60908] = 16, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4314), 1, + ACTIONS(4261), 1, sym_identifier, - ACTIONS(4316), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - ACTIONS(4320), 1, + ACTIONS(4267), 1, anon_sym_STAR, - ACTIONS(4326), 1, + ACTIONS(4273), 1, anon_sym_COLON_COLON, - ACTIONS(4330), 1, + ACTIONS(4277), 1, sym_metavariable, - STATE(2562), 1, + STATE(2593), 1, sym_scoped_identifier, - STATE(3501), 1, - sym__use_clause, - STATE(3653), 1, - sym_generic_type_with_turbofish, - STATE(3666), 1, + STATE(3612), 1, sym_bracketed_type, - STATE(1961), 2, + STATE(3615), 1, + sym_generic_type_with_turbofish, + STATE(3809), 1, + sym__use_clause, + STATE(2018), 2, sym_line_comment, sym_block_comment, - ACTIONS(4328), 3, + ACTIONS(4275), 3, sym_self, sym_super, sym_crate, - STATE(3067), 4, + STATE(3014), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4322), 20, + ACTIONS(4269), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -167086,60 +173757,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [59423] = 22, + [60982] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4568), 1, - anon_sym_RBRACK, - ACTIONS(4120), 2, + ACTIONS(4525), 1, + anon_sym_COMMA, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1962), 2, + STATE(2019), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167150,60 +173821,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59509] = 22, + [61068] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4570), 1, - anon_sym_RBRACK, - ACTIONS(4120), 2, + ACTIONS(4297), 1, + anon_sym_COMMA, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1963), 2, + STATE(2020), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167214,60 +173885,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59595] = 22, + [61154] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4572), 1, + ACTIONS(4527), 1, anon_sym_RBRACK, - ACTIONS(4120), 2, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1964), 2, + STATE(2021), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167278,60 +173949,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59681] = 22, + [61240] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4574), 1, + ACTIONS(4529), 1, anon_sym_RBRACK, - ACTIONS(4120), 2, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1965), 2, + STATE(2022), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167342,60 +174013,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59767] = 22, + [61326] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4576), 1, - anon_sym_COMMA, - ACTIONS(4120), 2, + ACTIONS(4531), 1, + anon_sym_RBRACK, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1966), 2, + STATE(2023), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167406,60 +174077,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59853] = 22, + [61412] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(4331), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(4333), 1, anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4401), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4403), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4405), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4407), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4409), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4417), 1, + anon_sym_as, + ACTIONS(4457), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4491), 1, anon_sym_DOT_DOT, - ACTIONS(4374), 1, - anon_sym_COMMA, - ACTIONS(4120), 2, + ACTIONS(4397), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4411), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4415), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4493), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1967), 2, + STATE(2024), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4399), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4413), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4455), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167470,60 +174139,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59939] = 22, + [61495] = 17, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3771), 1, + anon_sym_where, + ACTIONS(4533), 1, + sym_identifier, + ACTIONS(4537), 1, + anon_sym_COLON_COLON, + ACTIONS(4543), 1, + sym_metavariable, + STATE(3226), 1, + sym_scoped_type_identifier, + STATE(3531), 1, + sym_generic_type, + STATE(3550), 1, + sym_bracketed_type, + STATE(3571), 1, + sym_scoped_identifier, + STATE(3702), 1, + sym_generic_type_with_turbofish, + STATE(2025), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3769), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + ACTIONS(4539), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(4541), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4535), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [61570] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4169), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4171), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4173), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4175), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4177), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4183), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4189), 1, anon_sym_DOT_DOT, - ACTIONS(4578), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, + ACTIONS(4165), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4179), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4187), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1968), 2, + STATE(2026), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4167), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4185), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4181), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167534,60 +174259,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [60025] = 22, + [61653] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4303), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4305), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4307), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4309), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4311), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4319), 1, anon_sym_DOT_DOT, - ACTIONS(4580), 1, - anon_sym_COMMA, - ACTIONS(4120), 2, + ACTIONS(4351), 1, + anon_sym_EQ, + ACTIONS(4291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4313), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4317), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4321), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1969), 2, + STATE(2027), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4293), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4315), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4349), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167598,60 +174321,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [60111] = 22, + [61736] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4303), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4305), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4307), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4309), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4311), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4351), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4367), 1, anon_sym_DOT_DOT, - ACTIONS(4582), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, + ACTIONS(4291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4313), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4317), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4369), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1970), 2, + STATE(2028), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4293), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4315), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4349), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167662,124 +174383,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [60197] = 22, + [61819] = 17, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, - anon_sym_AMP, - ACTIONS(4128), 1, - anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4584), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4140), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1971), 2, + ACTIONS(3771), 1, + anon_sym_where, + ACTIONS(4537), 1, + anon_sym_COLON_COLON, + ACTIONS(4543), 1, + sym_metavariable, + ACTIONS(4545), 1, + sym_identifier, + STATE(3167), 1, + sym_scoped_type_identifier, + STATE(3460), 1, + sym_generic_type, + STATE(3550), 1, + sym_bracketed_type, + STATE(3571), 1, + sym_scoped_identifier, + STATE(3702), 1, + sym_generic_type_with_turbofish, + STATE(2029), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [60283] = 22, + ACTIONS(3769), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + ACTIONS(4539), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(4541), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4535), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [61894] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(4331), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(4333), 1, anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4401), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4403), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4405), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4407), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4409), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4417), 1, + anon_sym_as, + ACTIONS(4423), 1, anon_sym_DOT_DOT, - ACTIONS(4586), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, + ACTIONS(4457), 1, + anon_sym_EQ, + ACTIONS(4397), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4411), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4415), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4425), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1972), 2, + STATE(2030), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4399), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4413), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4455), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167790,60 +174503,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [60369] = 22, + [61977] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3757), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3761), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(3909), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4588), 1, - anon_sym_COMMA, - ACTIONS(4120), 2, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4087), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1973), 2, + STATE(2031), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4085), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167854,47 +174565,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [60455] = 17, + [62060] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3868), 1, + ACTIONS(3771), 1, anon_sym_where, - ACTIONS(4590), 1, - sym_identifier, - ACTIONS(4594), 1, + ACTIONS(4537), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, + ACTIONS(4543), 1, sym_metavariable, - STATE(2953), 1, + ACTIONS(4547), 1, + sym_identifier, + STATE(3098), 1, sym_scoped_type_identifier, - STATE(3239), 1, + STATE(3340), 1, sym_generic_type, - STATE(3513), 1, + STATE(3550), 1, + sym_bracketed_type, + STATE(3571), 1, sym_scoped_identifier, - STATE(3643), 1, + STATE(3702), 1, sym_generic_type_with_turbofish, - STATE(3670), 1, - sym_bracketed_type, - STATE(1974), 2, + STATE(2032), 2, sym_line_comment, sym_block_comment, - ACTIONS(3866), 3, + ACTIONS(3769), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4596), 3, + ACTIONS(4539), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4598), 3, + ACTIONS(4541), 3, sym_self, sym_super, sym_crate, - ACTIONS(4592), 17, + ACTIONS(4535), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -167912,47 +174623,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [60530] = 17, + [62135] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3868), 1, + ACTIONS(3771), 1, anon_sym_where, - ACTIONS(4594), 1, + ACTIONS(4537), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, + ACTIONS(4543), 1, sym_metavariable, - ACTIONS(4602), 1, + ACTIONS(4549), 1, sym_identifier, - STATE(3178), 1, + STATE(2937), 1, sym_scoped_type_identifier, - STATE(3474), 1, + STATE(3438), 1, sym_generic_type, - STATE(3513), 1, + STATE(3550), 1, + sym_bracketed_type, + STATE(3571), 1, sym_scoped_identifier, - STATE(3643), 1, + STATE(3702), 1, sym_generic_type_with_turbofish, - STATE(3670), 1, - sym_bracketed_type, - STATE(1975), 2, + STATE(2033), 2, sym_line_comment, sym_block_comment, - ACTIONS(3866), 3, + ACTIONS(3769), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4596), 3, + ACTIONS(4539), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4598), 3, + ACTIONS(4541), 3, sym_self, sym_super, sym_crate, - ACTIONS(4592), 17, + ACTIONS(4535), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -167970,47 +174681,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [60605] = 17, + [62210] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3868), 1, + ACTIONS(3771), 1, anon_sym_where, - ACTIONS(4594), 1, + ACTIONS(4537), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, + ACTIONS(4543), 1, sym_metavariable, - ACTIONS(4604), 1, + ACTIONS(4551), 1, sym_identifier, - STATE(3094), 1, + STATE(3220), 1, sym_scoped_type_identifier, - STATE(3289), 1, + STATE(3523), 1, sym_generic_type, - STATE(3513), 1, + STATE(3550), 1, + sym_bracketed_type, + STATE(3571), 1, sym_scoped_identifier, - STATE(3643), 1, + STATE(3702), 1, sym_generic_type_with_turbofish, - STATE(3670), 1, - sym_bracketed_type, - STATE(1976), 2, + STATE(2034), 2, sym_line_comment, sym_block_comment, - ACTIONS(3866), 3, + ACTIONS(3769), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4596), 3, + ACTIONS(4539), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4598), 3, + ACTIONS(4541), 3, sym_self, sym_super, sym_crate, - ACTIONS(4592), 17, + ACTIONS(4535), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -168028,163 +174739,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [60680] = 17, - ACTIONS(29), 1, - anon_sym_LT, + [62285] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3868), 1, - anon_sym_where, - ACTIONS(4594), 1, - anon_sym_COLON_COLON, - ACTIONS(4600), 1, - sym_metavariable, - ACTIONS(4606), 1, - sym_identifier, - STATE(3165), 1, - sym_scoped_type_identifier, - STATE(3429), 1, - sym_generic_type, - STATE(3513), 1, - sym_scoped_identifier, - STATE(3643), 1, - sym_generic_type_with_turbofish, - STATE(3670), 1, - sym_bracketed_type, - STATE(1977), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3866), 3, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_AMP, + ACTIONS(4075), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4089), 1, + anon_sym_DOT_DOT, + ACTIONS(4111), 1, + anon_sym_EQ, + ACTIONS(4069), 2, anon_sym_PLUS, - ACTIONS(4596), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(4598), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4592), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [60755] = 17, - ACTIONS(29), 1, + anon_sym_DASH, + ACTIONS(4081), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4087), 2, + anon_sym_GT, anon_sym_LT, + ACTIONS(4091), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2035), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4059), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4085), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4109), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [62368] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3868), 1, - anon_sym_where, - ACTIONS(4594), 1, - anon_sym_COLON_COLON, - ACTIONS(4600), 1, - sym_metavariable, - ACTIONS(4608), 1, - sym_identifier, - STATE(3155), 1, - sym_scoped_type_identifier, - STATE(3410), 1, - sym_generic_type, - STATE(3513), 1, - sym_scoped_identifier, - STATE(3643), 1, - sym_generic_type_with_turbofish, - STATE(3670), 1, - sym_bracketed_type, - STATE(1978), 2, + ACTIONS(3757), 1, + anon_sym_LBRACK, + ACTIONS(3761), 1, + anon_sym_QMARK, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3909), 1, + anon_sym_as, + ACTIONS(4169), 1, + anon_sym_CARET, + ACTIONS(4171), 1, + anon_sym_AMP, + ACTIONS(4173), 1, + anon_sym_PIPE, + ACTIONS(4175), 1, + anon_sym_AMP_AMP, + ACTIONS(4177), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4183), 1, + anon_sym_EQ, + ACTIONS(4227), 1, + anon_sym_DOT_DOT, + ACTIONS(4165), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4179), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4187), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4229), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2036), 2, sym_line_comment, sym_block_comment, - ACTIONS(3866), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - ACTIONS(4596), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(4598), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4592), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [60830] = 17, + ACTIONS(4167), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4185), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4181), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [62451] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3868), 1, + ACTIONS(3771), 1, anon_sym_where, - ACTIONS(4594), 1, + ACTIONS(4537), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, + ACTIONS(4543), 1, sym_metavariable, - ACTIONS(4610), 1, + ACTIONS(4553), 1, sym_identifier, - STATE(3168), 1, + STATE(3218), 1, sym_scoped_type_identifier, - STATE(3458), 1, + STATE(3521), 1, sym_generic_type, - STATE(3513), 1, + STATE(3550), 1, + sym_bracketed_type, + STATE(3571), 1, sym_scoped_identifier, - STATE(3643), 1, + STATE(3702), 1, sym_generic_type_with_turbofish, - STATE(3670), 1, - sym_bracketed_type, - STATE(1979), 2, + STATE(2037), 2, sym_line_comment, sym_block_comment, - ACTIONS(3866), 3, + ACTIONS(3769), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4596), 3, + ACTIONS(4539), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4598), 3, + ACTIONS(4541), 3, sym_self, sym_super, sym_crate, - ACTIONS(4592), 17, + ACTIONS(4535), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -168202,47 +174921,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [60905] = 17, + [62526] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3868), 1, + ACTIONS(3771), 1, anon_sym_where, - ACTIONS(4594), 1, + ACTIONS(4537), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, + ACTIONS(4543), 1, sym_metavariable, - ACTIONS(4612), 1, + ACTIONS(4555), 1, sym_identifier, - STATE(3172), 1, + STATE(3198), 1, sym_scoped_type_identifier, - STATE(3464), 1, + STATE(3496), 1, sym_generic_type, - STATE(3513), 1, + STATE(3550), 1, + sym_bracketed_type, + STATE(3571), 1, sym_scoped_identifier, - STATE(3643), 1, + STATE(3702), 1, sym_generic_type_with_turbofish, - STATE(3670), 1, - sym_bracketed_type, - STATE(1980), 2, + STATE(2038), 2, sym_line_comment, sym_block_comment, - ACTIONS(3866), 3, + ACTIONS(3769), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4596), 3, + ACTIONS(4539), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4598), 3, + ACTIONS(4541), 3, sym_self, sym_super, sym_crate, - ACTIONS(4592), 17, + ACTIONS(4535), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -168260,47 +174979,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [60980] = 17, + [62601] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3868), 1, + ACTIONS(3771), 1, anon_sym_where, - ACTIONS(4594), 1, + ACTIONS(4537), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, + ACTIONS(4543), 1, sym_metavariable, - ACTIONS(4614), 1, + ACTIONS(4557), 1, sym_identifier, - STATE(3174), 1, + STATE(3207), 1, sym_scoped_type_identifier, - STATE(3466), 1, - sym_generic_type, STATE(3513), 1, + sym_generic_type, + STATE(3550), 1, + sym_bracketed_type, + STATE(3571), 1, sym_scoped_identifier, - STATE(3643), 1, + STATE(3702), 1, sym_generic_type_with_turbofish, - STATE(3670), 1, - sym_bracketed_type, - STATE(1981), 2, + STATE(2039), 2, sym_line_comment, sym_block_comment, - ACTIONS(3866), 3, + ACTIONS(3769), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4596), 3, + ACTIONS(4539), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4598), 3, + ACTIONS(4541), 3, sym_self, sym_super, sym_crate, - ACTIONS(4592), 17, + ACTIONS(4535), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -168318,19 +175037,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [61055] = 5, + [62676] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1982), 2, + STATE(2040), 2, sym_line_comment, sym_block_comment, - ACTIONS(4618), 3, + ACTIONS(4561), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4616), 29, + ACTIONS(4559), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -168360,19 +175079,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [61102] = 5, + [62723] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1983), 2, + STATE(2041), 2, sym_line_comment, sym_block_comment, - ACTIONS(4622), 3, + ACTIONS(4565), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4620), 29, + ACTIONS(4563), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -168402,19 +175121,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [61149] = 5, + [62770] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1984), 2, + STATE(2042), 2, sym_line_comment, sym_block_comment, - ACTIONS(4626), 3, + ACTIONS(4569), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4624), 29, + ACTIONS(4567), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -168444,231 +175163,35 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [61196] = 13, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(2098), 1, - anon_sym_COLON_COLON, - ACTIONS(4628), 1, - sym_identifier, - ACTIONS(4634), 1, - sym_metavariable, - STATE(2374), 1, - sym_scoped_identifier, - STATE(3536), 1, - sym_attribute, - STATE(3732), 1, - sym_bracketed_type, - STATE(3800), 1, - sym_generic_type_with_turbofish, - STATE(1985), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4632), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4630), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [61258] = 13, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(2098), 1, - anon_sym_COLON_COLON, - ACTIONS(4628), 1, - sym_identifier, - ACTIONS(4634), 1, - sym_metavariable, - STATE(2374), 1, - sym_scoped_identifier, - STATE(3645), 1, - sym_attribute, - STATE(3732), 1, - sym_bracketed_type, - STATE(3800), 1, - sym_generic_type_with_turbofish, - STATE(1986), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4632), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4630), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [61320] = 13, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(2098), 1, - anon_sym_COLON_COLON, - ACTIONS(4628), 1, - sym_identifier, - ACTIONS(4634), 1, - sym_metavariable, - STATE(2374), 1, - sym_scoped_identifier, - STATE(3547), 1, - sym_attribute, - STATE(3732), 1, - sym_bracketed_type, - STATE(3800), 1, - sym_generic_type_with_turbofish, - STATE(1987), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4632), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4630), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [61382] = 13, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(2098), 1, - anon_sym_COLON_COLON, - ACTIONS(4628), 1, - sym_identifier, - ACTIONS(4634), 1, - sym_metavariable, - STATE(2374), 1, - sym_scoped_identifier, - STATE(3732), 1, - sym_bracketed_type, - STATE(3742), 1, - sym_attribute, - STATE(3800), 1, - sym_generic_type_with_turbofish, - STATE(1988), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4632), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4630), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [61444] = 13, + [62817] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2098), 1, + ACTIONS(1649), 1, anon_sym_COLON_COLON, - ACTIONS(4628), 1, + ACTIONS(4571), 1, sym_identifier, - ACTIONS(4634), 1, + ACTIONS(4577), 1, sym_metavariable, - STATE(2374), 1, + STATE(2455), 1, sym_scoped_identifier, - STATE(3660), 1, + STATE(3604), 1, sym_attribute, - STATE(3732), 1, + STATE(3798), 1, sym_bracketed_type, - STATE(3800), 1, + STATE(3872), 1, sym_generic_type_with_turbofish, - STATE(1989), 2, + STATE(2043), 2, sym_line_comment, sym_block_comment, - ACTIONS(4632), 3, + ACTIONS(4575), 3, sym_self, sym_super, sym_crate, - ACTIONS(4630), 20, + ACTIONS(4573), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -168689,35 +175212,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61506] = 13, + [62879] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2098), 1, + ACTIONS(1649), 1, anon_sym_COLON_COLON, - ACTIONS(4628), 1, + ACTIONS(4571), 1, sym_identifier, - ACTIONS(4634), 1, + ACTIONS(4577), 1, sym_metavariable, - STATE(2374), 1, + STATE(2455), 1, sym_scoped_identifier, - STATE(3688), 1, + STATE(3656), 1, sym_attribute, - STATE(3732), 1, + STATE(3798), 1, sym_bracketed_type, - STATE(3800), 1, + STATE(3872), 1, sym_generic_type_with_turbofish, - STATE(1990), 2, + STATE(2044), 2, sym_line_comment, sym_block_comment, - ACTIONS(4632), 3, + ACTIONS(4575), 3, sym_self, sym_super, sym_crate, - ACTIONS(4630), 20, + ACTIONS(4573), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -168738,35 +175261,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61568] = 13, + [62941] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2098), 1, + ACTIONS(1649), 1, anon_sym_COLON_COLON, - ACTIONS(4628), 1, + ACTIONS(4571), 1, sym_identifier, - ACTIONS(4634), 1, + ACTIONS(4577), 1, sym_metavariable, - STATE(2374), 1, + STATE(2455), 1, sym_scoped_identifier, - STATE(3602), 1, + STATE(3666), 1, sym_attribute, - STATE(3732), 1, + STATE(3798), 1, sym_bracketed_type, - STATE(3800), 1, + STATE(3872), 1, sym_generic_type_with_turbofish, - STATE(1991), 2, + STATE(2045), 2, sym_line_comment, sym_block_comment, - ACTIONS(4632), 3, + ACTIONS(4575), 3, sym_self, sym_super, sym_crate, - ACTIONS(4630), 20, + ACTIONS(4573), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -168787,35 +175310,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61630] = 13, + [63003] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2098), 1, + ACTIONS(1649), 1, anon_sym_COLON_COLON, - ACTIONS(4628), 1, + ACTIONS(4571), 1, sym_identifier, - ACTIONS(4634), 1, + ACTIONS(4577), 1, sym_metavariable, - STATE(2374), 1, + STATE(2455), 1, sym_scoped_identifier, - STATE(3557), 1, + STATE(3669), 1, sym_attribute, - STATE(3732), 1, + STATE(3798), 1, sym_bracketed_type, - STATE(3800), 1, + STATE(3872), 1, sym_generic_type_with_turbofish, - STATE(1992), 2, + STATE(2046), 2, sym_line_comment, sym_block_comment, - ACTIONS(4632), 3, + ACTIONS(4575), 3, sym_self, sym_super, sym_crate, - ACTIONS(4630), 20, + ACTIONS(4573), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -168836,35 +175359,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61692] = 13, + [63065] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2098), 1, + ACTIONS(1649), 1, anon_sym_COLON_COLON, - ACTIONS(4628), 1, + ACTIONS(4571), 1, sym_identifier, - ACTIONS(4634), 1, + ACTIONS(4577), 1, sym_metavariable, - STATE(2374), 1, + STATE(2455), 1, sym_scoped_identifier, - STATE(3626), 1, + STATE(3792), 1, sym_attribute, - STATE(3732), 1, + STATE(3798), 1, sym_bracketed_type, - STATE(3800), 1, + STATE(3872), 1, sym_generic_type_with_turbofish, - STATE(1993), 2, + STATE(2047), 2, sym_line_comment, sym_block_comment, - ACTIONS(4632), 3, + ACTIONS(4575), 3, sym_self, sym_super, sym_crate, - ACTIONS(4630), 20, + ACTIONS(4573), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -168885,33 +175408,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61754] = 12, + [63127] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4636), 1, + ACTIONS(1649), 1, + anon_sym_COLON_COLON, + ACTIONS(4571), 1, sym_identifier, - ACTIONS(4640), 1, + ACTIONS(4577), 1, + sym_metavariable, + STATE(2455), 1, + sym_scoped_identifier, + STATE(3573), 1, + sym_attribute, + STATE(3798), 1, + sym_bracketed_type, + STATE(3872), 1, + sym_generic_type_with_turbofish, + STATE(2048), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4575), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4573), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [63189] = 13, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1649), 1, anon_sym_COLON_COLON, - ACTIONS(4644), 1, + ACTIONS(4571), 1, + sym_identifier, + ACTIONS(4577), 1, sym_metavariable, - STATE(3197), 1, + STATE(2455), 1, sym_scoped_identifier, - STATE(3653), 1, + STATE(3798), 1, + sym_bracketed_type, + STATE(3844), 1, + sym_attribute, + STATE(3872), 1, sym_generic_type_with_turbofish, - STATE(3666), 1, + STATE(2049), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4575), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4573), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [63251] = 13, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1649), 1, + anon_sym_COLON_COLON, + ACTIONS(4571), 1, + sym_identifier, + ACTIONS(4577), 1, + sym_metavariable, + STATE(2455), 1, + sym_scoped_identifier, + STATE(3721), 1, + sym_attribute, + STATE(3798), 1, sym_bracketed_type, - STATE(1994), 2, + STATE(3872), 1, + sym_generic_type_with_turbofish, + STATE(2050), 2, sym_line_comment, sym_block_comment, - ACTIONS(4642), 3, + ACTIONS(4575), 3, sym_self, sym_super, sym_crate, - ACTIONS(4638), 20, + ACTIONS(4573), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -168932,33 +175555,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61813] = 12, + [63313] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4640), 1, + ACTIONS(1649), 1, anon_sym_COLON_COLON, - ACTIONS(4646), 1, + ACTIONS(4571), 1, sym_identifier, - ACTIONS(4652), 1, + ACTIONS(4577), 1, sym_metavariable, - STATE(3306), 1, + STATE(2455), 1, sym_scoped_identifier, - STATE(3653), 1, + STATE(3607), 1, + sym_attribute, + STATE(3798), 1, + sym_bracketed_type, + STATE(3872), 1, sym_generic_type_with_turbofish, - STATE(3666), 1, + STATE(2051), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4575), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4573), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [63375] = 12, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4579), 1, + sym_identifier, + ACTIONS(4583), 1, + anon_sym_COLON_COLON, + ACTIONS(4587), 1, + sym_metavariable, + STATE(3495), 1, + sym_scoped_identifier, + STATE(3612), 1, sym_bracketed_type, - STATE(1995), 2, + STATE(3615), 1, + sym_generic_type_with_turbofish, + STATE(2052), 2, sym_line_comment, sym_block_comment, - ACTIONS(4650), 3, + ACTIONS(4585), 3, sym_self, sym_super, sym_crate, - ACTIONS(4648), 20, + ACTIONS(4581), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -168979,17 +175651,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61872] = 5, + [63434] = 12, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(951), 1, + ACTIONS(4583), 1, + anon_sym_COLON_COLON, + ACTIONS(4589), 1, + sym_identifier, + ACTIONS(4595), 1, + sym_metavariable, + STATE(3299), 1, + sym_scoped_identifier, + STATE(3612), 1, + sym_bracketed_type, + STATE(3615), 1, + sym_generic_type_with_turbofish, + STATE(2053), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4593), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4591), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [63493] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1211), 1, anon_sym_DOT_DOT, - STATE(1996), 2, + STATE(2054), 2, sym_line_comment, sym_block_comment, - ACTIONS(953), 20, + ACTIONS(1213), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169010,17 +175729,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_else, anon_sym_in, - [61908] = 5, + [63529] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1013), 1, + ACTIONS(1229), 1, anon_sym_DOT_DOT, - STATE(1997), 2, + STATE(2055), 2, sym_line_comment, sym_block_comment, - ACTIONS(1015), 20, + ACTIONS(1231), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169041,20 +175760,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_else, anon_sym_in, - [61944] = 6, + [63565] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3544), 1, + ACTIONS(3414), 1, anon_sym_COLON, - ACTIONS(3548), 2, + ACTIONS(3418), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1998), 2, + STATE(2056), 2, sym_line_comment, sym_block_comment, - ACTIONS(3542), 17, + ACTIONS(3412), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -169072,20 +175791,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [61981] = 6, + [63602] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3528), 1, + ACTIONS(3461), 1, anon_sym_COLON, - ACTIONS(3532), 2, + ACTIONS(3465), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1999), 2, + STATE(2057), 2, sym_line_comment, sym_block_comment, - ACTIONS(3526), 17, + ACTIONS(3459), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -169103,59 +175822,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [62018] = 14, + [63639] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4656), 1, - anon_sym_LPAREN, - ACTIONS(4658), 1, - anon_sym_LBRACE, - ACTIONS(4660), 1, + ACTIONS(3453), 1, anon_sym_COLON, - ACTIONS(4662), 1, + ACTIONS(3457), 2, anon_sym_BANG, - ACTIONS(4664), 1, - anon_sym_AT, - ACTIONS(4666), 1, - anon_sym_DOT_DOT, - ACTIONS(4670), 1, anon_sym_COLON_COLON, - ACTIONS(4672), 1, - anon_sym_LT2, - STATE(2027), 1, - sym_type_arguments, - ACTIONS(4668), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2000), 2, + STATE(2058), 2, sym_line_comment, sym_block_comment, - ACTIONS(4654), 9, + ACTIONS(3451), 17, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, anon_sym_else, - anon_sym_in, - [62071] = 6, + anon_sym_LT2, + [63676] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3536), 1, + ACTIONS(3406), 1, anon_sym_COLON, - ACTIONS(3540), 2, + ACTIONS(3410), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(2001), 2, + STATE(2059), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 17, + ACTIONS(3404), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -169173,58 +175884,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [62108] = 6, + [63713] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3503), 1, + ACTIONS(4599), 1, + anon_sym_LPAREN, + ACTIONS(4601), 1, + anon_sym_LBRACE, + ACTIONS(4603), 1, anon_sym_COLON, - ACTIONS(3507), 2, + ACTIONS(4605), 1, anon_sym_BANG, + ACTIONS(4607), 1, + anon_sym_AT, + ACTIONS(4609), 1, + anon_sym_DOT_DOT, + ACTIONS(4613), 1, anon_sym_COLON_COLON, - STATE(2002), 2, + ACTIONS(4615), 1, + anon_sym_LT2, + STATE(2083), 1, + sym_type_arguments, + ACTIONS(4611), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2060), 2, sym_line_comment, sym_block_comment, - ACTIONS(3501), 17, + ACTIONS(4597), 9, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, anon_sym_else, - anon_sym_LT2, - [62145] = 10, + anon_sym_in, + [63766] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4662), 1, + ACTIONS(4605), 1, anon_sym_BANG, - ACTIONS(4672), 1, + ACTIONS(4615), 1, anon_sym_LT2, - ACTIONS(4674), 1, + ACTIONS(4617), 1, anon_sym_LPAREN, - ACTIONS(4676), 1, + ACTIONS(4619), 1, anon_sym_COLON_COLON, - STATE(2027), 1, + STATE(2083), 1, sym_type_arguments, - STATE(2097), 1, + STATE(2156), 1, sym_parameters, - STATE(2003), 2, + STATE(2061), 2, sym_line_comment, sym_block_comment, - ACTIONS(3458), 13, + ACTIONS(3369), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169238,22 +175957,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [62189] = 6, + [63810] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3530), 2, + ACTIONS(3455), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2004), 2, + STATE(2062), 2, sym_line_comment, sym_block_comment, - ACTIONS(3526), 3, + ACTIONS(3451), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3532), 14, + ACTIONS(3457), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -169268,17 +175987,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [62225] = 5, + [63846] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3686), 1, + ACTIONS(3563), 1, anon_sym_COLON, - STATE(2005), 2, + STATE(2063), 2, sym_line_comment, sym_block_comment, - ACTIONS(3684), 18, + ACTIONS(3561), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -169297,17 +176016,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_in, - [62259] = 5, + [63880] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3784), 1, + ACTIONS(3531), 1, anon_sym_COLON, - STATE(2006), 2, + STATE(2064), 2, sym_line_comment, sym_block_comment, - ACTIONS(3782), 18, + ACTIONS(3529), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -169326,22 +176045,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_in, - [62293] = 6, + [63914] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3505), 2, + ACTIONS(3463), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2007), 2, + STATE(2065), 2, sym_line_comment, sym_block_comment, - ACTIONS(3501), 3, + ACTIONS(3459), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3507), 14, + ACTIONS(3465), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -169356,22 +176075,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [62329] = 6, + [63950] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3538), 2, + ACTIONS(3408), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2008), 2, + STATE(2066), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 3, + ACTIONS(3404), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3540), 14, + ACTIONS(3410), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -169386,47 +176105,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [62365] = 6, + [63986] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3546), 2, + ACTIONS(3555), 1, anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2009), 2, + STATE(2067), 2, sym_line_comment, sym_block_comment, - ACTIONS(3542), 3, - anon_sym_LBRACE, - anon_sym_for, - anon_sym_LT2, - ACTIONS(3548), 14, + ACTIONS(3553), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_BANG, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, anon_sym_else, anon_sym_in, - [62401] = 5, + [64020] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3800), 1, + ACTIONS(3547), 1, anon_sym_COLON, - STATE(2010), 2, + STATE(2068), 2, sym_line_comment, sym_block_comment, - ACTIONS(3798), 18, + ACTIONS(3545), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -169445,27 +176163,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_in, - [62435] = 10, + [64054] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4662), 1, + ACTIONS(4605), 1, anon_sym_BANG, - ACTIONS(4672), 1, + ACTIONS(4615), 1, anon_sym_LT2, - ACTIONS(4674), 1, + ACTIONS(4617), 1, anon_sym_LPAREN, - ACTIONS(4676), 1, + ACTIONS(4619), 1, anon_sym_COLON_COLON, - STATE(2027), 1, + STATE(2083), 1, sym_type_arguments, - STATE(2097), 1, + STATE(2156), 1, sym_parameters, - STATE(2011), 2, + STATE(2069), 2, sym_line_comment, sym_block_comment, - ACTIONS(3428), 13, + ACTIONS(3357), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169479,27 +176197,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [62479] = 10, + [64098] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4662), 1, + ACTIONS(4605), 1, anon_sym_BANG, - ACTIONS(4672), 1, + ACTIONS(4615), 1, anon_sym_LT2, - ACTIONS(4674), 1, + ACTIONS(4617), 1, anon_sym_LPAREN, - ACTIONS(4676), 1, + ACTIONS(4619), 1, anon_sym_COLON_COLON, - STATE(2027), 1, + STATE(2083), 1, sym_type_arguments, - STATE(2097), 1, + STATE(2156), 1, sym_parameters, - STATE(2012), 2, + STATE(2070), 2, sym_line_comment, sym_block_comment, - ACTIONS(3452), 13, + ACTIONS(3387), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169513,47 +176231,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [62523] = 5, + [64142] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3626), 1, + ACTIONS(3416), 2, anon_sym_COLON, - STATE(2013), 2, + anon_sym_DOT_DOT, + STATE(2071), 2, sym_line_comment, sym_block_comment, - ACTIONS(3624), 18, + ACTIONS(3412), 3, + anon_sym_LBRACE, + anon_sym_for, + anon_sym_LT2, + ACTIONS(3418), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, + anon_sym_BANG, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, anon_sym_else, anon_sym_in, - [62557] = 5, + [64178] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3546), 2, + ACTIONS(3416), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2014), 2, + STATE(2072), 2, sym_line_comment, sym_block_comment, - ACTIONS(3548), 16, + ACTIONS(3418), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -169570,45 +176289,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [62590] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2015), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3501), 18, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_else, - anon_sym_LT2, - [62621] = 5, + [64211] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3530), 2, + ACTIONS(3455), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2016), 2, + STATE(2073), 2, sym_line_comment, sym_block_comment, - ACTIONS(3532), 16, + ACTIONS(3457), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -169625,87 +176317,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [62654] = 9, + [64244] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4674), 1, - anon_sym_LPAREN, - ACTIONS(4678), 1, - anon_sym_COLON_COLON, - STATE(2027), 1, - sym_type_arguments, - STATE(2097), 1, - sym_parameters, - STATE(2017), 2, + STATE(2074), 2, sym_line_comment, sym_block_comment, - ACTIONS(3469), 13, + ACTIONS(3459), 18, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_else, - [62695] = 14, - ACTIONS(37), 1, - anon_sym_SQUOTE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1117), 1, - anon_sym_DASH, - ACTIONS(1167), 1, - aux_sym_string_literal_token1, - ACTIONS(1177), 1, - sym__raw_string_literal_start, - ACTIONS(1617), 1, - anon_sym_LBRACE, - ACTIONS(4680), 1, - sym_identifier, - STATE(3770), 1, - sym_label, - ACTIONS(1169), 2, - anon_sym_true, - anon_sym_false, - STATE(2018), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1643), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(3039), 3, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - STATE(3417), 3, - sym_block, - sym__literal, - sym_negative_literal, - [62746] = 5, + anon_sym_LT2, + [64275] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3538), 2, + ACTIONS(3408), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2019), 2, + STATE(2075), 2, sym_line_comment, sym_block_comment, - ACTIONS(3540), 16, + ACTIONS(3410), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -169722,18 +176372,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [62779] = 5, + [64308] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3505), 2, + ACTIONS(3463), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2020), 2, + STATE(2076), 2, sym_line_comment, sym_block_comment, - ACTIONS(3507), 16, + ACTIONS(3465), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -169750,132 +176400,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [62812] = 19, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4684), 1, - anon_sym_const, - ACTIONS(4686), 1, - anon_sym_enum, - ACTIONS(4688), 1, - anon_sym_fn, - ACTIONS(4690), 1, - anon_sym_mod, - ACTIONS(4692), 1, - anon_sym_static, - ACTIONS(4694), 1, - anon_sym_struct, - ACTIONS(4696), 1, - anon_sym_trait, - ACTIONS(4698), 1, - anon_sym_type, - ACTIONS(4700), 1, - anon_sym_union, - ACTIONS(4702), 1, - anon_sym_unsafe, - ACTIONS(4704), 1, - anon_sym_use, - ACTIONS(4706), 1, - anon_sym_extern, - STATE(2240), 1, - sym_extern_modifier, - STATE(2317), 1, - aux_sym_function_modifiers_repeat1, - STATE(3792), 1, - sym_function_modifiers, - ACTIONS(4682), 2, - anon_sym_async, - anon_sym_default, - STATE(2021), 2, - sym_line_comment, - sym_block_comment, - [62872] = 11, + [64341] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4615), 1, anon_sym_LT2, - ACTIONS(4710), 1, - anon_sym_COLON, - ACTIONS(4712), 1, - anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_DOT_DOT, - ACTIONS(4718), 1, + ACTIONS(4617), 1, + anon_sym_LPAREN, + ACTIONS(4621), 1, anon_sym_COLON_COLON, - STATE(2024), 1, + STATE(2083), 1, sym_type_arguments, - ACTIONS(4716), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2022), 2, + STATE(2156), 1, + sym_parameters, + STATE(2077), 2, sym_line_comment, sym_block_comment, - ACTIONS(4708), 9, + ACTIONS(3391), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, anon_sym_else, - anon_sym_in, - [62916] = 19, + [64382] = 14, + ACTIONS(37), 1, + anon_sym_SQUOTE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4720), 1, - anon_sym_const, - ACTIONS(4722), 1, - anon_sym_enum, - ACTIONS(4724), 1, - anon_sym_fn, - ACTIONS(4726), 1, - anon_sym_mod, - ACTIONS(4728), 1, - anon_sym_static, - ACTIONS(4730), 1, - anon_sym_struct, - ACTIONS(4732), 1, - anon_sym_trait, - ACTIONS(4734), 1, - anon_sym_type, - ACTIONS(4736), 1, - anon_sym_union, - ACTIONS(4738), 1, - anon_sym_unsafe, - ACTIONS(4740), 1, - anon_sym_use, - ACTIONS(4742), 1, - anon_sym_extern, - STATE(2281), 1, - sym_extern_modifier, - STATE(2317), 1, - aux_sym_function_modifiers_repeat1, - STATE(3675), 1, - sym_function_modifiers, - ACTIONS(4682), 2, - anon_sym_async, - anon_sym_default, - STATE(2023), 2, + ACTIONS(1067), 1, + anon_sym_DASH, + ACTIONS(1117), 1, + aux_sym_string_literal_token1, + ACTIONS(1127), 1, + sym__raw_string_literal_start, + ACTIONS(1523), 1, + anon_sym_LBRACE, + ACTIONS(4623), 1, + sym_identifier, + STATE(3829), 1, + sym_label, + ACTIONS(1119), 2, + anon_sym_true, + anon_sym_false, + STATE(2078), 2, sym_line_comment, sym_block_comment, - [62976] = 5, + ACTIONS(1549), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + STATE(3232), 3, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + STATE(3415), 3, + sym_block, + sym__literal, + sym_negative_literal, + [64433] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3704), 1, + ACTIONS(3615), 1, anon_sym_COLON, - STATE(2024), 2, + STATE(2079), 2, sym_line_comment, sym_block_comment, - ACTIONS(3702), 16, + ACTIONS(3613), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169892,51 +176496,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_where, anon_sym_else, - [63008] = 12, + [64465] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4615), 1, anon_sym_LT2, - ACTIONS(4710), 1, + ACTIONS(4627), 1, anon_sym_COLON, - ACTIONS(4712), 1, + ACTIONS(4629), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4631), 1, anon_sym_DOT_DOT, - ACTIONS(4744), 1, + ACTIONS(4635), 1, anon_sym_COLON_COLON, - STATE(2024), 1, + STATE(2079), 1, sym_type_arguments, - ACTIONS(4716), 2, + ACTIONS(4633), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2025), 2, + STATE(2080), 2, sym_line_comment, sym_block_comment, - ACTIONS(4708), 3, + ACTIONS(4625), 3, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_COMMA, - ACTIONS(3566), 6, + ACTIONS(3492), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [63054] = 5, + [64511] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3738), 1, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(4627), 1, anon_sym_COLON, - STATE(2026), 2, + ACTIONS(4629), 1, + anon_sym_BANG, + ACTIONS(4631), 1, + anon_sym_DOT_DOT, + ACTIONS(4637), 1, + anon_sym_COLON_COLON, + STATE(2079), 1, + sym_type_arguments, + ACTIONS(4633), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2081), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4625), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [64555] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3649), 1, + anon_sym_COLON, + STATE(2082), 2, sym_line_comment, sym_block_comment, - ACTIONS(3736), 16, + ACTIONS(3647), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169953,17 +176590,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_where, anon_sym_else, - [63086] = 5, + [64587] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3734), 1, + ACTIONS(3645), 1, anon_sym_COLON, - STATE(2027), 2, + STATE(2083), 2, sym_line_comment, sym_block_comment, - ACTIONS(3732), 16, + ACTIONS(3643), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169980,23 +176617,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_where, anon_sym_else, - [63118] = 8, + [64619] = 19, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4641), 1, + anon_sym_const, + ACTIONS(4643), 1, + anon_sym_enum, + ACTIONS(4645), 1, + anon_sym_fn, + ACTIONS(4647), 1, + anon_sym_mod, + ACTIONS(4649), 1, + anon_sym_static, + ACTIONS(4651), 1, + anon_sym_struct, + ACTIONS(4653), 1, + anon_sym_trait, + ACTIONS(4655), 1, + anon_sym_type, + ACTIONS(4657), 1, + anon_sym_union, + ACTIONS(4659), 1, + anon_sym_unsafe, + ACTIONS(4661), 1, + anon_sym_use, + ACTIONS(4663), 1, + anon_sym_extern, + STATE(2338), 1, + sym_extern_modifier, + STATE(2385), 1, + aux_sym_function_modifiers_repeat1, + STATE(3642), 1, + sym_function_modifiers, + ACTIONS(4639), 2, + anon_sym_async, + anon_sym_default, + STATE(2084), 2, + sym_line_comment, + sym_block_comment, + [64679] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4615), 1, anon_sym_LT2, - ACTIONS(4674), 1, + ACTIONS(4617), 1, anon_sym_LPAREN, - STATE(2026), 1, + STATE(2082), 1, sym_type_arguments, - STATE(2098), 1, + STATE(2157), 1, sym_parameters, - STATE(2028), 2, + STATE(2085), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 13, + ACTIONS(3467), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170010,23 +176688,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [63156] = 8, + [64717] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4615), 1, anon_sym_LT2, - ACTIONS(4674), 1, + ACTIONS(4617), 1, anon_sym_LPAREN, - STATE(2026), 1, + STATE(2082), 1, sym_type_arguments, - STATE(2098), 1, + STATE(2157), 1, sym_parameters, - STATE(2029), 2, + STATE(2086), 2, sym_line_comment, sym_block_comment, - ACTIONS(3513), 13, + ACTIONS(3474), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170040,23 +176718,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [63194] = 8, + [64755] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4615), 1, anon_sym_LT2, - ACTIONS(4674), 1, + ACTIONS(4617), 1, anon_sym_LPAREN, - STATE(2026), 1, + STATE(2082), 1, sym_type_arguments, - STATE(2098), 1, + STATE(2157), 1, sym_parameters, - STATE(2030), 2, + STATE(2087), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 13, + ACTIONS(3420), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170070,23 +176748,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [63232] = 8, + [64793] = 19, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4665), 1, + anon_sym_const, + ACTIONS(4667), 1, + anon_sym_enum, + ACTIONS(4669), 1, + anon_sym_fn, + ACTIONS(4671), 1, + anon_sym_mod, + ACTIONS(4673), 1, + anon_sym_static, + ACTIONS(4675), 1, + anon_sym_struct, + ACTIONS(4677), 1, + anon_sym_trait, + ACTIONS(4679), 1, + anon_sym_type, + ACTIONS(4681), 1, + anon_sym_union, + ACTIONS(4683), 1, + anon_sym_unsafe, + ACTIONS(4685), 1, + anon_sym_use, + ACTIONS(4687), 1, + anon_sym_extern, + STATE(2316), 1, + sym_extern_modifier, + STATE(2385), 1, + aux_sym_function_modifiers_repeat1, + STATE(3854), 1, + sym_function_modifiers, + ACTIONS(4639), 2, + anon_sym_async, + anon_sym_default, + STATE(2088), 2, + sym_line_comment, + sym_block_comment, + [64853] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4615), 1, anon_sym_LT2, - ACTIONS(4674), 1, + ACTIONS(4617), 1, anon_sym_LPAREN, - STATE(2026), 1, + STATE(2082), 1, sym_type_arguments, - STATE(2098), 1, + STATE(2157), 1, sym_parameters, - STATE(2031), 2, + STATE(2089), 2, sym_line_comment, sym_block_comment, - ACTIONS(3517), 13, + ACTIONS(3480), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170100,42 +176819,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [63270] = 6, + [64891] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3511), 1, - anon_sym_COLON, - ACTIONS(4746), 1, - anon_sym_COLON_COLON, - STATE(2032), 2, + STATE(2090), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 14, + ACTIONS(3713), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [63303] = 4, + [64920] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2033), 2, + STATE(2091), 2, sym_line_comment, sym_block_comment, - ACTIONS(1531), 16, + ACTIONS(3557), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170147,22 +176864,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [63332] = 5, + [64949] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4748), 1, + ACTIONS(4689), 1, anon_sym_LPAREN, - STATE(2034), 2, + STATE(2092), 2, sym_line_comment, sym_block_comment, - ACTIONS(4154), 15, + ACTIONS(4117), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -170178,115 +176895,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [63363] = 10, + [64980] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4656), 1, - anon_sym_LPAREN, - ACTIONS(4660), 1, + STATE(2093), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1293), 16, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_COLON, - ACTIONS(4662), 1, - anon_sym_BANG, - ACTIONS(4666), 1, - anon_sym_DOT_DOT, - ACTIONS(4750), 1, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + anon_sym_in, + [65009] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3422), 1, + anon_sym_COLON, + ACTIONS(4691), 1, anon_sym_COLON_COLON, - ACTIONS(4668), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2035), 2, + STATE(2094), 2, sym_line_comment, sym_block_comment, - ACTIONS(4654), 9, + ACTIONS(3420), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, anon_sym_else, - anon_sym_in, - [63404] = 11, + [65042] = 16, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4712), 1, + ACTIONS(4597), 1, + anon_sym_PIPE, + ACTIONS(4601), 1, + anon_sym_LBRACE, + ACTIONS(4603), 1, + anon_sym_COLON, + ACTIONS(4605), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4607), 1, + anon_sym_AT, + ACTIONS(4609), 1, anon_sym_DOT_DOT, - ACTIONS(4752), 1, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(4693), 1, + anon_sym_LPAREN, + ACTIONS(4695), 1, anon_sym_COLON_COLON, - STATE(2024), 1, + STATE(2083), 1, sym_type_arguments, - ACTIONS(4716), 2, + STATE(2156), 1, + sym_parameters, + ACTIONS(4611), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2036), 2, + STATE(2095), 2, sym_line_comment, sym_block_comment, - ACTIONS(4708), 3, - anon_sym_RBRACK, - anon_sym_PIPE, + ACTIONS(3369), 3, + anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - ACTIONS(3566), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [63447] = 16, + [65095] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4654), 1, + ACTIONS(3369), 1, + anon_sym_PLUS, + ACTIONS(4597), 1, anon_sym_PIPE, - ACTIONS(4658), 1, + ACTIONS(4601), 1, anon_sym_LBRACE, - ACTIONS(4660), 1, + ACTIONS(4603), 1, anon_sym_COLON, - ACTIONS(4662), 1, + ACTIONS(4605), 1, anon_sym_BANG, - ACTIONS(4664), 1, + ACTIONS(4607), 1, anon_sym_AT, - ACTIONS(4666), 1, + ACTIONS(4609), 1, anon_sym_DOT_DOT, - ACTIONS(4672), 1, + ACTIONS(4615), 1, anon_sym_LT2, - ACTIONS(4754), 1, + ACTIONS(4697), 1, anon_sym_LPAREN, - ACTIONS(4756), 1, + ACTIONS(4702), 1, anon_sym_COLON_COLON, - STATE(2027), 1, + STATE(2083), 1, sym_type_arguments, - STATE(2097), 1, + STATE(2156), 1, sym_parameters, - ACTIONS(4668), 2, + ACTIONS(4611), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2037), 2, + ACTIONS(4699), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2096), 2, + sym_line_comment, + sym_block_comment, + [65150] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4599), 1, + anon_sym_LPAREN, + ACTIONS(4603), 1, + anon_sym_COLON, + ACTIONS(4605), 1, + anon_sym_BANG, + ACTIONS(4609), 1, + anon_sym_DOT_DOT, + ACTIONS(4704), 1, + anon_sym_COLON_COLON, + ACTIONS(4611), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2097), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4597), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [65191] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3482), 1, + anon_sym_COLON, + ACTIONS(4706), 1, + anon_sym_COLON_COLON, + STATE(2098), 2, sym_line_comment, sym_block_comment, - ACTIONS(3452), 3, + ACTIONS(3480), 14, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, - [63500] = 4, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [65224] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2038), 2, + STATE(2099), 2, sym_line_comment, sym_block_comment, - ACTIONS(1055), 16, + ACTIONS(1437), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170303,20 +177105,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_in, - [63529] = 6, + [65253] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(186), 1, + STATE(2100), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3565), 16, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [65282] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(374), 1, sym_fragment_specifier, - ACTIONS(4760), 2, + ACTIONS(4710), 2, anon_sym_expr, anon_sym_pat, - STATE(2039), 2, + STATE(2101), 2, sym_line_comment, sym_block_comment, - ACTIONS(4758), 13, + ACTIONS(4708), 13, anon_sym_block, anon_sym_expr_2021, anon_sym_ident, @@ -170330,131 +177157,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_tt, anon_sym_ty, anon_sym_vis, - [63562] = 6, + [65315] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3477), 1, - anon_sym_COLON, - ACTIONS(4746), 1, - anon_sym_COLON_COLON, - STATE(2040), 2, + STATE(2102), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 14, + ACTIONS(3533), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [63595] = 4, + [65344] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2041), 2, + ACTIONS(3422), 1, + anon_sym_COLON, + ACTIONS(4706), 1, + anon_sym_COLON_COLON, + STATE(2103), 2, sym_line_comment, sym_block_comment, - ACTIONS(3628), 16, + ACTIONS(3420), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [63624] = 6, + [65377] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3515), 1, - anon_sym_COLON, - ACTIONS(4746), 1, - anon_sym_COLON_COLON, - STATE(2042), 2, + STATE(2104), 2, sym_line_comment, sym_block_comment, - ACTIONS(3513), 14, + ACTIONS(3549), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [63657] = 16, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4658), 1, - anon_sym_LBRACE, - ACTIONS(4662), 1, - anon_sym_BANG, - ACTIONS(4664), 1, - anon_sym_AT, - ACTIONS(4666), 1, - anon_sym_DOT_DOT, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4762), 1, - anon_sym_LPAREN, - ACTIONS(4764), 1, - anon_sym_RBRACK, - ACTIONS(4767), 1, - anon_sym_COLON_COLON, - STATE(2027), 1, - sym_type_arguments, - STATE(2097), 1, - sym_parameters, - ACTIONS(3452), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4654), 2, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(4668), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2043), 2, - sym_line_comment, - sym_block_comment, - [63710] = 4, + [65406] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2044), 2, + STATE(2105), 2, sym_line_comment, sym_block_comment, - ACTIONS(1467), 16, + ACTIONS(1297), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170471,40 +177259,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_in, - [63739] = 4, + [65435] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2045), 2, + ACTIONS(3476), 1, + anon_sym_COLON, + ACTIONS(4706), 1, + anon_sym_COLON_COLON, + STATE(2106), 2, sym_line_comment, sym_block_comment, - ACTIONS(3610), 16, + ACTIONS(3474), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [63768] = 4, + [65468] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2046), 2, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(4629), 1, + anon_sym_BANG, + ACTIONS(4631), 1, + anon_sym_DOT_DOT, + ACTIONS(4712), 1, + anon_sym_COLON_COLON, + STATE(2079), 1, + sym_type_arguments, + ACTIONS(4633), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2107), 2, sym_line_comment, sym_block_comment, - ACTIONS(3760), 16, + ACTIONS(4625), 3, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(3492), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [65511] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2108), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1347), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170516,53 +177338,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [63797] = 6, + anon_sym_in, + [65540] = 16, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3519), 1, - anon_sym_COLON, - ACTIONS(4746), 1, + ACTIONS(4601), 1, + anon_sym_LBRACE, + ACTIONS(4605), 1, + anon_sym_BANG, + ACTIONS(4607), 1, + anon_sym_AT, + ACTIONS(4609), 1, + anon_sym_DOT_DOT, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(4699), 1, + anon_sym_RBRACK, + ACTIONS(4714), 1, + anon_sym_LPAREN, + ACTIONS(4716), 1, anon_sym_COLON_COLON, - STATE(2047), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3517), 14, + STATE(2083), 1, + sym_type_arguments, + STATE(2156), 1, + sym_parameters, + ACTIONS(3369), 2, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_PLUS, + ACTIONS(4597), 2, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [63830] = 4, + ACTIONS(4611), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2109), 2, + sym_line_comment, + sym_block_comment, + [65593] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2048), 2, + ACTIONS(3469), 1, + anon_sym_COLON, + ACTIONS(4706), 1, + anon_sym_COLON_COLON, + STATE(2110), 2, sym_line_comment, sym_block_comment, - ACTIONS(1047), 16, + ACTIONS(3467), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, @@ -170572,50 +177407,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [63859] = 4, + [65626] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2049), 2, + ACTIONS(3422), 1, + anon_sym_COLON, + ACTIONS(4718), 1, + anon_sym_COLON_COLON, + STATE(2111), 2, sym_line_comment, sym_block_comment, - ACTIONS(3786), 16, + ACTIONS(3420), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [63888] = 6, + [65659] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3477), 1, - anon_sym_COLON, - ACTIONS(4769), 1, - anon_sym_COLON_COLON, - STATE(2050), 2, + STATE(2112), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 14, + ACTIONS(3945), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, @@ -170625,53 +177458,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63921] = 17, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3452), 1, - anon_sym_PLUS, - ACTIONS(4654), 1, - anon_sym_PIPE, - ACTIONS(4658), 1, - anon_sym_LBRACE, - ACTIONS(4660), 1, - anon_sym_COLON, - ACTIONS(4662), 1, - anon_sym_BANG, - ACTIONS(4664), 1, - anon_sym_AT, - ACTIONS(4666), 1, - anon_sym_DOT_DOT, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4771), 1, - anon_sym_LPAREN, - ACTIONS(4773), 1, - anon_sym_COLON_COLON, - STATE(2027), 1, - sym_type_arguments, - STATE(2097), 1, - sym_parameters, - ACTIONS(4668), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4764), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2051), 2, - sym_line_comment, - sym_block_comment, - [63976] = 4, + [65687] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2052), 2, + STATE(2113), 2, sym_line_comment, sym_block_comment, - ACTIONS(3688), 16, + ACTIONS(3885), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170683,29 +177478,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [64005] = 6, + [65715] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3477), 1, - anon_sym_COLON, - ACTIONS(4775), 1, - anon_sym_COLON_COLON, - STATE(2053), 2, + STATE(2114), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 14, + ACTIONS(3769), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, @@ -170715,47 +177506,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64038] = 12, + [65743] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4708), 1, - anon_sym_PIPE, - ACTIONS(4710), 1, - anon_sym_COLON, - ACTIONS(4712), 1, - anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_DOT_DOT, - ACTIONS(4777), 1, - anon_sym_COLON_COLON, - STATE(2024), 1, - sym_type_arguments, - ACTIONS(4716), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2054), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3566), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [64082] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2055), 2, + STATE(2115), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 15, + ACTIONS(3474), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170771,15 +177530,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64110] = 4, + [65771] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2056), 2, + STATE(2116), 2, sym_line_comment, sym_block_comment, - ACTIONS(4016), 15, + ACTIONS(4047), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170795,15 +177554,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64138] = 4, + [65799] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2057), 2, + STATE(2117), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4105), 15, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_mod, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + [65827] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2118), 2, sym_line_comment, sym_block_comment, - ACTIONS(3802), 15, + ACTIONS(4113), 15, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_mod, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + [65855] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2119), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3480), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170819,15 +177626,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64166] = 4, + [65883] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2058), 2, + STATE(2120), 2, sym_line_comment, sym_block_comment, - ACTIONS(3806), 15, + ACTIONS(4051), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170843,15 +177650,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64194] = 4, + [65911] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2059), 2, + STATE(2121), 2, sym_line_comment, sym_block_comment, - ACTIONS(3880), 15, + ACTIONS(3929), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170867,39 +177674,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64222] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2060), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4161), 15, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_mod, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - [64250] = 4, + [65939] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2061), 2, + STATE(2122), 2, sym_line_comment, sym_block_comment, - ACTIONS(3814), 15, + ACTIONS(4011), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170915,15 +177698,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64278] = 4, + [65967] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2062), 2, + STATE(2123), 2, sym_line_comment, sym_block_comment, - ACTIONS(3513), 15, + ACTIONS(3823), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170939,15 +177722,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64306] = 4, + [65995] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2063), 2, + STATE(2124), 2, sym_line_comment, sym_block_comment, - ACTIONS(3517), 15, + ACTIONS(3751), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170963,15 +177746,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64334] = 4, + [66023] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2064), 2, + STATE(2125), 2, sym_line_comment, sym_block_comment, - ACTIONS(3844), 15, + ACTIONS(3843), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170987,15 +177770,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64362] = 4, + [66051] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2065), 2, + STATE(2126), 2, sym_line_comment, sym_block_comment, - ACTIONS(3862), 15, + ACTIONS(3827), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171011,15 +177794,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64390] = 4, + [66079] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2066), 2, + STATE(2127), 2, sym_line_comment, sym_block_comment, - ACTIONS(4102), 15, + ACTIONS(3889), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171035,39 +177818,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64418] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2067), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4167), 15, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_mod, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - [64446] = 4, + [66107] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2068), 2, + STATE(2128), 2, sym_line_comment, sym_block_comment, - ACTIONS(3822), 15, + ACTIONS(3861), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171083,15 +177842,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64474] = 4, + [66135] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2069), 2, + STATE(2129), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 15, + ACTIONS(3835), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171107,17 +177866,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64502] = 5, + [66163] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4779), 1, + ACTIONS(4720), 1, anon_sym_COLON_COLON, - STATE(2070), 2, + STATE(2130), 2, sym_line_comment, sym_block_comment, - ACTIONS(4156), 14, + ACTIONS(4122), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -171132,15 +177891,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [64532] = 4, + [66193] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2071), 2, + STATE(2131), 2, sym_line_comment, sym_block_comment, - ACTIONS(4171), 15, + ACTIONS(4135), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -171156,15 +177915,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [64560] = 4, + [66221] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2072), 2, + STATE(2132), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 15, + ACTIONS(3999), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171180,15 +177939,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64588] = 4, + [66249] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2073), 2, + STATE(2133), 2, sym_line_comment, sym_block_comment, - ACTIONS(3866), 15, + ACTIONS(4003), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171204,15 +177963,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64616] = 4, + [66277] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2074), 2, + STATE(2134), 2, sym_line_comment, sym_block_comment, - ACTIONS(3884), 15, + ACTIONS(3969), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171228,15 +177987,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64644] = 4, + [66305] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2075), 2, + STATE(2135), 2, sym_line_comment, sym_block_comment, - ACTIONS(3888), 15, + ACTIONS(3985), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171252,15 +178011,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64672] = 4, + [66333] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2076), 2, + STATE(2136), 2, sym_line_comment, sym_block_comment, - ACTIONS(3810), 15, + ACTIONS(4007), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171276,15 +178035,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64700] = 4, + [66361] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2077), 2, + STATE(2137), 2, sym_line_comment, sym_block_comment, - ACTIONS(3892), 15, + ACTIONS(4019), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171300,15 +178059,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64728] = 4, + [66389] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2078), 2, + STATE(2138), 2, sym_line_comment, sym_block_comment, - ACTIONS(3896), 15, + ACTIONS(3420), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171324,87 +178083,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64756] = 4, + [66417] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2079), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3908), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(4625), 1, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [64784] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2080), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3870), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(4627), 1, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [64812] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2081), 2, + ACTIONS(4629), 1, + anon_sym_BANG, + ACTIONS(4631), 1, + anon_sym_DOT_DOT, + ACTIONS(4722), 1, + anon_sym_COLON_COLON, + STATE(2079), 1, + sym_type_arguments, + ACTIONS(4633), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2139), 2, sym_line_comment, sym_block_comment, - ACTIONS(4110), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [64840] = 4, + ACTIONS(3492), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [66461] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2082), 2, + STATE(2140), 2, sym_line_comment, sym_block_comment, - ACTIONS(3978), 15, + ACTIONS(3765), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171420,15 +178139,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64868] = 4, + [66489] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2083), 2, + STATE(2141), 2, sym_line_comment, sym_block_comment, - ACTIONS(3988), 15, + ACTIONS(3799), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171444,15 +178163,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64896] = 4, + [66517] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2084), 2, + STATE(2142), 2, sym_line_comment, sym_block_comment, - ACTIONS(3900), 15, + ACTIONS(3467), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171468,15 +178187,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64924] = 4, + [66545] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2085), 2, + STATE(2143), 2, sym_line_comment, sym_block_comment, - ACTIONS(4074), 15, + ACTIONS(3783), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171492,15 +178211,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64952] = 4, + [66573] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2086), 2, + STATE(2144), 2, sym_line_comment, sym_block_comment, - ACTIONS(4038), 15, + ACTIONS(3803), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171516,15 +178235,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64980] = 4, + [66601] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2087), 2, + STATE(2145), 2, sym_line_comment, sym_block_comment, - ACTIONS(4008), 15, + ACTIONS(3915), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171540,15 +178259,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65008] = 4, + [66629] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2088), 2, + STATE(2146), 2, sym_line_comment, sym_block_comment, - ACTIONS(4106), 15, + ACTIONS(3911), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171564,17 +178283,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65036] = 5, + [66657] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4114), 1, + ACTIONS(4057), 1, anon_sym_COLON_COLON, - STATE(2089), 2, + STATE(2147), 2, sym_line_comment, sym_block_comment, - ACTIONS(4156), 14, + ACTIONS(4122), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -171589,15 +178308,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [65066] = 4, + [66687] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2090), 2, + STATE(2148), 2, sym_line_comment, sym_block_comment, - ACTIONS(3996), 15, + ACTIONS(3739), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171613,15 +178332,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65094] = 4, + [66715] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2091), 2, + STATE(2149), 2, sym_line_comment, sym_block_comment, - ACTIONS(3858), 15, + ACTIONS(3853), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171637,17 +178356,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65122] = 5, + [66743] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4783), 1, + ACTIONS(1225), 1, anon_sym_DOT_DOT, - STATE(2092), 2, + STATE(2150), 2, sym_line_comment, sym_block_comment, - ACTIONS(4781), 13, + ACTIONS(1227), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171661,17 +178380,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65151] = 5, + [66772] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(955), 1, + ACTIONS(1207), 1, anon_sym_DOT_DOT, - STATE(2093), 2, + STATE(2151), 2, sym_line_comment, sym_block_comment, - ACTIONS(957), 13, + ACTIONS(1209), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171685,48 +178404,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65180] = 5, + [66801] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(975), 1, - anon_sym_DOT_DOT, - STATE(2094), 2, + ACTIONS(4724), 1, + anon_sym_DASH_GT, + STATE(2152), 2, sym_line_comment, sym_block_comment, - ACTIONS(977), 13, + ACTIONS(3539), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, anon_sym_else, - anon_sym_in, - [65209] = 8, + [66830] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4710), 1, + ACTIONS(4627), 1, anon_sym_COLON, - ACTIONS(4714), 1, + ACTIONS(4631), 1, anon_sym_DOT_DOT, - ACTIONS(4718), 1, + ACTIONS(4637), 1, anon_sym_COLON_COLON, - ACTIONS(4716), 2, + ACTIONS(4633), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2095), 2, + STATE(2153), 2, sym_line_comment, sym_block_comment, - ACTIONS(4708), 9, + ACTIONS(4625), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171736,41 +178455,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65244] = 5, + [66865] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4785), 1, - anon_sym_DASH_GT, - STATE(2096), 2, + ACTIONS(4728), 1, + anon_sym_DOT_DOT, + STATE(2154), 2, sym_line_comment, sym_block_comment, - ACTIONS(3740), 13, + ACTIONS(4726), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, anon_sym_else, - [65273] = 5, + anon_sym_in, + [66894] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4787), 1, + ACTIONS(4730), 1, anon_sym_DASH_GT, - STATE(2097), 2, + STATE(2155), 2, sym_line_comment, sym_block_comment, - ACTIONS(3746), 13, + ACTIONS(3653), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171784,17 +178503,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [65302] = 5, + [66923] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4789), 1, + ACTIONS(4732), 1, anon_sym_DASH_GT, - STATE(2098), 2, + STATE(2156), 2, sym_line_comment, sym_block_comment, - ACTIONS(3752), 13, + ACTIONS(3663), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171808,17 +178527,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [65331] = 5, + [66952] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4791), 1, + ACTIONS(4734), 1, anon_sym_DASH_GT, - STATE(2099), 2, + STATE(2157), 2, sym_line_comment, sym_block_comment, - ACTIONS(3764), 13, + ACTIONS(3669), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171832,17 +178551,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [65360] = 5, + [66981] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4793), 1, + ACTIONS(4736), 1, anon_sym_DASH_GT, - STATE(2100), 2, + STATE(2158), 2, sym_line_comment, sym_block_comment, - ACTIONS(3770), 13, + ACTIONS(3717), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171856,17 +178575,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [65389] = 5, + [67010] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4795), 1, + ACTIONS(4738), 1, anon_sym_DASH_GT, - STATE(2101), 2, + STATE(2159), 2, sym_line_comment, sym_block_comment, - ACTIONS(3776), 13, + ACTIONS(3723), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171880,17 +178599,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [65418] = 5, + [67039] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4797), 1, + ACTIONS(4740), 1, anon_sym_DASH_GT, - STATE(2102), 2, + STATE(2160), 2, sym_line_comment, sym_block_comment, - ACTIONS(3790), 13, + ACTIONS(3729), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171904,145 +178623,240 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [65447] = 7, + [67068] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4799), 1, - anon_sym_LPAREN, - ACTIONS(3538), 2, - anon_sym_COLON, + ACTIONS(3463), 1, anon_sym_DOT_DOT, - STATE(2103), 2, + ACTIONS(4742), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + STATE(2161), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 5, - anon_sym_RPAREN, + ACTIONS(3459), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3540), 5, + ACTIONS(3465), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - [65479] = 7, + [67100] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3546), 1, + ACTIONS(3463), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(4802), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - STATE(2104), 2, + STATE(2162), 2, sym_line_comment, sym_block_comment, - ACTIONS(3542), 4, - anon_sym_SEMI, + ACTIONS(3459), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3548), 6, + ACTIONS(4742), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3465), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, - [65511] = 7, + [67132] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3530), 1, + ACTIONS(3408), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(4805), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - STATE(2105), 2, + STATE(2163), 2, sym_line_comment, sym_block_comment, - ACTIONS(3526), 4, - anon_sym_SEMI, + ACTIONS(3404), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3532), 6, + ACTIONS(4745), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3410), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, - [65543] = 7, + [67164] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3505), 1, + ACTIONS(2285), 1, + anon_sym_POUND, + ACTIONS(2435), 1, + anon_sym_SQUOTE, + ACTIONS(4748), 1, + sym_identifier, + ACTIONS(4750), 1, + anon_sym_GT, + ACTIONS(4752), 1, + anon_sym_const, + ACTIONS(4754), 1, + sym_metavariable, + STATE(1138), 1, + aux_sym_attributes_repeat1, + STATE(1389), 1, + sym_attribute_item, + STATE(2353), 1, + sym_attributes, + STATE(2859), 1, + sym_lifetime, + STATE(2164), 2, + sym_line_comment, + sym_block_comment, + STATE(3429), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [67210] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4758), 1, anon_sym_DOT_DOT, - ACTIONS(4808), 2, - anon_sym_LPAREN, + STATE(2165), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4756), 12, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACK, - STATE(2106), 2, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [67238] = 14, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(2285), 1, + anon_sym_POUND, + ACTIONS(2435), 1, + anon_sym_SQUOTE, + ACTIONS(4748), 1, + sym_identifier, + ACTIONS(4752), 1, + anon_sym_const, + ACTIONS(4754), 1, + sym_metavariable, + ACTIONS(4760), 1, + anon_sym_GT, + STATE(1138), 1, + aux_sym_attributes_repeat1, + STATE(1389), 1, + sym_attribute_item, + STATE(2353), 1, + sym_attributes, + STATE(2859), 1, + sym_lifetime, + STATE(2166), 2, + sym_line_comment, + sym_block_comment, + STATE(3429), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [67284] = 11, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_PIPE, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + ACTIONS(4762), 1, + anon_sym_move, + STATE(171), 1, + sym_closure_parameters, + STATE(413), 1, + sym_block, + STATE(3801), 1, + sym_label, + STATE(2167), 2, sym_line_comment, sym_block_comment, - ACTIONS(3501), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3507), 6, - anon_sym_BANG, + ACTIONS(3492), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [67324] = 11, + ACTIONS(27), 1, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - [65575] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4808), 1, - anon_sym_LPAREN, - ACTIONS(3505), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2107), 2, + ACTIONS(339), 1, + anon_sym_LBRACE, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + ACTIONS(4764), 1, + anon_sym_move, + STATE(171), 1, + sym_closure_parameters, + STATE(1492), 1, + sym_block, + STATE(3775), 1, + sym_label, + STATE(2168), 2, sym_line_comment, sym_block_comment, - ACTIONS(3501), 5, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(3507), 5, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - [65607] = 6, + ACTIONS(3492), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [67364] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4666), 1, + ACTIONS(4609), 1, anon_sym_DOT_DOT, - ACTIONS(4668), 2, + ACTIONS(4611), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2108), 2, + STATE(2169), 2, sym_line_comment, sym_block_comment, - ACTIONS(4654), 10, + ACTIONS(4597), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172053,340 +178867,436 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65637] = 7, + [67394] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4805), 1, + ACTIONS(4745), 1, anon_sym_LPAREN, - ACTIONS(3530), 2, + ACTIONS(3408), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2109), 2, + STATE(2170), 2, sym_line_comment, sym_block_comment, - ACTIONS(3526), 5, + ACTIONS(3404), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3532), 5, + ACTIONS(3410), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [65669] = 5, + [67426] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4813), 1, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(4766), 1, + anon_sym_LPAREN, + ACTIONS(4768), 1, + anon_sym_LBRACE, + ACTIONS(4770), 1, + anon_sym_BANG, + ACTIONS(4772), 1, + anon_sym_AT, + ACTIONS(4774), 1, anon_sym_DOT_DOT, - STATE(2110), 2, + ACTIONS(4778), 1, + anon_sym_COLON_COLON, + STATE(2083), 1, + sym_type_arguments, + ACTIONS(4776), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2171), 2, sym_line_comment, sym_block_comment, - ACTIONS(4811), 12, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, + ACTIONS(4597), 3, + anon_sym_EQ_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [65697] = 7, + anon_sym_if, + [67470] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4802), 1, - anon_sym_LPAREN, - ACTIONS(3546), 2, - anon_sym_COLON, + ACTIONS(2285), 1, + anon_sym_POUND, + ACTIONS(2435), 1, + anon_sym_SQUOTE, + ACTIONS(4748), 1, + sym_identifier, + ACTIONS(4752), 1, + anon_sym_const, + ACTIONS(4754), 1, + sym_metavariable, + ACTIONS(4780), 1, + anon_sym_GT, + STATE(1138), 1, + aux_sym_attributes_repeat1, + STATE(1389), 1, + sym_attribute_item, + STATE(2353), 1, + sym_attributes, + STATE(2859), 1, + sym_lifetime, + STATE(2172), 2, + sym_line_comment, + sym_block_comment, + STATE(3429), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [67516] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3416), 1, anon_sym_DOT_DOT, - STATE(2111), 2, + ACTIONS(4782), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + STATE(2173), 2, sym_line_comment, sym_block_comment, - ACTIONS(3542), 5, - anon_sym_RPAREN, + ACTIONS(3412), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3548), 5, + ACTIONS(3418), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - [65729] = 7, + [67548] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3505), 2, - anon_sym_COLON, + ACTIONS(2285), 1, + anon_sym_POUND, + ACTIONS(2435), 1, + anon_sym_SQUOTE, + ACTIONS(4748), 1, + sym_identifier, + ACTIONS(4752), 1, + anon_sym_const, + ACTIONS(4754), 1, + sym_metavariable, + ACTIONS(4785), 1, + anon_sym_GT, + STATE(1138), 1, + aux_sym_attributes_repeat1, + STATE(1389), 1, + sym_attribute_item, + STATE(2353), 1, + sym_attributes, + STATE(2859), 1, + sym_lifetime, + STATE(2174), 2, + sym_line_comment, + sym_block_comment, + STATE(3429), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [67594] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3455), 1, anon_sym_DOT_DOT, - STATE(2112), 2, + ACTIONS(4787), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + STATE(2175), 2, sym_line_comment, sym_block_comment, - ACTIONS(3501), 3, + ACTIONS(3451), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4808), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3507), 5, + ACTIONS(3457), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - [65761] = 7, + [67626] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3546), 2, + ACTIONS(4787), 1, + anon_sym_LPAREN, + ACTIONS(3455), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2113), 2, + STATE(2176), 2, sym_line_comment, sym_block_comment, - ACTIONS(3542), 3, + ACTIONS(3451), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(4802), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3548), 5, + anon_sym_LT2, + ACTIONS(3457), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [65793] = 7, + [67658] = 14, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(2285), 1, + anon_sym_POUND, + ACTIONS(2435), 1, + anon_sym_SQUOTE, + ACTIONS(4748), 1, + sym_identifier, + ACTIONS(4752), 1, + anon_sym_const, + ACTIONS(4754), 1, + sym_metavariable, + ACTIONS(4790), 1, + anon_sym_GT, + STATE(1138), 1, + aux_sym_attributes_repeat1, + STATE(1389), 1, + sym_attribute_item, + STATE(2353), 1, + sym_attributes, + STATE(2859), 1, + sym_lifetime, + STATE(2177), 2, + sym_line_comment, + sym_block_comment, + STATE(3429), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [67704] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3538), 2, + ACTIONS(3455), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2114), 2, + STATE(2178), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 3, + ACTIONS(3451), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4799), 3, + ACTIONS(4787), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3540), 5, + ACTIONS(3457), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [65825] = 7, + [67736] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3538), 1, + ACTIONS(3408), 1, anon_sym_DOT_DOT, - ACTIONS(4799), 2, + ACTIONS(4745), 2, anon_sym_LPAREN, anon_sym_RBRACK, - STATE(2115), 2, + STATE(2179), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 4, + ACTIONS(3404), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3540), 6, + ACTIONS(3410), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - [65857] = 13, + [67768] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4815), 1, + ACTIONS(4742), 1, anon_sym_LPAREN, - ACTIONS(4817), 1, - anon_sym_LBRACE, - ACTIONS(4819), 1, - anon_sym_BANG, - ACTIONS(4821), 1, - anon_sym_AT, - ACTIONS(4823), 1, + ACTIONS(3463), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(4827), 1, - anon_sym_COLON_COLON, - STATE(2027), 1, - sym_type_arguments, - ACTIONS(4825), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2116), 2, + STATE(2180), 2, sym_line_comment, sym_block_comment, - ACTIONS(4654), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [65901] = 11, - ACTIONS(19), 1, + ACTIONS(3459), 5, + anon_sym_RPAREN, anon_sym_LBRACE, - ACTIONS(27), 1, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(3465), 5, + anon_sym_BANG, anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + [67800] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(4829), 1, - anon_sym_move, - STATE(224), 1, - sym_closure_parameters, - STATE(409), 1, - sym_block, - STATE(3621), 1, - sym_label, - STATE(2117), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3566), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [65941] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3530), 2, + ACTIONS(4782), 1, + anon_sym_LPAREN, + ACTIONS(3416), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2118), 2, + STATE(2181), 2, sym_line_comment, sym_block_comment, - ACTIONS(3526), 3, + ACTIONS(3412), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(4805), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3532), 5, + anon_sym_LT2, + ACTIONS(3418), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [65973] = 14, + [67832] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4662), 1, + ACTIONS(4605), 1, anon_sym_BANG, - ACTIONS(4672), 1, + ACTIONS(4615), 1, anon_sym_LT2, - ACTIONS(4674), 1, + ACTIONS(4617), 1, anon_sym_LPAREN, - ACTIONS(4676), 1, + ACTIONS(4619), 1, anon_sym_COLON_COLON, - ACTIONS(4831), 1, + ACTIONS(4792), 1, anon_sym_COLON, - ACTIONS(4833), 1, + ACTIONS(4794), 1, anon_sym_EQ, - STATE(2027), 1, + STATE(2083), 1, sym_type_arguments, - STATE(2409), 1, + STATE(2519), 1, sym_parameters, - STATE(3144), 1, + STATE(3155), 1, sym_trait_bounds, - ACTIONS(3452), 2, + ACTIONS(3369), 2, anon_sym_PLUS, anon_sym_as, - ACTIONS(4835), 2, + ACTIONS(4796), 2, anon_sym_GT, anon_sym_COMMA, - STATE(2119), 2, + STATE(2182), 2, + sym_line_comment, + sym_block_comment, + [67878] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3416), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2183), 2, sym_line_comment, sym_block_comment, - [66019] = 13, + ACTIONS(3412), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(4782), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3418), 5, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + [67910] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, + ACTIONS(2285), 1, anon_sym_POUND, - ACTIONS(3070), 1, + ACTIONS(2435), 1, anon_sym_SQUOTE, - ACTIONS(4837), 1, + ACTIONS(4748), 1, sym_identifier, - ACTIONS(4839), 1, - anon_sym_GT, - ACTIONS(4841), 1, + ACTIONS(4752), 1, anon_sym_const, - ACTIONS(4843), 1, + ACTIONS(4754), 1, sym_metavariable, - STATE(1254), 1, + ACTIONS(4798), 1, + anon_sym_GT, + STATE(1138), 1, + aux_sym_attributes_repeat1, + STATE(1389), 1, sym_attribute_item, - STATE(2132), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2725), 1, + STATE(2353), 1, + sym_attributes, + STATE(2859), 1, sym_lifetime, - STATE(2120), 2, + STATE(2184), 2, sym_line_comment, sym_block_comment, - STATE(3273), 3, + STATE(3429), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [66062] = 6, + [67956] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4847), 1, + ACTIONS(4802), 1, anon_sym_COLON, - ACTIONS(4028), 2, + ACTIONS(3927), 2, anon_sym_LPAREN, anon_sym_COLON_COLON, - STATE(2121), 2, + STATE(2185), 2, sym_line_comment, sym_block_comment, - ACTIONS(4845), 9, + ACTIONS(4800), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172396,339 +179306,301 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66091] = 13, + [67985] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, + ACTIONS(2285), 1, anon_sym_POUND, - ACTIONS(3070), 1, + ACTIONS(2435), 1, anon_sym_SQUOTE, - ACTIONS(4837), 1, + ACTIONS(4748), 1, sym_identifier, - ACTIONS(4841), 1, + ACTIONS(4752), 1, anon_sym_const, - ACTIONS(4843), 1, + ACTIONS(4804), 1, sym_metavariable, - ACTIONS(4849), 1, - anon_sym_GT, - STATE(1254), 1, + STATE(1138), 1, + aux_sym_attributes_repeat1, + STATE(1389), 1, sym_attribute_item, - STATE(2132), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2725), 1, + STATE(2389), 1, + sym_attributes, + STATE(2859), 1, sym_lifetime, - STATE(2122), 2, + STATE(2186), 2, sym_line_comment, sym_block_comment, - STATE(3273), 3, + STATE(3224), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [66134] = 13, + [68028] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, + ACTIONS(2285), 1, anon_sym_POUND, - ACTIONS(3070), 1, + ACTIONS(2435), 1, anon_sym_SQUOTE, - ACTIONS(4837), 1, + ACTIONS(4748), 1, sym_identifier, - ACTIONS(4841), 1, + ACTIONS(4752), 1, anon_sym_const, - ACTIONS(4843), 1, + ACTIONS(4754), 1, sym_metavariable, - ACTIONS(4851), 1, - anon_sym_GT, - STATE(1254), 1, + STATE(1138), 1, + aux_sym_attributes_repeat1, + STATE(1389), 1, sym_attribute_item, - STATE(2132), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2725), 1, + STATE(2353), 1, + sym_attributes, + STATE(2859), 1, sym_lifetime, - STATE(2123), 2, + STATE(2187), 2, sym_line_comment, sym_block_comment, - STATE(3273), 3, + STATE(3429), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [66177] = 13, + [68071] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4802), 1, + anon_sym_COLON, + ACTIONS(3849), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + STATE(2188), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4800), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [68100] = 13, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(2285), 1, + anon_sym_POUND, + ACTIONS(4806), 1, + sym_identifier, + ACTIONS(4808), 1, + anon_sym_RBRACE, + ACTIONS(4810), 1, + anon_sym_DOT_DOT, + ACTIONS(4812), 1, + anon_sym_COMMA, + ACTIONS(4814), 1, + sym_integer_literal, + STATE(1138), 1, + aux_sym_attributes_repeat1, + STATE(1389), 1, + sym_attribute_item, + STATE(3435), 1, + sym_attributes, + STATE(2189), 2, + sym_line_comment, + sym_block_comment, + STATE(3129), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [68143] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, + ACTIONS(2285), 1, anon_sym_POUND, - ACTIONS(3070), 1, + ACTIONS(2435), 1, anon_sym_SQUOTE, - ACTIONS(4837), 1, + ACTIONS(4748), 1, sym_identifier, - ACTIONS(4841), 1, + ACTIONS(4752), 1, anon_sym_const, - ACTIONS(4843), 1, + ACTIONS(4816), 1, sym_metavariable, - ACTIONS(4853), 1, - anon_sym_GT, - STATE(1254), 1, + STATE(1138), 1, + aux_sym_attributes_repeat1, + STATE(1389), 1, sym_attribute_item, - STATE(2132), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2725), 1, + STATE(2380), 1, + sym_attributes, + STATE(2859), 1, sym_lifetime, - STATE(2124), 2, + STATE(2190), 2, sym_line_comment, sym_block_comment, - STATE(3273), 3, + STATE(3021), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [66220] = 10, + [68186] = 10, ACTIONS(19), 1, anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - ACTIONS(4732), 1, + ACTIONS(4653), 1, anon_sym_trait, - ACTIONS(4855), 1, + ACTIONS(4818), 1, anon_sym_impl, - STATE(416), 1, + STATE(417), 1, sym_block, - STATE(3621), 1, + STATE(3801), 1, sym_label, - STATE(2125), 2, + STATE(2191), 2, sym_line_comment, sym_block_comment, - ACTIONS(3566), 6, + ACTIONS(3492), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [66257] = 13, + [68223] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, + ACTIONS(2285), 1, anon_sym_POUND, - ACTIONS(3070), 1, + ACTIONS(2435), 1, anon_sym_SQUOTE, - ACTIONS(4837), 1, + ACTIONS(4748), 1, sym_identifier, - ACTIONS(4841), 1, + ACTIONS(4752), 1, anon_sym_const, - ACTIONS(4843), 1, + ACTIONS(4804), 1, sym_metavariable, - ACTIONS(4857), 1, - anon_sym_GT, - STATE(1254), 1, + STATE(1138), 1, + aux_sym_attributes_repeat1, + STATE(1389), 1, sym_attribute_item, - STATE(2132), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2725), 1, + STATE(2389), 1, + sym_attributes, + STATE(2657), 1, sym_lifetime, - STATE(2126), 2, + STATE(2192), 2, sym_line_comment, sym_block_comment, - STATE(3273), 3, + STATE(3224), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [66300] = 13, + [68266] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(3070), 1, + ACTIONS(339), 1, + anon_sym_LBRACE, + ACTIONS(3383), 1, anon_sym_SQUOTE, - ACTIONS(4837), 1, - sym_identifier, - ACTIONS(4841), 1, - anon_sym_const, - ACTIONS(4843), 1, - sym_metavariable, - ACTIONS(4859), 1, - anon_sym_GT, - STATE(1254), 1, - sym_attribute_item, - STATE(2132), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2725), 1, - sym_lifetime, - STATE(2127), 2, + ACTIONS(4653), 1, + anon_sym_trait, + ACTIONS(4818), 1, + anon_sym_impl, + STATE(1498), 1, + sym_block, + STATE(3775), 1, + sym_label, + STATE(2193), 2, sym_line_comment, sym_block_comment, - STATE(3273), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [66343] = 6, + ACTIONS(3492), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [68303] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4847), 1, - anon_sym_COLON, - ACTIONS(3984), 2, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - STATE(2128), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4845), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(2285), 1, + anon_sym_POUND, + ACTIONS(4806), 1, + sym_identifier, + ACTIONS(4810), 1, + anon_sym_DOT_DOT, + ACTIONS(4814), 1, + sym_integer_literal, + ACTIONS(4820), 1, anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, + ACTIONS(4822), 1, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66372] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4863), 1, - anon_sym_COLON, - ACTIONS(4865), 1, - anon_sym_COLON_COLON, - STATE(2129), 2, + STATE(1138), 1, + aux_sym_attributes_repeat1, + STATE(1389), 1, + sym_attribute_item, + STATE(3435), 1, + sym_attributes, + STATE(2194), 2, sym_line_comment, sym_block_comment, - ACTIONS(4861), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66400] = 6, + STATE(2982), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [68346] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3538), 1, - anon_sym_DOT_DOT, - ACTIONS(3534), 2, + ACTIONS(339), 1, anon_sym_LBRACE, - anon_sym_LT2, - STATE(2130), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3540), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [66428] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2131), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1437), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66452] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(3070), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - ACTIONS(4837), 1, + ACTIONS(4824), 1, sym_identifier, - ACTIONS(4841), 1, - anon_sym_const, - ACTIONS(4867), 1, - sym_metavariable, - STATE(1093), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1254), 1, - sym_attribute_item, - STATE(2725), 1, - sym_lifetime, - STATE(2132), 2, - sym_line_comment, - sym_block_comment, - STATE(3299), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [66492] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3454), 1, - anon_sym_COLON, - ACTIONS(4662), 1, - anon_sym_BANG, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4674), 1, - anon_sym_LPAREN, - ACTIONS(4676), 1, - anon_sym_COLON_COLON, - ACTIONS(4869), 1, - anon_sym_EQ, - STATE(2409), 1, - sym_parameters, - STATE(2435), 1, - sym_type_arguments, - STATE(2133), 2, + STATE(1493), 1, + sym_block, + STATE(3775), 1, + sym_label, + STATE(2195), 2, sym_line_comment, sym_block_comment, - ACTIONS(3452), 3, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - [66532] = 6, + ACTIONS(4826), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [68380] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4873), 1, + ACTIONS(4830), 1, anon_sym_COLON, - ACTIONS(4875), 1, + ACTIONS(4832), 1, anon_sym_COLON_COLON, - STATE(2134), 2, + STATE(2196), 2, sym_line_comment, sym_block_comment, - ACTIONS(4871), 9, + ACTIONS(4828), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172738,125 +179610,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66560] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(3070), 1, - anon_sym_SQUOTE, - ACTIONS(4837), 1, - sym_identifier, - ACTIONS(4841), 1, - anon_sym_const, - ACTIONS(4877), 1, - sym_metavariable, - STATE(1254), 1, - sym_attribute_item, - STATE(2137), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2725), 1, - sym_lifetime, - STATE(2135), 2, - sym_line_comment, - sym_block_comment, - STATE(3161), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [66600] = 6, + [68408] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4881), 1, + ACTIONS(3389), 1, anon_sym_COLON, - ACTIONS(4883), 1, + ACTIONS(4605), 1, + anon_sym_BANG, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(4617), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, anon_sym_COLON_COLON, - STATE(2136), 2, + STATE(2083), 1, + sym_type_arguments, + STATE(2519), 1, + sym_parameters, + STATE(2197), 2, sym_line_comment, sym_block_comment, - ACTIONS(4879), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, + ACTIONS(3387), 4, + anon_sym_PLUS, + anon_sym_GT, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66628] = 12, + anon_sym_as, + [68446] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, + ACTIONS(2285), 1, anon_sym_POUND, - ACTIONS(3070), 1, - anon_sym_SQUOTE, - ACTIONS(4837), 1, + ACTIONS(4806), 1, sym_identifier, - ACTIONS(4841), 1, - anon_sym_const, - ACTIONS(4885), 1, - sym_metavariable, - STATE(1093), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1254), 1, + ACTIONS(4810), 1, + anon_sym_DOT_DOT, + ACTIONS(4814), 1, + sym_integer_literal, + ACTIONS(4834), 1, + anon_sym_RBRACE, + STATE(1138), 1, + aux_sym_attributes_repeat1, + STATE(1389), 1, sym_attribute_item, - STATE(2725), 1, - sym_lifetime, - STATE(2137), 2, + STATE(3435), 1, + sym_attributes, + STATE(2198), 2, sym_line_comment, sym_block_comment, - STATE(2894), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [66668] = 12, + STATE(3247), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [68486] = 14, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, + ACTIONS(2285), 1, anon_sym_POUND, - ACTIONS(4887), 1, + ACTIONS(4836), 1, sym_identifier, - ACTIONS(4889), 1, + ACTIONS(4838), 1, anon_sym_RBRACE, - ACTIONS(4891), 1, - anon_sym_DOT_DOT, - ACTIONS(4893), 1, + ACTIONS(4840), 1, anon_sym_COMMA, - ACTIONS(4895), 1, - sym_integer_literal, - STATE(1254), 1, + ACTIONS(4842), 1, + sym_crate, + STATE(1138), 1, + aux_sym_attributes_repeat1, + STATE(1389), 1, sym_attribute_item, - STATE(2552), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2138), 2, + STATE(2851), 1, + sym_attributes, + STATE(3088), 1, + sym_enum_variant, + STATE(3556), 1, + sym_visibility_modifier, + STATE(2199), 2, sym_line_comment, sym_block_comment, - STATE(3080), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [66708] = 6, + [68530] = 9, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4883), 1, - anon_sym_COLON_COLON, - ACTIONS(4899), 1, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + ACTIONS(4824), 1, + sym_identifier, + STATE(414), 1, + sym_block, + STATE(3801), 1, + sym_label, + STATE(2200), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4826), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [68564] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4846), 1, anon_sym_COLON, - STATE(2139), 2, + ACTIONS(4848), 1, + anon_sym_COLON_COLON, + STATE(2201), 2, sym_line_comment, sym_block_comment, - ACTIONS(4897), 9, + ACTIONS(4844), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172866,97 +179742,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66736] = 11, + [68592] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4710), 1, - anon_sym_COLON, - ACTIONS(4712), 1, - anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_DOT_DOT, - ACTIONS(4744), 1, - anon_sym_COLON_COLON, - STATE(2024), 1, - sym_type_arguments, - ACTIONS(4716), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2140), 2, + STATE(2202), 2, sym_line_comment, sym_block_comment, - ACTIONS(4708), 3, + ACTIONS(1331), 11, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, - [66774] = 6, + anon_sym_else, + anon_sym_in, + [68616] = 14, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3530), 1, - anon_sym_DOT_DOT, - ACTIONS(3526), 2, - anon_sym_LBRACE, - anon_sym_LT2, - STATE(2141), 2, + ACTIONS(2285), 1, + anon_sym_POUND, + ACTIONS(4842), 1, + sym_crate, + ACTIONS(4850), 1, + sym_identifier, + ACTIONS(4852), 1, + anon_sym_RBRACE, + ACTIONS(4854), 1, + anon_sym_COMMA, + STATE(1138), 1, + aux_sym_attributes_repeat1, + STATE(1389), 1, + sym_attribute_item, + STATE(2665), 1, + sym_attributes, + STATE(3229), 1, + sym_field_declaration, + STATE(3848), 1, + sym_visibility_modifier, + STATE(2203), 2, sym_line_comment, sym_block_comment, - ACTIONS(3532), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [66802] = 11, + [68660] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4662), 1, - anon_sym_BANG, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4674), 1, - anon_sym_LPAREN, - ACTIONS(4676), 1, + ACTIONS(4720), 1, anon_sym_COLON_COLON, - ACTIONS(4901), 1, - anon_sym_for, - STATE(2027), 1, - sym_type_arguments, - STATE(2097), 1, - sym_parameters, - STATE(2142), 2, + ACTIONS(4846), 1, + anon_sym_COLON, + STATE(2204), 2, sym_line_comment, sym_block_comment, - ACTIONS(3452), 4, + ACTIONS(4844), 9, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [66840] = 7, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [68688] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1167), 1, + ACTIONS(1117), 1, aux_sym_string_literal_token1, - ACTIONS(4905), 1, + ACTIONS(4858), 1, sym_crate, - STATE(2327), 1, + STATE(2342), 1, sym_string_literal, - STATE(2143), 2, + STATE(2205), 2, sym_line_comment, sym_block_comment, - ACTIONS(4903), 8, + ACTIONS(4856), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -172965,135 +179837,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [66870] = 4, + [68718] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2144), 2, + ACTIONS(4846), 1, + anon_sym_COLON, + ACTIONS(4860), 1, + anon_sym_COLON_COLON, + STATE(2206), 2, sym_line_comment, sym_block_comment, - ACTIONS(1433), 11, + ACTIONS(4844), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66894] = 6, + [68746] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4863), 1, - anon_sym_COLON, - ACTIONS(4875), 1, - anon_sym_COLON_COLON, - STATE(2145), 2, + STATE(2207), 2, sym_line_comment, sym_block_comment, - ACTIONS(4861), 9, + ACTIONS(1335), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66922] = 12, + [68770] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3361), 1, + anon_sym_COLON, + ACTIONS(4605), 1, + anon_sym_BANG, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(4617), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_COLON_COLON, + STATE(2083), 1, + sym_type_arguments, + STATE(2519), 1, + sym_parameters, + STATE(2208), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3357), 4, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [68808] = 14, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, + ACTIONS(2285), 1, anon_sym_POUND, - ACTIONS(3070), 1, - anon_sym_SQUOTE, - ACTIONS(4837), 1, + ACTIONS(4836), 1, sym_identifier, - ACTIONS(4841), 1, - anon_sym_const, - ACTIONS(4843), 1, - sym_metavariable, - STATE(1254), 1, + ACTIONS(4842), 1, + sym_crate, + ACTIONS(4862), 1, + anon_sym_RBRACE, + ACTIONS(4864), 1, + anon_sym_COMMA, + STATE(1138), 1, + aux_sym_attributes_repeat1, + STATE(1389), 1, sym_attribute_item, - STATE(2132), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2725), 1, - sym_lifetime, - STATE(2146), 2, + STATE(2851), 1, + sym_attributes, + STATE(3060), 1, + sym_enum_variant, + STATE(3556), 1, + sym_visibility_modifier, + STATE(2209), 2, sym_line_comment, sym_block_comment, - STATE(3273), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [66962] = 6, + [68852] = 14, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4883), 1, - anon_sym_COLON_COLON, - ACTIONS(4909), 1, + ACTIONS(2285), 1, + anon_sym_POUND, + ACTIONS(4842), 1, + sym_crate, + ACTIONS(4850), 1, + sym_identifier, + ACTIONS(4866), 1, + anon_sym_RBRACE, + ACTIONS(4868), 1, + anon_sym_COMMA, + STATE(1138), 1, + aux_sym_attributes_repeat1, + STATE(1389), 1, + sym_attribute_item, + STATE(2634), 1, + sym_attributes, + STATE(3164), 1, + sym_field_declaration, + STATE(3848), 1, + sym_visibility_modifier, + STATE(2210), 2, + sym_line_comment, + sym_block_comment, + [68896] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(4627), 1, anon_sym_COLON, - STATE(2147), 2, + ACTIONS(4629), 1, + anon_sym_BANG, + ACTIONS(4631), 1, + anon_sym_DOT_DOT, + ACTIONS(4635), 1, + anon_sym_COLON_COLON, + STATE(2079), 1, + sym_type_arguments, + ACTIONS(4633), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2211), 2, sym_line_comment, sym_block_comment, - ACTIONS(4907), 9, - anon_sym_SEMI, + ACTIONS(4625), 3, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66990] = 12, + [68934] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(4887), 1, - sym_identifier, - ACTIONS(4891), 1, - anon_sym_DOT_DOT, - ACTIONS(4895), 1, - sym_integer_literal, - ACTIONS(4911), 1, - anon_sym_RBRACE, - ACTIONS(4913), 1, - anon_sym_COMMA, - STATE(1254), 1, - sym_attribute_item, - STATE(2552), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2148), 2, + ACTIONS(3371), 1, + anon_sym_COLON, + ACTIONS(4605), 1, + anon_sym_BANG, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(4617), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_COLON_COLON, + STATE(2083), 1, + sym_type_arguments, + STATE(2519), 1, + sym_parameters, + STATE(2212), 2, sym_line_comment, sym_block_comment, - STATE(3169), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [67030] = 4, + ACTIONS(3369), 4, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [68972] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2149), 2, + STATE(2213), 2, sym_line_comment, sym_block_comment, - ACTIONS(1445), 11, + ACTIONS(1343), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173105,19 +180040,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67054] = 6, + [68996] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4779), 1, + ACTIONS(4832), 1, anon_sym_COLON_COLON, - ACTIONS(4863), 1, + ACTIONS(4872), 1, anon_sym_COLON, - STATE(2150), 2, + STATE(2214), 2, sym_line_comment, sym_block_comment, - ACTIONS(4861), 9, + ACTIONS(4870), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173127,48 +180062,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67082] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4662), 1, - anon_sym_BANG, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4674), 1, - anon_sym_LPAREN, - ACTIONS(4676), 1, - anon_sym_COLON_COLON, - ACTIONS(4915), 1, - anon_sym_for, - STATE(2027), 1, - sym_type_arguments, - STATE(2097), 1, - sym_parameters, - STATE(2151), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3452), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [67120] = 7, + [69024] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1167), 1, + ACTIONS(1117), 1, aux_sym_string_literal_token1, - ACTIONS(4917), 1, + ACTIONS(4874), 1, sym_crate, - STATE(2327), 1, + STATE(2342), 1, sym_string_literal, - STATE(2152), 2, + STATE(2215), 2, sym_line_comment, sym_block_comment, - ACTIONS(4903), 8, + ACTIONS(4856), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -173177,19 +180085,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [67150] = 6, + [69054] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4779), 1, + ACTIONS(4832), 1, anon_sym_COLON_COLON, - ACTIONS(4921), 1, + ACTIONS(4878), 1, anon_sym_COLON, - STATE(2153), 2, + STATE(2216), 2, sym_line_comment, sym_block_comment, - ACTIONS(4919), 9, + ACTIONS(4876), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173199,19 +180107,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67178] = 6, + [69082] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4865), 1, + ACTIONS(4848), 1, anon_sym_COLON_COLON, - ACTIONS(4921), 1, + ACTIONS(4882), 1, anon_sym_COLON, - STATE(2154), 2, + STATE(2217), 2, sym_line_comment, sym_block_comment, - ACTIONS(4919), 9, + ACTIONS(4880), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173221,351 +180129,314 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67206] = 11, + [69110] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, - anon_sym_COLON, - ACTIONS(4662), 1, - anon_sym_BANG, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4674), 1, - anon_sym_LPAREN, - ACTIONS(4676), 1, + ACTIONS(4720), 1, anon_sym_COLON_COLON, - STATE(2027), 1, - sym_type_arguments, - STATE(2409), 1, - sym_parameters, - STATE(2155), 2, + ACTIONS(4882), 1, + anon_sym_COLON, + STATE(2218), 2, sym_line_comment, sym_block_comment, - ACTIONS(3428), 4, - anon_sym_PLUS, - anon_sym_GT, + ACTIONS(4880), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_as, - [67244] = 11, + anon_sym_else, + anon_sym_in, + [69138] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4662), 1, - anon_sym_BANG, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4674), 1, - anon_sym_LPAREN, - ACTIONS(4676), 1, + ACTIONS(4848), 1, anon_sym_COLON_COLON, - ACTIONS(4923), 1, - anon_sym_for, - STATE(2027), 1, - sym_type_arguments, - STATE(2097), 1, - sym_parameters, - STATE(2156), 2, + ACTIONS(4886), 1, + anon_sym_COLON, + STATE(2219), 2, sym_line_comment, sym_block_comment, - ACTIONS(3452), 4, + ACTIONS(4884), 9, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [67282] = 11, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [69166] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4662), 1, - anon_sym_BANG, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4674), 1, - anon_sym_LPAREN, - ACTIONS(4676), 1, + ACTIONS(2285), 1, + anon_sym_POUND, + ACTIONS(4806), 1, + sym_identifier, + ACTIONS(4810), 1, + anon_sym_DOT_DOT, + ACTIONS(4814), 1, + sym_integer_literal, + ACTIONS(4888), 1, + anon_sym_RBRACE, + STATE(1138), 1, + aux_sym_attributes_repeat1, + STATE(1389), 1, + sym_attribute_item, + STATE(3435), 1, + sym_attributes, + STATE(2220), 2, + sym_line_comment, + sym_block_comment, + STATE(3247), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [69206] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4860), 1, anon_sym_COLON_COLON, - ACTIONS(4925), 1, - anon_sym_for, - STATE(2027), 1, - sym_type_arguments, - STATE(2097), 1, - sym_parameters, - STATE(2157), 2, + ACTIONS(4882), 1, + anon_sym_COLON, + STATE(2221), 2, sym_line_comment, sym_block_comment, - ACTIONS(3452), 4, + ACTIONS(4880), 9, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [67320] = 11, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [69234] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4662), 1, + ACTIONS(4605), 1, anon_sym_BANG, - ACTIONS(4672), 1, + ACTIONS(4615), 1, anon_sym_LT2, - ACTIONS(4674), 1, + ACTIONS(4617), 1, anon_sym_LPAREN, - ACTIONS(4676), 1, + ACTIONS(4619), 1, anon_sym_COLON_COLON, - ACTIONS(4927), 1, + ACTIONS(4890), 1, anon_sym_for, - STATE(2027), 1, + STATE(2083), 1, sym_type_arguments, - STATE(2097), 1, + STATE(2156), 1, sym_parameters, - STATE(2158), 2, + STATE(2222), 2, sym_line_comment, sym_block_comment, - ACTIONS(3452), 4, + ACTIONS(3369), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [67358] = 6, + [69272] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3505), 1, - anon_sym_DOT_DOT, - ACTIONS(3501), 2, - anon_sym_LBRACE, - anon_sym_LT2, - STATE(2159), 2, + STATE(2223), 2, sym_line_comment, sym_block_comment, - ACTIONS(3507), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, + ACTIONS(1327), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [67386] = 11, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [69296] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4662), 1, - anon_sym_BANG, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4674), 1, - anon_sym_LPAREN, - ACTIONS(4676), 1, - anon_sym_COLON_COLON, - ACTIONS(4929), 1, - anon_sym_for, - STATE(2027), 1, - sym_type_arguments, - STATE(2097), 1, - sym_parameters, - STATE(2160), 2, + ACTIONS(1117), 1, + aux_sym_string_literal_token1, + ACTIONS(4892), 1, + sym_crate, + STATE(2342), 1, + sym_string_literal, + STATE(2224), 2, sym_line_comment, sym_block_comment, - ACTIONS(3452), 4, + ACTIONS(4856), 8, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [67424] = 11, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69326] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4662), 1, + ACTIONS(4605), 1, anon_sym_BANG, - ACTIONS(4672), 1, + ACTIONS(4615), 1, anon_sym_LT2, - ACTIONS(4674), 1, + ACTIONS(4617), 1, anon_sym_LPAREN, - ACTIONS(4676), 1, + ACTIONS(4619), 1, anon_sym_COLON_COLON, - ACTIONS(4931), 1, + ACTIONS(4894), 1, anon_sym_for, - STATE(2027), 1, + STATE(2083), 1, sym_type_arguments, - STATE(2097), 1, + STATE(2156), 1, sym_parameters, - STATE(2161), 2, + STATE(2225), 2, sym_line_comment, sym_block_comment, - ACTIONS(3452), 4, + ACTIONS(3369), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [67462] = 11, + [69364] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4662), 1, + ACTIONS(4605), 1, anon_sym_BANG, - ACTIONS(4672), 1, + ACTIONS(4615), 1, anon_sym_LT2, - ACTIONS(4674), 1, + ACTIONS(4617), 1, anon_sym_LPAREN, - ACTIONS(4676), 1, + ACTIONS(4619), 1, anon_sym_COLON_COLON, - ACTIONS(4933), 1, + ACTIONS(4896), 1, anon_sym_for, - STATE(2027), 1, + STATE(2083), 1, sym_type_arguments, - STATE(2097), 1, + STATE(2156), 1, sym_parameters, - STATE(2162), 2, + STATE(2226), 2, sym_line_comment, sym_block_comment, - ACTIONS(3452), 4, + ACTIONS(3369), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [67500] = 6, + [69402] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3546), 1, - anon_sym_DOT_DOT, - ACTIONS(3542), 2, - anon_sym_LBRACE, - anon_sym_LT2, - STATE(2163), 2, + ACTIONS(1117), 1, + aux_sym_string_literal_token1, + ACTIONS(4898), 1, + sym_crate, + STATE(2342), 1, + sym_string_literal, + STATE(2227), 2, sym_line_comment, sym_block_comment, - ACTIONS(3548), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [67528] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(3070), 1, - anon_sym_SQUOTE, - ACTIONS(4837), 1, - sym_identifier, - ACTIONS(4841), 1, + ACTIONS(4856), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_async, anon_sym_const, - ACTIONS(4935), 1, - sym_metavariable, - STATE(1254), 1, - sym_attribute_item, - STATE(2169), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2579), 1, - sym_lifetime, - STATE(2164), 2, - sym_line_comment, - sym_block_comment, - STATE(2971), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [67568] = 11, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69432] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3454), 1, - anon_sym_COLON, - ACTIONS(4662), 1, + ACTIONS(4605), 1, anon_sym_BANG, - ACTIONS(4672), 1, + ACTIONS(4615), 1, anon_sym_LT2, - ACTIONS(4674), 1, + ACTIONS(4617), 1, anon_sym_LPAREN, - ACTIONS(4676), 1, + ACTIONS(4619), 1, anon_sym_COLON_COLON, - STATE(2027), 1, + ACTIONS(4900), 1, + anon_sym_for, + STATE(2083), 1, sym_type_arguments, - STATE(2409), 1, + STATE(2156), 1, sym_parameters, - STATE(2165), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3452), 4, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [67606] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4865), 1, - anon_sym_COLON_COLON, - ACTIONS(4873), 1, - anon_sym_COLON, - STATE(2166), 2, + STATE(2228), 2, sym_line_comment, sym_block_comment, - ACTIONS(4871), 9, + ACTIONS(3369), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67634] = 6, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [69470] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4875), 1, + ACTIONS(4605), 1, + anon_sym_BANG, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(4617), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, anon_sym_COLON_COLON, - ACTIONS(4921), 1, - anon_sym_COLON, - STATE(2167), 2, + ACTIONS(4902), 1, + anon_sym_for, + STATE(2083), 1, + sym_type_arguments, + STATE(2156), 1, + sym_parameters, + STATE(2229), 2, sym_line_comment, sym_block_comment, - ACTIONS(4919), 9, + ACTIONS(3369), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67662] = 6, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [69508] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4779), 1, + ACTIONS(4720), 1, anon_sym_COLON_COLON, - ACTIONS(4873), 1, + ACTIONS(4886), 1, anon_sym_COLON, - STATE(2168), 2, + STATE(2230), 2, sym_line_comment, sym_block_comment, - ACTIONS(4871), 9, + ACTIONS(4884), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173575,256 +180446,262 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67690] = 12, + [69536] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, + ACTIONS(2285), 1, anon_sym_POUND, - ACTIONS(3070), 1, - anon_sym_SQUOTE, - ACTIONS(4837), 1, + ACTIONS(4806), 1, sym_identifier, - ACTIONS(4841), 1, - anon_sym_const, - ACTIONS(4937), 1, - sym_metavariable, - STATE(1093), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1254), 1, + ACTIONS(4810), 1, + anon_sym_DOT_DOT, + ACTIONS(4814), 1, + sym_integer_literal, + ACTIONS(4904), 1, + anon_sym_RBRACE, + STATE(1138), 1, + aux_sym_attributes_repeat1, + STATE(1389), 1, sym_attribute_item, - STATE(2725), 1, - sym_lifetime, - STATE(2169), 2, - sym_line_comment, - sym_block_comment, - STATE(3157), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [67730] = 4, + STATE(3435), 1, + sym_attributes, + STATE(2231), 2, + sym_line_comment, + sym_block_comment, + STATE(3247), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [69576] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2170), 2, + ACTIONS(4605), 1, + anon_sym_BANG, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(4617), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_COLON_COLON, + ACTIONS(4906), 1, + anon_sym_for, + STATE(2083), 1, + sym_type_arguments, + STATE(2156), 1, + sym_parameters, + STATE(2232), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 11, + ACTIONS(3369), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67754] = 7, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [69614] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1167), 1, - aux_sym_string_literal_token1, - ACTIONS(4939), 1, - sym_crate, - STATE(2327), 1, - sym_string_literal, - STATE(2171), 2, + ACTIONS(4605), 1, + anon_sym_BANG, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(4617), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_COLON_COLON, + ACTIONS(4908), 1, + anon_sym_for, + STATE(2083), 1, + sym_type_arguments, + STATE(2156), 1, + sym_parameters, + STATE(2233), 2, sym_line_comment, sym_block_comment, - ACTIONS(4903), 8, + ACTIONS(3369), 4, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [67784] = 4, + anon_sym_PLUS, + anon_sym_where, + [69652] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2172), 2, + ACTIONS(3416), 1, + anon_sym_DOT_DOT, + ACTIONS(3412), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2234), 2, sym_line_comment, sym_block_comment, - ACTIONS(1441), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, + ACTIONS(3418), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67808] = 11, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [69680] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3455), 1, + anon_sym_DOT_DOT, + ACTIONS(3451), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2235), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3457), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [69708] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3460), 1, + ACTIONS(3371), 1, anon_sym_COLON, - ACTIONS(4662), 1, + ACTIONS(4605), 1, anon_sym_BANG, - ACTIONS(4672), 1, + ACTIONS(4615), 1, anon_sym_LT2, - ACTIONS(4674), 1, + ACTIONS(4617), 1, anon_sym_LPAREN, - ACTIONS(4676), 1, + ACTIONS(4619), 1, anon_sym_COLON_COLON, - STATE(2027), 1, - sym_type_arguments, - STATE(2409), 1, + ACTIONS(4910), 1, + anon_sym_EQ, + STATE(2519), 1, sym_parameters, - STATE(2173), 2, + STATE(2559), 1, + sym_type_arguments, + STATE(2236), 2, sym_line_comment, sym_block_comment, - ACTIONS(3458), 4, + ACTIONS(3369), 3, anon_sym_PLUS, anon_sym_GT, anon_sym_COMMA, - anon_sym_as, - [67846] = 9, - ACTIONS(19), 1, - anon_sym_LBRACE, + [69748] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(4941), 1, - sym_identifier, - STATE(411), 1, - sym_block, - STATE(3621), 1, - sym_label, - STATE(2174), 2, + ACTIONS(3463), 1, + anon_sym_DOT_DOT, + ACTIONS(3459), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2237), 2, sym_line_comment, sym_block_comment, - ACTIONS(4943), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [67880] = 12, + ACTIONS(3465), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [69776] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(3070), 1, - anon_sym_SQUOTE, - ACTIONS(4837), 1, - sym_identifier, - ACTIONS(4841), 1, - anon_sym_const, - ACTIONS(4935), 1, - sym_metavariable, - STATE(1254), 1, - sym_attribute_item, - STATE(2169), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2725), 1, - sym_lifetime, - STATE(2175), 2, + ACTIONS(3408), 1, + anon_sym_DOT_DOT, + ACTIONS(3404), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2238), 2, sym_line_comment, sym_block_comment, - STATE(2971), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [67920] = 7, + ACTIONS(3410), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [69804] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1167), 1, - aux_sym_string_literal_token1, - ACTIONS(4945), 1, - sym_crate, - STATE(2327), 1, - sym_string_literal, - STATE(2176), 2, + ACTIONS(4605), 1, + anon_sym_BANG, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(4617), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_COLON_COLON, + ACTIONS(4912), 1, + anon_sym_for, + STATE(2083), 1, + sym_type_arguments, + STATE(2156), 1, + sym_parameters, + STATE(2239), 2, sym_line_comment, sym_block_comment, - ACTIONS(4903), 8, + ACTIONS(3369), 4, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [67950] = 13, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(4947), 1, - sym_identifier, - ACTIONS(4949), 1, - anon_sym_RBRACE, - ACTIONS(4951), 1, - anon_sym_COMMA, - ACTIONS(4953), 1, - sym_crate, - STATE(1254), 1, - sym_attribute_item, - STATE(2300), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3044), 1, - sym_field_declaration, - STATE(3506), 1, - sym_visibility_modifier, - STATE(2177), 2, - sym_line_comment, - sym_block_comment, - [67991] = 4, + anon_sym_PLUS, + anon_sym_where, + [69842] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2178), 2, + ACTIONS(4860), 1, + anon_sym_COLON_COLON, + ACTIONS(4886), 1, + anon_sym_COLON, + STATE(2240), 2, sym_line_comment, sym_block_comment, - ACTIONS(4955), 10, + ACTIONS(4884), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68014] = 4, + [69870] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2179), 2, + STATE(2241), 2, sym_line_comment, sym_block_comment, - ACTIONS(4871), 10, + ACTIONS(1339), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173832,37 +180709,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68037] = 4, + [69894] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2180), 2, + ACTIONS(2285), 1, + anon_sym_POUND, + ACTIONS(4806), 1, + sym_identifier, + ACTIONS(4810), 1, + anon_sym_DOT_DOT, + ACTIONS(4814), 1, + sym_integer_literal, + ACTIONS(4914), 1, + anon_sym_RBRACE, + STATE(1138), 1, + aux_sym_attributes_repeat1, + STATE(1389), 1, + sym_attribute_item, + STATE(3435), 1, + sym_attributes, + STATE(2242), 2, sym_line_comment, sym_block_comment, - ACTIONS(4957), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [68060] = 4, + STATE(3247), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [69934] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2181), 2, + STATE(2243), 2, sym_line_comment, sym_block_comment, - ACTIONS(4959), 10, + ACTIONS(4916), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173873,15 +180760,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68083] = 4, + [69957] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2182), 2, + STATE(2244), 2, sym_line_comment, sym_block_comment, - ACTIONS(4961), 10, + ACTIONS(4918), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173892,15 +180779,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68106] = 4, + [69980] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2183), 2, + STATE(2245), 2, sym_line_comment, sym_block_comment, - ACTIONS(4963), 10, + ACTIONS(4920), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173911,15 +180798,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68129] = 4, + [70003] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2184), 2, + STATE(2246), 2, sym_line_comment, sym_block_comment, - ACTIONS(4965), 10, + ACTIONS(4922), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173930,15 +180817,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68152] = 4, + [70026] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2185), 2, + STATE(2247), 2, sym_line_comment, sym_block_comment, - ACTIONS(4967), 10, + ACTIONS(4924), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173949,39 +180836,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68175] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4674), 1, - anon_sym_LPAREN, - ACTIONS(4969), 1, - anon_sym_LBRACE, - STATE(2026), 1, - sym_type_arguments, - STATE(2098), 1, - sym_parameters, - STATE(2186), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3475), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_COMMA, - [68208] = 4, + [70049] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2187), 2, + STATE(2248), 2, sym_line_comment, sym_block_comment, - ACTIONS(4971), 10, + ACTIONS(4926), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173992,15 +180855,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68231] = 4, + [70072] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2188), 2, + STATE(2249), 2, sym_line_comment, sym_block_comment, - ACTIONS(4973), 10, + ACTIONS(4597), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174011,15 +180874,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68254] = 4, + [70095] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2189), 2, + STATE(2250), 2, sym_line_comment, sym_block_comment, - ACTIONS(4975), 10, + ACTIONS(4928), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174030,72 +180893,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68277] = 4, + [70118] = 13, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2190), 2, + ACTIONS(2285), 1, + anon_sym_POUND, + ACTIONS(4836), 1, + sym_identifier, + ACTIONS(4842), 1, + sym_crate, + ACTIONS(4930), 1, + anon_sym_RBRACE, + STATE(1138), 1, + aux_sym_attributes_repeat1, + STATE(1389), 1, + sym_attribute_item, + STATE(2851), 1, + sym_attributes, + STATE(3341), 1, + sym_enum_variant, + STATE(3556), 1, + sym_visibility_modifier, + STATE(2251), 2, sym_line_comment, sym_block_comment, - ACTIONS(4977), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [68300] = 4, + [70159] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2191), 2, + ACTIONS(2285), 1, + anon_sym_POUND, + ACTIONS(4806), 1, + sym_identifier, + ACTIONS(4810), 1, + anon_sym_DOT_DOT, + ACTIONS(4814), 1, + sym_integer_literal, + STATE(1138), 1, + aux_sym_attributes_repeat1, + STATE(1389), 1, + sym_attribute_item, + STATE(3435), 1, + sym_attributes, + STATE(2252), 2, sym_line_comment, sym_block_comment, - ACTIONS(4979), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [68323] = 4, + STATE(3247), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [70196] = 13, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2192), 2, + ACTIONS(2285), 1, + anon_sym_POUND, + ACTIONS(4836), 1, + sym_identifier, + ACTIONS(4842), 1, + sym_crate, + ACTIONS(4932), 1, + anon_sym_RBRACE, + STATE(1138), 1, + aux_sym_attributes_repeat1, + STATE(1389), 1, + sym_attribute_item, + STATE(2851), 1, + sym_attributes, + STATE(3341), 1, + sym_enum_variant, + STATE(3556), 1, + sym_visibility_modifier, + STATE(2253), 2, sym_line_comment, sym_block_comment, - ACTIONS(4981), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, + [70237] = 13, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(2285), 1, + anon_sym_POUND, + ACTIONS(4842), 1, + sym_crate, + ACTIONS(4850), 1, + sym_identifier, + ACTIONS(4934), 1, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [68346] = 4, + STATE(1138), 1, + aux_sym_attributes_repeat1, + STATE(1389), 1, + sym_attribute_item, + STATE(2623), 1, + sym_attributes, + STATE(3430), 1, + sym_field_declaration, + STATE(3848), 1, + sym_visibility_modifier, + STATE(2254), 2, + sym_line_comment, + sym_block_comment, + [70278] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2193), 2, + STATE(2255), 2, sym_line_comment, sym_block_comment, - ACTIONS(4983), 10, + ACTIONS(4936), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174106,15 +181022,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68369] = 4, + [70301] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2194), 2, + STATE(2256), 2, sym_line_comment, sym_block_comment, - ACTIONS(4985), 10, + ACTIONS(4938), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174125,15 +181041,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68392] = 4, + [70324] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2195), 2, + STATE(2257), 2, sym_line_comment, sym_block_comment, - ACTIONS(4987), 10, + ACTIONS(4940), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174144,135 +181060,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68415] = 8, + [70347] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3438), 1, + ACTIONS(3367), 1, anon_sym_LT2, - ACTIONS(3674), 1, + ACTIONS(3585), 1, anon_sym_COLON_COLON, - ACTIONS(4989), 1, + ACTIONS(4629), 1, anon_sym_BANG, - STATE(1284), 1, + STATE(1411), 1, sym_type_arguments, - STATE(2196), 2, + STATE(2258), 2, sym_line_comment, sym_block_comment, - ACTIONS(3566), 6, + ACTIONS(3492), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [68446] = 10, + [70378] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3471), 1, - anon_sym_COLON, - ACTIONS(4672), 1, + ACTIONS(4065), 1, anon_sym_LT2, - ACTIONS(4674), 1, - anon_sym_LPAREN, - ACTIONS(4678), 1, + ACTIONS(4255), 1, anon_sym_COLON_COLON, - STATE(2027), 1, - sym_type_arguments, - STATE(2409), 1, - sym_parameters, - STATE(2197), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3469), 4, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [68481] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2198), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4991), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [68504] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4993), 1, + ACTIONS(4629), 1, anon_sym_BANG, - ACTIONS(4995), 1, - anon_sym_DOT_DOT, - ACTIONS(4999), 1, - anon_sym_COLON_COLON, - STATE(2024), 1, + STATE(1731), 1, sym_type_arguments, - ACTIONS(4997), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2199), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4708), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [68539] = 13, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(4953), 1, - sym_crate, - ACTIONS(5001), 1, - sym_identifier, - ACTIONS(5003), 1, - anon_sym_RBRACE, - ACTIONS(5005), 1, - anon_sym_COMMA, - STATE(1254), 1, - sym_attribute_item, - STATE(2321), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2890), 1, - sym_enum_variant, - STATE(3794), 1, - sym_visibility_modifier, - STATE(2200), 2, + STATE(2259), 2, sym_line_comment, sym_block_comment, - [68580] = 4, + ACTIONS(3492), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [70409] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2201), 2, + STATE(2260), 2, sym_line_comment, sym_block_comment, - ACTIONS(5007), 10, + ACTIONS(4942), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174283,67 +181125,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68603] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(4887), 1, - sym_identifier, - ACTIONS(4891), 1, - anon_sym_DOT_DOT, - ACTIONS(4895), 1, - sym_integer_literal, - ACTIONS(5009), 1, - anon_sym_RBRACE, - STATE(1254), 1, - sym_attribute_item, - STATE(2552), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2202), 2, - sym_line_comment, - sym_block_comment, - STATE(3408), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [68640] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(4887), 1, - sym_identifier, - ACTIONS(4891), 1, - anon_sym_DOT_DOT, - ACTIONS(4895), 1, - sym_integer_literal, - ACTIONS(5011), 1, - anon_sym_RBRACE, - STATE(1254), 1, - sym_attribute_item, - STATE(2552), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2203), 2, - sym_line_comment, - sym_block_comment, - STATE(3408), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [68677] = 4, + [70432] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2204), 2, + STATE(2261), 2, sym_line_comment, sym_block_comment, - ACTIONS(4861), 10, + ACTIONS(4944), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174354,15 +181144,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68700] = 4, + [70455] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2205), 2, + STATE(2262), 2, sym_line_comment, sym_block_comment, - ACTIONS(5013), 10, + ACTIONS(4946), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174373,38 +181163,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68723] = 8, + [70478] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4712), 1, + ACTIONS(4599), 1, + anon_sym_LPAREN, + ACTIONS(4603), 1, + anon_sym_COLON, + ACTIONS(4605), 1, anon_sym_BANG, - ACTIONS(4775), 1, + ACTIONS(4609), 1, + anon_sym_DOT_DOT, + ACTIONS(4948), 1, anon_sym_COLON_COLON, - STATE(2024), 1, - sym_type_arguments, - STATE(2206), 2, + ACTIONS(4611), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2263), 2, sym_line_comment, sym_block_comment, - ACTIONS(3566), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [68754] = 4, + ACTIONS(4597), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [70513] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2207), 2, + STATE(2264), 2, sym_line_comment, sym_block_comment, - ACTIONS(1501), 10, + ACTIONS(4950), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174415,85 +181207,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68777] = 8, + [70536] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4184), 1, + ACTIONS(4615), 1, anon_sym_LT2, - ACTIONS(4298), 1, - anon_sym_COLON_COLON, - ACTIONS(5015), 1, + ACTIONS(4952), 1, anon_sym_BANG, - STATE(1659), 1, + ACTIONS(4954), 1, + anon_sym_DOT_DOT, + ACTIONS(4958), 1, + anon_sym_COLON_COLON, + STATE(2079), 1, sym_type_arguments, - STATE(2208), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3566), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [68808] = 13, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(4953), 1, - sym_crate, - ACTIONS(5001), 1, - sym_identifier, - ACTIONS(5017), 1, - anon_sym_RBRACE, - ACTIONS(5019), 1, - anon_sym_COMMA, - STATE(1254), 1, - sym_attribute_item, - STATE(2313), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3003), 1, - sym_enum_variant, - STATE(3794), 1, - sym_visibility_modifier, - STATE(2209), 2, - sym_line_comment, - sym_block_comment, - [68849] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2210), 2, + ACTIONS(4956), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2265), 2, sym_line_comment, - sym_block_comment, - ACTIONS(5021), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, + sym_block_comment, + ACTIONS(4625), 3, + anon_sym_EQ_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [68872] = 4, + anon_sym_if, + [70571] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2211), 2, + STATE(2266), 2, sym_line_comment, sym_block_comment, - ACTIONS(5023), 10, + ACTIONS(4960), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174504,41 +181251,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68895] = 11, + [70594] = 13, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, + ACTIONS(2285), 1, anon_sym_POUND, - ACTIONS(4887), 1, + ACTIONS(4836), 1, sym_identifier, - ACTIONS(4891), 1, - anon_sym_DOT_DOT, - ACTIONS(4895), 1, - sym_integer_literal, - ACTIONS(5025), 1, + ACTIONS(4842), 1, + sym_crate, + ACTIONS(4962), 1, anon_sym_RBRACE, - STATE(1254), 1, + STATE(1138), 1, + aux_sym_attributes_repeat1, + STATE(1389), 1, sym_attribute_item, - STATE(2552), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2212), 2, + STATE(2851), 1, + sym_attributes, + STATE(3341), 1, + sym_enum_variant, + STATE(3556), 1, + sym_visibility_modifier, + STATE(2267), 2, sym_line_comment, sym_block_comment, - STATE(3408), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [68932] = 4, + [70635] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2213), 2, + STATE(2268), 2, sym_line_comment, sym_block_comment, - ACTIONS(5027), 10, + ACTIONS(4964), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174549,60 +181298,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68955] = 4, + [70658] = 13, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2214), 2, + ACTIONS(2285), 1, + anon_sym_POUND, + ACTIONS(4842), 1, + sym_crate, + ACTIONS(4850), 1, + sym_identifier, + ACTIONS(4966), 1, + anon_sym_RBRACE, + STATE(1138), 1, + aux_sym_attributes_repeat1, + STATE(1389), 1, + sym_attribute_item, + STATE(2623), 1, + sym_attributes, + STATE(3430), 1, + sym_field_declaration, + STATE(3848), 1, + sym_visibility_modifier, + STATE(2269), 2, sym_line_comment, sym_block_comment, - ACTIONS(5029), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [68978] = 11, + [70699] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(4887), 1, - sym_identifier, - ACTIONS(4891), 1, - anon_sym_DOT_DOT, - ACTIONS(4895), 1, - sym_integer_literal, - ACTIONS(5031), 1, - anon_sym_RBRACE, - STATE(1254), 1, - sym_attribute_item, - STATE(2552), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2215), 2, + ACTIONS(4065), 1, + anon_sym_LT2, + ACTIONS(4255), 1, + anon_sym_COLON_COLON, + ACTIONS(4968), 1, + anon_sym_BANG, + STATE(1731), 1, + sym_type_arguments, + STATE(2270), 2, sym_line_comment, sym_block_comment, - STATE(3408), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [69015] = 4, + ACTIONS(3492), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [70730] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2216), 2, + STATE(2271), 2, sym_line_comment, sym_block_comment, - ACTIONS(4919), 10, + ACTIONS(4970), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174613,15 +181368,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69038] = 4, + [70753] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2217), 2, + STATE(2272), 2, sym_line_comment, sym_block_comment, - ACTIONS(5033), 10, + ACTIONS(4972), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174632,34 +181387,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69061] = 4, + [70776] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2218), 2, + ACTIONS(3367), 1, + anon_sym_LT2, + ACTIONS(3585), 1, + anon_sym_COLON_COLON, + ACTIONS(4974), 1, + anon_sym_BANG, + STATE(1411), 1, + sym_type_arguments, + STATE(2273), 2, sym_line_comment, sym_block_comment, - ACTIONS(5035), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [69084] = 4, + ACTIONS(3492), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [70807] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2219), 2, + STATE(2274), 2, sym_line_comment, sym_block_comment, - ACTIONS(5037), 10, + ACTIONS(4976), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174670,15 +181429,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69107] = 4, + [70830] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2220), 2, + STATE(2275), 2, sym_line_comment, sym_block_comment, - ACTIONS(5039), 10, + ACTIONS(4978), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174689,15 +181448,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69130] = 4, + [70853] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2221), 2, + STATE(2276), 2, sym_line_comment, sym_block_comment, - ACTIONS(4654), 10, + ACTIONS(4980), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174708,86 +181467,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69153] = 8, + [70876] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3438), 1, + ACTIONS(3393), 1, + anon_sym_COLON, + ACTIONS(4615), 1, anon_sym_LT2, - ACTIONS(3674), 1, + ACTIONS(4617), 1, + anon_sym_LPAREN, + ACTIONS(4621), 1, anon_sym_COLON_COLON, - ACTIONS(4712), 1, - anon_sym_BANG, - STATE(1284), 1, + STATE(2083), 1, sym_type_arguments, - STATE(2222), 2, + STATE(2519), 1, + sym_parameters, + STATE(2277), 2, sym_line_comment, sym_block_comment, - ACTIONS(3566), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69184] = 8, + ACTIONS(3391), 4, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [70911] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4184), 1, + ACTIONS(4615), 1, anon_sym_LT2, - ACTIONS(4298), 1, - anon_sym_COLON_COLON, - ACTIONS(4712), 1, + ACTIONS(4629), 1, anon_sym_BANG, - STATE(1659), 1, + ACTIONS(4631), 1, + anon_sym_DOT_DOT, + ACTIONS(4712), 1, + anon_sym_COLON_COLON, + STATE(2079), 1, sym_type_arguments, - STATE(2223), 2, + ACTIONS(4633), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2278), 2, sym_line_comment, sym_block_comment, - ACTIONS(3566), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69215] = 10, + ACTIONS(4625), 3, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + [70946] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4656), 1, - anon_sym_LPAREN, - ACTIONS(4660), 1, - anon_sym_COLON, - ACTIONS(4662), 1, - anon_sym_BANG, - ACTIONS(4666), 1, - anon_sym_DOT_DOT, - ACTIONS(5041), 1, - anon_sym_COLON_COLON, - ACTIONS(4668), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2224), 2, + STATE(2279), 2, sym_line_comment, sym_block_comment, - ACTIONS(4654), 3, + ACTIONS(4982), 10, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, - [69250] = 4, + anon_sym_else, + anon_sym_in, + [70969] = 13, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2225), 2, + ACTIONS(2285), 1, + anon_sym_POUND, + ACTIONS(4842), 1, + sym_crate, + ACTIONS(4850), 1, + sym_identifier, + ACTIONS(4984), 1, + anon_sym_RBRACE, + STATE(1138), 1, + aux_sym_attributes_repeat1, + STATE(1389), 1, + sym_attribute_item, + STATE(2623), 1, + sym_attributes, + STATE(3430), 1, + sym_field_declaration, + STATE(3848), 1, + sym_visibility_modifier, + STATE(2280), 2, + sym_line_comment, + sym_block_comment, + [71010] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2281), 2, sym_line_comment, sym_block_comment, - ACTIONS(5043), 10, + ACTIONS(4880), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174798,40 +181583,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69273] = 10, + [71033] = 13, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4712), 1, - anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_DOT_DOT, - ACTIONS(4752), 1, - anon_sym_COLON_COLON, - STATE(2024), 1, - sym_type_arguments, - ACTIONS(4716), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2226), 2, + ACTIONS(2285), 1, + anon_sym_POUND, + ACTIONS(4836), 1, + sym_identifier, + ACTIONS(4842), 1, + sym_crate, + ACTIONS(4986), 1, + anon_sym_RBRACE, + STATE(1138), 1, + aux_sym_attributes_repeat1, + STATE(1389), 1, + sym_attribute_item, + STATE(2851), 1, + sym_attributes, + STATE(3341), 1, + sym_enum_variant, + STATE(3556), 1, + sym_visibility_modifier, + STATE(2282), 2, sym_line_comment, sym_block_comment, - ACTIONS(4708), 3, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_COMMA, - [69308] = 4, + [71074] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2227), 2, + STATE(2283), 2, sym_line_comment, sym_block_comment, - ACTIONS(5045), 10, + ACTIONS(4988), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174842,38 +181630,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69331] = 8, + [71097] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1617), 1, + ACTIONS(1523), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - STATE(2207), 1, + STATE(2289), 1, sym_block, - STATE(3770), 1, + STATE(3829), 1, sym_label, - STATE(2228), 2, + STATE(2284), 2, sym_line_comment, sym_block_comment, - ACTIONS(3566), 6, + ACTIONS(3492), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [69362] = 4, + [71128] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2229), 2, + STATE(2285), 2, sym_line_comment, sym_block_comment, - ACTIONS(5047), 10, + ACTIONS(4990), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174884,15 +181672,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69385] = 4, + [71151] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2230), 2, + STATE(2286), 2, sym_line_comment, sym_block_comment, - ACTIONS(5049), 10, + ACTIONS(4992), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174903,1225 +181691,1104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69408] = 13, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(4947), 1, - sym_identifier, - ACTIONS(4953), 1, - sym_crate, - ACTIONS(5051), 1, - anon_sym_RBRACE, - ACTIONS(5053), 1, - anon_sym_COMMA, - STATE(1254), 1, - sym_attribute_item, - STATE(2324), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2898), 1, - sym_field_declaration, - STATE(3506), 1, - sym_visibility_modifier, - STATE(2231), 2, - sym_line_comment, - sym_block_comment, - [69449] = 5, + [71174] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3505), 1, - anon_sym_DOT_DOT, - STATE(2232), 2, + STATE(2287), 2, sym_line_comment, sym_block_comment, - ACTIONS(3507), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, + ACTIONS(4994), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [69473] = 9, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [71197] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4674), 1, - anon_sym_LPAREN, - ACTIONS(5055), 1, - anon_sym_for, - STATE(2026), 1, - sym_type_arguments, - STATE(2098), 1, - sym_parameters, - STATE(2233), 2, + STATE(2288), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 4, + ACTIONS(4996), 10, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [69505] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4674), 1, - anon_sym_LPAREN, - STATE(2026), 1, - sym_type_arguments, - STATE(2405), 1, - sym_parameters, - STATE(2234), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3513), 5, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_as, - [69535] = 7, + anon_sym_else, + anon_sym_in, + [71220] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5057), 1, - anon_sym_SEMI, - ACTIONS(5059), 1, - anon_sym_LBRACE, - STATE(1272), 1, - sym_declaration_list, - STATE(2235), 2, + STATE(2289), 2, sym_line_comment, sym_block_comment, - ACTIONS(3566), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69563] = 7, + ACTIONS(1361), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [71243] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5061), 1, - anon_sym_COLON_COLON, - STATE(2024), 1, - sym_type_arguments, - STATE(2236), 2, + STATE(2290), 2, sym_line_comment, sym_block_comment, - ACTIONS(3566), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69591] = 5, + ACTIONS(4998), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [71266] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3538), 1, - anon_sym_DOT_DOT, - STATE(2237), 2, + STATE(2291), 2, sym_line_comment, sym_block_comment, - ACTIONS(3540), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, + ACTIONS(5000), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [69615] = 12, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [71289] = 13, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5063), 1, - anon_sym_SEMI, - ACTIONS(5065), 1, - anon_sym_LPAREN, - ACTIONS(5067), 1, - anon_sym_LBRACE, - ACTIONS(5069), 1, - anon_sym_LT, - ACTIONS(5071), 1, - anon_sym_where, - STATE(1314), 1, - sym_field_declaration_list, - STATE(2366), 1, - sym_type_parameters, - STATE(3164), 1, - sym_ordered_field_declaration_list, - STATE(3445), 1, - sym_where_clause, - STATE(2238), 2, + ACTIONS(2285), 1, + anon_sym_POUND, + ACTIONS(4842), 1, + sym_crate, + ACTIONS(4850), 1, + sym_identifier, + ACTIONS(5002), 1, + anon_sym_RBRACE, + STATE(1138), 1, + aux_sym_attributes_repeat1, + STATE(1389), 1, + sym_attribute_item, + STATE(2623), 1, + sym_attributes, + STATE(3430), 1, + sym_field_declaration, + STATE(3848), 1, + sym_visibility_modifier, + STATE(2292), 2, sym_line_comment, sym_block_comment, - [69653] = 8, + [71330] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4674), 1, - anon_sym_LPAREN, - STATE(2026), 1, - sym_type_arguments, - STATE(2405), 1, - sym_parameters, - STATE(2239), 2, + STATE(2293), 2, sym_line_comment, sym_block_comment, - ACTIONS(3517), 5, + ACTIONS(5004), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_as, - [69683] = 7, + anon_sym_else, + anon_sym_in, + [71353] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5073), 1, - anon_sym_SEMI, - STATE(1321), 1, - sym_declaration_list, - STATE(2240), 2, + STATE(2294), 2, sym_line_comment, sym_block_comment, - ACTIONS(3566), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69711] = 9, + ACTIONS(5006), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [71376] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4815), 1, - anon_sym_LPAREN, - ACTIONS(4819), 1, - anon_sym_BANG, - ACTIONS(4823), 1, - anon_sym_DOT_DOT, - ACTIONS(5075), 1, - anon_sym_COLON_COLON, - ACTIONS(4825), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2241), 2, + STATE(2295), 2, sym_line_comment, sym_block_comment, - ACTIONS(4654), 3, - anon_sym_EQ_GT, + ACTIONS(4884), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, - anon_sym_if, - [69743] = 7, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [71399] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3438), 1, + ACTIONS(4615), 1, anon_sym_LT2, - ACTIONS(5077), 1, - anon_sym_COLON_COLON, - STATE(1284), 1, + ACTIONS(4617), 1, + anon_sym_LPAREN, + ACTIONS(5008), 1, + anon_sym_LBRACE, + STATE(2082), 1, sym_type_arguments, - STATE(2242), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3566), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69771] = 7, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5079), 1, - anon_sym_move, - STATE(233), 1, - sym_closure_parameters, - STATE(2243), 2, + STATE(2157), 1, + sym_parameters, + STATE(2296), 2, sym_line_comment, sym_block_comment, - ACTIONS(3566), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69799] = 12, - ACTIONS(69), 1, - anon_sym_pub, + ACTIONS(3420), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_COMMA, + [71432] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(4953), 1, - sym_crate, - ACTIONS(5001), 1, - sym_identifier, - ACTIONS(5081), 1, - anon_sym_RBRACE, - STATE(1254), 1, - sym_attribute_item, - STATE(2292), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3425), 1, - sym_enum_variant, - STATE(3794), 1, - sym_visibility_modifier, - STATE(2244), 2, + STATE(2297), 2, sym_line_comment, sym_block_comment, - [69837] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5065), 1, - anon_sym_LPAREN, - ACTIONS(5067), 1, - anon_sym_LBRACE, - ACTIONS(5069), 1, - anon_sym_LT, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5083), 1, + ACTIONS(4844), 10, anon_sym_SEMI, - STATE(1423), 1, - sym_field_declaration_list, - STATE(2363), 1, - sym_type_parameters, - STATE(2905), 1, - sym_ordered_field_declaration_list, - STATE(3257), 1, - sym_where_clause, - STATE(2245), 2, - sym_line_comment, - sym_block_comment, - [69875] = 12, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [71455] = 13, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, + ACTIONS(2285), 1, anon_sym_POUND, - ACTIONS(4947), 1, - sym_identifier, - ACTIONS(4953), 1, + ACTIONS(4842), 1, sym_crate, - ACTIONS(5085), 1, - anon_sym_RBRACE, - STATE(1254), 1, - sym_attribute_item, - STATE(2299), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3225), 1, - sym_field_declaration, - STATE(3506), 1, - sym_visibility_modifier, - STATE(2246), 2, - sym_line_comment, - sym_block_comment, - [69913] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5089), 1, - anon_sym_PLUS, - STATE(2262), 1, - aux_sym_trait_bounds_repeat1, - STATE(2247), 2, + ACTIONS(4850), 1, + sym_identifier, + ACTIONS(5010), 1, + anon_sym_RBRACE, + STATE(1138), 1, + aux_sym_attributes_repeat1, + STATE(1389), 1, + sym_attribute_item, + STATE(2623), 1, + sym_attributes, + STATE(3430), 1, + sym_field_declaration, + STATE(3848), 1, + sym_visibility_modifier, + STATE(2298), 2, sym_line_comment, sym_block_comment, - ACTIONS(5087), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [69939] = 7, + [71496] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5091), 1, - anon_sym_SEMI, - ACTIONS(5093), 1, - anon_sym_LBRACE, - STATE(551), 1, - sym_declaration_list, - STATE(2248), 2, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(4629), 1, + anon_sym_BANG, + ACTIONS(4691), 1, + anon_sym_COLON_COLON, + STATE(2079), 1, + sym_type_arguments, + STATE(2299), 2, sym_line_comment, sym_block_comment, - ACTIONS(3566), 6, + ACTIONS(3492), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [69967] = 12, + [71527] = 13, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, + ACTIONS(2285), 1, anon_sym_POUND, - ACTIONS(4953), 1, + ACTIONS(4842), 1, sym_crate, - ACTIONS(5001), 1, - sym_identifier, - ACTIONS(5095), 1, - anon_sym_RBRACE, - STATE(1254), 1, - sym_attribute_item, - STATE(2292), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3425), 1, - sym_enum_variant, - STATE(3794), 1, - sym_visibility_modifier, - STATE(2249), 2, - sym_line_comment, - sym_block_comment, - [70005] = 12, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(4947), 1, + ACTIONS(4850), 1, sym_identifier, - ACTIONS(4953), 1, - sym_crate, - ACTIONS(5097), 1, + ACTIONS(5012), 1, anon_sym_RBRACE, - STATE(1254), 1, + STATE(1138), 1, + aux_sym_attributes_repeat1, + STATE(1389), 1, sym_attribute_item, - STATE(2299), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3225), 1, + STATE(2623), 1, + sym_attributes, + STATE(3430), 1, sym_field_declaration, - STATE(3506), 1, + STATE(3848), 1, sym_visibility_modifier, - STATE(2250), 2, - sym_line_comment, - sym_block_comment, - [70043] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3530), 1, - anon_sym_DOT_DOT, - STATE(2251), 2, + STATE(2300), 2, sym_line_comment, sym_block_comment, - ACTIONS(3532), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [70067] = 9, + [71568] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4615), 1, anon_sym_LT2, - ACTIONS(4674), 1, + ACTIONS(4617), 1, anon_sym_LPAREN, - ACTIONS(5099), 1, + ACTIONS(5014), 1, anon_sym_for, - STATE(2026), 1, + STATE(2082), 1, sym_type_arguments, - STATE(2098), 1, + STATE(2157), 1, sym_parameters, - STATE(2252), 2, + STATE(2301), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 4, + ACTIONS(3420), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [70099] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [71600] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(4953), 1, - sym_crate, - ACTIONS(5001), 1, - sym_identifier, - ACTIONS(5101), 1, - anon_sym_RBRACE, - STATE(1254), 1, - sym_attribute_item, - STATE(2292), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3425), 1, - sym_enum_variant, - STATE(3794), 1, - sym_visibility_modifier, - STATE(2253), 2, + ACTIONS(5016), 1, + anon_sym_SEMI, + ACTIONS(5018), 1, + anon_sym_LPAREN, + ACTIONS(5020), 1, + anon_sym_LBRACE, + ACTIONS(5022), 1, + anon_sym_LT, + ACTIONS(5024), 1, + anon_sym_where, + STATE(636), 1, + sym_field_declaration_list, + STATE(2408), 1, + sym_type_parameters, + STATE(3187), 1, + sym_ordered_field_declaration_list, + STATE(3479), 1, + sym_where_clause, + STATE(2302), 2, sym_line_comment, sym_block_comment, - [70137] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [71638] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(4947), 1, - sym_identifier, - ACTIONS(4953), 1, - sym_crate, - ACTIONS(5103), 1, - anon_sym_RBRACE, - STATE(1254), 1, - sym_attribute_item, - STATE(2299), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3225), 1, - sym_field_declaration, - STATE(3506), 1, - sym_visibility_modifier, - STATE(2254), 2, + ACTIONS(4766), 1, + anon_sym_LPAREN, + ACTIONS(4770), 1, + anon_sym_BANG, + ACTIONS(4774), 1, + anon_sym_DOT_DOT, + ACTIONS(5026), 1, + anon_sym_COLON_COLON, + ACTIONS(4776), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2303), 2, sym_line_comment, sym_block_comment, - [70175] = 8, + ACTIONS(4597), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [71670] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4674), 1, - anon_sym_LPAREN, - STATE(2026), 1, - sym_type_arguments, - STATE(2405), 1, - sym_parameters, - STATE(2255), 2, + ACTIONS(5030), 1, + anon_sym_PLUS, + STATE(2324), 1, + aux_sym_trait_bounds_repeat1, + STATE(2304), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 5, - anon_sym_COLON, - anon_sym_PLUS, + ACTIONS(5028), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, - anon_sym_as, - [70205] = 12, - ACTIONS(69), 1, - anon_sym_pub, + anon_sym_SQUOTE, + anon_sym_where, + [71696] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(4953), 1, - sym_crate, - ACTIONS(5001), 1, - sym_identifier, - ACTIONS(5105), 1, - anon_sym_RBRACE, - STATE(1254), 1, - sym_attribute_item, - STATE(2292), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3425), 1, - sym_enum_variant, - STATE(3794), 1, - sym_visibility_modifier, - STATE(2256), 2, + ACTIONS(5018), 1, + anon_sym_LPAREN, + ACTIONS(5022), 1, + anon_sym_LT, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5032), 1, + anon_sym_SEMI, + ACTIONS(5034), 1, + anon_sym_LBRACE, + STATE(1439), 1, + sym_field_declaration_list, + STATE(2454), 1, + sym_type_parameters, + STATE(3199), 1, + sym_ordered_field_declaration_list, + STATE(3480), 1, + sym_where_clause, + STATE(2305), 2, sym_line_comment, sym_block_comment, - [70243] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [71734] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(4947), 1, - sym_identifier, - ACTIONS(4953), 1, - sym_crate, - ACTIONS(5107), 1, - anon_sym_RBRACE, - STATE(1254), 1, - sym_attribute_item, - STATE(2299), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3225), 1, - sym_field_declaration, - STATE(3506), 1, - sym_visibility_modifier, - STATE(2257), 2, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(4617), 1, + anon_sym_LPAREN, + ACTIONS(5036), 1, + anon_sym_for, + STATE(2082), 1, + sym_type_arguments, + STATE(2157), 1, + sym_parameters, + STATE(2306), 2, sym_line_comment, sym_block_comment, - [70281] = 8, + ACTIONS(3420), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [71766] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4615), 1, anon_sym_LT2, - ACTIONS(4674), 1, + ACTIONS(4617), 1, anon_sym_LPAREN, - STATE(2026), 1, + STATE(2082), 1, sym_type_arguments, - STATE(2405), 1, + STATE(2523), 1, sym_parameters, - STATE(2258), 2, + STATE(2307), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 5, + ACTIONS(3480), 5, anon_sym_COLON, anon_sym_PLUS, anon_sym_GT, anon_sym_COMMA, anon_sym_as, - [70311] = 10, + [71796] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3475), 1, + ACTIONS(5038), 1, anon_sym_PLUS, - ACTIONS(4708), 1, + STATE(2324), 1, + aux_sym_trait_bounds_repeat1, + STATE(2308), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5028), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [71822] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(4625), 1, anon_sym_PIPE, - ACTIONS(4710), 1, + ACTIONS(4627), 1, anon_sym_COLON, - ACTIONS(4714), 1, + ACTIONS(4629), 1, + anon_sym_BANG, + ACTIONS(4631), 1, anon_sym_DOT_DOT, - ACTIONS(4744), 1, + ACTIONS(4722), 1, anon_sym_COLON_COLON, - ACTIONS(4716), 2, + STATE(2079), 1, + sym_type_arguments, + ACTIONS(4633), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(5109), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2259), 2, + STATE(2309), 2, sym_line_comment, sym_block_comment, - [70345] = 7, + [71858] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4184), 1, + ACTIONS(4615), 1, anon_sym_LT2, - ACTIONS(5112), 1, + ACTIONS(5040), 1, anon_sym_COLON_COLON, - STATE(1659), 1, + STATE(2079), 1, sym_type_arguments, - STATE(2260), 2, + STATE(2310), 2, sym_line_comment, sym_block_comment, - ACTIONS(3566), 6, + ACTIONS(3492), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [70373] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [71886] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(4947), 1, - sym_identifier, - ACTIONS(4953), 1, - sym_crate, - ACTIONS(5114), 1, - anon_sym_RBRACE, - STATE(1254), 1, - sym_attribute_item, - STATE(2299), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3225), 1, - sym_field_declaration, - STATE(3506), 1, - sym_visibility_modifier, - STATE(2261), 2, + ACTIONS(4625), 1, + anon_sym_PIPE, + ACTIONS(4627), 1, + anon_sym_COLON, + ACTIONS(4631), 1, + anon_sym_DOT_DOT, + ACTIONS(4722), 1, + anon_sym_COLON_COLON, + ACTIONS(4633), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2311), 2, sym_line_comment, sym_block_comment, - [70411] = 5, + ACTIONS(3420), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [71918] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5118), 1, - anon_sym_PLUS, - STATE(2262), 3, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(4617), 1, + anon_sym_LPAREN, + ACTIONS(5042), 1, + anon_sym_for, + STATE(2082), 1, + sym_type_arguments, + STATE(2157), 1, + sym_parameters, + STATE(2312), 2, sym_line_comment, sym_block_comment, - aux_sym_trait_bounds_repeat1, - ACTIONS(5116), 7, + ACTIONS(3420), 4, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_PLUS, anon_sym_where, - [70435] = 6, + [71950] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5089), 1, - anon_sym_PLUS, - STATE(2247), 1, - aux_sym_trait_bounds_repeat1, - STATE(2263), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5121), 7, + ACTIONS(5044), 1, anon_sym_SEMI, + ACTIONS(5046), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [70461] = 6, + STATE(1405), 1, + sym_declaration_list, + STATE(2313), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3492), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [71978] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5123), 1, - anon_sym_PLUS, - STATE(2247), 1, - aux_sym_trait_bounds_repeat1, - STATE(2264), 2, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(4617), 1, + anon_sym_LPAREN, + ACTIONS(5048), 1, + anon_sym_for, + STATE(2082), 1, + sym_type_arguments, + STATE(2157), 1, + sym_parameters, + STATE(2314), 2, sym_line_comment, sym_block_comment, - ACTIONS(5121), 7, + ACTIONS(3420), 4, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_PLUS, anon_sym_where, - [70487] = 10, + [72010] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(4887), 1, - sym_identifier, - ACTIONS(4891), 1, - anon_sym_DOT_DOT, - ACTIONS(4895), 1, - sym_integer_literal, - STATE(1254), 1, - sym_attribute_item, - STATE(2552), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2265), 2, + ACTIONS(5018), 1, + anon_sym_LPAREN, + ACTIONS(5020), 1, + anon_sym_LBRACE, + ACTIONS(5022), 1, + anon_sym_LT, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5050), 1, + anon_sym_SEMI, + STATE(771), 1, + sym_field_declaration_list, + STATE(2448), 1, + sym_type_parameters, + STATE(3197), 1, + sym_ordered_field_declaration_list, + STATE(3308), 1, + sym_where_clause, + STATE(2315), 2, sym_line_comment, sym_block_comment, - STATE(3408), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [70521] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [72048] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(4947), 1, - sym_identifier, - ACTIONS(4953), 1, - sym_crate, - ACTIONS(5125), 1, - anon_sym_RBRACE, - STATE(1254), 1, - sym_attribute_item, - STATE(2299), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3225), 1, - sym_field_declaration, - STATE(3506), 1, - sym_visibility_modifier, - STATE(2266), 2, + ACTIONS(5046), 1, + anon_sym_LBRACE, + ACTIONS(5052), 1, + anon_sym_SEMI, + STATE(1446), 1, + sym_declaration_list, + STATE(2316), 2, sym_line_comment, sym_block_comment, - [70559] = 9, + ACTIONS(3492), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [72076] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4615), 1, anon_sym_LT2, - ACTIONS(4674), 1, + ACTIONS(4617), 1, anon_sym_LPAREN, - ACTIONS(5127), 1, - anon_sym_for, - STATE(2026), 1, + STATE(2082), 1, sym_type_arguments, - STATE(2098), 1, + STATE(2523), 1, sym_parameters, - STATE(2267), 2, + STATE(2317), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [70591] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4708), 1, - anon_sym_PIPE, - ACTIONS(4710), 1, + ACTIONS(3467), 5, anon_sym_COLON, - ACTIONS(4712), 1, - anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_DOT_DOT, - ACTIONS(4777), 1, - anon_sym_COLON_COLON, - STATE(2024), 1, - sym_type_arguments, - ACTIONS(4716), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2268), 2, - sym_line_comment, - sym_block_comment, - [70627] = 12, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [72106] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5065), 1, + ACTIONS(5018), 1, anon_sym_LPAREN, - ACTIONS(5069), 1, + ACTIONS(5022), 1, anon_sym_LT, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5129), 1, - anon_sym_SEMI, - ACTIONS(5131), 1, + ACTIONS(5034), 1, anon_sym_LBRACE, - STATE(536), 1, + ACTIONS(5054), 1, + anon_sym_SEMI, + STATE(1168), 1, sym_field_declaration_list, - STATE(2370), 1, + STATE(2396), 1, sym_type_parameters, - STATE(3170), 1, + STATE(3195), 1, sym_ordered_field_declaration_list, - STATE(3463), 1, + STATE(3327), 1, sym_where_clause, - STATE(2269), 2, + STATE(2318), 2, sym_line_comment, sym_block_comment, - [70665] = 9, + [72144] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4615), 1, anon_sym_LT2, - ACTIONS(4674), 1, + ACTIONS(4617), 1, anon_sym_LPAREN, - ACTIONS(5133), 1, + ACTIONS(5056), 1, anon_sym_for, - STATE(2026), 1, + STATE(2082), 1, sym_type_arguments, - STATE(2098), 1, + STATE(2157), 1, sym_parameters, - STATE(2270), 2, + STATE(2319), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 4, + ACTIONS(3420), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [70697] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4714), 1, - anon_sym_DOT_DOT, - ACTIONS(4752), 1, - anon_sym_COLON_COLON, - ACTIONS(5109), 1, - anon_sym_RBRACK, - ACTIONS(3475), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4708), 2, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(4716), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2271), 2, - sym_line_comment, - sym_block_comment, - [70729] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [72176] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(4953), 1, - sym_crate, - ACTIONS(5001), 1, - sym_identifier, - ACTIONS(5135), 1, - anon_sym_RBRACE, - STATE(1254), 1, - sym_attribute_item, - STATE(2292), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3425), 1, - sym_enum_variant, - STATE(3794), 1, - sym_visibility_modifier, - STATE(2272), 2, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(4617), 1, + anon_sym_LPAREN, + ACTIONS(5058), 1, + anon_sym_for, + STATE(2082), 1, + sym_type_arguments, + STATE(2157), 1, + sym_parameters, + STATE(2320), 2, sym_line_comment, sym_block_comment, - [70767] = 12, - ACTIONS(69), 1, - anon_sym_pub, + ACTIONS(3420), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [72208] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(4953), 1, - sym_crate, - ACTIONS(5001), 1, - sym_identifier, - ACTIONS(5137), 1, - anon_sym_RBRACE, - STATE(1254), 1, - sym_attribute_item, - STATE(2292), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3425), 1, - sym_enum_variant, - STATE(3794), 1, - sym_visibility_modifier, - STATE(2273), 2, + ACTIONS(3408), 1, + anon_sym_DOT_DOT, + STATE(2321), 2, sym_line_comment, sym_block_comment, - [70805] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4708), 1, + ACTIONS(3410), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_PIPE, - ACTIONS(4710), 1, - anon_sym_COLON, - ACTIONS(4714), 1, - anon_sym_DOT_DOT, - ACTIONS(4777), 1, - anon_sym_COLON_COLON, - ACTIONS(4716), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2274), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3475), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [70837] = 9, + anon_sym_COLON_COLON, + anon_sym_if, + [72232] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4656), 1, + ACTIONS(4599), 1, anon_sym_LPAREN, - ACTIONS(4662), 1, + ACTIONS(4605), 1, anon_sym_BANG, - ACTIONS(4666), 1, + ACTIONS(4609), 1, anon_sym_DOT_DOT, - ACTIONS(5139), 1, + ACTIONS(5060), 1, anon_sym_COLON_COLON, - ACTIONS(4668), 2, + ACTIONS(4611), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2275), 2, + STATE(2322), 2, sym_line_comment, sym_block_comment, - ACTIONS(4654), 3, + ACTIONS(4597), 3, anon_sym_RBRACK, anon_sym_PIPE, anon_sym_COMMA, - [70869] = 12, + [72264] = 7, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5065), 1, - anon_sym_LPAREN, - ACTIONS(5069), 1, - anon_sym_LT, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5131), 1, - anon_sym_LBRACE, - ACTIONS(5141), 1, - anon_sym_SEMI, - STATE(525), 1, - sym_field_declaration_list, - STATE(2361), 1, - sym_type_parameters, - STATE(3152), 1, - sym_ordered_field_declaration_list, - STATE(3421), 1, - sym_where_clause, - STATE(2276), 2, + ACTIONS(5062), 1, + anon_sym_move, + STATE(190), 1, + sym_closure_parameters, + STATE(2323), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3492), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [72292] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5030), 1, + anon_sym_PLUS, + STATE(2340), 1, + aux_sym_trait_bounds_repeat1, + STATE(2324), 2, sym_line_comment, sym_block_comment, - [70907] = 9, + ACTIONS(5064), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [72318] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4615), 1, anon_sym_LT2, - ACTIONS(4674), 1, + ACTIONS(4617), 1, anon_sym_LPAREN, - ACTIONS(5143), 1, + ACTIONS(5066), 1, anon_sym_for, - STATE(2026), 1, + STATE(2082), 1, sym_type_arguments, - STATE(2098), 1, + STATE(2157), 1, sym_parameters, - STATE(2277), 2, + STATE(2325), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 4, + ACTIONS(3420), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [70939] = 9, + [72350] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3367), 1, + anon_sym_LT2, + ACTIONS(5068), 1, + anon_sym_COLON_COLON, + STATE(1411), 1, + sym_type_arguments, + STATE(2326), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3492), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [72378] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5070), 1, + anon_sym_SEMI, + ACTIONS(5072), 1, + anon_sym_LBRACE, + STATE(807), 1, + sym_declaration_list, + STATE(2327), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3492), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [72406] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4674), 1, - anon_sym_LPAREN, - ACTIONS(5145), 1, - anon_sym_for, - STATE(2026), 1, - sym_type_arguments, - STATE(2098), 1, - sym_parameters, - STATE(2278), 2, + ACTIONS(3463), 1, + anon_sym_DOT_DOT, + STATE(2328), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [70971] = 9, + ACTIONS(3465), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [72430] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5147), 1, + ACTIONS(5074), 1, anon_sym_LPAREN, - ACTIONS(5152), 1, + ACTIONS(5079), 1, anon_sym_LBRACK, - ACTIONS(5155), 1, + ACTIONS(5082), 1, anon_sym_LBRACE, - STATE(3661), 1, - sym_token_tree_pattern, - STATE(3785), 1, + STATE(3621), 1, sym_macro_rule, - ACTIONS(5150), 3, + STATE(3740), 1, + sym_token_tree_pattern, + ACTIONS(5077), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(2279), 3, + STATE(2329), 3, sym_line_comment, sym_block_comment, aux_sym_macro_definition_repeat1, - [71003] = 9, + [72462] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4615), 1, anon_sym_LT2, - ACTIONS(4674), 1, + ACTIONS(4617), 1, anon_sym_LPAREN, - ACTIONS(5158), 1, - anon_sym_for, - STATE(2026), 1, + STATE(2082), 1, sym_type_arguments, - STATE(2098), 1, + STATE(2523), 1, sym_parameters, - STATE(2280), 2, + STATE(2330), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3420), 5, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_where, - [71035] = 7, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [72492] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(5160), 1, - anon_sym_SEMI, - STATE(548), 1, - sym_declaration_list, - STATE(2281), 2, + ACTIONS(3420), 1, + anon_sym_PLUS, + ACTIONS(4625), 1, + anon_sym_PIPE, + ACTIONS(4627), 1, + anon_sym_COLON, + ACTIONS(4631), 1, + anon_sym_DOT_DOT, + ACTIONS(4635), 1, + anon_sym_COLON_COLON, + ACTIONS(4633), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5085), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2331), 2, + sym_line_comment, + sym_block_comment, + [72526] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3416), 1, + anon_sym_DOT_DOT, + STATE(2332), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3418), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [72550] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4065), 1, + anon_sym_LT2, + ACTIONS(5088), 1, + anon_sym_COLON_COLON, + STATE(1731), 1, + sym_type_arguments, + STATE(2333), 2, sym_line_comment, sym_block_comment, - ACTIONS(3566), 6, + ACTIONS(3492), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [71063] = 9, + [72578] = 12, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(2285), 1, + anon_sym_POUND, + ACTIONS(4836), 1, + sym_identifier, + ACTIONS(4842), 1, + sym_crate, + STATE(1138), 1, + aux_sym_attributes_repeat1, + STATE(1389), 1, + sym_attribute_item, + STATE(2851), 1, + sym_attributes, + STATE(3341), 1, + sym_enum_variant, + STATE(3556), 1, + sym_visibility_modifier, + STATE(2334), 2, + sym_line_comment, + sym_block_comment, + [72616] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4615), 1, anon_sym_LT2, - ACTIONS(4674), 1, + ACTIONS(4617), 1, anon_sym_LPAREN, - ACTIONS(5162), 1, + ACTIONS(5090), 1, anon_sym_for, - STATE(2026), 1, + STATE(2082), 1, sym_type_arguments, - STATE(2098), 1, + STATE(2157), 1, sym_parameters, - STATE(2282), 2, + STATE(2335), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 4, + ACTIONS(3420), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [71095] = 5, + [72648] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3546), 1, + ACTIONS(3455), 1, anon_sym_DOT_DOT, - STATE(2283), 2, + STATE(2336), 2, sym_line_comment, sym_block_comment, - ACTIONS(3548), 8, + ACTIONS(3457), 8, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_BANG, @@ -176130,27941 +182797,28046 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_if, - [71119] = 6, + [72672] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4883), 1, + ACTIONS(4631), 1, + anon_sym_DOT_DOT, + ACTIONS(4712), 1, anon_sym_COLON_COLON, - ACTIONS(4993), 1, - anon_sym_BANG, - STATE(2284), 2, + ACTIONS(5085), 1, + anon_sym_RBRACK, + ACTIONS(3420), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4625), 2, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(4633), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2337), 2, sym_line_comment, sym_block_comment, - ACTIONS(3566), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [71144] = 11, + [72704] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5093), 1, + ACTIONS(5072), 1, anon_sym_LBRACE, - ACTIONS(5164), 1, - anon_sym_COLON, - ACTIONS(5166), 1, - anon_sym_LT, - STATE(510), 1, - sym_declaration_list, - STATE(2410), 1, - sym_type_parameters, - STATE(2698), 1, - sym_trait_bounds, - STATE(3338), 1, - sym_where_clause, - STATE(2285), 2, - sym_line_comment, - sym_block_comment, - [71179] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5168), 1, + ACTIONS(5092), 1, anon_sym_SEMI, - ACTIONS(5170), 1, - anon_sym_LBRACE, - STATE(1292), 1, - sym_block, - STATE(2514), 1, - sym_where_clause, - STATE(3777), 1, - sym_label, - STATE(2286), 2, + STATE(662), 1, + sym_declaration_list, + STATE(2338), 2, sym_line_comment, sym_block_comment, - [71214] = 11, + ACTIONS(3492), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [72732] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, + ACTIONS(2285), 1, anon_sym_POUND, - ACTIONS(4947), 1, - sym_identifier, - ACTIONS(4953), 1, + ACTIONS(4842), 1, sym_crate, - STATE(1254), 1, + ACTIONS(4850), 1, + sym_identifier, + STATE(1138), 1, + aux_sym_attributes_repeat1, + STATE(1389), 1, sym_attribute_item, - STATE(2299), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3225), 1, + STATE(2623), 1, + sym_attributes, + STATE(3430), 1, sym_field_declaration, - STATE(3506), 1, + STATE(3848), 1, sym_visibility_modifier, - STATE(2287), 2, - sym_line_comment, - sym_block_comment, - [71249] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5164), 1, - anon_sym_COLON, - ACTIONS(5166), 1, - anon_sym_LT, - ACTIONS(5172), 1, - anon_sym_SEMI, - ACTIONS(5174), 1, - anon_sym_EQ, - STATE(2460), 1, - sym_type_parameters, - STATE(3167), 1, - sym_trait_bounds, - STATE(3450), 1, - sym_where_clause, - STATE(2288), 2, + STATE(2339), 2, sym_line_comment, sym_block_comment, - [71284] = 11, + [72770] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(5096), 1, anon_sym_PLUS, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5170), 1, - anon_sym_LBRACE, - ACTIONS(5176), 1, - anon_sym_SEMI, - STATE(1361), 1, - sym_block, - STATE(2516), 1, - sym_where_clause, - STATE(3777), 1, - sym_label, - STATE(2289), 2, + STATE(2340), 3, sym_line_comment, sym_block_comment, - [71319] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + aux_sym_trait_bounds_repeat1, + ACTIONS(5094), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, anon_sym_SQUOTE, - ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5170), 1, - anon_sym_LBRACE, - ACTIONS(5178), 1, - anon_sym_SEMI, - ACTIONS(5180), 1, - anon_sym_DASH_GT, - STATE(1373), 1, - sym_block, - STATE(2517), 1, - sym_where_clause, - STATE(3777), 1, - sym_label, - STATE(2290), 2, - sym_line_comment, - sym_block_comment, - [71354] = 11, + [72794] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5170), 1, - anon_sym_LBRACE, - ACTIONS(5182), 1, - anon_sym_SEMI, - ACTIONS(5184), 1, - anon_sym_DASH_GT, - STATE(1354), 1, - sym_block, - STATE(2570), 1, - sym_where_clause, - STATE(3777), 1, - sym_label, - STATE(2291), 2, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(4617), 1, + anon_sym_LPAREN, + STATE(2082), 1, + sym_type_arguments, + STATE(2523), 1, + sym_parameters, + STATE(2341), 2, sym_line_comment, sym_block_comment, - [71389] = 11, - ACTIONS(69), 1, - anon_sym_pub, + ACTIONS(3474), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [72824] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(4953), 1, - sym_crate, - ACTIONS(5001), 1, - sym_identifier, - STATE(1093), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1254), 1, - sym_attribute_item, - STATE(3399), 1, - sym_enum_variant, - STATE(3794), 1, - sym_visibility_modifier, - STATE(2292), 2, + STATE(2342), 2, sym_line_comment, sym_block_comment, - [71424] = 11, + ACTIONS(5099), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [72845] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3095), 1, anon_sym_PLUS, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5170), 1, - anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(5101), 1, anon_sym_SEMI, - STATE(1115), 1, + ACTIONS(5103), 1, + anon_sym_LBRACE, + STATE(696), 1, sym_block, - STATE(2519), 1, + STATE(2609), 1, sym_where_clause, - STATE(3777), 1, + STATE(3834), 1, sym_label, - STATE(2293), 2, + STATE(2343), 2, sym_line_comment, sym_block_comment, - [71459] = 11, + [72880] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5170), 1, + ACTIONS(5103), 1, anon_sym_LBRACE, - ACTIONS(5188), 1, + ACTIONS(5105), 1, anon_sym_SEMI, - STATE(1127), 1, + ACTIONS(5107), 1, + anon_sym_DASH_GT, + STATE(585), 1, sym_block, - STATE(2521), 1, + STATE(2592), 1, sym_where_clause, - STATE(3777), 1, + STATE(3834), 1, sym_label, - STATE(2294), 2, + STATE(2344), 2, sym_line_comment, sym_block_comment, - [71494] = 11, + [72915] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5170), 1, + ACTIONS(5072), 1, anon_sym_LBRACE, - ACTIONS(5190), 1, - anon_sym_SEMI, - STATE(1138), 1, - sym_block, - STATE(2523), 1, + ACTIONS(5109), 1, + anon_sym_COLON, + ACTIONS(5111), 1, + anon_sym_LT, + STATE(622), 1, + sym_declaration_list, + STATE(2479), 1, + sym_type_parameters, + STATE(2712), 1, + sym_trait_bounds, + STATE(3352), 1, sym_where_clause, - STATE(3777), 1, - sym_label, - STATE(2295), 2, + STATE(2345), 2, sym_line_comment, sym_block_comment, - [71529] = 6, + [72950] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1167), 1, + ACTIONS(1117), 1, aux_sym_string_literal_token1, - STATE(2327), 1, + STATE(2342), 1, sym_string_literal, - STATE(2296), 2, + STATE(2346), 2, sym_line_comment, sym_block_comment, - ACTIONS(4903), 6, + ACTIONS(4856), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [71554] = 11, + [72975] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5164), 1, + ACTIONS(5072), 1, + anon_sym_LBRACE, + ACTIONS(5109), 1, anon_sym_COLON, - ACTIONS(5166), 1, + ACTIONS(5111), 1, anon_sym_LT, - STATE(1416), 1, + STATE(761), 1, sym_declaration_list, - STATE(2433), 1, + STATE(2476), 1, sym_type_parameters, - STATE(2743), 1, + STATE(2908), 1, sym_trait_bounds, - STATE(3234), 1, + STATE(3354), 1, sym_where_clause, - STATE(2297), 2, + STATE(2347), 2, sym_line_comment, sym_block_comment, - [71589] = 10, + [73010] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5192), 1, - sym_identifier, - ACTIONS(5194), 1, - anon_sym_RBRACE, - ACTIONS(5196), 1, - anon_sym_DOT_DOT, - ACTIONS(5198), 1, - anon_sym_COMMA, - ACTIONS(5200), 1, - anon_sym_ref, - ACTIONS(5202), 1, - sym_mutable_specifier, - STATE(2298), 2, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5103), 1, + anon_sym_LBRACE, + ACTIONS(5113), 1, + anon_sym_SEMI, + STATE(737), 1, + sym_block, + STATE(2588), 1, + sym_where_clause, + STATE(3834), 1, + sym_label, + STATE(2348), 2, sym_line_comment, sym_block_comment, - STATE(2941), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [71622] = 11, - ACTIONS(69), 1, - anon_sym_pub, + [73045] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(4947), 1, - sym_identifier, - ACTIONS(4953), 1, - sym_crate, - STATE(1093), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1254), 1, - sym_attribute_item, - STATE(3237), 1, - sym_field_declaration, - STATE(3506), 1, - sym_visibility_modifier, - STATE(2299), 2, + ACTIONS(4832), 1, + anon_sym_COLON_COLON, + ACTIONS(4952), 1, + anon_sym_BANG, + STATE(2349), 2, sym_line_comment, sym_block_comment, - [71657] = 11, - ACTIONS(69), 1, - anon_sym_pub, + ACTIONS(3492), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [73070] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(4947), 1, - sym_identifier, - ACTIONS(4953), 1, - sym_crate, - STATE(1093), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1254), 1, - sym_attribute_item, - STATE(3122), 1, - sym_field_declaration, - STATE(3506), 1, - sym_visibility_modifier, - STATE(2300), 2, + ACTIONS(4677), 1, + anon_sym_trait, + ACTIONS(5115), 1, + anon_sym_impl, + STATE(2350), 2, sym_line_comment, sym_block_comment, - [71692] = 4, + ACTIONS(3492), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [73095] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2301), 2, + ACTIONS(5120), 1, + anon_sym_fn, + ACTIONS(5122), 1, + anon_sym_extern, + STATE(2535), 1, + sym_extern_modifier, + STATE(2351), 3, sym_line_comment, sym_block_comment, - ACTIONS(5116), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [71713] = 4, + aux_sym_function_modifiers_repeat1, + ACTIONS(5117), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [73122] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2302), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5116), 8, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3095), 1, anon_sym_PLUS, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(3383), 1, anon_sym_SQUOTE, + ACTIONS(5024), 1, anon_sym_where, - [71734] = 4, + ACTIONS(5103), 1, + anon_sym_LBRACE, + ACTIONS(5125), 1, + anon_sym_SEMI, + STATE(691), 1, + sym_block, + STATE(2590), 1, + sym_where_clause, + STATE(3834), 1, + sym_label, + STATE(2352), 2, + sym_line_comment, + sym_block_comment, + [73157] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2303), 2, + ACTIONS(2435), 1, + anon_sym_SQUOTE, + ACTIONS(4748), 1, + sym_identifier, + ACTIONS(4752), 1, + anon_sym_const, + ACTIONS(5127), 1, + sym_metavariable, + STATE(2859), 1, + sym_lifetime, + STATE(2353), 2, sym_line_comment, sym_block_comment, - ACTIONS(5116), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [71755] = 7, + STATE(3365), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [73188] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5207), 1, - anon_sym_fn, - ACTIONS(5209), 1, - anon_sym_extern, - STATE(2461), 1, - sym_extern_modifier, - STATE(2304), 3, + ACTIONS(5129), 1, + sym_identifier, + ACTIONS(5131), 1, + anon_sym_RBRACE, + ACTIONS(5133), 1, + anon_sym_DOT_DOT, + ACTIONS(5135), 1, + anon_sym_COMMA, + ACTIONS(5137), 1, + anon_sym_ref, + ACTIONS(5139), 1, + sym_mutable_specifier, + STATE(2354), 2, sym_line_comment, sym_block_comment, - aux_sym_function_modifiers_repeat1, - ACTIONS(5204), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [71782] = 11, + STATE(3185), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [73221] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5212), 1, - anon_sym_SEMI, - ACTIONS(5214), 1, + ACTIONS(5046), 1, anon_sym_LBRACE, - STATE(697), 1, - sym_block, - STATE(2590), 1, + ACTIONS(5109), 1, + anon_sym_COLON, + ACTIONS(5111), 1, + anon_sym_LT, + STATE(1440), 1, + sym_declaration_list, + STATE(2463), 1, + sym_type_parameters, + STATE(2678), 1, + sym_trait_bounds, + STATE(3484), 1, sym_where_clause, - STATE(3774), 1, - sym_label, - STATE(2305), 2, + STATE(2355), 2, sym_line_comment, sym_block_comment, - [71817] = 11, + [73256] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5170), 1, - anon_sym_LBRACE, - ACTIONS(5216), 1, + ACTIONS(5109), 1, + anon_sym_COLON, + ACTIONS(5111), 1, + anon_sym_LT, + ACTIONS(5141), 1, anon_sym_SEMI, - ACTIONS(5218), 1, - anon_sym_DASH_GT, - STATE(1154), 1, - sym_block, - STATE(2595), 1, + ACTIONS(5143), 1, + anon_sym_EQ, + STATE(2464), 1, + sym_type_parameters, + STATE(3097), 1, + sym_trait_bounds, + STATE(3489), 1, sym_where_clause, - STATE(3777), 1, - sym_label, - STATE(2306), 2, + STATE(2356), 2, sym_line_comment, sym_block_comment, - [71852] = 10, + [73291] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5192), 1, + ACTIONS(5129), 1, sym_identifier, - ACTIONS(5196), 1, + ACTIONS(5133), 1, anon_sym_DOT_DOT, - ACTIONS(5200), 1, + ACTIONS(5137), 1, anon_sym_ref, - ACTIONS(5202), 1, + ACTIONS(5139), 1, sym_mutable_specifier, - ACTIONS(5220), 1, + ACTIONS(5145), 1, anon_sym_RBRACE, - ACTIONS(5222), 1, + ACTIONS(5147), 1, anon_sym_COMMA, - STATE(2307), 2, + STATE(2357), 2, sym_line_comment, sym_block_comment, - STATE(2880), 2, + STATE(2997), 2, sym_field_pattern, sym_remaining_field_pattern, - [71885] = 11, + [73324] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5164), 1, - anon_sym_COLON, - ACTIONS(5166), 1, - anon_sym_LT, - STATE(1315), 1, - sym_declaration_list, - STATE(2457), 1, - sym_type_parameters, - STATE(2651), 1, - sym_trait_bounds, - STATE(3448), 1, - sym_where_clause, - STATE(2308), 2, + ACTIONS(5129), 1, + sym_identifier, + ACTIONS(5133), 1, + anon_sym_DOT_DOT, + ACTIONS(5137), 1, + anon_sym_ref, + ACTIONS(5139), 1, + sym_mutable_specifier, + ACTIONS(5149), 1, + anon_sym_RBRACE, + ACTIONS(5151), 1, + anon_sym_COMMA, + STATE(2358), 2, sym_line_comment, sym_block_comment, - [71920] = 11, + STATE(3008), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [73357] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5214), 1, - anon_sym_LBRACE, - ACTIONS(5224), 1, + ACTIONS(5153), 1, anon_sym_SEMI, - STATE(779), 1, + ACTIONS(5155), 1, + anon_sym_LBRACE, + ACTIONS(5157), 1, + anon_sym_DASH_GT, + STATE(1460), 1, sym_block, - STATE(2545), 1, + STATE(2606), 1, sym_where_clause, - STATE(3774), 1, + STATE(3838), 1, sym_label, - STATE(2309), 2, - sym_line_comment, - sym_block_comment, - [71955] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4696), 1, - anon_sym_trait, - ACTIONS(5226), 1, - anon_sym_impl, - STATE(2310), 2, + STATE(2359), 2, sym_line_comment, sym_block_comment, - ACTIONS(3566), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [71980] = 10, + [73392] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4654), 1, - anon_sym_PIPE, - ACTIONS(4656), 1, - anon_sym_LPAREN, - ACTIONS(4660), 1, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5046), 1, + anon_sym_LBRACE, + ACTIONS(5109), 1, anon_sym_COLON, - ACTIONS(4662), 1, - anon_sym_BANG, - ACTIONS(4666), 1, - anon_sym_DOT_DOT, - ACTIONS(5228), 1, - anon_sym_COLON_COLON, - ACTIONS(4668), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2311), 2, + ACTIONS(5111), 1, + anon_sym_LT, + STATE(1161), 1, + sym_declaration_list, + STATE(2475), 1, + sym_type_parameters, + STATE(2704), 1, + sym_trait_bounds, + STATE(3315), 1, + sym_where_clause, + STATE(2360), 2, sym_line_comment, sym_block_comment, - [72013] = 11, + [73427] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5214), 1, + ACTIONS(5103), 1, anon_sym_LBRACE, - ACTIONS(5230), 1, + ACTIONS(5159), 1, anon_sym_SEMI, - STATE(522), 1, + ACTIONS(5161), 1, + anon_sym_DASH_GT, + STATE(792), 1, sym_block, - STATE(2548), 1, + STATE(2641), 1, sym_where_clause, - STATE(3774), 1, + STATE(3834), 1, sym_label, - STATE(2312), 2, - sym_line_comment, - sym_block_comment, - [72048] = 11, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(4953), 1, - sym_crate, - ACTIONS(5001), 1, - sym_identifier, - STATE(1093), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1254), 1, - sym_attribute_item, - STATE(3059), 1, - sym_enum_variant, - STATE(3794), 1, - sym_visibility_modifier, - STATE(2313), 2, + STATE(2361), 2, sym_line_comment, sym_block_comment, - [72083] = 11, + [73462] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5214), 1, + ACTIONS(5155), 1, anon_sym_LBRACE, - ACTIONS(5232), 1, + ACTIONS(5163), 1, anon_sym_SEMI, - ACTIONS(5234), 1, + ACTIONS(5165), 1, anon_sym_DASH_GT, - STATE(746), 1, + STATE(1182), 1, sym_block, - STATE(2586), 1, + STATE(2568), 1, sym_where_clause, - STATE(3774), 1, + STATE(3838), 1, sym_label, - STATE(2314), 2, + STATE(2362), 2, sym_line_comment, sym_block_comment, - [72118] = 11, + [73497] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5214), 1, + ACTIONS(5155), 1, anon_sym_LBRACE, - ACTIONS(5236), 1, + ACTIONS(5167), 1, anon_sym_SEMI, - ACTIONS(5238), 1, + ACTIONS(5169), 1, anon_sym_DASH_GT, - STATE(643), 1, + STATE(1214), 1, sym_block, - STATE(2606), 1, + STATE(2587), 1, sym_where_clause, - STATE(3774), 1, + STATE(3838), 1, sym_label, - STATE(2315), 2, + STATE(2363), 2, sym_line_comment, sym_block_comment, - [72153] = 11, + [73532] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5164), 1, + ACTIONS(5046), 1, + anon_sym_LBRACE, + ACTIONS(5109), 1, anon_sym_COLON, - ACTIONS(5166), 1, + ACTIONS(5111), 1, anon_sym_LT, - ACTIONS(5240), 1, - anon_sym_SEMI, - ACTIONS(5242), 1, - anon_sym_EQ, - STATE(2442), 1, + STATE(1223), 1, + sym_declaration_list, + STATE(2486), 1, sym_type_parameters, - STATE(2889), 1, + STATE(2729), 1, sym_trait_bounds, - STATE(3253), 1, + STATE(3549), 1, sym_where_clause, - STATE(2316), 2, - sym_line_comment, - sym_block_comment, - [72188] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5244), 1, - anon_sym_fn, - ACTIONS(5246), 1, - anon_sym_extern, - STATE(2304), 1, - aux_sym_function_modifiers_repeat1, - STATE(2461), 1, - sym_extern_modifier, - STATE(2317), 2, + STATE(2364), 2, sym_line_comment, sym_block_comment, - ACTIONS(4682), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [72217] = 11, + [73567] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5214), 1, + ACTIONS(5103), 1, anon_sym_LBRACE, - ACTIONS(5248), 1, + ACTIONS(5171), 1, anon_sym_SEMI, - ACTIONS(5250), 1, + ACTIONS(5173), 1, anon_sym_DASH_GT, - STATE(595), 1, + STATE(774), 1, sym_block, - STATE(2583), 1, + STATE(2649), 1, sym_where_clause, - STATE(3774), 1, + STATE(3834), 1, sym_label, - STATE(2318), 2, + STATE(2365), 2, sym_line_comment, sym_block_comment, - [72252] = 11, + [73602] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(3383), 1, anon_sym_SQUOTE, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5214), 1, + ACTIONS(5155), 1, anon_sym_LBRACE, - ACTIONS(5252), 1, + ACTIONS(5175), 1, anon_sym_SEMI, - ACTIONS(5254), 1, - anon_sym_DASH_GT, - STATE(663), 1, + STATE(1233), 1, sym_block, - STATE(2557), 1, + STATE(2598), 1, sym_where_clause, - STATE(3774), 1, + STATE(3838), 1, sym_label, - STATE(2319), 2, + STATE(2366), 2, sym_line_comment, sym_block_comment, - [72287] = 11, + [73637] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5170), 1, + ACTIONS(5155), 1, anon_sym_LBRACE, - ACTIONS(5256), 1, + ACTIONS(5177), 1, anon_sym_SEMI, - ACTIONS(5258), 1, + ACTIONS(5179), 1, anon_sym_DASH_GT, - STATE(1196), 1, + STATE(1264), 1, sym_block, - STATE(2600), 1, + STATE(2671), 1, sym_where_clause, - STATE(3777), 1, + STATE(3838), 1, sym_label, - STATE(2320), 2, + STATE(2367), 2, sym_line_comment, sym_block_comment, - [72322] = 11, - ACTIONS(69), 1, - anon_sym_pub, + [73672] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(4953), 1, - sym_crate, - ACTIONS(5001), 1, - sym_identifier, - STATE(1093), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1254), 1, - sym_attribute_item, - STATE(2925), 1, - sym_enum_variant, - STATE(3794), 1, - sym_visibility_modifier, - STATE(2321), 2, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5155), 1, + anon_sym_LBRACE, + ACTIONS(5181), 1, + anon_sym_SEMI, + ACTIONS(5183), 1, + anon_sym_DASH_GT, + STATE(1278), 1, + sym_block, + STATE(2621), 1, + sym_where_clause, + STATE(3838), 1, + sym_label, + STATE(2368), 2, sym_line_comment, sym_block_comment, - [72357] = 10, + [73707] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5192), 1, + ACTIONS(5129), 1, sym_identifier, - ACTIONS(5196), 1, + ACTIONS(5133), 1, anon_sym_DOT_DOT, - ACTIONS(5200), 1, + ACTIONS(5137), 1, anon_sym_ref, - ACTIONS(5202), 1, + ACTIONS(5139), 1, sym_mutable_specifier, - ACTIONS(5260), 1, + ACTIONS(5185), 1, anon_sym_RBRACE, - ACTIONS(5262), 1, + ACTIONS(5187), 1, anon_sym_COMMA, - STATE(2322), 2, + STATE(2369), 2, sym_line_comment, sym_block_comment, - STATE(3117), 2, + STATE(3053), 2, sym_field_pattern, sym_remaining_field_pattern, - [72390] = 11, + [73740] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5155), 1, anon_sym_LBRACE, - ACTIONS(5071), 1, + ACTIONS(5189), 1, + anon_sym_SEMI, + STATE(1286), 1, + sym_block, + STATE(2633), 1, + sym_where_clause, + STATE(3838), 1, + sym_label, + STATE(2370), 2, + sym_line_comment, + sym_block_comment, + [73775] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5164), 1, - anon_sym_COLON, - ACTIONS(5166), 1, - anon_sym_LT, - STATE(1205), 1, - sym_declaration_list, - STATE(2495), 1, - sym_type_parameters, - STATE(2841), 1, - sym_trait_bounds, - STATE(3233), 1, + ACTIONS(5155), 1, + anon_sym_LBRACE, + ACTIONS(5191), 1, + anon_sym_SEMI, + STATE(1321), 1, + sym_block, + STATE(2640), 1, sym_where_clause, - STATE(2323), 2, + STATE(3838), 1, + sym_label, + STATE(2371), 2, sym_line_comment, sym_block_comment, - [72425] = 11, - ACTIONS(69), 1, - anon_sym_pub, + [73810] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(4947), 1, - sym_identifier, - ACTIONS(4953), 1, - sym_crate, - STATE(1093), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1254), 1, - sym_attribute_item, - STATE(2937), 1, - sym_field_declaration, - STATE(3506), 1, - sym_visibility_modifier, - STATE(2324), 2, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5155), 1, + anon_sym_LBRACE, + ACTIONS(5193), 1, + anon_sym_SEMI, + ACTIONS(5195), 1, + anon_sym_DASH_GT, + STATE(1331), 1, + sym_block, + STATE(2642), 1, + sym_where_clause, + STATE(3838), 1, + sym_label, + STATE(2372), 2, sym_line_comment, sym_block_comment, - [72460] = 11, + [73845] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5093), 1, + ACTIONS(5072), 1, anon_sym_LBRACE, - ACTIONS(5164), 1, + ACTIONS(5109), 1, anon_sym_COLON, - ACTIONS(5166), 1, + ACTIONS(5111), 1, anon_sym_LT, - STATE(605), 1, + STATE(640), 1, sym_declaration_list, - STATE(2504), 1, + STATE(2470), 1, sym_type_parameters, - STATE(2870), 1, + STATE(2683), 1, sym_trait_bounds, - STATE(3344), 1, + STATE(3282), 1, sym_where_clause, - STATE(2325), 2, + STATE(2373), 2, sym_line_comment, sym_block_comment, - [72495] = 11, - ACTIONS(69), 1, - anon_sym_pub, + [73880] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(4953), 1, - sym_crate, - ACTIONS(5001), 1, - sym_identifier, - STATE(1254), 1, - sym_attribute_item, - STATE(2292), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3425), 1, - sym_enum_variant, - STATE(3794), 1, - sym_visibility_modifier, - STATE(2326), 2, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5109), 1, + anon_sym_COLON, + ACTIONS(5111), 1, + anon_sym_LT, + ACTIONS(5197), 1, + anon_sym_SEMI, + ACTIONS(5199), 1, + anon_sym_EQ, + STATE(2478), 1, + sym_type_parameters, + STATE(2993), 1, + sym_trait_bounds, + STATE(3412), 1, + sym_where_clause, + STATE(2374), 2, sym_line_comment, sym_block_comment, - [72530] = 4, + [73915] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2327), 2, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5155), 1, + anon_sym_LBRACE, + ACTIONS(5201), 1, + anon_sym_SEMI, + STATE(1155), 1, + sym_block, + STATE(2646), 1, + sym_where_clause, + STATE(3838), 1, + sym_label, + STATE(2375), 2, sym_line_comment, sym_block_comment, - ACTIONS(5264), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [72551] = 11, + [73950] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(3383), 1, anon_sym_SQUOTE, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5214), 1, + ACTIONS(5155), 1, anon_sym_LBRACE, - ACTIONS(5266), 1, + ACTIONS(5203), 1, anon_sym_SEMI, - ACTIONS(5268), 1, - anon_sym_DASH_GT, - STATE(559), 1, + STATE(1371), 1, sym_block, - STATE(2558), 1, + STATE(2650), 1, sym_where_clause, - STATE(3774), 1, + STATE(3838), 1, sym_label, - STATE(2328), 2, + STATE(2376), 2, sym_line_comment, sym_block_comment, - [72586] = 11, + [73985] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5093), 1, + ACTIONS(5155), 1, anon_sym_LBRACE, - ACTIONS(5164), 1, - anon_sym_COLON, - ACTIONS(5166), 1, - anon_sym_LT, - STATE(539), 1, - sym_declaration_list, - STATE(2414), 1, - sym_type_parameters, - STATE(2711), 1, - sym_trait_bounds, - STATE(3495), 1, + ACTIONS(5205), 1, + anon_sym_SEMI, + STATE(1382), 1, + sym_block, + STATE(2652), 1, sym_where_clause, - STATE(2329), 2, + STATE(3838), 1, + sym_label, + STATE(2377), 2, sym_line_comment, sym_block_comment, - [72621] = 11, + [74020] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3095), 1, anon_sym_PLUS, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5170), 1, + ACTIONS(5103), 1, anon_sym_LBRACE, - ACTIONS(5270), 1, + ACTIONS(5207), 1, anon_sym_SEMI, - STATE(1219), 1, + STATE(557), 1, sym_block, - STATE(2609), 1, + STATE(2670), 1, sym_where_clause, - STATE(3777), 1, + STATE(3834), 1, sym_label, - STATE(2330), 2, + STATE(2378), 2, sym_line_comment, sym_block_comment, - [72656] = 10, + [74055] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5192), 1, - sym_identifier, - ACTIONS(5196), 1, + ACTIONS(4597), 1, + anon_sym_PIPE, + ACTIONS(4599), 1, + anon_sym_LPAREN, + ACTIONS(4603), 1, + anon_sym_COLON, + ACTIONS(4605), 1, + anon_sym_BANG, + ACTIONS(4609), 1, anon_sym_DOT_DOT, - ACTIONS(5200), 1, - anon_sym_ref, - ACTIONS(5202), 1, - sym_mutable_specifier, - ACTIONS(5272), 1, - anon_sym_RBRACE, - ACTIONS(5274), 1, - anon_sym_COMMA, - STATE(2331), 2, + ACTIONS(5209), 1, + anon_sym_COLON_COLON, + ACTIONS(4611), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2379), 2, sym_line_comment, sym_block_comment, - STATE(2879), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [72689] = 11, + [74088] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(2435), 1, anon_sym_SQUOTE, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5170), 1, + ACTIONS(4748), 1, + sym_identifier, + ACTIONS(4752), 1, + anon_sym_const, + ACTIONS(5211), 1, + sym_metavariable, + STATE(2859), 1, + sym_lifetime, + STATE(2380), 2, + sym_line_comment, + sym_block_comment, + STATE(3122), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [74119] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2381), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5094), 8, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(5276), 1, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [74140] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2382), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5094), 8, anon_sym_SEMI, - ACTIONS(5278), 1, - anon_sym_DASH_GT, - STATE(1256), 1, - sym_block, - STATE(2510), 1, - sym_where_clause, - STATE(3777), 1, - sym_label, - STATE(2332), 2, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [74161] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2383), 2, sym_line_comment, sym_block_comment, - [72724] = 11, + ACTIONS(5094), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [74182] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5170), 1, + ACTIONS(5103), 1, anon_sym_LBRACE, - ACTIONS(5280), 1, + ACTIONS(5213), 1, anon_sym_SEMI, - ACTIONS(5282), 1, + ACTIONS(5215), 1, anon_sym_DASH_GT, - STATE(1277), 1, + STATE(793), 1, sym_block, - STATE(2512), 1, + STATE(2617), 1, sym_where_clause, - STATE(3777), 1, + STATE(3834), 1, sym_label, - STATE(2333), 2, + STATE(2384), 2, + sym_line_comment, + sym_block_comment, + [74217] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5217), 1, + anon_sym_fn, + ACTIONS(5219), 1, + anon_sym_extern, + STATE(2351), 1, + aux_sym_function_modifiers_repeat1, + STATE(2535), 1, + sym_extern_modifier, + STATE(2385), 2, sym_line_comment, sym_block_comment, - [72759] = 11, + ACTIONS(4639), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [74246] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3095), 1, anon_sym_PLUS, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5214), 1, + ACTIONS(5103), 1, anon_sym_LBRACE, - ACTIONS(5284), 1, + ACTIONS(5221), 1, anon_sym_SEMI, - STATE(626), 1, + STATE(625), 1, sym_block, - STATE(2565), 1, + STATE(2635), 1, sym_where_clause, - STATE(3774), 1, + STATE(3834), 1, sym_label, - STATE(2334), 2, + STATE(2386), 2, sym_line_comment, sym_block_comment, - [72794] = 11, + [74281] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5214), 1, + ACTIONS(5103), 1, anon_sym_LBRACE, - ACTIONS(5286), 1, + ACTIONS(5223), 1, anon_sym_SEMI, - STATE(509), 1, + ACTIONS(5225), 1, + anon_sym_DASH_GT, + STATE(714), 1, sym_block, - STATE(2582), 1, + STATE(2631), 1, sym_where_clause, - STATE(3774), 1, + STATE(3834), 1, sym_label, - STATE(2335), 2, + STATE(2387), 2, sym_line_comment, sym_block_comment, - [72829] = 11, + [74316] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5214), 1, + ACTIONS(5103), 1, anon_sym_LBRACE, - ACTIONS(5288), 1, + ACTIONS(5227), 1, anon_sym_SEMI, - ACTIONS(5290), 1, + ACTIONS(5229), 1, anon_sym_DASH_GT, - STATE(678), 1, + STATE(649), 1, sym_block, - STATE(2571), 1, + STATE(2584), 1, sym_where_clause, - STATE(3774), 1, + STATE(3834), 1, sym_label, - STATE(2336), 2, + STATE(2388), 2, + sym_line_comment, + sym_block_comment, + [74351] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(2435), 1, + anon_sym_SQUOTE, + ACTIONS(4748), 1, + sym_identifier, + ACTIONS(4752), 1, + anon_sym_const, + ACTIONS(5231), 1, + sym_metavariable, + STATE(2859), 1, + sym_lifetime, + STATE(2389), 2, sym_line_comment, sym_block_comment, - [72864] = 11, + STATE(3160), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [74382] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3095), 1, anon_sym_PLUS, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5214), 1, + ACTIONS(5103), 1, anon_sym_LBRACE, - ACTIONS(5292), 1, + ACTIONS(5233), 1, anon_sym_SEMI, - STATE(736), 1, + STATE(716), 1, sym_block, - STATE(2578), 1, + STATE(2629), 1, sym_where_clause, - STATE(3774), 1, + STATE(3834), 1, sym_label, - STATE(2337), 2, + STATE(2390), 2, sym_line_comment, sym_block_comment, - [72899] = 10, + [74417] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5294), 1, + ACTIONS(4720), 1, + anon_sym_COLON_COLON, + ACTIONS(5235), 1, anon_sym_LPAREN, - ACTIONS(5296), 1, - anon_sym_RPAREN, - ACTIONS(5298), 1, + ACTIONS(5237), 1, anon_sym_LBRACK, - ACTIONS(5300), 1, + ACTIONS(5239), 1, + anon_sym_RBRACK, + ACTIONS(5241), 1, anon_sym_LBRACE, - STATE(2352), 1, - aux_sym_macro_definition_repeat1, - STATE(3364), 1, - sym_macro_rule, - STATE(3661), 1, - sym_token_tree_pattern, - STATE(2338), 2, + ACTIONS(5243), 1, + anon_sym_EQ, + STATE(3640), 1, + sym_delim_token_tree, + STATE(2391), 2, sym_line_comment, sym_block_comment, - [72931] = 8, + [74449] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5065), 1, + ACTIONS(5245), 1, anon_sym_LPAREN, - ACTIONS(5067), 1, + ACTIONS(5247), 1, + anon_sym_LBRACK, + ACTIONS(5249), 1, anon_sym_LBRACE, - ACTIONS(5304), 1, - anon_sym_EQ, - ACTIONS(5302), 2, + ACTIONS(5251), 1, anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2339), 2, + STATE(2329), 1, + aux_sym_macro_definition_repeat1, + STATE(3339), 1, + sym_macro_rule, + STATE(3740), 1, + sym_token_tree_pattern, + STATE(2392), 2, sym_line_comment, sym_block_comment, - STATE(3056), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [72959] = 9, + [74481] = 10, + ACTIONS(27), 1, + anon_sym_PIPE, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5253), 1, + sym_identifier, + ACTIONS(5255), 1, + anon_sym_async, + ACTIONS(5257), 1, + anon_sym_ref, + ACTIONS(5259), 1, + sym_mutable_specifier, + ACTIONS(5261), 1, + anon_sym_move, + STATE(171), 1, + sym_closure_parameters, + STATE(2393), 2, + sym_line_comment, + sym_block_comment, + [74513] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4316), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - ACTIONS(4672), 1, + ACTIONS(4615), 1, anon_sym_LT2, - ACTIONS(5308), 1, + ACTIONS(5265), 1, anon_sym_STAR, - STATE(3139), 1, + STATE(3090), 1, sym_use_list, - STATE(3553), 1, + STATE(3782), 1, sym_type_arguments, - ACTIONS(5306), 2, + ACTIONS(5263), 2, sym_identifier, sym_super, - STATE(2340), 2, + STATE(2394), 2, + sym_line_comment, + sym_block_comment, + [74543] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4954), 1, + anon_sym_DOT_DOT, + ACTIONS(4958), 1, + anon_sym_COLON_COLON, + ACTIONS(4956), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2395), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4625), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [74569] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5018), 1, + anon_sym_LPAREN, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5034), 1, + anon_sym_LBRACE, + ACTIONS(5267), 1, + anon_sym_SEMI, + STATE(1220), 1, + sym_field_declaration_list, + STATE(3033), 1, + sym_ordered_field_declaration_list, + STATE(3409), 1, + sym_where_clause, + STATE(2396), 2, sym_line_comment, sym_block_comment, - [72989] = 10, + [74601] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5294), 1, + ACTIONS(5245), 1, anon_sym_LPAREN, - ACTIONS(5298), 1, + ACTIONS(5247), 1, anon_sym_LBRACK, - ACTIONS(5300), 1, + ACTIONS(5249), 1, anon_sym_LBRACE, - ACTIONS(5310), 1, - anon_sym_RBRACE, - STATE(2279), 1, + ACTIONS(5269), 1, + anon_sym_RPAREN, + STATE(2410), 1, aux_sym_macro_definition_repeat1, - STATE(3355), 1, + STATE(3488), 1, sym_macro_rule, - STATE(3661), 1, + STATE(3740), 1, sym_token_tree_pattern, - STATE(2341), 2, + STATE(2397), 2, + sym_line_comment, + sym_block_comment, + [74633] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5129), 1, + sym_identifier, + ACTIONS(5133), 1, + anon_sym_DOT_DOT, + ACTIONS(5137), 1, + anon_sym_ref, + ACTIONS(5139), 1, + sym_mutable_specifier, + ACTIONS(5271), 1, + anon_sym_RBRACE, + STATE(2398), 2, + sym_line_comment, + sym_block_comment, + STATE(3259), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [74663] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5129), 1, + sym_identifier, + ACTIONS(5133), 1, + anon_sym_DOT_DOT, + ACTIONS(5137), 1, + anon_sym_ref, + ACTIONS(5139), 1, + sym_mutable_specifier, + ACTIONS(5273), 1, + anon_sym_RBRACE, + STATE(2399), 2, sym_line_comment, sym_block_comment, - [73021] = 10, + STATE(3259), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [74693] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5294), 1, + ACTIONS(5245), 1, anon_sym_LPAREN, - ACTIONS(5298), 1, + ACTIONS(5247), 1, anon_sym_LBRACK, - ACTIONS(5300), 1, + ACTIONS(5249), 1, anon_sym_LBRACE, - ACTIONS(5312), 1, - anon_sym_RBRACE, - STATE(2385), 1, + ACTIONS(5269), 1, + anon_sym_RBRACK, + STATE(2411), 1, aux_sym_macro_definition_repeat1, - STATE(3483), 1, + STATE(3516), 1, sym_macro_rule, - STATE(3661), 1, + STATE(3740), 1, sym_token_tree_pattern, - STATE(2342), 2, - sym_line_comment, - sym_block_comment, - [73053] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4995), 1, - anon_sym_DOT_DOT, - ACTIONS(4999), 1, - anon_sym_COLON_COLON, - ACTIONS(4997), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2343), 2, + STATE(2400), 2, sym_line_comment, sym_block_comment, - ACTIONS(4708), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [73079] = 10, + [74725] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5294), 1, + ACTIONS(5245), 1, anon_sym_LPAREN, - ACTIONS(5296), 1, - anon_sym_RBRACK, - ACTIONS(5298), 1, + ACTIONS(5247), 1, anon_sym_LBRACK, - ACTIONS(5300), 1, + ACTIONS(5249), 1, anon_sym_LBRACE, - STATE(2353), 1, + ACTIONS(5275), 1, + anon_sym_RBRACE, + STATE(2412), 1, aux_sym_macro_definition_repeat1, - STATE(3366), 1, + STATE(3539), 1, sym_macro_rule, - STATE(3661), 1, + STATE(3740), 1, sym_token_tree_pattern, - STATE(2344), 2, + STATE(2401), 2, sym_line_comment, sym_block_comment, - [73111] = 10, + [74757] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5294), 1, + ACTIONS(5245), 1, anon_sym_LPAREN, - ACTIONS(5298), 1, + ACTIONS(5247), 1, anon_sym_LBRACK, - ACTIONS(5300), 1, + ACTIONS(5249), 1, anon_sym_LBRACE, - ACTIONS(5314), 1, + ACTIONS(5277), 1, anon_sym_RPAREN, - STATE(2354), 1, + STATE(2413), 1, aux_sym_macro_definition_repeat1, - STATE(3367), 1, + STATE(3548), 1, sym_macro_rule, - STATE(3661), 1, + STATE(3740), 1, sym_token_tree_pattern, - STATE(2345), 2, + STATE(2402), 2, sym_line_comment, sym_block_comment, - [73143] = 10, + [74789] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5294), 1, + ACTIONS(5245), 1, anon_sym_LPAREN, - ACTIONS(5298), 1, + ACTIONS(5247), 1, anon_sym_LBRACK, - ACTIONS(5300), 1, + ACTIONS(5249), 1, anon_sym_LBRACE, - ACTIONS(5314), 1, + ACTIONS(5277), 1, anon_sym_RBRACK, - STATE(2355), 1, + STATE(2414), 1, aux_sym_macro_definition_repeat1, - STATE(3368), 1, + STATE(3411), 1, sym_macro_rule, - STATE(3661), 1, + STATE(3740), 1, sym_token_tree_pattern, - STATE(2346), 2, + STATE(2403), 2, sym_line_comment, sym_block_comment, - [73175] = 10, - ACTIONS(27), 1, - anon_sym_PIPE, + [74821] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1383), 1, + ACTIONS(5245), 1, + anon_sym_LPAREN, + ACTIONS(5247), 1, + anon_sym_LBRACK, + ACTIONS(5249), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5316), 1, - anon_sym_move, - STATE(224), 1, - sym_closure_parameters, - STATE(484), 1, - sym_block, - STATE(3778), 1, - sym_label, - STATE(2347), 2, + ACTIONS(5279), 1, + anon_sym_RBRACE, + STATE(2423), 1, + aux_sym_macro_definition_repeat1, + STATE(3248), 1, + sym_macro_rule, + STATE(3740), 1, + sym_token_tree_pattern, + STATE(2404), 2, sym_line_comment, sym_block_comment, - [73207] = 9, + [74853] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5192), 1, + ACTIONS(5129), 1, sym_identifier, - ACTIONS(5196), 1, + ACTIONS(5133), 1, anon_sym_DOT_DOT, - ACTIONS(5200), 1, + ACTIONS(5137), 1, anon_sym_ref, - ACTIONS(5202), 1, + ACTIONS(5139), 1, sym_mutable_specifier, - ACTIONS(5318), 1, + ACTIONS(5281), 1, anon_sym_RBRACE, - STATE(2348), 2, + STATE(2405), 2, sym_line_comment, sym_block_comment, - STATE(3266), 2, + STATE(3259), 2, sym_field_pattern, sym_remaining_field_pattern, - [73237] = 10, - ACTIONS(27), 1, - anon_sym_PIPE, + [74883] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5320), 1, + ACTIONS(5129), 1, sym_identifier, - ACTIONS(5322), 1, - anon_sym_async, - ACTIONS(5324), 1, + ACTIONS(5133), 1, + anon_sym_DOT_DOT, + ACTIONS(5137), 1, anon_sym_ref, - ACTIONS(5326), 1, + ACTIONS(5139), 1, sym_mutable_specifier, - ACTIONS(5328), 1, - anon_sym_move, - STATE(224), 1, - sym_closure_parameters, - STATE(2349), 2, + ACTIONS(5283), 1, + anon_sym_RBRACE, + STATE(2406), 2, sym_line_comment, sym_block_comment, - [73269] = 9, + STATE(3259), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [74913] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5192), 1, - sym_identifier, - ACTIONS(5196), 1, - anon_sym_DOT_DOT, - ACTIONS(5200), 1, - anon_sym_ref, - ACTIONS(5202), 1, - sym_mutable_specifier, - ACTIONS(5330), 1, + ACTIONS(5018), 1, + anon_sym_LPAREN, + ACTIONS(5034), 1, + anon_sym_LBRACE, + ACTIONS(5287), 1, + anon_sym_EQ, + ACTIONS(5285), 2, anon_sym_RBRACE, - STATE(2350), 2, + anon_sym_COMMA, + STATE(2407), 2, sym_line_comment, sym_block_comment, - STATE(3266), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [73299] = 10, + STATE(3019), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [74941] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4883), 1, - anon_sym_COLON_COLON, - ACTIONS(5332), 1, + ACTIONS(5018), 1, anon_sym_LPAREN, - ACTIONS(5334), 1, - anon_sym_LBRACK, - ACTIONS(5336), 1, - anon_sym_RBRACK, - ACTIONS(5338), 1, + ACTIONS(5020), 1, anon_sym_LBRACE, - ACTIONS(5340), 1, - anon_sym_EQ, - STATE(3534), 1, - sym_delim_token_tree, - STATE(2351), 2, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5289), 1, + anon_sym_SEMI, + STATE(745), 1, + sym_field_declaration_list, + STATE(3237), 1, + sym_ordered_field_declaration_list, + STATE(3547), 1, + sym_where_clause, + STATE(2408), 2, + sym_line_comment, + sym_block_comment, + [74973] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4263), 1, + anon_sym_LBRACE, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(5265), 1, + anon_sym_STAR, + STATE(3090), 1, + sym_use_list, + STATE(3613), 1, + sym_type_arguments, + ACTIONS(5263), 2, + sym_identifier, + sym_super, + STATE(2409), 2, sym_line_comment, sym_block_comment, - [73331] = 10, + [75003] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5294), 1, + ACTIONS(5245), 1, anon_sym_LPAREN, - ACTIONS(5298), 1, + ACTIONS(5247), 1, anon_sym_LBRACK, - ACTIONS(5300), 1, + ACTIONS(5249), 1, anon_sym_LBRACE, - ACTIONS(5342), 1, + ACTIONS(5291), 1, anon_sym_RPAREN, - STATE(2279), 1, + STATE(2329), 1, aux_sym_macro_definition_repeat1, - STATE(3388), 1, + STATE(3252), 1, sym_macro_rule, - STATE(3661), 1, + STATE(3740), 1, sym_token_tree_pattern, - STATE(2352), 2, + STATE(2410), 2, sym_line_comment, sym_block_comment, - [73363] = 10, + [75035] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5294), 1, + ACTIONS(5245), 1, anon_sym_LPAREN, - ACTIONS(5298), 1, + ACTIONS(5247), 1, anon_sym_LBRACK, - ACTIONS(5300), 1, + ACTIONS(5249), 1, anon_sym_LBRACE, - ACTIONS(5342), 1, + ACTIONS(5291), 1, anon_sym_RBRACK, - STATE(2279), 1, + STATE(2329), 1, aux_sym_macro_definition_repeat1, - STATE(3389), 1, + STATE(3258), 1, sym_macro_rule, - STATE(3661), 1, + STATE(3740), 1, sym_token_tree_pattern, - STATE(2353), 2, + STATE(2411), 2, + sym_line_comment, + sym_block_comment, + [75067] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5245), 1, + anon_sym_LPAREN, + ACTIONS(5247), 1, + anon_sym_LBRACK, + ACTIONS(5249), 1, + anon_sym_LBRACE, + ACTIONS(5293), 1, + anon_sym_RBRACE, + STATE(2329), 1, + aux_sym_macro_definition_repeat1, + STATE(3264), 1, + sym_macro_rule, + STATE(3740), 1, + sym_token_tree_pattern, + STATE(2412), 2, sym_line_comment, sym_block_comment, - [73395] = 10, + [75099] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5294), 1, + ACTIONS(5245), 1, anon_sym_LPAREN, - ACTIONS(5298), 1, + ACTIONS(5247), 1, anon_sym_LBRACK, - ACTIONS(5300), 1, + ACTIONS(5249), 1, anon_sym_LBRACE, - ACTIONS(5344), 1, + ACTIONS(5295), 1, anon_sym_RPAREN, - STATE(2279), 1, + STATE(2329), 1, aux_sym_macro_definition_repeat1, - STATE(3390), 1, + STATE(3272), 1, sym_macro_rule, - STATE(3661), 1, + STATE(3740), 1, sym_token_tree_pattern, - STATE(2354), 2, + STATE(2413), 2, sym_line_comment, sym_block_comment, - [73427] = 10, + [75131] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5294), 1, + ACTIONS(5245), 1, anon_sym_LPAREN, - ACTIONS(5298), 1, + ACTIONS(5247), 1, anon_sym_LBRACK, - ACTIONS(5300), 1, + ACTIONS(5249), 1, anon_sym_LBRACE, - ACTIONS(5344), 1, + ACTIONS(5295), 1, anon_sym_RBRACK, - STATE(2279), 1, + STATE(2329), 1, aux_sym_macro_definition_repeat1, - STATE(3391), 1, + STATE(3274), 1, sym_macro_rule, - STATE(3661), 1, + STATE(3740), 1, sym_token_tree_pattern, - STATE(2355), 2, + STATE(2414), 2, + sym_line_comment, + sym_block_comment, + [75163] = 10, + ACTIONS(27), 1, + anon_sym_PIPE, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(339), 1, + anon_sym_LBRACE, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + ACTIONS(5297), 1, + anon_sym_move, + STATE(180), 1, + sym_closure_parameters, + STATE(1492), 1, + sym_block, + STATE(3775), 1, + sym_label, + STATE(2415), 2, sym_line_comment, sym_block_comment, - [73459] = 8, + [75195] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4666), 1, + ACTIONS(5129), 1, + sym_identifier, + ACTIONS(5133), 1, anon_sym_DOT_DOT, - ACTIONS(5348), 1, - anon_sym_COLON, - ACTIONS(5350), 1, - anon_sym_COLON_COLON, - ACTIONS(4668), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5346), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2356), 2, + ACTIONS(5137), 1, + anon_sym_ref, + ACTIONS(5139), 1, + sym_mutable_specifier, + ACTIONS(5299), 1, + anon_sym_RBRACE, + STATE(2416), 2, sym_line_comment, sym_block_comment, - [73487] = 8, + STATE(3259), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [75225] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4666), 1, + ACTIONS(4609), 1, anon_sym_DOT_DOT, - ACTIONS(5348), 1, + ACTIONS(5303), 1, anon_sym_COLON, - ACTIONS(5352), 1, + ACTIONS(5305), 1, anon_sym_COLON_COLON, - ACTIONS(4668), 2, + ACTIONS(4611), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(5346), 2, + ACTIONS(5301), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(2357), 2, + STATE(2417), 2, sym_line_comment, sym_block_comment, - [73515] = 7, + [75253] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4666), 1, + ACTIONS(5129), 1, + sym_identifier, + ACTIONS(5133), 1, anon_sym_DOT_DOT, - ACTIONS(5352), 1, - anon_sym_COLON_COLON, - ACTIONS(4668), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2358), 2, + ACTIONS(5137), 1, + anon_sym_ref, + ACTIONS(5139), 1, + sym_mutable_specifier, + ACTIONS(5307), 1, + anon_sym_RBRACE, + STATE(2418), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [73541] = 7, + STATE(3259), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [75283] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4666), 1, + ACTIONS(4609), 1, anon_sym_DOT_DOT, - ACTIONS(5350), 1, + ACTIONS(5305), 1, anon_sym_COLON_COLON, - ACTIONS(4668), 2, + ACTIONS(4611), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2359), 2, + STATE(2419), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 3, + ACTIONS(3420), 3, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COMMA, - [73567] = 10, + [75309] = 10, ACTIONS(27), 1, anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(983), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - ACTIONS(5354), 1, + ACTIONS(5309), 1, anon_sym_move, - STATE(220), 1, + STATE(171), 1, sym_closure_parameters, - STATE(1811), 1, + STATE(514), 1, sym_block, - STATE(3779), 1, + STATE(3840), 1, sym_label, - STATE(2360), 2, + STATE(2420), 2, sym_line_comment, sym_block_comment, - [73599] = 10, + [75341] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5065), 1, + ACTIONS(5018), 1, anon_sym_LPAREN, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5131), 1, + ACTIONS(5034), 1, anon_sym_LBRACE, - ACTIONS(5356), 1, - anon_sym_SEMI, - STATE(692), 1, + ACTIONS(5313), 1, + anon_sym_EQ, + ACTIONS(5311), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2421), 2, + sym_line_comment, + sym_block_comment, + STATE(3236), 2, sym_field_declaration_list, - STATE(3061), 1, sym_ordered_field_declaration_list, - STATE(3247), 1, - sym_where_clause, - STATE(2361), 2, + [75369] = 10, + ACTIONS(27), 1, + anon_sym_PIPE, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(417), 1, + anon_sym_LBRACE, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + ACTIONS(5315), 1, + anon_sym_move, + STATE(155), 1, + sym_closure_parameters, + STATE(1843), 1, + sym_block, + STATE(3841), 1, + sym_label, + STATE(2422), 2, sym_line_comment, sym_block_comment, - [73631] = 10, + [75401] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5294), 1, + ACTIONS(5245), 1, anon_sym_LPAREN, - ACTIONS(5298), 1, + ACTIONS(5247), 1, anon_sym_LBRACK, - ACTIONS(5300), 1, + ACTIONS(5249), 1, anon_sym_LBRACE, - ACTIONS(5358), 1, - anon_sym_RPAREN, - STATE(2378), 1, + ACTIONS(5317), 1, + anon_sym_RBRACE, + STATE(2329), 1, aux_sym_macro_definition_repeat1, - STATE(3427), 1, + STATE(3275), 1, sym_macro_rule, - STATE(3661), 1, + STATE(3740), 1, sym_token_tree_pattern, - STATE(2362), 2, + STATE(2423), 2, sym_line_comment, sym_block_comment, - [73663] = 10, + [75433] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5065), 1, + ACTIONS(4832), 1, + anon_sym_COLON_COLON, + ACTIONS(5235), 1, anon_sym_LPAREN, - ACTIONS(5067), 1, + ACTIONS(5237), 1, + anon_sym_LBRACK, + ACTIONS(5241), 1, anon_sym_LBRACE, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5360), 1, - anon_sym_SEMI, - STATE(1202), 1, - sym_field_declaration_list, - STATE(2943), 1, - sym_ordered_field_declaration_list, - STATE(3230), 1, - sym_where_clause, - STATE(2363), 2, + ACTIONS(5319), 1, + anon_sym_RBRACK, + ACTIONS(5321), 1, + anon_sym_EQ, + STATE(3629), 1, + sym_delim_token_tree, + STATE(2424), 2, sym_line_comment, sym_block_comment, - [73695] = 10, + [75465] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5294), 1, + ACTIONS(4848), 1, + anon_sym_COLON_COLON, + ACTIONS(5235), 1, anon_sym_LPAREN, - ACTIONS(5298), 1, + ACTIONS(5237), 1, anon_sym_LBRACK, - ACTIONS(5300), 1, - anon_sym_LBRACE, - ACTIONS(5358), 1, + ACTIONS(5239), 1, anon_sym_RBRACK, - STATE(2380), 1, - aux_sym_macro_definition_repeat1, - STATE(3436), 1, - sym_macro_rule, - STATE(3661), 1, - sym_token_tree_pattern, - STATE(2364), 2, + ACTIONS(5241), 1, + anon_sym_LBRACE, + ACTIONS(5243), 1, + anon_sym_EQ, + STATE(3640), 1, + sym_delim_token_tree, + STATE(2425), 2, sym_line_comment, sym_block_comment, - [73727] = 10, + [75497] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5294), 1, - anon_sym_LPAREN, - ACTIONS(5298), 1, - anon_sym_LBRACK, - ACTIONS(5300), 1, - anon_sym_LBRACE, - ACTIONS(5362), 1, - anon_sym_RBRACE, - STATE(2382), 1, - aux_sym_macro_definition_repeat1, - STATE(3438), 1, - sym_macro_rule, - STATE(3661), 1, - sym_token_tree_pattern, - STATE(2365), 2, + ACTIONS(4609), 1, + anon_sym_DOT_DOT, + ACTIONS(5325), 1, + anon_sym_COLON, + ACTIONS(5327), 1, + anon_sym_COLON_COLON, + ACTIONS(4611), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5323), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2426), 2, sym_line_comment, sym_block_comment, - [73759] = 10, + [75525] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5065), 1, + ACTIONS(5245), 1, anon_sym_LPAREN, - ACTIONS(5067), 1, + ACTIONS(5247), 1, + anon_sym_LBRACK, + ACTIONS(5249), 1, anon_sym_LBRACE, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5364), 1, - anon_sym_SEMI, - STATE(1405), 1, - sym_field_declaration_list, - STATE(2899), 1, - sym_ordered_field_declaration_list, - STATE(3206), 1, - sym_where_clause, - STATE(2366), 2, + ACTIONS(5329), 1, + anon_sym_RBRACE, + STATE(2329), 1, + aux_sym_macro_definition_repeat1, + STATE(3338), 1, + sym_macro_rule, + STATE(3740), 1, + sym_token_tree_pattern, + STATE(2427), 2, sym_line_comment, sym_block_comment, - [73791] = 9, - ACTIONS(103), 1, + [75557] = 10, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4316), 1, - anon_sym_LBRACE, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5308), 1, - anon_sym_STAR, - STATE(3139), 1, - sym_use_list, - STATE(3591), 1, - sym_type_arguments, - ACTIONS(5306), 2, - sym_identifier, - sym_super, - STATE(2367), 2, + ACTIONS(5331), 1, + aux_sym_line_comment_token1, + ACTIONS(5333), 1, + aux_sym_line_comment_token3, + ACTIONS(5335), 1, + anon_sym_BANG2, + ACTIONS(5337), 1, + anon_sym_SLASH2, + STATE(3598), 1, + sym__outer_line_doc_comment_marker, + STATE(3608), 1, + sym__inner_line_doc_comment_marker, + STATE(3724), 1, + sym__line_doc_comment_marker, + STATE(2428), 2, sym_line_comment, sym_block_comment, - [73821] = 8, + [75589] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5065), 1, + ACTIONS(5018), 1, anon_sym_LPAREN, - ACTIONS(5067), 1, + ACTIONS(5034), 1, anon_sym_LBRACE, - ACTIONS(5368), 1, + ACTIONS(5341), 1, anon_sym_EQ, - ACTIONS(5366), 2, + ACTIONS(5339), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(2368), 2, + STATE(2429), 2, sym_line_comment, sym_block_comment, - STATE(3177), 2, + STATE(3036), 2, sym_field_declaration_list, sym_ordered_field_declaration_list, - [73849] = 9, + [75617] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5192), 1, - sym_identifier, - ACTIONS(5196), 1, - anon_sym_DOT_DOT, - ACTIONS(5200), 1, - anon_sym_ref, - ACTIONS(5202), 1, - sym_mutable_specifier, - ACTIONS(5370), 1, - anon_sym_RBRACE, - STATE(2369), 2, + ACTIONS(5245), 1, + anon_sym_LPAREN, + ACTIONS(5247), 1, + anon_sym_LBRACK, + ACTIONS(5249), 1, + anon_sym_LBRACE, + ACTIONS(5343), 1, + anon_sym_RPAREN, + STATE(2435), 1, + aux_sym_macro_definition_repeat1, + STATE(3424), 1, + sym_macro_rule, + STATE(3740), 1, + sym_token_tree_pattern, + STATE(2430), 2, sym_line_comment, sym_block_comment, - STATE(3266), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [73879] = 10, + [75649] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5065), 1, + ACTIONS(5245), 1, anon_sym_LPAREN, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5131), 1, + ACTIONS(5247), 1, + anon_sym_LBRACK, + ACTIONS(5249), 1, anon_sym_LBRACE, - ACTIONS(5372), 1, - anon_sym_SEMI, - STATE(602), 1, - sym_field_declaration_list, - STATE(2949), 1, - sym_ordered_field_declaration_list, - STATE(3245), 1, - sym_where_clause, - STATE(2370), 2, + ACTIONS(5343), 1, + anon_sym_RBRACK, + STATE(2436), 1, + aux_sym_macro_definition_repeat1, + STATE(3425), 1, + sym_macro_rule, + STATE(3740), 1, + sym_token_tree_pattern, + STATE(2431), 2, sym_line_comment, sym_block_comment, - [73911] = 9, + [75681] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5192), 1, - sym_identifier, - ACTIONS(5196), 1, - anon_sym_DOT_DOT, - ACTIONS(5200), 1, - anon_sym_ref, - ACTIONS(5202), 1, - sym_mutable_specifier, - ACTIONS(5374), 1, - anon_sym_RBRACE, - STATE(2371), 2, + ACTIONS(5245), 1, + anon_sym_LPAREN, + ACTIONS(5247), 1, + anon_sym_LBRACK, + ACTIONS(5249), 1, + anon_sym_LBRACE, + ACTIONS(5345), 1, + anon_sym_RPAREN, + STATE(2437), 1, + aux_sym_macro_definition_repeat1, + STATE(3427), 1, + sym_macro_rule, + STATE(3740), 1, + sym_token_tree_pattern, + STATE(2432), 2, sym_line_comment, sym_block_comment, - STATE(3266), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [73941] = 5, + [75713] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5376), 1, - anon_sym_trait, - STATE(2372), 2, + ACTIONS(5245), 1, + anon_sym_LPAREN, + ACTIONS(5247), 1, + anon_sym_LBRACK, + ACTIONS(5249), 1, + anon_sym_LBRACE, + ACTIONS(5345), 1, + anon_sym_RBRACK, + STATE(2438), 1, + aux_sym_macro_definition_repeat1, + STATE(3428), 1, + sym_macro_rule, + STATE(3740), 1, + sym_token_tree_pattern, + STATE(2433), 2, sym_line_comment, sym_block_comment, - ACTIONS(3566), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [73963] = 5, + [75745] = 10, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5378), 1, - sym_identifier, - STATE(2373), 2, + ACTIONS(339), 1, + anon_sym_LBRACE, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + ACTIONS(5347), 1, + anon_sym_move, + STATE(183), 1, + sym_closure_parameters, + STATE(1492), 1, + sym_block, + STATE(3775), 1, + sym_label, + STATE(2434), 2, sym_line_comment, sym_block_comment, - ACTIONS(4943), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [73985] = 10, + [75777] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4865), 1, - anon_sym_COLON_COLON, - ACTIONS(5332), 1, + ACTIONS(5245), 1, anon_sym_LPAREN, - ACTIONS(5334), 1, + ACTIONS(5247), 1, anon_sym_LBRACK, - ACTIONS(5338), 1, + ACTIONS(5249), 1, anon_sym_LBRACE, - ACTIONS(5380), 1, - anon_sym_RBRACK, - ACTIONS(5382), 1, - anon_sym_EQ, - STATE(3595), 1, - sym_delim_token_tree, - STATE(2374), 2, - sym_line_comment, - sym_block_comment, - [74017] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5192), 1, - sym_identifier, - ACTIONS(5196), 1, - anon_sym_DOT_DOT, - ACTIONS(5200), 1, - anon_sym_ref, - ACTIONS(5202), 1, - sym_mutable_specifier, - ACTIONS(5384), 1, - anon_sym_RBRACE, - STATE(2375), 2, - sym_line_comment, - sym_block_comment, - STATE(3266), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [74047] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5386), 1, - aux_sym_line_comment_token1, - ACTIONS(5388), 1, - aux_sym_line_comment_token3, - ACTIONS(5390), 1, - anon_sym_BANG2, - ACTIONS(5392), 1, - anon_sym_SLASH2, - STATE(3567), 1, - sym__inner_line_doc_comment_marker, - STATE(3677), 1, - sym__line_doc_comment_marker, - STATE(3789), 1, - sym__outer_line_doc_comment_marker, - STATE(2376), 2, + ACTIONS(5349), 1, + anon_sym_RPAREN, + STATE(2329), 1, + aux_sym_macro_definition_repeat1, + STATE(3442), 1, + sym_macro_rule, + STATE(3740), 1, + sym_token_tree_pattern, + STATE(2435), 2, sym_line_comment, sym_block_comment, - [74079] = 7, + [75809] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4666), 1, - anon_sym_DOT_DOT, - ACTIONS(5394), 1, - anon_sym_COLON_COLON, - ACTIONS(4668), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2377), 2, + ACTIONS(5245), 1, + anon_sym_LPAREN, + ACTIONS(5247), 1, + anon_sym_LBRACK, + ACTIONS(5249), 1, + anon_sym_LBRACE, + ACTIONS(5349), 1, + anon_sym_RBRACK, + STATE(2329), 1, + aux_sym_macro_definition_repeat1, + STATE(3443), 1, + sym_macro_rule, + STATE(3740), 1, + sym_token_tree_pattern, + STATE(2436), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS, - [74105] = 10, + [75841] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5294), 1, + ACTIONS(5245), 1, anon_sym_LPAREN, - ACTIONS(5298), 1, + ACTIONS(5247), 1, anon_sym_LBRACK, - ACTIONS(5300), 1, + ACTIONS(5249), 1, anon_sym_LBRACE, - ACTIONS(5396), 1, + ACTIONS(5351), 1, anon_sym_RPAREN, - STATE(2279), 1, + STATE(2329), 1, aux_sym_macro_definition_repeat1, - STATE(3295), 1, + STATE(3444), 1, sym_macro_rule, - STATE(3661), 1, + STATE(3740), 1, sym_token_tree_pattern, - STATE(2378), 2, + STATE(2437), 2, sym_line_comment, sym_block_comment, - [74137] = 10, + [75873] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5294), 1, + ACTIONS(5245), 1, anon_sym_LPAREN, - ACTIONS(5298), 1, + ACTIONS(5247), 1, anon_sym_LBRACK, - ACTIONS(5300), 1, + ACTIONS(5249), 1, anon_sym_LBRACE, - ACTIONS(5398), 1, - anon_sym_RBRACE, - STATE(2341), 1, + ACTIONS(5351), 1, + anon_sym_RBRACK, + STATE(2329), 1, aux_sym_macro_definition_repeat1, - STATE(3485), 1, + STATE(3445), 1, sym_macro_rule, - STATE(3661), 1, + STATE(3740), 1, sym_token_tree_pattern, - STATE(2379), 2, + STATE(2438), 2, + sym_line_comment, + sym_block_comment, + [75905] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4609), 1, + anon_sym_DOT_DOT, + ACTIONS(5303), 1, + anon_sym_COLON, + ACTIONS(5353), 1, + anon_sym_COLON_COLON, + ACTIONS(4611), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5301), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2439), 2, + sym_line_comment, + sym_block_comment, + [75933] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4609), 1, + anon_sym_DOT_DOT, + ACTIONS(5353), 1, + anon_sym_COLON_COLON, + ACTIONS(4611), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2440), 2, sym_line_comment, sym_block_comment, - [74169] = 10, + ACTIONS(3420), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [75959] = 10, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5294), 1, - anon_sym_LPAREN, - ACTIONS(5298), 1, - anon_sym_LBRACK, - ACTIONS(5300), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(5396), 1, - anon_sym_RBRACK, - STATE(2279), 1, - aux_sym_macro_definition_repeat1, - STATE(3363), 1, - sym_macro_rule, - STATE(3661), 1, - sym_token_tree_pattern, - STATE(2380), 2, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + ACTIONS(4764), 1, + anon_sym_move, + STATE(171), 1, + sym_closure_parameters, + STATE(1492), 1, + sym_block, + STATE(3775), 1, + sym_label, + STATE(2441), 2, sym_line_comment, sym_block_comment, - [74201] = 9, + [75991] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5192), 1, + ACTIONS(5129), 1, sym_identifier, - ACTIONS(5196), 1, + ACTIONS(5133), 1, anon_sym_DOT_DOT, - ACTIONS(5200), 1, + ACTIONS(5137), 1, anon_sym_ref, - ACTIONS(5202), 1, + ACTIONS(5139), 1, sym_mutable_specifier, - ACTIONS(5400), 1, + ACTIONS(5355), 1, anon_sym_RBRACE, - STATE(2381), 2, + STATE(2442), 2, sym_line_comment, sym_block_comment, - STATE(3266), 2, + STATE(3259), 2, sym_field_pattern, sym_remaining_field_pattern, - [74231] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5294), 1, - anon_sym_LPAREN, - ACTIONS(5298), 1, - anon_sym_LBRACK, - ACTIONS(5300), 1, - anon_sym_LBRACE, - ACTIONS(5402), 1, - anon_sym_RBRACE, - STATE(2279), 1, - aux_sym_macro_definition_repeat1, - STATE(3371), 1, - sym_macro_rule, - STATE(3661), 1, - sym_token_tree_pattern, - STATE(2382), 2, - sym_line_comment, - sym_block_comment, - [74263] = 9, + [76021] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5192), 1, + ACTIONS(5129), 1, sym_identifier, - ACTIONS(5196), 1, + ACTIONS(5133), 1, anon_sym_DOT_DOT, - ACTIONS(5200), 1, + ACTIONS(5137), 1, anon_sym_ref, - ACTIONS(5202), 1, + ACTIONS(5139), 1, sym_mutable_specifier, - ACTIONS(5404), 1, + ACTIONS(5357), 1, anon_sym_RBRACE, - STATE(2383), 2, + STATE(2443), 2, sym_line_comment, sym_block_comment, - STATE(3266), 2, + STATE(3259), 2, sym_field_pattern, sym_remaining_field_pattern, - [74293] = 5, + [76051] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5406), 1, - anon_sym_trait, - STATE(2384), 2, + ACTIONS(5245), 1, + anon_sym_LPAREN, + ACTIONS(5247), 1, + anon_sym_LBRACK, + ACTIONS(5249), 1, + anon_sym_LBRACE, + ACTIONS(5359), 1, + anon_sym_RBRACE, + STATE(2427), 1, + aux_sym_macro_definition_repeat1, + STATE(3243), 1, + sym_macro_rule, + STATE(3740), 1, + sym_token_tree_pattern, + STATE(2444), 2, sym_line_comment, sym_block_comment, - ACTIONS(3566), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [74315] = 10, + [76083] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5294), 1, + ACTIONS(5245), 1, anon_sym_LPAREN, - ACTIONS(5298), 1, + ACTIONS(5247), 1, anon_sym_LBRACK, - ACTIONS(5300), 1, + ACTIONS(5249), 1, anon_sym_LBRACE, - ACTIONS(5408), 1, + ACTIONS(5361), 1, anon_sym_RBRACE, - STATE(2279), 1, + STATE(2392), 1, aux_sym_macro_definition_repeat1, - STATE(3334), 1, + STATE(3244), 1, sym_macro_rule, - STATE(3661), 1, + STATE(3740), 1, sym_token_tree_pattern, - STATE(2385), 2, + STATE(2445), 2, sym_line_comment, sym_block_comment, - [74347] = 5, + [76115] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5410), 1, + ACTIONS(5363), 1, sym_identifier, - STATE(2386), 2, + STATE(2446), 2, sym_line_comment, sym_block_comment, - ACTIONS(4943), 6, + ACTIONS(4826), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [74369] = 10, + [76137] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4875), 1, - anon_sym_COLON_COLON, - ACTIONS(5332), 1, - anon_sym_LPAREN, - ACTIONS(5334), 1, - anon_sym_LBRACK, - ACTIONS(5338), 1, - anon_sym_LBRACE, - ACTIONS(5380), 1, - anon_sym_RBRACK, - ACTIONS(5382), 1, - anon_sym_EQ, - STATE(3595), 1, - sym_delim_token_tree, - STATE(2387), 2, + ACTIONS(5365), 1, + sym_identifier, + STATE(2447), 2, sym_line_comment, sym_block_comment, - [74401] = 10, - ACTIONS(27), 1, - anon_sym_PIPE, + ACTIONS(4826), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [76159] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(5018), 1, + anon_sym_LPAREN, + ACTIONS(5020), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5412), 1, - anon_sym_move, - STATE(215), 1, - sym_closure_parameters, - STATE(1463), 1, - sym_block, - STATE(3714), 1, - sym_label, - STATE(2388), 2, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5367), 1, + anon_sym_SEMI, + STATE(615), 1, + sym_field_declaration_list, + STATE(3216), 1, + sym_ordered_field_declaration_list, + STATE(3335), 1, + sym_where_clause, + STATE(2448), 2, sym_line_comment, sym_block_comment, - [74433] = 8, + [76191] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4666), 1, + ACTIONS(4609), 1, anon_sym_DOT_DOT, - ACTIONS(5416), 1, - anon_sym_COLON, - ACTIONS(5418), 1, + ACTIONS(5369), 1, anon_sym_COLON_COLON, - ACTIONS(4668), 2, + ACTIONS(4611), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(5414), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2389), 2, + STATE(2449), 2, sym_line_comment, sym_block_comment, - [74461] = 10, + ACTIONS(3420), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS, + [76217] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5294), 1, - anon_sym_LPAREN, - ACTIONS(5298), 1, - anon_sym_LBRACK, - ACTIONS(5300), 1, - anon_sym_LBRACE, - ACTIONS(5420), 1, - anon_sym_RPAREN, - STATE(2396), 1, - aux_sym_macro_definition_repeat1, - STATE(3480), 1, - sym_macro_rule, - STATE(3661), 1, - sym_token_tree_pattern, - STATE(2390), 2, + ACTIONS(5371), 1, + anon_sym_trait, + STATE(2450), 2, sym_line_comment, sym_block_comment, - [74493] = 5, + ACTIONS(3492), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [76239] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5422), 1, + ACTIONS(5373), 1, sym_identifier, - STATE(2391), 2, + STATE(2451), 2, sym_line_comment, sym_block_comment, - ACTIONS(4943), 6, + ACTIONS(4826), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [74515] = 9, + [76261] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5192), 1, + ACTIONS(5375), 1, sym_identifier, - ACTIONS(5196), 1, - anon_sym_DOT_DOT, - ACTIONS(5200), 1, - anon_sym_ref, - ACTIONS(5202), 1, - sym_mutable_specifier, - ACTIONS(5424), 1, - anon_sym_RBRACE, - STATE(2392), 2, + STATE(2452), 2, sym_line_comment, sym_block_comment, - STATE(3266), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [74545] = 10, + ACTIONS(4826), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [76283] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5294), 1, - anon_sym_LPAREN, - ACTIONS(5298), 1, - anon_sym_LBRACK, - ACTIONS(5300), 1, - anon_sym_LBRACE, - ACTIONS(5420), 1, - anon_sym_RBRACK, - STATE(2399), 1, - aux_sym_macro_definition_repeat1, - STATE(3494), 1, - sym_macro_rule, - STATE(3661), 1, - sym_token_tree_pattern, - STATE(2393), 2, + ACTIONS(5377), 1, + anon_sym_trait, + STATE(2453), 2, sym_line_comment, sym_block_comment, - [74577] = 10, + ACTIONS(3492), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [76305] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5294), 1, + ACTIONS(5018), 1, anon_sym_LPAREN, - ACTIONS(5298), 1, - anon_sym_LBRACK, - ACTIONS(5300), 1, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5034), 1, anon_sym_LBRACE, - ACTIONS(5426), 1, - anon_sym_RBRACE, - STATE(2395), 1, - aux_sym_macro_definition_repeat1, - STATE(3329), 1, - sym_macro_rule, - STATE(3661), 1, - sym_token_tree_pattern, - STATE(2394), 2, + ACTIONS(5379), 1, + anon_sym_SEMI, + STATE(1471), 1, + sym_field_declaration_list, + STATE(3166), 1, + sym_ordered_field_declaration_list, + STATE(3303), 1, + sym_where_clause, + STATE(2454), 2, sym_line_comment, sym_block_comment, - [74609] = 10, + [76337] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5294), 1, + ACTIONS(4860), 1, + anon_sym_COLON_COLON, + ACTIONS(5235), 1, anon_sym_LPAREN, - ACTIONS(5298), 1, + ACTIONS(5237), 1, anon_sym_LBRACK, - ACTIONS(5300), 1, + ACTIONS(5239), 1, + anon_sym_RBRACK, + ACTIONS(5241), 1, anon_sym_LBRACE, - ACTIONS(5428), 1, - anon_sym_RBRACE, - STATE(2279), 1, - aux_sym_macro_definition_repeat1, - STATE(3400), 1, - sym_macro_rule, - STATE(3661), 1, - sym_token_tree_pattern, - STATE(2395), 2, + ACTIONS(5243), 1, + anon_sym_EQ, + STATE(3640), 1, + sym_delim_token_tree, + STATE(2455), 2, sym_line_comment, sym_block_comment, - [74641] = 10, + [76369] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5294), 1, - anon_sym_LPAREN, - ACTIONS(5298), 1, - anon_sym_LBRACK, - ACTIONS(5300), 1, - anon_sym_LBRACE, - ACTIONS(5430), 1, - anon_sym_RPAREN, - STATE(2279), 1, - aux_sym_macro_definition_repeat1, - STATE(3382), 1, - sym_macro_rule, - STATE(3661), 1, - sym_token_tree_pattern, - STATE(2396), 2, + ACTIONS(4706), 1, + anon_sym_COLON_COLON, + ACTIONS(5066), 1, + anon_sym_for, + STATE(2456), 2, sym_line_comment, sym_block_comment, - [74673] = 5, + ACTIONS(3420), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [76392] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5432), 1, - sym_identifier, - STATE(2397), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4943), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [74695] = 10, - ACTIONS(27), 1, + ACTIONS(5381), 1, + anon_sym_RBRACK, + ACTIONS(4950), 2, anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5434), 1, - anon_sym_move, - STATE(224), 1, - sym_closure_parameters, - STATE(1463), 1, - sym_block, - STATE(3714), 1, - sym_label, - STATE(2398), 2, + anon_sym_COMMA, + STATE(2457), 2, sym_line_comment, sym_block_comment, - [74727] = 10, + ACTIONS(3713), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [76415] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5294), 1, - anon_sym_LPAREN, - ACTIONS(5298), 1, - anon_sym_LBRACK, - ACTIONS(5300), 1, + ACTIONS(5022), 1, + anon_sym_LT, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5034), 1, anon_sym_LBRACE, - ACTIONS(5430), 1, - anon_sym_RBRACK, - STATE(2279), 1, - aux_sym_macro_definition_repeat1, - STATE(3387), 1, - sym_macro_rule, - STATE(3661), 1, - sym_token_tree_pattern, - STATE(2399), 2, + STATE(1442), 1, + sym_field_declaration_list, + STATE(2680), 1, + sym_type_parameters, + STATE(3499), 1, + sym_where_clause, + STATE(2458), 2, sym_line_comment, sym_block_comment, - [74759] = 10, + [76444] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4779), 1, - anon_sym_COLON_COLON, - ACTIONS(5332), 1, - anon_sym_LPAREN, - ACTIONS(5334), 1, - anon_sym_LBRACK, - ACTIONS(5338), 1, - anon_sym_LBRACE, - ACTIONS(5380), 1, + ACTIONS(5384), 1, anon_sym_RBRACK, - ACTIONS(5382), 1, - anon_sym_EQ, - STATE(3595), 1, - sym_delim_token_tree, - STATE(2400), 2, - sym_line_comment, - sym_block_comment, - [74791] = 10, - ACTIONS(27), 1, + ACTIONS(4918), 2, anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5436), 1, - anon_sym_move, - STATE(255), 1, - sym_closure_parameters, - STATE(1463), 1, - sym_block, - STATE(3714), 1, - sym_label, - STATE(2401), 2, + anon_sym_COMMA, + STATE(2459), 2, sym_line_comment, sym_block_comment, - [74823] = 5, + ACTIONS(3533), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [76467] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5438), 1, - anon_sym_DASH_GT, - STATE(2402), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3770), 5, - anon_sym_COLON, + ACTIONS(3103), 1, anon_sym_PLUS, + ACTIONS(5109), 1, + anon_sym_COLON, + ACTIONS(5387), 1, anon_sym_GT, + ACTIONS(5389), 1, anon_sym_COMMA, - anon_sym_as, - [74844] = 6, + STATE(3120), 1, + sym_trait_bounds, + STATE(3124), 1, + aux_sym_type_arguments_repeat1, + STATE(2460), 2, + sym_line_comment, + sym_block_comment, + [76496] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4746), 1, + ACTIONS(4706), 1, anon_sym_COLON_COLON, - ACTIONS(5127), 1, + ACTIONS(5058), 1, anon_sym_for, - STATE(2403), 2, + STATE(2461), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 4, + ACTIONS(3420), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [74867] = 5, + [76519] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5440), 1, - anon_sym_DASH_GT, - STATE(2404), 2, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5046), 1, + anon_sym_LBRACE, + ACTIONS(5391), 1, + anon_sym_SEMI, + STATE(1463), 1, + sym_declaration_list, + STATE(3139), 1, + sym_where_clause, + STATE(2462), 2, sym_line_comment, sym_block_comment, - ACTIONS(3790), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [74888] = 5, + [76548] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5442), 1, - anon_sym_DASH_GT, - STATE(2405), 2, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5046), 1, + anon_sym_LBRACE, + ACTIONS(5109), 1, + anon_sym_COLON, + STATE(1447), 1, + sym_declaration_list, + STATE(2701), 1, + sym_trait_bounds, + STATE(3307), 1, + sym_where_clause, + STATE(2463), 2, sym_line_comment, sym_block_comment, - ACTIONS(3752), 5, + [76577] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5109), 1, anon_sym_COLON, + ACTIONS(5393), 1, + anon_sym_SEMI, + ACTIONS(5395), 1, + anon_sym_EQ, + STATE(3172), 1, + sym_trait_bounds, + STATE(3309), 1, + sym_where_clause, + STATE(2464), 2, + sym_line_comment, + sym_block_comment, + [76606] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3095), 1, anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [74909] = 9, - ACTIONS(19), 1, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5046), 1, anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_PIPE, + ACTIONS(5397), 1, + anon_sym_SEMI, + STATE(1160), 1, + sym_declaration_list, + STATE(3174), 1, + sym_where_clause, + STATE(2465), 2, + sym_line_comment, + sym_block_comment, + [76635] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(232), 1, - sym_closure_parameters, - STATE(412), 1, - sym_block, - STATE(3621), 1, - sym_label, - STATE(2406), 2, + ACTIONS(5022), 1, + anon_sym_LT, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5399), 1, + anon_sym_LBRACE, + STATE(1164), 1, + sym_enum_variant_list, + STATE(2705), 1, + sym_type_parameters, + STATE(3323), 1, + sym_where_clause, + STATE(2466), 2, sym_line_comment, sym_block_comment, - [74938] = 5, + [76664] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5446), 1, - anon_sym_COMMA, - STATE(2407), 3, + ACTIONS(5022), 1, + anon_sym_LT, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5034), 1, + anon_sym_LBRACE, + STATE(1169), 1, + sym_field_declaration_list, + STATE(2707), 1, + sym_type_parameters, + STATE(3328), 1, + sym_where_clause, + STATE(2467), 2, sym_line_comment, sym_block_comment, - aux_sym_where_clause_repeat1, - ACTIONS(5444), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - [74959] = 5, + [76693] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4813), 1, + ACTIONS(4609), 1, anon_sym_DOT_DOT, - STATE(2408), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4811), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, + ACTIONS(5305), 1, + anon_sym_COLON_COLON, + ACTIONS(4611), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_if, - [74980] = 5, + ACTIONS(5323), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2468), 2, + sym_line_comment, + sym_block_comment, + [76718] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5449), 1, - anon_sym_DASH_GT, - STATE(2409), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3746), 5, - anon_sym_COLON, + ACTIONS(3103), 1, anon_sym_PLUS, + ACTIONS(5109), 1, + anon_sym_COLON, + ACTIONS(5401), 1, anon_sym_GT, + ACTIONS(5403), 1, anon_sym_COMMA, - anon_sym_as, - [75001] = 9, + STATE(2938), 1, + aux_sym_type_arguments_repeat1, + STATE(3238), 1, + sym_trait_bounds, + STATE(2469), 2, + sym_line_comment, + sym_block_comment, + [76747] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5093), 1, + ACTIONS(5072), 1, anon_sym_LBRACE, - ACTIONS(5164), 1, + ACTIONS(5109), 1, anon_sym_COLON, - STATE(592), 1, + STATE(749), 1, sym_declaration_list, - STATE(2620), 1, + STATE(2811), 1, sym_trait_bounds, - STATE(3456), 1, + STATE(3426), 1, sym_where_clause, - STATE(2410), 2, + STATE(2470), 2, sym_line_comment, sym_block_comment, - [75030] = 9, + [76776] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3210), 1, - anon_sym_PLUS, - ACTIONS(5164), 1, - anon_sym_COLON, - ACTIONS(5451), 1, - anon_sym_GT, - ACTIONS(5453), 1, - anon_sym_COMMA, - STATE(2912), 1, - sym_trait_bounds, - STATE(2913), 1, - aux_sym_type_arguments_repeat1, - STATE(2411), 2, + ACTIONS(339), 1, + anon_sym_LBRACE, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + ACTIONS(5405), 1, + anon_sym_if, + STATE(3775), 1, + sym_label, + STATE(1517), 2, + sym_if_expression, + sym_block, + STATE(2471), 2, sym_line_comment, sym_block_comment, - [75059] = 9, + [76803] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3095), 1, anon_sym_PLUS, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5455), 1, + ACTIONS(5046), 1, + anon_sym_LBRACE, + ACTIONS(5407), 1, anon_sym_SEMI, - STATE(1325), 1, + STATE(1186), 1, sym_declaration_list, - STATE(2975), 1, + STATE(3000), 1, sym_where_clause, - STATE(2412), 2, + STATE(2472), 2, sym_line_comment, sym_block_comment, - [75088] = 9, + [76832] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3095), 1, anon_sym_PLUS, - ACTIONS(5059), 1, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5046), 1, anon_sym_LBRACE, - ACTIONS(5071), 1, + ACTIONS(5409), 1, + anon_sym_SEMI, + STATE(1190), 1, + sym_declaration_list, + STATE(3005), 1, + sym_where_clause, + STATE(2473), 2, + sym_line_comment, + sym_block_comment, + [76861] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5457), 1, + ACTIONS(5046), 1, + anon_sym_LBRACE, + ACTIONS(5411), 1, anon_sym_SEMI, - STATE(1328), 1, + STATE(1207), 1, sym_declaration_list, - STATE(2976), 1, + STATE(3023), 1, sym_where_clause, - STATE(2413), 2, + STATE(2474), 2, sym_line_comment, sym_block_comment, - [75117] = 9, + [76890] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5093), 1, + ACTIONS(5046), 1, anon_sym_LBRACE, - ACTIONS(5164), 1, + ACTIONS(5109), 1, anon_sym_COLON, - STATE(716), 1, + STATE(1212), 1, sym_declaration_list, - STATE(2667), 1, + STATE(2726), 1, sym_trait_bounds, - STATE(3263), 1, + STATE(3400), 1, sym_where_clause, - STATE(2414), 2, + STATE(2475), 2, sym_line_comment, sym_block_comment, - [75146] = 9, + [76919] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5059), 1, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5072), 1, anon_sym_LBRACE, - ACTIONS(5071), 1, + ACTIONS(5109), 1, + anon_sym_COLON, + STATE(581), 1, + sym_declaration_list, + STATE(2882), 1, + sym_trait_bounds, + STATE(3394), 1, + sym_where_clause, + STATE(2476), 2, + sym_line_comment, + sym_block_comment, + [76948] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4758), 1, + anon_sym_DOT_DOT, + STATE(2477), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4756), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [76969] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5459), 1, + ACTIONS(5109), 1, + anon_sym_COLON, + ACTIONS(5413), 1, anon_sym_SEMI, - STATE(1346), 1, - sym_declaration_list, - STATE(2979), 1, + ACTIONS(5415), 1, + anon_sym_EQ, + STATE(3024), 1, + sym_trait_bounds, + STATE(3469), 1, sym_where_clause, - STATE(2415), 2, + STATE(2478), 2, sym_line_comment, sym_block_comment, - [75175] = 9, + [76998] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5069), 1, - anon_sym_LT, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5461), 1, + ACTIONS(5072), 1, anon_sym_LBRACE, - STATE(532), 1, - sym_enum_variant_list, - STATE(2877), 1, - sym_type_parameters, - STATE(3442), 1, + ACTIONS(5109), 1, + anon_sym_COLON, + STATE(746), 1, + sym_declaration_list, + STATE(2901), 1, + sym_trait_bounds, + STATE(3472), 1, sym_where_clause, - STATE(2416), 2, + STATE(2479), 2, sym_line_comment, sym_block_comment, - [75204] = 9, + [77027] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, + ACTIONS(5022), 1, + anon_sym_LT, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5463), 1, - anon_sym_SEMI, - STATE(1349), 1, - sym_declaration_list, - STATE(2980), 1, + ACTIONS(5417), 1, + anon_sym_LBRACE, + STATE(767), 1, + sym_enum_variant_list, + STATE(2681), 1, + sym_type_parameters, + STATE(3522), 1, sym_where_clause, - STATE(2417), 2, + STATE(2480), 2, sym_line_comment, sym_block_comment, - [75233] = 9, + [77056] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3095), 1, anon_sym_PLUS, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5465), 1, + ACTIONS(5046), 1, + anon_sym_LBRACE, + ACTIONS(5419), 1, anon_sym_SEMI, - STATE(1351), 1, + STATE(1235), 1, sym_declaration_list, - STATE(2983), 1, + STATE(3064), 1, sym_where_clause, - STATE(2418), 2, + STATE(2481), 2, sym_line_comment, sym_block_comment, - [75262] = 9, + [77085] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3095), 1, anon_sym_PLUS, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5467), 1, + ACTIONS(5046), 1, + anon_sym_LBRACE, + ACTIONS(5421), 1, anon_sym_SEMI, - STATE(1356), 1, + STATE(1237), 1, sym_declaration_list, - STATE(2984), 1, + STATE(3065), 1, sym_where_clause, - STATE(2419), 2, + STATE(2482), 2, sym_line_comment, sym_block_comment, - [75291] = 9, - ACTIONS(27), 1, - anon_sym_PIPE, + [77114] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5046), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(232), 1, - sym_closure_parameters, - STATE(1526), 1, - sym_block, - STATE(3714), 1, - sym_label, - STATE(2420), 2, + ACTIONS(5423), 1, + anon_sym_SEMI, + STATE(1241), 1, + sym_declaration_list, + STATE(3076), 1, + sym_where_clause, + STATE(2483), 2, sym_line_comment, sym_block_comment, - [75320] = 9, + [77143] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5069), 1, - anon_sym_LT, - ACTIONS(5071), 1, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5469), 1, + ACTIONS(5046), 1, anon_sym_LBRACE, - STATE(1304), 1, - sym_enum_variant_list, - STATE(2638), 1, - sym_type_parameters, - STATE(3428), 1, + ACTIONS(5425), 1, + anon_sym_SEMI, + STATE(1243), 1, + sym_declaration_list, + STATE(3077), 1, sym_where_clause, - STATE(2421), 2, + STATE(2484), 2, sym_line_comment, sym_block_comment, - [75349] = 8, + [77172] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5471), 1, - anon_sym_if, - STATE(3714), 1, - sym_label, - STATE(1441), 2, - sym_if_expression, - sym_block, - STATE(2422), 2, + ACTIONS(4774), 1, + anon_sym_DOT_DOT, + ACTIONS(4776), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2485), 2, sym_line_comment, sym_block_comment, - [75376] = 9, + ACTIONS(4597), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77195] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5473), 1, - anon_sym_SEMI, - STATE(1309), 1, + ACTIONS(5046), 1, + anon_sym_LBRACE, + ACTIONS(5109), 1, + anon_sym_COLON, + STATE(1276), 1, sym_declaration_list, - STATE(3162), 1, + STATE(2741), 1, + sym_trait_bounds, + STATE(3454), 1, sym_where_clause, - STATE(2423), 2, + STATE(2486), 2, sym_line_comment, sym_block_comment, - [75405] = 9, + [77224] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5069), 1, + ACTIONS(5020), 1, + anon_sym_LBRACE, + ACTIONS(5022), 1, anon_sym_LT, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5131), 1, - anon_sym_LBRACE, - STATE(537), 1, + STATE(772), 1, sym_field_declaration_list, - STATE(2780), 1, + STATE(2706), 1, sym_type_parameters, - STATE(3486), 1, + STATE(3364), 1, sym_where_clause, - STATE(2424), 2, + STATE(2487), 2, sym_line_comment, sym_block_comment, - [75434] = 6, + [77253] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5477), 1, - anon_sym_COMMA, - STATE(2471), 1, - aux_sym_where_clause_repeat1, - STATE(2425), 2, + ACTIONS(5427), 1, + anon_sym_DASH_GT, + STATE(2488), 2, sym_line_comment, sym_block_comment, - ACTIONS(5475), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - [75457] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3610), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(4959), 2, + ACTIONS(3539), 5, anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5479), 2, - anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_GT, anon_sym_COMMA, - STATE(2426), 2, - sym_line_comment, - sym_block_comment, - [75480] = 9, + anon_sym_as, + [77274] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3095), 1, anon_sym_PLUS, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5482), 1, + ACTIONS(5046), 1, + anon_sym_LBRACE, + ACTIONS(5429), 1, anon_sym_SEMI, - STATE(1160), 1, + STATE(1294), 1, sym_declaration_list, - STATE(2929), 1, + STATE(3118), 1, sym_where_clause, - STATE(2427), 2, + STATE(2489), 2, sym_line_comment, sym_block_comment, - [75509] = 9, + [77303] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3095), 1, anon_sym_PLUS, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5484), 1, + ACTIONS(5046), 1, + anon_sym_LBRACE, + ACTIONS(5431), 1, anon_sym_SEMI, - STATE(1400), 1, + STATE(1296), 1, sym_declaration_list, - STATE(2992), 1, + STATE(3119), 1, sym_where_clause, - STATE(2428), 2, + STATE(2490), 2, sym_line_comment, sym_block_comment, - [75538] = 9, + [77332] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3095), 1, anon_sym_PLUS, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5486), 1, + ACTIONS(5046), 1, + anon_sym_LBRACE, + ACTIONS(5433), 1, anon_sym_SEMI, - STATE(1403), 1, + STATE(1310), 1, sym_declaration_list, - STATE(2993), 1, + STATE(3127), 1, sym_where_clause, - STATE(2429), 2, + STATE(2491), 2, sym_line_comment, sym_block_comment, - [75567] = 9, + [77361] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3095), 1, anon_sym_PLUS, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5488), 1, + ACTIONS(5046), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, anon_sym_SEMI, - STATE(1165), 1, + STATE(1312), 1, sym_declaration_list, - STATE(2931), 1, + STATE(3128), 1, sym_where_clause, - STATE(2430), 2, + STATE(2492), 2, sym_line_comment, sym_block_comment, - [75596] = 9, + [77390] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3095), 1, anon_sym_PLUS, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5093), 1, + ACTIONS(5046), 1, anon_sym_LBRACE, - ACTIONS(5490), 1, + ACTIONS(5437), 1, anon_sym_SEMI, - STATE(628), 1, + STATE(1314), 1, sym_declaration_list, - STATE(2888), 1, + STATE(3134), 1, sym_where_clause, - STATE(2431), 2, + STATE(2493), 2, sym_line_comment, sym_block_comment, - [75625] = 9, + [77419] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3095), 1, anon_sym_PLUS, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5492), 1, + ACTIONS(5046), 1, + anon_sym_LBRACE, + ACTIONS(5439), 1, anon_sym_SEMI, - STATE(1187), 1, + STATE(1316), 1, sym_declaration_list, - STATE(2940), 1, + STATE(3135), 1, sym_where_clause, - STATE(2432), 2, + STATE(2494), 2, sym_line_comment, sym_block_comment, - [75654] = 9, + [77448] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5164), 1, - anon_sym_COLON, - STATE(1194), 1, + ACTIONS(5072), 1, + anon_sym_LBRACE, + ACTIONS(5441), 1, + anon_sym_SEMI, + STATE(760), 1, sym_declaration_list, - STATE(2833), 1, - sym_trait_bounds, - STATE(3219), 1, + STATE(3108), 1, sym_where_clause, - STATE(2433), 2, + STATE(2495), 2, sym_line_comment, sym_block_comment, - [75683] = 9, + [77477] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(4706), 1, + anon_sym_COLON_COLON, + ACTIONS(5090), 1, + anon_sym_for, + STATE(2496), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3420), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5093), 1, + [77500] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5020), 1, anon_sym_LBRACE, - ACTIONS(5494), 1, - anon_sym_SEMI, - STATE(615), 1, - sym_declaration_list, - STATE(3001), 1, + ACTIONS(5022), 1, + anon_sym_LT, + ACTIONS(5024), 1, + anon_sym_where, + STATE(645), 1, + sym_field_declaration_list, + STATE(2722), 1, + sym_type_parameters, + STATE(3436), 1, sym_where_clause, - STATE(2434), 2, + STATE(2497), 2, sym_line_comment, sym_block_comment, - [75712] = 6, + [77529] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3734), 1, - anon_sym_COLON, - ACTIONS(5496), 1, - anon_sym_EQ, - STATE(2435), 2, + ACTIONS(5443), 1, + anon_sym_DASH_GT, + STATE(2498), 2, sym_line_comment, sym_block_comment, - ACTIONS(3732), 4, + ACTIONS(3653), 5, + anon_sym_COLON, anon_sym_PLUS, anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, - [75735] = 9, + anon_sym_as, + [77550] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3095), 1, anon_sym_PLUS, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5093), 1, + ACTIONS(5046), 1, anon_sym_LBRACE, - ACTIONS(5498), 1, + ACTIONS(5445), 1, anon_sym_SEMI, - STATE(568), 1, + STATE(1352), 1, sym_declaration_list, - STATE(3089), 1, + STATE(3144), 1, sym_where_clause, - STATE(2436), 2, + STATE(2499), 2, sym_line_comment, sym_block_comment, - [75764] = 9, + [77579] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3210), 1, + ACTIONS(3095), 1, anon_sym_PLUS, - ACTIONS(5164), 1, - anon_sym_COLON, - ACTIONS(5500), 1, - anon_sym_GT, - ACTIONS(5502), 1, - anon_sym_COMMA, - STATE(2966), 1, - sym_trait_bounds, - STATE(2967), 1, - aux_sym_type_arguments_repeat1, - STATE(2437), 2, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5046), 1, + anon_sym_LBRACE, + ACTIONS(5447), 1, + anon_sym_SEMI, + STATE(1354), 1, + sym_declaration_list, + STATE(3146), 1, + sym_where_clause, + STATE(2500), 2, sym_line_comment, sym_block_comment, - [75793] = 9, + [77608] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3095), 1, anon_sym_PLUS, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5093), 1, + ACTIONS(5072), 1, anon_sym_LBRACE, - ACTIONS(5504), 1, + ACTIONS(5449), 1, anon_sym_SEMI, - STATE(634), 1, + STATE(686), 1, sym_declaration_list, - STATE(2918), 1, + STATE(3093), 1, sym_where_clause, - STATE(2438), 2, + STATE(2501), 2, sym_line_comment, sym_block_comment, - [75822] = 6, + [77637] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4746), 1, - anon_sym_COLON_COLON, - ACTIONS(5133), 1, - anon_sym_for, - STATE(2439), 2, + STATE(2502), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [75845] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5059), 1, + ACTIONS(5077), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5506), 1, - anon_sym_SEMI, - STATE(1370), 1, - sym_declaration_list, - STATE(2895), 1, - sym_where_clause, - STATE(2440), 2, - sym_line_comment, - sym_block_comment, - [75874] = 9, + anon_sym_RBRACE, + [77656] = 9, ACTIONS(27), 1, anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - STATE(219), 1, + STATE(191), 1, sym_closure_parameters, - STATE(1526), 1, + STATE(1545), 1, sym_block, - STATE(3714), 1, + STATE(3775), 1, sym_label, - STATE(2441), 2, + STATE(2503), 2, sym_line_comment, sym_block_comment, - [75903] = 9, + [77685] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5164), 1, - anon_sym_COLON, - ACTIONS(5508), 1, + ACTIONS(5451), 1, + anon_sym_COMMA, + STATE(2516), 1, + aux_sym_where_clause_repeat1, + STATE(2504), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3478), 4, anon_sym_SEMI, - ACTIONS(5510), 1, + anon_sym_LBRACE, anon_sym_EQ, - STATE(3086), 1, + anon_sym_SQUOTE, + [77708] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3103), 1, + anon_sym_PLUS, + ACTIONS(5109), 1, + anon_sym_COLON, + ACTIONS(5453), 1, + anon_sym_GT, + ACTIONS(5455), 1, + anon_sym_COMMA, + STATE(2959), 1, sym_trait_bounds, - STATE(3282), 1, - sym_where_clause, - STATE(2442), 2, + STATE(2960), 1, + aux_sym_type_arguments_repeat1, + STATE(2505), 2, sym_line_comment, sym_block_comment, - [75932] = 9, + [77737] = 9, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(5512), 1, - anon_sym_SEMI, - STATE(772), 1, - sym_declaration_list, - STATE(3049), 1, - sym_where_clause, - STATE(2443), 2, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + STATE(189), 1, + sym_closure_parameters, + STATE(431), 1, + sym_block, + STATE(3801), 1, + sym_label, + STATE(2506), 2, sym_line_comment, sym_block_comment, - [75961] = 9, + [77766] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5069), 1, - anon_sym_LT, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5461), 1, - anon_sym_LBRACE, - STATE(607), 1, - sym_enum_variant_list, - STATE(2807), 1, - sym_type_parameters, - STATE(3434), 1, - sym_where_clause, - STATE(2444), 2, + ACTIONS(4609), 1, + anon_sym_DOT_DOT, + ACTIONS(5305), 1, + anon_sym_COLON_COLON, + ACTIONS(4611), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5457), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2507), 2, sym_line_comment, sym_block_comment, - [75990] = 9, + [77791] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3210), 1, - anon_sym_PLUS, - ACTIONS(5164), 1, - anon_sym_COLON, - ACTIONS(5514), 1, - anon_sym_GT, - ACTIONS(5516), 1, - anon_sym_COMMA, - STATE(3040), 1, - sym_trait_bounds, - STATE(3041), 1, - aux_sym_type_arguments_repeat1, - STATE(2445), 2, + ACTIONS(983), 1, + anon_sym_LBRACE, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + ACTIONS(5459), 1, + anon_sym_if, + STATE(3840), 1, + sym_label, + STATE(511), 2, + sym_if_expression, + sym_block, + STATE(2508), 2, sym_line_comment, sym_block_comment, - [76019] = 9, + [77818] = 9, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5093), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(5518), 1, - anon_sym_SEMI, - STATE(667), 1, - sym_declaration_list, - STATE(3187), 1, - sym_where_clause, - STATE(2446), 2, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + STATE(162), 1, + sym_closure_parameters, + STATE(1545), 1, + sym_block, + STATE(3775), 1, + sym_label, + STATE(2509), 2, sym_line_comment, sym_block_comment, - [76048] = 9, + [77847] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3103), 1, anon_sym_PLUS, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(5520), 1, - anon_sym_SEMI, - STATE(630), 1, - sym_declaration_list, - STATE(2908), 1, - sym_where_clause, - STATE(2447), 2, + ACTIONS(5109), 1, + anon_sym_COLON, + ACTIONS(5461), 1, + anon_sym_GT, + ACTIONS(5463), 1, + anon_sym_COMMA, + STATE(2934), 1, + aux_sym_type_arguments_repeat1, + STATE(3015), 1, + sym_trait_bounds, + STATE(2510), 2, sym_line_comment, sym_block_comment, - [76077] = 8, + [77876] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1383), 1, + ACTIONS(417), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - ACTIONS(5522), 1, + ACTIONS(5465), 1, anon_sym_if, - STATE(3778), 1, + STATE(3841), 1, sym_label, - STATE(485), 2, + STATE(1940), 2, sym_if_expression, sym_block, - STATE(2448), 2, + STATE(2511), 2, sym_line_comment, sym_block_comment, - [76104] = 6, + [77903] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4823), 1, - anon_sym_DOT_DOT, - ACTIONS(4825), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2449), 2, + ACTIONS(5467), 1, + anon_sym_DASH_GT, + STATE(2512), 2, sym_line_comment, sym_block_comment, - ACTIONS(4654), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [76127] = 8, + ACTIONS(3717), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [77924] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5192), 1, - sym_identifier, - ACTIONS(5196), 1, - anon_sym_DOT_DOT, - ACTIONS(5200), 1, - anon_sym_ref, - ACTIONS(5202), 1, - sym_mutable_specifier, - STATE(2450), 2, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5072), 1, + anon_sym_LBRACE, + ACTIONS(5469), 1, + anon_sym_SEMI, + STATE(720), 1, + sym_declaration_list, + STATE(3043), 1, + sym_where_clause, + STATE(2513), 2, sym_line_comment, sym_block_comment, - STATE(3266), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [76154] = 7, + [77953] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4666), 1, - anon_sym_DOT_DOT, - ACTIONS(5350), 1, - anon_sym_COLON_COLON, - ACTIONS(4668), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5414), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2451), 2, + ACTIONS(5471), 1, + anon_sym_DASH_GT, + STATE(2514), 2, sym_line_comment, sym_block_comment, - [76179] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4666), 1, - anon_sym_DOT_DOT, - ACTIONS(5350), 1, - anon_sym_COLON_COLON, - ACTIONS(4668), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5524), 2, - anon_sym_RPAREN, + ACTIONS(3723), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, anon_sym_COMMA, - STATE(2452), 2, - sym_line_comment, - sym_block_comment, - [76204] = 7, + anon_sym_as, + [77974] = 9, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4666), 1, - anon_sym_DOT_DOT, - ACTIONS(5352), 1, - anon_sym_COLON_COLON, - ACTIONS(4668), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5414), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2453), 2, + ACTIONS(983), 1, + anon_sym_LBRACE, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + STATE(189), 1, + sym_closure_parameters, + STATE(512), 1, + sym_block, + STATE(3840), 1, + sym_label, + STATE(2515), 2, sym_line_comment, sym_block_comment, - [76229] = 5, + [78003] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4959), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2454), 2, + ACTIONS(5475), 1, + anon_sym_COMMA, + STATE(2516), 3, sym_line_comment, sym_block_comment, - ACTIONS(3610), 4, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [76250] = 9, + aux_sym_where_clause_repeat1, + ACTIONS(5473), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + [78024] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3095), 1, anon_sym_PLUS, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5093), 1, + ACTIONS(5072), 1, anon_sym_LBRACE, - ACTIONS(5526), 1, + ACTIONS(5478), 1, anon_sym_SEMI, - STATE(705), 1, + STATE(763), 1, sym_declaration_list, - STATE(3158), 1, + STATE(3047), 1, sym_where_clause, - STATE(2455), 2, + STATE(2517), 2, sym_line_comment, sym_block_comment, - [76279] = 5, + [78053] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5528), 1, + ACTIONS(5480), 1, anon_sym_DASH_GT, - STATE(2456), 2, + STATE(2518), 2, sym_line_comment, sym_block_comment, - ACTIONS(3764), 5, + ACTIONS(3729), 5, anon_sym_COLON, anon_sym_PLUS, anon_sym_GT, anon_sym_COMMA, anon_sym_as, - [76300] = 9, + [78074] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5164), 1, + ACTIONS(5482), 1, + anon_sym_DASH_GT, + STATE(2519), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3663), 5, anon_sym_COLON, - STATE(1408), 1, - sym_declaration_list, - STATE(2740), 1, - sym_trait_bounds, - STATE(3209), 1, - sym_where_clause, - STATE(2457), 2, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [78095] = 9, + ACTIONS(27), 1, + anon_sym_PIPE, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(417), 1, + anon_sym_LBRACE, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + STATE(157), 1, + sym_closure_parameters, + STATE(1874), 1, + sym_block, + STATE(3841), 1, + sym_label, + STATE(2520), 2, sym_line_comment, sym_block_comment, - [76329] = 9, + [78124] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3095), 1, anon_sym_PLUS, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5093), 1, + ACTIONS(5072), 1, anon_sym_LBRACE, - ACTIONS(5530), 1, + ACTIONS(5484), 1, anon_sym_SEMI, - STATE(636), 1, + STATE(569), 1, sym_declaration_list, - STATE(2947), 1, + STATE(3123), 1, sym_where_clause, - STATE(2458), 2, + STATE(2521), 2, sym_line_comment, sym_block_comment, - [76358] = 7, + [78153] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4666), 1, - anon_sym_DOT_DOT, - ACTIONS(5352), 1, - anon_sym_COLON_COLON, - ACTIONS(4668), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5524), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2459), 2, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5072), 1, + anon_sym_LBRACE, + ACTIONS(5486), 1, + anon_sym_SEMI, + STATE(571), 1, + sym_declaration_list, + STATE(2989), 1, + sym_where_clause, + STATE(2522), 2, sym_line_comment, sym_block_comment, - [76383] = 9, + [78182] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5164), 1, - anon_sym_COLON, - ACTIONS(5532), 1, - anon_sym_SEMI, - ACTIONS(5534), 1, - anon_sym_EQ, - STATE(2900), 1, - sym_trait_bounds, - STATE(3189), 1, - sym_where_clause, - STATE(2460), 2, + ACTIONS(5488), 1, + anon_sym_DASH_GT, + STATE(2523), 2, sym_line_comment, sym_block_comment, - [76412] = 4, + ACTIONS(3669), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [78203] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2461), 2, + ACTIONS(3713), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(4950), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5381), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2524), 2, sym_line_comment, sym_block_comment, - ACTIONS(3566), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [76431] = 9, + [78226] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, + ACTIONS(5022), 1, + anon_sym_LT, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5536), 1, - anon_sym_SEMI, - STATE(1415), 1, - sym_declaration_list, - STATE(2902), 1, + ACTIONS(5417), 1, + anon_sym_LBRACE, + STATE(562), 1, + sym_enum_variant_list, + STATE(2899), 1, + sym_type_parameters, + STATE(3466), 1, sym_where_clause, - STATE(2462), 2, + STATE(2525), 2, sym_line_comment, sym_block_comment, - [76460] = 9, + [78255] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3095), 1, anon_sym_PLUS, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5093), 1, + ACTIONS(5072), 1, anon_sym_LBRACE, - ACTIONS(5538), 1, + ACTIONS(5490), 1, anon_sym_SEMI, - STATE(774), 1, + STATE(781), 1, sym_declaration_list, - STATE(3077), 1, + STATE(3059), 1, sym_where_clause, - STATE(2463), 2, + STATE(2526), 2, sym_line_comment, sym_block_comment, - [76489] = 5, + [78284] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(975), 1, - anon_sym_DOT_DOT, - STATE(2464), 2, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5072), 1, + anon_sym_LBRACE, + ACTIONS(5492), 1, + anon_sym_SEMI, + STATE(783), 1, + sym_declaration_list, + STATE(3061), 1, + sym_where_clause, + STATE(2527), 2, sym_line_comment, sym_block_comment, - ACTIONS(977), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [76510] = 5, + [78313] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(951), 1, + ACTIONS(4728), 1, anon_sym_DOT_DOT, - STATE(2465), 2, + STATE(2528), 2, sym_line_comment, sym_block_comment, - ACTIONS(953), 5, + ACTIONS(4726), 5, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_if, - [76531] = 5, + [78334] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4783), 1, + ACTIONS(1207), 1, anon_sym_DOT_DOT, - STATE(2466), 2, + STATE(2529), 2, sym_line_comment, sym_block_comment, - ACTIONS(4781), 5, + ACTIONS(1209), 5, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_if, - [76552] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4746), 1, - anon_sym_COLON_COLON, - ACTIONS(5162), 1, - anon_sym_for, - STATE(2467), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3475), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [76575] = 5, + [78355] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(955), 1, + ACTIONS(1211), 1, anon_sym_DOT_DOT, - STATE(2468), 2, + STATE(2530), 2, sym_line_comment, sym_block_comment, - ACTIONS(957), 5, + ACTIONS(1213), 5, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_if, - [76596] = 9, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(234), 1, - sym_closure_parameters, - STATE(1526), 1, - sym_block, - STATE(3714), 1, - sym_label, - STATE(2469), 2, - sym_line_comment, - sym_block_comment, - [76625] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3210), 1, - anon_sym_PLUS, - ACTIONS(5164), 1, - anon_sym_COLON, - ACTIONS(5540), 1, - anon_sym_GT, - ACTIONS(5542), 1, - anon_sym_COMMA, - STATE(3075), 1, - sym_trait_bounds, - STATE(3076), 1, - aux_sym_type_arguments_repeat1, - STATE(2470), 2, - sym_line_comment, - sym_block_comment, - [76654] = 6, + [78376] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, + ACTIONS(5496), 1, anon_sym_COMMA, - STATE(2407), 1, + STATE(2504), 1, aux_sym_where_clause_repeat1, - STATE(2471), 2, + STATE(2531), 2, sym_line_comment, sym_block_comment, - ACTIONS(3524), 4, + ACTIONS(5494), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_SQUOTE, - [76677] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5546), 1, - anon_sym_if, - STATE(3779), 1, - sym_label, - STATE(1846), 2, - sym_if_expression, - sym_block, - STATE(2472), 2, - sym_line_comment, - sym_block_comment, - [76704] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5067), 1, - anon_sym_LBRACE, - ACTIONS(5069), 1, - anon_sym_LT, - ACTIONS(5071), 1, - anon_sym_where, - STATE(1317), 1, - sym_field_declaration_list, - STATE(2666), 1, - sym_type_parameters, - STATE(3453), 1, - sym_where_clause, - STATE(2473), 2, - sym_line_comment, - sym_block_comment, - [76733] = 9, + [78399] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3095), 1, anon_sym_PLUS, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5093), 1, + ACTIONS(5072), 1, anon_sym_LBRACE, - ACTIONS(5548), 1, + ACTIONS(5498), 1, anon_sym_SEMI, - STATE(725), 1, + STATE(689), 1, sym_declaration_list, - STATE(2944), 1, + STATE(3101), 1, sym_where_clause, - STATE(2474), 2, + STATE(2532), 2, sym_line_comment, sym_block_comment, - [76762] = 5, + [78428] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1013), 1, + ACTIONS(1225), 1, anon_sym_DOT_DOT, - STATE(2475), 2, + STATE(2533), 2, sym_line_comment, sym_block_comment, - ACTIONS(1015), 5, + ACTIONS(1227), 5, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_if, - [76783] = 9, + [78449] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(5550), 1, - anon_sym_SEMI, - STATE(727), 1, - sym_declaration_list, - STATE(2968), 1, - sym_where_clause, - STATE(2476), 2, + ACTIONS(1229), 1, + anon_sym_DOT_DOT, + STATE(2534), 2, sym_line_comment, sym_block_comment, - [76812] = 6, + ACTIONS(1231), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [78470] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4746), 1, - anon_sym_COLON_COLON, - ACTIONS(5143), 1, - anon_sym_for, - STATE(2477), 2, + STATE(2535), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [76835] = 9, + ACTIONS(3492), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [78489] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3095), 1, anon_sym_PLUS, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5552), 1, + ACTIONS(5072), 1, + anon_sym_LBRACE, + ACTIONS(5500), 1, anon_sym_SEMI, - STATE(1221), 1, + STATE(567), 1, sym_declaration_list, - STATE(2959), 1, + STATE(3109), 1, sym_where_clause, - STATE(2478), 2, + STATE(2536), 2, sym_line_comment, sym_block_comment, - [76864] = 9, + [78518] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3095), 1, anon_sym_PLUS, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5093), 1, + ACTIONS(5072), 1, anon_sym_LBRACE, - ACTIONS(5554), 1, + ACTIONS(5502), 1, anon_sym_SEMI, - STATE(729), 1, + STATE(603), 1, sym_declaration_list, - STATE(3095), 1, + STATE(3110), 1, sym_where_clause, - STATE(2479), 2, + STATE(2537), 2, sym_line_comment, sym_block_comment, - [76893] = 9, + [78547] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3095), 1, anon_sym_PLUS, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5556), 1, + ACTIONS(5072), 1, + anon_sym_LBRACE, + ACTIONS(5504), 1, anon_sym_SEMI, - STATE(1223), 1, + STATE(605), 1, sym_declaration_list, - STATE(2960), 1, + STATE(3136), 1, sym_where_clause, - STATE(2480), 2, + STATE(2538), 2, sym_line_comment, sym_block_comment, - [76922] = 4, + [78576] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2481), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5150), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5072), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - [76941] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5558), 1, - anon_sym_RBRACK, - ACTIONS(4975), 2, - anon_sym_PIPE, - anon_sym_COMMA, - STATE(2482), 2, + ACTIONS(5506), 1, + anon_sym_SEMI, + STATE(607), 1, + sym_declaration_list, + STATE(2945), 1, + sym_where_clause, + STATE(2539), 2, sym_line_comment, sym_block_comment, - ACTIONS(3760), 3, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [76964] = 6, + [78605] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4746), 1, + ACTIONS(4609), 1, + anon_sym_DOT_DOT, + ACTIONS(5353), 1, anon_sym_COLON_COLON, - ACTIONS(5145), 1, - anon_sym_for, - STATE(2483), 2, + ACTIONS(4611), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5323), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2540), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [76987] = 9, + [78630] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3095), 1, anon_sym_PLUS, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5561), 1, + ACTIONS(5072), 1, + anon_sym_LBRACE, + ACTIONS(5508), 1, anon_sym_SEMI, - STATE(1228), 1, + STATE(611), 1, sym_declaration_list, - STATE(2962), 1, + STATE(2956), 1, sym_where_clause, - STATE(2484), 2, + STATE(2541), 2, sym_line_comment, sym_block_comment, - [77016] = 9, - ACTIONS(27), 1, - anon_sym_PIPE, + [78659] = 8, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1383), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - STATE(232), 1, - sym_closure_parameters, - STATE(495), 1, - sym_block, - STATE(3778), 1, + ACTIONS(5510), 1, + anon_sym_if, + STATE(3801), 1, sym_label, - STATE(2485), 2, + STATE(422), 2, + sym_if_expression, + sym_block, + STATE(2542), 2, sym_line_comment, sym_block_comment, - [77045] = 6, + [78686] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4746), 1, - anon_sym_COLON_COLON, - ACTIONS(5158), 1, - anon_sym_for, - STATE(2486), 2, + ACTIONS(3533), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(4918), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5384), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2543), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [77068] = 9, + [78709] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(5563), 1, - anon_sym_SEMI, - STATE(731), 1, - sym_declaration_list, - STATE(3180), 1, - sym_where_clause, - STATE(2487), 2, + ACTIONS(4609), 1, + anon_sym_DOT_DOT, + ACTIONS(5353), 1, + anon_sym_COLON_COLON, + ACTIONS(4611), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5457), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2544), 2, sym_line_comment, sym_block_comment, - [77097] = 9, + [78734] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5069), 1, - anon_sym_LT, - ACTIONS(5071), 1, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5131), 1, + ACTIONS(5072), 1, anon_sym_LBRACE, - STATE(541), 1, - sym_field_declaration_list, - STATE(2766), 1, - sym_type_parameters, - STATE(3372), 1, + ACTIONS(5512), 1, + anon_sym_SEMI, + STATE(800), 1, + sym_declaration_list, + STATE(3131), 1, sym_where_clause, - STATE(2488), 2, + STATE(2545), 2, sym_line_comment, sym_block_comment, - [77126] = 9, + [78763] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3095), 1, anon_sym_PLUS, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5565), 1, + ACTIONS(5072), 1, + anon_sym_LBRACE, + ACTIONS(5514), 1, anon_sym_SEMI, - STATE(1230), 1, + STATE(595), 1, sym_declaration_list, - STATE(2963), 1, + STATE(3225), 1, sym_where_clause, - STATE(2489), 2, + STATE(2546), 2, sym_line_comment, sym_block_comment, - [77155] = 5, + [78792] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2490), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3760), 4, - anon_sym_RPAREN, + ACTIONS(3095), 1, anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [77176] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5069), 1, - anon_sym_LT, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5469), 1, + ACTIONS(5072), 1, anon_sym_LBRACE, - STATE(1419), 1, - sym_enum_variant_list, - STATE(2747), 1, - sym_type_parameters, - STATE(3246), 1, + ACTIONS(5516), 1, + anon_sym_SEMI, + STATE(598), 1, + sym_declaration_list, + STATE(2940), 1, sym_where_clause, - STATE(2491), 2, + STATE(2547), 2, sym_line_comment, sym_block_comment, - [77205] = 6, + [78821] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4746), 1, + ACTIONS(4706), 1, anon_sym_COLON_COLON, - ACTIONS(5055), 1, + ACTIONS(5014), 1, anon_sym_for, - STATE(2492), 2, + STATE(2548), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 4, + ACTIONS(3420), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [77228] = 9, + [78844] = 9, ACTIONS(27), 1, anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - STATE(256), 1, + STATE(189), 1, sym_closure_parameters, - STATE(1819), 1, + STATE(1545), 1, sym_block, - STATE(3779), 1, + STATE(3775), 1, sym_label, - STATE(2493), 2, - sym_line_comment, - sym_block_comment, - [77257] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5567), 1, - anon_sym_DASH_GT, - STATE(2494), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3740), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [77278] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5164), 1, - anon_sym_COLON, - STATE(1275), 1, - sym_declaration_list, - STATE(2854), 1, - sym_trait_bounds, - STATE(3331), 1, - sym_where_clause, - STATE(2495), 2, + STATE(2549), 2, sym_line_comment, sym_block_comment, - [77307] = 9, + [78873] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5067), 1, - anon_sym_LBRACE, - ACTIONS(5069), 1, + ACTIONS(5022), 1, anon_sym_LT, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - STATE(1424), 1, - sym_field_declaration_list, - STATE(2749), 1, + ACTIONS(5399), 1, + anon_sym_LBRACE, + STATE(1426), 1, + sym_enum_variant_list, + STATE(2673), 1, sym_type_parameters, - STATE(3267), 1, + STATE(3459), 1, sym_where_clause, - STATE(2496), 2, + STATE(2550), 2, sym_line_comment, sym_block_comment, - [77336] = 6, + [78902] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5479), 1, - anon_sym_RBRACK, - ACTIONS(4959), 2, - anon_sym_PIPE, - anon_sym_COMMA, - STATE(2497), 2, + ACTIONS(4706), 1, + anon_sym_COLON_COLON, + ACTIONS(5036), 1, + anon_sym_for, + STATE(2551), 2, sym_line_comment, sym_block_comment, - ACTIONS(3610), 3, + ACTIONS(3420), 4, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_DASH_GT, - [77359] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3760), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(4975), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5558), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2498), 2, - sym_line_comment, - sym_block_comment, - [77382] = 9, + anon_sym_where, + [78925] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3095), 1, anon_sym_PLUS, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5093), 1, + ACTIONS(5046), 1, anon_sym_LBRACE, - ACTIONS(5569), 1, + ACTIONS(5518), 1, anon_sym_SEMI, - STATE(784), 1, + STATE(1433), 1, sym_declaration_list, - STATE(3108), 1, + STATE(3169), 1, sym_where_clause, - STATE(2499), 2, + STATE(2552), 2, sym_line_comment, sym_block_comment, - [77411] = 8, - ACTIONS(19), 1, - anon_sym_LBRACE, + [78954] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5571), 1, - anon_sym_if, - STATE(3621), 1, - sym_label, - STATE(404), 2, - sym_if_expression, - sym_block, - STATE(2500), 2, + ACTIONS(5129), 1, + sym_identifier, + ACTIONS(5133), 1, + anon_sym_DOT_DOT, + ACTIONS(5137), 1, + anon_sym_ref, + ACTIONS(5139), 1, + sym_mutable_specifier, + STATE(2553), 2, sym_line_comment, sym_block_comment, - [77438] = 5, + STATE(3259), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [78981] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5573), 1, - anon_sym_DASH_GT, - STATE(2501), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3776), 5, - anon_sym_COLON, - anon_sym_PLUS, + ACTIONS(4718), 1, + anon_sym_COLON_COLON, + ACTIONS(5520), 1, anon_sym_GT, + ACTIONS(5522), 1, anon_sym_COMMA, + STATE(3158), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3420), 2, + anon_sym_PLUS, anon_sym_as, - [77459] = 9, + STATE(2554), 2, + sym_line_comment, + sym_block_comment, + [79008] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(5575), 1, - anon_sym_SEMI, - STATE(564), 1, - sym_declaration_list, - STATE(3085), 1, - sym_where_clause, - STATE(2502), 2, + ACTIONS(4706), 1, + anon_sym_COLON_COLON, + ACTIONS(5042), 1, + anon_sym_for, + STATE(2555), 2, sym_line_comment, sym_block_comment, - [77488] = 8, + ACTIONS(3420), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [79031] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4769), 1, + ACTIONS(4706), 1, anon_sym_COLON_COLON, - ACTIONS(5577), 1, - anon_sym_GT, - ACTIONS(5579), 1, - anon_sym_COMMA, - STATE(3148), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3475), 2, - anon_sym_PLUS, - anon_sym_as, - STATE(2503), 2, + ACTIONS(5048), 1, + anon_sym_for, + STATE(2556), 2, sym_line_comment, sym_block_comment, - [77515] = 9, + ACTIONS(3420), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [79054] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(5164), 1, - anon_sym_COLON, - STATE(676), 1, - sym_declaration_list, - STATE(2722), 1, - sym_trait_bounds, - STATE(3352), 1, - sym_where_clause, - STATE(2504), 2, + ACTIONS(4706), 1, + anon_sym_COLON_COLON, + ACTIONS(5056), 1, + anon_sym_for, + STATE(2557), 2, sym_line_comment, sym_block_comment, - [77544] = 9, + ACTIONS(3420), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [79077] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(5581), 1, - anon_sym_SEMI, - STATE(587), 1, - sym_declaration_list, - STATE(3159), 1, - sym_where_clause, - STATE(2505), 2, + ACTIONS(4918), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2558), 2, sym_line_comment, sym_block_comment, - [77573] = 6, + ACTIONS(3533), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [79098] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4746), 1, - anon_sym_COLON_COLON, - ACTIONS(5099), 1, - anon_sym_for, - STATE(2506), 2, + ACTIONS(3645), 1, + anon_sym_COLON, + ACTIONS(5524), 1, + anon_sym_EQ, + STATE(2559), 2, sym_line_comment, - sym_block_comment, - ACTIONS(3475), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + sym_block_comment, + ACTIONS(3643), 4, anon_sym_PLUS, - anon_sym_where, - [77596] = 9, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + [79121] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3095), 1, anon_sym_PLUS, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5093), 1, + ACTIONS(5072), 1, anon_sym_LBRACE, - ACTIONS(5583), 1, + ACTIONS(5526), 1, anon_sym_SEMI, - STATE(707), 1, + STATE(721), 1, sym_declaration_list, - STATE(3160), 1, + STATE(3170), 1, sym_where_clause, - STATE(2507), 2, + STATE(2560), 2, sym_line_comment, sym_block_comment, - [77625] = 8, + [79150] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(1513), 1, - sym_block, - STATE(3714), 1, - sym_label, - STATE(2508), 2, + ACTIONS(4950), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2561), 2, sym_line_comment, sym_block_comment, - [77651] = 4, + ACTIONS(3713), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [79171] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2509), 2, + STATE(2562), 2, sym_line_comment, sym_block_comment, - ACTIONS(3586), 5, + ACTIONS(5528), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, anon_sym_EQ, + anon_sym_COMMA, anon_sym_where, - [77669] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5170), 1, - anon_sym_LBRACE, - ACTIONS(5585), 1, - anon_sym_SEMI, - STATE(1359), 1, - sym_block, - STATE(3777), 1, - sym_label, - STATE(2510), 2, - sym_line_comment, - sym_block_comment, - [77695] = 8, + [79189] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5164), 1, + ACTIONS(5109), 1, anon_sym_COLON, - ACTIONS(5500), 1, + ACTIONS(5453), 1, anon_sym_GT, - ACTIONS(5502), 1, + ACTIONS(5455), 1, anon_sym_COMMA, - STATE(2966), 1, + STATE(2959), 1, sym_trait_bounds, - STATE(2967), 1, + STATE(2960), 1, aux_sym_type_arguments_repeat1, - STATE(2511), 2, + STATE(2563), 2, sym_line_comment, sym_block_comment, - [77721] = 8, + [79215] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5170), 1, + ACTIONS(417), 1, anon_sym_LBRACE, - ACTIONS(5587), 1, - anon_sym_SEMI, - STATE(1375), 1, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + STATE(1808), 1, sym_block, - STATE(3777), 1, + STATE(3841), 1, sym_label, - STATE(2512), 2, + STATE(2564), 2, sym_line_comment, sym_block_comment, - [77747] = 7, + [79241] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4316), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - ACTIONS(5591), 1, + ACTIONS(5532), 1, anon_sym_STAR, - STATE(3129), 1, + STATE(3149), 1, sym_use_list, - ACTIONS(5589), 2, + ACTIONS(5530), 2, sym_identifier, sym_super, - STATE(2513), 2, + STATE(2565), 2, sym_line_comment, sym_block_comment, - [77771] = 8, + [79265] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5170), 1, - anon_sym_LBRACE, - ACTIONS(5593), 1, - anon_sym_SEMI, - STATE(1382), 1, - sym_block, - STATE(3777), 1, - sym_label, - STATE(2514), 2, + ACTIONS(5534), 1, + anon_sym_RPAREN, + ACTIONS(5536), 1, + anon_sym_COMMA, + STATE(2962), 1, + aux_sym_parameters_repeat1, + ACTIONS(4597), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2566), 2, sym_line_comment, sym_block_comment, - [77797] = 7, + [79289] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4666), 1, - anon_sym_DOT_DOT, - ACTIONS(5348), 1, - anon_sym_COLON, - ACTIONS(5418), 1, + ACTIONS(3359), 1, + anon_sym_LPAREN, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(4621), 1, anon_sym_COLON_COLON, - ACTIONS(4668), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2515), 2, + STATE(1454), 1, + sym_parameters, + STATE(2083), 1, + sym_type_arguments, + STATE(2567), 2, sym_line_comment, sym_block_comment, - [77821] = 8, + [79315] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - ACTIONS(5170), 1, + ACTIONS(5155), 1, anon_sym_LBRACE, - ACTIONS(5595), 1, + ACTIONS(5538), 1, anon_sym_SEMI, - STATE(1117), 1, + STATE(1231), 1, sym_block, - STATE(3777), 1, + STATE(3838), 1, sym_label, - STATE(2516), 2, + STATE(2568), 2, sym_line_comment, sym_block_comment, - [77847] = 8, + [79341] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5170), 1, - anon_sym_LBRACE, - ACTIONS(5597), 1, - anon_sym_SEMI, - STATE(1125), 1, - sym_block, - STATE(3777), 1, - sym_label, - STATE(2517), 2, + ACTIONS(4597), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2569), 2, sym_line_comment, sym_block_comment, - [77873] = 4, + ACTIONS(3420), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [79361] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2518), 2, + ACTIONS(1285), 1, + anon_sym_RPAREN, + ACTIONS(5540), 1, + anon_sym_COMMA, + STATE(2974), 1, + aux_sym_parameters_repeat1, + ACTIONS(4597), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2570), 2, + sym_line_comment, + sym_block_comment, + [79385] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5544), 1, + anon_sym_COLON_COLON, + ACTIONS(5546), 1, + anon_sym_as, + STATE(2571), 2, sym_line_comment, sym_block_comment, - ACTIONS(5599), 5, + ACTIONS(5542), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_where, - [77891] = 8, + [79407] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5170), 1, - anon_sym_LBRACE, - ACTIONS(5601), 1, + ACTIONS(4970), 1, + anon_sym_PIPE, + ACTIONS(5548), 1, anon_sym_SEMI, - STATE(1135), 1, - sym_block, - STATE(3777), 1, - sym_label, - STATE(2519), 2, + ACTIONS(5550), 1, + anon_sym_COLON, + ACTIONS(5552), 1, + anon_sym_EQ, + ACTIONS(5554), 1, + anon_sym_else, + STATE(2572), 2, sym_line_comment, sym_block_comment, - [77917] = 8, + [79433] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(1532), 1, - sym_block, - STATE(3714), 1, - sym_label, - STATE(2520), 2, + ACTIONS(5556), 1, + anon_sym_RPAREN, + ACTIONS(5558), 1, + anon_sym_COLON, + ACTIONS(5560), 1, + anon_sym_PIPE, + ACTIONS(5562), 1, + anon_sym_COMMA, + STATE(3159), 1, + aux_sym_slice_pattern_repeat1, + STATE(2573), 2, sym_line_comment, sym_block_comment, - [77943] = 8, + [79459] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5170), 1, - anon_sym_LBRACE, - ACTIONS(5603), 1, + ACTIONS(5564), 1, + anon_sym_RBRACK, + ACTIONS(3420), 2, anon_sym_SEMI, - STATE(1140), 1, - sym_block, - STATE(3777), 1, - sym_label, - STATE(2521), 2, + anon_sym_PLUS, + ACTIONS(4597), 2, + anon_sym_PIPE, + anon_sym_COMMA, + STATE(2574), 2, sym_line_comment, sym_block_comment, - [77969] = 4, + [79481] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2522), 2, + STATE(2575), 2, sym_line_comment, sym_block_comment, - ACTIONS(5605), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(3319), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, anon_sym_COMMA, - anon_sym_where, - [77987] = 8, + anon_sym_as, + [79499] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5170), 1, - anon_sym_LBRACE, - ACTIONS(5607), 1, - anon_sym_SEMI, - STATE(1144), 1, - sym_block, - STATE(3777), 1, - sym_label, - STATE(2523), 2, + STATE(2576), 2, sym_line_comment, sym_block_comment, - [78013] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(3512), 5, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(1521), 1, - sym_block, - STATE(3714), 1, - sym_label, - STATE(2524), 2, - sym_line_comment, - sym_block_comment, - [78039] = 8, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [79517] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(1510), 1, - sym_block, - STATE(3714), 1, - sym_label, - STATE(2525), 2, + STATE(2577), 2, sym_line_comment, sym_block_comment, - [78065] = 7, + ACTIONS(5567), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [79535] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5609), 1, - anon_sym_RPAREN, - ACTIONS(5612), 1, - anon_sym_COMMA, - STATE(3005), 1, - aux_sym_parameters_repeat1, - ACTIONS(4654), 2, + ACTIONS(5109), 1, anon_sym_COLON, - anon_sym_PIPE, - STATE(2526), 2, + ACTIONS(5461), 1, + anon_sym_GT, + ACTIONS(5463), 1, + anon_sym_COMMA, + STATE(2934), 1, + aux_sym_type_arguments_repeat1, + STATE(3015), 1, + sym_trait_bounds, + STATE(2578), 2, sym_line_comment, sym_block_comment, - [78089] = 6, + [79561] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5617), 1, - anon_sym_COLON_COLON, - ACTIONS(5619), 1, + ACTIONS(5546), 1, anon_sym_as, - STATE(2527), 2, + ACTIONS(5569), 1, + anon_sym_COLON_COLON, + STATE(2579), 2, sym_line_comment, sym_block_comment, - ACTIONS(5615), 3, + ACTIONS(5542), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [78111] = 6, + [79583] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3475), 1, - anon_sym_PLUS, - ACTIONS(4654), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5621), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2528), 2, + ACTIONS(3849), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + STATE(2580), 2, sym_line_comment, sym_block_comment, - [78133] = 4, + ACTIONS(4800), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [79603] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2529), 2, + STATE(2581), 2, sym_line_comment, sym_block_comment, - ACTIONS(5624), 5, + ACTIONS(3500), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_EQ, - anon_sym_COMMA, anon_sym_where, - [78151] = 8, + [79621] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3084), 1, - anon_sym_SQUOTE, - ACTIONS(5626), 1, - sym_identifier, - ACTIONS(5628), 1, - anon_sym_GT, - ACTIONS(5630), 1, - anon_sym_COMMA, - STATE(3035), 1, - sym_lifetime, - STATE(2530), 2, + ACTIONS(3927), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + STATE(2582), 2, sym_line_comment, sym_block_comment, - [78177] = 7, + ACTIONS(4800), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [79641] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4316), 1, - anon_sym_LBRACE, - ACTIONS(5308), 1, - anon_sym_STAR, - STATE(3139), 1, - sym_use_list, - ACTIONS(5306), 2, - sym_identifier, - sym_super, - STATE(2531), 2, + STATE(2583), 2, sym_line_comment, sym_block_comment, - [78201] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4178), 1, + ACTIONS(3545), 5, anon_sym_LPAREN, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4678), 1, + anon_sym_EQ_GT, + anon_sym_PIPE, anon_sym_COLON_COLON, - STATE(1708), 1, - sym_parameters, - STATE(2027), 1, - sym_type_arguments, - STATE(2532), 2, - sym_line_comment, - sym_block_comment, - [78227] = 4, + anon_sym_if, + [79659] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2533), 2, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + ACTIONS(5103), 1, + anon_sym_LBRACE, + ACTIONS(5571), 1, + anon_sym_SEMI, + STATE(712), 1, + sym_block, + STATE(3834), 1, + sym_label, + STATE(2584), 2, sym_line_comment, sym_block_comment, - ACTIONS(5632), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [78245] = 8, + [79685] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5164), 1, + ACTIONS(5109), 1, anon_sym_COLON, - ACTIONS(5514), 1, + ACTIONS(5401), 1, anon_sym_GT, - ACTIONS(5516), 1, + ACTIONS(5403), 1, anon_sym_COMMA, - STATE(3040), 1, - sym_trait_bounds, - STATE(3041), 1, + STATE(2938), 1, aux_sym_type_arguments_repeat1, - STATE(2534), 2, + STATE(3238), 1, + sym_trait_bounds, + STATE(2585), 2, sym_line_comment, sym_block_comment, - [78271] = 4, + [79711] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2535), 2, + STATE(2586), 2, sym_line_comment, sym_block_comment, - ACTIONS(5634), 5, + ACTIONS(5473), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_COMMA, - anon_sym_where, - [78289] = 7, + anon_sym_SQUOTE, + [79729] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5636), 1, - anon_sym_RPAREN, - ACTIONS(5638), 1, - anon_sym_COMMA, - STATE(3043), 1, - aux_sym_parameters_repeat1, - ACTIONS(4654), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2536), 2, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + ACTIONS(5155), 1, + anon_sym_LBRACE, + ACTIONS(5573), 1, + anon_sym_SEMI, + STATE(1266), 1, + sym_block, + STATE(3838), 1, + sym_label, + STATE(2587), 2, sym_line_comment, sym_block_comment, - [78313] = 8, + [79755] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3084), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - ACTIONS(5640), 1, - sym_identifier, - ACTIONS(5642), 1, - anon_sym_GT, - ACTIONS(5644), 1, - anon_sym_COMMA, - STATE(2886), 1, - sym_lifetime, - STATE(2537), 2, + ACTIONS(5103), 1, + anon_sym_LBRACE, + ACTIONS(5575), 1, + anon_sym_SEMI, + STATE(755), 1, + sym_block, + STATE(3834), 1, + sym_label, + STATE(2588), 2, sym_line_comment, sym_block_comment, - [78339] = 8, + [79781] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4674), 1, - anon_sym_LPAREN, - ACTIONS(4678), 1, - anon_sym_COLON_COLON, - STATE(2027), 1, - sym_type_arguments, - STATE(2402), 1, - sym_parameters, - STATE(2538), 2, + ACTIONS(5022), 1, + anon_sym_LT, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5577), 1, + anon_sym_EQ, + STATE(3133), 1, + sym_type_parameters, + STATE(3603), 1, + sym_where_clause, + STATE(2589), 2, + sym_line_comment, + sym_block_comment, + [79807] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + ACTIONS(5103), 1, + anon_sym_LBRACE, + ACTIONS(5579), 1, + anon_sym_SEMI, + STATE(559), 1, + sym_block, + STATE(3834), 1, + sym_label, + STATE(2590), 2, sym_line_comment, sym_block_comment, - [78365] = 7, + [79833] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1377), 1, + ACTIONS(5581), 1, anon_sym_RPAREN, - ACTIONS(5646), 1, + ACTIONS(5583), 1, anon_sym_COMMA, - STATE(3052), 1, + STATE(2976), 1, aux_sym_parameters_repeat1, - ACTIONS(4654), 2, + ACTIONS(4597), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(2539), 2, + STATE(2591), 2, sym_line_comment, sym_block_comment, - [78389] = 5, + [79857] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4654), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2540), 2, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + ACTIONS(5103), 1, + anon_sym_LBRACE, + ACTIONS(5585), 1, + anon_sym_SEMI, + STATE(545), 1, + sym_block, + STATE(3834), 1, + sym_label, + STATE(2592), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [78409] = 4, + [79883] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2541), 2, + ACTIONS(5546), 1, + anon_sym_as, + ACTIONS(5587), 1, + anon_sym_COLON_COLON, + STATE(2593), 2, sym_line_comment, sym_block_comment, - ACTIONS(5648), 5, + ACTIONS(5542), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_where, - [78427] = 8, + [79905] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, - anon_sym_LPAREN, - ACTIONS(4672), 1, + ACTIONS(4615), 1, anon_sym_LT2, - ACTIONS(4678), 1, + ACTIONS(4617), 1, + anon_sym_LPAREN, + ACTIONS(4621), 1, anon_sym_COLON_COLON, - STATE(1335), 1, - sym_parameters, - STATE(2027), 1, + STATE(2083), 1, sym_type_arguments, - STATE(2542), 2, + STATE(2514), 1, + sym_parameters, + STATE(2594), 2, sym_line_comment, sym_block_comment, - [78453] = 6, + [79931] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5652), 1, - anon_sym_COLON_COLON, - ACTIONS(5654), 1, - anon_sym_as, - STATE(2543), 2, + ACTIONS(339), 1, + anon_sym_LBRACE, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + STATE(1541), 1, + sym_block, + STATE(3775), 1, + sym_label, + STATE(2595), 2, + sym_line_comment, + sym_block_comment, + [79957] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2596), 2, sym_line_comment, sym_block_comment, - ACTIONS(5650), 3, + ACTIONS(5589), 5, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_EQ, anon_sym_COMMA, - [78475] = 5, + anon_sym_where, + [79975] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2544), 2, + ACTIONS(339), 1, + anon_sym_LBRACE, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + STATE(1570), 1, + sym_block, + STATE(3775), 1, + sym_label, + STATE(2597), 2, sym_line_comment, sym_block_comment, - ACTIONS(3996), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [78495] = 8, + [80001] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - ACTIONS(5214), 1, + ACTIONS(5155), 1, anon_sym_LBRACE, - ACTIONS(5656), 1, + ACTIONS(5591), 1, anon_sym_SEMI, - STATE(519), 1, + STATE(1288), 1, sym_block, - STATE(3774), 1, + STATE(3838), 1, sym_label, - STATE(2545), 2, + STATE(2598), 2, sym_line_comment, sym_block_comment, - [78521] = 8, + [80027] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5164), 1, - anon_sym_COLON, - ACTIONS(5540), 1, - anon_sym_GT, - ACTIONS(5542), 1, - anon_sym_COMMA, - STATE(3075), 1, - sym_trait_bounds, - STATE(3076), 1, - aux_sym_type_arguments_repeat1, - STATE(2546), 2, + STATE(2599), 2, sym_line_comment, sym_block_comment, - [78547] = 4, + ACTIONS(3553), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [80045] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2547), 2, + STATE(2600), 2, sym_line_comment, sym_block_comment, - ACTIONS(3390), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [78565] = 8, + ACTIONS(3561), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [80063] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5214), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(5658), 1, - anon_sym_SEMI, - STATE(529), 1, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + STATE(1559), 1, sym_block, - STATE(3774), 1, + STATE(3775), 1, sym_label, - STATE(2548), 2, - sym_line_comment, - sym_block_comment, - [78591] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5029), 1, - anon_sym_PIPE, - ACTIONS(5660), 1, - anon_sym_SEMI, - ACTIONS(5662), 1, - anon_sym_COLON, - ACTIONS(5664), 1, - anon_sym_EQ, - ACTIONS(5666), 1, - anon_sym_else, - STATE(2549), 2, + STATE(2601), 2, sym_line_comment, sym_block_comment, - [78617] = 4, + [80089] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2550), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5668), 5, - anon_sym_SEMI, + ACTIONS(4263), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - [78635] = 4, + ACTIONS(5595), 1, + anon_sym_STAR, + STATE(3062), 1, + sym_use_list, + ACTIONS(5593), 2, + sym_identifier, + sym_super, + STATE(2602), 2, + sym_line_comment, + sym_block_comment, + [80113] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2551), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5670), 5, - anon_sym_SEMI, + ACTIONS(417), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(3383), 1, anon_sym_SQUOTE, - [78653] = 8, + STATE(1966), 1, + sym_block, + STATE(3841), 1, + sym_label, + STATE(2603), 2, + sym_line_comment, + sym_block_comment, + [80139] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(5672), 1, - sym_identifier, - ACTIONS(5674), 1, - sym_integer_literal, - STATE(1093), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1254), 1, - sym_attribute_item, - STATE(2552), 2, + ACTIONS(1279), 1, + anon_sym_RPAREN, + ACTIONS(5597), 1, + anon_sym_COMMA, + STATE(2978), 1, + aux_sym_parameters_repeat1, + ACTIONS(4597), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2604), 2, sym_line_comment, sym_block_comment, - [78679] = 4, + [80163] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2553), 2, + ACTIONS(417), 1, + anon_sym_LBRACE, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + STATE(1777), 1, + sym_block, + STATE(3841), 1, + sym_label, + STATE(2605), 2, sym_line_comment, sym_block_comment, - ACTIONS(3570), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [78697] = 7, + [80189] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4316), 1, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + ACTIONS(5155), 1, anon_sym_LBRACE, - ACTIONS(5678), 1, - anon_sym_STAR, - STATE(2999), 1, - sym_use_list, - ACTIONS(5676), 2, - sym_identifier, - sym_super, - STATE(2554), 2, + ACTIONS(5599), 1, + anon_sym_SEMI, + STATE(1184), 1, + sym_block, + STATE(3838), 1, + sym_label, + STATE(2606), 2, sym_line_comment, sym_block_comment, - [78721] = 4, + [80215] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2555), 2, + ACTIONS(5601), 1, + anon_sym_RPAREN, + ACTIONS(5604), 1, + anon_sym_COMMA, + STATE(2958), 1, + aux_sym_parameters_repeat1, + ACTIONS(4597), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2607), 2, sym_line_comment, sym_block_comment, - ACTIONS(5680), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [78739] = 8, + [80239] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(1926), 1, - sym_block, - STATE(3779), 1, - sym_label, - STATE(2556), 2, + ACTIONS(4970), 1, + anon_sym_PIPE, + ACTIONS(5607), 1, + anon_sym_SEMI, + ACTIONS(5609), 1, + anon_sym_COLON, + ACTIONS(5611), 1, + anon_sym_EQ, + ACTIONS(5613), 1, + anon_sym_else, + STATE(2608), 2, sym_line_comment, sym_block_comment, - [78765] = 8, + [80265] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - ACTIONS(5214), 1, + ACTIONS(5103), 1, anon_sym_LBRACE, - ACTIONS(5682), 1, + ACTIONS(5615), 1, anon_sym_SEMI, STATE(734), 1, sym_block, - STATE(3774), 1, + STATE(3834), 1, sym_label, - STATE(2557), 2, + STATE(2609), 2, sym_line_comment, sym_block_comment, - [78791] = 8, + [80291] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5214), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(5684), 1, - anon_sym_SEMI, - STATE(624), 1, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + STATE(1477), 1, sym_block, - STATE(3774), 1, + STATE(3775), 1, sym_label, - STATE(2558), 2, + STATE(2610), 2, sym_line_comment, sym_block_comment, - [78817] = 4, + [80317] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2559), 2, + STATE(2611), 2, sym_line_comment, sym_block_comment, - ACTIONS(5444), 5, + ACTIONS(3504), 5, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_COLON, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - [78835] = 7, + anon_sym_where, + [80335] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1371), 1, - anon_sym_RPAREN, - ACTIONS(5686), 1, - anon_sym_COMMA, - STATE(3113), 1, - aux_sym_parameters_repeat1, - ACTIONS(4654), 2, + ACTIONS(4794), 1, + anon_sym_EQ, + ACTIONS(5109), 1, anon_sym_COLON, - anon_sym_PIPE, - STATE(2560), 2, + STATE(3155), 1, + sym_trait_bounds, + ACTIONS(4796), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2612), 2, sym_line_comment, sym_block_comment, - [78859] = 4, + [80359] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2561), 2, + STATE(2613), 2, sym_line_comment, sym_block_comment, - ACTIONS(5688), 5, + ACTIONS(5617), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [78877] = 6, + [80377] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5619), 1, - anon_sym_as, - ACTIONS(5690), 1, - anon_sym_COLON_COLON, - STATE(2562), 2, + STATE(2614), 2, sym_line_comment, sym_block_comment, - ACTIONS(5615), 3, + ACTIONS(5619), 5, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_EQ, anon_sym_COMMA, - [78899] = 4, + anon_sym_where, + [80395] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2563), 2, + STATE(2615), 2, sym_line_comment, sym_block_comment, - ACTIONS(5692), 5, + ACTIONS(5621), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [78917] = 5, + [80413] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3984), 2, - anon_sym_LPAREN, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(4621), 1, anon_sym_COLON_COLON, - STATE(2564), 2, + ACTIONS(4792), 1, + anon_sym_COLON, + STATE(2083), 1, + sym_type_arguments, + STATE(2656), 1, + sym_trait_bounds, + STATE(2616), 2, sym_line_comment, sym_block_comment, - ACTIONS(4845), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [78937] = 8, + [80439] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - ACTIONS(5214), 1, + ACTIONS(5103), 1, anon_sym_LBRACE, - ACTIONS(5694), 1, + ACTIONS(5623), 1, anon_sym_SEMI, - STATE(699), 1, + STATE(683), 1, sym_block, - STATE(3774), 1, + STATE(3834), 1, sym_label, - STATE(2565), 2, + STATE(2617), 2, sym_line_comment, sym_block_comment, - [78963] = 7, + [80465] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5696), 1, + ACTIONS(1277), 1, anon_sym_RPAREN, - ACTIONS(5698), 1, + ACTIONS(5625), 1, anon_sym_COMMA, - STATE(2919), 1, + STATE(3054), 1, aux_sym_parameters_repeat1, - ACTIONS(4654), 2, + ACTIONS(4597), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(2566), 2, + STATE(2618), 2, sym_line_comment, sym_block_comment, - [78987] = 8, + [80489] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(1849), 1, - sym_block, - STATE(3779), 1, - sym_label, - STATE(2567), 2, + STATE(2619), 2, sym_line_comment, sym_block_comment, - [79013] = 7, + ACTIONS(5627), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [80507] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4833), 1, + STATE(2620), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5629), 5, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_EQ, - ACTIONS(5164), 1, - anon_sym_COLON, - STATE(3144), 1, - sym_trait_bounds, - ACTIONS(4835), 2, - anon_sym_GT, anon_sym_COMMA, - STATE(2568), 2, + anon_sym_where, + [80525] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + ACTIONS(5155), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_SEMI, + STATE(1333), 1, + sym_block, + STATE(3838), 1, + sym_label, + STATE(2621), 2, sym_line_comment, sym_block_comment, - [79037] = 8, + [80551] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5069), 1, - anon_sym_LT, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5700), 1, - anon_sym_EQ, - STATE(3182), 1, - sym_type_parameters, - STATE(3793), 1, - sym_where_clause, - STATE(2569), 2, + ACTIONS(5633), 1, + anon_sym_RBRACK, + ACTIONS(3843), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4988), 2, + anon_sym_PIPE, + anon_sym_COMMA, + STATE(2622), 2, sym_line_comment, sym_block_comment, - [79063] = 8, + [80573] = 8, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5170), 1, - anon_sym_LBRACE, - ACTIONS(5702), 1, - anon_sym_SEMI, - STATE(1157), 1, - sym_block, - STATE(3777), 1, - sym_label, - STATE(2570), 2, + ACTIONS(4842), 1, + sym_crate, + ACTIONS(4850), 1, + sym_identifier, + STATE(3502), 1, + sym_field_declaration, + STATE(3848), 1, + sym_visibility_modifier, + STATE(2623), 2, sym_line_comment, sym_block_comment, - [79089] = 8, + [80599] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5214), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - ACTIONS(5704), 1, - anon_sym_SEMI, - STATE(748), 1, - sym_block, - STATE(3774), 1, - sym_label, - STATE(2571), 2, + ACTIONS(5265), 1, + anon_sym_STAR, + STATE(3090), 1, + sym_use_list, + ACTIONS(5263), 2, + sym_identifier, + sym_super, + STATE(2624), 2, sym_line_comment, sym_block_comment, - [79115] = 6, + [80623] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3996), 1, - anon_sym_PLUS, - ACTIONS(5043), 2, + ACTIONS(5109), 1, anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5706), 2, - anon_sym_RPAREN, + ACTIONS(5387), 1, + anon_sym_GT, + ACTIONS(5389), 1, anon_sym_COMMA, - STATE(2572), 2, + STATE(3120), 1, + sym_trait_bounds, + STATE(3124), 1, + aux_sym_type_arguments_repeat1, + STATE(2625), 2, sym_line_comment, sym_block_comment, - [79137] = 8, + [80649] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4678), 1, - anon_sym_COLON_COLON, - ACTIONS(4831), 1, + ACTIONS(3420), 1, + anon_sym_PLUS, + ACTIONS(4597), 2, anon_sym_COLON, - STATE(2027), 1, - sym_type_arguments, - STATE(2551), 1, - sym_trait_bounds, - STATE(2573), 2, + anon_sym_PIPE, + ACTIONS(5564), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2626), 2, sym_line_comment, sym_block_comment, - [79163] = 4, + [80671] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2574), 2, + STATE(2627), 2, sym_line_comment, sym_block_comment, - ACTIONS(5709), 5, + ACTIONS(5636), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [79181] = 4, + [80689] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2575), 2, + STATE(2628), 2, sym_line_comment, sym_block_comment, - ACTIONS(3798), 5, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_COLON_COLON, - anon_sym_if, - [79199] = 8, + ACTIONS(5638), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [80707] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5049), 1, - anon_sym_RPAREN, - ACTIONS(5711), 1, - anon_sym_COLON, - ACTIONS(5713), 1, - anon_sym_PIPE, - ACTIONS(5715), 1, - anon_sym_COMMA, - STATE(3047), 1, - aux_sym_closure_parameters_repeat1, - STATE(2576), 2, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + ACTIONS(5103), 1, + anon_sym_LBRACE, + ACTIONS(5640), 1, + anon_sym_SEMI, + STATE(739), 1, + sym_block, + STATE(3834), 1, + sym_label, + STATE(2629), 2, sym_line_comment, sym_block_comment, - [79225] = 7, + [80733] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4666), 1, - anon_sym_DOT_DOT, - ACTIONS(5416), 1, - anon_sym_COLON, - ACTIONS(5418), 1, - anon_sym_COLON_COLON, - ACTIONS(4668), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2577), 2, + ACTIONS(5642), 1, + anon_sym_STAR_SLASH, + ACTIONS(5644), 1, + sym__outer_block_doc_comment_marker, + ACTIONS(5646), 1, + sym__inner_block_doc_comment_marker, + ACTIONS(5648), 1, + sym__block_comment_content, + STATE(3268), 1, + sym__block_doc_comment_marker, + STATE(2630), 2, sym_line_comment, sym_block_comment, - [79249] = 8, + [80759] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - ACTIONS(5214), 1, + ACTIONS(5103), 1, anon_sym_LBRACE, - ACTIONS(5717), 1, + ACTIONS(5650), 1, anon_sym_SEMI, - STATE(781), 1, + STATE(797), 1, sym_block, - STATE(3774), 1, + STATE(3834), 1, sym_label, - STATE(2578), 2, + STATE(2631), 2, sym_line_comment, sym_block_comment, - [79275] = 7, + [80785] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5164), 1, + ACTIONS(5560), 1, + anon_sym_PIPE, + ACTIONS(5652), 1, + anon_sym_SEMI, + ACTIONS(5654), 1, anon_sym_COLON, - STATE(3021), 1, - aux_sym_for_lifetimes_repeat1, - STATE(3402), 1, - sym_trait_bounds, - ACTIONS(5719), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2579), 2, + ACTIONS(5656), 1, + anon_sym_EQ, + ACTIONS(5658), 1, + anon_sym_else, + STATE(2632), 2, sym_line_comment, sym_block_comment, - [79299] = 8, + [80811] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3084), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - ACTIONS(5721), 1, - sym_identifier, - ACTIONS(5723), 1, - anon_sym_GT, - ACTIONS(5725), 1, - anon_sym_COMMA, - STATE(2878), 1, - sym_lifetime, - STATE(2580), 2, + ACTIONS(5155), 1, + anon_sym_LBRACE, + ACTIONS(5660), 1, + anon_sym_SEMI, + STATE(1337), 1, + sym_block, + STATE(3838), 1, + sym_label, + STATE(2633), 2, sym_line_comment, sym_block_comment, - [79325] = 6, + [80837] = 8, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5621), 1, - anon_sym_RBRACK, - ACTIONS(3475), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4654), 2, - anon_sym_PIPE, - anon_sym_COMMA, - STATE(2581), 2, + ACTIONS(4842), 1, + sym_crate, + ACTIONS(4850), 1, + sym_identifier, + STATE(3011), 1, + sym_field_declaration, + STATE(3848), 1, + sym_visibility_modifier, + STATE(2634), 2, sym_line_comment, sym_block_comment, - [79347] = 8, + [80863] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - ACTIONS(5214), 1, + ACTIONS(5103), 1, anon_sym_LBRACE, - ACTIONS(5727), 1, + ACTIONS(5662), 1, anon_sym_SEMI, - STATE(524), 1, + STATE(698), 1, sym_block, - STATE(3774), 1, + STATE(3834), 1, sym_label, - STATE(2582), 2, + STATE(2635), 2, sym_line_comment, sym_block_comment, - [79373] = 8, + [80889] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5214), 1, - anon_sym_LBRACE, - ACTIONS(5729), 1, - anon_sym_SEMI, - STATE(665), 1, - sym_block, - STATE(3774), 1, - sym_label, - STATE(2583), 2, + ACTIONS(4988), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2636), 2, sym_line_comment, sym_block_comment, - [79399] = 4, + ACTIONS(3843), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [80909] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2584), 2, + STATE(2637), 2, sym_line_comment, sym_block_comment, - ACTIONS(3624), 5, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_COLON_COLON, - anon_sym_if, - [79417] = 4, + ACTIONS(5664), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [80927] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2585), 2, + STATE(2638), 2, sym_line_comment, sym_block_comment, - ACTIONS(3574), 5, + ACTIONS(5666), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, anon_sym_EQ, + anon_sym_COMMA, anon_sym_where, - [79435] = 8, + [80945] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4609), 1, + anon_sym_DOT_DOT, + ACTIONS(5303), 1, + anon_sym_COLON, + ACTIONS(5327), 1, + anon_sym_COLON_COLON, + ACTIONS(4611), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2639), 2, + sym_line_comment, + sym_block_comment, + [80969] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - ACTIONS(5214), 1, + ACTIONS(5155), 1, anon_sym_LBRACE, - ACTIONS(5731), 1, + ACTIONS(5668), 1, anon_sym_SEMI, - STATE(507), 1, + STATE(1361), 1, sym_block, - STATE(3774), 1, + STATE(3838), 1, sym_label, - STATE(2586), 2, + STATE(2640), 2, sym_line_comment, sym_block_comment, - [79461] = 4, + [80995] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2587), 2, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + ACTIONS(5103), 1, + anon_sym_LBRACE, + ACTIONS(5670), 1, + anon_sym_SEMI, + STATE(620), 1, + sym_block, + STATE(3834), 1, + sym_label, + STATE(2641), 2, sym_line_comment, sym_block_comment, - ACTIONS(3582), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [79479] = 6, + [81021] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5706), 1, - anon_sym_RBRACK, - ACTIONS(3996), 2, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + ACTIONS(5155), 1, + anon_sym_LBRACE, + ACTIONS(5672), 1, anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(5043), 2, + STATE(1369), 1, + sym_block, + STATE(3838), 1, + sym_label, + STATE(2642), 2, + sym_line_comment, + sym_block_comment, + [81047] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4926), 1, + anon_sym_RPAREN, + ACTIONS(5674), 1, + anon_sym_COLON, + ACTIONS(5676), 1, anon_sym_PIPE, + ACTIONS(5678), 1, anon_sym_COMMA, - STATE(2588), 2, + STATE(3235), 1, + aux_sym_closure_parameters_repeat1, + STATE(2643), 2, + sym_line_comment, + sym_block_comment, + [81073] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(2287), 1, + anon_sym_SQUOTE, + ACTIONS(5680), 1, + sym_identifier, + ACTIONS(5682), 1, + anon_sym_GT, + ACTIONS(5684), 1, + anon_sym_COMMA, + STATE(3046), 1, + sym_lifetime, + STATE(2644), 2, sym_line_comment, sym_block_comment, - [79501] = 8, + [81099] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5733), 1, + STATE(2645), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3518), 5, anon_sym_SEMI, - ACTIONS(5735), 1, + anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(5737), 1, - anon_sym_PIPE, - ACTIONS(5739), 1, anon_sym_EQ, - ACTIONS(5741), 1, - anon_sym_else, - STATE(2589), 2, - sym_line_comment, - sym_block_comment, - [79527] = 8, + anon_sym_where, + [81117] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - ACTIONS(5214), 1, + ACTIONS(5155), 1, anon_sym_LBRACE, - ACTIONS(5743), 1, + ACTIONS(5686), 1, anon_sym_SEMI, - STATE(755), 1, + STATE(1379), 1, sym_block, - STATE(3774), 1, + STATE(3838), 1, sym_label, - STATE(2590), 2, + STATE(2646), 2, sym_line_comment, sym_block_comment, - [79553] = 7, + [81143] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1365), 1, - anon_sym_RPAREN, - ACTIONS(5745), 1, - anon_sym_COMMA, - STATE(2955), 1, - aux_sym_parameters_repeat1, - ACTIONS(4654), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2591), 2, + STATE(2647), 2, sym_line_comment, sym_block_comment, - [79577] = 4, + ACTIONS(5688), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [81161] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2592), 2, + STATE(2648), 2, sym_line_comment, sym_block_comment, - ACTIONS(5747), 5, + ACTIONS(5690), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_COMMA, - anon_sym_where, - [79595] = 8, + anon_sym_SQUOTE, + [81179] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + ACTIONS(5103), 1, anon_sym_LBRACE, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(3448), 1, + ACTIONS(5692), 1, + anon_sym_SEMI, + STATE(653), 1, + sym_block, + STATE(3834), 1, + sym_label, + STATE(2649), 2, + sym_line_comment, + sym_block_comment, + [81205] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3383), 1, anon_sym_SQUOTE, - STATE(1732), 1, + ACTIONS(5155), 1, + anon_sym_LBRACE, + ACTIONS(5694), 1, + anon_sym_SEMI, + STATE(1384), 1, sym_block, - STATE(3779), 1, + STATE(3838), 1, sym_label, - STATE(2593), 2, + STATE(2650), 2, sym_line_comment, sym_block_comment, - [79621] = 4, + [81231] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2594), 2, + ACTIONS(4609), 1, + anon_sym_DOT_DOT, + ACTIONS(5325), 1, + anon_sym_COLON, + ACTIONS(5327), 1, + anon_sym_COLON_COLON, + ACTIONS(4611), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2651), 2, sym_line_comment, sym_block_comment, - ACTIONS(5749), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [79639] = 8, + [81255] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - ACTIONS(5170), 1, + ACTIONS(5155), 1, anon_sym_LBRACE, - ACTIONS(5751), 1, + ACTIONS(5696), 1, anon_sym_SEMI, - STATE(1217), 1, + STATE(1388), 1, sym_block, - STATE(3777), 1, + STATE(3838), 1, sym_label, - STATE(2595), 2, + STATE(2652), 2, sym_line_comment, sym_block_comment, - [79665] = 8, + [81281] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_PIPE, - ACTIONS(5753), 1, - anon_sym_RPAREN, - ACTIONS(5755), 1, + ACTIONS(3103), 1, + anon_sym_PLUS, + ACTIONS(5109), 1, anon_sym_COLON, - ACTIONS(5757), 1, + STATE(3500), 1, + sym_trait_bounds, + ACTIONS(5698), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(2969), 1, - aux_sym_slice_pattern_repeat1, - STATE(2596), 2, + STATE(2653), 2, sym_line_comment, sym_block_comment, - [79691] = 7, + [81305] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5759), 1, + ACTIONS(5700), 1, anon_sym_RPAREN, - ACTIONS(5761), 1, + ACTIONS(5702), 1, anon_sym_COMMA, - STATE(3005), 1, + STATE(2958), 1, aux_sym_parameters_repeat1, - ACTIONS(4654), 2, + ACTIONS(4597), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(2597), 2, + STATE(2654), 2, sym_line_comment, sym_block_comment, - [79715] = 4, + [81329] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2598), 2, + STATE(2655), 2, sym_line_comment, sym_block_comment, - ACTIONS(3684), 5, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_COLON_COLON, - anon_sym_if, - [79733] = 8, + ACTIONS(5704), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [81347] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5763), 1, - anon_sym_STAR_SLASH, - ACTIONS(5765), 1, - sym__outer_block_doc_comment_marker, - ACTIONS(5767), 1, - sym__inner_block_doc_comment_marker, - ACTIONS(5769), 1, - sym__block_comment_content, - STATE(3248), 1, - sym__block_doc_comment_marker, - STATE(2599), 2, + STATE(2656), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5706), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + [81365] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5109), 1, + anon_sym_COLON, + STATE(3140), 1, + aux_sym_for_lifetimes_repeat1, + STATE(3457), 1, + sym_trait_bounds, + ACTIONS(5708), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2657), 2, sym_line_comment, sym_block_comment, - [79759] = 8, + [81389] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(2287), 1, anon_sym_SQUOTE, - ACTIONS(5170), 1, + ACTIONS(5710), 1, + sym_identifier, + ACTIONS(5712), 1, + anon_sym_GT, + ACTIONS(5714), 1, + anon_sym_COMMA, + STATE(2950), 1, + sym_lifetime, + STATE(2658), 2, + sym_line_comment, + sym_block_comment, + [81415] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(417), 1, anon_sym_LBRACE, - ACTIONS(5771), 1, - anon_sym_SEMI, - STATE(1259), 1, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + STATE(1826), 1, sym_block, - STATE(3777), 1, + STATE(3841), 1, sym_label, - STATE(2600), 2, + STATE(2659), 2, sym_line_comment, sym_block_comment, - [79785] = 4, + [81441] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2601), 2, + ACTIONS(3843), 1, + anon_sym_PLUS, + ACTIONS(4988), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5633), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2660), 2, sym_line_comment, sym_block_comment, - ACTIONS(3782), 5, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_COLON_COLON, - anon_sym_if, - [79803] = 8, + [81463] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5069), 1, + ACTIONS(5022), 1, anon_sym_LT, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5773), 1, + ACTIONS(5716), 1, anon_sym_EQ, - STATE(3176), 1, + STATE(3223), 1, sym_type_parameters, - STATE(3755), 1, + STATE(3815), 1, sym_where_clause, - STATE(2602), 2, + STATE(2661), 2, sym_line_comment, sym_block_comment, - [79829] = 8, + [81489] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5029), 1, + ACTIONS(5560), 1, anon_sym_PIPE, - ACTIONS(5775), 1, + ACTIONS(5718), 1, anon_sym_SEMI, - ACTIONS(5777), 1, + ACTIONS(5720), 1, anon_sym_COLON, - ACTIONS(5779), 1, + ACTIONS(5722), 1, anon_sym_EQ, - ACTIONS(5781), 1, + ACTIONS(5724), 1, anon_sym_else, - STATE(2603), 2, + STATE(2662), 2, sym_line_comment, sym_block_comment, - [79855] = 8, + [81515] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(1738), 1, - sym_block, - STATE(3779), 1, - sym_label, - STATE(2604), 2, + ACTIONS(4061), 1, + anon_sym_LPAREN, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(4621), 1, + anon_sym_COLON_COLON, + STATE(1715), 1, + sym_parameters, + STATE(2083), 1, + sym_type_arguments, + STATE(2663), 2, sym_line_comment, sym_block_comment, - [79881] = 5, + [81541] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4028), 2, - anon_sym_LPAREN, + ACTIONS(5728), 1, anon_sym_COLON_COLON, - STATE(2605), 2, + ACTIONS(5730), 1, + anon_sym_as, + STATE(2664), 2, sym_line_comment, sym_block_comment, - ACTIONS(4845), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [79901] = 8, + ACTIONS(5726), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [81563] = 8, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4842), 1, + sym_crate, + ACTIONS(4850), 1, + sym_identifier, + STATE(3025), 1, + sym_field_declaration, + STATE(3848), 1, + sym_visibility_modifier, + STATE(2665), 2, + sym_line_comment, + sym_block_comment, + [81589] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(2287), 1, anon_sym_SQUOTE, - ACTIONS(5214), 1, - anon_sym_LBRACE, - ACTIONS(5783), 1, - anon_sym_SEMI, - STATE(561), 1, - sym_block, - STATE(3774), 1, - sym_label, - STATE(2606), 2, + ACTIONS(5732), 1, + sym_identifier, + ACTIONS(5734), 1, + anon_sym_GT, + ACTIONS(5736), 1, + anon_sym_COMMA, + STATE(3012), 1, + sym_lifetime, + STATE(2666), 2, sym_line_comment, sym_block_comment, - [79927] = 6, + [81615] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5619), 1, - anon_sym_as, - ACTIONS(5785), 1, + ACTIONS(3103), 1, + anon_sym_PLUS, + ACTIONS(5109), 1, + anon_sym_COLON, + STATE(3457), 1, + sym_trait_bounds, + ACTIONS(5708), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2667), 2, + sym_line_comment, + sym_block_comment, + [81639] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(4617), 1, + anon_sym_LPAREN, + ACTIONS(4621), 1, anon_sym_COLON_COLON, - STATE(2607), 2, + STATE(2083), 1, + sym_type_arguments, + STATE(2159), 1, + sym_parameters, + STATE(2668), 2, sym_line_comment, sym_block_comment, - ACTIONS(5615), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [79949] = 8, + [81665] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_PIPE, - ACTIONS(5787), 1, - anon_sym_SEMI, - ACTIONS(5789), 1, - anon_sym_COLON, - ACTIONS(5791), 1, - anon_sym_EQ, - ACTIONS(5793), 1, - anon_sym_else, - STATE(2608), 2, + STATE(2669), 2, sym_line_comment, sym_block_comment, - [79975] = 8, + ACTIONS(3529), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [81683] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - ACTIONS(5170), 1, + ACTIONS(5103), 1, anon_sym_LBRACE, - ACTIONS(5795), 1, + ACTIONS(5738), 1, anon_sym_SEMI, - STATE(1297), 1, + STATE(661), 1, sym_block, - STATE(3777), 1, + STATE(3834), 1, sym_label, - STATE(2609), 2, + STATE(2670), 2, sym_line_comment, sym_block_comment, - [80001] = 8, + [81709] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4674), 1, - anon_sym_LPAREN, - ACTIONS(4678), 1, - anon_sym_COLON_COLON, - STATE(2027), 1, - sym_type_arguments, - STATE(2100), 1, - sym_parameters, - STATE(2610), 2, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + ACTIONS(5155), 1, + anon_sym_LBRACE, + ACTIONS(5740), 1, + anon_sym_SEMI, + STATE(1319), 1, + sym_block, + STATE(3838), 1, + sym_label, + STATE(2671), 2, sym_line_comment, sym_block_comment, - [80027] = 7, - ACTIONS(103), 1, + [81735] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3210), 1, - anon_sym_PLUS, - ACTIONS(5164), 1, - anon_sym_COLON, - STATE(3376), 1, - sym_trait_bounds, - ACTIONS(5797), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2611), 2, + ACTIONS(5742), 1, + aux_sym_token_repetition_pattern_token1, + STATE(2672), 2, sym_line_comment, sym_block_comment, - [80051] = 7, + ACTIONS(5744), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [81754] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3210), 1, - anon_sym_PLUS, - ACTIONS(5164), 1, - anon_sym_COLON, - STATE(3402), 1, - sym_trait_bounds, - ACTIONS(5719), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2612), 2, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5399), 1, + anon_sym_LBRACE, + STATE(1458), 1, + sym_enum_variant_list, + STATE(3285), 1, + sym_where_clause, + STATE(2673), 2, sym_line_comment, sym_block_comment, - [80075] = 4, + [81777] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2613), 2, + ACTIONS(4617), 1, + anon_sym_LPAREN, + ACTIONS(5022), 1, + anon_sym_LT, + STATE(2344), 1, + sym_parameters, + STATE(3448), 1, + sym_type_parameters, + STATE(2674), 2, sym_line_comment, sym_block_comment, - ACTIONS(5799), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [80093] = 4, + [81800] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2614), 2, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5746), 1, + anon_sym_SEMI, + STATE(3747), 1, + sym_where_clause, + STATE(2675), 2, sym_line_comment, sym_block_comment, - ACTIONS(5801), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [80111] = 8, + [81823] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5164), 1, - anon_sym_COLON, - ACTIONS(5451), 1, - anon_sym_GT, - ACTIONS(5453), 1, - anon_sym_COMMA, - STATE(2912), 1, - sym_trait_bounds, - STATE(2913), 1, - aux_sym_type_arguments_repeat1, - STATE(2615), 2, + ACTIONS(4615), 1, + anon_sym_LT2, + STATE(3782), 1, + sym_type_arguments, + ACTIONS(5263), 2, + sym_identifier, + sym_super, + STATE(2676), 2, sym_line_comment, sym_block_comment, - [80137] = 7, + [81844] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4615), 1, anon_sym_LT2, - ACTIONS(5803), 1, - anon_sym_COLON_COLON, - ACTIONS(5805), 1, - anon_sym_for, - STATE(2027), 1, + STATE(3613), 1, sym_type_arguments, - STATE(2616), 2, + ACTIONS(5263), 2, + sym_identifier, + sym_super, + STATE(2677), 2, sym_line_comment, sym_block_comment, - [80160] = 7, + [81865] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5306), 1, - sym_super, - ACTIONS(5807), 1, - sym_identifier, - STATE(3591), 1, - sym_type_arguments, - STATE(2617), 2, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5046), 1, + anon_sym_LBRACE, + STATE(1473), 1, + sym_declaration_list, + STATE(3306), 1, + sym_where_clause, + STATE(2678), 2, sym_line_comment, sym_block_comment, - [80183] = 7, + [81888] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1383), 1, + ACTIONS(5748), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(482), 1, - sym_block, - STATE(3778), 1, - sym_label, - STATE(2618), 2, + ACTIONS(5750), 1, + anon_sym_for, + ACTIONS(5752), 1, + anon_sym_loop, + ACTIONS(5754), 1, + anon_sym_while, + STATE(2679), 2, sym_line_comment, sym_block_comment, - [80206] = 7, - ACTIONS(27), 1, - anon_sym_PIPE, + [81911] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5079), 1, - anon_sym_move, - ACTIONS(5809), 1, - anon_sym_async, - STATE(233), 1, - sym_closure_parameters, - STATE(2619), 2, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5034), 1, + anon_sym_LBRACE, + STATE(1158), 1, + sym_field_declaration_list, + STATE(3311), 1, + sym_where_clause, + STATE(2680), 2, sym_line_comment, sym_block_comment, - [80229] = 7, + [81934] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5093), 1, + ACTIONS(5417), 1, anon_sym_LBRACE, - STATE(660), 1, - sym_declaration_list, - STATE(3284), 1, + STATE(587), 1, + sym_enum_variant_list, + STATE(3290), 1, sym_where_clause, - STATE(2620), 2, + STATE(2681), 2, sym_line_comment, sym_block_comment, - [80252] = 7, + [81957] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3438), 1, + ACTIONS(4615), 1, anon_sym_LT2, - ACTIONS(5306), 1, - sym_super, - ACTIONS(5811), 1, - sym_identifier, - STATE(1620), 1, + ACTIONS(4629), 1, + anon_sym_BANG, + ACTIONS(4691), 1, + anon_sym_COLON_COLON, + STATE(2079), 1, sym_type_arguments, - STATE(2621), 2, + STATE(2682), 2, sym_line_comment, sym_block_comment, - [80275] = 7, + [81980] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5813), 1, - anon_sym_SEMI, - STATE(3753), 1, + ACTIONS(5072), 1, + anon_sym_LBRACE, + STATE(748), 1, + sym_declaration_list, + STATE(3503), 1, sym_where_clause, - STATE(2622), 2, + STATE(2683), 2, sym_line_comment, sym_block_comment, - [80298] = 7, + [82003] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5815), 1, - anon_sym_LPAREN, - ACTIONS(5817), 1, - anon_sym_LBRACK, - ACTIONS(5819), 1, - anon_sym_LBRACE, - STATE(1080), 1, - sym_delim_token_tree, - STATE(2623), 2, + ACTIONS(5756), 1, + anon_sym_COLON_COLON, + STATE(2684), 2, sym_line_comment, sym_block_comment, - [80321] = 7, + ACTIONS(4828), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82022] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(1822), 1, - sym_block, - STATE(3779), 1, - sym_label, - STATE(2624), 2, + ACTIONS(5758), 1, + anon_sym_COLON_COLON, + STATE(2685), 2, sym_line_comment, sym_block_comment, - [80344] = 7, + ACTIONS(4844), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82041] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - STATE(1633), 1, + STATE(1490), 1, sym_block, - STATE(3779), 1, + STATE(3775), 1, sym_label, - STATE(2625), 2, + STATE(2686), 2, sym_line_comment, sym_block_comment, - [80367] = 7, + [82064] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_PIPE, - ACTIONS(5821), 1, - anon_sym_RPAREN, - ACTIONS(5823), 1, - anon_sym_COMMA, - STATE(2978), 1, - aux_sym_slice_pattern_repeat1, - STATE(2626), 2, + ACTIONS(5760), 1, + anon_sym_COLON_COLON, + STATE(2687), 2, sym_line_comment, sym_block_comment, - [80390] = 7, + ACTIONS(4844), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82083] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(1824), 1, - sym_block, - STATE(3779), 1, - sym_label, - STATE(2627), 2, + ACTIONS(5762), 1, + anon_sym_COLON_COLON, + STATE(2688), 2, sym_line_comment, sym_block_comment, - [80413] = 6, + ACTIONS(4844), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82102] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5825), 1, - anon_sym_DQUOTE, - STATE(2635), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5827), 2, - sym_string_content, - sym_escape_sequence, - STATE(2628), 2, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(5764), 1, + sym_identifier, + ACTIONS(5766), 1, + sym_super, + STATE(2188), 1, + sym_type_arguments, + STATE(2689), 2, sym_line_comment, sym_block_comment, - [80434] = 7, + [82125] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5815), 1, - anon_sym_LPAREN, - ACTIONS(5817), 1, - anon_sym_LBRACK, - ACTIONS(5819), 1, - anon_sym_LBRACE, - STATE(1073), 1, - sym_delim_token_tree, - STATE(2629), 2, + ACTIONS(4615), 1, + anon_sym_LT2, + STATE(3782), 1, + sym_type_arguments, + ACTIONS(5768), 2, + sym_identifier, + sym_super, + STATE(2690), 2, sym_line_comment, sym_block_comment, - [80457] = 7, + [82146] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1383), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(487), 1, - sym_block, - STATE(3778), 1, - sym_label, - STATE(2630), 2, + ACTIONS(4615), 1, + anon_sym_LT2, + STATE(3613), 1, + sym_type_arguments, + ACTIONS(5768), 2, + sym_identifier, + sym_super, + STATE(2691), 2, sym_line_comment, sym_block_comment, - [80480] = 7, + [82167] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5829), 1, - sym_identifier, - ACTIONS(5831), 1, - sym_super, - STATE(2121), 1, - sym_type_arguments, - STATE(2631), 2, + ACTIONS(5770), 1, + anon_sym_COLON, + STATE(2692), 2, sym_line_comment, sym_block_comment, - [80503] = 7, + ACTIONS(4970), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [82186] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5829), 1, - sym_identifier, - ACTIONS(5831), 1, - sym_super, - STATE(2128), 1, - sym_type_arguments, - STATE(2632), 2, + ACTIONS(5560), 1, + anon_sym_PIPE, + ACTIONS(5772), 1, + anon_sym_RPAREN, + ACTIONS(5774), 1, + anon_sym_COMMA, + STATE(2941), 1, + aux_sym_slice_pattern_repeat1, + STATE(2693), 2, sym_line_comment, sym_block_comment, - [80526] = 7, + [82209] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5831), 1, - sym_super, - ACTIONS(5833), 1, - sym_identifier, - STATE(3553), 1, - sym_type_arguments, - STATE(2633), 2, + ACTIONS(5560), 1, + anon_sym_PIPE, + ACTIONS(5776), 1, + anon_sym_RPAREN, + ACTIONS(5778), 1, + anon_sym_COMMA, + STATE(2957), 1, + aux_sym_slice_pattern_repeat1, + STATE(2694), 2, sym_line_comment, sym_block_comment, - [80549] = 7, + [82232] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5831), 1, - sym_super, - ACTIONS(5833), 1, - sym_identifier, - STATE(3591), 1, - sym_type_arguments, - STATE(2634), 2, + ACTIONS(339), 1, + anon_sym_LBRACE, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + STATE(1493), 1, + sym_block, + STATE(3775), 1, + sym_label, + STATE(2695), 2, sym_line_comment, sym_block_comment, - [80572] = 5, + [82255] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5835), 1, - anon_sym_DQUOTE, - ACTIONS(5837), 2, - sym_string_content, - sym_escape_sequence, - STATE(2635), 3, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(5581), 1, + anon_sym_RPAREN, + ACTIONS(5583), 1, + anon_sym_COMMA, + STATE(2976), 1, + aux_sym_parameters_repeat1, + STATE(2696), 2, sym_line_comment, sym_block_comment, - aux_sym_string_literal_repeat1, - [80591] = 7, + [82278] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5840), 1, - anon_sym_LBRACE, - ACTIONS(5842), 1, - anon_sym_for, - ACTIONS(5844), 1, - anon_sym_loop, - ACTIONS(5846), 1, - anon_sym_while, - STATE(2636), 2, + ACTIONS(1279), 1, + anon_sym_RPAREN, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(5597), 1, + anon_sym_COMMA, + STATE(2978), 1, + aux_sym_parameters_repeat1, + STATE(2697), 2, sym_line_comment, sym_block_comment, - [80614] = 7, + [82301] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - STATE(1842), 1, + STATE(3718), 1, sym_block, - STATE(3779), 1, + STATE(3775), 1, sym_label, - STATE(2637), 2, + STATE(2698), 2, + sym_line_comment, + sym_block_comment, + [82324] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5780), 1, + aux_sym_token_repetition_pattern_token1, + STATE(2699), 2, sym_line_comment, sym_block_comment, - [80637] = 7, + ACTIONS(5782), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [82343] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5469), 1, - anon_sym_LBRACE, - STATE(1352), 1, - sym_enum_variant_list, - STATE(3297), 1, - sym_where_clause, - STATE(2638), 2, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(5784), 1, + anon_sym_SEMI, + ACTIONS(5786), 1, + anon_sym_EQ, + ACTIONS(5788), 1, + anon_sym_else, + STATE(2700), 2, sym_line_comment, sym_block_comment, - [80660] = 7, + [82366] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1383), 1, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5046), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(492), 1, - sym_block, - STATE(3778), 1, - sym_label, - STATE(2639), 2, + STATE(1200), 1, + sym_declaration_list, + STATE(3397), 1, + sym_where_clause, + STATE(2701), 2, sym_line_comment, sym_block_comment, - [80683] = 7, + [82389] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3095), 1, anon_sym_PLUS, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5848), 1, + ACTIONS(5790), 1, anon_sym_SEMI, - STATE(3566), 1, + STATE(3800), 1, sym_where_clause, - STATE(2640), 2, + STATE(2702), 2, + sym_line_comment, + sym_block_comment, + [82412] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2703), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1201), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [82429] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5046), 1, + anon_sym_LBRACE, + STATE(1211), 1, + sym_declaration_list, + STATE(3399), 1, + sym_where_clause, + STATE(2704), 2, sym_line_comment, sym_block_comment, - [80706] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [82452] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(424), 1, - sym_block, - STATE(3621), 1, - sym_label, - STATE(2641), 2, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5399), 1, + anon_sym_LBRACE, + STATE(1216), 1, + sym_enum_variant_list, + STATE(3408), 1, + sym_where_clause, + STATE(2705), 2, sym_line_comment, sym_block_comment, - [80729] = 6, + [82475] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5850), 1, - anon_sym_DQUOTE, - STATE(2720), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5827), 2, - sym_string_content, - sym_escape_sequence, - STATE(2642), 2, + ACTIONS(5020), 1, + anon_sym_LBRACE, + ACTIONS(5024), 1, + anon_sym_where, + STATE(621), 1, + sym_field_declaration_list, + STATE(3346), 1, + sym_where_clause, + STATE(2706), 2, sym_line_comment, sym_block_comment, - [80750] = 7, - ACTIONS(27), 1, - anon_sym_PIPE, + [82498] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5852), 1, - anon_sym_async, - ACTIONS(5854), 1, - anon_sym_move, - STATE(224), 1, - sym_closure_parameters, - STATE(2643), 2, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5034), 1, + anon_sym_LBRACE, + STATE(1222), 1, + sym_field_declaration_list, + STATE(3410), 1, + sym_where_clause, + STATE(2707), 2, sym_line_comment, sym_block_comment, - [80773] = 7, + [82521] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5170), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - STATE(3081), 1, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + STATE(1533), 1, sym_block, - STATE(3777), 1, + STATE(3775), 1, sym_label, - STATE(2644), 2, + STATE(2708), 2, sym_line_comment, sym_block_comment, - [80796] = 7, + [82544] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(1936), 1, - sym_block, - STATE(3779), 1, - sym_label, - STATE(2645), 2, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5792), 1, + anon_sym_SEMI, + STATE(3679), 1, + sym_where_clause, + STATE(2709), 2, sym_line_comment, sym_block_comment, - [80819] = 7, - ACTIONS(27), 1, - anon_sym_PIPE, + [82567] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5856), 1, - anon_sym_async, - ACTIONS(5858), 1, - anon_sym_move, - STATE(215), 1, - sym_closure_parameters, - STATE(2646), 2, + ACTIONS(5794), 1, + anon_sym_in, + STATE(2710), 2, sym_line_comment, sym_block_comment, - [80842] = 6, + ACTIONS(5796), 3, + sym_self, + sym_super, + sym_crate, + [82586] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4666), 1, - anon_sym_DOT_DOT, - ACTIONS(5418), 1, - anon_sym_COLON_COLON, - ACTIONS(4668), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2647), 2, + ACTIONS(2287), 1, + anon_sym_SQUOTE, + ACTIONS(5798), 1, + sym_identifier, + ACTIONS(5800), 1, + anon_sym_GT, + STATE(3321), 1, + sym_lifetime, + STATE(2711), 2, sym_line_comment, sym_block_comment, - [80863] = 7, + [82609] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5860), 1, - anon_sym_SEMI, - STATE(3743), 1, + ACTIONS(5072), 1, + anon_sym_LBRACE, + STATE(740), 1, + sym_declaration_list, + STATE(3471), 1, sym_where_clause, - STATE(2648), 2, + STATE(2712), 2, sym_line_comment, sym_block_comment, - [80886] = 5, + [82632] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3095), 1, anon_sym_PLUS, - STATE(2649), 2, + STATE(2713), 2, sym_line_comment, sym_block_comment, - ACTIONS(5862), 3, + ACTIONS(5802), 3, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_COMMA, - [80905] = 6, + [82651] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5864), 1, - anon_sym_DQUOTE, - STATE(2658), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5827), 2, - sym_string_content, - sym_escape_sequence, - STATE(2650), 2, + ACTIONS(2287), 1, + anon_sym_SQUOTE, + ACTIONS(5798), 1, + sym_identifier, + ACTIONS(5804), 1, + anon_sym_GT, + STATE(3321), 1, + sym_lifetime, + STATE(2714), 2, sym_line_comment, sym_block_comment, - [80926] = 7, + [82674] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, - anon_sym_where, - STATE(1407), 1, - sym_declaration_list, - STATE(3207), 1, - sym_where_clause, - STATE(2651), 2, + ACTIONS(1277), 1, + anon_sym_RPAREN, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(5625), 1, + anon_sym_COMMA, + STATE(3054), 1, + aux_sym_parameters_repeat1, + STATE(2715), 2, sym_line_comment, sym_block_comment, - [80949] = 7, + [82697] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(2287), 1, anon_sym_SQUOTE, - STATE(1854), 1, - sym_block, - STATE(3779), 1, - sym_label, - STATE(2652), 2, - sym_line_comment, - sym_block_comment, - [80972] = 7, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5866), 1, - anon_sym_async, - ACTIONS(5868), 1, - anon_sym_move, - STATE(220), 1, - sym_closure_parameters, - STATE(2653), 2, + ACTIONS(5798), 1, + sym_identifier, + ACTIONS(5806), 1, + anon_sym_GT, + STATE(3321), 1, + sym_lifetime, + STATE(2716), 2, sym_line_comment, sym_block_comment, - [80995] = 7, + [82720] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(2287), 1, anon_sym_SQUOTE, - STATE(1814), 1, - sym_block, - STATE(3779), 1, - sym_label, - STATE(2654), 2, + ACTIONS(5798), 1, + sym_identifier, + ACTIONS(5808), 1, + anon_sym_GT, + STATE(3321), 1, + sym_lifetime, + STATE(2717), 2, sym_line_comment, sym_block_comment, - [81018] = 7, + [82743] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_PIPE, - ACTIONS(5870), 1, - anon_sym_RPAREN, - ACTIONS(5872), 1, - anon_sym_COMMA, - STATE(3185), 1, - aux_sym_tuple_pattern_repeat1, - STATE(2655), 2, + ACTIONS(4617), 1, + anon_sym_LPAREN, + ACTIONS(5022), 1, + anon_sym_LT, + STATE(2365), 1, + sym_parameters, + STATE(3360), 1, + sym_type_parameters, + STATE(2718), 2, sym_line_comment, sym_block_comment, - [81041] = 5, + [82766] = 7, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_PIPE, - STATE(2656), 2, + ACTIONS(5810), 1, + anon_sym_async, + ACTIONS(5812), 1, + anon_sym_move, + STATE(171), 1, + sym_closure_parameters, + STATE(2719), 2, sym_line_comment, sym_block_comment, - ACTIONS(5874), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [81060] = 7, + [82789] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5876), 1, - anon_sym_LPAREN, - ACTIONS(5878), 1, - anon_sym_LBRACK, - ACTIONS(5880), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - STATE(1859), 1, - sym_delim_token_tree, - STATE(2657), 2, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + STATE(3626), 1, + sym_block, + STATE(3775), 1, + sym_label, + STATE(2720), 2, sym_line_comment, sym_block_comment, - [81083] = 6, + [82812] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5882), 1, - anon_sym_DQUOTE, - STATE(2635), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5827), 2, - sym_string_content, - sym_escape_sequence, - STATE(2658), 2, + ACTIONS(339), 1, + anon_sym_LBRACE, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + STATE(3645), 1, + sym_block, + STATE(3775), 1, + sym_label, + STATE(2721), 2, sym_line_comment, sym_block_comment, - [81104] = 7, + [82835] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5876), 1, - anon_sym_LPAREN, - ACTIONS(5878), 1, - anon_sym_LBRACK, - ACTIONS(5880), 1, + ACTIONS(5020), 1, anon_sym_LBRACE, - STATE(1861), 1, - sym_delim_token_tree, - STATE(2659), 2, + ACTIONS(5024), 1, + anon_sym_where, + STATE(758), 1, + sym_field_declaration_list, + STATE(3372), 1, + sym_where_clause, + STATE(2722), 2, sym_line_comment, sym_block_comment, - [81127] = 5, + [82858] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3095), 1, anon_sym_PLUS, - STATE(2660), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5884), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [81146] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5831), 1, - sym_super, - ACTIONS(5886), 1, - sym_identifier, - STATE(2121), 1, - sym_type_arguments, - STATE(2661), 2, + ACTIONS(5814), 1, + anon_sym_SEMI, + ACTIONS(5816), 1, + anon_sym_EQ, + ACTIONS(5818), 1, + anon_sym_else, + STATE(2723), 2, sym_line_comment, sym_block_comment, - [81169] = 7, + [82881] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5831), 1, - sym_super, - ACTIONS(5886), 1, - sym_identifier, - STATE(2128), 1, - sym_type_arguments, - STATE(2662), 2, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5820), 1, + anon_sym_SEMI, + STATE(3637), 1, + sym_where_clause, + STATE(2724), 2, sym_line_comment, sym_block_comment, - [81192] = 7, + [82904] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5306), 1, - sym_super, - ACTIONS(5833), 1, - sym_identifier, - STATE(3553), 1, - sym_type_arguments, - STATE(2663), 2, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5822), 1, + anon_sym_SEMI, + STATE(3638), 1, + sym_where_clause, + STATE(2725), 2, sym_line_comment, sym_block_comment, - [81215] = 7, + [82927] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5306), 1, - sym_super, - ACTIONS(5833), 1, - sym_identifier, - STATE(3591), 1, - sym_type_arguments, - STATE(2664), 2, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5046), 1, + anon_sym_LBRACE, + STATE(1261), 1, + sym_declaration_list, + STATE(3450), 1, + sym_where_clause, + STATE(2726), 2, sym_line_comment, sym_block_comment, - [81238] = 7, + [82950] = 7, ACTIONS(19), 1, anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - STATE(418), 1, + STATE(429), 1, sym_block, - STATE(3621), 1, + STATE(3801), 1, sym_label, - STATE(2665), 2, + STATE(2727), 2, sym_line_comment, sym_block_comment, - [81261] = 7, + [82973] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5067), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(5024), 1, anon_sym_where, - STATE(1413), 1, - sym_field_declaration_list, - STATE(3226), 1, + ACTIONS(5824), 1, + anon_sym_SEMI, + STATE(3650), 1, sym_where_clause, - STATE(2666), 2, + STATE(2728), 2, sym_line_comment, sym_block_comment, - [81284] = 7, + [82996] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(5093), 1, + ACTIONS(5046), 1, anon_sym_LBRACE, - STATE(580), 1, + STATE(1275), 1, sym_declaration_list, - STATE(3374), 1, - sym_where_clause, - STATE(2667), 2, - sym_line_comment, - sym_block_comment, - [81307] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5888), 1, - anon_sym_SEMI, - STATE(3572), 1, + STATE(3452), 1, sym_where_clause, - STATE(2668), 2, + STATE(2729), 2, sym_line_comment, sym_block_comment, - [81330] = 6, + [83019] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4615), 1, anon_sym_LT2, - STATE(3591), 1, - sym_type_arguments, - ACTIONS(5831), 2, + ACTIONS(5764), 1, sym_identifier, + ACTIONS(5766), 1, sym_super, - STATE(2669), 2, + STATE(2185), 1, + sym_type_arguments, + STATE(2730), 2, sym_line_comment, sym_block_comment, - [81351] = 7, + [83042] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5759), 1, - anon_sym_RPAREN, - ACTIONS(5761), 1, - anon_sym_COMMA, - STATE(3005), 1, - aux_sym_parameters_repeat1, - STATE(2670), 2, + ACTIONS(339), 1, + anon_sym_LBRACE, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + STATE(1498), 1, + sym_block, + STATE(3775), 1, + sym_label, + STATE(2731), 2, sym_line_comment, sym_block_comment, - [81374] = 7, + [83065] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, + ACTIONS(5560), 1, anon_sym_PIPE, - ACTIONS(5890), 1, - anon_sym_RBRACK, - ACTIONS(5892), 1, + ACTIONS(5826), 1, + anon_sym_RPAREN, + ACTIONS(5828), 1, anon_sym_COMMA, - STATE(3186), 1, + STATE(3048), 1, aux_sym_slice_pattern_repeat1, - STATE(2671), 2, + STATE(2732), 2, sym_line_comment, sym_block_comment, - [81397] = 7, + [83088] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4674), 1, - anon_sym_LPAREN, - ACTIONS(5069), 1, - anon_sym_LT, - STATE(2318), 1, - sym_parameters, - STATE(3409), 1, - sym_type_parameters, - STATE(2672), 2, + ACTIONS(2287), 1, + anon_sym_SQUOTE, + ACTIONS(5798), 1, + sym_identifier, + ACTIONS(5830), 1, + anon_sym_GT, + STATE(3321), 1, + sym_lifetime, + STATE(2733), 2, sym_line_comment, sym_block_comment, - [81420] = 6, + [83111] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5894), 1, - anon_sym_DQUOTE, - STATE(2676), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5827), 2, - sym_string_content, - sym_escape_sequence, - STATE(2673), 2, + ACTIONS(2287), 1, + anon_sym_SQUOTE, + ACTIONS(5798), 1, + sym_identifier, + ACTIONS(5832), 1, + anon_sym_GT, + STATE(3321), 1, + sym_lifetime, + STATE(2734), 2, sym_line_comment, sym_block_comment, - [81441] = 5, + [83134] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5896), 1, - anon_sym_COLON, - STATE(2674), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5029), 3, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(5834), 1, anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(5836), 1, anon_sym_COMMA, - [81460] = 7, + STATE(3105), 1, + aux_sym_tuple_type_repeat1, + STATE(2735), 2, + sym_line_comment, + sym_block_comment, + [83157] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5831), 1, - sym_super, - ACTIONS(5898), 1, - sym_identifier, - STATE(2121), 1, - sym_type_arguments, - STATE(2675), 2, + STATE(2736), 2, sym_line_comment, sym_block_comment, - [81483] = 6, + ACTIONS(5838), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [83174] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5900), 1, - anon_sym_DQUOTE, - STATE(2635), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5827), 2, - sym_string_content, - sym_escape_sequence, - STATE(2676), 2, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5840), 1, + anon_sym_SEMI, + STATE(3685), 1, + sym_where_clause, + STATE(2737), 2, sym_line_comment, sym_block_comment, - [81504] = 7, + [83197] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5803), 1, - anon_sym_COLON_COLON, - ACTIONS(5902), 1, - anon_sym_for, - STATE(2027), 1, - sym_type_arguments, - STATE(2677), 2, + ACTIONS(5842), 1, + anon_sym_LPAREN, + ACTIONS(5844), 1, + anon_sym_LBRACK, + ACTIONS(5846), 1, + anon_sym_LBRACE, + STATE(2736), 1, + sym_token_tree, + STATE(2738), 2, sym_line_comment, sym_block_comment, - [81527] = 7, + [83220] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5831), 1, - sym_super, - ACTIONS(5904), 1, - sym_identifier, - STATE(3553), 1, - sym_type_arguments, - STATE(2678), 2, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5848), 1, + anon_sym_SEMI, + STATE(3717), 1, + sym_where_clause, + STATE(2739), 2, sym_line_comment, sym_block_comment, - [81550] = 7, + [83243] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5831), 1, - sym_super, - ACTIONS(5904), 1, - sym_identifier, - STATE(3591), 1, - sym_type_arguments, - STATE(2679), 2, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5850), 1, + anon_sym_SEMI, + STATE(3719), 1, + sym_where_clause, + STATE(2740), 2, sym_line_comment, sym_block_comment, - [81573] = 7, + [83266] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5906), 1, - anon_sym_RPAREN, - ACTIONS(5908), 1, - anon_sym_COMMA, - STATE(3166), 1, - aux_sym_tuple_type_repeat1, - STATE(2680), 2, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5046), 1, + anon_sym_LBRACE, + STATE(1328), 1, + sym_declaration_list, + STATE(3485), 1, + sym_where_clause, + STATE(2741), 2, sym_line_comment, sym_block_comment, - [81596] = 7, + [83289] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5910), 1, - anon_sym_RPAREN, - ACTIONS(5912), 1, - anon_sym_COMMA, - STATE(3025), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2681), 2, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + STATE(434), 1, + sym_block, + STATE(3801), 1, + sym_label, + STATE(2742), 2, sym_line_comment, sym_block_comment, - [81619] = 7, + [83312] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3084), 1, - anon_sym_SQUOTE, - ACTIONS(5914), 1, - sym_identifier, - ACTIONS(5916), 1, - anon_sym_GT, - STATE(3383), 1, - sym_lifetime, - STATE(2682), 2, + ACTIONS(5852), 1, + anon_sym_LPAREN, + ACTIONS(5854), 1, + anon_sym_LBRACK, + ACTIONS(5856), 1, + anon_sym_LBRACE, + STATE(410), 1, + sym_delim_token_tree, + STATE(2743), 2, sym_line_comment, sym_block_comment, - [81642] = 7, + [83335] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4184), 1, - anon_sym_LT2, - ACTIONS(4298), 1, - anon_sym_COLON_COLON, - ACTIONS(5015), 1, - anon_sym_BANG, - STATE(1659), 1, - sym_type_arguments, - STATE(2683), 2, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5858), 1, + anon_sym_SEMI, + STATE(3771), 1, + sym_where_clause, + STATE(2744), 2, sym_line_comment, sym_block_comment, - [81665] = 7, + [83358] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(3530), 1, - sym_block, - STATE(3714), 1, - sym_label, - STATE(2684), 2, + ACTIONS(4617), 1, + anon_sym_LPAREN, + ACTIONS(5022), 1, + anon_sym_LT, + STATE(2387), 1, + sym_parameters, + STATE(3467), 1, + sym_type_parameters, + STATE(2745), 2, sym_line_comment, sym_block_comment, - [81688] = 7, + [83381] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(1547), 1, - sym_block, - STATE(3714), 1, - sym_label, - STATE(2685), 2, + ACTIONS(3103), 1, + anon_sym_PLUS, + STATE(2746), 2, sym_line_comment, sym_block_comment, - [81711] = 7, + ACTIONS(5860), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [83400] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4615), 1, anon_sym_LT2, - ACTIONS(4674), 1, - anon_sym_LPAREN, - STATE(2026), 1, + ACTIONS(5862), 1, + anon_sym_COLON_COLON, + ACTIONS(5864), 1, + anon_sym_for, + STATE(2083), 1, sym_type_arguments, - STATE(2501), 1, - sym_parameters, - STATE(2686), 2, + STATE(2747), 2, sym_line_comment, sym_block_comment, - [81734] = 7, + [83423] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5711), 1, + ACTIONS(5109), 1, anon_sym_COLON, - ACTIONS(5713), 1, - anon_sym_PIPE, - ACTIONS(5715), 1, + STATE(3500), 1, + sym_trait_bounds, + ACTIONS(5698), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(3047), 1, - aux_sym_closure_parameters_repeat1, - STATE(2687), 2, + STATE(2748), 2, + sym_line_comment, + sym_block_comment, + [83444] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5756), 1, + anon_sym_COLON_COLON, + STATE(2749), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4870), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83463] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(983), 1, + anon_sym_LBRACE, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + STATE(508), 1, + sym_block, + STATE(3840), 1, + sym_label, + STATE(2750), 2, sym_line_comment, sym_block_comment, - [81757] = 7, + [83486] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5831), 1, - sym_super, - ACTIONS(5918), 1, - sym_identifier, - STATE(2121), 1, - sym_type_arguments, - STATE(2688), 2, + ACTIONS(983), 1, + anon_sym_LBRACE, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + STATE(510), 1, + sym_block, + STATE(3840), 1, + sym_label, + STATE(2751), 2, sym_line_comment, sym_block_comment, - [81780] = 7, + [83509] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5807), 1, - sym_identifier, - ACTIONS(5831), 1, - sym_super, - STATE(3591), 1, - sym_type_arguments, - STATE(2689), 2, + ACTIONS(5866), 1, + anon_sym_DQUOTE, + STATE(2763), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5868), 2, + sym_string_content, + sym_escape_sequence, + STATE(2752), 2, sym_line_comment, sym_block_comment, - [81803] = 5, + [83530] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5920), 1, + ACTIONS(5758), 1, anon_sym_COLON_COLON, - STATE(2690), 2, + STATE(2753), 2, sym_line_comment, sym_block_comment, - ACTIONS(4907), 3, + ACTIONS(4884), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [81822] = 7, + [83549] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5306), 1, - sym_super, - ACTIONS(5904), 1, - sym_identifier, - STATE(3553), 1, - sym_type_arguments, - STATE(2691), 2, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + ACTIONS(5155), 1, + anon_sym_LBRACE, + STATE(2942), 1, + sym_block, + STATE(3838), 1, + sym_label, + STATE(2754), 2, sym_line_comment, sym_block_comment, - [81845] = 7, + [83572] = 7, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5306), 1, - sym_super, - ACTIONS(5904), 1, - sym_identifier, - STATE(3591), 1, - sym_type_arguments, - STATE(2692), 2, + ACTIONS(5870), 1, + anon_sym_async, + ACTIONS(5872), 1, + anon_sym_move, + STATE(180), 1, + sym_closure_parameters, + STATE(2755), 2, sym_line_comment, sym_block_comment, - [81868] = 7, + [83595] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(417), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - STATE(1470), 1, + STATE(1851), 1, sym_block, - STATE(3714), 1, + STATE(3841), 1, sym_label, - STATE(2693), 2, + STATE(2756), 2, sym_line_comment, sym_block_comment, - [81891] = 7, + [83618] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(3714), 1, - sym_label, - STATE(3738), 1, - sym_block, - STATE(2694), 2, + ACTIONS(4065), 1, + anon_sym_LT2, + ACTIONS(4255), 1, + anon_sym_COLON_COLON, + ACTIONS(4968), 1, + anon_sym_BANG, + STATE(1731), 1, + sym_type_arguments, + STATE(2757), 2, sym_line_comment, sym_block_comment, - [81914] = 7, + [83641] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1371), 1, - anon_sym_RPAREN, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5686), 1, - anon_sym_COMMA, - STATE(3113), 1, - aux_sym_parameters_repeat1, - STATE(2695), 2, + ACTIONS(5760), 1, + anon_sym_COLON_COLON, + STATE(2758), 2, sym_line_comment, sym_block_comment, - [81937] = 7, + ACTIONS(4884), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83660] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5922), 1, + ACTIONS(5874), 1, anon_sym_LPAREN, - ACTIONS(5924), 1, + ACTIONS(5876), 1, anon_sym_LBRACK, - ACTIONS(5926), 1, + ACTIONS(5878), 1, anon_sym_LBRACE, - STATE(2033), 1, + STATE(2108), 1, sym_delim_token_tree, - STATE(2696), 2, - sym_line_comment, - sym_block_comment, - [81960] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5803), 1, - anon_sym_COLON_COLON, - ACTIONS(5928), 1, - anon_sym_for, - STATE(2027), 1, - sym_type_arguments, - STATE(2697), 2, + STATE(2759), 2, sym_line_comment, sym_block_comment, - [81983] = 7, + [83683] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5093), 1, + ACTIONS(983), 1, anon_sym_LBRACE, - STATE(591), 1, - sym_declaration_list, - STATE(3437), 1, - sym_where_clause, - STATE(2698), 2, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + STATE(516), 1, + sym_block, + STATE(3840), 1, + sym_label, + STATE(2760), 2, sym_line_comment, sym_block_comment, - [82006] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [83706] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(983), 1, + anon_sym_LBRACE, + ACTIONS(3383), 1, anon_sym_SQUOTE, - STATE(290), 1, + STATE(485), 1, sym_block, - STATE(3621), 1, + STATE(3840), 1, sym_label, - STATE(2699), 2, + STATE(2761), 2, sym_line_comment, sym_block_comment, - [82029] = 6, + [83729] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - STATE(3553), 1, - sym_type_arguments, - ACTIONS(5930), 2, - sym_identifier, - sym_super, - STATE(2700), 2, + ACTIONS(983), 1, + anon_sym_LBRACE, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + STATE(515), 1, + sym_block, + STATE(3840), 1, + sym_label, + STATE(2762), 2, sym_line_comment, sym_block_comment, - [82050] = 6, + [83752] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - STATE(3591), 1, - sym_type_arguments, - ACTIONS(5930), 2, - sym_identifier, - sym_super, - STATE(2701), 2, + ACTIONS(5880), 1, + anon_sym_DQUOTE, + STATE(2809), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5868), 2, + sym_string_content, + sym_escape_sequence, + STATE(2763), 2, sym_line_comment, sym_block_comment, - [82071] = 7, + [83773] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1383), 1, + ACTIONS(5874), 1, + anon_sym_LPAREN, + ACTIONS(5876), 1, + anon_sym_LBRACK, + ACTIONS(5878), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(488), 1, - sym_block, - STATE(3778), 1, - sym_label, - STATE(2702), 2, + STATE(2099), 1, + sym_delim_token_tree, + STATE(2764), 2, sym_line_comment, sym_block_comment, - [82094] = 7, + [83796] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1383), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(463), 1, - sym_block, - STATE(3778), 1, - sym_label, - STATE(2703), 2, + ACTIONS(4065), 1, + anon_sym_LT2, + ACTIONS(5882), 1, + sym_identifier, + ACTIONS(5884), 1, + sym_super, + STATE(1677), 1, + sym_type_arguments, + STATE(2765), 2, sym_line_comment, sym_block_comment, - [82117] = 6, + [83819] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4666), 1, - anon_sym_DOT_DOT, - ACTIONS(5350), 1, - anon_sym_COLON_COLON, - ACTIONS(4668), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2704), 2, + ACTIONS(4065), 1, + anon_sym_LT2, + ACTIONS(5882), 1, + sym_identifier, + ACTIONS(5884), 1, + sym_super, + STATE(1682), 1, + sym_type_arguments, + STATE(2766), 2, sym_line_comment, sym_block_comment, - [82138] = 7, + [83842] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5807), 1, - sym_identifier, - ACTIONS(5831), 1, + ACTIONS(5768), 1, sym_super, - STATE(3553), 1, + ACTIONS(5886), 1, + sym_identifier, + ACTIONS(5888), 1, + anon_sym_LT2, + STATE(2580), 1, sym_type_arguments, - STATE(2705), 2, + STATE(2767), 2, sym_line_comment, sym_block_comment, - [82161] = 7, + [83865] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5932), 1, - anon_sym_SEMI, - STATE(3571), 1, - sym_where_clause, - STATE(2706), 2, + ACTIONS(5768), 1, + sym_super, + ACTIONS(5886), 1, + sym_identifier, + ACTIONS(5888), 1, + anon_sym_LT2, + STATE(2582), 1, + sym_type_arguments, + STATE(2768), 2, sym_line_comment, sym_block_comment, - [82184] = 7, + [83888] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_PIPE, - ACTIONS(5934), 1, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(5890), 1, anon_sym_RPAREN, - ACTIONS(5936), 1, + ACTIONS(5892), 1, anon_sym_COMMA, - STATE(2914), 1, - aux_sym_slice_pattern_repeat1, - STATE(2707), 2, + STATE(2943), 1, + aux_sym_tuple_type_repeat1, + STATE(2769), 2, sym_line_comment, sym_block_comment, - [82207] = 7, + [83911] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_PIPE, - ACTIONS(5938), 1, - anon_sym_RPAREN, - ACTIONS(5940), 1, - anon_sym_COMMA, - STATE(2916), 1, - aux_sym_slice_pattern_repeat1, - STATE(2708), 2, + ACTIONS(5762), 1, + anon_sym_COLON_COLON, + STATE(2770), 2, sym_line_comment, sym_block_comment, - [82230] = 7, + ACTIONS(4884), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83930] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4674), 1, - anon_sym_LPAREN, - ACTIONS(5069), 1, - anon_sym_LT, - STATE(2291), 1, - sym_parameters, - STATE(3356), 1, - sym_type_parameters, - STATE(2709), 2, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(5263), 1, + sym_super, + ACTIONS(5764), 1, + sym_identifier, + STATE(3782), 1, + sym_type_arguments, + STATE(2771), 2, sym_line_comment, sym_block_comment, - [82253] = 7, + [83953] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3095), 1, anon_sym_PLUS, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5942), 1, + ACTIONS(5894), 1, anon_sym_SEMI, - STATE(3658), 1, - sym_where_clause, - STATE(2710), 2, + ACTIONS(5896), 1, + anon_sym_EQ, + ACTIONS(5898), 1, + anon_sym_else, + STATE(2772), 2, sym_line_comment, sym_block_comment, - [82276] = 7, + [83976] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5093), 1, - anon_sym_LBRACE, - STATE(715), 1, - sym_declaration_list, - STATE(3258), 1, - sym_where_clause, - STATE(2711), 2, + ACTIONS(4061), 1, + anon_sym_LPAREN, + ACTIONS(4615), 1, + anon_sym_LT2, + STATE(1716), 1, + sym_parameters, + STATE(2082), 1, + sym_type_arguments, + STATE(2773), 2, sym_line_comment, sym_block_comment, - [82299] = 5, + [83999] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5944), 1, - anon_sym_in, - STATE(2712), 2, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(5263), 1, + sym_super, + ACTIONS(5764), 1, + sym_identifier, + STATE(3613), 1, + sym_type_arguments, + STATE(2774), 2, sym_line_comment, sym_block_comment, - ACTIONS(5946), 3, - sym_self, - sym_super, - sym_crate, - [82318] = 7, + [84022] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - STATE(3575), 1, - sym_block, - STATE(3714), 1, + STATE(3775), 1, sym_label, - STATE(2713), 2, + STATE(3810), 1, + sym_block, + STATE(2775), 2, sym_line_comment, sym_block_comment, - [82341] = 6, + [84045] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5948), 1, - anon_sym_DQUOTE, - STATE(2635), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5827), 2, - sym_string_content, - sym_escape_sequence, - STATE(2714), 2, + ACTIONS(983), 1, + anon_sym_LBRACE, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + STATE(521), 1, + sym_block, + STATE(3840), 1, + sym_label, + STATE(2776), 2, sym_line_comment, sym_block_comment, - [82362] = 7, + [84068] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5950), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(5952), 1, - anon_sym_for, - ACTIONS(5954), 1, - anon_sym_loop, - ACTIONS(5956), 1, - anon_sym_while, - STATE(2715), 2, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + STATE(3775), 1, + sym_label, + STATE(3812), 1, + sym_block, + STATE(2777), 2, sym_line_comment, sym_block_comment, - [82385] = 7, + [84091] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1383), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(478), 1, - sym_block, - STATE(3778), 1, - sym_label, - STATE(2716), 2, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(5534), 1, + anon_sym_RPAREN, + ACTIONS(5536), 1, + anon_sym_COMMA, + STATE(2962), 1, + aux_sym_parameters_repeat1, + STATE(2778), 2, sym_line_comment, sym_block_comment, - [82408] = 7, + [84114] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3095), 1, anon_sym_PLUS, - ACTIONS(5696), 1, + ACTIONS(5700), 1, anon_sym_RPAREN, - ACTIONS(5698), 1, + ACTIONS(5702), 1, anon_sym_COMMA, - STATE(2919), 1, + STATE(2958), 1, aux_sym_parameters_repeat1, - STATE(2717), 2, + STATE(2779), 2, sym_line_comment, sym_block_comment, - [82431] = 7, + [84137] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5958), 1, - anon_sym_SEMI, - STATE(3552), 1, - sym_where_clause, - STATE(2718), 2, + ACTIONS(4597), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5900), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2780), 2, sym_line_comment, sym_block_comment, - [82454] = 7, + [84156] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5960), 1, - anon_sym_SEMI, - ACTIONS(5962), 1, - anon_sym_EQ, - ACTIONS(5964), 1, - anon_sym_else, - STATE(2719), 2, + ACTIONS(983), 1, + anon_sym_LBRACE, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + STATE(523), 1, + sym_block, + STATE(3840), 1, + sym_label, + STATE(2781), 2, sym_line_comment, sym_block_comment, - [82477] = 6, + [84179] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5966), 1, - anon_sym_DQUOTE, - STATE(2635), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5827), 2, - sym_string_content, - sym_escape_sequence, - STATE(2720), 2, + ACTIONS(1285), 1, + anon_sym_RPAREN, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(5540), 1, + anon_sym_COMMA, + STATE(2974), 1, + aux_sym_parameters_repeat1, + STATE(2782), 2, sym_line_comment, sym_block_comment, - [82498] = 7, + [84202] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5922), 1, - anon_sym_LPAREN, - ACTIONS(5924), 1, - anon_sym_LBRACK, - ACTIONS(5926), 1, - anon_sym_LBRACE, - STATE(2044), 1, - sym_delim_token_tree, - STATE(2721), 2, + ACTIONS(2287), 1, + anon_sym_SQUOTE, + ACTIONS(5798), 1, + sym_identifier, + ACTIONS(5902), 1, + anon_sym_GT, + STATE(3321), 1, + sym_lifetime, + STATE(2783), 2, sym_line_comment, sym_block_comment, - [82521] = 7, + [84225] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5093), 1, - anon_sym_LBRACE, - STATE(743), 1, - sym_declaration_list, - STATE(3489), 1, - sym_where_clause, - STATE(2722), 2, + ACTIONS(2287), 1, + anon_sym_SQUOTE, + ACTIONS(5798), 1, + sym_identifier, + ACTIONS(5904), 1, + anon_sym_GT, + STATE(3321), 1, + sym_lifetime, + STATE(2784), 2, sym_line_comment, sym_block_comment, - [82544] = 7, + [84248] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4184), 1, - anon_sym_LT2, - ACTIONS(5968), 1, + ACTIONS(2287), 1, + anon_sym_SQUOTE, + ACTIONS(5798), 1, sym_identifier, - ACTIONS(5970), 1, - sym_super, - STATE(1618), 1, - sym_type_arguments, - STATE(2723), 2, + ACTIONS(5906), 1, + anon_sym_GT, + STATE(3321), 1, + sym_lifetime, + STATE(2785), 2, sym_line_comment, sym_block_comment, - [82567] = 6, + [84271] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5972), 1, - anon_sym_DQUOTE, - STATE(2635), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5827), 2, - sym_string_content, - sym_escape_sequence, - STATE(2724), 2, + ACTIONS(2287), 1, + anon_sym_SQUOTE, + ACTIONS(5798), 1, + sym_identifier, + ACTIONS(5908), 1, + anon_sym_GT, + STATE(3321), 1, + sym_lifetime, + STATE(2786), 2, sym_line_comment, sym_block_comment, - [82588] = 6, + [84294] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5164), 1, - anon_sym_COLON, - STATE(3402), 1, - sym_trait_bounds, - ACTIONS(5719), 2, - anon_sym_GT, + ACTIONS(5560), 1, + anon_sym_PIPE, + ACTIONS(5910), 1, + anon_sym_RPAREN, + ACTIONS(5912), 1, anon_sym_COMMA, - STATE(2725), 2, + STATE(3066), 1, + aux_sym_tuple_pattern_repeat1, + STATE(2787), 2, sym_line_comment, sym_block_comment, - [82609] = 7, + [84317] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4184), 1, - anon_sym_LT2, - ACTIONS(5968), 1, - sym_identifier, - ACTIONS(5970), 1, - sym_super, - STATE(1627), 1, - sym_type_arguments, - STATE(2726), 2, + ACTIONS(417), 1, + anon_sym_LBRACE, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + STATE(1846), 1, + sym_block, + STATE(3841), 1, + sym_label, + STATE(2788), 2, sym_line_comment, sym_block_comment, - [82632] = 5, + [84340] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5974), 1, - sym_identifier, - STATE(2727), 2, + ACTIONS(417), 1, + anon_sym_LBRACE, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + STATE(1852), 1, + sym_block, + STATE(3841), 1, + sym_label, + STATE(2789), 2, sym_line_comment, sym_block_comment, - ACTIONS(5976), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [82651] = 6, + [84363] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5978), 1, + ACTIONS(5914), 1, anon_sym_DQUOTE, - STATE(2724), 1, + STATE(2798), 1, aux_sym_string_literal_repeat1, - ACTIONS(5827), 2, + ACTIONS(5868), 2, sym_string_content, sym_escape_sequence, - STATE(2728), 2, + STATE(2790), 2, + sym_line_comment, + sym_block_comment, + [84384] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5916), 1, + aux_sym_token_repetition_pattern_token1, + STATE(2791), 2, sym_line_comment, sym_block_comment, - [82672] = 7, + ACTIONS(5918), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [84403] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5930), 1, - sym_super, - ACTIONS(5980), 1, - sym_identifier, - ACTIONS(5982), 1, - anon_sym_LT2, - STATE(2605), 1, - sym_type_arguments, - STATE(2729), 2, + ACTIONS(983), 1, + anon_sym_LBRACE, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + STATE(507), 1, + sym_block, + STATE(3840), 1, + sym_label, + STATE(2792), 2, sym_line_comment, sym_block_comment, - [82695] = 7, + [84426] = 7, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5930), 1, - sym_super, - ACTIONS(5980), 1, - sym_identifier, - ACTIONS(5982), 1, - anon_sym_LT2, - STATE(2564), 1, - sym_type_arguments, - STATE(2730), 2, + ACTIONS(5062), 1, + anon_sym_move, + ACTIONS(5920), 1, + anon_sym_async, + STATE(190), 1, + sym_closure_parameters, + STATE(2793), 2, sym_line_comment, sym_block_comment, - [82718] = 7, + [84449] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(5922), 1, + anon_sym_LPAREN, + ACTIONS(5924), 1, + anon_sym_LBRACK, + ACTIONS(5926), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(3714), 1, - sym_label, - STATE(3751), 1, - sym_block, - STATE(2731), 2, + STATE(1108), 1, + sym_delim_token_tree, + STATE(2794), 2, sym_line_comment, sym_block_comment, - [82741] = 7, + [84472] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5984), 1, - anon_sym_RPAREN, - ACTIONS(5986), 1, - anon_sym_COMMA, - STATE(3030), 1, - aux_sym_tuple_type_repeat1, - STATE(2732), 2, + ACTIONS(417), 1, + anon_sym_LBRACE, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + STATE(1885), 1, + sym_block, + STATE(3841), 1, + sym_label, + STATE(2795), 2, sym_line_comment, sym_block_comment, - [82764] = 5, - ACTIONS(3), 1, + [84495] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5988), 1, - aux_sym_token_repetition_pattern_token1, - STATE(2733), 2, + ACTIONS(417), 1, + anon_sym_LBRACE, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + STATE(1683), 1, + sym_block, + STATE(3841), 1, + sym_label, + STATE(2796), 2, sym_line_comment, sym_block_comment, - ACTIONS(5990), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [82783] = 5, - ACTIONS(3), 1, + [84518] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5992), 1, - aux_sym_token_repetition_pattern_token1, - STATE(2734), 2, + ACTIONS(417), 1, + anon_sym_LBRACE, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + STATE(1892), 1, + sym_block, + STATE(3841), 1, + sym_label, + STATE(2797), 2, sym_line_comment, sym_block_comment, - ACTIONS(5994), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [82802] = 7, + [84541] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3438), 1, - anon_sym_LT2, - ACTIONS(5306), 1, - sym_super, - ACTIONS(5996), 1, - sym_identifier, - STATE(1498), 1, - sym_type_arguments, - STATE(2735), 2, + ACTIONS(5928), 1, + anon_sym_DQUOTE, + STATE(2809), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5868), 2, + sym_string_content, + sym_escape_sequence, + STATE(2798), 2, sym_line_comment, sym_block_comment, - [82825] = 7, + [84562] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4674), 1, + ACTIONS(5922), 1, anon_sym_LPAREN, - ACTIONS(5069), 1, - anon_sym_LT, - STATE(2320), 1, - sym_parameters, - STATE(3386), 1, - sym_type_parameters, - STATE(2736), 2, + ACTIONS(5924), 1, + anon_sym_LBRACK, + ACTIONS(5926), 1, + anon_sym_LBRACE, + STATE(1118), 1, + sym_delim_token_tree, + STATE(2799), 2, sym_line_comment, sym_block_comment, - [82848] = 7, + [84585] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5998), 1, - anon_sym_SEMI, - ACTIONS(6000), 1, - anon_sym_EQ, - ACTIONS(6002), 1, - anon_sym_else, - STATE(2737), 2, + ACTIONS(5560), 1, + anon_sym_PIPE, + ACTIONS(5930), 1, + anon_sym_RBRACK, + ACTIONS(5932), 1, + anon_sym_COMMA, + STATE(3091), 1, + aux_sym_slice_pattern_repeat1, + STATE(2800), 2, sym_line_comment, sym_block_comment, - [82871] = 4, + [84608] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2738), 2, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(5766), 1, + sym_super, + ACTIONS(5934), 1, + sym_identifier, + STATE(2188), 1, + sym_type_arguments, + STATE(2801), 2, sym_line_comment, sym_block_comment, - ACTIONS(1005), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [82888] = 7, + [84631] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3438), 1, + ACTIONS(4615), 1, anon_sym_LT2, - ACTIONS(5306), 1, + ACTIONS(5766), 1, sym_super, - ACTIONS(5811), 1, + ACTIONS(5934), 1, sym_identifier, - STATE(1635), 1, + STATE(2185), 1, sym_type_arguments, - STATE(2739), 2, + STATE(2802), 2, sym_line_comment, sym_block_comment, - [82911] = 7, + [84654] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, - anon_sym_where, - STATE(1177), 1, - sym_declaration_list, - STATE(3214), 1, - sym_where_clause, - STATE(2740), 2, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(5766), 1, + sym_super, + ACTIONS(5936), 1, + sym_identifier, + STATE(3782), 1, + sym_type_arguments, + STATE(2803), 2, sym_line_comment, sym_block_comment, - [82934] = 7, + [84677] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(6004), 1, - anon_sym_SEMI, - STATE(3578), 1, - sym_where_clause, - STATE(2741), 2, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(5766), 1, + sym_super, + ACTIONS(5936), 1, + sym_identifier, + STATE(3613), 1, + sym_type_arguments, + STATE(2804), 2, sym_line_comment, sym_block_comment, - [82957] = 5, + [84700] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6006), 1, - anon_sym_COMMA, - ACTIONS(5874), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2742), 3, + ACTIONS(2287), 1, + anon_sym_SQUOTE, + ACTIONS(5798), 1, + sym_identifier, + ACTIONS(5938), 1, + anon_sym_GT, + STATE(3321), 1, + sym_lifetime, + STATE(2805), 2, sym_line_comment, sym_block_comment, - aux_sym_slice_pattern_repeat1, - [82976] = 7, + [84723] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, + ACTIONS(417), 1, anon_sym_LBRACE, - ACTIONS(5071), 1, - anon_sym_where, - STATE(1193), 1, - sym_declaration_list, - STATE(3218), 1, - sym_where_clause, - STATE(2743), 2, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + STATE(1935), 1, + sym_block, + STATE(3841), 1, + sym_label, + STATE(2806), 2, sym_line_comment, sym_block_comment, - [82999] = 7, + [84746] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3084), 1, + ACTIONS(2287), 1, anon_sym_SQUOTE, - ACTIONS(5914), 1, + ACTIONS(5798), 1, sym_identifier, - ACTIONS(6009), 1, + ACTIONS(5940), 1, anon_sym_GT, - STATE(3383), 1, + STATE(3321), 1, sym_lifetime, - STATE(2744), 2, + STATE(2807), 2, sym_line_comment, sym_block_comment, - [83022] = 5, + [84769] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4654), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(6011), 2, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(5942), 1, anon_sym_RPAREN, + ACTIONS(5944), 1, anon_sym_COMMA, - STATE(2745), 2, + STATE(3103), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(2808), 2, sym_line_comment, sym_block_comment, - [83041] = 4, + [84792] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2746), 2, + ACTIONS(5946), 1, + anon_sym_DQUOTE, + ACTIONS(5948), 2, + sym_string_content, + sym_escape_sequence, + STATE(2809), 3, sym_line_comment, sym_block_comment, - ACTIONS(1009), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [83058] = 7, + aux_sym_string_literal_repeat1, + [84811] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5469), 1, + ACTIONS(417), 1, anon_sym_LBRACE, - STATE(1198), 1, - sym_enum_variant_list, - STATE(3227), 1, - sym_where_clause, - STATE(2747), 2, - sym_line_comment, - sym_block_comment, - [83081] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2748), 2, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + STATE(1944), 1, + sym_block, + STATE(3841), 1, + sym_label, + STATE(2810), 2, sym_line_comment, sym_block_comment, - ACTIONS(6013), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [83098] = 7, + [84834] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5067), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - STATE(1204), 1, - sym_field_declaration_list, - STATE(3232), 1, + ACTIONS(5072), 1, + anon_sym_LBRACE, + STATE(542), 1, + sym_declaration_list, + STATE(3288), 1, sym_where_clause, - STATE(2749), 2, - sym_line_comment, - sym_block_comment, - [83121] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5831), 1, - sym_super, - ACTIONS(5918), 1, - sym_identifier, - STATE(2128), 1, - sym_type_arguments, - STATE(2750), 2, - sym_line_comment, - sym_block_comment, - [83144] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(6015), 1, - anon_sym_COLON, - STATE(2751), 2, + STATE(2811), 2, sym_line_comment, sym_block_comment, - ACTIONS(5029), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [83163] = 5, + [84857] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6017), 1, - anon_sym_COLON_COLON, - STATE(2752), 2, + ACTIONS(5951), 1, + anon_sym_DQUOTE, + STATE(2817), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5868), 2, + sym_string_content, + sym_escape_sequence, + STATE(2812), 2, sym_line_comment, sym_block_comment, - ACTIONS(4919), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83182] = 7, + [84878] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5306), 1, - sym_super, - ACTIONS(5898), 1, - sym_identifier, - STATE(3553), 1, - sym_type_arguments, - STATE(2753), 2, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + STATE(423), 1, + sym_block, + STATE(3801), 1, + sym_label, + STATE(2813), 2, sym_line_comment, sym_block_comment, - [83205] = 7, + [84901] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(417), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - STATE(1544), 1, + STATE(1758), 1, sym_block, - STATE(3714), 1, + STATE(3841), 1, sym_label, - STATE(2754), 2, + STATE(2814), 2, sym_line_comment, sym_block_comment, - [83228] = 5, + [84924] = 7, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3210), 1, - anon_sym_PLUS, - STATE(2755), 2, + ACTIONS(5953), 1, + anon_sym_async, + ACTIONS(5955), 1, + anon_sym_move, + STATE(155), 1, + sym_closure_parameters, + STATE(2815), 2, sym_line_comment, sym_block_comment, - ACTIONS(6019), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [83247] = 6, + [84947] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6021), 1, - anon_sym_EQ, - ACTIONS(6023), 2, - anon_sym_GT, + ACTIONS(5556), 1, + anon_sym_RPAREN, + ACTIONS(5560), 1, + anon_sym_PIPE, + ACTIONS(5562), 1, anon_sym_COMMA, - STATE(2756), 2, + STATE(3159), 1, + aux_sym_slice_pattern_repeat1, + STATE(2816), 2, sym_line_comment, sym_block_comment, - [83268] = 5, - ACTIONS(3), 1, + [84970] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6025), 1, - aux_sym_token_repetition_pattern_token1, - STATE(2757), 2, + ACTIONS(5957), 1, + anon_sym_DQUOTE, + STATE(2809), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5868), 2, + sym_string_content, + sym_escape_sequence, + STATE(2817), 2, sym_line_comment, sym_block_comment, - ACTIONS(6027), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [83287] = 7, + [84991] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4178), 1, + ACTIONS(5959), 1, anon_sym_LPAREN, - ACTIONS(4672), 1, - anon_sym_LT2, - STATE(1712), 1, - sym_parameters, - STATE(2026), 1, - sym_type_arguments, - STATE(2758), 2, + ACTIONS(5961), 1, + anon_sym_LBRACK, + ACTIONS(5963), 1, + anon_sym_LBRACE, + STATE(1973), 1, + sym_delim_token_tree, + STATE(2818), 2, sym_line_comment, sym_block_comment, - [83310] = 5, + [85014] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6029), 1, - anon_sym_COMMA, - ACTIONS(4296), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2759), 3, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(5766), 1, + sym_super, + ACTIONS(5965), 1, + sym_identifier, + STATE(2188), 1, + sym_type_arguments, + STATE(2819), 2, sym_line_comment, sym_block_comment, - aux_sym_arguments_repeat1, - [83329] = 7, + [85037] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(6032), 1, - anon_sym_SEMI, - STATE(3726), 1, - sym_where_clause, - STATE(2760), 2, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(5766), 1, + sym_super, + ACTIONS(5965), 1, + sym_identifier, + STATE(2185), 1, + sym_type_arguments, + STATE(2820), 2, sym_line_comment, sym_block_comment, - [83352] = 7, + [85060] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(3634), 1, - sym_block, - STATE(3714), 1, - sym_label, - STATE(2761), 2, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(5263), 1, + sym_super, + ACTIONS(5936), 1, + sym_identifier, + STATE(3782), 1, + sym_type_arguments, + STATE(2821), 2, sym_line_comment, sym_block_comment, - [83375] = 7, + [85083] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6034), 1, - anon_sym_LPAREN, - ACTIONS(6036), 1, - anon_sym_LBRACK, - ACTIONS(6038), 1, - anon_sym_LBRACE, - STATE(402), 1, - sym_delim_token_tree, - STATE(2762), 2, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(5263), 1, + sym_super, + ACTIONS(5936), 1, + sym_identifier, + STATE(3613), 1, + sym_type_arguments, + STATE(2822), 2, sym_line_comment, sym_block_comment, - [83398] = 7, + [85106] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(1469), 1, - sym_block, - STATE(3714), 1, - sym_label, - STATE(2763), 2, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5967), 1, + anon_sym_SEMI, + STATE(3877), 1, + sym_where_clause, + STATE(2823), 2, sym_line_comment, sym_block_comment, - [83421] = 6, + [85129] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4615), 1, anon_sym_LT2, - STATE(3553), 1, - sym_type_arguments, - ACTIONS(5306), 2, - sym_identifier, + ACTIONS(5766), 1, sym_super, - STATE(2764), 2, + ACTIONS(5969), 1, + sym_identifier, + STATE(3782), 1, + sym_type_arguments, + STATE(2824), 2, sym_line_comment, sym_block_comment, - [83442] = 6, + [85152] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - STATE(3591), 1, - sym_type_arguments, - ACTIONS(5306), 2, - sym_identifier, - sym_super, - STATE(2765), 2, + ACTIONS(5971), 1, + anon_sym_DQUOTE, + STATE(2827), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5868), 2, + sym_string_content, + sym_escape_sequence, + STATE(2825), 2, sym_line_comment, sym_block_comment, - [83463] = 7, + [85173] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5131), 1, - anon_sym_LBRACE, - STATE(752), 1, - sym_field_declaration_list, - STATE(3285), 1, - sym_where_clause, - STATE(2766), 2, + ACTIONS(5560), 1, + anon_sym_PIPE, + STATE(2826), 2, sym_line_comment, sym_block_comment, - [83486] = 7, + ACTIONS(5973), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [85192] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4674), 1, - anon_sym_LPAREN, - ACTIONS(5069), 1, - anon_sym_LT, - STATE(2333), 1, - sym_parameters, - STATE(3401), 1, - sym_type_parameters, - STATE(2767), 2, + ACTIONS(5975), 1, + anon_sym_DQUOTE, + STATE(2809), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5868), 2, + sym_string_content, + sym_escape_sequence, + STATE(2827), 2, sym_line_comment, sym_block_comment, - [83509] = 7, + [85213] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(1471), 1, - sym_block, - STATE(3714), 1, - sym_label, - STATE(2768), 2, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(5977), 1, + anon_sym_EQ, + ACTIONS(5979), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2828), 2, sym_line_comment, sym_block_comment, - [83532] = 5, + [85234] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4654), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(6040), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2769), 2, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(5766), 1, + sym_super, + ACTIONS(5981), 1, + sym_identifier, + STATE(3782), 1, + sym_type_arguments, + STATE(2829), 2, sym_line_comment, sym_block_comment, - [83551] = 7, + [85257] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4615), 1, anon_sym_LT2, - ACTIONS(5306), 1, + ACTIONS(5766), 1, sym_super, - ACTIONS(5898), 1, + ACTIONS(5981), 1, sym_identifier, - STATE(3591), 1, + STATE(3613), 1, sym_type_arguments, - STATE(2770), 2, + STATE(2830), 2, sym_line_comment, sym_block_comment, - [83574] = 7, + [85280] = 7, ACTIONS(19), 1, anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - STATE(423), 1, + STATE(402), 1, sym_block, - STATE(3621), 1, + STATE(3801), 1, sym_label, - STATE(2771), 2, + STATE(2831), 2, sym_line_comment, sym_block_comment, - [83597] = 6, + [85303] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6042), 1, - anon_sym_DQUOTE, - STATE(2714), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5827), 2, - sym_string_content, - sym_escape_sequence, - STATE(2772), 2, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + STATE(430), 1, + sym_block, + STATE(3801), 1, + sym_label, + STATE(2832), 2, sym_line_comment, sym_block_comment, - [83618] = 5, - ACTIONS(3), 1, + [85326] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6044), 1, - aux_sym_token_repetition_pattern_token1, - STATE(2773), 2, + ACTIONS(5983), 1, + sym_identifier, + STATE(2833), 2, sym_line_comment, sym_block_comment, - ACTIONS(6046), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [83637] = 7, + ACTIONS(5985), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [85345] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - STATE(3556), 1, + STATE(1497), 1, sym_block, - STATE(3714), 1, + STATE(3775), 1, sym_label, - STATE(2774), 2, + STATE(2834), 2, sym_line_comment, sym_block_comment, - [83660] = 7, + [85368] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - STATE(3558), 1, + STATE(1499), 1, sym_block, - STATE(3714), 1, + STATE(3775), 1, sym_label, - STATE(2775), 2, + STATE(2835), 2, sym_line_comment, sym_block_comment, - [83683] = 7, + [85391] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_PIPE, - ACTIONS(5753), 1, - anon_sym_RPAREN, - ACTIONS(5757), 1, - anon_sym_COMMA, - STATE(2969), 1, - aux_sym_slice_pattern_repeat1, - STATE(2776), 2, + ACTIONS(5987), 1, + anon_sym_DQUOTE, + STATE(2876), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5868), 2, + sym_string_content, + sym_escape_sequence, + STATE(2836), 2, sym_line_comment, sym_block_comment, - [83706] = 7, + [85412] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4615), 1, anon_sym_LT2, - ACTIONS(5831), 1, - sym_super, - ACTIONS(5898), 1, - sym_identifier, - STATE(2128), 1, + ACTIONS(4617), 1, + anon_sym_LPAREN, + STATE(2082), 1, sym_type_arguments, - STATE(2777), 2, - sym_line_comment, - sym_block_comment, - [83729] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1383), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(494), 1, - sym_block, - STATE(3778), 1, - sym_label, - STATE(2778), 2, - sym_line_comment, - sym_block_comment, - [83752] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6048), 1, - anon_sym_RPAREN, - ACTIONS(6050), 1, - anon_sym_COMMA, - STATE(2882), 1, - aux_sym_tuple_type_repeat1, - STATE(2779), 2, + STATE(2518), 1, + sym_parameters, + STATE(2837), 2, sym_line_comment, sym_block_comment, - [83775] = 7, + [85435] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5131), 1, - anon_sym_LBRACE, - STATE(604), 1, - sym_field_declaration_list, - STATE(3340), 1, - sym_where_clause, - STATE(2780), 2, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(5263), 1, + sym_super, + ACTIONS(5981), 1, + sym_identifier, + STATE(3782), 1, + sym_type_arguments, + STATE(2838), 2, sym_line_comment, sym_block_comment, - [83798] = 7, + [85458] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1617), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(2207), 1, - sym_block, - STATE(3770), 1, - sym_label, - STATE(2781), 2, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(5263), 1, + sym_super, + ACTIONS(5981), 1, + sym_identifier, + STATE(3613), 1, + sym_type_arguments, + STATE(2839), 2, sym_line_comment, sym_block_comment, - [83821] = 7, + [85481] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4674), 1, - anon_sym_LPAREN, - ACTIONS(5069), 1, - anon_sym_LT, - STATE(2336), 1, - sym_parameters, - STATE(3360), 1, - sym_type_parameters, - STATE(2782), 2, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(5766), 1, + sym_super, + ACTIONS(5969), 1, + sym_identifier, + STATE(3613), 1, + sym_type_arguments, + STATE(2840), 2, sym_line_comment, sym_block_comment, - [83844] = 5, + [85504] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5920), 1, - anon_sym_COLON_COLON, - STATE(2783), 2, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5989), 1, + anon_sym_SEMI, + STATE(3616), 1, + sym_where_clause, + STATE(2841), 2, sym_line_comment, sym_block_comment, - ACTIONS(4897), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83863] = 7, + [85527] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - STATE(1465), 1, + STATE(3686), 1, sym_block, - STATE(3714), 1, + STATE(3775), 1, sym_label, - STATE(2784), 2, - sym_line_comment, - sym_block_comment, - [83886] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(6052), 1, - anon_sym_COLON_COLON, - STATE(2785), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4861), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83905] = 7, + STATE(2842), 2, + sym_line_comment, + sym_block_comment, + [85550] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6034), 1, - anon_sym_LPAREN, - ACTIONS(6036), 1, - anon_sym_LBRACK, - ACTIONS(6038), 1, - anon_sym_LBRACE, - STATE(419), 1, - sym_delim_token_tree, - STATE(2786), 2, + ACTIONS(3367), 1, + anon_sym_LT2, + ACTIONS(5263), 1, + sym_super, + ACTIONS(5991), 1, + sym_identifier, + STATE(1552), 1, + sym_type_arguments, + STATE(2843), 2, sym_line_comment, sym_block_comment, - [83928] = 7, + [85573] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - STATE(3540), 1, + STATE(3708), 1, sym_block, - STATE(3714), 1, + STATE(3775), 1, sym_label, - STATE(2787), 2, + STATE(2844), 2, sym_line_comment, sym_block_comment, - [83951] = 7, + [85596] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(1523), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - STATE(3544), 1, + STATE(2289), 1, sym_block, - STATE(3714), 1, + STATE(3829), 1, sym_label, - STATE(2788), 2, + STATE(2845), 2, sym_line_comment, sym_block_comment, - [83974] = 7, + [85619] = 7, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4712), 1, - anon_sym_BANG, - ACTIONS(4775), 1, - anon_sym_COLON_COLON, - STATE(2024), 1, - sym_type_arguments, - STATE(2789), 2, + ACTIONS(5993), 1, + anon_sym_async, + ACTIONS(5995), 1, + anon_sym_move, + STATE(183), 1, + sym_closure_parameters, + STATE(2846), 2, sym_line_comment, sym_block_comment, - [83997] = 5, + [85642] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6052), 1, + ACTIONS(4609), 1, + anon_sym_DOT_DOT, + ACTIONS(5305), 1, anon_sym_COLON_COLON, - STATE(2790), 2, + ACTIONS(4611), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2847), 2, sym_line_comment, sym_block_comment, - ACTIONS(4919), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84016] = 7, + [85663] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(983), 1, + anon_sym_LBRACE, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + STATE(509), 1, + sym_block, + STATE(3840), 1, + sym_label, + STATE(2848), 2, + sym_line_comment, + sym_block_comment, + [85686] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3095), 1, anon_sym_PLUS, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(6054), 1, + ACTIONS(5997), 1, anon_sym_SEMI, - STATE(3613), 1, + STATE(3618), 1, sym_where_clause, - STATE(2791), 2, + STATE(2849), 2, sym_line_comment, sym_block_comment, - [84039] = 7, + [85709] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1365), 1, - anon_sym_RPAREN, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5745), 1, - anon_sym_COMMA, - STATE(2955), 1, - aux_sym_parameters_repeat1, - STATE(2792), 2, + ACTIONS(4617), 1, + anon_sym_LPAREN, + ACTIONS(5022), 1, + anon_sym_LT, + STATE(2359), 1, + sym_parameters, + STATE(3416), 1, + sym_type_parameters, + STATE(2850), 2, sym_line_comment, sym_block_comment, - [84062] = 7, + [85732] = 7, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5636), 1, - anon_sym_RPAREN, - ACTIONS(5638), 1, - anon_sym_COMMA, - STATE(3043), 1, - aux_sym_parameters_repeat1, - STATE(2793), 2, + ACTIONS(4842), 1, + sym_crate, + ACTIONS(5999), 1, + sym_identifier, + STATE(3653), 1, + sym_visibility_modifier, + STATE(2851), 2, sym_line_comment, sym_block_comment, - [84085] = 5, + [85755] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6056), 1, + ACTIONS(6001), 1, anon_sym_in, - STATE(2794), 2, + STATE(2852), 2, sym_line_comment, sym_block_comment, - ACTIONS(6058), 3, + ACTIONS(6003), 3, sym_self, sym_super, sym_crate, - [84104] = 7, + [85774] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(6005), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(3593), 1, - sym_block, - STATE(3714), 1, - sym_label, - STATE(2795), 2, - sym_line_comment, - sym_block_comment, - [84127] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5164), 1, - anon_sym_COLON, - STATE(2026), 1, - sym_type_arguments, - STATE(2550), 1, - sym_trait_bounds, - STATE(2796), 2, + ACTIONS(6007), 1, + anon_sym_for, + ACTIONS(6009), 1, + anon_sym_loop, + ACTIONS(6011), 1, + anon_sym_while, + STATE(2853), 2, sym_line_comment, sym_block_comment, - [84150] = 7, + [85797] = 7, ACTIONS(19), 1, anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - STATE(410), 1, + STATE(442), 1, sym_block, - STATE(3621), 1, + STATE(3801), 1, sym_label, - STATE(2797), 2, + STATE(2854), 2, sym_line_comment, sym_block_comment, - [84173] = 7, + [85820] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(3623), 1, - sym_block, - STATE(3714), 1, - sym_label, - STATE(2798), 2, + ACTIONS(6013), 1, + anon_sym_COMMA, + ACTIONS(5973), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2855), 3, sym_line_comment, sym_block_comment, - [84196] = 7, + aux_sym_slice_pattern_repeat1, + [85839] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3084), 1, - anon_sym_SQUOTE, - ACTIONS(5914), 1, - sym_identifier, - ACTIONS(6060), 1, - anon_sym_GT, - STATE(3383), 1, - sym_lifetime, - STATE(2799), 2, + ACTIONS(4774), 1, + anon_sym_DOT_DOT, + ACTIONS(6016), 1, + anon_sym_COLON_COLON, + ACTIONS(4776), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2856), 2, sym_line_comment, sym_block_comment, - [84219] = 7, + [85860] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3084), 1, - anon_sym_SQUOTE, - ACTIONS(5914), 1, - sym_identifier, - ACTIONS(6062), 1, - anon_sym_GT, - STATE(3383), 1, - sym_lifetime, - STATE(2800), 2, + STATE(2857), 2, sym_line_comment, sym_block_comment, - [84242] = 7, + ACTIONS(3319), 4, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + [85877] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3438), 1, + ACTIONS(4615), 1, anon_sym_LT2, - ACTIONS(3674), 1, + ACTIONS(5862), 1, anon_sym_COLON_COLON, - ACTIONS(4712), 1, - anon_sym_BANG, - STATE(1284), 1, + ACTIONS(6018), 1, + anon_sym_for, + STATE(2083), 1, sym_type_arguments, - STATE(2801), 2, + STATE(2858), 2, + sym_line_comment, + sym_block_comment, + [85900] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5109), 1, + anon_sym_COLON, + STATE(3457), 1, + sym_trait_bounds, + ACTIONS(5708), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2859), 2, sym_line_comment, sym_block_comment, - [84265] = 7, + [85921] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3095), 1, anon_sym_PLUS, - ACTIONS(6064), 1, + ACTIONS(6020), 1, anon_sym_RPAREN, - ACTIONS(6066), 1, + ACTIONS(6022), 1, anon_sym_COMMA, - STATE(2977), 1, + STATE(3190), 1, aux_sym_ordered_field_declaration_list_repeat1, - STATE(2802), 2, + STATE(2860), 2, sym_line_comment, sym_block_comment, - [84288] = 7, + [85944] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4184), 1, + ACTIONS(3367), 1, anon_sym_LT2, - ACTIONS(4298), 1, + ACTIONS(3585), 1, anon_sym_COLON_COLON, - ACTIONS(4712), 1, + ACTIONS(4974), 1, anon_sym_BANG, - STATE(1659), 1, + STATE(1411), 1, sym_type_arguments, - STATE(2803), 2, + STATE(2861), 2, sym_line_comment, sym_block_comment, - [84311] = 7, + [85967] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4674), 1, - anon_sym_LPAREN, - ACTIONS(5069), 1, - anon_sym_LT, - STATE(2315), 1, - sym_parameters, - STATE(3381), 1, - sym_type_parameters, - STATE(2804), 2, + ACTIONS(6024), 1, + anon_sym_COLON, + STATE(2862), 2, sym_line_comment, sym_block_comment, - [84334] = 7, - ACTIONS(27), 1, + ACTIONS(4970), 3, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_COMMA, + [85986] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6068), 1, - anon_sym_async, - ACTIONS(6070), 1, - anon_sym_move, - STATE(255), 1, - sym_closure_parameters, - STATE(2805), 2, + ACTIONS(6026), 1, + anon_sym_DQUOTE, + STATE(2877), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5868), 2, + sym_string_content, + sym_escape_sequence, + STATE(2863), 2, sym_line_comment, sym_block_comment, - [84357] = 6, + [86007] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4666), 1, - anon_sym_DOT_DOT, - ACTIONS(5352), 1, - anon_sym_COLON_COLON, - ACTIONS(4668), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2806), 2, + ACTIONS(339), 1, + anon_sym_LBRACE, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + STATE(3765), 1, + sym_block, + STATE(3775), 1, + sym_label, + STATE(2864), 2, sym_line_comment, sym_block_comment, - [84378] = 7, + [86030] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5461), 1, - anon_sym_LBRACE, - STATE(622), 1, - sym_enum_variant_list, - STATE(3294), 1, - sym_where_clause, - STATE(2807), 2, + ACTIONS(4617), 1, + anon_sym_LPAREN, + ACTIONS(5022), 1, + anon_sym_LT, + STATE(2363), 1, + sym_parameters, + STATE(3441), 1, + sym_type_parameters, + STATE(2865), 2, sym_line_comment, sym_block_comment, - [84401] = 5, + [86053] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5920), 1, - anon_sym_COLON_COLON, - STATE(2808), 2, + ACTIONS(5235), 1, + anon_sym_LPAREN, + ACTIONS(5237), 1, + anon_sym_LBRACK, + ACTIONS(5241), 1, + anon_sym_LBRACE, + STATE(1548), 1, + sym_delim_token_tree, + STATE(2866), 2, sym_line_comment, sym_block_comment, - ACTIONS(4879), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84420] = 7, + [86076] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1383), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - STATE(491), 1, + STATE(1553), 1, sym_block, - STATE(3778), 1, + STATE(3775), 1, sym_label, - STATE(2809), 2, + STATE(2867), 2, sym_line_comment, sym_block_comment, - [84443] = 7, + [86099] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6072), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(6074), 1, - anon_sym_for, - ACTIONS(6076), 1, - anon_sym_loop, - ACTIONS(6078), 1, - anon_sym_while, - STATE(2810), 2, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + STATE(1429), 1, + sym_block, + STATE(3775), 1, + sym_label, + STATE(2868), 2, sym_line_comment, sym_block_comment, - [84466] = 5, + [86122] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6052), 1, - anon_sym_COLON_COLON, - STATE(2811), 2, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(5109), 1, + anon_sym_COLON, + STATE(2082), 1, + sym_type_arguments, + STATE(2648), 1, + sym_trait_bounds, + STATE(2869), 2, sym_line_comment, sym_block_comment, - ACTIONS(4871), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84485] = 5, + [86145] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6080), 1, - anon_sym_COLON_COLON, - STATE(2812), 2, + ACTIONS(4615), 1, + anon_sym_LT2, + STATE(3782), 1, + sym_type_arguments, + ACTIONS(5766), 2, + sym_identifier, + sym_super, + STATE(2870), 2, sym_line_comment, sym_block_comment, - ACTIONS(4871), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84504] = 5, + [86166] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3210), 1, + ACTIONS(3095), 1, anon_sym_PLUS, - STATE(2813), 2, + STATE(2871), 2, sym_line_comment, sym_block_comment, - ACTIONS(6082), 3, - anon_sym_COLON, - anon_sym_GT, + ACTIONS(6028), 3, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_COMMA, - [84523] = 7, + [86185] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4933), 1, - anon_sym_for, - ACTIONS(5803), 1, - anon_sym_COLON_COLON, - STATE(2027), 1, - sym_type_arguments, - STATE(2814), 2, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(6030), 1, + anon_sym_SEMI, + STATE(3743), 1, + sym_where_clause, + STATE(2872), 2, sym_line_comment, sym_block_comment, - [84546] = 7, + [86208] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6084), 1, - anon_sym_SEMI, - ACTIONS(6086), 1, - anon_sym_EQ, - ACTIONS(6088), 1, - anon_sym_else, - STATE(2815), 2, + ACTIONS(339), 1, + anon_sym_LBRACE, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + STATE(1576), 1, + sym_block, + STATE(3775), 1, + sym_label, + STATE(2873), 2, sym_line_comment, sym_block_comment, - [84569] = 5, + [86231] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6080), 1, - anon_sym_COLON_COLON, - STATE(2816), 2, + ACTIONS(339), 1, + anon_sym_LBRACE, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + STATE(3775), 1, + sym_label, + STATE(3778), 1, + sym_block, + STATE(2874), 2, sym_line_comment, sym_block_comment, - ACTIONS(4861), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84588] = 6, + [86254] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4666), 1, - anon_sym_DOT_DOT, - ACTIONS(5394), 1, - anon_sym_COLON_COLON, - ACTIONS(4668), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2817), 2, + ACTIONS(4615), 1, + anon_sym_LT2, + STATE(3613), 1, + sym_type_arguments, + ACTIONS(5766), 2, + sym_identifier, + sym_super, + STATE(2875), 2, sym_line_comment, sym_block_comment, - [84609] = 7, + [86275] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3438), 1, - anon_sym_LT2, - ACTIONS(5306), 1, - sym_super, - ACTIONS(5996), 1, - sym_identifier, - STATE(1516), 1, - sym_type_arguments, - STATE(2818), 2, + ACTIONS(6032), 1, + anon_sym_DQUOTE, + STATE(2809), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5868), 2, + sym_string_content, + sym_escape_sequence, + STATE(2876), 2, sym_line_comment, sym_block_comment, - [84632] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [86296] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(425), 1, - sym_block, - STATE(3621), 1, - sym_label, - STATE(2819), 2, + ACTIONS(6034), 1, + anon_sym_DQUOTE, + STATE(2809), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5868), 2, + sym_string_content, + sym_escape_sequence, + STATE(2877), 2, sym_line_comment, sym_block_comment, - [84655] = 7, + [86317] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6090), 1, + ACTIONS(5235), 1, + anon_sym_LPAREN, + ACTIONS(5237), 1, + anon_sym_LBRACK, + ACTIONS(5241), 1, anon_sym_LBRACE, - ACTIONS(6092), 1, - anon_sym_for, - ACTIONS(6094), 1, - anon_sym_loop, - ACTIONS(6096), 1, - anon_sym_while, - STATE(2820), 2, + STATE(1577), 1, + sym_delim_token_tree, + STATE(2878), 2, sym_line_comment, sym_block_comment, - [84678] = 7, + [86340] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(3714), 1, - sym_label, - STATE(3798), 1, - sym_block, - STATE(2821), 2, + STATE(2879), 2, sym_line_comment, sym_block_comment, - [84701] = 7, - ACTIONS(19), 1, + ACTIONS(4467), 4, anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + [86357] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(414), 1, - sym_block, - STATE(3621), 1, - sym_label, - STATE(2822), 2, + ACTIONS(4617), 1, + anon_sym_LPAREN, + ACTIONS(5022), 1, + anon_sym_LT, + STATE(2368), 1, + sym_parameters, + STATE(3455), 1, + sym_type_parameters, + STATE(2880), 2, sym_line_comment, sym_block_comment, - [84724] = 7, + [86380] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6098), 1, - anon_sym_SEMI, - ACTIONS(6100), 1, - anon_sym_EQ, - ACTIONS(6102), 1, - anon_sym_else, - STATE(2823), 2, + ACTIONS(3367), 1, + anon_sym_LT2, + ACTIONS(5263), 1, + sym_super, + ACTIONS(6036), 1, + sym_identifier, + STATE(1697), 1, + sym_type_arguments, + STATE(2881), 2, sym_line_comment, sym_block_comment, - [84747] = 7, + [86403] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_PIPE, - ACTIONS(6104), 1, - anon_sym_RPAREN, - ACTIONS(6106), 1, - anon_sym_COMMA, - STATE(3023), 1, - aux_sym_tuple_pattern_repeat1, - STATE(2824), 2, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5072), 1, + anon_sym_LBRACE, + STATE(776), 1, + sym_declaration_list, + STATE(3446), 1, + sym_where_clause, + STATE(2882), 2, sym_line_comment, sym_block_comment, - [84770] = 7, + [86426] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(6108), 1, - anon_sym_SEMI, - STATE(3757), 1, - sym_where_clause, - STATE(2825), 2, + ACTIONS(5852), 1, + anon_sym_LPAREN, + ACTIONS(5854), 1, + anon_sym_LBRACK, + ACTIONS(5856), 1, + anon_sym_LBRACE, + STATE(436), 1, + sym_delim_token_tree, + STATE(2883), 2, sym_line_comment, sym_block_comment, - [84793] = 5, + [86449] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6110), 1, + ACTIONS(3367), 1, + anon_sym_LT2, + ACTIONS(5263), 1, + sym_super, + ACTIONS(5991), 1, sym_identifier, - STATE(2826), 2, + STATE(1523), 1, + sym_type_arguments, + STATE(2884), 2, sym_line_comment, sym_block_comment, - ACTIONS(6112), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [84812] = 5, + [86472] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6017), 1, - anon_sym_COLON_COLON, - STATE(2827), 2, + ACTIONS(339), 1, + anon_sym_LBRACE, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + STATE(3622), 1, + sym_block, + STATE(3775), 1, + sym_label, + STATE(2885), 2, sym_line_comment, sym_block_comment, - ACTIONS(4861), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84831] = 7, + [86495] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_PIPE, - ACTIONS(6114), 1, - anon_sym_RBRACK, - ACTIONS(6116), 1, - anon_sym_COMMA, - STATE(3111), 1, - aux_sym_slice_pattern_repeat1, - STATE(2828), 2, + ACTIONS(339), 1, + anon_sym_LBRACE, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + STATE(3623), 1, + sym_block, + STATE(3775), 1, + sym_label, + STATE(2886), 2, sym_line_comment, sym_block_comment, - [84854] = 6, + [86518] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4823), 1, + ACTIONS(4609), 1, anon_sym_DOT_DOT, - ACTIONS(6118), 1, + ACTIONS(5327), 1, anon_sym_COLON_COLON, - ACTIONS(4825), 2, + ACTIONS(4611), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2829), 2, + STATE(2887), 2, sym_line_comment, sym_block_comment, - [84875] = 5, + [86539] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6017), 1, - anon_sym_COLON_COLON, - STATE(2830), 2, + ACTIONS(3367), 1, + anon_sym_LT2, + ACTIONS(5263), 1, + sym_super, + ACTIONS(6036), 1, + sym_identifier, + STATE(1672), 1, + sym_type_arguments, + STATE(2888), 2, sym_line_comment, sym_block_comment, - ACTIONS(4871), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84894] = 7, - ACTIONS(103), 1, + [86562] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(6120), 1, - anon_sym_SEMI, - STATE(3598), 1, - sym_where_clause, - STATE(2831), 2, + ACTIONS(6038), 1, + aux_sym_token_repetition_pattern_token1, + STATE(2889), 2, sym_line_comment, sym_block_comment, - [84917] = 7, + ACTIONS(6040), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [86581] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(6122), 1, - anon_sym_SEMI, - STATE(3599), 1, - sym_where_clause, - STATE(2832), 2, + ACTIONS(339), 1, + anon_sym_LBRACE, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + STATE(3680), 1, + sym_block, + STATE(3775), 1, + sym_label, + STATE(2890), 2, sym_line_comment, sym_block_comment, - [84940] = 7, + [86604] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(5071), 1, - anon_sym_where, - STATE(1252), 1, - sym_declaration_list, - STATE(3305), 1, - sym_where_clause, - STATE(2833), 2, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + STATE(3681), 1, + sym_block, + STATE(3775), 1, + sym_label, + STATE(2891), 2, sym_line_comment, sym_block_comment, - [84963] = 7, + [86627] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6124), 1, - anon_sym_RPAREN, - ACTIONS(6126), 1, - anon_sym_COMMA, - STATE(3114), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2834), 2, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(5862), 1, + anon_sym_COLON_COLON, + ACTIONS(6042), 1, + anon_sym_for, + STATE(2083), 1, + sym_type_arguments, + STATE(2892), 2, sym_line_comment, sym_block_comment, - [84986] = 7, + [86650] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1383), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - STATE(493), 1, + STATE(3736), 1, sym_block, - STATE(3778), 1, + STATE(3775), 1, sym_label, - STATE(2835), 2, + STATE(2893), 2, sym_line_comment, sym_block_comment, - [85009] = 5, + [86673] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6080), 1, + ACTIONS(339), 1, + anon_sym_LBRACE, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + STATE(3775), 1, + sym_label, + STATE(3779), 1, + sym_block, + STATE(2894), 2, + sym_line_comment, + sym_block_comment, + [86696] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3367), 1, + anon_sym_LT2, + ACTIONS(3585), 1, anon_sym_COLON_COLON, - STATE(2836), 2, + ACTIONS(4629), 1, + anon_sym_BANG, + STATE(1411), 1, + sym_type_arguments, + STATE(2895), 2, sym_line_comment, sym_block_comment, - ACTIONS(4919), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85028] = 7, + [86719] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3095), 1, anon_sym_PLUS, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(6128), 1, + ACTIONS(6044), 1, anon_sym_SEMI, - STATE(3580), 1, + STATE(3802), 1, sym_where_clause, - STATE(2837), 2, + STATE(2896), 2, sym_line_comment, sym_block_comment, - [85051] = 7, + [86742] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4065), 1, anon_sym_LT2, - ACTIONS(4925), 1, - anon_sym_for, - ACTIONS(5803), 1, + ACTIONS(4255), 1, anon_sym_COLON_COLON, - STATE(2027), 1, + ACTIONS(4629), 1, + anon_sym_BANG, + STATE(1731), 1, sym_type_arguments, - STATE(2838), 2, - sym_line_comment, - sym_block_comment, - [85074] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(6130), 1, - anon_sym_LPAREN, - ACTIONS(6132), 1, - anon_sym_LBRACK, - ACTIONS(6134), 1, - anon_sym_LBRACE, - STATE(2748), 1, - sym_token_tree, - STATE(2839), 2, + STATE(2897), 2, sym_line_comment, sym_block_comment, - [85097] = 7, + [86765] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3095), 1, anon_sym_PLUS, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(6136), 1, + ACTIONS(6046), 1, anon_sym_SEMI, - STATE(3724), 1, + STATE(3871), 1, sym_where_clause, - STATE(2840), 2, + STATE(2898), 2, sym_line_comment, sym_block_comment, - [85120] = 7, + [86788] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - STATE(1274), 1, - sym_declaration_list, - STATE(3330), 1, + ACTIONS(5417), 1, + anon_sym_LBRACE, + STATE(709), 1, + sym_enum_variant_list, + STATE(3437), 1, sym_where_clause, - STATE(2841), 2, + STATE(2899), 2, sym_line_comment, sym_block_comment, - [85143] = 7, + [86811] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3438), 1, - anon_sym_LT2, - ACTIONS(3674), 1, + ACTIONS(4609), 1, + anon_sym_DOT_DOT, + ACTIONS(5353), 1, anon_sym_COLON_COLON, - ACTIONS(4989), 1, - anon_sym_BANG, - STATE(1284), 1, - sym_type_arguments, - STATE(2842), 2, + ACTIONS(4611), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2900), 2, sym_line_comment, sym_block_comment, - [85166] = 7, + [86832] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5072), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(3518), 1, - sym_block, - STATE(3714), 1, - sym_label, - STATE(2843), 2, + STATE(639), 1, + sym_declaration_list, + STATE(3271), 1, + sym_where_clause, + STATE(2901), 2, sym_line_comment, sym_block_comment, - [85189] = 7, + [86855] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(6138), 1, - anon_sym_SEMI, - STATE(3582), 1, - sym_where_clause, - STATE(2844), 2, + ACTIONS(6048), 1, + anon_sym_LBRACE, + ACTIONS(6050), 1, + anon_sym_for, + ACTIONS(6052), 1, + anon_sym_loop, + ACTIONS(6054), 1, + anon_sym_while, + STATE(2902), 2, sym_line_comment, sym_block_comment, - [85212] = 7, + [86878] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5803), 1, - anon_sym_COLON_COLON, - ACTIONS(6140), 1, - anon_sym_for, - STATE(2027), 1, - sym_type_arguments, - STATE(2845), 2, + ACTIONS(5560), 1, + anon_sym_PIPE, + ACTIONS(6056), 1, + anon_sym_RPAREN, + ACTIONS(6058), 1, + anon_sym_COMMA, + STATE(2975), 1, + aux_sym_tuple_pattern_repeat1, + STATE(2903), 2, sym_line_comment, sym_block_comment, - [85235] = 7, + [86901] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - STATE(3519), 1, + STATE(3728), 1, sym_block, - STATE(3714), 1, + STATE(3775), 1, sym_label, - STATE(2846), 2, + STATE(2904), 2, sym_line_comment, sym_block_comment, - [85258] = 7, + [86924] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5332), 1, - anon_sym_LPAREN, - ACTIONS(5334), 1, - anon_sym_LBRACK, - ACTIONS(5338), 1, - anon_sym_LBRACE, - STATE(1527), 1, - sym_delim_token_tree, - STATE(2847), 2, + ACTIONS(5560), 1, + anon_sym_PIPE, + ACTIONS(6060), 1, + anon_sym_RBRACK, + ACTIONS(6062), 1, + anon_sym_COMMA, + STATE(2981), 1, + aux_sym_slice_pattern_repeat1, + STATE(2905), 2, sym_line_comment, sym_block_comment, - [85281] = 7, + [86947] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1377), 1, - anon_sym_RPAREN, - ACTIONS(3166), 1, + ACTIONS(3095), 1, anon_sym_PLUS, - ACTIONS(5646), 1, - anon_sym_COMMA, - STATE(3052), 1, - aux_sym_parameters_repeat1, - STATE(2848), 2, + ACTIONS(6064), 1, + anon_sym_SEMI, + ACTIONS(6066), 1, + anon_sym_EQ, + ACTIONS(6068), 1, + anon_sym_else, + STATE(2906), 2, sym_line_comment, sym_block_comment, - [85304] = 7, + [86970] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5803), 1, - anon_sym_COLON_COLON, - ACTIONS(6142), 1, - anon_sym_for, - STATE(2027), 1, - sym_type_arguments, - STATE(2849), 2, + ACTIONS(5674), 1, + anon_sym_COLON, + ACTIONS(5676), 1, + anon_sym_PIPE, + ACTIONS(5678), 1, + anon_sym_COMMA, + STATE(3235), 1, + aux_sym_closure_parameters_repeat1, + STATE(2907), 2, sym_line_comment, sym_block_comment, - [85327] = 7, + [86993] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3084), 1, - anon_sym_SQUOTE, - ACTIONS(5914), 1, - sym_identifier, - ACTIONS(6144), 1, - anon_sym_GT, - STATE(3383), 1, - sym_lifetime, - STATE(2850), 2, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(5072), 1, + anon_sym_LBRACE, + STATE(580), 1, + sym_declaration_list, + STATE(3375), 1, + sym_where_clause, + STATE(2908), 2, sym_line_comment, sym_block_comment, - [85350] = 7, + [87016] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3084), 1, - anon_sym_SQUOTE, - ACTIONS(5914), 1, - sym_identifier, - ACTIONS(6146), 1, - anon_sym_GT, - STATE(3383), 1, - sym_lifetime, - STATE(2851), 2, + STATE(2909), 2, sym_line_comment, sym_block_comment, - [85373] = 7, + ACTIONS(1197), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [87033] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(1530), 1, - sym_block, - STATE(3714), 1, - sym_label, - STATE(2852), 2, + ACTIONS(4609), 1, + anon_sym_DOT_DOT, + ACTIONS(5369), 1, + anon_sym_COLON_COLON, + ACTIONS(4611), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2910), 2, sym_line_comment, sym_block_comment, - [85396] = 7, + [87054] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(6070), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(3664), 1, - sym_block, - STATE(3714), 1, - sym_label, - STATE(2853), 2, + ACTIONS(6072), 1, + anon_sym_for, + ACTIONS(6074), 1, + anon_sym_loop, + ACTIONS(6076), 1, + anon_sym_while, + STATE(2911), 2, sym_line_comment, sym_block_comment, - [85419] = 7, + [87077] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, - anon_sym_where, - STATE(1368), 1, - sym_declaration_list, - STATE(3393), 1, - sym_where_clause, - STATE(2854), 2, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(5766), 1, + sym_super, + ACTIONS(6078), 1, + sym_identifier, + STATE(2188), 1, + sym_type_arguments, + STATE(2912), 2, sym_line_comment, sym_block_comment, - [85442] = 7, + [87100] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(1307), 1, - sym_block, - STATE(3714), 1, - sym_label, - STATE(2855), 2, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(4912), 1, + anon_sym_for, + ACTIONS(5862), 1, + anon_sym_COLON_COLON, + STATE(2083), 1, + sym_type_arguments, + STATE(2913), 2, sym_line_comment, sym_block_comment, - [85465] = 7, + [87123] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3084), 1, - anon_sym_SQUOTE, - ACTIONS(5914), 1, + ACTIONS(6080), 1, sym_identifier, - ACTIONS(6148), 1, - anon_sym_GT, - STATE(3383), 1, - sym_lifetime, - STATE(2856), 2, + STATE(2914), 2, sym_line_comment, sym_block_comment, - [85488] = 7, + ACTIONS(6082), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [87142] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5803), 1, - anon_sym_COLON_COLON, - ACTIONS(6150), 1, - anon_sym_for, - STATE(2027), 1, - sym_type_arguments, - STATE(2857), 2, + ACTIONS(3103), 1, + anon_sym_PLUS, + STATE(2915), 2, sym_line_comment, sym_block_comment, - [85511] = 7, + ACTIONS(6084), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [87161] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3383), 1, anon_sym_SQUOTE, - STATE(3665), 1, + STATE(416), 1, sym_block, - STATE(3714), 1, + STATE(3801), 1, sym_label, - STATE(2858), 2, + STATE(2916), 2, sym_line_comment, sym_block_comment, - [85534] = 7, + [87184] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3084), 1, - anon_sym_SQUOTE, - ACTIONS(5914), 1, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(5766), 1, + sym_super, + ACTIONS(6078), 1, sym_identifier, - ACTIONS(6152), 1, - anon_sym_GT, - STATE(3383), 1, - sym_lifetime, - STATE(2859), 2, + STATE(2185), 1, + sym_type_arguments, + STATE(2917), 2, sym_line_comment, sym_block_comment, - [85557] = 4, + [87207] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2860), 2, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(6086), 1, + anon_sym_RPAREN, + ACTIONS(6088), 1, + anon_sym_COMMA, + STATE(3022), 1, + aux_sym_tuple_type_repeat1, + STATE(2918), 2, sym_line_comment, sym_block_comment, - ACTIONS(4436), 4, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - [85574] = 7, + [87230] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3084), 1, - anon_sym_SQUOTE, - ACTIONS(5914), 1, - sym_identifier, - ACTIONS(6154), 1, - anon_sym_GT, - STATE(3383), 1, - sym_lifetime, - STATE(2861), 2, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(4902), 1, + anon_sym_for, + ACTIONS(5862), 1, + anon_sym_COLON_COLON, + STATE(2083), 1, + sym_type_arguments, + STATE(2919), 2, sym_line_comment, sym_block_comment, - [85597] = 7, + [87253] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3084), 1, - anon_sym_SQUOTE, - ACTIONS(5914), 1, - sym_identifier, - ACTIONS(6156), 1, - anon_sym_GT, - STATE(3383), 1, - sym_lifetime, - STATE(2862), 2, + ACTIONS(4597), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(6090), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2920), 2, sym_line_comment, sym_block_comment, - [85620] = 7, + [87272] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3084), 1, - anon_sym_SQUOTE, - ACTIONS(5914), 1, - sym_identifier, - ACTIONS(6158), 1, - anon_sym_GT, - STATE(3383), 1, - sym_lifetime, - STATE(2863), 2, + ACTIONS(5756), 1, + anon_sym_COLON_COLON, + STATE(2921), 2, sym_line_comment, sym_block_comment, - [85643] = 7, + ACTIONS(4876), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87291] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3084), 1, - anon_sym_SQUOTE, - ACTIONS(5914), 1, - sym_identifier, - ACTIONS(6160), 1, - anon_sym_GT, - STATE(3383), 1, - sym_lifetime, - STATE(2864), 2, + ACTIONS(5758), 1, + anon_sym_COLON_COLON, + STATE(2922), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4880), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87310] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(6092), 1, + anon_sym_RPAREN, + ACTIONS(6094), 1, + anon_sym_COMMA, + STATE(3017), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(2923), 2, sym_line_comment, sym_block_comment, - [85666] = 6, + [87333] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4615), 1, anon_sym_LT2, - STATE(3553), 1, + ACTIONS(5862), 1, + anon_sym_COLON_COLON, + ACTIONS(6096), 1, + anon_sym_for, + STATE(2083), 1, sym_type_arguments, - ACTIONS(5831), 2, - sym_identifier, - sym_super, - STATE(2865), 2, + STATE(2924), 2, sym_line_comment, sym_block_comment, - [85687] = 7, + [87356] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4615), 1, anon_sym_LT2, - ACTIONS(5306), 1, - sym_super, - ACTIONS(5807), 1, - sym_identifier, - STATE(3553), 1, + ACTIONS(5862), 1, + anon_sym_COLON_COLON, + ACTIONS(6098), 1, + anon_sym_for, + STATE(2083), 1, sym_type_arguments, - STATE(2866), 2, + STATE(2925), 2, sym_line_comment, sym_block_comment, - [85710] = 7, + [87379] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5332), 1, - anon_sym_LPAREN, - ACTIONS(5334), 1, - anon_sym_LBRACK, - ACTIONS(5338), 1, - anon_sym_LBRACE, - STATE(1548), 1, - sym_delim_token_tree, - STATE(2867), 2, + ACTIONS(5760), 1, + anon_sym_COLON_COLON, + STATE(2926), 2, sym_line_comment, sym_block_comment, - [85733] = 7, + ACTIONS(4880), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87398] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4615), 1, anon_sym_LT2, - ACTIONS(4674), 1, - anon_sym_LPAREN, - STATE(2026), 1, + ACTIONS(5862), 1, + anon_sym_COLON_COLON, + ACTIONS(6100), 1, + anon_sym_for, + STATE(2083), 1, sym_type_arguments, - STATE(2101), 1, - sym_parameters, - STATE(2868), 2, + STATE(2927), 2, sym_line_comment, sym_block_comment, - [85756] = 7, + [87421] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(1546), 1, - sym_block, - STATE(3714), 1, - sym_label, - STATE(2869), 2, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(5263), 1, + sym_super, + ACTIONS(5969), 1, + sym_identifier, + STATE(3782), 1, + sym_type_arguments, + STATE(2928), 2, sym_line_comment, sym_block_comment, - [85779] = 7, + [87444] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5093), 1, - anon_sym_LBRACE, - STATE(675), 1, - sym_declaration_list, - STATE(3346), 1, - sym_where_clause, - STATE(2870), 2, + ACTIONS(5762), 1, + anon_sym_COLON_COLON, + STATE(2929), 2, sym_line_comment, sym_block_comment, - [85802] = 6, + ACTIONS(4880), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87463] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5164), 1, - anon_sym_COLON, - STATE(3376), 1, - sym_trait_bounds, - ACTIONS(5797), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2871), 2, + ACTIONS(3359), 1, + anon_sym_LPAREN, + ACTIONS(4615), 1, + anon_sym_LT2, + STATE(1455), 1, + sym_parameters, + STATE(2082), 1, + sym_type_arguments, + STATE(2930), 2, sym_line_comment, sym_block_comment, - [85823] = 7, + [87486] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, - anon_sym_LPAREN, - ACTIONS(4672), 1, + ACTIONS(4615), 1, anon_sym_LT2, - STATE(1336), 1, - sym_parameters, - STATE(2026), 1, + ACTIONS(4617), 1, + anon_sym_LPAREN, + STATE(2082), 1, sym_type_arguments, - STATE(2872), 2, + STATE(2160), 1, + sym_parameters, + STATE(2931), 2, sym_line_comment, sym_block_comment, - [85846] = 7, + [87509] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(1813), 1, - sym_block, - STATE(3779), 1, - sym_label, - STATE(2873), 2, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(5263), 1, + sym_super, + ACTIONS(5969), 1, + sym_identifier, + STATE(3613), 1, + sym_type_arguments, + STATE(2932), 2, sym_line_comment, sym_block_comment, - [85869] = 7, + [87532] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(5959), 1, + anon_sym_LPAREN, + ACTIONS(5961), 1, + anon_sym_LBRACK, + ACTIONS(5963), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(1815), 1, - sym_block, - STATE(3779), 1, - sym_label, - STATE(2874), 2, + STATE(1971), 1, + sym_delim_token_tree, + STATE(2933), 2, sym_line_comment, sym_block_comment, - [85892] = 4, + [87555] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2875), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3390), 4, - anon_sym_COLON, - anon_sym_PLUS, + ACTIONS(1571), 1, anon_sym_GT, + ACTIONS(6102), 1, anon_sym_COMMA, - [85909] = 6, + STATE(3179), 1, + aux_sym_type_arguments_repeat1, + STATE(2934), 2, + sym_line_comment, + sym_block_comment, + [87575] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6162), 1, - anon_sym_DQUOTE, - STATE(2628), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5827), 2, - sym_string_content, - sym_escape_sequence, - STATE(2876), 2, + STATE(2935), 2, sym_line_comment, sym_block_comment, - [85930] = 7, + ACTIONS(4990), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87591] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5461), 1, - anon_sym_LBRACE, - STATE(597), 1, - sym_enum_variant_list, - STATE(3192), 1, - sym_where_clause, - STATE(2877), 2, + ACTIONS(5062), 1, + anon_sym_move, + STATE(190), 1, + sym_closure_parameters, + STATE(2936), 2, sym_line_comment, sym_block_comment, - [85953] = 6, + [87611] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6164), 1, - anon_sym_GT, - ACTIONS(6166), 1, - anon_sym_COMMA, - STATE(3031), 1, - aux_sym_use_bounds_repeat1, - STATE(2878), 2, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(6104), 1, + anon_sym_for, + STATE(2082), 1, + sym_type_arguments, + STATE(2937), 2, sym_line_comment, sym_block_comment, - [85973] = 6, + [87631] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6168), 1, - anon_sym_RBRACE, - ACTIONS(6170), 1, + ACTIONS(1555), 1, + anon_sym_GT, + ACTIONS(6106), 1, anon_sym_COMMA, - STATE(2915), 1, - aux_sym_struct_pattern_repeat1, - STATE(2879), 2, + STATE(3179), 1, + aux_sym_type_arguments_repeat1, + STATE(2938), 2, sym_line_comment, sym_block_comment, - [85993] = 6, + [87651] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6172), 1, - anon_sym_RBRACE, - ACTIONS(6174), 1, - anon_sym_COMMA, - STATE(2917), 1, - aux_sym_struct_pattern_repeat1, - STATE(2880), 2, + ACTIONS(6108), 1, + anon_sym_move, + STATE(189), 1, + sym_closure_parameters, + STATE(2939), 2, sym_line_comment, sym_block_comment, - [86013] = 5, + [87671] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6176), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2881), 2, + ACTIONS(5072), 1, + anon_sym_LBRACE, + ACTIONS(6110), 1, + anon_sym_SEMI, + STATE(724), 1, + sym_declaration_list, + STATE(2940), 2, sym_line_comment, sym_block_comment, - [86031] = 6, + [87691] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3254), 1, + ACTIONS(3057), 1, anon_sym_RPAREN, - ACTIONS(6178), 1, + ACTIONS(6112), 1, anon_sym_COMMA, - STATE(2990), 1, - aux_sym_tuple_type_repeat1, - STATE(2882), 2, + STATE(2855), 1, + aux_sym_slice_pattern_repeat1, + STATE(2941), 2, sym_line_comment, sym_block_comment, - [86051] = 4, + [87711] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2883), 2, + STATE(2942), 2, sym_line_comment, sym_block_comment, - ACTIONS(4654), 3, + ACTIONS(1361), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [86067] = 6, + [87727] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5696), 1, + ACTIONS(3195), 1, anon_sym_RPAREN, - ACTIONS(5698), 1, + ACTIONS(6114), 1, anon_sym_COMMA, - STATE(2919), 1, - aux_sym_parameters_repeat1, - STATE(2884), 2, + STATE(3171), 1, + aux_sym_tuple_type_repeat1, + STATE(2943), 2, + sym_line_comment, + sym_block_comment, + [87747] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6116), 1, + sym_identifier, + ACTIONS(6118), 1, + anon_sym_await, + ACTIONS(6120), 1, + sym_integer_literal, + STATE(2944), 2, + sym_line_comment, + sym_block_comment, + [87767] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5072), 1, + anon_sym_LBRACE, + ACTIONS(6122), 1, + anon_sym_SEMI, + STATE(692), 1, + sym_declaration_list, + STATE(2945), 2, sym_line_comment, sym_block_comment, - [86087] = 6, + [87787] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6180), 1, - anon_sym_GT, - ACTIONS(6182), 1, + ACTIONS(5534), 1, + anon_sym_RPAREN, + ACTIONS(5536), 1, anon_sym_COMMA, - STATE(2922), 1, - aux_sym_use_bounds_repeat1, - STATE(2885), 2, + STATE(2962), 1, + aux_sym_parameters_repeat1, + STATE(2946), 2, sym_line_comment, sym_block_comment, - [86107] = 6, + [87807] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6184), 1, - anon_sym_GT, - ACTIONS(6186), 1, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(6124), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2923), 1, - aux_sym_use_bounds_repeat1, - STATE(2886), 2, + STATE(2947), 2, sym_line_comment, sym_block_comment, - [86127] = 6, + [87825] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6188), 1, - anon_sym_SEMI, - ACTIONS(6190), 1, - anon_sym_EQ, - STATE(2887), 2, + ACTIONS(5700), 1, + anon_sym_RPAREN, + ACTIONS(5702), 1, + anon_sym_COMMA, + STATE(2958), 1, + aux_sym_parameters_repeat1, + STATE(2948), 2, sym_line_comment, sym_block_comment, - [86147] = 6, + [87845] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(6192), 1, - anon_sym_SEMI, - STATE(701), 1, - sym_declaration_list, - STATE(2888), 2, + ACTIONS(6126), 1, + anon_sym_GT, + ACTIONS(6128), 1, + anon_sym_COMMA, + STATE(2968), 1, + aux_sym_use_bounds_repeat1, + STATE(2949), 2, sym_line_comment, sym_block_comment, - [86167] = 6, + [87865] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(6194), 1, - anon_sym_SEMI, - STATE(3539), 1, - sym_where_clause, - STATE(2889), 2, + ACTIONS(6130), 1, + anon_sym_GT, + ACTIONS(6132), 1, + anon_sym_COMMA, + STATE(2970), 1, + aux_sym_use_bounds_repeat1, + STATE(2950), 2, sym_line_comment, sym_block_comment, - [86187] = 6, + [87885] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6196), 1, + ACTIONS(5271), 1, anon_sym_RBRACE, - ACTIONS(6198), 1, + ACTIONS(6134), 1, anon_sym_COMMA, - STATE(2924), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2890), 2, + STATE(3240), 1, + aux_sym_struct_pattern_repeat1, + STATE(2951), 2, sym_line_comment, sym_block_comment, - [86207] = 6, + [87905] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(931), 1, + ACTIONS(5910), 1, anon_sym_RPAREN, - ACTIONS(4344), 1, + ACTIONS(5912), 1, anon_sym_COMMA, - STATE(2759), 1, - aux_sym_arguments_repeat1, - STATE(2891), 2, + STATE(3066), 1, + aux_sym_tuple_pattern_repeat1, + STATE(2952), 2, sym_line_comment, sym_block_comment, - [86227] = 4, + [87925] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2892), 2, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(6136), 1, + sym_mutable_specifier, + ACTIONS(6138), 1, + sym_self, + STATE(2953), 2, sym_line_comment, sym_block_comment, - ACTIONS(6200), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [86243] = 6, + [87945] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4839), 1, - anon_sym_GT, - ACTIONS(6202), 1, + ACTIONS(1025), 1, + anon_sym_RBRACK, + ACTIONS(6140), 1, anon_sym_COMMA, - STATE(3082), 1, - aux_sym_type_parameters_repeat1, - STATE(2893), 2, + STATE(3040), 1, + aux_sym_array_expression_repeat1, + STATE(2954), 2, sym_line_comment, sym_block_comment, - [86263] = 6, + [87965] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4839), 1, - anon_sym_GT, - ACTIONS(6202), 1, + ACTIONS(4718), 1, + anon_sym_COLON_COLON, + ACTIONS(5457), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2928), 1, - aux_sym_type_parameters_repeat1, - STATE(2894), 2, + STATE(2955), 2, sym_line_comment, sym_block_comment, - [86283] = 6, + [87983] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, + ACTIONS(5072), 1, anon_sym_LBRACE, - ACTIONS(6204), 1, + ACTIONS(6142), 1, anon_sym_SEMI, - STATE(1163), 1, + STATE(694), 1, sym_declaration_list, - STATE(2895), 2, + STATE(2956), 2, sym_line_comment, sym_block_comment, - [86303] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [88003] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5079), 1, - anon_sym_move, - STATE(233), 1, - sym_closure_parameters, - STATE(2896), 2, + ACTIONS(3055), 1, + anon_sym_RPAREN, + ACTIONS(6144), 1, + anon_sym_COMMA, + STATE(2855), 1, + aux_sym_slice_pattern_repeat1, + STATE(2957), 2, sym_line_comment, sym_block_comment, - [86323] = 6, + [88023] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6206), 1, - anon_sym_SEMI, - ACTIONS(6208), 1, - anon_sym_EQ, - STATE(2897), 2, + ACTIONS(1279), 1, + anon_sym_RPAREN, + ACTIONS(5597), 1, + anon_sym_COMMA, + STATE(2963), 1, + aux_sym_parameters_repeat1, + STATE(2958), 2, sym_line_comment, sym_block_comment, - [86343] = 6, + [88043] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6210), 1, - anon_sym_RBRACE, - ACTIONS(6212), 1, + ACTIONS(1561), 1, + anon_sym_GT, + ACTIONS(6146), 1, anon_sym_COMMA, - STATE(2936), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2898), 2, + STATE(2973), 1, + aux_sym_type_arguments_repeat1, + STATE(2959), 2, sym_line_comment, sym_block_comment, - [86363] = 6, + [88063] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(6214), 1, - anon_sym_SEMI, - STATE(3502), 1, - sym_where_clause, - STATE(2899), 2, + ACTIONS(1561), 1, + anon_sym_GT, + ACTIONS(6146), 1, + anon_sym_COMMA, + STATE(3179), 1, + aux_sym_type_arguments_repeat1, + STATE(2960), 2, sym_line_comment, sym_block_comment, - [86383] = 6, + [88083] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(6216), 1, - anon_sym_SEMI, - STATE(3624), 1, - sym_where_clause, - STATE(2900), 2, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(5900), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2961), 2, sym_line_comment, sym_block_comment, - [86403] = 6, + [88101] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6104), 1, + ACTIONS(1285), 1, anon_sym_RPAREN, - ACTIONS(6106), 1, + ACTIONS(5540), 1, anon_sym_COMMA, - STATE(3023), 1, - aux_sym_tuple_pattern_repeat1, - STATE(2901), 2, + STATE(2963), 1, + aux_sym_parameters_repeat1, + STATE(2962), 2, sym_line_comment, sym_block_comment, - [86423] = 6, + [88121] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(6218), 1, - anon_sym_SEMI, - STATE(1191), 1, - sym_declaration_list, - STATE(2902), 2, + ACTIONS(5900), 1, + anon_sym_RPAREN, + ACTIONS(6148), 1, + anon_sym_COMMA, + STATE(2963), 3, sym_line_comment, sym_block_comment, - [86443] = 6, + aux_sym_parameters_repeat1, + [88139] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5009), 1, + ACTIONS(6153), 1, + anon_sym_COLON, + ACTIONS(6151), 2, anon_sym_RBRACE, - ACTIONS(6220), 1, anon_sym_COMMA, - STATE(2906), 1, - aux_sym_field_initializer_list_repeat1, - STATE(2903), 2, - sym_line_comment, - sym_block_comment, - [86463] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(6222), 1, - sym_identifier, - ACTIONS(6224), 1, - anon_sym_await, - ACTIONS(6226), 1, - sym_integer_literal, - STATE(2904), 2, + STATE(2964), 2, sym_line_comment, sym_block_comment, - [86483] = 6, + [88157] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(6228), 1, - anon_sym_SEMI, - STATE(3782), 1, - sym_where_clause, - STATE(2905), 2, + ACTIONS(1285), 1, + anon_sym_RPAREN, + ACTIONS(5540), 1, + anon_sym_COMMA, + STATE(2974), 1, + aux_sym_parameters_repeat1, + STATE(2965), 2, sym_line_comment, sym_block_comment, - [86503] = 5, + [88177] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6230), 1, + ACTIONS(5273), 1, anon_sym_RBRACE, - ACTIONS(6232), 1, + ACTIONS(6155), 1, anon_sym_COMMA, - STATE(2906), 3, + STATE(3240), 1, + aux_sym_struct_pattern_repeat1, + STATE(2966), 2, sym_line_comment, sym_block_comment, - aux_sym_field_initializer_list_repeat1, - [86521] = 6, + [88197] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(965), 1, - anon_sym_RPAREN, - ACTIONS(4308), 1, - anon_sym_COMMA, - STATE(2759), 1, - aux_sym_arguments_repeat1, - STATE(2907), 2, + STATE(2967), 2, sym_line_comment, sym_block_comment, - [86541] = 6, + ACTIONS(4944), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88213] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(6235), 1, - anon_sym_SEMI, - STATE(703), 1, - sym_declaration_list, - STATE(2908), 2, + ACTIONS(5902), 1, + anon_sym_GT, + ACTIONS(6157), 1, + anon_sym_COMMA, + STATE(3003), 1, + aux_sym_use_bounds_repeat1, + STATE(2968), 2, sym_line_comment, sym_block_comment, - [86561] = 6, + [88233] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6237), 1, - anon_sym_EQ_GT, - ACTIONS(6239), 1, - anon_sym_PIPE, - ACTIONS(6241), 1, - anon_sym_if, - STATE(2909), 2, + ACTIONS(5800), 1, + anon_sym_GT, + ACTIONS(6159), 1, + anon_sym_COMMA, + STATE(3003), 1, + aux_sym_use_bounds_repeat1, + STATE(2969), 2, sym_line_comment, sym_block_comment, - [86581] = 5, + [88253] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6243), 2, + ACTIONS(5904), 1, anon_sym_GT, + ACTIONS(6161), 1, anon_sym_COMMA, - STATE(2910), 2, + STATE(3003), 1, + aux_sym_use_bounds_repeat1, + STATE(2970), 2, sym_line_comment, sym_block_comment, - [86599] = 6, + [88273] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(969), 1, - anon_sym_RBRACK, - ACTIONS(6245), 1, - anon_sym_COMMA, - STATE(2759), 1, - aux_sym_arguments_repeat1, - STATE(2911), 2, + ACTIONS(3103), 1, + anon_sym_PLUS, + ACTIONS(6163), 1, + anon_sym_GT, + ACTIONS(6165), 1, + anon_sym_as, + STATE(2971), 2, sym_line_comment, sym_block_comment, - [86619] = 6, + [88293] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1661), 1, - anon_sym_GT, - ACTIONS(6247), 1, - anon_sym_COMMA, - STATE(2951), 1, - aux_sym_type_arguments_repeat1, - STATE(2912), 2, + STATE(2972), 2, sym_line_comment, sym_block_comment, - [86639] = 6, + ACTIONS(6167), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [88309] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1661), 1, + ACTIONS(1565), 1, anon_sym_GT, - ACTIONS(6247), 1, + ACTIONS(6169), 1, anon_sym_COMMA, - STATE(3065), 1, + STATE(3179), 1, aux_sym_type_arguments_repeat1, - STATE(2913), 2, + STATE(2973), 2, sym_line_comment, sym_block_comment, - [86659] = 6, + [88329] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3126), 1, + ACTIONS(1287), 1, anon_sym_RPAREN, - ACTIONS(6249), 1, + ACTIONS(6171), 1, anon_sym_COMMA, - STATE(2742), 1, - aux_sym_slice_pattern_repeat1, - STATE(2914), 2, + STATE(2963), 1, + aux_sym_parameters_repeat1, + STATE(2974), 2, sym_line_comment, sym_block_comment, - [86679] = 6, + [88349] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5400), 1, - anon_sym_RBRACE, - ACTIONS(6251), 1, + ACTIONS(1894), 1, + anon_sym_RPAREN, + ACTIONS(6173), 1, anon_sym_COMMA, - STATE(3074), 1, - aux_sym_struct_pattern_repeat1, - STATE(2915), 2, + STATE(3026), 1, + aux_sym_tuple_pattern_repeat1, + STATE(2975), 2, sym_line_comment, sym_block_comment, - [86699] = 6, + [88369] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3128), 1, + ACTIONS(1277), 1, anon_sym_RPAREN, - ACTIONS(6253), 1, + ACTIONS(5625), 1, anon_sym_COMMA, - STATE(2742), 1, - aux_sym_slice_pattern_repeat1, - STATE(2916), 2, + STATE(2963), 1, + aux_sym_parameters_repeat1, + STATE(2976), 2, sym_line_comment, sym_block_comment, - [86719] = 6, + [88389] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5404), 1, - anon_sym_RBRACE, - ACTIONS(6255), 1, - anon_sym_COMMA, - STATE(3074), 1, - aux_sym_struct_pattern_repeat1, - STATE(2917), 2, + STATE(2977), 2, sym_line_comment, sym_block_comment, - [86739] = 6, + ACTIONS(4946), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88405] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(6257), 1, - anon_sym_SEMI, - STATE(709), 1, - sym_declaration_list, - STATE(2918), 2, + ACTIONS(1267), 1, + anon_sym_RPAREN, + ACTIONS(6175), 1, + anon_sym_COMMA, + STATE(2963), 1, + aux_sym_parameters_repeat1, + STATE(2978), 2, sym_line_comment, sym_block_comment, - [86759] = 6, + [88425] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1365), 1, - anon_sym_RPAREN, - ACTIONS(5745), 1, + ACTIONS(6177), 1, + anon_sym_GT, + ACTIONS(6179), 1, anon_sym_COMMA, - STATE(3098), 1, - aux_sym_parameters_repeat1, - STATE(2919), 2, + STATE(3140), 1, + aux_sym_for_lifetimes_repeat1, + STATE(2979), 2, sym_line_comment, sym_block_comment, - [86779] = 6, + [88445] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1365), 1, + ACTIONS(1277), 1, anon_sym_RPAREN, - ACTIONS(5745), 1, + ACTIONS(5625), 1, anon_sym_COMMA, - STATE(2955), 1, + STATE(3054), 1, aux_sym_parameters_repeat1, - STATE(2920), 2, + STATE(2980), 2, sym_line_comment, sym_block_comment, - [86799] = 6, + [88465] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6259), 1, - anon_sym_SEMI, - ACTIONS(6261), 1, - anon_sym_EQ, - STATE(2921), 2, + ACTIONS(3051), 1, + anon_sym_RBRACK, + ACTIONS(6181), 1, + anon_sym_COMMA, + STATE(2855), 1, + aux_sym_slice_pattern_repeat1, + STATE(2981), 2, sym_line_comment, sym_block_comment, - [86819] = 6, + [88485] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6060), 1, - anon_sym_GT, - ACTIONS(6263), 1, + ACTIONS(6183), 1, + anon_sym_RBRACE, + ACTIONS(6185), 1, anon_sym_COMMA, - STATE(3140), 1, - aux_sym_use_bounds_repeat1, - STATE(2922), 2, + STATE(3188), 1, + aux_sym_field_initializer_list_repeat1, + STATE(2982), 2, sym_line_comment, sym_block_comment, - [86839] = 6, + [88505] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6062), 1, + ACTIONS(5806), 1, anon_sym_GT, - ACTIONS(6265), 1, + ACTIONS(6187), 1, anon_sym_COMMA, - STATE(3140), 1, + STATE(3003), 1, aux_sym_use_bounds_repeat1, - STATE(2923), 2, + STATE(2983), 2, sym_line_comment, sym_block_comment, - [86859] = 6, + [88525] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5095), 1, - anon_sym_RBRACE, - ACTIONS(6267), 1, - anon_sym_COMMA, - STATE(3175), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2924), 2, + STATE(2984), 2, sym_line_comment, sym_block_comment, - [86879] = 6, + ACTIONS(4950), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88541] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5095), 1, - anon_sym_RBRACE, - ACTIONS(6267), 1, + ACTIONS(5808), 1, + anon_sym_GT, + ACTIONS(6189), 1, anon_sym_COMMA, - STATE(2957), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2925), 2, + STATE(3003), 1, + aux_sym_use_bounds_repeat1, + STATE(2985), 2, sym_line_comment, sym_block_comment, - [86899] = 6, + [88561] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3210), 1, - anon_sym_PLUS, - ACTIONS(6269), 1, + ACTIONS(2287), 1, + anon_sym_SQUOTE, + ACTIONS(6191), 1, anon_sym_GT, - ACTIONS(6271), 1, - anon_sym_as, - STATE(2926), 2, + STATE(3302), 1, + sym_lifetime, + STATE(2986), 2, sym_line_comment, sym_block_comment, - [86919] = 4, + [88581] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2927), 2, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(6193), 1, + anon_sym_SEMI, + ACTIONS(6195), 1, + anon_sym_EQ, + STATE(2987), 2, sym_line_comment, sym_block_comment, - ACTIONS(4971), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86935] = 6, + [88601] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4859), 1, + ACTIONS(5804), 1, anon_sym_GT, - ACTIONS(6273), 1, + ACTIONS(6197), 1, anon_sym_COMMA, - STATE(3082), 1, - aux_sym_type_parameters_repeat1, - STATE(2928), 2, + STATE(3003), 1, + aux_sym_use_bounds_repeat1, + STATE(2988), 2, sym_line_comment, sym_block_comment, - [86955] = 6, + [88621] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, + ACTIONS(5072), 1, anon_sym_LBRACE, - ACTIONS(6275), 1, + ACTIONS(6199), 1, anon_sym_SEMI, - STATE(1226), 1, + STATE(666), 1, sym_declaration_list, - STATE(2929), 2, + STATE(2989), 2, sym_line_comment, sym_block_comment, - [86975] = 4, + [88641] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2930), 2, + ACTIONS(4930), 1, + anon_sym_RBRACE, + ACTIONS(6201), 1, + anon_sym_COMMA, + STATE(3031), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2990), 2, sym_line_comment, sym_block_comment, - ACTIONS(4973), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86991] = 6, + [88661] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(6277), 1, - anon_sym_SEMI, - STATE(1232), 1, - sym_declaration_list, - STATE(2931), 2, + ACTIONS(6203), 1, + anon_sym_GT, + ACTIONS(6205), 1, + anon_sym_COMMA, + STATE(2991), 3, sym_line_comment, sym_block_comment, - [87011] = 5, + aux_sym_for_lifetimes_repeat1, + [88679] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6281), 1, - anon_sym_COLON, - ACTIONS(6279), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2932), 2, + ACTIONS(6208), 1, + anon_sym_move, + STATE(152), 1, + sym_closure_parameters, + STATE(2992), 2, sym_line_comment, sym_block_comment, - [87029] = 4, + [88699] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2933), 2, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(6210), 1, + anon_sym_SEMI, + STATE(3661), 1, + sym_where_clause, + STATE(2993), 2, sym_line_comment, sym_block_comment, - ACTIONS(4977), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87045] = 6, + [88719] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6283), 1, - anon_sym_SEMI, - ACTIONS(6285), 1, - anon_sym_EQ, - STATE(2934), 2, + ACTIONS(1015), 1, + anon_sym_RPAREN, + ACTIONS(6212), 1, + anon_sym_COMMA, + STATE(3041), 1, + aux_sym_arguments_repeat1, + STATE(2994), 2, sym_line_comment, sym_block_comment, - [87065] = 4, + [88739] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2935), 2, + ACTIONS(5357), 1, + anon_sym_RBRACE, + ACTIONS(6214), 1, + anon_sym_COMMA, + STATE(3240), 1, + aux_sym_struct_pattern_repeat1, + STATE(2995), 2, sym_line_comment, sym_block_comment, - ACTIONS(4981), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87081] = 6, + [88759] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5097), 1, - anon_sym_RBRACE, - ACTIONS(6287), 1, - anon_sym_COMMA, - STATE(3042), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2936), 2, + ACTIONS(5046), 1, + anon_sym_LBRACE, + ACTIONS(6216), 1, + anon_sym_SEMI, + STATE(1166), 1, + sym_declaration_list, + STATE(2996), 2, sym_line_comment, sym_block_comment, - [87101] = 6, + [88779] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5097), 1, + ACTIONS(6218), 1, anon_sym_RBRACE, - ACTIONS(6287), 1, + ACTIONS(6220), 1, anon_sym_COMMA, - STATE(2965), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2937), 2, + STATE(2951), 1, + aux_sym_struct_pattern_repeat1, + STATE(2997), 2, sym_line_comment, sym_block_comment, - [87121] = 4, + [88799] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2938), 2, + ACTIONS(4785), 1, + anon_sym_GT, + ACTIONS(6222), 1, + anon_sym_COMMA, + STATE(3114), 1, + aux_sym_type_parameters_repeat1, + STATE(2998), 2, sym_line_comment, sym_block_comment, - ACTIONS(4983), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87137] = 4, + [88819] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2939), 2, + ACTIONS(4065), 1, + anon_sym_LT2, + ACTIONS(5088), 1, + anon_sym_COLON_COLON, + STATE(1731), 1, + sym_type_arguments, + STATE(2999), 2, sym_line_comment, sym_block_comment, - ACTIONS(4987), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87153] = 6, + [88839] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, + ACTIONS(5046), 1, anon_sym_LBRACE, - ACTIONS(6289), 1, + ACTIONS(6224), 1, anon_sym_SEMI, - STATE(1248), 1, + STATE(1239), 1, sym_declaration_list, - STATE(2940), 2, + STATE(3000), 2, sym_line_comment, sym_block_comment, - [87173] = 6, + [88859] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6291), 1, - anon_sym_RBRACE, - ACTIONS(6293), 1, - anon_sym_COMMA, - STATE(2974), 1, - aux_sym_struct_pattern_repeat1, - STATE(2941), 2, + STATE(3001), 2, sym_line_comment, sym_block_comment, - [87193] = 6, + ACTIONS(4992), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88875] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6295), 1, - anon_sym_SEMI, - ACTIONS(6297), 1, - anon_sym_EQ, - STATE(2942), 2, + ACTIONS(6226), 1, + anon_sym_LPAREN, + ACTIONS(6228), 1, + anon_sym_LBRACK, + ACTIONS(6230), 1, + anon_sym_LBRACE, + STATE(3002), 2, sym_line_comment, sym_block_comment, - [87213] = 6, + [88895] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(6299), 1, - anon_sym_SEMI, - STATE(3710), 1, - sym_where_clause, - STATE(2943), 2, + ACTIONS(6232), 1, + anon_sym_GT, + ACTIONS(6234), 1, + anon_sym_COMMA, + STATE(3003), 3, sym_line_comment, sym_block_comment, - [87233] = 6, + aux_sym_use_bounds_repeat1, + [88913] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(6301), 1, - anon_sym_SEMI, - STATE(768), 1, - sym_declaration_list, - STATE(2944), 2, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(5040), 1, + anon_sym_COLON_COLON, + STATE(2079), 1, + sym_type_arguments, + STATE(3004), 2, sym_line_comment, sym_block_comment, - [87253] = 6, + [88933] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6303), 1, - anon_sym_SEMI, - ACTIONS(6305), 1, - anon_sym_EQ, - STATE(2945), 2, + ACTIONS(5046), 1, + anon_sym_LBRACE, + ACTIONS(6237), 1, + anon_sym_SEMI, + STATE(1245), 1, + sym_declaration_list, + STATE(3005), 2, sym_line_comment, sym_block_comment, - [87273] = 6, + [88953] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(971), 1, + ACTIONS(5560), 1, + anon_sym_PIPE, + ACTIONS(6239), 2, anon_sym_RPAREN, - ACTIONS(6307), 1, anon_sym_COMMA, - STATE(2759), 1, - aux_sym_arguments_repeat1, - STATE(2946), 2, + STATE(3006), 2, sym_line_comment, sym_block_comment, - [87293] = 6, + [88971] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, + ACTIONS(3494), 1, anon_sym_LBRACE, - ACTIONS(6309), 1, - anon_sym_SEMI, - STATE(711), 1, - sym_declaration_list, - STATE(2947), 2, + ACTIONS(6241), 1, + anon_sym_COLON_COLON, + STATE(1527), 1, + sym_field_initializer_list, + STATE(3007), 2, sym_line_comment, sym_block_comment, - [87313] = 6, + [88991] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(967), 1, - anon_sym_RBRACK, - ACTIONS(6311), 1, + ACTIONS(6243), 1, + anon_sym_RBRACE, + ACTIONS(6245), 1, anon_sym_COMMA, - STATE(2759), 1, - aux_sym_arguments_repeat1, - STATE(2948), 2, + STATE(2966), 1, + aux_sym_struct_pattern_repeat1, + STATE(3008), 2, sym_line_comment, sym_block_comment, - [87333] = 6, + [89011] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(6313), 1, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(6247), 1, anon_sym_SEMI, - STATE(3725), 1, - sym_where_clause, - STATE(2949), 2, + ACTIONS(6249), 1, + anon_sym_EQ, + STATE(3009), 2, sym_line_comment, sym_block_comment, - [87353] = 4, + [89031] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2950), 2, + ACTIONS(6251), 1, + anon_sym_GT, + ACTIONS(6253), 1, + anon_sym_COMMA, + STATE(2969), 1, + aux_sym_use_bounds_repeat1, + STATE(3010), 2, sym_line_comment, sym_block_comment, - ACTIONS(6315), 3, - anon_sym_SEMI, + [89051] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4966), 1, anon_sym_RBRACE, + ACTIONS(6255), 1, anon_sym_COMMA, - [87369] = 6, + STATE(3085), 1, + aux_sym_field_declaration_list_repeat1, + STATE(3011), 2, + sym_line_comment, + sym_block_comment, + [89071] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1669), 1, + ACTIONS(6257), 1, anon_sym_GT, - ACTIONS(6317), 1, + ACTIONS(6259), 1, anon_sym_COMMA, - STATE(3065), 1, - aux_sym_type_arguments_repeat1, - STATE(2951), 2, + STATE(2988), 1, + aux_sym_use_bounds_repeat1, + STATE(3012), 2, sym_line_comment, sym_block_comment, - [87389] = 5, + [89091] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, + ACTIONS(5674), 1, + anon_sym_COLON, + ACTIONS(6261), 2, anon_sym_PIPE, - ACTIONS(6319), 2, - anon_sym_RPAREN, anon_sym_COMMA, - STATE(2952), 2, + STATE(3013), 2, sym_line_comment, sym_block_comment, - [87407] = 6, + [89109] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5099), 1, - anon_sym_for, - STATE(2026), 1, - sym_type_arguments, - STATE(2953), 2, + STATE(3014), 2, sym_line_comment, sym_block_comment, - [87427] = 6, + ACTIONS(5542), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [89125] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6321), 1, - anon_sym_RBRACE, - ACTIONS(6323), 1, + ACTIONS(1571), 1, + anon_sym_GT, + ACTIONS(6102), 1, anon_sym_COMMA, - STATE(3120), 1, - aux_sym_use_list_repeat1, - STATE(2954), 2, + STATE(3018), 1, + aux_sym_type_arguments_repeat1, + STATE(3015), 2, sym_line_comment, sym_block_comment, - [87447] = 6, + [89145] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1379), 1, - anon_sym_RPAREN, - ACTIONS(6325), 1, + ACTIONS(4966), 1, + anon_sym_RBRACE, + ACTIONS(6255), 1, anon_sym_COMMA, - STATE(3098), 1, - aux_sym_parameters_repeat1, - STATE(2955), 2, + STATE(3121), 1, + aux_sym_field_declaration_list_repeat1, + STATE(3016), 2, sym_line_comment, sym_block_comment, - [87467] = 5, + [89165] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6319), 1, + ACTIONS(6263), 1, anon_sym_RPAREN, - ACTIONS(6327), 1, + ACTIONS(6265), 1, anon_sym_COMMA, - STATE(2956), 3, + STATE(3111), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(3017), 2, sym_line_comment, sym_block_comment, - aux_sym_tuple_pattern_repeat1, - [87485] = 6, + [89185] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5101), 1, - anon_sym_RBRACE, - ACTIONS(6330), 1, + ACTIONS(1573), 1, + anon_sym_GT, + ACTIONS(6267), 1, anon_sym_COMMA, - STATE(3175), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2957), 2, + STATE(3179), 1, + aux_sym_type_arguments_repeat1, + STATE(3018), 2, sym_line_comment, sym_block_comment, - [87505] = 6, + [89205] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6332), 1, - sym_identifier, - ACTIONS(6334), 1, - anon_sym_ref, - ACTIONS(6336), 1, - sym_mutable_specifier, - STATE(2958), 2, + ACTIONS(6271), 1, + anon_sym_EQ, + ACTIONS(6269), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3019), 2, sym_line_comment, sym_block_comment, - [87525] = 6, + [89223] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(6338), 1, - anon_sym_SEMI, - STATE(1300), 1, - sym_declaration_list, - STATE(2959), 2, + STATE(3020), 2, sym_line_comment, sym_block_comment, - [87545] = 6, + ACTIONS(4970), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89239] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(6340), 1, - anon_sym_SEMI, - STATE(1305), 1, - sym_declaration_list, - STATE(2960), 2, + ACTIONS(6273), 1, + anon_sym_GT, + ACTIONS(6275), 1, + anon_sym_COMMA, + STATE(3099), 1, + aux_sym_type_parameters_repeat1, + STATE(3021), 2, sym_line_comment, sym_block_comment, - [87565] = 5, + [89259] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6342), 2, + ACTIONS(3219), 1, anon_sym_RPAREN, + ACTIONS(6277), 1, anon_sym_COMMA, - STATE(2961), 2, + STATE(3171), 1, + aux_sym_tuple_type_repeat1, + STATE(3022), 2, sym_line_comment, sym_block_comment, - [87583] = 6, + [89279] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, + ACTIONS(5046), 1, anon_sym_LBRACE, - ACTIONS(6344), 1, + ACTIONS(6279), 1, anon_sym_SEMI, - STATE(1330), 1, + STATE(1258), 1, sym_declaration_list, - STATE(2962), 2, + STATE(3023), 2, sym_line_comment, sym_block_comment, - [87603] = 6, + [89299] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(6346), 1, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(6281), 1, anon_sym_SEMI, - STATE(1332), 1, - sym_declaration_list, - STATE(2963), 2, + STATE(3720), 1, + sym_where_clause, + STATE(3024), 2, sym_line_comment, sym_block_comment, - [87623] = 6, + [89319] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6348), 1, - anon_sym_SEMI, - ACTIONS(6350), 1, - anon_sym_EQ, - STATE(2964), 2, + ACTIONS(4934), 1, + anon_sym_RBRACE, + ACTIONS(6283), 1, + anon_sym_COMMA, + STATE(3115), 1, + aux_sym_field_declaration_list_repeat1, + STATE(3025), 2, sym_line_comment, sym_block_comment, - [87643] = 6, + [89339] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5103), 1, - anon_sym_RBRACE, - ACTIONS(6352), 1, + ACTIONS(6239), 1, + anon_sym_RPAREN, + ACTIONS(6285), 1, anon_sym_COMMA, - STATE(3042), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2965), 2, + STATE(3026), 3, sym_line_comment, sym_block_comment, - [87663] = 6, + aux_sym_tuple_pattern_repeat1, + [89357] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1667), 1, - anon_sym_GT, - ACTIONS(6354), 1, + ACTIONS(5581), 1, + anon_sym_RPAREN, + ACTIONS(5583), 1, anon_sym_COMMA, - STATE(3062), 1, - aux_sym_type_arguments_repeat1, - STATE(2966), 2, + STATE(2976), 1, + aux_sym_parameters_repeat1, + STATE(3027), 2, sym_line_comment, sym_block_comment, - [87683] = 6, + [89377] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1667), 1, - anon_sym_GT, - ACTIONS(6354), 1, - anon_sym_COMMA, - STATE(3065), 1, - aux_sym_type_arguments_repeat1, - STATE(2967), 2, + ACTIONS(6288), 1, + anon_sym_move, + STATE(157), 1, + sym_closure_parameters, + STATE(3028), 2, sym_line_comment, sym_block_comment, - [87703] = 6, + [89397] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, + ACTIONS(6290), 1, + anon_sym_LPAREN, + ACTIONS(6292), 1, + anon_sym_LBRACK, + ACTIONS(6294), 1, anon_sym_LBRACE, - ACTIONS(6356), 1, - anon_sym_SEMI, - STATE(770), 1, - sym_declaration_list, - STATE(2968), 2, + STATE(3029), 2, sym_line_comment, sym_block_comment, - [87723] = 6, + [89417] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3148), 1, - anon_sym_RPAREN, - ACTIONS(6358), 1, - anon_sym_COMMA, - STATE(2742), 1, - aux_sym_slice_pattern_repeat1, - STATE(2969), 2, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(6296), 1, + anon_sym_SEMI, + ACTIONS(6298), 1, + anon_sym_EQ, + STATE(3030), 2, sym_line_comment, sym_block_comment, - [87743] = 5, + [89437] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6362), 1, - anon_sym_COLON, - ACTIONS(6360), 2, + ACTIONS(6300), 1, anon_sym_RBRACE, + ACTIONS(6302), 1, anon_sym_COMMA, - STATE(2970), 2, + STATE(3031), 3, sym_line_comment, sym_block_comment, - [87761] = 6, + aux_sym_enum_variant_list_repeat1, + [89455] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5577), 1, - anon_sym_GT, - ACTIONS(5579), 1, + ACTIONS(4934), 1, + anon_sym_RBRACE, + ACTIONS(6283), 1, anon_sym_COMMA, - STATE(3148), 1, - aux_sym_type_parameters_repeat1, - STATE(2971), 2, + STATE(3121), 1, + aux_sym_field_declaration_list_repeat1, + STATE(3032), 2, sym_line_comment, sym_block_comment, - [87781] = 4, + [89475] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2972), 2, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(6305), 1, + anon_sym_SEMI, + STATE(3649), 1, + sym_where_clause, + STATE(3033), 2, sym_line_comment, sym_block_comment, - ACTIONS(4991), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87797] = 4, + [89495] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2973), 2, + STATE(3034), 2, sym_line_comment, sym_block_comment, - ACTIONS(5013), 3, + ACTIONS(4994), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [87813] = 6, + [89511] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5370), 1, - anon_sym_RBRACE, - ACTIONS(6364), 1, + ACTIONS(1279), 1, + anon_sym_RPAREN, + ACTIONS(5597), 1, anon_sym_COMMA, - STATE(3074), 1, - aux_sym_struct_pattern_repeat1, - STATE(2974), 2, - sym_line_comment, - sym_block_comment, - [87833] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(6366), 1, - anon_sym_SEMI, - STATE(1385), 1, - sym_declaration_list, - STATE(2975), 2, - sym_line_comment, - sym_block_comment, - [87853] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(6368), 1, - anon_sym_SEMI, - STATE(1387), 1, - sym_declaration_list, - STATE(2976), 2, + STATE(2978), 1, + aux_sym_parameters_repeat1, + STATE(3035), 2, sym_line_comment, sym_block_comment, - [87873] = 6, + [89531] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6370), 1, - anon_sym_RPAREN, - ACTIONS(6372), 1, + ACTIONS(6309), 1, + anon_sym_EQ, + ACTIONS(6307), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(3033), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2977), 2, + STATE(3036), 2, sym_line_comment, sym_block_comment, - [87893] = 6, + [89549] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_RPAREN, - ACTIONS(6374), 1, + ACTIONS(1017), 1, + anon_sym_RBRACK, + ACTIONS(4279), 1, anon_sym_COMMA, - STATE(2742), 1, - aux_sym_slice_pattern_repeat1, - STATE(2978), 2, + STATE(3040), 1, + aux_sym_array_expression_repeat1, + STATE(3037), 2, sym_line_comment, sym_block_comment, - [87913] = 6, + [89569] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(6376), 1, - anon_sym_SEMI, - STATE(1395), 1, - sym_declaration_list, - STATE(2979), 2, + ACTIONS(4461), 1, + anon_sym_RBRACE, + ACTIONS(6311), 1, + anon_sym_COMMA, + STATE(3165), 1, + aux_sym_use_list_repeat1, + STATE(3038), 2, sym_line_comment, sym_block_comment, - [87933] = 6, + [89589] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, + ACTIONS(6313), 1, + anon_sym_AMP_AMP, + ACTIONS(4299), 2, anon_sym_LBRACE, - ACTIONS(6378), 1, - anon_sym_SEMI, - STATE(1397), 1, - sym_declaration_list, - STATE(2980), 2, + anon_sym_SQUOTE, + STATE(3039), 2, sym_line_comment, sym_block_comment, - [87953] = 6, + [89607] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6380), 1, - anon_sym_SEMI, - ACTIONS(6382), 1, - anon_sym_EQ, - STATE(2981), 2, + ACTIONS(4429), 1, + anon_sym_RBRACK, + ACTIONS(6315), 1, + anon_sym_COMMA, + STATE(3040), 3, sym_line_comment, sym_block_comment, - [87973] = 4, + aux_sym_array_expression_repeat1, + [89625] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2982), 2, + ACTIONS(4363), 1, + anon_sym_RPAREN, + ACTIONS(6318), 1, + anon_sym_COMMA, + STATE(3041), 3, sym_line_comment, sym_block_comment, - ACTIONS(6384), 3, - sym_string_content, - anon_sym_DQUOTE, - sym_escape_sequence, - [87989] = 6, + aux_sym_arguments_repeat1, + [89643] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, + ACTIONS(6313), 1, + anon_sym_AMP_AMP, + ACTIONS(6321), 2, anon_sym_LBRACE, - ACTIONS(6386), 1, - anon_sym_SEMI, - STATE(1426), 1, - sym_declaration_list, - STATE(2983), 2, + anon_sym_SQUOTE, + STATE(3042), 2, sym_line_comment, sym_block_comment, - [88009] = 6, + [89661] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, + ACTIONS(5072), 1, anon_sym_LBRACE, - ACTIONS(6388), 1, + ACTIONS(6323), 1, anon_sym_SEMI, - STATE(1260), 1, + STATE(561), 1, sym_declaration_list, - STATE(2984), 2, + STATE(3043), 2, sym_line_comment, sym_block_comment, - [88029] = 6, + [89681] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5424), 1, - anon_sym_RBRACE, - ACTIONS(6390), 1, + ACTIONS(6261), 1, + anon_sym_PIPE, + ACTIONS(6325), 1, anon_sym_COMMA, - STATE(3074), 1, - aux_sym_struct_pattern_repeat1, - STATE(2985), 2, + STATE(3044), 3, sym_line_comment, sym_block_comment, - [88049] = 6, + aux_sym_closure_parameters_repeat1, + [89699] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(997), 1, - anon_sym_RPAREN, - ACTIONS(6392), 1, + ACTIONS(6328), 1, + anon_sym_GT, + ACTIONS(6330), 1, anon_sym_COMMA, - STATE(2759), 1, - aux_sym_arguments_repeat1, - STATE(2986), 2, + STATE(2983), 1, + aux_sym_use_bounds_repeat1, + STATE(3045), 2, sym_line_comment, sym_block_comment, - [88069] = 4, + [89719] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2987), 2, + ACTIONS(6332), 1, + anon_sym_GT, + ACTIONS(6334), 1, + anon_sym_COMMA, + STATE(2985), 1, + aux_sym_use_bounds_repeat1, + STATE(3046), 2, sym_line_comment, sym_block_comment, - ACTIONS(4919), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88085] = 6, + [89739] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6394), 1, + ACTIONS(5072), 1, + anon_sym_LBRACE, + ACTIONS(6336), 1, anon_sym_SEMI, - ACTIONS(6396), 1, - anon_sym_EQ, - STATE(2988), 2, + STATE(565), 1, + sym_declaration_list, + STATE(3047), 2, sym_line_comment, sym_block_comment, - [88105] = 5, + [89759] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6398), 2, + ACTIONS(3083), 1, anon_sym_RPAREN, + ACTIONS(6338), 1, anon_sym_COMMA, - STATE(2989), 2, + STATE(2855), 1, + aux_sym_slice_pattern_repeat1, + STATE(3048), 2, sym_line_comment, sym_block_comment, - [88123] = 5, + [89779] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6398), 1, - anon_sym_RPAREN, - ACTIONS(6400), 1, + ACTIONS(1559), 1, + anon_sym_GT, + ACTIONS(6340), 1, anon_sym_COMMA, - STATE(2990), 3, + STATE(3179), 1, + aux_sym_type_arguments_repeat1, + STATE(3049), 2, sym_line_comment, sym_block_comment, - aux_sym_tuple_type_repeat1, - [88141] = 4, + [89799] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2991), 2, + ACTIONS(4962), 1, + anon_sym_RBRACE, + ACTIONS(6342), 1, + anon_sym_COMMA, + STATE(3031), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3050), 2, sym_line_comment, sym_block_comment, - ACTIONS(5007), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88157] = 6, + [89819] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(6403), 1, - anon_sym_SEMI, - STATE(1131), 1, - sym_declaration_list, - STATE(2992), 2, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(6344), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3051), 2, sym_line_comment, sym_block_comment, - [88177] = 6, + [89837] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(6405), 1, - anon_sym_SEMI, - STATE(1133), 1, - sym_declaration_list, - STATE(2993), 2, + STATE(3052), 2, sym_line_comment, sym_block_comment, - [88197] = 6, + ACTIONS(6346), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [89853] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5759), 1, - anon_sym_RPAREN, - ACTIONS(5761), 1, + ACTIONS(6348), 1, + anon_sym_RBRACE, + ACTIONS(6350), 1, anon_sym_COMMA, - STATE(3005), 1, - aux_sym_parameters_repeat1, - STATE(2994), 2, + STATE(2995), 1, + aux_sym_struct_pattern_repeat1, + STATE(3053), 2, sym_line_comment, sym_block_comment, - [88217] = 4, + [89873] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2995), 2, + ACTIONS(1281), 1, + anon_sym_RPAREN, + ACTIONS(6352), 1, + anon_sym_COMMA, + STATE(2963), 1, + aux_sym_parameters_repeat1, + STATE(3054), 2, sym_line_comment, sym_block_comment, - ACTIONS(6407), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [88233] = 4, + [89893] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2996), 2, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(6354), 1, + anon_sym_SEMI, + ACTIONS(6356), 1, + anon_sym_EQ, + STATE(3055), 2, sym_line_comment, sym_block_comment, - ACTIONS(4975), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88249] = 4, + [89913] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2997), 2, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(6358), 1, + anon_sym_SEMI, + ACTIONS(6360), 1, + anon_sym_EQ, + STATE(3056), 2, sym_line_comment, sym_block_comment, - ACTIONS(4979), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88265] = 4, + [89933] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2998), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6409), 3, - anon_sym_SEMI, + ACTIONS(6364), 1, + anon_sym_COLON, + ACTIONS(6362), 2, anon_sym_RBRACE, anon_sym_COMMA, - [88281] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2999), 2, + STATE(3057), 2, sym_line_comment, sym_block_comment, - ACTIONS(6411), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [88297] = 4, + [89951] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3000), 2, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(6366), 1, + anon_sym_SEMI, + ACTIONS(6368), 1, + anon_sym_EQ, + STATE(3058), 2, sym_line_comment, sym_block_comment, - ACTIONS(4985), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88313] = 6, + [89971] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, + ACTIONS(5072), 1, anon_sym_LBRACE, - ACTIONS(6413), 1, + ACTIONS(6370), 1, anon_sym_SEMI, - STATE(680), 1, + STATE(573), 1, sym_declaration_list, - STATE(3001), 2, + STATE(3059), 2, sym_line_comment, sym_block_comment, - [88333] = 6, + [89991] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5715), 1, + ACTIONS(6372), 1, + anon_sym_RBRACE, + ACTIONS(6374), 1, anon_sym_COMMA, - ACTIONS(6415), 1, - anon_sym_PIPE, - STATE(3047), 1, - aux_sym_closure_parameters_repeat1, - STATE(3002), 2, + STATE(2990), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3060), 2, sym_line_comment, sym_block_comment, - [88353] = 6, + [90011] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6417), 1, - anon_sym_RBRACE, - ACTIONS(6419), 1, - anon_sym_COMMA, - STATE(3057), 1, - aux_sym_enum_variant_list_repeat2, - STATE(3003), 2, + ACTIONS(5072), 1, + anon_sym_LBRACE, + ACTIONS(6376), 1, + anon_sym_SEMI, + STATE(575), 1, + sym_declaration_list, + STATE(3061), 2, sym_line_comment, sym_block_comment, - [88373] = 6, + [90031] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6421), 1, - anon_sym_SEMI, - ACTIONS(6423), 1, - anon_sym_EQ, - STATE(3004), 2, + STATE(3062), 2, sym_line_comment, sym_block_comment, - [88393] = 6, + ACTIONS(6378), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [90047] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1371), 1, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(6380), 2, anon_sym_RPAREN, - ACTIONS(5686), 1, anon_sym_COMMA, - STATE(3098), 1, - aux_sym_parameters_repeat1, - STATE(3005), 2, + STATE(3063), 2, sym_line_comment, sym_block_comment, - [88413] = 4, + [90065] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3006), 2, + ACTIONS(5046), 1, + anon_sym_LBRACE, + ACTIONS(6382), 1, + anon_sym_SEMI, + STATE(1290), 1, + sym_declaration_list, + STATE(3064), 2, sym_line_comment, - sym_block_comment, - ACTIONS(6425), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [88429] = 4, + sym_block_comment, + [90085] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3007), 2, + ACTIONS(5046), 1, + anon_sym_LBRACE, + ACTIONS(6384), 1, + anon_sym_SEMI, + STATE(1292), 1, + sym_declaration_list, + STATE(3065), 2, sym_line_comment, sym_block_comment, - ACTIONS(4861), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88445] = 6, + [90105] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6427), 1, - sym_mutable_specifier, - ACTIONS(6429), 1, - sym_self, - STATE(3008), 2, + ACTIONS(1892), 1, + anon_sym_RPAREN, + ACTIONS(6386), 1, + anon_sym_COMMA, + STATE(3026), 1, + aux_sym_tuple_pattern_repeat1, + STATE(3066), 2, sym_line_comment, sym_block_comment, - [88465] = 6, + [90125] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1371), 1, - anon_sym_RPAREN, - ACTIONS(5686), 1, - anon_sym_COMMA, - STATE(3113), 1, - aux_sym_parameters_repeat1, - STATE(3009), 2, + ACTIONS(4147), 1, + anon_sym_LBRACE, + ACTIONS(6388), 1, + anon_sym_COLON_COLON, + STATE(1983), 1, + sym_field_initializer_list, + STATE(3067), 2, sym_line_comment, sym_block_comment, - [88485] = 4, + [90145] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3010), 2, + STATE(3068), 2, sym_line_comment, sym_block_comment, - ACTIONS(5021), 3, + ACTIONS(4960), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [88501] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [90161] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6431), 1, - anon_sym_move, - STATE(234), 1, - sym_closure_parameters, - STATE(3011), 2, + STATE(3069), 2, sym_line_comment, sym_block_comment, - [88521] = 6, + ACTIONS(4964), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [90177] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4831), 1, - anon_sym_COLON, - ACTIONS(5061), 1, - anon_sym_COLON_COLON, - STATE(2550), 1, - sym_trait_bounds, - STATE(3012), 2, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(6390), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3070), 2, sym_line_comment, sym_block_comment, - [88541] = 4, + [90195] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3013), 2, + STATE(3071), 2, sym_line_comment, sym_block_comment, - ACTIONS(5023), 3, + ACTIONS(5000), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [88557] = 4, + [90211] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3014), 2, + STATE(3072), 2, sym_line_comment, sym_block_comment, - ACTIONS(5027), 3, + ACTIONS(4922), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [88573] = 4, + [90227] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3015), 2, + STATE(3073), 2, sym_line_comment, sym_block_comment, - ACTIONS(5033), 3, + ACTIONS(5006), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [88589] = 4, + [90243] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3016), 2, + STATE(3074), 2, sym_line_comment, sym_block_comment, - ACTIONS(5035), 3, + ACTIONS(4936), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [88605] = 4, + [90259] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3017), 2, + STATE(3075), 2, sym_line_comment, sym_block_comment, - ACTIONS(5037), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88621] = 6, + ACTIONS(6392), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [90275] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6433), 1, + ACTIONS(5046), 1, + anon_sym_LBRACE, + ACTIONS(6394), 1, anon_sym_SEMI, - ACTIONS(6435), 1, - anon_sym_RBRACK, - STATE(3018), 2, + STATE(1298), 1, + sym_declaration_list, + STATE(3076), 2, sym_line_comment, sym_block_comment, - [88641] = 4, + [90295] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3019), 2, + ACTIONS(5046), 1, + anon_sym_LBRACE, + ACTIONS(6396), 1, + anon_sym_SEMI, + STATE(1300), 1, + sym_declaration_list, + STATE(3077), 2, sym_line_comment, sym_block_comment, - ACTIONS(5039), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88657] = 6, + [90315] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3084), 1, - anon_sym_SQUOTE, - ACTIONS(6437), 1, - anon_sym_GT, - STATE(3351), 1, - sym_lifetime, - STATE(3020), 2, + ACTIONS(3494), 1, + anon_sym_LBRACE, + ACTIONS(6398), 1, + anon_sym_COLON_COLON, + STATE(1527), 1, + sym_field_initializer_list, + STATE(3078), 2, sym_line_comment, sym_block_comment, - [88677] = 6, + [90335] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6437), 1, - anon_sym_GT, - ACTIONS(6439), 1, - anon_sym_COMMA, - STATE(3116), 1, - aux_sym_for_lifetimes_repeat1, - STATE(3021), 2, + STATE(3079), 2, sym_line_comment, sym_block_comment, - [88697] = 6, + ACTIONS(6400), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [90351] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3438), 1, - anon_sym_LT2, - ACTIONS(5077), 1, - anon_sym_COLON_COLON, - STATE(1284), 1, - sym_type_arguments, - STATE(3022), 2, + ACTIONS(6402), 1, + anon_sym_LPAREN, + ACTIONS(6404), 1, + anon_sym_LBRACK, + ACTIONS(6406), 1, + anon_sym_LBRACE, + STATE(3080), 2, sym_line_comment, sym_block_comment, - [88717] = 6, + [90371] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1832), 1, - anon_sym_RPAREN, - ACTIONS(6441), 1, - anon_sym_COMMA, - STATE(2956), 1, - aux_sym_tuple_pattern_repeat1, - STATE(3023), 2, + ACTIONS(6408), 1, + anon_sym_LPAREN, + ACTIONS(6410), 1, + anon_sym_LBRACK, + ACTIONS(6412), 1, + anon_sym_LBRACE, + STATE(3081), 2, sym_line_comment, sym_block_comment, - [88737] = 6, + [90391] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3095), 1, anon_sym_PLUS, - ACTIONS(6443), 1, + ACTIONS(6414), 1, anon_sym_SEMI, - ACTIONS(6445), 1, + ACTIONS(6416), 1, anon_sym_EQ, - STATE(3024), 2, + STATE(3082), 2, sym_line_comment, sym_block_comment, - [88757] = 6, + [90411] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6447), 1, - anon_sym_RPAREN, - ACTIONS(6449), 1, - anon_sym_COMMA, - STATE(3033), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(3025), 2, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(6418), 1, + anon_sym_SEMI, + ACTIONS(6420), 1, + anon_sym_RBRACK, + STATE(3083), 2, sym_line_comment, sym_block_comment, - [88777] = 5, + [90431] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6451), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3026), 2, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(6422), 1, + anon_sym_LBRACE, + STATE(2082), 1, + sym_type_arguments, + STATE(3084), 2, sym_line_comment, sym_block_comment, - [88795] = 6, + [90451] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6453), 1, - anon_sym_GT, - ACTIONS(6455), 1, + ACTIONS(5012), 1, + anon_sym_RBRACE, + ACTIONS(6424), 1, anon_sym_COMMA, - STATE(3021), 1, - aux_sym_for_lifetimes_repeat1, - STATE(3027), 2, + STATE(3121), 1, + aux_sym_field_declaration_list_repeat1, + STATE(3085), 2, sym_line_comment, sym_block_comment, - [88815] = 4, + [90471] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3028), 2, + ACTIONS(6426), 1, + sym_identifier, + ACTIONS(6428), 1, + anon_sym_ref, + ACTIONS(6430), 1, + sym_mutable_specifier, + STATE(3086), 2, sym_line_comment, sym_block_comment, - ACTIONS(6457), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [88831] = 6, + [90491] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6148), 1, - anon_sym_GT, - ACTIONS(6459), 1, - anon_sym_COMMA, - STATE(3140), 1, - aux_sym_use_bounds_repeat1, - STATE(3029), 2, + STATE(3087), 2, sym_line_comment, sym_block_comment, - [88851] = 6, + ACTIONS(6432), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [90507] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3274), 1, - anon_sym_RPAREN, - ACTIONS(6461), 1, + ACTIONS(6434), 1, + anon_sym_RBRACE, + ACTIONS(6436), 1, anon_sym_COMMA, - STATE(2990), 1, - aux_sym_tuple_type_repeat1, - STATE(3030), 2, + STATE(3050), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3088), 2, sym_line_comment, sym_block_comment, - [88871] = 6, + [90527] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6160), 1, - anon_sym_GT, - ACTIONS(6463), 1, + ACTIONS(1027), 1, + anon_sym_RBRACK, + ACTIONS(4219), 1, anon_sym_COMMA, - STATE(3140), 1, - aux_sym_use_bounds_repeat1, - STATE(3031), 2, + STATE(3040), 1, + aux_sym_array_expression_repeat1, + STATE(3089), 2, sym_line_comment, sym_block_comment, - [88891] = 6, + [90547] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5636), 1, - anon_sym_RPAREN, - ACTIONS(5638), 1, - anon_sym_COMMA, - STATE(3043), 1, - aux_sym_parameters_repeat1, - STATE(3032), 2, + STATE(3090), 2, sym_line_comment, sym_block_comment, - [88911] = 5, + ACTIONS(6438), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [90563] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6465), 1, - anon_sym_RPAREN, - ACTIONS(6467), 1, + ACTIONS(3073), 1, + anon_sym_RBRACK, + ACTIONS(6440), 1, anon_sym_COMMA, - STATE(3033), 3, + STATE(2855), 1, + aux_sym_slice_pattern_repeat1, + STATE(3091), 2, sym_line_comment, sym_block_comment, - aux_sym_ordered_field_declaration_list_repeat1, - [88929] = 6, + [90583] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6470), 1, - anon_sym_GT, - ACTIONS(6472), 1, + STATE(3092), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6442), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(3188), 1, - aux_sym_use_bounds_repeat1, - STATE(3034), 2, + [90599] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5072), 1, + anon_sym_LBRACE, + ACTIONS(6444), 1, + anon_sym_SEMI, + STATE(729), 1, + sym_declaration_list, + STATE(3093), 2, sym_line_comment, sym_block_comment, - [88949] = 6, + [90619] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6474), 1, - anon_sym_GT, - ACTIONS(6476), 1, - anon_sym_COMMA, - STATE(3048), 1, - aux_sym_use_bounds_repeat1, - STATE(3035), 2, + STATE(3094), 2, sym_line_comment, sym_block_comment, - [88969] = 6, + ACTIONS(6446), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [90635] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4746), 1, - anon_sym_COLON_COLON, - ACTIONS(4831), 1, - anon_sym_COLON, - STATE(2550), 1, - sym_trait_bounds, - STATE(3036), 2, + ACTIONS(2287), 1, + anon_sym_SQUOTE, + ACTIONS(6448), 1, + anon_sym_GT, + STATE(3302), 1, + sym_lifetime, + STATE(3095), 2, sym_line_comment, sym_block_comment, - [88989] = 5, + [90655] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3095), 1, anon_sym_PLUS, - ACTIONS(6478), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3037), 2, + ACTIONS(6450), 1, + anon_sym_SEMI, + ACTIONS(6452), 1, + anon_sym_EQ, + STATE(3096), 2, sym_line_comment, sym_block_comment, - [89007] = 6, + [90675] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3576), 1, - anon_sym_LBRACE, - ACTIONS(6480), 1, - anon_sym_COLON_COLON, - STATE(1535), 1, - sym_field_initializer_list, - STATE(3038), 2, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(6454), 1, + anon_sym_SEMI, + STATE(3643), 1, + sym_where_clause, + STATE(3097), 2, sym_line_comment, sym_block_comment, - [89027] = 4, + [90695] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3039), 2, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(6456), 1, + anon_sym_for, + STATE(2082), 1, + sym_type_arguments, + STATE(3098), 2, sym_line_comment, sym_block_comment, - ACTIONS(1023), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [89043] = 6, + [90715] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1665), 1, + ACTIONS(4790), 1, anon_sym_GT, - ACTIONS(6482), 1, + ACTIONS(6458), 1, anon_sym_COMMA, - STATE(3051), 1, - aux_sym_type_arguments_repeat1, - STATE(3040), 2, + STATE(3114), 1, + aux_sym_type_parameters_repeat1, + STATE(3099), 2, sym_line_comment, sym_block_comment, - [89063] = 6, + [90735] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1665), 1, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(6460), 2, anon_sym_GT, - ACTIONS(6482), 1, anon_sym_COMMA, - STATE(3065), 1, - aux_sym_type_arguments_repeat1, - STATE(3041), 2, + STATE(3100), 2, sym_line_comment, sym_block_comment, - [89083] = 5, + [90753] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6484), 1, - anon_sym_RBRACE, - ACTIONS(6486), 1, - anon_sym_COMMA, - STATE(3042), 3, + ACTIONS(5072), 1, + anon_sym_LBRACE, + ACTIONS(6462), 1, + anon_sym_SEMI, + STATE(731), 1, + sym_declaration_list, + STATE(3101), 2, sym_line_comment, sym_block_comment, - aux_sym_field_declaration_list_repeat1, - [89101] = 6, + [90773] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1377), 1, - anon_sym_RPAREN, - ACTIONS(5646), 1, - anon_sym_COMMA, - STATE(3098), 1, - aux_sym_parameters_repeat1, - STATE(3043), 2, + STATE(3102), 2, sym_line_comment, sym_block_comment, - [89121] = 6, + ACTIONS(4916), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [90789] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6489), 1, - anon_sym_RBRACE, - ACTIONS(6491), 1, + ACTIONS(6464), 1, + anon_sym_RPAREN, + ACTIONS(6466), 1, anon_sym_COMMA, - STATE(3121), 1, - aux_sym_field_declaration_list_repeat1, - STATE(3044), 2, + STATE(3111), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(3103), 2, sym_line_comment, sym_block_comment, - [89141] = 6, + [90809] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1377), 1, - anon_sym_RPAREN, - ACTIONS(5646), 1, + ACTIONS(4904), 1, + anon_sym_RBRACE, + ACTIONS(6468), 1, anon_sym_COMMA, - STATE(3052), 1, - aux_sym_parameters_repeat1, - STATE(3045), 2, + STATE(3219), 1, + aux_sym_field_initializer_list_repeat1, + STATE(3104), 2, sym_line_comment, sym_block_comment, - [89161] = 5, + [90829] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6493), 1, - anon_sym_RBRACE, - ACTIONS(6495), 1, + ACTIONS(3221), 1, + anon_sym_RPAREN, + ACTIONS(6470), 1, anon_sym_COMMA, - STATE(3046), 3, + STATE(3171), 1, + aux_sym_tuple_type_repeat1, + STATE(3105), 2, sym_line_comment, sym_block_comment, - aux_sym_use_list_repeat1, - [89179] = 6, + [90849] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5715), 1, + ACTIONS(6472), 1, + anon_sym_RBRACE, + ACTIONS(6474), 1, anon_sym_COMMA, - ACTIONS(6498), 1, - anon_sym_PIPE, - STATE(3087), 1, - aux_sym_closure_parameters_repeat1, - STATE(3047), 2, + STATE(3038), 1, + aux_sym_use_list_repeat1, + STATE(3106), 2, sym_line_comment, sym_block_comment, - [89199] = 6, + [90869] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6146), 1, - anon_sym_GT, - ACTIONS(6500), 1, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(6476), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(3140), 1, - aux_sym_use_bounds_repeat1, - STATE(3048), 2, + STATE(3107), 2, sym_line_comment, sym_block_comment, - [89219] = 6, + [90887] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, + ACTIONS(5072), 1, anon_sym_LBRACE, - ACTIONS(6502), 1, + ACTIONS(6478), 1, anon_sym_SEMI, - STATE(515), 1, + STATE(578), 1, sym_declaration_list, - STATE(3049), 2, + STATE(3108), 2, sym_line_comment, sym_block_comment, - [89239] = 6, + [90907] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5114), 1, - anon_sym_RBRACE, - ACTIONS(6504), 1, - anon_sym_COMMA, - STATE(3042), 1, - aux_sym_field_declaration_list_repeat1, - STATE(3050), 2, + ACTIONS(5072), 1, + anon_sym_LBRACE, + ACTIONS(6480), 1, + anon_sym_SEMI, + STATE(678), 1, + sym_declaration_list, + STATE(3109), 2, sym_line_comment, sym_block_comment, - [89259] = 6, + [90927] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1663), 1, - anon_sym_GT, - ACTIONS(6506), 1, - anon_sym_COMMA, - STATE(3065), 1, - aux_sym_type_arguments_repeat1, - STATE(3051), 2, + ACTIONS(5072), 1, + anon_sym_LBRACE, + ACTIONS(6482), 1, + anon_sym_SEMI, + STATE(681), 1, + sym_declaration_list, + STATE(3110), 2, sym_line_comment, sym_block_comment, - [89279] = 6, + [90947] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, + ACTIONS(6484), 1, anon_sym_RPAREN, - ACTIONS(6508), 1, + ACTIONS(6486), 1, anon_sym_COMMA, - STATE(3098), 1, - aux_sym_parameters_repeat1, - STATE(3052), 2, + STATE(3111), 3, sym_line_comment, sym_block_comment, - [89299] = 5, + aux_sym_ordered_field_declaration_list_repeat1, + [90965] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5711), 1, - anon_sym_COLON, - ACTIONS(6510), 2, - anon_sym_PIPE, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(6489), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(3053), 2, - sym_line_comment, - sym_block_comment, - [89317] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(3054), 2, + STATE(3112), 2, sym_line_comment, sym_block_comment, - ACTIONS(5043), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89333] = 6, + [90983] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4969), 1, - anon_sym_LBRACE, - STATE(2026), 1, - sym_type_arguments, - STATE(3055), 2, + ACTIONS(4706), 1, + anon_sym_COLON_COLON, + ACTIONS(4792), 1, + anon_sym_COLON, + STATE(2648), 1, + sym_trait_bounds, + STATE(3113), 2, sym_line_comment, sym_block_comment, - [89353] = 5, + [91003] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6514), 1, - anon_sym_EQ, - ACTIONS(6512), 2, - anon_sym_RBRACE, + ACTIONS(6491), 1, + anon_sym_GT, + ACTIONS(6493), 1, anon_sym_COMMA, - STATE(3056), 2, + STATE(3114), 3, sym_line_comment, sym_block_comment, - [89371] = 6, + aux_sym_type_parameters_repeat1, + [91021] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5135), 1, + ACTIONS(5002), 1, anon_sym_RBRACE, - ACTIONS(6516), 1, + ACTIONS(6496), 1, anon_sym_COMMA, - STATE(3175), 1, - aux_sym_enum_variant_list_repeat2, - STATE(3057), 2, + STATE(3121), 1, + aux_sym_field_declaration_list_repeat1, + STATE(3115), 2, sym_line_comment, sym_block_comment, - [89391] = 4, + [91041] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3058), 2, + ACTIONS(4798), 1, + anon_sym_GT, + ACTIONS(6498), 1, + anon_sym_COMMA, + STATE(3114), 1, + aux_sym_type_parameters_repeat1, + STATE(3116), 2, sym_line_comment, sym_block_comment, - ACTIONS(5045), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89407] = 6, + [91061] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5135), 1, + ACTIONS(6502), 1, + anon_sym_COLON, + ACTIONS(6500), 2, anon_sym_RBRACE, - ACTIONS(6516), 1, anon_sym_COMMA, - STATE(3179), 1, - aux_sym_enum_variant_list_repeat2, - STATE(3059), 2, + STATE(3117), 2, sym_line_comment, sym_block_comment, - [89427] = 6, + [91079] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6518), 1, - anon_sym_GT, - ACTIONS(6520), 1, - anon_sym_COMMA, - STATE(3029), 1, - aux_sym_use_bounds_repeat1, - STATE(3060), 2, + ACTIONS(5046), 1, + anon_sym_LBRACE, + ACTIONS(6504), 1, + anon_sym_SEMI, + STATE(1339), 1, + sym_declaration_list, + STATE(3118), 2, sym_line_comment, sym_block_comment, - [89447] = 6, + [91099] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(6522), 1, + ACTIONS(5046), 1, + anon_sym_LBRACE, + ACTIONS(6506), 1, anon_sym_SEMI, - STATE(3538), 1, - sym_where_clause, - STATE(3061), 2, + STATE(1341), 1, + sym_declaration_list, + STATE(3119), 2, sym_line_comment, sym_block_comment, - [89467] = 6, + [91119] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1655), 1, + ACTIONS(1563), 1, anon_sym_GT, - ACTIONS(6524), 1, + ACTIONS(6508), 1, anon_sym_COMMA, - STATE(3065), 1, + STATE(3176), 1, aux_sym_type_arguments_repeat1, - STATE(3062), 2, + STATE(3120), 2, sym_line_comment, sym_block_comment, - [89487] = 5, + [91139] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6526), 2, - anon_sym_RPAREN, + ACTIONS(6510), 1, + anon_sym_RBRACE, + ACTIONS(6512), 1, anon_sym_COMMA, - STATE(3063), 2, - sym_line_comment, - sym_block_comment, - [89505] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(6528), 1, - anon_sym_move, - STATE(248), 1, - sym_closure_parameters, - STATE(3064), 2, + STATE(3121), 3, sym_line_comment, sym_block_comment, - [89525] = 5, + aux_sym_field_declaration_list_repeat1, + [91157] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5797), 1, + ACTIONS(4790), 1, anon_sym_GT, - ACTIONS(6530), 1, + ACTIONS(6458), 1, anon_sym_COMMA, - STATE(3065), 3, + STATE(2998), 1, + aux_sym_type_parameters_repeat1, + STATE(3122), 2, sym_line_comment, sym_block_comment, - aux_sym_type_arguments_repeat1, - [89543] = 6, + [91177] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6533), 1, + ACTIONS(5072), 1, + anon_sym_LBRACE, + ACTIONS(6515), 1, anon_sym_SEMI, - ACTIONS(6535), 1, - anon_sym_RBRACK, - STATE(3066), 2, + STATE(664), 1, + sym_declaration_list, + STATE(3123), 2, sym_line_comment, sym_block_comment, - [89563] = 4, + [91197] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3067), 2, + ACTIONS(1563), 1, + anon_sym_GT, + ACTIONS(6508), 1, + anon_sym_COMMA, + STATE(3179), 1, + aux_sym_type_arguments_repeat1, + STATE(3124), 2, sym_line_comment, sym_block_comment, - ACTIONS(5615), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [89579] = 4, + [91217] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3068), 2, + ACTIONS(5046), 1, + anon_sym_LBRACE, + ACTIONS(6517), 1, + anon_sym_SEMI, + STATE(1437), 1, + sym_declaration_list, + STATE(3125), 2, sym_line_comment, sym_block_comment, - ACTIONS(5047), 3, - anon_sym_EQ_GT, + [91237] = 6, + ACTIONS(27), 1, anon_sym_PIPE, - anon_sym_if, - [89595] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4184), 1, - anon_sym_LT2, - ACTIONS(5112), 1, - anon_sym_COLON_COLON, - STATE(1659), 1, - sym_type_arguments, - STATE(3069), 2, + ACTIONS(6519), 1, + anon_sym_move, + STATE(191), 1, + sym_closure_parameters, + STATE(3126), 2, sym_line_comment, sym_block_comment, - [89615] = 5, + [91257] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6539), 1, - anon_sym_COLON, - ACTIONS(6537), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3070), 2, + ACTIONS(5046), 1, + anon_sym_LBRACE, + ACTIONS(6521), 1, + anon_sym_SEMI, + STATE(1348), 1, + sym_declaration_list, + STATE(3127), 2, sym_line_comment, sym_block_comment, - [89633] = 5, + [91277] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_PIPE, - ACTIONS(6541), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3071), 2, + ACTIONS(5046), 1, + anon_sym_LBRACE, + ACTIONS(6523), 1, + anon_sym_SEMI, + STATE(1350), 1, + sym_declaration_list, + STATE(3128), 2, sym_line_comment, sym_block_comment, - [89651] = 4, + [91297] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3072), 2, + ACTIONS(6525), 1, + anon_sym_RBRACE, + ACTIONS(6527), 1, + anon_sym_COMMA, + STATE(3104), 1, + aux_sym_field_initializer_list_repeat1, + STATE(3129), 2, sym_line_comment, sym_block_comment, - ACTIONS(5049), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89667] = 5, + [91317] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6543), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3073), 2, + STATE(3130), 2, sym_line_comment, sym_block_comment, - [89685] = 5, + ACTIONS(6529), 3, + sym_string_content, + anon_sym_DQUOTE, + sym_escape_sequence, + [91333] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6545), 1, - anon_sym_RBRACE, - ACTIONS(6547), 1, - anon_sym_COMMA, - STATE(3074), 3, + ACTIONS(5072), 1, + anon_sym_LBRACE, + ACTIONS(6531), 1, + anon_sym_SEMI, + STATE(778), 1, + sym_declaration_list, + STATE(3131), 2, sym_line_comment, sym_block_comment, - aux_sym_struct_pattern_repeat1, - [89703] = 6, + [91353] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1649), 1, - anon_sym_GT, - ACTIONS(6550), 1, - anon_sym_COMMA, - STATE(3079), 1, - aux_sym_type_arguments_repeat1, - STATE(3075), 2, + STATE(3132), 2, sym_line_comment, sym_block_comment, - [89723] = 6, + ACTIONS(6533), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [91369] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1649), 1, - anon_sym_GT, - ACTIONS(6550), 1, - anon_sym_COMMA, - STATE(3065), 1, - aux_sym_type_arguments_repeat1, - STATE(3076), 2, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(6535), 1, + anon_sym_EQ, + STATE(3584), 1, + sym_where_clause, + STATE(3133), 2, sym_line_comment, sym_block_comment, - [89743] = 6, + [91389] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, + ACTIONS(5046), 1, anon_sym_LBRACE, - ACTIONS(6552), 1, + ACTIONS(6537), 1, anon_sym_SEMI, - STATE(517), 1, + STATE(1356), 1, sym_declaration_list, - STATE(3077), 2, + STATE(3134), 2, sym_line_comment, sym_block_comment, - [89763] = 5, + [91409] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6556), 1, - anon_sym_COLON, - ACTIONS(6554), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3078), 2, + ACTIONS(5046), 1, + anon_sym_LBRACE, + ACTIONS(6539), 1, + anon_sym_SEMI, + STATE(1358), 1, + sym_declaration_list, + STATE(3135), 2, sym_line_comment, sym_block_comment, - [89781] = 6, + [91429] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1653), 1, - anon_sym_GT, - ACTIONS(6558), 1, - anon_sym_COMMA, - STATE(3065), 1, - aux_sym_type_arguments_repeat1, - STATE(3079), 2, + ACTIONS(5072), 1, + anon_sym_LBRACE, + ACTIONS(6541), 1, + anon_sym_SEMI, + STATE(684), 1, + sym_declaration_list, + STATE(3136), 2, sym_line_comment, sym_block_comment, - [89801] = 6, + [91449] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6560), 1, - anon_sym_RBRACE, - ACTIONS(6562), 1, - anon_sym_COMMA, - STATE(3149), 1, - aux_sym_field_initializer_list_repeat1, - STATE(3080), 2, + STATE(3137), 2, sym_line_comment, sym_block_comment, - [89821] = 4, + ACTIONS(6543), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [91465] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3081), 2, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(6545), 1, + anon_sym_SEMI, + ACTIONS(6547), 1, + anon_sym_EQ, + STATE(3138), 2, sym_line_comment, sym_block_comment, - ACTIONS(1501), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89837] = 5, + [91485] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6564), 1, - anon_sym_GT, - ACTIONS(6566), 1, - anon_sym_COMMA, - STATE(3082), 3, + ACTIONS(5046), 1, + anon_sym_LBRACE, + ACTIONS(6549), 1, + anon_sym_SEMI, + STATE(1188), 1, + sym_declaration_list, + STATE(3139), 2, sym_line_comment, sym_block_comment, - aux_sym_type_parameters_repeat1, - [89855] = 6, + [91505] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4853), 1, + ACTIONS(6448), 1, anon_sym_GT, - ACTIONS(6569), 1, + ACTIONS(6551), 1, anon_sym_COMMA, - STATE(3082), 1, - aux_sym_type_parameters_repeat1, - STATE(3083), 2, + STATE(2991), 1, + aux_sym_for_lifetimes_repeat1, + STATE(3140), 2, sym_line_comment, sym_block_comment, - [89875] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [91525] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6571), 1, - anon_sym_move, - STATE(256), 1, - sym_closure_parameters, - STATE(3084), 2, + STATE(3141), 2, sym_line_comment, sym_block_comment, - [89895] = 6, + ACTIONS(4988), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [91541] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(6573), 1, - anon_sym_SEMI, - STATE(632), 1, - sym_declaration_list, - STATE(3085), 2, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(6553), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3142), 2, sym_line_comment, sym_block_comment, - [89915] = 6, + [91559] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(6575), 1, - anon_sym_SEMI, - STATE(3614), 1, - sym_where_clause, - STATE(3086), 2, + ACTIONS(6555), 1, + sym_identifier, + ACTIONS(6557), 1, + anon_sym_await, + ACTIONS(6559), 1, + sym_integer_literal, + STATE(3143), 2, sym_line_comment, sym_block_comment, - [89935] = 5, + [91579] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6510), 1, - anon_sym_PIPE, - ACTIONS(6577), 1, - anon_sym_COMMA, - STATE(3087), 3, + ACTIONS(5046), 1, + anon_sym_LBRACE, + ACTIONS(6561), 1, + anon_sym_SEMI, + STATE(1375), 1, + sym_declaration_list, + STATE(3144), 2, sym_line_comment, sym_block_comment, - aux_sym_closure_parameters_repeat1, - [89953] = 4, + [91599] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3088), 2, + STATE(3145), 2, sym_line_comment, sym_block_comment, - ACTIONS(6580), 3, + ACTIONS(6563), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [89969] = 6, + [91615] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, + ACTIONS(5046), 1, anon_sym_LBRACE, - ACTIONS(6582), 1, + ACTIONS(6565), 1, anon_sym_SEMI, - STATE(638), 1, + STATE(1377), 1, sym_declaration_list, - STATE(3089), 2, + STATE(3146), 2, sym_line_comment, sym_block_comment, - [89989] = 4, + [91635] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3090), 2, + STATE(3147), 2, sym_line_comment, sym_block_comment, - ACTIONS(4871), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [90005] = 5, + ACTIONS(6567), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [91651] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6584), 1, - anon_sym_AMP_AMP, - ACTIONS(4502), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(3091), 2, + STATE(3148), 2, sym_line_comment, sym_block_comment, - [90023] = 5, + ACTIONS(5004), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [91667] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4769), 1, - anon_sym_COLON_COLON, - ACTIONS(5524), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3092), 2, + STATE(3149), 2, sym_line_comment, sym_block_comment, - [90041] = 6, + ACTIONS(6569), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [91683] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5061), 1, - anon_sym_COLON_COLON, - STATE(2024), 1, - sym_type_arguments, - STATE(3093), 2, + STATE(3150), 2, sym_line_comment, sym_block_comment, - [90061] = 6, + ACTIONS(4597), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [91699] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(6586), 1, - anon_sym_for, - STATE(2026), 1, - sym_type_arguments, - STATE(3094), 2, + STATE(3151), 2, sym_line_comment, sym_block_comment, - [90081] = 6, + ACTIONS(4972), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [91715] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(6588), 1, - anon_sym_SEMI, - STATE(776), 1, - sym_declaration_list, - STATE(3095), 2, + STATE(3152), 2, sym_line_comment, sym_block_comment, - [90101] = 4, + ACTIONS(4976), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [91731] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3096), 2, + STATE(3153), 2, sym_line_comment, sym_block_comment, - ACTIONS(4961), 3, + ACTIONS(4978), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [90117] = 5, + [91747] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6011), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3097), 2, + STATE(3154), 2, sym_line_comment, sym_block_comment, - [90135] = 5, + ACTIONS(4980), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [91763] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6011), 1, - anon_sym_RPAREN, - ACTIONS(6590), 1, + ACTIONS(6571), 1, + anon_sym_EQ, + ACTIONS(6573), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(3098), 3, + STATE(3155), 2, sym_line_comment, sym_block_comment, - aux_sym_parameters_repeat1, - [90153] = 6, + [91781] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6593), 1, - sym_identifier, - ACTIONS(6595), 1, - anon_sym_ref, - ACTIONS(6597), 1, - sym_mutable_specifier, - STATE(3099), 2, + STATE(3156), 2, sym_line_comment, sym_block_comment, - [90173] = 6, + ACTIONS(4998), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [91797] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4883), 1, - anon_sym_COLON_COLON, - ACTIONS(4993), 1, - anon_sym_BANG, - ACTIONS(6599), 1, - sym_identifier, - STATE(3100), 2, + ACTIONS(5678), 1, + anon_sym_COMMA, + ACTIONS(6575), 1, + anon_sym_PIPE, + STATE(3235), 1, + aux_sym_closure_parameters_repeat1, + STATE(3157), 2, sym_line_comment, sym_block_comment, - [90193] = 5, + [91817] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_PIPE, - ACTIONS(6601), 2, - anon_sym_RBRACE, + ACTIONS(4760), 1, + anon_sym_GT, + ACTIONS(6577), 1, anon_sym_COMMA, - STATE(3101), 2, + STATE(3114), 1, + aux_sym_type_parameters_repeat1, + STATE(3158), 2, sym_line_comment, sym_block_comment, - [90211] = 4, + [91837] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3102), 2, + ACTIONS(3067), 1, + anon_sym_RPAREN, + ACTIONS(6579), 1, + anon_sym_COMMA, + STATE(2855), 1, + aux_sym_slice_pattern_repeat1, + STATE(3159), 2, sym_line_comment, sym_block_comment, - ACTIONS(6603), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [90227] = 5, + [91857] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6584), 1, - anon_sym_AMP_AMP, - ACTIONS(6605), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(3103), 2, + ACTIONS(4760), 1, + anon_sym_GT, + ACTIONS(6577), 1, + anon_sym_COMMA, + STATE(3116), 1, + aux_sym_type_parameters_repeat1, + STATE(3160), 2, sym_line_comment, sym_block_comment, - [90245] = 6, + [91877] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4206), 1, - anon_sym_LBRACE, - ACTIONS(6607), 1, - anon_sym_COLON_COLON, - STATE(1752), 1, - sym_field_initializer_list, - STATE(3104), 2, + STATE(3161), 2, sym_line_comment, sym_block_comment, - [90265] = 6, + ACTIONS(4926), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [91893] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3576), 1, - anon_sym_LBRACE, - ACTIONS(6609), 1, - anon_sym_COLON_COLON, - STATE(1535), 1, - sym_field_initializer_list, - STATE(3105), 2, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(6581), 1, + anon_sym_SEMI, + ACTIONS(6583), 1, + anon_sym_EQ, + STATE(3162), 2, sym_line_comment, sym_block_comment, - [90285] = 6, + [91913] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6611), 1, - anon_sym_LPAREN, - ACTIONS(6613), 1, - anon_sym_LBRACK, - ACTIONS(6615), 1, - anon_sym_LBRACE, - STATE(3106), 2, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(6585), 1, + anon_sym_SEMI, + ACTIONS(6587), 1, + anon_sym_EQ, + STATE(3163), 2, sym_line_comment, sym_block_comment, - [90305] = 6, + [91933] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6617), 1, - anon_sym_LPAREN, - ACTIONS(6619), 1, - anon_sym_LBRACK, - ACTIONS(6621), 1, - anon_sym_LBRACE, - STATE(3107), 2, + ACTIONS(6589), 1, + anon_sym_RBRACE, + ACTIONS(6591), 1, + anon_sym_COMMA, + STATE(3016), 1, + aux_sym_field_declaration_list_repeat1, + STATE(3164), 2, sym_line_comment, sym_block_comment, - [90325] = 6, + [91953] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(6623), 1, - anon_sym_SEMI, - STATE(589), 1, - sym_declaration_list, - STATE(3108), 2, + ACTIONS(6593), 1, + anon_sym_RBRACE, + ACTIONS(6595), 1, + anon_sym_COMMA, + STATE(3165), 3, sym_line_comment, sym_block_comment, - [90345] = 6, + aux_sym_use_list_repeat1, + [91971] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6625), 1, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(6598), 1, anon_sym_SEMI, - ACTIONS(6627), 1, - anon_sym_EQ, - STATE(3109), 2, + STATE(3791), 1, + sym_where_clause, + STATE(3166), 2, sym_line_comment, sym_block_comment, - [90365] = 6, + [91991] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4615), 1, anon_sym_LT2, - ACTIONS(6629), 1, - anon_sym_LBRACE, - STATE(2026), 1, + ACTIONS(6600), 1, + anon_sym_for, + STATE(2082), 1, sym_type_arguments, - STATE(3110), 2, + STATE(3167), 2, sym_line_comment, sym_block_comment, - [90385] = 6, + [92011] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3152), 1, + ACTIONS(1007), 1, anon_sym_RBRACK, - ACTIONS(6631), 1, + ACTIONS(4195), 1, anon_sym_COMMA, - STATE(2742), 1, - aux_sym_slice_pattern_repeat1, - STATE(3111), 2, + STATE(3040), 1, + aux_sym_array_expression_repeat1, + STATE(3168), 2, sym_line_comment, sym_block_comment, - [90405] = 6, + [92031] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, + ACTIONS(5046), 1, anon_sym_LBRACE, - ACTIONS(6633), 1, + ACTIONS(6602), 1, anon_sym_SEMI, - STATE(534), 1, + STATE(1465), 1, sym_declaration_list, - STATE(3112), 2, + STATE(3169), 2, sym_line_comment, sym_block_comment, - [90425] = 6, + [92051] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1361), 1, - anon_sym_RPAREN, - ACTIONS(6635), 1, - anon_sym_COMMA, - STATE(3098), 1, - aux_sym_parameters_repeat1, - STATE(3113), 2, + ACTIONS(5072), 1, + anon_sym_LBRACE, + ACTIONS(6604), 1, + anon_sym_SEMI, + STATE(553), 1, + sym_declaration_list, + STATE(3170), 2, sym_line_comment, sym_block_comment, - [90445] = 6, + [92071] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6637), 1, + ACTIONS(6553), 1, anon_sym_RPAREN, - ACTIONS(6639), 1, + ACTIONS(6606), 1, anon_sym_COMMA, - STATE(3033), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(3114), 2, + STATE(3171), 3, sym_line_comment, sym_block_comment, - [90465] = 6, + aux_sym_tuple_type_repeat1, + [92089] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3084), 1, - anon_sym_SQUOTE, - ACTIONS(6641), 1, - anon_sym_GT, - STATE(3351), 1, - sym_lifetime, - STATE(3115), 2, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(6609), 1, + anon_sym_SEMI, + STATE(3807), 1, + sym_where_clause, + STATE(3172), 2, sym_line_comment, sym_block_comment, - [90485] = 5, + [92109] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6643), 1, - anon_sym_GT, - ACTIONS(6645), 1, - anon_sym_COMMA, - STATE(3116), 3, + STATE(3173), 2, sym_line_comment, sym_block_comment, - aux_sym_for_lifetimes_repeat1, - [90503] = 6, + ACTIONS(4844), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [92125] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6648), 1, - anon_sym_RBRACE, - ACTIONS(6650), 1, - anon_sym_COMMA, - STATE(2985), 1, - aux_sym_struct_pattern_repeat1, - STATE(3117), 2, + ACTIONS(5046), 1, + anon_sym_LBRACE, + ACTIONS(6611), 1, + anon_sym_SEMI, + STATE(1209), 1, + sym_declaration_list, + STATE(3174), 2, sym_line_comment, sym_block_comment, - [90523] = 4, + [92145] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3118), 2, + ACTIONS(4832), 1, + anon_sym_COLON_COLON, + ACTIONS(4952), 1, + anon_sym_BANG, + ACTIONS(6613), 1, + sym_identifier, + STATE(3175), 2, sym_line_comment, sym_block_comment, - ACTIONS(6652), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [90539] = 6, + [92165] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6654), 1, - anon_sym_LPAREN, - ACTIONS(6656), 1, - anon_sym_LBRACK, - ACTIONS(6658), 1, - anon_sym_LBRACE, - STATE(3119), 2, + ACTIONS(1569), 1, + anon_sym_GT, + ACTIONS(6615), 1, + anon_sym_COMMA, + STATE(3179), 1, + aux_sym_type_arguments_repeat1, + STATE(3176), 2, sym_line_comment, sym_block_comment, - [90559] = 6, + [92185] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4516), 1, + ACTIONS(6619), 1, + anon_sym_COLON, + ACTIONS(6617), 2, anon_sym_RBRACE, - ACTIONS(6660), 1, anon_sym_COMMA, - STATE(3046), 1, - aux_sym_use_list_repeat1, - STATE(3120), 2, + STATE(3177), 2, sym_line_comment, sym_block_comment, - [90579] = 6, + [92203] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5085), 1, - anon_sym_RBRACE, - ACTIONS(6662), 1, + ACTIONS(6056), 1, + anon_sym_RPAREN, + ACTIONS(6058), 1, anon_sym_COMMA, - STATE(3042), 1, - aux_sym_field_declaration_list_repeat1, - STATE(3121), 2, + STATE(2975), 1, + aux_sym_tuple_pattern_repeat1, + STATE(3178), 2, sym_line_comment, sym_block_comment, - [90599] = 6, + [92223] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5085), 1, - anon_sym_RBRACE, - ACTIONS(6662), 1, + ACTIONS(5698), 1, + anon_sym_GT, + ACTIONS(6621), 1, anon_sym_COMMA, - STATE(3050), 1, - aux_sym_field_declaration_list_repeat1, - STATE(3122), 2, + STATE(3179), 3, sym_line_comment, sym_block_comment, - [90619] = 4, + aux_sym_type_arguments_repeat1, + [92241] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3123), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6664), 3, - anon_sym_SEMI, + ACTIONS(6626), 1, + anon_sym_COLON, + ACTIONS(6624), 2, anon_sym_RBRACE, anon_sym_COMMA, - [90635] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(6666), 1, - anon_sym_LPAREN, - ACTIONS(6668), 1, - anon_sym_LBRACK, - ACTIONS(6670), 1, - anon_sym_LBRACE, - STATE(3124), 2, + STATE(3180), 2, sym_line_comment, sym_block_comment, - [90655] = 6, + [92259] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(6672), 1, - anon_sym_SEMI, - STATE(1312), 1, - sym_declaration_list, - STATE(3125), 2, - sym_line_comment, - sym_block_comment, - [90675] = 6, - ACTIONS(27), 1, + ACTIONS(5560), 1, anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(6674), 1, - anon_sym_move, - STATE(219), 1, - sym_closure_parameters, - STATE(3126), 2, - sym_line_comment, - sym_block_comment, - [90695] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(3127), 2, + ACTIONS(6628), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3181), 2, sym_line_comment, sym_block_comment, - ACTIONS(4955), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [90711] = 4, + [92277] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3128), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4957), 3, - anon_sym_EQ_GT, + ACTIONS(5560), 1, anon_sym_PIPE, - anon_sym_if, - [90727] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(3129), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6676), 3, - anon_sym_SEMI, + ACTIONS(6630), 2, anon_sym_RBRACE, anon_sym_COMMA, - [90743] = 4, + STATE(3182), 2, + sym_line_comment, + sym_block_comment, + [92295] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3130), 2, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(5008), 1, + anon_sym_LBRACE, + STATE(2082), 1, + sym_type_arguments, + STATE(3183), 2, sym_line_comment, sym_block_comment, - ACTIONS(4959), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [90759] = 4, + [92315] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3131), 2, + STATE(3184), 2, sym_line_comment, sym_block_comment, - ACTIONS(4963), 3, + ACTIONS(4982), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [90775] = 4, + [92331] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3132), 2, + ACTIONS(6632), 1, + anon_sym_RBRACE, + ACTIONS(6634), 1, + anon_sym_COMMA, + STATE(3202), 1, + aux_sym_struct_pattern_repeat1, + STATE(3185), 2, sym_line_comment, sym_block_comment, - ACTIONS(4965), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [90791] = 4, + [92351] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3133), 2, + STATE(3186), 2, sym_line_comment, sym_block_comment, - ACTIONS(4967), 3, + ACTIONS(4996), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [90807] = 4, + [92367] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3134), 2, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(6636), 1, + anon_sym_SEMI, + STATE(3856), 1, + sym_where_clause, + STATE(3187), 2, sym_line_comment, sym_block_comment, - ACTIONS(6678), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [90823] = 5, + [92387] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_PIPE, - ACTIONS(6680), 2, + ACTIONS(4914), 1, anon_sym_RBRACE, + ACTIONS(6638), 1, anon_sym_COMMA, - STATE(3135), 2, - sym_line_comment, - sym_block_comment, - [90841] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(6682), 1, - sym_identifier, - ACTIONS(6684), 1, - anon_sym_await, - ACTIONS(6686), 1, - sym_integer_literal, - STATE(3136), 2, + STATE(3219), 1, + aux_sym_field_initializer_list_repeat1, + STATE(3188), 2, sym_line_comment, sym_block_comment, - [90861] = 4, + [92407] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3137), 2, + ACTIONS(5072), 1, + anon_sym_LBRACE, + ACTIONS(6640), 1, + anon_sym_SEMI, + STATE(769), 1, + sym_declaration_list, + STATE(3189), 2, sym_line_comment, sym_block_comment, - ACTIONS(6688), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [90877] = 5, + [92427] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4769), 1, - anon_sym_COLON_COLON, - ACTIONS(6690), 2, + ACTIONS(6642), 1, anon_sym_RPAREN, + ACTIONS(6644), 1, anon_sym_COMMA, - STATE(3138), 2, + STATE(3111), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(3190), 2, sym_line_comment, sym_block_comment, - [90895] = 4, + [92447] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3139), 2, + STATE(3191), 2, sym_line_comment, sym_block_comment, - ACTIONS(6692), 3, + ACTIONS(6646), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [90911] = 5, + [92463] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6694), 1, - anon_sym_GT, - ACTIONS(6696), 1, - anon_sym_COMMA, - STATE(3140), 3, + STATE(3192), 2, sym_line_comment, sym_block_comment, - aux_sym_use_bounds_repeat1, - [90929] = 5, + ACTIONS(4918), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [92479] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6040), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3141), 2, + ACTIONS(6648), 1, + anon_sym_EQ_GT, + ACTIONS(6650), 1, + anon_sym_PIPE, + ACTIONS(6652), 1, + anon_sym_if, + STATE(3193), 2, sym_line_comment, sym_block_comment, - [90947] = 4, + [92499] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3142), 2, + ACTIONS(6654), 1, + anon_sym_move, + STATE(162), 1, + sym_closure_parameters, + STATE(3194), 2, sym_line_comment, sym_block_comment, - ACTIONS(6699), 3, + [92519] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(6656), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [90963] = 6, + STATE(3559), 1, + sym_where_clause, + STATE(3195), 2, + sym_line_comment, + sym_block_comment, + [92539] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(941), 1, - anon_sym_RBRACK, - ACTIONS(4240), 1, - anon_sym_COMMA, - STATE(2759), 1, - aux_sym_arguments_repeat1, - STATE(3143), 2, + STATE(3196), 2, sym_line_comment, sym_block_comment, - [90983] = 5, + ACTIONS(4924), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [92555] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6701), 1, - anon_sym_EQ, - ACTIONS(6703), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3144), 2, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(6658), 1, + anon_sym_SEMI, + STATE(3769), 1, + sym_where_clause, + STATE(3197), 2, sym_line_comment, sym_block_comment, - [91001] = 6, + [92575] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5870), 1, - anon_sym_RPAREN, - ACTIONS(5872), 1, - anon_sym_COMMA, - STATE(3185), 1, - aux_sym_tuple_pattern_repeat1, - STATE(3145), 2, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(5090), 1, + anon_sym_for, + STATE(2082), 1, + sym_type_arguments, + STATE(3198), 2, sym_line_comment, sym_block_comment, - [91021] = 6, + [92595] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3084), 1, - anon_sym_SQUOTE, - ACTIONS(5914), 1, - sym_identifier, - STATE(3383), 1, - sym_lifetime, - STATE(3146), 2, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(6660), 1, + anon_sym_SEMI, + STATE(3597), 1, + sym_where_clause, + STATE(3199), 2, sym_line_comment, sym_block_comment, - [91041] = 6, + [92615] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1035), 1, - anon_sym_RBRACK, - ACTIONS(4338), 1, - anon_sym_COMMA, - STATE(2759), 1, - aux_sym_arguments_repeat1, - STATE(3147), 2, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(6662), 1, + anon_sym_SEMI, + ACTIONS(6664), 1, + anon_sym_EQ, + STATE(3200), 2, sym_line_comment, sym_block_comment, - [91061] = 6, + [92635] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4851), 1, - anon_sym_GT, - ACTIONS(6705), 1, - anon_sym_COMMA, - STATE(3082), 1, - aux_sym_type_parameters_repeat1, - STATE(3148), 2, + STATE(3201), 2, sym_line_comment, sym_block_comment, - [91081] = 6, + ACTIONS(6666), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [92651] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5031), 1, + ACTIONS(5355), 1, anon_sym_RBRACE, - ACTIONS(6707), 1, + ACTIONS(6668), 1, anon_sym_COMMA, - STATE(2906), 1, - aux_sym_field_initializer_list_repeat1, - STATE(3149), 2, + STATE(3240), 1, + aux_sym_struct_pattern_repeat1, + STATE(3202), 2, sym_line_comment, sym_block_comment, - [91101] = 6, + [92671] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6709), 1, - anon_sym_SEMI, - ACTIONS(6711), 1, - anon_sym_RBRACK, - STATE(3150), 2, + STATE(3203), 2, sym_line_comment, sym_block_comment, - [91121] = 6, + ACTIONS(4928), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [92687] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(6713), 1, - anon_sym_SEMI, - STATE(683), 1, - sym_declaration_list, - STATE(3151), 2, + ACTIONS(5560), 1, + anon_sym_PIPE, + ACTIONS(6670), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3204), 2, sym_line_comment, sym_block_comment, - [91141] = 6, + [92705] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(6715), 1, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(6672), 1, anon_sym_SEMI, - STATE(3608), 1, - sym_where_clause, - STATE(3152), 2, + ACTIONS(6674), 1, + anon_sym_RBRACK, + STATE(3205), 2, sym_line_comment, sym_block_comment, - [91161] = 5, + [92725] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6719), 1, - anon_sym_COLON, - ACTIONS(6717), 2, - anon_sym_RBRACE, + ACTIONS(1021), 1, + anon_sym_RPAREN, + ACTIONS(6676), 1, anon_sym_COMMA, - STATE(3153), 2, + STATE(3041), 1, + aux_sym_arguments_repeat1, + STATE(3206), 2, sym_line_comment, sym_block_comment, - [91179] = 6, + [92745] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4615), 1, anon_sym_LT2, - ACTIONS(6721), 1, - anon_sym_COLON_COLON, - STATE(2024), 1, + ACTIONS(5048), 1, + anon_sym_for, + STATE(2082), 1, sym_type_arguments, - STATE(3154), 2, + STATE(3207), 2, sym_line_comment, sym_block_comment, - [91199] = 6, + [92765] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(6723), 1, - anon_sym_for, - STATE(2026), 1, - sym_type_arguments, - STATE(3155), 2, + STATE(3208), 2, sym_line_comment, sym_block_comment, - [91219] = 6, - ACTIONS(27), 1, + ACTIONS(4920), 3, + anon_sym_EQ_GT, anon_sym_PIPE, + anon_sym_if, + [92781] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6725), 1, - anon_sym_move, - STATE(232), 1, - sym_closure_parameters, - STATE(3156), 2, + STATE(3209), 2, sym_line_comment, sym_block_comment, - [91239] = 6, + ACTIONS(4942), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [92797] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4851), 1, - anon_sym_GT, - ACTIONS(6705), 1, + ACTIONS(4718), 1, + anon_sym_COLON_COLON, + ACTIONS(6678), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(3083), 1, - aux_sym_type_parameters_repeat1, - STATE(3157), 2, + STATE(3210), 2, sym_line_comment, sym_block_comment, - [91259] = 6, + [92815] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(6727), 1, - anon_sym_SEMI, - STATE(757), 1, - sym_declaration_list, - STATE(3158), 2, + STATE(3211), 2, sym_line_comment, sym_block_comment, - [91279] = 6, + ACTIONS(4940), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [92831] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, + ACTIONS(5072), 1, anon_sym_LBRACE, - ACTIONS(6729), 1, + ACTIONS(6680), 1, anon_sym_SEMI, - STATE(657), 1, + STATE(617), 1, sym_declaration_list, - STATE(3159), 2, + STATE(3212), 2, sym_line_comment, sym_block_comment, - [91299] = 6, + [92851] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(6731), 1, - anon_sym_SEMI, - STATE(759), 1, - sym_declaration_list, - STATE(3160), 2, + STATE(3213), 2, sym_line_comment, sym_block_comment, - [91319] = 6, + ACTIONS(6682), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [92867] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6733), 1, - anon_sym_GT, - ACTIONS(6735), 1, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(6090), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2893), 1, - aux_sym_type_parameters_repeat1, - STATE(3161), 2, + STATE(3214), 2, sym_line_comment, sym_block_comment, - [91339] = 6, + [92885] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(6737), 1, - anon_sym_SEMI, - STATE(1381), 1, - sym_declaration_list, - STATE(3162), 2, + STATE(3215), 2, sym_line_comment, sym_block_comment, - [91359] = 6, + ACTIONS(4938), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [92901] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1011), 1, - anon_sym_RBRACK, - ACTIONS(4278), 1, - anon_sym_COMMA, - STATE(2759), 1, - aux_sym_arguments_repeat1, - STATE(3163), 2, + ACTIONS(5024), 1, + anon_sym_where, + ACTIONS(6684), 1, + anon_sym_SEMI, + STATE(3675), 1, + sym_where_clause, + STATE(3216), 2, sym_line_comment, sym_block_comment, - [91379] = 6, + [92921] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(6739), 1, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(6686), 1, anon_sym_SEMI, - STATE(3596), 1, - sym_where_clause, - STATE(3164), 2, + ACTIONS(6688), 1, + anon_sym_RBRACK, + STATE(3217), 2, sym_line_comment, sym_block_comment, - [91399] = 6, + [92941] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4615), 1, anon_sym_LT2, - ACTIONS(6741), 1, + ACTIONS(6690), 1, anon_sym_for, - STATE(2026), 1, + STATE(2082), 1, sym_type_arguments, - STATE(3165), 2, + STATE(3218), 2, sym_line_comment, sym_block_comment, - [91419] = 6, + [92961] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3288), 1, - anon_sym_RPAREN, - ACTIONS(6743), 1, + ACTIONS(6692), 1, + anon_sym_RBRACE, + ACTIONS(6694), 1, anon_sym_COMMA, - STATE(2990), 1, - aux_sym_tuple_type_repeat1, - STATE(3166), 2, + STATE(3219), 3, sym_line_comment, sym_block_comment, - [91439] = 6, + aux_sym_field_initializer_list_repeat1, + [92979] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(6745), 1, - anon_sym_SEMI, - STATE(3592), 1, - sym_where_clause, - STATE(3167), 2, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(6697), 1, + anon_sym_for, + STATE(2082), 1, + sym_type_arguments, + STATE(3220), 2, sym_line_comment, sym_block_comment, - [91459] = 6, + [92999] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5158), 1, - anon_sym_for, - STATE(2026), 1, - sym_type_arguments, - STATE(3168), 2, + STATE(3221), 2, sym_line_comment, sym_block_comment, - [91479] = 6, + ACTIONS(4884), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [93015] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6747), 1, - anon_sym_RBRACE, - ACTIONS(6749), 1, - anon_sym_COMMA, - STATE(2903), 1, - aux_sym_field_initializer_list_repeat1, - STATE(3169), 2, + ACTIONS(4615), 1, + anon_sym_LT2, + ACTIONS(6699), 1, + anon_sym_COLON_COLON, + STATE(2079), 1, + sym_type_arguments, + STATE(3222), 2, sym_line_comment, sym_block_comment, - [91499] = 6, + [93035] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(6751), 1, - anon_sym_SEMI, - STATE(3520), 1, + ACTIONS(6701), 1, + anon_sym_EQ, + STATE(3825), 1, sym_where_clause, - STATE(3170), 2, + STATE(3223), 2, + sym_line_comment, + sym_block_comment, + [93055] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5520), 1, + anon_sym_GT, + ACTIONS(5522), 1, + anon_sym_COMMA, + STATE(3158), 1, + aux_sym_type_parameters_repeat1, + STATE(3224), 2, sym_line_comment, sym_block_comment, - [91519] = 6, + [93075] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, + ACTIONS(5072), 1, anon_sym_LBRACE, - ACTIONS(6753), 1, + ACTIONS(6703), 1, anon_sym_SEMI, - STATE(1421), 1, + STATE(786), 1, sym_declaration_list, - STATE(3171), 2, + STATE(3225), 2, sym_line_comment, sym_block_comment, - [91539] = 6, + [93095] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4615), 1, anon_sym_LT2, - ACTIONS(6755), 1, + ACTIONS(6705), 1, anon_sym_for, - STATE(2026), 1, + STATE(2082), 1, sym_type_arguments, - STATE(3172), 2, + STATE(3226), 2, sym_line_comment, sym_block_comment, - [91559] = 4, + [93115] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3173), 2, + ACTIONS(2287), 1, + anon_sym_SQUOTE, + ACTIONS(5798), 1, + sym_identifier, + STATE(3321), 1, + sym_lifetime, + STATE(3227), 2, sym_line_comment, sym_block_comment, - ACTIONS(6757), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [91575] = 6, + [93135] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(3367), 1, anon_sym_LT2, - ACTIONS(6759), 1, - anon_sym_for, - STATE(2026), 1, + ACTIONS(5068), 1, + anon_sym_COLON_COLON, + STATE(1411), 1, sym_type_arguments, - STATE(3174), 2, + STATE(3228), 2, sym_line_comment, sym_block_comment, - [91595] = 5, + [93155] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6761), 1, + ACTIONS(6707), 1, anon_sym_RBRACE, - ACTIONS(6763), 1, + ACTIONS(6709), 1, anon_sym_COMMA, - STATE(3175), 3, + STATE(3032), 1, + aux_sym_field_declaration_list_repeat1, + STATE(3229), 2, sym_line_comment, sym_block_comment, - aux_sym_enum_variant_list_repeat2, - [91613] = 6, + [93175] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(6766), 1, - anon_sym_EQ, - STATE(3765), 1, - sym_where_clause, - STATE(3176), 2, + ACTIONS(1011), 1, + anon_sym_RBRACK, + ACTIONS(4247), 1, + anon_sym_COMMA, + STATE(3040), 1, + aux_sym_array_expression_repeat1, + STATE(3230), 2, sym_line_comment, sym_block_comment, - [91633] = 5, + [93195] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6770), 1, - anon_sym_EQ, - ACTIONS(6768), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3177), 2, + ACTIONS(6711), 1, + sym_identifier, + ACTIONS(6713), 1, + anon_sym_ref, + ACTIONS(6715), 1, + sym_mutable_specifier, + STATE(3231), 2, sym_line_comment, sym_block_comment, - [91651] = 6, + [93215] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(6772), 1, - anon_sym_for, - STATE(2026), 1, - sym_type_arguments, - STATE(3178), 2, + STATE(3232), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1205), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [93231] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6717), 1, + sym_identifier, + ACTIONS(6719), 1, + anon_sym_ref, + ACTIONS(6721), 1, + sym_mutable_specifier, + STATE(3233), 2, sym_line_comment, sym_block_comment, - [91671] = 6, + [93251] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5081), 1, - anon_sym_RBRACE, - ACTIONS(6774), 1, + ACTIONS(1031), 1, + anon_sym_RBRACK, + ACTIONS(6723), 1, anon_sym_COMMA, - STATE(3175), 1, - aux_sym_enum_variant_list_repeat2, - STATE(3179), 2, + STATE(3040), 1, + aux_sym_array_expression_repeat1, + STATE(3234), 2, sym_line_comment, sym_block_comment, - [91691] = 6, + [93271] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(6776), 1, - anon_sym_SEMI, - STATE(778), 1, - sym_declaration_list, - STATE(3180), 2, + ACTIONS(5678), 1, + anon_sym_COMMA, + ACTIONS(6725), 1, + anon_sym_PIPE, + STATE(3044), 1, + aux_sym_closure_parameters_repeat1, + STATE(3235), 2, sym_line_comment, sym_block_comment, - [91711] = 6, + [93291] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6778), 1, - sym_identifier, - ACTIONS(6780), 1, - anon_sym_ref, - ACTIONS(6782), 1, - sym_mutable_specifier, - STATE(3181), 2, + ACTIONS(6729), 1, + anon_sym_EQ, + ACTIONS(6727), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3236), 2, sym_line_comment, sym_block_comment, - [91731] = 6, + [93309] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, + ACTIONS(5024), 1, anon_sym_where, - ACTIONS(6784), 1, - anon_sym_EQ, - STATE(3577), 1, + ACTIONS(6731), 1, + anon_sym_SEMI, + STATE(3739), 1, sym_where_clause, - STATE(3182), 2, + STATE(3237), 2, sym_line_comment, sym_block_comment, - [91751] = 4, + [93329] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3183), 2, + ACTIONS(1555), 1, + anon_sym_GT, + ACTIONS(6106), 1, + anon_sym_COMMA, + STATE(3049), 1, + aux_sym_type_arguments_repeat1, + STATE(3238), 2, + sym_line_comment, + sym_block_comment, + [93349] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(3239), 2, sym_line_comment, sym_block_comment, - ACTIONS(5029), 3, + ACTIONS(4880), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [91767] = 6, + [93365] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(959), 1, - anon_sym_RBRACK, - ACTIONS(4304), 1, + ACTIONS(6733), 1, + anon_sym_RBRACE, + ACTIONS(6735), 1, anon_sym_COMMA, - STATE(2759), 1, - aux_sym_arguments_repeat1, - STATE(3184), 2, + STATE(3240), 3, sym_line_comment, sym_block_comment, - [91787] = 6, + aux_sym_struct_pattern_repeat1, + [93383] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1836), 1, - anon_sym_RPAREN, - ACTIONS(6786), 1, - anon_sym_COMMA, - STATE(2956), 1, - aux_sym_tuple_pattern_repeat1, - STATE(3185), 2, + ACTIONS(4792), 1, + anon_sym_COLON, + ACTIONS(5040), 1, + anon_sym_COLON_COLON, + STATE(2648), 1, + sym_trait_bounds, + STATE(3241), 2, sym_line_comment, sym_block_comment, - [91807] = 6, + [93403] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3154), 1, - anon_sym_RBRACK, - ACTIONS(6788), 1, - anon_sym_COMMA, - STATE(2742), 1, - aux_sym_slice_pattern_repeat1, - STATE(3186), 2, + ACTIONS(5560), 1, + anon_sym_PIPE, + ACTIONS(6738), 1, + anon_sym_in, + STATE(3242), 2, sym_line_comment, sym_block_comment, - [91827] = 6, + [93420] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(6790), 1, + ACTIONS(5329), 1, + anon_sym_RBRACE, + ACTIONS(6740), 1, anon_sym_SEMI, - STATE(566), 1, - sym_declaration_list, - STATE(3187), 2, + STATE(3243), 2, sym_line_comment, sym_block_comment, - [91847] = 6, + [93437] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6144), 1, - anon_sym_GT, - ACTIONS(6792), 1, - anon_sym_COMMA, - STATE(3140), 1, - aux_sym_use_bounds_repeat1, - STATE(3188), 2, + ACTIONS(5251), 1, + anon_sym_RBRACE, + ACTIONS(6740), 1, + anon_sym_SEMI, + STATE(3244), 2, sym_line_comment, sym_block_comment, - [91867] = 5, + [93454] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6794), 1, - anon_sym_SEMI, - ACTIONS(6796), 1, - anon_sym_EQ, - STATE(3189), 2, + STATE(162), 1, + sym_closure_parameters, + STATE(3245), 2, sym_line_comment, sym_block_comment, - [91884] = 5, + [93471] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6798), 1, + ACTIONS(6742), 2, anon_sym_RPAREN, - ACTIONS(6800), 1, - anon_sym_COLON_COLON, - STATE(3190), 2, + anon_sym_COMMA, + STATE(3246), 2, sym_line_comment, sym_block_comment, - [91901] = 5, + [93486] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6802), 1, - anon_sym_RPAREN, - ACTIONS(6804), 1, - anon_sym_COLON_COLON, - STATE(3191), 2, + ACTIONS(6692), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3247), 2, sym_line_comment, sym_block_comment, - [91918] = 5, + [93501] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5461), 1, - anon_sym_LBRACE, - STATE(668), 1, - sym_enum_variant_list, - STATE(3192), 2, + ACTIONS(5317), 1, + anon_sym_RBRACE, + ACTIONS(6740), 1, + anon_sym_SEMI, + STATE(3248), 2, sym_line_comment, sym_block_comment, - [91935] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [93518] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(234), 1, - sym_closure_parameters, - STATE(3193), 2, + ACTIONS(5882), 1, + sym_identifier, + ACTIONS(5884), 1, + sym_super, + STATE(3249), 2, sym_line_comment, sym_block_comment, - [91952] = 4, + [93535] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5414), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3194), 2, + ACTIONS(5768), 2, + sym_identifier, + sym_super, + STATE(3250), 2, sym_line_comment, sym_block_comment, - [91967] = 5, + [93550] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6802), 1, + ACTIONS(6744), 1, + sym_identifier, + ACTIONS(6746), 1, + sym_super, + STATE(3251), 2, + sym_line_comment, + sym_block_comment, + [93567] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6740), 1, + anon_sym_SEMI, + ACTIONS(6748), 1, anon_sym_RPAREN, - ACTIONS(6806), 1, - anon_sym_COLON_COLON, - STATE(3195), 2, + STATE(3252), 2, sym_line_comment, sym_block_comment, - [91984] = 5, + [93584] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5069), 1, - anon_sym_LT, - STATE(970), 1, - sym_type_parameters, - STATE(3196), 2, + ACTIONS(6750), 1, + sym_identifier, + ACTIONS(6752), 1, + sym_super, + STATE(3253), 2, sym_line_comment, sym_block_comment, - [92001] = 5, + [93601] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6802), 1, - anon_sym_RPAREN, - ACTIONS(6808), 1, - anon_sym_COLON_COLON, - STATE(3197), 2, + ACTIONS(6754), 2, + sym__block_comment_content, + anon_sym_STAR_SLASH, + STATE(3254), 2, sym_line_comment, sym_block_comment, - [92018] = 5, + [93616] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5968), 1, - sym_identifier, - ACTIONS(5970), 1, + ACTIONS(5263), 1, sym_super, - STATE(3198), 2, + ACTIONS(5969), 1, + sym_identifier, + STATE(3255), 2, sym_line_comment, sym_block_comment, - [92035] = 4, + [93633] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5930), 2, + ACTIONS(6756), 1, sym_identifier, + ACTIONS(6758), 1, sym_super, - STATE(3199), 2, + STATE(3256), 2, sym_line_comment, sym_block_comment, - [92050] = 5, + [93650] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6810), 1, - sym_identifier, - ACTIONS(6812), 1, - sym_super, - STATE(3200), 2, + ACTIONS(3103), 1, + anon_sym_PLUS, + ACTIONS(3861), 1, + anon_sym_COLON, + STATE(3257), 2, sym_line_comment, sym_block_comment, - [92067] = 5, + [93667] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6814), 1, - sym_identifier, - ACTIONS(6816), 1, - sym_super, - STATE(3201), 2, + ACTIONS(6740), 1, + anon_sym_SEMI, + ACTIONS(6748), 1, + anon_sym_RBRACK, + STATE(3258), 2, sym_line_comment, sym_block_comment, - [92084] = 5, + [93684] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3210), 1, - anon_sym_PLUS, - ACTIONS(4106), 1, - anon_sym_COLON, - STATE(3202), 2, + ACTIONS(6733), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3259), 2, sym_line_comment, sym_block_comment, - [92101] = 5, + [93699] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, - sym_super, - ACTIONS(5807), 1, + ACTIONS(6760), 2, sym_identifier, - STATE(3203), 2, + sym_super, + STATE(3260), 2, sym_line_comment, sym_block_comment, - [92118] = 5, + [93714] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6818), 1, - sym_identifier, - ACTIONS(6820), 1, - sym_super, - STATE(3204), 2, + ACTIONS(5323), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3261), 2, sym_line_comment, sym_block_comment, - [92135] = 5, + [93729] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, + ACTIONS(5560), 1, + anon_sym_PIPE, + ACTIONS(6762), 1, + anon_sym_in, + STATE(3262), 2, + sym_line_comment, + sym_block_comment, + [93746] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6764), 1, anon_sym_LT, - STATE(915), 1, + STATE(950), 1, sym_type_parameters, - STATE(3205), 2, + STATE(3263), 2, sym_line_comment, sym_block_comment, - [92152] = 5, + [93763] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5067), 1, - anon_sym_LBRACE, - STATE(1174), 1, - sym_field_declaration_list, - STATE(3206), 2, + ACTIONS(6740), 1, + anon_sym_SEMI, + ACTIONS(6766), 1, + anon_sym_RBRACE, + STATE(3264), 2, sym_line_comment, sym_block_comment, - [92169] = 5, + [93780] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - STATE(1175), 1, - sym_declaration_list, - STATE(3207), 2, + ACTIONS(4770), 1, + anon_sym_BANG, + ACTIONS(4860), 1, + anon_sym_COLON_COLON, + STATE(3265), 2, sym_line_comment, sym_block_comment, - [92186] = 5, + [93797] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4178), 1, + ACTIONS(4061), 1, anon_sym_LPAREN, - STATE(1702), 1, + STATE(1714), 1, sym_parameters, - STATE(3208), 2, + STATE(3266), 2, sym_line_comment, sym_block_comment, - [92203] = 5, + [93814] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - STATE(1176), 1, - sym_declaration_list, - STATE(3209), 2, + ACTIONS(6752), 1, + sym_super, + ACTIONS(6768), 1, + sym_identifier, + STATE(3267), 2, sym_line_comment, sym_block_comment, - [92220] = 5, + [93831] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_PIPE, - ACTIONS(5755), 1, - anon_sym_COLON, - STATE(3210), 2, + ACTIONS(6770), 1, + anon_sym_STAR_SLASH, + ACTIONS(6772), 1, + sym__block_comment_content, + STATE(3268), 2, sym_line_comment, sym_block_comment, - [92237] = 5, + [93848] = 5, ACTIONS(27), 1, anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(236), 1, + STATE(163), 1, sym_closure_parameters, - STATE(3211), 2, + STATE(3269), 2, sym_line_comment, sym_block_comment, - [92254] = 4, + [93865] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6824), 2, + ACTIONS(6774), 2, sym_identifier, sym_super, - STATE(3212), 2, + STATE(3270), 2, sym_line_comment, sym_block_comment, - [92269] = 4, + [93880] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6820), 2, - sym_identifier, - sym_super, - STATE(3213), 2, + ACTIONS(5072), 1, + anon_sym_LBRACE, + STATE(706), 1, + sym_declaration_list, + STATE(3271), 2, sym_line_comment, sym_block_comment, - [92284] = 5, + [93897] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - STATE(1241), 1, - sym_declaration_list, - STATE(3214), 2, + ACTIONS(6740), 1, + anon_sym_SEMI, + ACTIONS(6776), 1, + anon_sym_RPAREN, + STATE(3272), 2, sym_line_comment, sym_block_comment, - [92301] = 5, + [93914] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5164), 1, - anon_sym_COLON, - STATE(2550), 1, - sym_trait_bounds, - STATE(3215), 2, + ACTIONS(3335), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3273), 2, sym_line_comment, sym_block_comment, - [92318] = 4, + [93929] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3418), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3216), 2, + ACTIONS(6740), 1, + anon_sym_SEMI, + ACTIONS(6776), 1, + anon_sym_RBRACK, + STATE(3274), 2, sym_line_comment, sym_block_comment, - [92333] = 4, + [93946] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6510), 2, - anon_sym_PIPE, - anon_sym_COMMA, - STATE(3217), 2, + ACTIONS(6740), 1, + anon_sym_SEMI, + ACTIONS(6778), 1, + anon_sym_RBRACE, + STATE(3275), 2, sym_line_comment, sym_block_comment, - [92348] = 5, + [93963] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - STATE(1249), 1, - sym_declaration_list, - STATE(3218), 2, + ACTIONS(5593), 1, + sym_super, + ACTIONS(6780), 1, + sym_identifier, + STATE(3276), 2, sym_line_comment, sym_block_comment, - [92365] = 5, + [93980] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - STATE(1250), 1, - sym_declaration_list, - STATE(3219), 2, + ACTIONS(4061), 1, + anon_sym_LPAREN, + STATE(1723), 1, + sym_parameters, + STATE(3277), 2, sym_line_comment, sym_block_comment, - [92382] = 4, + [93997] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6826), 2, + ACTIONS(6782), 1, sym_identifier, - sym_super, - STATE(3220), 2, + ACTIONS(6784), 1, + sym_mutable_specifier, + STATE(3278), 2, sym_line_comment, sym_block_comment, - [92397] = 5, + [94014] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4178), 1, + ACTIONS(3359), 1, anon_sym_LPAREN, - STATE(1658), 1, + STATE(1176), 1, sym_parameters, - STATE(3221), 2, + STATE(3279), 2, sym_line_comment, sym_block_comment, - [92414] = 5, + [94031] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3576), 1, - anon_sym_LBRACE, - STATE(1535), 1, - sym_field_initializer_list, - STATE(3222), 2, + ACTIONS(3103), 1, + anon_sym_PLUS, + ACTIONS(3889), 1, + anon_sym_COLON, + STATE(3280), 2, sym_line_comment, sym_block_comment, - [92431] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [94048] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(224), 1, - sym_closure_parameters, - STATE(3223), 2, + ACTIONS(6786), 2, + sym_identifier, + sym_super, + STATE(3281), 2, sym_line_comment, sym_block_comment, - [92448] = 5, + [94063] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5831), 1, - sym_super, - ACTIONS(5898), 1, - sym_identifier, - STATE(3224), 2, + ACTIONS(5072), 1, + anon_sym_LBRACE, + STATE(747), 1, + sym_declaration_list, + STATE(3282), 2, sym_line_comment, sym_block_comment, - [92465] = 4, + [94080] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6484), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3225), 2, + ACTIONS(5530), 1, + sym_super, + ACTIONS(6788), 1, + sym_identifier, + STATE(3283), 2, sym_line_comment, sym_block_comment, - [92480] = 5, + [94097] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5067), 1, - anon_sym_LBRACE, - STATE(1184), 1, - sym_field_declaration_list, - STATE(3226), 2, + ACTIONS(5900), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3284), 2, sym_line_comment, sym_block_comment, - [92497] = 5, + [94112] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5469), 1, + ACTIONS(5399), 1, anon_sym_LBRACE, - STATE(1261), 1, + STATE(1180), 1, sym_enum_variant_list, - STATE(3227), 2, + STATE(3285), 2, sym_line_comment, sym_block_comment, - [92514] = 5, + [94129] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, - anon_sym_LPAREN, - STATE(1392), 1, - sym_parameters, - STATE(3228), 2, + ACTIONS(5558), 1, + anon_sym_COLON, + ACTIONS(5560), 1, + anon_sym_PIPE, + STATE(3286), 2, sym_line_comment, sym_block_comment, - [92531] = 5, + [94146] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6828), 1, - anon_sym_SEMI, - ACTIONS(6830), 1, - anon_sym_as, - STATE(3229), 2, + ACTIONS(6790), 1, + sym_identifier, + ACTIONS(6792), 1, + sym_mutable_specifier, + STATE(3287), 2, sym_line_comment, sym_block_comment, - [92548] = 5, + [94163] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5067), 1, + ACTIONS(5072), 1, anon_sym_LBRACE, - STATE(1268), 1, - sym_field_declaration_list, - STATE(3230), 2, + STATE(808), 1, + sym_declaration_list, + STATE(3288), 2, sym_line_comment, sym_block_comment, - [92565] = 5, + [94180] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6832), 1, - anon_sym_LPAREN, - ACTIONS(6834), 1, - anon_sym_COLON_COLON, - STATE(3231), 2, + ACTIONS(6794), 2, + sym__block_comment_content, + anon_sym_STAR_SLASH, + STATE(3289), 2, sym_line_comment, sym_block_comment, - [92582] = 5, + [94195] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5067), 1, + ACTIONS(5417), 1, anon_sym_LBRACE, - STATE(1270), 1, - sym_field_declaration_list, - STATE(3232), 2, + STATE(551), 1, + sym_enum_variant_list, + STATE(3290), 2, sym_line_comment, sym_block_comment, - [92599] = 5, + [94212] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - STATE(1273), 1, - sym_declaration_list, - STATE(3233), 2, + STATE(183), 1, + sym_closure_parameters, + STATE(3291), 2, sym_line_comment, sym_block_comment, - [92616] = 5, + [94229] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - STATE(1192), 1, - sym_declaration_list, - STATE(3234), 2, + ACTIONS(3103), 1, + anon_sym_PLUS, + ACTIONS(3885), 1, + anon_sym_COLON, + STATE(3292), 2, sym_line_comment, sym_block_comment, - [92633] = 5, + [94246] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5589), 1, - sym_super, - ACTIONS(6836), 1, - sym_identifier, - STATE(3235), 2, + ACTIONS(6796), 1, + anon_sym_RPAREN, + ACTIONS(6798), 1, + anon_sym_COLON_COLON, + STATE(3293), 2, sym_line_comment, sym_block_comment, - [92650] = 5, + [94263] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6838), 1, - sym_identifier, - ACTIONS(6840), 1, - sym_super, - STATE(3236), 2, + ACTIONS(6800), 1, + anon_sym_RPAREN, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + STATE(3294), 2, sym_line_comment, sym_block_comment, - [92667] = 4, + [94280] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6842), 2, - anon_sym_RBRACE, + ACTIONS(5457), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(3237), 2, + STATE(3295), 2, sym_line_comment, sym_block_comment, - [92682] = 5, + [94295] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5589), 1, + ACTIONS(5593), 1, sym_super, - ACTIONS(6844), 1, + ACTIONS(6804), 1, sym_identifier, - STATE(3238), 2, + STATE(3296), 2, + sym_line_comment, + sym_block_comment, + [94312] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6806), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3297), 2, sym_line_comment, sym_block_comment, - [92699] = 5, + [94327] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4746), 1, + ACTIONS(6800), 1, + anon_sym_RPAREN, + ACTIONS(6808), 1, anon_sym_COLON_COLON, - ACTIONS(5099), 1, - anon_sym_for, - STATE(3239), 2, + STATE(3298), 2, + sym_line_comment, + sym_block_comment, + [94344] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6800), 1, + anon_sym_RPAREN, + ACTIONS(6810), 1, + anon_sym_COLON_COLON, + STATE(3299), 2, sym_line_comment, sym_block_comment, - [92716] = 5, + [94361] = 5, ACTIONS(27), 1, anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(233), 1, + STATE(190), 1, sym_closure_parameters, - STATE(3240), 2, + STATE(3300), 2, sym_line_comment, sym_block_comment, - [92733] = 5, + [94378] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6826), 1, - sym_super, - ACTIONS(6846), 1, - sym_identifier, - STATE(3241), 2, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(1983), 1, + sym_field_initializer_list, + STATE(3301), 2, sym_line_comment, sym_block_comment, - [92750] = 5, + [94395] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3438), 1, - anon_sym_LT2, - STATE(1518), 1, - sym_type_arguments, - STATE(3242), 2, + ACTIONS(6203), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3302), 2, sym_line_comment, sym_block_comment, - [92767] = 4, + [94410] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6848), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3243), 2, + ACTIONS(5034), 1, + anon_sym_LBRACE, + STATE(1197), 1, + sym_field_declaration_list, + STATE(3303), 2, sym_line_comment, sym_block_comment, - [92782] = 5, + [94427] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5676), 1, - sym_super, - ACTIONS(6846), 1, - sym_identifier, - STATE(3244), 2, + ACTIONS(6812), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3304), 2, sym_line_comment, sym_block_comment, - [92799] = 5, + [94442] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5131), 1, - anon_sym_LBRACE, - STATE(671), 1, - sym_field_declaration_list, - STATE(3245), 2, + ACTIONS(5530), 1, + sym_super, + ACTIONS(6814), 1, + sym_identifier, + STATE(3305), 2, sym_line_comment, sym_block_comment, - [92816] = 5, + [94459] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5469), 1, + ACTIONS(5046), 1, anon_sym_LBRACE, - STATE(1197), 1, - sym_enum_variant_list, - STATE(3246), 2, + STATE(1198), 1, + sym_declaration_list, + STATE(3306), 2, sym_line_comment, sym_block_comment, - [92833] = 5, + [94476] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5131), 1, + ACTIONS(5046), 1, anon_sym_LBRACE, - STATE(577), 1, - sym_field_declaration_list, - STATE(3247), 2, + STATE(1199), 1, + sym_declaration_list, + STATE(3307), 2, sym_line_comment, sym_block_comment, - [92850] = 5, + [94493] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6850), 1, - anon_sym_STAR_SLASH, - ACTIONS(6852), 1, - sym__block_comment_content, - STATE(3248), 2, + ACTIONS(5020), 1, + anon_sym_LBRACE, + STATE(591), 1, + sym_field_declaration_list, + STATE(3308), 2, sym_line_comment, sym_block_comment, - [92867] = 4, + [94510] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6319), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3249), 2, + ACTIONS(6816), 1, + anon_sym_SEMI, + ACTIONS(6818), 1, + anon_sym_EQ, + STATE(3309), 2, sym_line_comment, sym_block_comment, - [92882] = 5, + [94527] = 5, ACTIONS(27), 1, anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(248), 1, + STATE(152), 1, sym_closure_parameters, - STATE(3250), 2, + STATE(3310), 2, sym_line_comment, sym_block_comment, - [92899] = 5, + [94544] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5589), 1, - sym_super, - ACTIONS(6854), 1, - sym_identifier, - STATE(3251), 2, + ACTIONS(5034), 1, + anon_sym_LBRACE, + STATE(1205), 1, + sym_field_declaration_list, + STATE(3311), 2, sym_line_comment, sym_block_comment, - [92916] = 4, + [94561] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5970), 2, + ACTIONS(5884), 2, sym_identifier, sym_super, - STATE(3252), 2, + STATE(3312), 2, sym_line_comment, sym_block_comment, - [92931] = 5, + [94576] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6856), 1, - anon_sym_SEMI, - ACTIONS(6858), 1, - anon_sym_EQ, - STATE(3253), 2, + ACTIONS(6764), 1, + anon_sym_LT, + STATE(966), 1, + sym_type_parameters, + STATE(3313), 2, sym_line_comment, sym_block_comment, - [92948] = 5, + [94593] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6816), 1, + ACTIONS(6752), 1, sym_super, - ACTIONS(6860), 1, + ACTIONS(6820), 1, sym_identifier, - STATE(3254), 2, + STATE(3314), 2, sym_line_comment, sym_block_comment, - [92965] = 5, + [94610] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, - sym_super, - ACTIONS(5898), 1, - sym_identifier, - STATE(3255), 2, + ACTIONS(5046), 1, + anon_sym_LBRACE, + STATE(1210), 1, + sym_declaration_list, + STATE(3315), 2, sym_line_comment, sym_block_comment, - [92982] = 5, + [94627] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6820), 1, + ACTIONS(5263), 1, sym_super, - ACTIONS(6838), 1, + ACTIONS(5764), 1, sym_identifier, - STATE(3256), 2, + STATE(3316), 2, sym_line_comment, sym_block_comment, - [92999] = 5, + [94644] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5067), 1, - anon_sym_LBRACE, - STATE(1200), 1, - sym_field_declaration_list, - STATE(3257), 2, + ACTIONS(6758), 1, + sym_super, + ACTIONS(6822), 1, + sym_identifier, + STATE(3317), 2, sym_line_comment, sym_block_comment, - [93016] = 5, + [94661] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, - anon_sym_LBRACE, - STATE(578), 1, - sym_declaration_list, - STATE(3258), 2, + ACTIONS(6824), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3318), 2, sym_line_comment, sym_block_comment, - [93033] = 5, + [94676] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5676), 1, - sym_super, - ACTIONS(6862), 1, - sym_identifier, - STATE(3259), 2, + STATE(171), 1, + sym_closure_parameters, + STATE(3319), 2, sym_line_comment, sym_block_comment, - [93050] = 5, + [94693] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_PIPE, - ACTIONS(6864), 1, - anon_sym_in, - STATE(3260), 2, + ACTIONS(6826), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3320), 2, sym_line_comment, sym_block_comment, - [93067] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [94708] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(249), 1, - sym_closure_parameters, - STATE(3261), 2, + ACTIONS(6232), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3321), 2, sym_line_comment, sym_block_comment, - [93084] = 5, + [94723] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6866), 1, - anon_sym_LBRACK, - ACTIONS(6868), 1, - anon_sym_BANG, - STATE(3262), 2, + ACTIONS(5593), 1, + sym_super, + ACTIONS(6828), 1, + sym_identifier, + STATE(3322), 2, sym_line_comment, sym_block_comment, - [93101] = 5, + [94740] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, + ACTIONS(5399), 1, anon_sym_LBRACE, - STATE(579), 1, - sym_declaration_list, - STATE(3263), 2, + STATE(1215), 1, + sym_enum_variant_list, + STATE(3323), 2, sym_line_comment, sym_block_comment, - [93118] = 4, + [94757] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6870), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3264), 2, + STATE(153), 1, + sym_closure_parameters, + STATE(3324), 2, sym_line_comment, sym_block_comment, - [93133] = 4, + [94774] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6872), 2, + ACTIONS(6830), 2, anon_sym_const, sym_mutable_specifier, - STATE(3265), 2, + STATE(3325), 2, sym_line_comment, sym_block_comment, - [93148] = 4, + [94789] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6545), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3266), 2, + ACTIONS(6832), 2, + sym_identifier, + sym_metavariable, + STATE(3326), 2, sym_line_comment, sym_block_comment, - [93163] = 5, + [94804] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5067), 1, + ACTIONS(5034), 1, anon_sym_LBRACE, - STATE(1203), 1, + STATE(1218), 1, sym_field_declaration_list, - STATE(3267), 2, + STATE(3327), 2, sym_line_comment, sym_block_comment, - [93180] = 5, + [94821] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6874), 1, - anon_sym_SEMI, - ACTIONS(6876), 1, - anon_sym_as, - STATE(3268), 2, + ACTIONS(5034), 1, + anon_sym_LBRACE, + STATE(1221), 1, + sym_field_declaration_list, + STATE(3328), 2, sym_line_comment, sym_block_comment, - [93197] = 5, + [94838] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6816), 1, - sym_super, - ACTIONS(6878), 1, - sym_identifier, - STATE(3269), 2, + ACTIONS(6834), 2, + sym_float_literal, + sym_integer_literal, + STATE(3329), 2, sym_line_comment, sym_block_comment, - [93214] = 4, + [94853] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5676), 2, - sym_identifier, + ACTIONS(6786), 1, sym_super, - STATE(3270), 2, + ACTIONS(6836), 1, + sym_identifier, + STATE(3330), 2, sym_line_comment, sym_block_comment, - [93229] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [94870] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(220), 1, - sym_closure_parameters, - STATE(3271), 2, + ACTIONS(6838), 1, + anon_sym_SEMI, + ACTIONS(6840), 1, + anon_sym_as, + STATE(3331), 2, sym_line_comment, sym_block_comment, - [93246] = 5, + [94887] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3084), 1, - anon_sym_SQUOTE, - STATE(3027), 1, - sym_lifetime, - STATE(3272), 2, + ACTIONS(6842), 2, + sym_float_literal, + sym_integer_literal, + STATE(3332), 2, sym_line_comment, sym_block_comment, - [93263] = 4, + [94902] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6564), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3273), 2, + ACTIONS(6844), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3333), 2, sym_line_comment, sym_block_comment, - [93278] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [94917] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(247), 1, - sym_closure_parameters, - STATE(3274), 2, + ACTIONS(5764), 1, + sym_identifier, + ACTIONS(5766), 1, + sym_super, + STATE(3334), 2, sym_line_comment, sym_block_comment, - [93295] = 5, + [94934] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6826), 1, - sym_super, - ACTIONS(6880), 1, - sym_identifier, - STATE(3275), 2, + ACTIONS(5020), 1, + anon_sym_LBRACE, + STATE(654), 1, + sym_field_declaration_list, + STATE(3335), 2, sym_line_comment, sym_block_comment, - [93312] = 5, + [94951] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, - anon_sym_LT, - STATE(949), 1, - sym_type_parameters, - STATE(3276), 2, + ACTIONS(3095), 1, + anon_sym_PLUS, + ACTIONS(6846), 1, + anon_sym_GT, + STATE(3336), 2, sym_line_comment, sym_block_comment, - [93329] = 5, + [94968] = 5, ACTIONS(27), 1, anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(256), 1, + STATE(155), 1, sym_closure_parameters, - STATE(3277), 2, + STATE(3337), 2, sym_line_comment, sym_block_comment, - [93346] = 5, + [94985] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6882), 1, - sym_identifier, - ACTIONS(6884), 1, - sym_super, - STATE(3278), 2, + ACTIONS(6740), 1, + anon_sym_SEMI, + ACTIONS(6848), 1, + anon_sym_RBRACE, + STATE(3338), 2, sym_line_comment, sym_block_comment, - [93363] = 4, + [95002] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6886), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3279), 2, + ACTIONS(6740), 1, + anon_sym_SEMI, + ACTIONS(6850), 1, + anon_sym_RBRACE, + STATE(3339), 2, sym_line_comment, sym_block_comment, - [93378] = 5, + [95019] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5831), 1, - sym_super, - ACTIONS(5833), 1, - sym_identifier, - STATE(3280), 2, + ACTIONS(4706), 1, + anon_sym_COLON_COLON, + ACTIONS(6456), 1, + anon_sym_for, + STATE(3340), 2, sym_line_comment, sym_block_comment, - [93395] = 5, + [95036] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6840), 1, + ACTIONS(6300), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3341), 2, + sym_line_comment, + sym_block_comment, + [95051] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6786), 1, sym_super, - ACTIONS(6888), 1, + ACTIONS(6852), 1, sym_identifier, - STATE(3281), 2, + STATE(3342), 2, sym_line_comment, sym_block_comment, - [93412] = 5, + [95068] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6890), 1, - anon_sym_SEMI, - ACTIONS(6892), 1, - anon_sym_EQ, - STATE(3282), 2, + ACTIONS(6758), 2, + sym_identifier, + sym_super, + STATE(3343), 2, sym_line_comment, sym_block_comment, - [93429] = 5, + [95083] = 5, ACTIONS(27), 1, anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(243), 1, + STATE(157), 1, sym_closure_parameters, - STATE(3283), 2, + STATE(3344), 2, sym_line_comment, sym_block_comment, - [93446] = 5, + [95100] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, - anon_sym_LBRACE, - STATE(732), 1, - sym_declaration_list, - STATE(3284), 2, + ACTIONS(3359), 1, + anon_sym_LPAREN, + STATE(1418), 1, + sym_parameters, + STATE(3345), 2, sym_line_comment, sym_block_comment, - [93463] = 5, + [95117] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5131), 1, + ACTIONS(5020), 1, anon_sym_LBRACE, - STATE(585), 1, + STATE(717), 1, sym_field_declaration_list, - STATE(3285), 2, - sym_line_comment, - sym_block_comment, - [93480] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(6804), 1, - anon_sym_COLON_COLON, - ACTIONS(6894), 1, - anon_sym_RPAREN, - STATE(3286), 2, + STATE(3346), 2, sym_line_comment, sym_block_comment, - [93497] = 5, + [95134] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6826), 1, + ACTIONS(6760), 1, sym_super, - ACTIONS(6896), 1, + ACTIONS(6854), 1, sym_identifier, - STATE(3287), 2, + STATE(3347), 2, sym_line_comment, sym_block_comment, - [93514] = 5, + [95151] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, - anon_sym_LT, - STATE(950), 1, - sym_type_parameters, - STATE(3288), 2, + ACTIONS(5766), 1, + sym_super, + ACTIONS(5936), 1, + sym_identifier, + STATE(3348), 2, sym_line_comment, sym_block_comment, - [93531] = 5, + [95168] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4746), 1, - anon_sym_COLON_COLON, - ACTIONS(6586), 1, - anon_sym_for, - STATE(3289), 2, + ACTIONS(6856), 1, + sym_identifier, + ACTIONS(6858), 1, + sym_super, + STATE(3349), 2, sym_line_comment, sym_block_comment, - [93548] = 5, + [95185] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6816), 1, - sym_super, - ACTIONS(6898), 1, - sym_identifier, - STATE(3290), 2, + ACTIONS(4617), 1, + anon_sym_LPAREN, + STATE(2488), 1, + sym_parameters, + STATE(3350), 2, sym_line_comment, sym_block_comment, - [93565] = 5, + [95202] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5831), 1, - sym_super, - ACTIONS(5918), 1, - sym_identifier, - STATE(3291), 2, + ACTIONS(6860), 1, + anon_sym_SEMI, + ACTIONS(6862), 1, + anon_sym_as, + STATE(3351), 2, sym_line_comment, sym_block_comment, - [93582] = 5, + [95219] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6840), 1, - sym_super, - ACTIONS(6900), 1, - sym_identifier, - STATE(3292), 2, + ACTIONS(5072), 1, + anon_sym_LBRACE, + STATE(718), 1, + sym_declaration_list, + STATE(3352), 2, sym_line_comment, sym_block_comment, - [93599] = 5, + [95236] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6806), 1, - anon_sym_COLON_COLON, - ACTIONS(6894), 1, - anon_sym_RPAREN, - STATE(3293), 2, + STATE(158), 1, + sym_closure_parameters, + STATE(3353), 2, sym_line_comment, sym_block_comment, - [93616] = 5, + [95253] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5461), 1, + ACTIONS(5072), 1, anon_sym_LBRACE, - STATE(557), 1, - sym_enum_variant_list, - STATE(3294), 2, + STATE(579), 1, + sym_declaration_list, + STATE(3354), 2, sym_line_comment, sym_block_comment, - [93633] = 5, + [95270] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6902), 1, - anon_sym_SEMI, - ACTIONS(6904), 1, + ACTIONS(6239), 2, anon_sym_RPAREN, - STATE(3295), 2, + anon_sym_COMMA, + STATE(3355), 2, sym_line_comment, sym_block_comment, - [93650] = 4, + [95285] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6011), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3296), 2, + ACTIONS(4299), 1, + anon_sym_EQ_GT, + ACTIONS(6864), 1, + anon_sym_AMP_AMP, + STATE(3356), 2, sym_line_comment, sym_block_comment, - [93665] = 5, + [95302] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5469), 1, - anon_sym_LBRACE, - STATE(1152), 1, - sym_enum_variant_list, - STATE(3297), 2, + ACTIONS(6321), 1, + anon_sym_EQ_GT, + ACTIONS(6864), 1, + anon_sym_AMP_AMP, + STATE(3357), 2, sym_line_comment, sym_block_comment, - [93682] = 5, + [95319] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4883), 1, - anon_sym_COLON_COLON, - ACTIONS(4993), 1, - anon_sym_BANG, - STATE(3298), 2, + ACTIONS(4617), 1, + anon_sym_LPAREN, + STATE(2512), 1, + sym_parameters, + STATE(3358), 2, sym_line_comment, sym_block_comment, - [93699] = 4, + [95336] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6906), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3299), 2, + ACTIONS(6786), 1, + sym_super, + ACTIONS(6866), 1, + sym_identifier, + STATE(3359), 2, sym_line_comment, sym_block_comment, - [93714] = 5, + [95353] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6908), 1, - sym_identifier, - ACTIONS(6910), 1, - sym_super, - STATE(3300), 2, + ACTIONS(4617), 1, + anon_sym_LPAREN, + STATE(2388), 1, + sym_parameters, + STATE(3360), 2, sym_line_comment, sym_block_comment, - [93731] = 5, + [95370] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5676), 1, + ACTIONS(6752), 1, sym_super, - ACTIONS(6912), 1, + ACTIONS(6868), 1, sym_identifier, - STATE(3301), 2, + STATE(3361), 2, sym_line_comment, sym_block_comment, - [93748] = 5, + [95387] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6816), 1, + ACTIONS(5766), 1, sym_super, - ACTIONS(6914), 1, + ACTIONS(6078), 1, sym_identifier, - STATE(3302), 2, + STATE(3362), 2, sym_line_comment, sym_block_comment, - [93765] = 5, + [95404] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5930), 1, + ACTIONS(6858), 1, sym_super, - ACTIONS(5980), 1, + ACTIONS(6870), 1, sym_identifier, - STATE(3303), 2, + STATE(3363), 2, sym_line_comment, sym_block_comment, - [93782] = 5, + [95421] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6824), 1, - sym_super, - ACTIONS(6916), 1, - sym_identifier, - STATE(3304), 2, + ACTIONS(5020), 1, + anon_sym_LBRACE, + STATE(616), 1, + sym_field_declaration_list, + STATE(3364), 2, sym_line_comment, sym_block_comment, - [93799] = 5, + [95438] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - STATE(1357), 1, - sym_declaration_list, - STATE(3305), 2, + ACTIONS(6872), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3365), 2, sym_line_comment, sym_block_comment, - [93816] = 5, + [95453] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6808), 1, - anon_sym_COLON_COLON, - ACTIONS(6894), 1, - anon_sym_RPAREN, - STATE(3306), 2, + ACTIONS(6752), 2, + sym_identifier, + sym_super, + STATE(3366), 2, sym_line_comment, sym_block_comment, - [93833] = 5, + [95468] = 5, ACTIONS(27), 1, anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(255), 1, + STATE(191), 1, sym_closure_parameters, - STATE(3307), 2, + STATE(3367), 2, sym_line_comment, sym_block_comment, - [93850] = 5, + [95485] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5676), 1, - sym_super, - ACTIONS(6880), 1, + ACTIONS(6874), 1, sym_identifier, - STATE(3308), 2, + ACTIONS(6876), 1, + sym_super, + STATE(3368), 2, sym_line_comment, sym_block_comment, - [93867] = 5, + [95502] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6816), 1, + ACTIONS(6752), 1, sym_super, - ACTIONS(6844), 1, + ACTIONS(6878), 1, sym_identifier, - STATE(3309), 2, + STATE(3369), 2, sym_line_comment, sym_block_comment, - [93884] = 5, + [95519] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, + ACTIONS(5768), 1, sym_super, - ACTIONS(5833), 1, + ACTIONS(5886), 1, sym_identifier, - STATE(3310), 2, + STATE(3370), 2, sym_line_comment, sym_block_comment, - [93901] = 5, + [95536] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6820), 1, + ACTIONS(6774), 1, sym_super, - ACTIONS(6888), 1, + ACTIONS(6880), 1, sym_identifier, - STATE(3311), 2, + STATE(3371), 2, sym_line_comment, sym_block_comment, - [93918] = 5, + [95553] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6826), 1, - sym_super, - ACTIONS(6918), 1, - sym_identifier, - STATE(3312), 2, + ACTIONS(5020), 1, + anon_sym_LBRACE, + STATE(563), 1, + sym_field_declaration_list, + STATE(3372), 2, sym_line_comment, sym_block_comment, - [93935] = 5, + [95570] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5829), 1, - sym_identifier, - ACTIONS(5831), 1, - sym_super, - STATE(3313), 2, + ACTIONS(6882), 1, + anon_sym_SEMI, + ACTIONS(6884), 1, + anon_sym_as, + STATE(3373), 2, sym_line_comment, sym_block_comment, - [93952] = 5, + [95587] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6840), 1, + ACTIONS(5263), 1, sym_super, - ACTIONS(6920), 1, + ACTIONS(6036), 1, sym_identifier, - STATE(3314), 2, + STATE(3374), 2, sym_line_comment, sym_block_comment, - [93969] = 5, + [95604] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6826), 1, - sym_super, - ACTIONS(6922), 1, - sym_identifier, - STATE(3315), 2, + ACTIONS(5072), 1, + anon_sym_LBRACE, + STATE(548), 1, + sym_declaration_list, + STATE(3375), 2, sym_line_comment, sym_block_comment, - [93986] = 5, + [95621] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5831), 1, + ACTIONS(5530), 1, sym_super, - ACTIONS(5886), 1, + ACTIONS(6852), 1, sym_identifier, - STATE(3316), 2, + STATE(3376), 2, sym_line_comment, sym_block_comment, - [94003] = 5, + [95638] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6840), 1, - sym_super, - ACTIONS(6924), 1, - sym_identifier, - STATE(3317), 2, + ACTIONS(3494), 1, + anon_sym_LBRACE, + STATE(1527), 1, + sym_field_initializer_list, + STATE(3377), 2, sym_line_comment, sym_block_comment, - [94020] = 5, + [95655] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6826), 1, + ACTIONS(6752), 1, sym_super, - ACTIONS(6926), 1, + ACTIONS(6804), 1, sym_identifier, - STATE(3318), 2, + STATE(3378), 2, sym_line_comment, sym_block_comment, - [94037] = 5, + [95672] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5831), 1, + ACTIONS(5263), 1, sym_super, - ACTIONS(5904), 1, + ACTIONS(5936), 1, sym_identifier, - STATE(3319), 2, + STATE(3379), 2, sym_line_comment, sym_block_comment, - [94054] = 5, + [95689] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6840), 1, + ACTIONS(6758), 1, sym_super, - ACTIONS(6928), 1, + ACTIONS(6856), 1, sym_identifier, - STATE(3320), 2, + STATE(3380), 2, sym_line_comment, sym_block_comment, - [94071] = 5, + [95706] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5676), 1, + ACTIONS(6786), 1, sym_super, - ACTIONS(6926), 1, + ACTIONS(6886), 1, sym_identifier, - STATE(3321), 2, + STATE(3381), 2, sym_line_comment, sym_block_comment, - [94088] = 5, + [95723] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, + ACTIONS(5766), 1, sym_super, - ACTIONS(5904), 1, + ACTIONS(5934), 1, sym_identifier, - STATE(3322), 2, + STATE(3382), 2, sym_line_comment, sym_block_comment, - [94105] = 5, + [95740] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6820), 1, + ACTIONS(6858), 1, sym_super, - ACTIONS(6928), 1, + ACTIONS(6888), 1, sym_identifier, - STATE(3323), 2, + STATE(3383), 2, sym_line_comment, sym_block_comment, - [94122] = 4, + [95757] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 2, - sym_identifier, + ACTIONS(6786), 1, sym_super, - STATE(3324), 2, - sym_line_comment, - sym_block_comment, - [94137] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4819), 1, - anon_sym_BANG, - ACTIONS(4875), 1, - anon_sym_COLON_COLON, - STATE(3325), 2, + ACTIONS(6890), 1, + sym_identifier, + STATE(3384), 2, sym_line_comment, sym_block_comment, - [94154] = 5, + [95774] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4819), 1, - anon_sym_BANG, - ACTIONS(4865), 1, - anon_sym_COLON_COLON, - STATE(3326), 2, + ACTIONS(5766), 1, + sym_super, + ACTIONS(5965), 1, + sym_identifier, + STATE(3385), 2, sym_line_comment, sym_block_comment, - [94171] = 5, + [95791] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4206), 1, - anon_sym_LBRACE, - STATE(1752), 1, - sym_field_initializer_list, - STATE(3327), 2, + ACTIONS(6858), 1, + sym_super, + ACTIONS(6892), 1, + sym_identifier, + STATE(3386), 2, sym_line_comment, sym_block_comment, - [94188] = 5, + [95808] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4674), 1, - anon_sym_LPAREN, - STATE(2456), 1, - sym_parameters, - STATE(3328), 2, + ACTIONS(6786), 1, + sym_super, + ACTIONS(6894), 1, + sym_identifier, + STATE(3387), 2, sym_line_comment, sym_block_comment, - [94205] = 5, + [95825] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5428), 1, - anon_sym_RBRACE, - ACTIONS(6902), 1, - anon_sym_SEMI, - STATE(3329), 2, + ACTIONS(5766), 1, + sym_super, + ACTIONS(5981), 1, + sym_identifier, + STATE(3388), 2, sym_line_comment, sym_block_comment, - [94222] = 5, + [95842] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - STATE(1366), 1, - sym_declaration_list, - STATE(3330), 2, + ACTIONS(6858), 1, + sym_super, + ACTIONS(6896), 1, + sym_identifier, + STATE(3389), 2, sym_line_comment, sym_block_comment, - [94239] = 5, + [95859] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - STATE(1367), 1, - sym_declaration_list, - STATE(3331), 2, + ACTIONS(5530), 1, + sym_super, + ACTIONS(6894), 1, + sym_identifier, + STATE(3390), 2, sym_line_comment, sym_block_comment, - [94256] = 5, + [95876] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6820), 1, + ACTIONS(5263), 1, sym_super, - ACTIONS(6930), 1, + ACTIONS(5981), 1, sym_identifier, - STATE(3332), 2, + STATE(3391), 2, sym_line_comment, sym_block_comment, - [94273] = 5, + [95893] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6832), 1, - anon_sym_LPAREN, - ACTIONS(6932), 1, - anon_sym_COLON_COLON, - STATE(3333), 2, + ACTIONS(6758), 1, + sym_super, + ACTIONS(6896), 1, + sym_identifier, + STATE(3392), 2, sym_line_comment, sym_block_comment, - [94290] = 5, + [95910] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6902), 1, - anon_sym_SEMI, - ACTIONS(6934), 1, - anon_sym_RBRACE, - STATE(3334), 2, + ACTIONS(6261), 2, + anon_sym_PIPE, + anon_sym_COMMA, + STATE(3393), 2, sym_line_comment, sym_block_comment, - [94307] = 4, + [95925] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6936), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3335), 2, + ACTIONS(5072), 1, + anon_sym_LBRACE, + STATE(775), 1, + sym_declaration_list, + STATE(3394), 2, sym_line_comment, sym_block_comment, - [94322] = 5, + [95942] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3475), 1, - anon_sym_PLUS, - ACTIONS(3674), 1, - anon_sym_COLON_COLON, - STATE(3336), 2, + ACTIONS(5766), 2, + sym_identifier, + sym_super, + STATE(3395), 2, sym_line_comment, sym_block_comment, - [94339] = 5, + [95957] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3475), 1, - anon_sym_PLUS, - ACTIONS(3676), 1, - anon_sym_COLON_COLON, - STATE(3337), 2, + ACTIONS(6758), 1, + sym_super, + ACTIONS(6898), 1, + sym_identifier, + STATE(3396), 2, sym_line_comment, sym_block_comment, - [94356] = 5, + [95974] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, + ACTIONS(5046), 1, anon_sym_LBRACE, - STATE(590), 1, + STATE(1252), 1, sym_declaration_list, - STATE(3338), 2, + STATE(3397), 2, sym_line_comment, sym_block_comment, - [94373] = 5, + [95991] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6938), 1, - anon_sym_BANG, - ACTIONS(6940), 1, + ACTIONS(6900), 1, + anon_sym_LPAREN, + ACTIONS(6902), 1, anon_sym_COLON_COLON, - STATE(3339), 2, + STATE(3398), 2, sym_line_comment, sym_block_comment, - [94390] = 5, + [96008] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5131), 1, + ACTIONS(5046), 1, anon_sym_LBRACE, - STATE(673), 1, - sym_field_declaration_list, - STATE(3340), 2, - sym_line_comment, - sym_block_comment, - [94407] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5589), 1, - sym_super, - ACTIONS(6942), 1, - sym_identifier, - STATE(3341), 2, - sym_line_comment, - sym_block_comment, - [94424] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(6944), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3342), 2, - sym_line_comment, - sym_block_comment, - [94439] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(6946), 1, - sym_identifier, - ACTIONS(6948), 1, - sym_mutable_specifier, - STATE(3343), 2, + STATE(1259), 1, + sym_declaration_list, + STATE(3399), 2, sym_line_comment, sym_block_comment, - [94456] = 5, + [96025] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, + ACTIONS(5046), 1, anon_sym_LBRACE, - STATE(674), 1, + STATE(1260), 1, sym_declaration_list, - STATE(3344), 2, + STATE(3400), 2, sym_line_comment, sym_block_comment, - [94473] = 4, + [96042] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5524), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3345), 2, + ACTIONS(6904), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3401), 2, sym_line_comment, sym_block_comment, - [94488] = 5, + [96057] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, - anon_sym_LBRACE, - STATE(741), 1, - sym_declaration_list, - STATE(3346), 2, + ACTIONS(3420), 1, + anon_sym_PLUS, + ACTIONS(3585), 1, + anon_sym_COLON_COLON, + STATE(3402), 2, sym_line_comment, sym_block_comment, - [94505] = 4, + [96074] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6950), 2, - sym_float_literal, - sym_integer_literal, - STATE(3347), 2, + ACTIONS(3420), 1, + anon_sym_PLUS, + ACTIONS(3587), 1, + anon_sym_COLON_COLON, + STATE(3403), 2, sym_line_comment, sym_block_comment, - [94520] = 5, + [96091] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6826), 1, - sym_super, - ACTIONS(6952), 1, - sym_identifier, - STATE(3348), 2, + ACTIONS(4065), 1, + anon_sym_LT2, + STATE(1927), 1, + sym_type_arguments, + STATE(3404), 2, sym_line_comment, sym_block_comment, - [94537] = 4, + [96108] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6954), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3349), 2, + ACTIONS(6906), 1, + anon_sym_BANG, + ACTIONS(6908), 1, + anon_sym_COLON_COLON, + STATE(3405), 2, sym_line_comment, sym_block_comment, - [94552] = 4, + [96125] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6956), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3350), 2, + ACTIONS(6822), 1, + sym_identifier, + ACTIONS(6858), 1, + sym_super, + STATE(3406), 2, sym_line_comment, sym_block_comment, - [94567] = 4, + [96142] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6643), 2, - anon_sym_GT, + ACTIONS(6593), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(3351), 2, + STATE(3407), 2, sym_line_comment, sym_block_comment, - [94582] = 5, + [96157] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, + ACTIONS(5399), 1, anon_sym_LBRACE, - STATE(742), 1, - sym_declaration_list, - STATE(3352), 2, + STATE(1268), 1, + sym_enum_variant_list, + STATE(3408), 2, sym_line_comment, sym_block_comment, - [94599] = 5, + [96174] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, - anon_sym_LPAREN, - STATE(1294), 1, - sym_parameters, - STATE(3353), 2, + ACTIONS(5034), 1, + anon_sym_LBRACE, + STATE(1271), 1, + sym_field_declaration_list, + STATE(3409), 2, sym_line_comment, sym_block_comment, - [94616] = 5, + [96191] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, - anon_sym_LT, - STATE(969), 1, - sym_type_parameters, - STATE(3354), 2, + ACTIONS(5034), 1, + anon_sym_LBRACE, + STATE(1273), 1, + sym_field_declaration_list, + STATE(3410), 2, sym_line_comment, sym_block_comment, - [94633] = 5, + [96208] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6902), 1, + ACTIONS(5295), 1, + anon_sym_RBRACK, + ACTIONS(6740), 1, anon_sym_SEMI, - ACTIONS(6958), 1, - anon_sym_RBRACE, - STATE(3355), 2, + STATE(3411), 2, sym_line_comment, sym_block_comment, - [94650] = 5, + [96225] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4674), 1, - anon_sym_LPAREN, - STATE(2306), 1, - sym_parameters, - STATE(3356), 2, + ACTIONS(6910), 1, + anon_sym_SEMI, + ACTIONS(6912), 1, + anon_sym_EQ, + STATE(3412), 2, sym_line_comment, sym_block_comment, - [94667] = 4, + [96242] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6884), 2, + ACTIONS(6914), 2, sym_identifier, - sym_super, - STATE(3357), 2, + sym_metavariable, + STATE(3413), 2, sym_line_comment, sym_block_comment, - [94682] = 5, + [96257] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3210), 1, - anon_sym_PLUS, - ACTIONS(3810), 1, - anon_sym_COLON, - STATE(3358), 2, + ACTIONS(6764), 1, + anon_sym_LT, + STATE(996), 1, + sym_type_parameters, + STATE(3414), 2, sym_line_comment, sym_block_comment, - [94699] = 5, + [96274] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3210), 1, - anon_sym_PLUS, - ACTIONS(3814), 1, - anon_sym_COLON, - STATE(3359), 2, + ACTIONS(6916), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3415), 2, sym_line_comment, sym_block_comment, - [94716] = 5, + [96289] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4674), 1, + ACTIONS(4617), 1, anon_sym_LPAREN, - STATE(2314), 1, + STATE(2362), 1, sym_parameters, - STATE(3360), 2, + STATE(3416), 2, sym_line_comment, sym_block_comment, - [94733] = 5, + [96306] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4502), 1, - anon_sym_EQ_GT, - ACTIONS(6960), 1, - anon_sym_AMP_AMP, - STATE(3361), 2, + ACTIONS(5022), 1, + anon_sym_LT, + STATE(997), 1, + sym_type_parameters, + STATE(3417), 2, sym_line_comment, sym_block_comment, - [94750] = 5, + [96323] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, - anon_sym_EQ_GT, - ACTIONS(6960), 1, - anon_sym_AMP_AMP, - STATE(3362), 2, + ACTIONS(6717), 1, + sym_identifier, + ACTIONS(6721), 1, + sym_mutable_specifier, + STATE(3418), 2, sym_line_comment, sym_block_comment, - [94767] = 5, + [96340] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6902), 1, - anon_sym_SEMI, - ACTIONS(6904), 1, - anon_sym_RBRACK, - STATE(3363), 2, + ACTIONS(6918), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3419), 2, sym_line_comment, sym_block_comment, - [94784] = 5, + [96355] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5342), 1, - anon_sym_RPAREN, - ACTIONS(6902), 1, - anon_sym_SEMI, - STATE(3364), 2, + ACTIONS(5109), 1, + anon_sym_COLON, + STATE(2648), 1, + sym_trait_bounds, + STATE(3420), 2, sym_line_comment, sym_block_comment, - [94801] = 4, + [96372] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6816), 2, - sym_identifier, + ACTIONS(6752), 1, sym_super, - STATE(3365), 2, + ACTIONS(6920), 1, + sym_identifier, + STATE(3421), 2, sym_line_comment, sym_block_comment, - [94816] = 5, + [96389] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5342), 1, - anon_sym_RBRACK, - ACTIONS(6902), 1, - anon_sym_SEMI, - STATE(3366), 2, + STATE(189), 1, + sym_closure_parameters, + STATE(3422), 2, sym_line_comment, sym_block_comment, - [94833] = 5, + [96406] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5344), 1, - anon_sym_RPAREN, - ACTIONS(6902), 1, - anon_sym_SEMI, - STATE(3367), 2, + ACTIONS(6876), 2, + sym_identifier, + sym_super, + STATE(3423), 2, sym_line_comment, sym_block_comment, - [94850] = 5, + [96421] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5344), 1, - anon_sym_RBRACK, - ACTIONS(6902), 1, + ACTIONS(5349), 1, + anon_sym_RPAREN, + ACTIONS(6740), 1, anon_sym_SEMI, - STATE(3368), 2, + STATE(3424), 2, sym_line_comment, sym_block_comment, - [94867] = 4, + [96438] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6962), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3369), 2, + ACTIONS(5349), 1, + anon_sym_RBRACK, + ACTIONS(6740), 1, + anon_sym_SEMI, + STATE(3425), 2, sym_line_comment, sym_block_comment, - [94882] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [96455] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(219), 1, - sym_closure_parameters, - STATE(3370), 2, + ACTIONS(5072), 1, + anon_sym_LBRACE, + STATE(540), 1, + sym_declaration_list, + STATE(3426), 2, sym_line_comment, sym_block_comment, - [94899] = 5, + [96472] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6902), 1, + ACTIONS(5351), 1, + anon_sym_RPAREN, + ACTIONS(6740), 1, anon_sym_SEMI, - ACTIONS(6964), 1, - anon_sym_RBRACE, - STATE(3371), 2, + STATE(3427), 2, sym_line_comment, sym_block_comment, - [94916] = 5, + [96489] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5131), 1, - anon_sym_LBRACE, - STATE(751), 1, - sym_field_declaration_list, - STATE(3372), 2, + ACTIONS(5351), 1, + anon_sym_RBRACK, + ACTIONS(6740), 1, + anon_sym_SEMI, + STATE(3428), 2, sym_line_comment, sym_block_comment, - [94933] = 4, + [96506] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6966), 2, - sym__block_comment_content, - anon_sym_STAR_SLASH, - STATE(3373), 2, + ACTIONS(6491), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3429), 2, sym_line_comment, sym_block_comment, - [94948] = 5, + [96521] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, - anon_sym_LBRACE, - STATE(650), 1, - sym_declaration_list, - STATE(3374), 2, + ACTIONS(6510), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3430), 2, sym_line_comment, sym_block_comment, - [94965] = 5, + [96536] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6968), 1, + ACTIONS(5766), 1, + sym_super, + ACTIONS(5969), 1, sym_identifier, - ACTIONS(6970), 1, - sym_mutable_specifier, - STATE(3375), 2, - sym_line_comment, - sym_block_comment, - [94982] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(6972), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3376), 2, + STATE(3431), 2, sym_line_comment, sym_block_comment, - [94997] = 5, + [96553] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, - sym_super, - ACTIONS(5811), 1, - sym_identifier, - STATE(3377), 2, + ACTIONS(6922), 1, + anon_sym_LBRACK, + ACTIONS(6924), 1, + anon_sym_BANG, + STATE(3432), 2, sym_line_comment, sym_block_comment, - [95014] = 4, + [96570] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5831), 2, + ACTIONS(6756), 1, sym_identifier, + ACTIONS(6858), 1, sym_super, - STATE(3378), 2, + STATE(3433), 2, sym_line_comment, sym_block_comment, - [95029] = 5, + [96587] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6820), 1, + ACTIONS(6786), 1, sym_super, - ACTIONS(6974), 1, + ACTIONS(6814), 1, sym_identifier, - STATE(3379), 2, + STATE(3434), 2, sym_line_comment, sym_block_comment, - [95046] = 4, + [96604] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6976), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3380), 2, + ACTIONS(6926), 1, + sym_identifier, + ACTIONS(6928), 1, + sym_integer_literal, + STATE(3435), 2, sym_line_comment, sym_block_comment, - [95061] = 5, + [96621] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4674), 1, - anon_sym_LPAREN, - STATE(2328), 1, - sym_parameters, - STATE(3381), 2, + ACTIONS(5020), 1, + anon_sym_LBRACE, + STATE(757), 1, + sym_field_declaration_list, + STATE(3436), 2, sym_line_comment, sym_block_comment, - [95078] = 5, + [96638] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6902), 1, - anon_sym_SEMI, - ACTIONS(6978), 1, - anon_sym_RPAREN, - STATE(3382), 2, + ACTIONS(5417), 1, + anon_sym_LBRACE, + STATE(668), 1, + sym_enum_variant_list, + STATE(3437), 2, sym_line_comment, sym_block_comment, - [95095] = 4, + [96655] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6694), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3383), 2, + ACTIONS(4706), 1, + anon_sym_COLON_COLON, + ACTIONS(6104), 1, + anon_sym_for, + STATE(3438), 2, sym_line_comment, sym_block_comment, - [95110] = 4, + [96672] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6980), 2, - sym__block_comment_content, - anon_sym_STAR_SLASH, - STATE(3384), 2, + ACTIONS(4617), 1, + anon_sym_LPAREN, + STATE(2498), 1, + sym_parameters, + STATE(3439), 2, sym_line_comment, sym_block_comment, - [95125] = 5, + [96689] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4184), 1, - anon_sym_LT2, - STATE(1875), 1, - sym_type_arguments, - STATE(3385), 2, + ACTIONS(5560), 1, + anon_sym_PIPE, + ACTIONS(6930), 1, + anon_sym_in, + STATE(3440), 2, sym_line_comment, sym_block_comment, - [95142] = 5, + [96706] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4674), 1, + ACTIONS(4617), 1, anon_sym_LPAREN, - STATE(2332), 1, + STATE(2367), 1, sym_parameters, - STATE(3386), 2, - sym_line_comment, - sym_block_comment, - [95159] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(6902), 1, - anon_sym_SEMI, - ACTIONS(6978), 1, - anon_sym_RBRACK, - STATE(3387), 2, + STATE(3441), 2, sym_line_comment, sym_block_comment, - [95176] = 5, + [96723] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6902), 1, + ACTIONS(6740), 1, anon_sym_SEMI, - ACTIONS(6982), 1, + ACTIONS(6932), 1, anon_sym_RPAREN, - STATE(3388), 2, + STATE(3442), 2, sym_line_comment, sym_block_comment, - [95193] = 5, + [96740] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6902), 1, + ACTIONS(6740), 1, anon_sym_SEMI, - ACTIONS(6982), 1, + ACTIONS(6932), 1, anon_sym_RBRACK, - STATE(3389), 2, + STATE(3443), 2, sym_line_comment, sym_block_comment, - [95210] = 5, + [96757] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6902), 1, + ACTIONS(6740), 1, anon_sym_SEMI, - ACTIONS(6984), 1, + ACTIONS(6934), 1, anon_sym_RPAREN, - STATE(3390), 2, + STATE(3444), 2, sym_line_comment, sym_block_comment, - [95227] = 5, + [96774] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6902), 1, + ACTIONS(6740), 1, anon_sym_SEMI, - ACTIONS(6984), 1, + ACTIONS(6934), 1, anon_sym_RBRACK, - STATE(3391), 2, + STATE(3445), 2, sym_line_comment, sym_block_comment, - [95244] = 4, + [96791] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6040), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3392), 2, + ACTIONS(5072), 1, + anon_sym_LBRACE, + STATE(612), 1, + sym_declaration_list, + STATE(3446), 2, sym_line_comment, sym_block_comment, - [95259] = 5, + [96808] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - STATE(1123), 1, - sym_declaration_list, - STATE(3393), 2, + ACTIONS(6764), 1, + anon_sym_LT, + STATE(920), 1, + sym_type_parameters, + STATE(3447), 2, sym_line_comment, sym_block_comment, - [95276] = 4, + [96825] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6986), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3394), 2, + ACTIONS(4617), 1, + anon_sym_LPAREN, + STATE(2361), 1, + sym_parameters, + STATE(3448), 2, sym_line_comment, sym_block_comment, - [95291] = 5, + [96842] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3084), 1, - anon_sym_SQUOTE, - STATE(3351), 1, - sym_lifetime, - STATE(3395), 2, + ACTIONS(3359), 1, + anon_sym_LPAREN, + STATE(1452), 1, + sym_parameters, + STATE(3449), 2, sym_line_comment, sym_block_comment, - [95308] = 5, + [96859] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6988), 1, - anon_sym_GT, - STATE(3396), 2, + ACTIONS(5046), 1, + anon_sym_LBRACE, + STATE(1317), 1, + sym_declaration_list, + STATE(3450), 2, sym_line_comment, sym_block_comment, - [95325] = 5, + [96876] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6816), 1, + ACTIONS(5593), 1, sym_super, - ACTIONS(6854), 1, + ACTIONS(6920), 1, sym_identifier, - STATE(3397), 2, + STATE(3451), 2, sym_line_comment, sym_block_comment, - [95342] = 4, + [96893] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6910), 2, - sym_identifier, - sym_super, - STATE(3398), 2, + ACTIONS(5046), 1, + anon_sym_LBRACE, + STATE(1326), 1, + sym_declaration_list, + STATE(3452), 2, sym_line_comment, sym_block_comment, - [95357] = 4, + [96910] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6990), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3399), 2, + ACTIONS(5263), 1, + sym_super, + ACTIONS(5991), 1, + sym_identifier, + STATE(3453), 2, sym_line_comment, sym_block_comment, - [95372] = 5, + [96927] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6902), 1, - anon_sym_SEMI, - ACTIONS(6992), 1, - anon_sym_RBRACE, - STATE(3400), 2, + ACTIONS(5046), 1, + anon_sym_LBRACE, + STATE(1474), 1, + sym_declaration_list, + STATE(3454), 2, sym_line_comment, sym_block_comment, - [95389] = 5, + [96944] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4674), 1, + ACTIONS(4617), 1, anon_sym_LPAREN, - STATE(2290), 1, + STATE(2372), 1, sym_parameters, - STATE(3401), 2, + STATE(3455), 2, sym_line_comment, sym_block_comment, - [95406] = 4, + [96961] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6994), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3402), 2, + ACTIONS(5263), 2, + sym_identifier, + sym_super, + STATE(3456), 2, sym_line_comment, sym_block_comment, - [95421] = 5, + [96976] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5807), 1, - sym_identifier, - ACTIONS(5831), 1, - sym_super, - STATE(3403), 2, + ACTIONS(6936), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3457), 2, sym_line_comment, sym_block_comment, - [95438] = 5, + [96991] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6818), 1, + ACTIONS(5593), 2, sym_identifier, - ACTIONS(6840), 1, sym_super, - STATE(3404), 2, + STATE(3458), 2, sym_line_comment, sym_block_comment, - [95455] = 5, + [97006] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3210), 1, - anon_sym_PLUS, - ACTIONS(4074), 1, - anon_sym_COLON, - STATE(3405), 2, + ACTIONS(5399), 1, + anon_sym_LBRACE, + STATE(1457), 1, + sym_enum_variant_list, + STATE(3459), 2, sym_line_comment, sym_block_comment, - [95472] = 5, + [97023] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4674), 1, - anon_sym_LPAREN, - STATE(2494), 1, - sym_parameters, - STATE(3406), 2, + ACTIONS(4706), 1, + anon_sym_COLON_COLON, + ACTIONS(6600), 1, + anon_sym_for, + STATE(3460), 2, sym_line_comment, sym_block_comment, - [95489] = 4, + [97040] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5589), 2, - sym_identifier, - sym_super, - STATE(3407), 2, + STATE(186), 1, + sym_closure_parameters, + STATE(3461), 2, sym_line_comment, sym_block_comment, - [95504] = 4, + [97057] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6230), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3408), 2, + ACTIONS(5530), 2, + sym_identifier, + sym_super, + STATE(3462), 2, sym_line_comment, sym_block_comment, - [95519] = 5, + [97072] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4674), 1, + ACTIONS(6900), 1, anon_sym_LPAREN, - STATE(2319), 1, - sym_parameters, - STATE(3409), 2, + ACTIONS(6938), 1, + anon_sym_COLON_COLON, + STATE(3463), 2, sym_line_comment, sym_block_comment, - [95536] = 5, + [97089] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4746), 1, - anon_sym_COLON_COLON, - ACTIONS(6723), 1, - anon_sym_for, - STATE(3410), 2, + ACTIONS(5560), 1, + anon_sym_PIPE, + ACTIONS(6940), 1, + anon_sym_EQ, + STATE(3464), 2, sym_line_comment, sym_block_comment, - [95553] = 5, + [97106] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, - anon_sym_LT, - STATE(995), 1, - sym_type_parameters, - STATE(3411), 2, + ACTIONS(4605), 1, + anon_sym_BANG, + ACTIONS(6942), 1, + anon_sym_COLON_COLON, + STATE(3465), 2, sym_line_comment, sym_block_comment, - [95570] = 5, + [97123] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, - sym_super, - ACTIONS(5996), 1, - sym_identifier, - STATE(3412), 2, + ACTIONS(5417), 1, + anon_sym_LBRACE, + STATE(708), 1, + sym_enum_variant_list, + STATE(3466), 2, sym_line_comment, sym_block_comment, - [95587] = 5, + [97140] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6332), 1, - sym_identifier, - ACTIONS(6336), 1, - sym_mutable_specifier, - STATE(3413), 2, + ACTIONS(4617), 1, + anon_sym_LPAREN, + STATE(2384), 1, + sym_parameters, + STATE(3467), 2, sym_line_comment, sym_block_comment, - [95604] = 5, + [97157] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, - anon_sym_LPAREN, - STATE(1333), 1, - sym_parameters, - STATE(3414), 2, + ACTIONS(6758), 1, + sym_super, + ACTIONS(6944), 1, + sym_identifier, + STATE(3468), 2, sym_line_comment, sym_block_comment, - [95621] = 5, + [97174] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5589), 1, - sym_super, - ACTIONS(6814), 1, - sym_identifier, - STATE(3415), 2, + ACTIONS(6946), 1, + anon_sym_SEMI, + ACTIONS(6948), 1, + anon_sym_EQ, + STATE(3469), 2, sym_line_comment, sym_block_comment, - [95638] = 5, + [97191] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6996), 1, + ACTIONS(6950), 1, anon_sym_LPAREN, - ACTIONS(6998), 1, + ACTIONS(6952), 1, anon_sym_COLON_COLON, - STATE(3416), 2, + STATE(3470), 2, sym_line_comment, sym_block_comment, - [95655] = 4, + [97208] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7000), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3417), 2, + ACTIONS(5072), 1, + anon_sym_LBRACE, + STATE(634), 1, + sym_declaration_list, + STATE(3471), 2, sym_line_comment, sym_block_comment, - [95670] = 5, + [97225] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3475), 1, - anon_sym_PLUS, - ACTIONS(4298), 1, - anon_sym_COLON_COLON, - STATE(3418), 2, + ACTIONS(5072), 1, + anon_sym_LBRACE, + STATE(637), 1, + sym_declaration_list, + STATE(3472), 2, sym_line_comment, sym_block_comment, - [95687] = 5, + [97242] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3475), 1, + ACTIONS(3420), 1, anon_sym_PLUS, - ACTIONS(4352), 1, + ACTIONS(4255), 1, anon_sym_COLON_COLON, - STATE(3419), 2, + STATE(3473), 2, sym_line_comment, sym_block_comment, - [95704] = 5, + [97259] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4662), 1, - anon_sym_BANG, - ACTIONS(6940), 1, + ACTIONS(3420), 1, + anon_sym_PLUS, + ACTIONS(4233), 1, anon_sym_COLON_COLON, - STATE(3420), 2, + STATE(3474), 2, sym_line_comment, sym_block_comment, - [95721] = 5, + [97276] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5131), 1, - anon_sym_LBRACE, - STATE(690), 1, - sym_field_declaration_list, - STATE(3421), 2, + ACTIONS(4605), 1, + anon_sym_BANG, + ACTIONS(6908), 1, + anon_sym_COLON_COLON, + STATE(3475), 2, sym_line_comment, sym_block_comment, - [95738] = 5, + [97293] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, - anon_sym_LT, - STATE(989), 1, - sym_type_parameters, - STATE(3422), 2, + STATE(173), 1, + sym_closure_parameters, + STATE(3476), 2, sym_line_comment, sym_block_comment, - [95755] = 5, + [97310] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_PIPE, - ACTIONS(7002), 1, - anon_sym_in, - STATE(3423), 2, + ACTIONS(5593), 1, + sym_super, + ACTIONS(6768), 1, + sym_identifier, + STATE(3477), 2, sym_line_comment, sym_block_comment, - [95772] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [97327] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(232), 1, - sym_closure_parameters, - STATE(3424), 2, + ACTIONS(6764), 1, + anon_sym_LT, + STATE(1006), 1, + sym_type_parameters, + STATE(3478), 2, sym_line_comment, sym_block_comment, - [95789] = 4, + [97344] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6761), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3425), 2, + ACTIONS(5020), 1, + anon_sym_LBRACE, + STATE(743), 1, + sym_field_declaration_list, + STATE(3479), 2, sym_line_comment, sym_block_comment, - [95804] = 4, + [97361] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7004), 2, - sym_float_literal, - sym_integer_literal, - STATE(3426), 2, + ACTIONS(5034), 1, + anon_sym_LBRACE, + STATE(1469), 1, + sym_field_declaration_list, + STATE(3480), 2, sym_line_comment, sym_block_comment, - [95819] = 5, + [97378] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5396), 1, - anon_sym_RPAREN, - ACTIONS(6902), 1, - anon_sym_SEMI, - STATE(3427), 2, + ACTIONS(2287), 1, + anon_sym_SQUOTE, + STATE(2979), 1, + sym_lifetime, + STATE(3481), 2, sym_line_comment, sym_block_comment, - [95836] = 5, + [97395] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5469), 1, - anon_sym_LBRACE, - STATE(1348), 1, - sym_enum_variant_list, - STATE(3428), 2, + ACTIONS(6954), 2, + sym_identifier, + sym_metavariable, + STATE(3482), 2, sym_line_comment, sym_block_comment, - [95853] = 5, + [97410] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4746), 1, - anon_sym_COLON_COLON, - ACTIONS(6741), 1, - anon_sym_for, - STATE(3429), 2, + ACTIONS(5560), 1, + anon_sym_PIPE, + ACTIONS(6956), 1, + anon_sym_EQ, + STATE(3483), 2, sym_line_comment, sym_block_comment, - [95870] = 5, + [97427] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_PIPE, - ACTIONS(7006), 1, - anon_sym_EQ, - STATE(3430), 2, + ACTIONS(5046), 1, + anon_sym_LBRACE, + STATE(1472), 1, + sym_declaration_list, + STATE(3484), 2, sym_line_comment, sym_block_comment, - [95887] = 5, + [97444] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6832), 1, - anon_sym_LPAREN, - ACTIONS(7008), 1, - anon_sym_COLON_COLON, - STATE(3431), 2, + ACTIONS(5046), 1, + anon_sym_LBRACE, + STATE(1367), 1, + sym_declaration_list, + STATE(3485), 2, sym_line_comment, sym_block_comment, - [95904] = 5, + [97461] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7010), 1, - sym_identifier, - ACTIONS(7012), 1, - sym_super, - STATE(3432), 2, + ACTIONS(6900), 1, + anon_sym_LPAREN, + ACTIONS(6958), 1, + anon_sym_COLON_COLON, + STATE(3486), 2, sym_line_comment, sym_block_comment, - [95921] = 5, + [97478] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7014), 1, + ACTIONS(6960), 1, anon_sym_BANG, - ACTIONS(7016), 1, + ACTIONS(6962), 1, anon_sym_COLON_COLON, - STATE(3433), 2, + STATE(3487), 2, sym_line_comment, sym_block_comment, - [95938] = 5, + [97495] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5461), 1, - anon_sym_LBRACE, - STATE(620), 1, - sym_enum_variant_list, - STATE(3434), 2, + ACTIONS(5291), 1, + anon_sym_RPAREN, + ACTIONS(6740), 1, + anon_sym_SEMI, + STATE(3488), 2, sym_line_comment, sym_block_comment, - [95955] = 5, + [97512] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6800), 1, - anon_sym_COLON_COLON, - ACTIONS(7018), 1, - anon_sym_RPAREN, - STATE(3435), 2, + ACTIONS(6964), 1, + anon_sym_SEMI, + ACTIONS(6966), 1, + anon_sym_EQ, + STATE(3489), 2, sym_line_comment, sym_block_comment, - [95972] = 5, + [97529] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5396), 1, - anon_sym_RBRACK, - ACTIONS(6902), 1, - anon_sym_SEMI, - STATE(3436), 2, + ACTIONS(6798), 1, + anon_sym_COLON_COLON, + ACTIONS(6968), 1, + anon_sym_RPAREN, + STATE(3490), 2, sym_line_comment, sym_block_comment, - [95989] = 5, + [97546] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, - anon_sym_LBRACE, - STATE(658), 1, - sym_declaration_list, - STATE(3437), 2, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(6970), 1, + anon_sym_RPAREN, + STATE(3491), 2, sym_line_comment, sym_block_comment, - [96006] = 5, + [97563] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5402), 1, - anon_sym_RBRACE, - ACTIONS(6902), 1, - anon_sym_SEMI, - STATE(3438), 2, + ACTIONS(6808), 1, + anon_sym_COLON_COLON, + ACTIONS(6970), 1, + anon_sym_RPAREN, + STATE(3492), 2, sym_line_comment, sym_block_comment, - [96023] = 5, + [97580] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6832), 1, + ACTIONS(6900), 1, anon_sym_LPAREN, - ACTIONS(7020), 1, + ACTIONS(6972), 1, anon_sym_COLON_COLON, - STATE(3439), 2, + STATE(3493), 2, sym_line_comment, sym_block_comment, - [96040] = 5, + [97597] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4662), 1, + ACTIONS(4605), 1, anon_sym_BANG, - ACTIONS(7016), 1, + ACTIONS(6962), 1, anon_sym_COLON_COLON, - STATE(3440), 2, + STATE(3494), 2, sym_line_comment, sym_block_comment, - [96057] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [97614] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(244), 1, - sym_closure_parameters, - STATE(3441), 2, + ACTIONS(6810), 1, + anon_sym_COLON_COLON, + ACTIONS(6970), 1, + anon_sym_RPAREN, + STATE(3495), 2, sym_line_comment, sym_block_comment, - [96074] = 5, + [97631] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5461), 1, - anon_sym_LBRACE, - STATE(596), 1, - sym_enum_variant_list, - STATE(3442), 2, + ACTIONS(4706), 1, + anon_sym_COLON_COLON, + ACTIONS(5090), 1, + anon_sym_for, + STATE(3496), 2, sym_line_comment, sym_block_comment, - [96091] = 5, + [97648] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7022), 1, + ACTIONS(6974), 1, anon_sym_LBRACK, - ACTIONS(7024), 1, + ACTIONS(6976), 1, anon_sym_BANG, - STATE(3443), 2, + STATE(3497), 2, sym_line_comment, sym_block_comment, - [96108] = 4, + [97665] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7026), 2, + ACTIONS(6978), 2, sym_identifier, sym_metavariable, - STATE(3444), 2, + STATE(3498), 2, sym_line_comment, sym_block_comment, - [96123] = 5, + [97680] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5067), 1, + ACTIONS(5034), 1, anon_sym_LBRACE, - STATE(1402), 1, + STATE(1157), 1, sym_field_declaration_list, - STATE(3445), 2, + STATE(3499), 2, + sym_line_comment, + sym_block_comment, + [97697] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6980), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3500), 2, sym_line_comment, sym_block_comment, - [96140] = 4, + [97712] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7028), 2, + ACTIONS(6982), 2, anon_sym_const, sym_mutable_specifier, - STATE(3446), 2, + STATE(3501), 2, sym_line_comment, sym_block_comment, - [96155] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [97727] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(215), 1, - sym_closure_parameters, - STATE(3447), 2, + ACTIONS(6984), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3502), 2, sym_line_comment, sym_block_comment, - [96172] = 5, + [97742] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, + ACTIONS(5072), 1, anon_sym_LBRACE, - STATE(1406), 1, + STATE(539), 1, sym_declaration_list, - STATE(3448), 2, + STATE(3503), 2, sym_line_comment, sym_block_comment, - [96189] = 5, + [97759] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_PIPE, - ACTIONS(7030), 1, - anon_sym_in, - STATE(3449), 2, + ACTIONS(3103), 1, + anon_sym_PLUS, + ACTIONS(4007), 1, + anon_sym_COLON, + STATE(3504), 2, sym_line_comment, sym_block_comment, - [96206] = 5, + [97776] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7032), 1, - anon_sym_SEMI, - ACTIONS(7034), 1, - anon_sym_EQ, - STATE(3450), 2, + ACTIONS(6764), 1, + anon_sym_LT, + STATE(942), 1, + sym_type_parameters, + STATE(3505), 2, sym_line_comment, sym_block_comment, - [96223] = 4, + [97793] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7036), 2, + ACTIONS(6986), 2, sym_identifier, sym_metavariable, - STATE(3451), 2, + STATE(3506), 2, sym_line_comment, sym_block_comment, - [96238] = 5, + [97808] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5589), 1, - sym_super, - ACTIONS(6878), 1, - sym_identifier, - STATE(3452), 2, + ACTIONS(3103), 1, + anon_sym_PLUS, + ACTIONS(4011), 1, + anon_sym_COLON, + STATE(3507), 2, sym_line_comment, sym_block_comment, - [96255] = 5, + [97825] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5067), 1, - anon_sym_LBRACE, - STATE(1412), 1, - sym_field_declaration_list, - STATE(3453), 2, + ACTIONS(5593), 1, + sym_super, + ACTIONS(6750), 1, + sym_identifier, + STATE(3508), 2, sym_line_comment, sym_block_comment, - [96272] = 5, + [97842] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, + ACTIONS(6764), 1, anon_sym_LT, - STATE(1015), 1, + STATE(1039), 1, sym_type_parameters, - STATE(3454), 2, + STATE(3509), 2, sym_line_comment, sym_block_comment, - [96289] = 5, + [97859] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, + ACTIONS(6764), 1, anon_sym_LT, - STATE(1016), 1, + STATE(1040), 1, sym_type_parameters, - STATE(3455), 2, + STATE(3510), 2, sym_line_comment, sym_block_comment, - [96306] = 5, + [97876] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, - anon_sym_LBRACE, - STATE(659), 1, - sym_declaration_list, - STATE(3456), 2, + ACTIONS(5530), 1, + sym_super, + ACTIONS(6988), 1, + sym_identifier, + STATE(3511), 2, sym_line_comment, sym_block_comment, - [96323] = 4, + [97893] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7038), 2, + ACTIONS(6858), 2, sym_identifier, - sym_metavariable, - STATE(3457), 2, + sym_super, + STATE(3512), 2, sym_line_comment, sym_block_comment, - [96338] = 5, + [97908] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4746), 1, + ACTIONS(4706), 1, anon_sym_COLON_COLON, - ACTIONS(5158), 1, + ACTIONS(5048), 1, anon_sym_for, - STATE(3458), 2, + STATE(3513), 2, sym_line_comment, sym_block_comment, - [96355] = 4, + [97925] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6840), 2, - sym_identifier, - sym_super, - STATE(3459), 2, + ACTIONS(6990), 1, + anon_sym_SEMI, + ACTIONS(6992), 1, + anon_sym_as, + STATE(3514), 2, sym_line_comment, sym_block_comment, - [96370] = 5, + [97942] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7040), 1, - anon_sym_SEMI, - ACTIONS(7042), 1, - anon_sym_as, - STATE(3460), 2, + ACTIONS(6994), 1, + sym_identifier, + ACTIONS(6996), 1, + sym_super, + STATE(3515), 2, sym_line_comment, sym_block_comment, - [96387] = 5, + [97959] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4662), 1, - anon_sym_BANG, - ACTIONS(7044), 1, - anon_sym_COLON_COLON, - STATE(3461), 2, + ACTIONS(5291), 1, + anon_sym_RBRACK, + ACTIONS(6740), 1, + anon_sym_SEMI, + STATE(3516), 2, sym_line_comment, sym_block_comment, - [96404] = 4, + [97976] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7046), 2, - sym_identifier, - sym_metavariable, - STATE(3462), 2, + STATE(180), 1, + sym_closure_parameters, + STATE(3517), 2, sym_line_comment, sym_block_comment, - [96419] = 5, + [97993] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5131), 1, - anon_sym_LBRACE, - STATE(599), 1, - sym_field_declaration_list, - STATE(3463), 2, + ACTIONS(6090), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3518), 2, sym_line_comment, sym_block_comment, - [96436] = 5, + [98008] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4746), 1, + ACTIONS(4832), 1, anon_sym_COLON_COLON, - ACTIONS(6755), 1, - anon_sym_for, - STATE(3464), 2, + ACTIONS(4952), 1, + anon_sym_BANG, + STATE(3519), 2, sym_line_comment, sym_block_comment, - [96453] = 4, + [98025] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7048), 2, + ACTIONS(6998), 2, sym_identifier, sym_metavariable, - STATE(3465), 2, + STATE(3520), 2, sym_line_comment, sym_block_comment, - [96468] = 5, + [98040] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4746), 1, + ACTIONS(4706), 1, anon_sym_COLON_COLON, - ACTIONS(6759), 1, + ACTIONS(6690), 1, anon_sym_for, - STATE(3466), 2, + STATE(3521), 2, sym_line_comment, sym_block_comment, - [96485] = 5, + [98057] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3210), 1, - anon_sym_PLUS, - ACTIONS(4016), 1, - anon_sym_COLON, - STATE(3467), 2, + ACTIONS(5417), 1, + anon_sym_LBRACE, + STATE(586), 1, + sym_enum_variant_list, + STATE(3522), 2, sym_line_comment, sym_block_comment, - [96502] = 4, + [98074] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6493), 2, - anon_sym_RBRACE, + ACTIONS(4706), 1, + anon_sym_COLON_COLON, + ACTIONS(6697), 1, + anon_sym_for, + STATE(3523), 2, + sym_line_comment, + sym_block_comment, + [98091] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7000), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(3468), 2, + STATE(3524), 2, sym_line_comment, sym_block_comment, - [96517] = 5, + [98106] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7050), 1, + ACTIONS(7002), 1, sym_identifier, - ACTIONS(7052), 1, + ACTIONS(7004), 1, sym_super, - STATE(3469), 2, + STATE(3525), 2, sym_line_comment, sym_block_comment, - [96534] = 4, + [98123] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7054), 2, + ACTIONS(7006), 2, anon_sym_const, sym_mutable_specifier, - STATE(3470), 2, + STATE(3526), 2, sym_line_comment, sym_block_comment, - [96549] = 5, + [98138] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, + ACTIONS(5560), 1, anon_sym_PIPE, - ACTIONS(7056), 1, + ACTIONS(7008), 1, anon_sym_in, - STATE(3471), 2, + STATE(3527), 2, sym_line_comment, sym_block_comment, - [96566] = 5, + [98155] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4674), 1, - anon_sym_LPAREN, - STATE(2404), 1, - sym_parameters, - STATE(3472), 2, + ACTIONS(5530), 1, + sym_super, + ACTIONS(6836), 1, + sym_identifier, + STATE(3528), 2, sym_line_comment, sym_block_comment, - [96583] = 5, + [98172] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5676), 1, - sym_super, - ACTIONS(6952), 1, - sym_identifier, - STATE(3473), 2, + ACTIONS(2287), 1, + anon_sym_SQUOTE, + STATE(3302), 1, + sym_lifetime, + STATE(3529), 2, sym_line_comment, sym_block_comment, - [96600] = 5, + [98189] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4746), 1, + ACTIONS(7010), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3530), 2, + sym_line_comment, + sym_block_comment, + [98204] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4706), 1, anon_sym_COLON_COLON, - ACTIONS(6772), 1, + ACTIONS(6705), 1, anon_sym_for, - STATE(3474), 2, + STATE(3531), 2, sym_line_comment, sym_block_comment, - [96617] = 5, + [98221] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7058), 1, + ACTIONS(7012), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3532), 2, + sym_line_comment, + sym_block_comment, + [98236] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7014), 1, anon_sym_LBRACK, - ACTIONS(7060), 1, + ACTIONS(7016), 1, anon_sym_BANG, - STATE(3475), 2, + STATE(3533), 2, sym_line_comment, sym_block_comment, - [96634] = 5, + [98253] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, + ACTIONS(5560), 1, anon_sym_PIPE, - ACTIONS(7062), 1, + ACTIONS(7018), 1, anon_sym_in, - STATE(3476), 2, + STATE(3534), 2, sym_line_comment, sym_block_comment, - [96651] = 5, + [98270] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, + ACTIONS(5560), 1, anon_sym_PIPE, - ACTIONS(7064), 1, + ACTIONS(7020), 1, anon_sym_in, - STATE(3477), 2, + STATE(3535), 2, sym_line_comment, sym_block_comment, - [96668] = 5, + [98287] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, + ACTIONS(5560), 1, anon_sym_PIPE, - ACTIONS(7066), 1, + ACTIONS(7022), 1, anon_sym_in, - STATE(3478), 2, + STATE(3536), 2, sym_line_comment, sym_block_comment, - [96685] = 5, + [98304] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, + ACTIONS(5560), 1, anon_sym_PIPE, - ACTIONS(7068), 1, + ACTIONS(7024), 1, anon_sym_in, - STATE(3479), 2, + STATE(3537), 2, sym_line_comment, sym_block_comment, - [96702] = 5, + [98321] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5430), 1, - anon_sym_RPAREN, - ACTIONS(6902), 1, - anon_sym_SEMI, - STATE(3480), 2, + ACTIONS(4617), 1, + anon_sym_LPAREN, + STATE(2155), 1, + sym_parameters, + STATE(3538), 2, sym_line_comment, sym_block_comment, - [96719] = 5, + [98338] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4674), 1, - anon_sym_LPAREN, - STATE(2096), 1, - sym_parameters, - STATE(3481), 2, + ACTIONS(5293), 1, + anon_sym_RBRACE, + ACTIONS(6740), 1, + anon_sym_SEMI, + STATE(3539), 2, sym_line_comment, sym_block_comment, - [96736] = 4, + [98355] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7070), 2, - anon_sym_const, + ACTIONS(6711), 1, + sym_identifier, + ACTIONS(6715), 1, sym_mutable_specifier, - STATE(3482), 2, + STATE(3540), 2, sym_line_comment, sym_block_comment, - [96751] = 5, + [98372] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5408), 1, - anon_sym_RBRACE, - ACTIONS(6902), 1, - anon_sym_SEMI, - STATE(3483), 2, + ACTIONS(4061), 1, + anon_sym_LPAREN, + STATE(1735), 1, + sym_parameters, + STATE(3541), 2, sym_line_comment, sym_block_comment, - [96768] = 5, + [98389] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6778), 1, - sym_identifier, - ACTIONS(6782), 1, - sym_mutable_specifier, - STATE(3484), 2, + ACTIONS(4770), 1, + anon_sym_BANG, + ACTIONS(4848), 1, + anon_sym_COLON_COLON, + STATE(3542), 2, sym_line_comment, sym_block_comment, - [96785] = 5, + [98406] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5310), 1, - anon_sym_RBRACE, - ACTIONS(6902), 1, - anon_sym_SEMI, - STATE(3485), 2, + ACTIONS(4617), 1, + anon_sym_LPAREN, + STATE(2158), 1, + sym_parameters, + STATE(3543), 2, sym_line_comment, sym_block_comment, - [96802] = 5, + [98423] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5131), 1, - anon_sym_LBRACE, - STATE(603), 1, - sym_field_declaration_list, - STATE(3486), 2, + ACTIONS(3367), 1, + anon_sym_LT2, + STATE(1556), 1, + sym_type_arguments, + STATE(3544), 2, sym_line_comment, sym_block_comment, - [96819] = 5, + [98440] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4674), 1, - anon_sym_LPAREN, - STATE(2099), 1, - sym_parameters, - STATE(3487), 2, + ACTIONS(7026), 1, + sym_identifier, + ACTIONS(7028), 1, + sym_mutable_specifier, + STATE(3545), 2, sym_line_comment, sym_block_comment, - [96836] = 5, + [98457] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4178), 1, + ACTIONS(4617), 1, anon_sym_LPAREN, - STATE(1665), 1, + STATE(2152), 1, sym_parameters, - STATE(3488), 2, + STATE(3546), 2, sym_line_comment, sym_block_comment, - [96853] = 5, + [98474] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, + ACTIONS(5020), 1, anon_sym_LBRACE, - STATE(505), 1, - sym_declaration_list, - STATE(3489), 2, + STATE(538), 1, + sym_field_declaration_list, + STATE(3547), 2, sym_line_comment, sym_block_comment, - [96870] = 5, + [98491] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_PIPE, - ACTIONS(7072), 1, - anon_sym_EQ, - STATE(3490), 2, + ACTIONS(5295), 1, + anon_sym_RPAREN, + ACTIONS(6740), 1, + anon_sym_SEMI, + STATE(3548), 2, sym_line_comment, sym_block_comment, - [96887] = 5, + [98508] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7074), 1, - sym_identifier, - ACTIONS(7076), 1, - sym_mutable_specifier, - STATE(3491), 2, + ACTIONS(5046), 1, + anon_sym_LBRACE, + STATE(1274), 1, + sym_declaration_list, + STATE(3549), 2, sym_line_comment, sym_block_comment, - [96904] = 5, + [98525] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7078), 1, - anon_sym_SEMI, - ACTIONS(7080), 1, - anon_sym_as, - STATE(3492), 2, + ACTIONS(7030), 1, + anon_sym_COLON_COLON, + STATE(3550), 2, sym_line_comment, sym_block_comment, - [96921] = 5, + [98539] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4674), 1, - anon_sym_LPAREN, - STATE(2102), 1, - sym_parameters, - STATE(3493), 2, + ACTIONS(7032), 1, + sym_identifier, + STATE(3551), 2, sym_line_comment, sym_block_comment, - [96938] = 5, + [98553] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5430), 1, - anon_sym_RBRACK, - ACTIONS(6902), 1, - anon_sym_SEMI, - STATE(3494), 2, + ACTIONS(7034), 1, + sym_identifier, + STATE(3552), 2, sym_line_comment, sym_block_comment, - [96955] = 5, + [98567] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, - anon_sym_LBRACE, - STATE(695), 1, - sym_declaration_list, - STATE(3495), 2, + ACTIONS(7036), 1, + sym_identifier, + STATE(3553), 2, sym_line_comment, sym_block_comment, - [96972] = 4, + [98581] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7082), 2, + ACTIONS(7038), 1, sym_identifier, - sym_metavariable, - STATE(3496), 2, + STATE(3554), 2, sym_line_comment, sym_block_comment, - [96987] = 4, + [98595] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7084), 1, - sym_identifier, - STATE(3497), 2, + ACTIONS(7040), 1, + anon_sym_RBRACE, + STATE(3555), 2, sym_line_comment, sym_block_comment, - [97001] = 4, + [98609] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7086), 1, - anon_sym_RBRACE, - STATE(3498), 2, + ACTIONS(7042), 1, + sym_identifier, + STATE(3556), 2, sym_line_comment, sym_block_comment, - [97015] = 4, + [98623] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7088), 1, - sym_identifier, - STATE(3499), 2, + ACTIONS(7044), 1, + anon_sym_EQ_GT, + STATE(3557), 2, sym_line_comment, sym_block_comment, - [97029] = 4, + [98637] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7090), 1, + ACTIONS(7046), 1, sym_identifier, - STATE(3500), 2, + STATE(3558), 2, sym_line_comment, sym_block_comment, - [97043] = 4, + [98651] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7092), 1, + ACTIONS(7048), 1, anon_sym_SEMI, - STATE(3501), 2, + STATE(3559), 2, sym_line_comment, sym_block_comment, - [97057] = 4, + [98665] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7094), 1, - anon_sym_SEMI, - STATE(3502), 2, + ACTIONS(7050), 1, + anon_sym_COLON, + STATE(3560), 2, sym_line_comment, sym_block_comment, - [97071] = 4, + [98679] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7096), 1, - sym__line_doc_content, - STATE(3503), 2, + ACTIONS(7052), 1, + sym__raw_string_literal_end, + STATE(3561), 2, sym_line_comment, sym_block_comment, - [97085] = 4, + [98693] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6648), 1, - anon_sym_RBRACE, - STATE(3504), 2, + ACTIONS(1007), 1, + anon_sym_RBRACK, + STATE(3562), 2, sym_line_comment, sym_block_comment, - [97099] = 4, + [98707] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7098), 1, - sym_identifier, - STATE(3505), 2, + ACTIONS(6850), 1, + anon_sym_SEMI, + STATE(3563), 2, sym_line_comment, sym_block_comment, - [97113] = 4, + [98721] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7100), 1, + ACTIONS(7054), 1, sym_identifier, - STATE(3506), 2, + STATE(3564), 2, + sym_line_comment, + sym_block_comment, + [98735] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7056), 1, + anon_sym_COLON, + STATE(3565), 2, sym_line_comment, sym_block_comment, - [97127] = 4, + [98749] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7102), 1, + ACTIONS(7058), 1, sym_identifier, - STATE(3507), 2, + STATE(3566), 2, sym_line_comment, sym_block_comment, - [97141] = 4, + [98763] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7104), 1, + ACTIONS(7060), 1, anon_sym_SEMI, - STATE(3508), 2, + STATE(3567), 2, sym_line_comment, sym_block_comment, - [97155] = 4, + [98777] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7106), 1, - anon_sym_fn, - STATE(3509), 2, + ACTIONS(7062), 1, + anon_sym_EQ_GT, + STATE(3568), 2, sym_line_comment, sym_block_comment, - [97169] = 4, + [98791] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7108), 1, + ACTIONS(7064), 1, sym_identifier, - STATE(3510), 2, + STATE(3569), 2, sym_line_comment, sym_block_comment, - [97183] = 4, + [98805] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7110), 1, - sym__raw_string_literal_end, - STATE(3511), 2, + ACTIONS(5068), 1, + anon_sym_COLON_COLON, + STATE(3570), 2, sym_line_comment, sym_block_comment, - [97197] = 4, + [98819] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5077), 1, + ACTIONS(7066), 1, anon_sym_COLON_COLON, - STATE(3512), 2, + STATE(3571), 2, sym_line_comment, sym_block_comment, - [97211] = 4, + [98833] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7112), 1, - anon_sym_COLON_COLON, - STATE(3513), 2, + ACTIONS(7068), 1, + anon_sym_fn, + STATE(3572), 2, sym_line_comment, sym_block_comment, - [97225] = 4, + [98847] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7114), 1, - anon_sym_fn, - STATE(3514), 2, + ACTIONS(7070), 1, + anon_sym_RBRACK, + STATE(3573), 2, sym_line_comment, sym_block_comment, - [97239] = 4, + [98861] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7116), 1, - sym_identifier, - STATE(3515), 2, + ACTIONS(6056), 1, + anon_sym_RPAREN, + STATE(3574), 2, sym_line_comment, sym_block_comment, - [97253] = 4, + [98875] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7118), 1, - sym_identifier, - STATE(3516), 2, + ACTIONS(6005), 1, + anon_sym_LBRACE, + STATE(3575), 2, sym_line_comment, sym_block_comment, - [97267] = 4, + [98889] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5950), 1, - anon_sym_LBRACE, - STATE(3517), 2, + ACTIONS(7072), 1, + anon_sym_COLON, + STATE(3576), 2, sym_line_comment, sym_block_comment, - [97281] = 4, + [98903] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7120), 1, - anon_sym_SEMI, - STATE(3518), 2, + ACTIONS(7074), 1, + anon_sym_COLON, + STATE(3577), 2, sym_line_comment, sym_block_comment, - [97295] = 4, + [98917] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7122), 1, - anon_sym_SEMI, - STATE(3519), 2, + ACTIONS(7076), 1, + sym_raw_string_literal_content, + STATE(3578), 2, sym_line_comment, sym_block_comment, - [97309] = 4, + [98931] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7124), 1, - anon_sym_SEMI, - STATE(3520), 2, + ACTIONS(5776), 1, + anon_sym_RPAREN, + STATE(3579), 2, sym_line_comment, sym_block_comment, - [97323] = 4, + [98945] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7126), 1, - anon_sym_SEMI, - STATE(3521), 2, + ACTIONS(5826), 1, + anon_sym_RPAREN, + STATE(3580), 2, sym_line_comment, sym_block_comment, - [97337] = 4, + [98959] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3178), 1, - anon_sym_PLUS, - STATE(3522), 2, + ACTIONS(7078), 1, + anon_sym_SEMI, + STATE(3581), 2, sym_line_comment, sym_block_comment, - [97351] = 4, + [98973] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7128), 1, - sym_identifier, - STATE(3523), 2, + ACTIONS(7080), 1, + anon_sym_SEMI, + STATE(3582), 2, sym_line_comment, sym_block_comment, - [97365] = 4, + [98987] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7130), 1, - anon_sym_STAR_SLASH, - STATE(3524), 2, + ACTIONS(6060), 1, + anon_sym_RBRACK, + STATE(3583), 2, sym_line_comment, sym_block_comment, - [97379] = 4, + [99001] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6168), 1, - anon_sym_RBRACE, - STATE(3525), 2, + ACTIONS(7082), 1, + anon_sym_EQ, + STATE(3584), 2, sym_line_comment, sym_block_comment, - [97393] = 4, + [99015] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7132), 1, + ACTIONS(1193), 1, anon_sym_EQ_GT, - STATE(3526), 2, + STATE(3585), 2, sym_line_comment, sym_block_comment, - [97407] = 4, + [99029] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7134), 1, - sym_identifier, - STATE(3527), 2, + ACTIONS(6778), 1, + anon_sym_SEMI, + STATE(3586), 2, sym_line_comment, sym_block_comment, - [97421] = 4, + [99043] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7136), 1, - anon_sym_RBRACE, - STATE(3528), 2, + ACTIONS(7084), 1, + sym_identifier, + STATE(3587), 2, sym_line_comment, sym_block_comment, - [97435] = 4, + [99057] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7138), 1, - anon_sym_COLON, - STATE(3529), 2, + ACTIONS(6589), 1, + anon_sym_RBRACE, + STATE(3588), 2, sym_line_comment, sym_block_comment, - [97449] = 4, + [99071] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7140), 1, - anon_sym_SEMI, - STATE(3530), 2, + ACTIONS(7086), 1, + sym_identifier, + STATE(3589), 2, sym_line_comment, sym_block_comment, - [97463] = 4, + [99085] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3210), 1, - anon_sym_PLUS, - STATE(3531), 2, + ACTIONS(7088), 1, + sym__raw_string_literal_end, + STATE(3590), 2, sym_line_comment, sym_block_comment, - [97477] = 4, + [99099] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7142), 1, + ACTIONS(7090), 1, sym_identifier, - STATE(3532), 2, + STATE(3591), 2, sym_line_comment, sym_block_comment, - [97491] = 4, + [99113] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7144), 1, + ACTIONS(7092), 1, sym_identifier, - STATE(3533), 2, + STATE(3592), 2, sym_line_comment, sym_block_comment, - [97505] = 4, + [99127] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7146), 1, - anon_sym_RBRACK, - STATE(3534), 2, + ACTIONS(7094), 1, + anon_sym_RPAREN, + STATE(3593), 2, sym_line_comment, sym_block_comment, - [97519] = 4, + [99141] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6964), 1, - anon_sym_SEMI, - STATE(3535), 2, + ACTIONS(7096), 1, + sym__raw_string_literal_end, + STATE(3594), 2, sym_line_comment, sym_block_comment, - [97533] = 4, + [99155] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7148), 1, - anon_sym_RBRACK, - STATE(3536), 2, + ACTIONS(6348), 1, + anon_sym_RBRACE, + STATE(3595), 2, sym_line_comment, sym_block_comment, - [97547] = 4, + [99169] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7150), 1, - sym_identifier, - STATE(3537), 2, + ACTIONS(4251), 1, + anon_sym_RPAREN, + STATE(3596), 2, sym_line_comment, sym_block_comment, - [97561] = 4, + [99183] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7152), 1, + ACTIONS(7098), 1, anon_sym_SEMI, - STATE(3538), 2, + STATE(3597), 2, sym_line_comment, sym_block_comment, - [97575] = 4, + [99197] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7154), 1, - anon_sym_SEMI, - STATE(3539), 2, + ACTIONS(7100), 1, + sym__line_doc_content, + STATE(3598), 2, sym_line_comment, sym_block_comment, - [97589] = 4, + [99211] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7156), 1, - anon_sym_SEMI, - STATE(3540), 2, + ACTIONS(7102), 1, + anon_sym_RPAREN, + STATE(3599), 2, sym_line_comment, sym_block_comment, - [97603] = 4, + [99225] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6210), 1, - anon_sym_RBRACE, - STATE(3541), 2, + ACTIONS(7104), 1, + sym_identifier, + STATE(3600), 2, sym_line_comment, sym_block_comment, - [97617] = 4, + [99239] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7158), 1, - sym_identifier, - STATE(3542), 2, + ACTIONS(3153), 1, + anon_sym_PLUS, + STATE(3601), 2, sym_line_comment, sym_block_comment, - [97631] = 4, + [99253] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7160), 1, - anon_sym_LPAREN, - STATE(3543), 2, + ACTIONS(7106), 1, + sym__raw_string_literal_end, + STATE(3602), 2, sym_line_comment, sym_block_comment, - [97645] = 4, + [99267] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7162), 1, - anon_sym_SEMI, - STATE(3544), 2, + ACTIONS(7108), 1, + anon_sym_EQ, + STATE(3603), 2, sym_line_comment, sym_block_comment, - [97659] = 4, + [99281] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4332), 1, - anon_sym_RPAREN, - STATE(3545), 2, + ACTIONS(7110), 1, + anon_sym_RBRACK, + STATE(3604), 2, sym_line_comment, sym_block_comment, - [97673] = 4, + [99295] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7164), 1, - anon_sym_RPAREN, - STATE(3546), 2, + ACTIONS(7112), 1, + sym_identifier, + STATE(3605), 2, sym_line_comment, sym_block_comment, - [97687] = 4, + [99309] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7166), 1, - anon_sym_RBRACK, - STATE(3547), 2, + ACTIONS(6243), 1, + anon_sym_RBRACE, + STATE(3606), 2, sym_line_comment, sym_block_comment, - [97701] = 4, + [99323] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7168), 1, - anon_sym_COLON, - STATE(3548), 2, + ACTIONS(7114), 1, + anon_sym_RBRACK, + STATE(3607), 2, sym_line_comment, sym_block_comment, - [97715] = 4, + [99337] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7170), 1, - anon_sym_SEMI, - STATE(3549), 2, + ACTIONS(7116), 1, + sym__line_doc_content, + STATE(3608), 2, sym_line_comment, sym_block_comment, - [97729] = 4, + [99351] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(887), 1, - anon_sym_RBRACK, - STATE(3550), 2, + ACTIONS(1631), 1, + anon_sym_RBRACE, + STATE(3609), 2, sym_line_comment, sym_block_comment, - [97743] = 4, + [99365] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7172), 1, - anon_sym_SEMI, - STATE(3551), 2, + ACTIONS(7118), 1, + anon_sym_COLON, + STATE(3610), 2, sym_line_comment, sym_block_comment, - [97757] = 4, + [99379] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7174), 1, - anon_sym_SEMI, - STATE(3552), 2, + ACTIONS(7120), 1, + sym_identifier, + STATE(3611), 2, sym_line_comment, sym_block_comment, - [97771] = 4, + [99393] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4028), 1, + ACTIONS(6808), 1, anon_sym_COLON_COLON, - STATE(3553), 2, + STATE(3612), 2, sym_line_comment, sym_block_comment, - [97785] = 4, + [99407] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7176), 1, - sym_identifier, - STATE(3554), 2, + ACTIONS(3927), 1, + anon_sym_COLON_COLON, + STATE(3613), 2, sym_line_comment, sym_block_comment, - [97799] = 4, + [99421] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7178), 1, - sym_identifier, - STATE(3555), 2, + ACTIONS(7122), 1, + anon_sym_SEMI, + STATE(3614), 2, sym_line_comment, sym_block_comment, - [97813] = 4, + [99435] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7180), 1, - anon_sym_SEMI, - STATE(3556), 2, + ACTIONS(7124), 1, + anon_sym_COLON_COLON, + STATE(3615), 2, sym_line_comment, sym_block_comment, - [97827] = 4, + [99449] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7182), 1, - anon_sym_RBRACK, - STATE(3557), 2, + ACTIONS(7126), 1, + anon_sym_SEMI, + STATE(3616), 2, sym_line_comment, sym_block_comment, - [97841] = 4, + [99463] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7184), 1, - anon_sym_SEMI, - STATE(3558), 2, + ACTIONS(5556), 1, + anon_sym_RPAREN, + STATE(3617), 2, sym_line_comment, sym_block_comment, - [97855] = 4, + [99477] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4724), 1, - anon_sym_fn, - STATE(3559), 2, + ACTIONS(7128), 1, + anon_sym_SEMI, + STATE(3618), 2, sym_line_comment, sym_block_comment, - [97869] = 4, + [99491] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7186), 1, + ACTIONS(7130), 1, sym_identifier, - STATE(3560), 2, + STATE(3619), 2, sym_line_comment, sym_block_comment, - [97883] = 4, + [99505] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6992), 1, - anon_sym_SEMI, - STATE(3561), 2, + ACTIONS(6163), 1, + anon_sym_GT, + STATE(3620), 2, sym_line_comment, sym_block_comment, - [97897] = 4, + [99519] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7188), 1, - anon_sym_COLON, - STATE(3562), 2, + ACTIONS(6740), 1, + anon_sym_SEMI, + STATE(3621), 2, sym_line_comment, sym_block_comment, - [97911] = 4, + [99533] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6291), 1, - anon_sym_RBRACE, - STATE(3563), 2, + ACTIONS(7132), 1, + anon_sym_SEMI, + STATE(3622), 2, sym_line_comment, sym_block_comment, - [97925] = 4, + [99547] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5061), 1, - anon_sym_COLON_COLON, - STATE(3564), 2, + ACTIONS(7134), 1, + anon_sym_SEMI, + STATE(3623), 2, sym_line_comment, sym_block_comment, - [97939] = 4, - ACTIONS(103), 1, + [99561] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7190), 1, - sym_identifier, - STATE(3565), 2, + ACTIONS(7136), 1, + aux_sym_line_comment_token2, + STATE(3624), 2, sym_line_comment, sym_block_comment, - [97953] = 4, + [99575] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7192), 1, - anon_sym_SEMI, - STATE(3566), 2, + ACTIONS(7138), 1, + anon_sym_RBRACE, + STATE(3625), 2, sym_line_comment, sym_block_comment, - [97967] = 4, + [99589] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7194), 1, - sym__line_doc_content, - STATE(3567), 2, + ACTIONS(7140), 1, + anon_sym_SEMI, + STATE(3626), 2, sym_line_comment, sym_block_comment, - [97981] = 4, + [99603] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6196), 1, - anon_sym_RBRACE, - STATE(3568), 2, + ACTIONS(7142), 1, + anon_sym_LBRACK, + STATE(3627), 2, sym_line_comment, sym_block_comment, - [97995] = 4, + [99617] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7196), 1, - anon_sym_COLON, - STATE(3569), 2, + ACTIONS(7144), 1, + sym_identifier, + STATE(3628), 2, sym_line_comment, sym_block_comment, - [98009] = 4, + [99631] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7198), 1, - sym_identifier, - STATE(3570), 2, + ACTIONS(7146), 1, + anon_sym_RBRACK, + STATE(3629), 2, sym_line_comment, sym_block_comment, - [98023] = 4, + [99645] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7200), 1, - anon_sym_SEMI, - STATE(3571), 2, + ACTIONS(5748), 1, + anon_sym_LBRACE, + STATE(3630), 2, sym_line_comment, sym_block_comment, - [98037] = 4, + [99659] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7202), 1, + ACTIONS(7148), 1, anon_sym_SEMI, - STATE(3572), 2, + STATE(3631), 2, sym_line_comment, sym_block_comment, - [98051] = 4, + [99673] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6164), 1, - anon_sym_GT, - STATE(3573), 2, + ACTIONS(7150), 1, + sym_identifier, + STATE(3632), 2, sym_line_comment, sym_block_comment, - [98065] = 4, + [99687] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7204), 1, - anon_sym_LBRACK, - STATE(3574), 2, + ACTIONS(7152), 1, + sym_self, + STATE(3633), 2, sym_line_comment, sym_block_comment, - [98079] = 4, + [99701] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7206), 1, - anon_sym_SEMI, - STATE(3575), 2, + ACTIONS(7154), 1, + sym_identifier, + STATE(3634), 2, sym_line_comment, sym_block_comment, - [98093] = 4, + [99715] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7208), 1, + ACTIONS(7156), 1, sym__raw_string_literal_end, - STATE(3576), 2, + STATE(3635), 2, sym_line_comment, sym_block_comment, - [98107] = 4, + [99729] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7210), 1, - anon_sym_EQ, - STATE(3577), 2, + ACTIONS(6699), 1, + anon_sym_COLON_COLON, + STATE(3636), 2, sym_line_comment, sym_block_comment, - [98121] = 4, + [99743] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7212), 1, + ACTIONS(7158), 1, anon_sym_SEMI, - STATE(3578), 2, + STATE(3637), 2, sym_line_comment, sym_block_comment, - [98135] = 4, + [99757] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5696), 1, - anon_sym_RPAREN, - STATE(3579), 2, + ACTIONS(7160), 1, + anon_sym_SEMI, + STATE(3638), 2, sym_line_comment, sym_block_comment, - [98149] = 4, + [99771] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7214), 1, - anon_sym_SEMI, - STATE(3580), 2, + ACTIONS(7162), 1, + sym_identifier, + STATE(3639), 2, sym_line_comment, sym_block_comment, - [98163] = 4, + [99785] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7216), 1, - anon_sym_LPAREN, - STATE(3581), 2, + ACTIONS(7164), 1, + anon_sym_RBRACK, + STATE(3640), 2, sym_line_comment, sym_block_comment, - [98177] = 4, + [99799] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7218), 1, - anon_sym_SEMI, - STATE(3582), 2, + ACTIONS(7166), 1, + sym_identifier, + STATE(3641), 2, sym_line_comment, sym_block_comment, - [98191] = 4, + [99813] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7220), 1, + ACTIONS(7168), 1, anon_sym_fn, - STATE(3583), 2, + STATE(3642), 2, sym_line_comment, sym_block_comment, - [98205] = 4, + [99827] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7222), 1, - sym_identifier, - STATE(3584), 2, + ACTIONS(7170), 1, + anon_sym_SEMI, + STATE(3643), 2, sym_line_comment, sym_block_comment, - [98219] = 4, + [99841] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7224), 1, + ACTIONS(7172), 1, sym_identifier, - STATE(3585), 2, + STATE(3644), 2, sym_line_comment, sym_block_comment, - [98233] = 4, + [99855] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(941), 1, - anon_sym_RBRACK, - STATE(3586), 2, + ACTIONS(7174), 1, + anon_sym_SEMI, + STATE(3645), 2, sym_line_comment, sym_block_comment, - [98247] = 4, + [99869] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6417), 1, - anon_sym_RBRACE, - STATE(3587), 2, + ACTIONS(7176), 1, + anon_sym_COLON, + STATE(3646), 2, sym_line_comment, sym_block_comment, - [98261] = 4, + [99883] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7226), 1, - sym_identifier, - STATE(3588), 2, + ACTIONS(1189), 1, + anon_sym_EQ_GT, + STATE(3647), 2, sym_line_comment, sym_block_comment, - [98275] = 4, + [99897] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5870), 1, - anon_sym_RPAREN, - STATE(3589), 2, + ACTIONS(5293), 1, + anon_sym_SEMI, + STATE(3648), 2, sym_line_comment, sym_block_comment, - [98289] = 4, + [99911] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5938), 1, - anon_sym_RPAREN, - STATE(3590), 2, + ACTIONS(7178), 1, + anon_sym_SEMI, + STATE(3649), 2, sym_line_comment, sym_block_comment, - [98303] = 4, + [99925] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3984), 1, - anon_sym_COLON_COLON, - STATE(3591), 2, + ACTIONS(7180), 1, + anon_sym_SEMI, + STATE(3650), 2, sym_line_comment, sym_block_comment, - [98317] = 4, + [99939] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7228), 1, - anon_sym_SEMI, - STATE(3592), 2, + ACTIONS(7182), 1, + sym_identifier, + STATE(3651), 2, sym_line_comment, sym_block_comment, - [98331] = 4, + [99953] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7230), 1, - anon_sym_SEMI, - STATE(3593), 2, + ACTIONS(7184), 1, + anon_sym_LPAREN, + STATE(3652), 2, sym_line_comment, sym_block_comment, - [98345] = 4, + [99967] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5890), 1, - anon_sym_RBRACK, - STATE(3594), 2, + ACTIONS(7186), 1, + sym_identifier, + STATE(3653), 2, sym_line_comment, sym_block_comment, - [98359] = 4, + [99981] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7232), 1, - anon_sym_RBRACK, - STATE(3595), 2, + ACTIONS(5040), 1, + anon_sym_COLON_COLON, + STATE(3654), 2, sym_line_comment, sym_block_comment, - [98373] = 4, + [99995] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7234), 1, + ACTIONS(7188), 1, anon_sym_SEMI, - STATE(3596), 2, + STATE(3655), 2, sym_line_comment, sym_block_comment, - [98387] = 4, + [100009] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, + ACTIONS(7190), 1, anon_sym_RBRACK, - STATE(3597), 2, + STATE(3656), 2, sym_line_comment, sym_block_comment, - [98401] = 4, + [100023] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7236), 1, + ACTIONS(7192), 1, anon_sym_SEMI, - STATE(3598), 2, + STATE(3657), 2, sym_line_comment, sym_block_comment, - [98415] = 4, + [100037] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7238), 1, - anon_sym_SEMI, - STATE(3599), 2, + ACTIONS(7194), 1, + sym_identifier, + STATE(3658), 2, sym_line_comment, sym_block_comment, - [98429] = 4, + [100051] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7240), 1, - sym_identifier, - STATE(3600), 2, + ACTIONS(6372), 1, + anon_sym_RBRACE, + STATE(3659), 2, sym_line_comment, sym_block_comment, - [98443] = 4, + [100065] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7242), 1, - sym_identifier, - STATE(3601), 2, + ACTIONS(5910), 1, + anon_sym_RPAREN, + STATE(3660), 2, sym_line_comment, sym_block_comment, - [98457] = 4, + [100079] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7244), 1, - anon_sym_RBRACK, - STATE(3602), 2, + ACTIONS(7196), 1, + anon_sym_SEMI, + STATE(3661), 2, sym_line_comment, sym_block_comment, - [98471] = 4, + [100093] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7246), 1, - anon_sym_LBRACK, - STATE(3603), 2, + ACTIONS(7198), 1, + anon_sym_COLON, + STATE(3662), 2, sym_line_comment, sym_block_comment, - [98485] = 4, + [100107] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7248), 1, - sym__raw_string_literal_end, - STATE(3604), 2, + ACTIONS(7200), 1, + anon_sym_LT2, + STATE(3663), 2, sym_line_comment, sym_block_comment, - [98499] = 4, - ACTIONS(3), 1, + [100121] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7250), 1, - aux_sym_line_comment_token2, - STATE(3605), 2, + ACTIONS(7202), 1, + anon_sym_COLON_COLON, + STATE(3664), 2, sym_line_comment, sym_block_comment, - [98513] = 4, + [100135] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7252), 1, + ACTIONS(7204), 1, sym_identifier, - STATE(3606), 2, + STATE(3665), 2, sym_line_comment, sym_block_comment, - [98527] = 4, + [100149] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7254), 1, - ts_builtin_sym_end, - STATE(3607), 2, + ACTIONS(7206), 1, + anon_sym_RBRACK, + STATE(3666), 2, sym_line_comment, sym_block_comment, - [98541] = 4, + [100163] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7256), 1, - anon_sym_SEMI, - STATE(3608), 2, + ACTIONS(7208), 1, + sym_identifier, + STATE(3667), 2, sym_line_comment, sym_block_comment, - [98555] = 4, + [100177] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4883), 1, - anon_sym_COLON_COLON, - STATE(3609), 2, + ACTIONS(842), 1, + anon_sym_RBRACK, + STATE(3668), 2, sym_line_comment, sym_block_comment, - [98569] = 4, + [100191] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7258), 1, - anon_sym_COLON_COLON, - STATE(3610), 2, + ACTIONS(7210), 1, + anon_sym_RBRACK, + STATE(3669), 2, sym_line_comment, sym_block_comment, - [98583] = 4, + [100205] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5840), 1, - anon_sym_LBRACE, - STATE(3611), 2, + ACTIONS(5327), 1, + anon_sym_COLON_COLON, + STATE(3670), 2, sym_line_comment, sym_block_comment, - [98597] = 4, + [100219] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7260), 1, - anon_sym_RBRACE, - STATE(3612), 2, + ACTIONS(4706), 1, + anon_sym_COLON_COLON, + STATE(3671), 2, sym_line_comment, sym_block_comment, - [98611] = 4, + [100233] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7262), 1, - anon_sym_SEMI, - STATE(3613), 2, + ACTIONS(7212), 1, + sym_identifier, + STATE(3672), 2, sym_line_comment, sym_block_comment, - [98625] = 4, + [100247] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7264), 1, - anon_sym_SEMI, - STATE(3614), 2, + ACTIONS(7214), 1, + anon_sym_COLON_COLON, + STATE(3673), 2, sym_line_comment, sym_block_comment, - [98639] = 4, + [100261] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7266), 1, - anon_sym_COLON, - STATE(3615), 2, + ACTIONS(3103), 1, + anon_sym_PLUS, + STATE(3674), 2, sym_line_comment, sym_block_comment, - [98653] = 4, + [100275] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7268), 1, - anon_sym_LT, - STATE(3616), 2, + ACTIONS(7216), 1, + anon_sym_SEMI, + STATE(3675), 2, sym_line_comment, sym_block_comment, - [98667] = 4, + [100289] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6104), 1, - anon_sym_RPAREN, - STATE(3617), 2, + ACTIONS(7218), 1, + sym_identifier, + STATE(3676), 2, sym_line_comment, sym_block_comment, - [98681] = 4, + [100303] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7270), 1, - anon_sym_SEMI, - STATE(3618), 2, + ACTIONS(7220), 1, + anon_sym_COLON, + STATE(3677), 2, sym_line_comment, sym_block_comment, - [98695] = 4, + [100317] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7272), 1, - anon_sym_SEMI, - STATE(3619), 2, + ACTIONS(7222), 1, + sym_identifier, + STATE(3678), 2, sym_line_comment, sym_block_comment, - [98709] = 4, + [100331] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6721), 1, - anon_sym_COLON_COLON, - STATE(3620), 2, + ACTIONS(7224), 1, + anon_sym_SEMI, + STATE(3679), 2, sym_line_comment, sym_block_comment, - [98723] = 4, + [100345] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7274), 1, - anon_sym_COLON, - STATE(3621), 2, + ACTIONS(7226), 1, + anon_sym_SEMI, + STATE(3680), 2, sym_line_comment, sym_block_comment, - [98737] = 4, + [100359] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7276), 1, - sym_identifier, - STATE(3622), 2, + ACTIONS(7228), 1, + anon_sym_SEMI, + STATE(3681), 2, sym_line_comment, sym_block_comment, - [98751] = 4, + [100373] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7278), 1, - anon_sym_SEMI, - STATE(3623), 2, + ACTIONS(7230), 1, + sym_identifier, + STATE(3682), 2, sym_line_comment, sym_block_comment, - [98765] = 4, + [100387] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7280), 1, - anon_sym_SEMI, - STATE(3624), 2, + ACTIONS(7232), 1, + sym_raw_string_literal_content, + STATE(3683), 2, sym_line_comment, sym_block_comment, - [98779] = 4, + [100401] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7282), 1, - sym_raw_string_literal_content, - STATE(3625), 2, + ACTIONS(7234), 1, + anon_sym_LT, + STATE(3684), 2, sym_line_comment, sym_block_comment, - [98793] = 4, + [100415] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7284), 1, - anon_sym_RBRACK, - STATE(3626), 2, + ACTIONS(7236), 1, + anon_sym_SEMI, + STATE(3685), 2, sym_line_comment, sym_block_comment, - [98807] = 4, + [100429] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5821), 1, - anon_sym_RPAREN, - STATE(3627), 2, + ACTIONS(7238), 1, + anon_sym_SEMI, + STATE(3686), 2, sym_line_comment, sym_block_comment, - [98821] = 4, + [100443] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4340), 1, + ACTIONS(4257), 1, anon_sym_COLON_COLON, - STATE(3628), 2, + STATE(3687), 2, sym_line_comment, sym_block_comment, - [98835] = 4, + [100457] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6080), 1, + ACTIONS(5760), 1, anon_sym_COLON_COLON, - STATE(3629), 2, + STATE(3688), 2, sym_line_comment, sym_block_comment, - [98849] = 4, + [100471] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5636), 1, - anon_sym_RPAREN, - STATE(3630), 2, + ACTIONS(7240), 1, + anon_sym_fn, + STATE(3689), 2, sym_line_comment, sym_block_comment, - [98863] = 4, + [100485] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6172), 1, - anon_sym_RBRACE, - STATE(3631), 2, + ACTIONS(7242), 1, + anon_sym_LBRACK, + STATE(3690), 2, sym_line_comment, sym_block_comment, - [98877] = 4, + [100499] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7286), 1, - anon_sym_LT2, - STATE(3632), 2, + ACTIONS(7244), 1, + sym_identifier, + STATE(3691), 2, sym_line_comment, sym_block_comment, - [98891] = 4, + [100513] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7288), 1, + ACTIONS(7246), 1, anon_sym_COLON_COLON, - STATE(3633), 2, + STATE(3692), 2, sym_line_comment, sym_block_comment, - [98905] = 4, + [100527] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7290), 1, + ACTIONS(7248), 1, anon_sym_SEMI, - STATE(3634), 2, + STATE(3693), 2, sym_line_comment, sym_block_comment, - [98919] = 4, + [100541] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7292), 1, - sym_identifier, - STATE(3635), 2, + ACTIONS(7250), 1, + anon_sym_fn, + STATE(3694), 2, sym_line_comment, sym_block_comment, - [98933] = 4, + [100555] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7294), 1, - sym_identifier, - STATE(3636), 2, + ACTIONS(7252), 1, + sym__line_doc_content, + STATE(3695), 2, sym_line_comment, sym_block_comment, - [98947] = 4, + [100569] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7296), 1, - sym_identifier, - STATE(3637), 2, + ACTIONS(7254), 1, + anon_sym_COLON, + STATE(3696), 2, sym_line_comment, sym_block_comment, - [98961] = 4, + [100583] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7298), 1, - anon_sym_COLON, - STATE(3638), 2, + ACTIONS(1027), 1, + anon_sym_RBRACK, + STATE(3697), 2, sym_line_comment, sym_block_comment, - [98975] = 4, + [100597] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7300), 1, + ACTIONS(7256), 1, anon_sym_LT2, - STATE(3639), 2, + STATE(3698), 2, sym_line_comment, sym_block_comment, - [98989] = 4, + [100611] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5934), 1, - anon_sym_RPAREN, - STATE(3640), 2, + ACTIONS(7258), 1, + sym_identifier, + STATE(3699), 2, sym_line_comment, sym_block_comment, - [99003] = 4, + [100625] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7302), 1, + ACTIONS(7260), 1, anon_sym_fn, - STATE(3641), 2, + STATE(3700), 2, sym_line_comment, sym_block_comment, - [99017] = 4, + [100639] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7304), 1, - anon_sym_EQ_GT, - STATE(3642), 2, + ACTIONS(7262), 1, + anon_sym_RPAREN, + STATE(3701), 2, sym_line_comment, sym_block_comment, - [99031] = 4, + [100653] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7306), 1, + ACTIONS(7264), 1, anon_sym_COLON_COLON, - STATE(3643), 2, + STATE(3702), 2, sym_line_comment, sym_block_comment, - [99045] = 4, + [100667] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7308), 1, - sym_identifier, - STATE(3644), 2, + ACTIONS(5772), 1, + anon_sym_RPAREN, + STATE(3703), 2, sym_line_comment, sym_block_comment, - [99059] = 4, + [100681] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7310), 1, - anon_sym_RBRACK, - STATE(3645), 2, + ACTIONS(7266), 1, + anon_sym_SEMI, + STATE(3704), 2, sym_line_comment, sym_block_comment, - [99073] = 4, + [100695] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7312), 1, + ACTIONS(7268), 1, anon_sym_COLON_COLON, - STATE(3646), 2, + STATE(3705), 2, sym_line_comment, sym_block_comment, - [99087] = 4, + [100709] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7314), 1, - anon_sym_EQ_GT, - STATE(3647), 2, + ACTIONS(6632), 1, + anon_sym_RBRACE, + STATE(3706), 2, sym_line_comment, sym_block_comment, - [99101] = 4, + [100723] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5402), 1, - anon_sym_SEMI, - STATE(3648), 2, + ACTIONS(5930), 1, + anon_sym_RBRACK, + STATE(3707), 2, sym_line_comment, sym_block_comment, - [99115] = 4, + [100737] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6474), 1, - anon_sym_GT, - STATE(3649), 2, + ACTIONS(7270), 1, + anon_sym_SEMI, + STATE(3708), 2, sym_line_comment, sym_block_comment, - [99129] = 4, + [100751] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5112), 1, + ACTIONS(5088), 1, anon_sym_COLON_COLON, - STATE(3650), 2, + STATE(3709), 2, sym_line_comment, sym_block_comment, - [99143] = 4, + [100765] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7316), 1, + ACTIONS(7272), 1, anon_sym_COLON_COLON, - STATE(3651), 2, + STATE(3710), 2, sym_line_comment, sym_block_comment, - [99157] = 4, + [100779] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7318), 1, + ACTIONS(7274), 1, anon_sym_fn, - STATE(3652), 2, + STATE(3711), 2, sym_line_comment, sym_block_comment, - [99171] = 4, + [100793] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7320), 1, - anon_sym_COLON_COLON, - STATE(3653), 2, + ACTIONS(7276), 1, + sym_identifier, + STATE(3712), 2, sym_line_comment, sym_block_comment, - [99185] = 4, + [100807] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7322), 1, + ACTIONS(7278), 1, anon_sym_LBRACE, - STATE(3654), 2, + STATE(3713), 2, sym_line_comment, sym_block_comment, - [99199] = 4, + [100821] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7324), 1, - anon_sym_RBRACE, - STATE(3655), 2, + ACTIONS(5581), 1, + anon_sym_RPAREN, + STATE(3714), 2, sym_line_comment, sym_block_comment, - [99213] = 4, + [100835] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7326), 1, - anon_sym_COLON, - STATE(3656), 2, + ACTIONS(4832), 1, + anon_sym_COLON_COLON, + STATE(3715), 2, sym_line_comment, sym_block_comment, - [99227] = 4, + [100849] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7328), 1, - anon_sym_COLON, - STATE(3657), 2, + ACTIONS(7280), 1, + sym_identifier, + STATE(3716), 2, sym_line_comment, sym_block_comment, - [99241] = 4, + [100863] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7330), 1, + ACTIONS(7282), 1, anon_sym_SEMI, - STATE(3658), 2, + STATE(3717), 2, sym_line_comment, sym_block_comment, - [99255] = 4, + [100877] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6184), 1, - anon_sym_GT, - STATE(3659), 2, + ACTIONS(7284), 1, + anon_sym_SEMI, + STATE(3718), 2, sym_line_comment, sym_block_comment, - [99269] = 4, + [100891] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7332), 1, - anon_sym_RBRACK, - STATE(3660), 2, + ACTIONS(7286), 1, + anon_sym_SEMI, + STATE(3719), 2, sym_line_comment, sym_block_comment, - [99283] = 4, + [100905] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7334), 1, - anon_sym_EQ_GT, - STATE(3661), 2, + ACTIONS(7288), 1, + anon_sym_SEMI, + STATE(3720), 2, sym_line_comment, sym_block_comment, - [99297] = 4, + [100919] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6321), 1, - anon_sym_RBRACE, - STATE(3662), 2, + ACTIONS(7290), 1, + anon_sym_RBRACK, + STATE(3721), 2, sym_line_comment, sym_block_comment, - [99311] = 4, + [100933] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7336), 1, + ACTIONS(7292), 1, sym_raw_string_literal_content, - STATE(3663), 2, + STATE(3722), 2, sym_line_comment, sym_block_comment, - [99325] = 4, + [100947] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7338), 1, - anon_sym_SEMI, - STATE(3664), 2, + ACTIONS(7294), 1, + sym__line_doc_content, + STATE(3723), 2, sym_line_comment, sym_block_comment, - [99339] = 4, + [100961] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7340), 1, - anon_sym_SEMI, - STATE(3665), 2, + ACTIONS(7296), 1, + sym__line_doc_content, + STATE(3724), 2, sym_line_comment, sym_block_comment, - [99353] = 4, + [100975] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6806), 1, - anon_sym_COLON_COLON, - STATE(3666), 2, + ACTIONS(1629), 1, + anon_sym_RBRACE, + STATE(3725), 2, sym_line_comment, sym_block_comment, - [99367] = 4, + [100989] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7342), 1, + ACTIONS(7298), 1, anon_sym_COLON_COLON, - STATE(3667), 2, + STATE(3726), 2, sym_line_comment, sym_block_comment, - [99381] = 4, + [101003] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7344), 1, + ACTIONS(6218), 1, anon_sym_RBRACE, - STATE(3668), 2, + STATE(3727), 2, sym_line_comment, sym_block_comment, - [99395] = 4, + [101017] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7346), 1, + ACTIONS(7300), 1, anon_sym_SEMI, - STATE(3669), 2, + STATE(3728), 2, sym_line_comment, sym_block_comment, - [99409] = 4, + [101031] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7348), 1, - anon_sym_COLON_COLON, - STATE(3670), 2, + ACTIONS(5251), 1, + anon_sym_SEMI, + STATE(3729), 2, sym_line_comment, sym_block_comment, - [99423] = 4, + [101045] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7350), 1, - sym__line_doc_content, - STATE(3671), 2, + ACTIONS(7302), 1, + sym_identifier, + STATE(3730), 2, sym_line_comment, sym_block_comment, - [99437] = 4, + [101059] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7352), 1, - anon_sym_RBRACE, - STATE(3672), 2, + ACTIONS(7304), 1, + anon_sym_LPAREN, + STATE(3731), 2, sym_line_comment, sym_block_comment, - [99451] = 4, + [101073] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7354), 1, + ACTIONS(7306), 1, anon_sym_COLON_COLON, - STATE(3673), 2, + STATE(3732), 2, sym_line_comment, sym_block_comment, - [99465] = 4, + [101087] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5418), 1, - anon_sym_COLON_COLON, - STATE(3674), 2, + ACTIONS(5534), 1, + anon_sym_RPAREN, + STATE(3733), 2, sym_line_comment, sym_block_comment, - [99479] = 4, + [101101] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7356), 1, - anon_sym_fn, - STATE(3675), 2, + ACTIONS(7308), 1, + anon_sym_EQ_GT, + STATE(3734), 2, sym_line_comment, sym_block_comment, - [99493] = 4, + [101115] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7358), 1, + ACTIONS(7310), 1, sym_identifier, - STATE(3676), 2, + STATE(3735), 2, sym_line_comment, sym_block_comment, - [99507] = 4, + [101129] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7360), 1, - sym__line_doc_content, - STATE(3677), 2, + ACTIONS(7312), 1, + anon_sym_SEMI, + STATE(3736), 2, sym_line_comment, sym_block_comment, - [99521] = 4, + [101143] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7362), 1, + ACTIONS(7314), 1, anon_sym_COLON_COLON, - STATE(3678), 2, + STATE(3737), 2, sym_line_comment, sym_block_comment, - [99535] = 4, + [101157] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7364), 1, + ACTIONS(7316), 1, anon_sym_LBRACE, - STATE(3679), 2, + STATE(3738), 2, sym_line_comment, sym_block_comment, - [99549] = 4, + [101171] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7366), 1, - anon_sym_RBRACE, - STATE(3680), 2, + ACTIONS(7318), 1, + anon_sym_SEMI, + STATE(3739), 2, sym_line_comment, sym_block_comment, - [99563] = 4, + [101185] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7368), 1, - sym_identifier, - STATE(3681), 2, + ACTIONS(7320), 1, + anon_sym_EQ_GT, + STATE(3740), 2, sym_line_comment, sym_block_comment, - [99577] = 4, + [101199] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7370), 1, - anon_sym_RPAREN, - STATE(3682), 2, + ACTIONS(7322), 1, + anon_sym_RBRACE, + STATE(3741), 2, sym_line_comment, sym_block_comment, - [99591] = 4, + [101213] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7372), 1, - anon_sym_RPAREN, - STATE(3683), 2, + ACTIONS(7324), 1, + anon_sym_STAR_SLASH, + STATE(3742), 2, sym_line_comment, sym_block_comment, - [99605] = 4, + [101227] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7374), 1, + ACTIONS(7326), 1, + anon_sym_SEMI, + STATE(3743), 2, + sym_line_comment, + sym_block_comment, + [101241] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7328), 1, sym_raw_string_literal_content, - STATE(3684), 2, + STATE(3744), 2, sym_line_comment, sym_block_comment, - [99619] = 4, + [101255] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3676), 1, + ACTIONS(3587), 1, anon_sym_COLON_COLON, - STATE(3685), 2, + STATE(3745), 2, sym_line_comment, sym_block_comment, - [99633] = 4, + [101269] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7376), 1, + ACTIONS(7330), 1, anon_sym_COLON_COLON, - STATE(3686), 2, + STATE(3746), 2, sym_line_comment, sym_block_comment, - [99647] = 4, + [101283] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7378), 1, - sym_self, - STATE(3687), 2, + ACTIONS(7332), 1, + anon_sym_SEMI, + STATE(3747), 2, sym_line_comment, sym_block_comment, - [99661] = 4, + [101297] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7380), 1, - anon_sym_RBRACK, - STATE(3688), 2, + ACTIONS(7334), 1, + anon_sym_RPAREN, + STATE(3748), 2, sym_line_comment, sym_block_comment, - [99675] = 4, + [101311] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7382), 1, + ACTIONS(7336), 1, anon_sym_LBRACE, - STATE(3689), 2, + STATE(3749), 2, sym_line_comment, sym_block_comment, - [99689] = 4, + [101325] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7384), 1, + ACTIONS(7338), 1, sym_raw_string_literal_content, - STATE(3690), 2, + STATE(3750), 2, sym_line_comment, sym_block_comment, - [99703] = 4, + [101339] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5350), 1, + ACTIONS(5305), 1, anon_sym_COLON_COLON, - STATE(3691), 2, + STATE(3751), 2, sym_line_comment, sym_block_comment, - [99717] = 4, + [101353] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7386), 1, + ACTIONS(7340), 1, anon_sym_COLON_COLON, - STATE(3692), 2, + STATE(3752), 2, sym_line_comment, sym_block_comment, - [99731] = 4, + [101367] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7388), 1, - sym_raw_string_literal_content, - STATE(3693), 2, + ACTIONS(6257), 1, + anon_sym_GT, + STATE(3753), 2, sym_line_comment, sym_block_comment, - [99745] = 4, + [101381] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6072), 1, + ACTIONS(6048), 1, anon_sym_LBRACE, - STATE(3694), 2, + STATE(3754), 2, sym_line_comment, sym_block_comment, - [99759] = 4, + [101395] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(6016), 1, anon_sym_COLON_COLON, - STATE(3695), 2, + STATE(3755), 2, sym_line_comment, sym_block_comment, - [99773] = 4, + [101409] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7390), 1, + ACTIONS(7342), 1, anon_sym_COLON_COLON, - STATE(3696), 2, + STATE(3756), 2, sym_line_comment, sym_block_comment, - [99787] = 4, + [101423] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6090), 1, + ACTIONS(6070), 1, anon_sym_LBRACE, - STATE(3697), 2, + STATE(3757), 2, sym_line_comment, sym_block_comment, - [99801] = 4, + [101437] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7392), 1, + ACTIONS(7344), 1, anon_sym_COLON_COLON, - STATE(3698), 2, + STATE(3758), 2, sym_line_comment, sym_block_comment, - [99815] = 4, + [101451] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5352), 1, + ACTIONS(5353), 1, anon_sym_COLON_COLON, - STATE(3699), 2, + STATE(3759), 2, sym_line_comment, sym_block_comment, - [99829] = 4, + [101465] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5394), 1, + ACTIONS(5369), 1, anon_sym_COLON_COLON, - STATE(3700), 2, + STATE(3760), 2, sym_line_comment, sym_block_comment, - [99843] = 4, + [101479] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4352), 1, + ACTIONS(4233), 1, anon_sym_COLON_COLON, - STATE(3701), 2, + STATE(3761), 2, sym_line_comment, sym_block_comment, - [99857] = 4, + [101493] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7394), 1, + ACTIONS(7346), 1, anon_sym_COLON_COLON, - STATE(3702), 2, + STATE(3762), 2, + sym_line_comment, + sym_block_comment, + [101507] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7348), 1, + ts_builtin_sym_end, + STATE(3763), 2, sym_line_comment, sym_block_comment, - [99871] = 4, + [101521] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1001), 1, - anon_sym_EQ_GT, - STATE(3703), 2, + ACTIONS(7350), 1, + anon_sym_RPAREN, + STATE(3764), 2, sym_line_comment, sym_block_comment, - [99885] = 4, + [101535] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6269), 1, - anon_sym_GT, - STATE(3704), 2, + ACTIONS(7352), 1, + anon_sym_SEMI, + STATE(3765), 2, sym_line_comment, sym_block_comment, - [99899] = 4, + [101549] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7396), 1, - sym_identifier, - STATE(3705), 2, + ACTIONS(1635), 1, + anon_sym_RBRACE, + STATE(3766), 2, sym_line_comment, sym_block_comment, - [99913] = 4, + [101563] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7398), 1, + ACTIONS(7354), 1, anon_sym_COLON, - STATE(3706), 2, + STATE(3767), 2, sym_line_comment, sym_block_comment, - [99927] = 4, + [101577] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7400), 1, + ACTIONS(6922), 1, anon_sym_LBRACK, - STATE(3707), 2, + STATE(3768), 2, sym_line_comment, sym_block_comment, - [99941] = 4, + [101591] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7402), 1, - anon_sym_EQ_GT, - STATE(3708), 2, + ACTIONS(7356), 1, + anon_sym_SEMI, + STATE(3769), 2, sym_line_comment, sym_block_comment, - [99955] = 4, + [101605] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6934), 1, - anon_sym_SEMI, - STATE(3709), 2, + ACTIONS(7358), 1, + sym_raw_string_literal_content, + STATE(3770), 2, sym_line_comment, sym_block_comment, - [99969] = 4, + [101619] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7404), 1, + ACTIONS(7360), 1, anon_sym_SEMI, - STATE(3710), 2, + STATE(3771), 2, sym_line_comment, sym_block_comment, - [99983] = 4, + [101633] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4746), 1, - anon_sym_COLON_COLON, - STATE(3711), 2, + ACTIONS(7362), 1, + anon_sym_COLON, + STATE(3772), 2, sym_line_comment, sym_block_comment, - [99997] = 4, + [101647] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5428), 1, + ACTIONS(7364), 1, anon_sym_SEMI, - STATE(3712), 2, + STATE(3773), 2, sym_line_comment, sym_block_comment, - [100011] = 4, + [101661] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7406), 1, + ACTIONS(7366), 1, anon_sym_LBRACK, - STATE(3713), 2, + STATE(3774), 2, sym_line_comment, sym_block_comment, - [100025] = 4, + [101675] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7408), 1, + ACTIONS(7368), 1, anon_sym_COLON, - STATE(3714), 2, + STATE(3775), 2, sym_line_comment, sym_block_comment, - [100039] = 4, + [101689] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7410), 1, + ACTIONS(7370), 1, anon_sym_COLON, - STATE(3715), 2, + STATE(3776), 2, sym_line_comment, sym_block_comment, - [100053] = 4, + [101703] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7412), 1, + ACTIONS(7372), 1, sym_identifier, - STATE(3716), 2, + STATE(3777), 2, sym_line_comment, sym_block_comment, - [100067] = 4, + [101717] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1011), 1, - anon_sym_RBRACK, - STATE(3717), 2, + ACTIONS(7374), 1, + anon_sym_SEMI, + STATE(3778), 2, sym_line_comment, sym_block_comment, - [100081] = 4, + [101731] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7414), 1, - anon_sym_COLON, - STATE(3718), 2, + ACTIONS(7376), 1, + anon_sym_SEMI, + STATE(3779), 2, sym_line_comment, sym_block_comment, - [100095] = 4, + [101745] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7416), 1, - sym_identifier, - STATE(3719), 2, + ACTIONS(7378), 1, + anon_sym_RBRACE, + STATE(3780), 2, sym_line_comment, sym_block_comment, - [100109] = 4, + [101759] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7418), 1, + ACTIONS(7380), 1, anon_sym_COLON, - STATE(3720), 2, + STATE(3781), 2, sym_line_comment, sym_block_comment, - [100123] = 4, + [101773] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7420), 1, - sym_identifier, - STATE(3721), 2, + ACTIONS(3849), 1, + anon_sym_COLON_COLON, + STATE(3782), 2, sym_line_comment, sym_block_comment, - [100137] = 4, + [101787] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4156), 1, + ACTIONS(7382), 1, sym_identifier, - STATE(3722), 2, + STATE(3783), 2, sym_line_comment, sym_block_comment, - [100151] = 4, + [101801] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7422), 1, + ACTIONS(7384), 1, + anon_sym_RPAREN, + STATE(3784), 2, + sym_line_comment, + sym_block_comment, + [101815] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7386), 1, sym_identifier, - STATE(3723), 2, + STATE(3785), 2, sym_line_comment, sym_block_comment, - [100165] = 4, + [101829] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7424), 1, - anon_sym_SEMI, - STATE(3724), 2, + ACTIONS(7388), 1, + sym_identifier, + STATE(3786), 2, sym_line_comment, sym_block_comment, - [100179] = 4, + [101843] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7426), 1, - anon_sym_SEMI, - STATE(3725), 2, + ACTIONS(7390), 1, + sym_identifier, + STATE(3787), 2, sym_line_comment, sym_block_comment, - [100193] = 4, + [101857] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7428), 1, - anon_sym_SEMI, - STATE(3726), 2, + ACTIONS(7392), 1, + sym_identifier, + STATE(3788), 2, sym_line_comment, sym_block_comment, - [100207] = 4, + [101871] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7430), 1, - sym__raw_string_literal_end, - STATE(3727), 2, + ACTIONS(1583), 1, + anon_sym_RBRACE, + STATE(3789), 2, sym_line_comment, sym_block_comment, - [100221] = 4, + [101885] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7432), 1, + ACTIONS(7394), 1, sym_identifier, - STATE(3728), 2, + STATE(3790), 2, sym_line_comment, sym_block_comment, - [100235] = 4, + [101899] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4270), 1, - anon_sym_COLON_COLON, - STATE(3729), 2, + ACTIONS(7396), 1, + anon_sym_SEMI, + STATE(3791), 2, sym_line_comment, sym_block_comment, - [100249] = 4, + [101913] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7434), 1, - anon_sym_RPAREN, - STATE(3730), 2, + ACTIONS(7398), 1, + anon_sym_RBRACK, + STATE(3792), 2, sym_line_comment, sym_block_comment, - [100263] = 4, + [101927] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7436), 1, - sym__raw_string_literal_end, - STATE(3731), 2, + ACTIONS(7400), 1, + sym_identifier, + STATE(3793), 2, sym_line_comment, sym_block_comment, - [100277] = 4, + [101941] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4779), 1, - anon_sym_COLON_COLON, - STATE(3732), 2, + ACTIONS(6183), 1, + anon_sym_RBRACE, + STATE(3794), 2, sym_line_comment, sym_block_comment, - [100291] = 4, + [101955] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6560), 1, - anon_sym_RBRACE, - STATE(3733), 2, + ACTIONS(7402), 1, + anon_sym_COLON, + STATE(3795), 2, sym_line_comment, sym_block_comment, - [100305] = 4, + [101969] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6747), 1, - anon_sym_RBRACE, - STATE(3734), 2, + ACTIONS(4225), 1, + anon_sym_COLON_COLON, + STATE(3796), 2, sym_line_comment, sym_block_comment, - [100319] = 4, + [101983] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7438), 1, - anon_sym_COLON, - STATE(3735), 2, + ACTIONS(7404), 1, + anon_sym_STAR_SLASH, + STATE(3797), 2, sym_line_comment, sym_block_comment, - [100333] = 4, + [101997] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7440), 1, + ACTIONS(4720), 1, anon_sym_COLON_COLON, - STATE(3736), 2, + STATE(3798), 2, sym_line_comment, sym_block_comment, - [100347] = 4, + [102011] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7442), 1, - sym_raw_string_literal_content, - STATE(3737), 2, + ACTIONS(7406), 1, + anon_sym_COLON, + STATE(3799), 2, sym_line_comment, sym_block_comment, - [100361] = 4, + [102025] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7444), 1, + ACTIONS(7408), 1, anon_sym_SEMI, - STATE(3738), 2, + STATE(3800), 2, sym_line_comment, sym_block_comment, - [100375] = 4, + [102039] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7446), 1, + ACTIONS(7410), 1, anon_sym_COLON, - STATE(3739), 2, + STATE(3801), 2, sym_line_comment, sym_block_comment, - [100389] = 4, + [102053] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7448), 1, - anon_sym_COLON, - STATE(3740), 2, + ACTIONS(7412), 1, + anon_sym_SEMI, + STATE(3802), 2, sym_line_comment, sym_block_comment, - [100403] = 4, + [102067] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7450), 1, - sym_identifier, - STATE(3741), 2, + ACTIONS(7414), 1, + sym__raw_string_literal_end, + STATE(3803), 2, sym_line_comment, sym_block_comment, - [100417] = 4, + [102081] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7452), 1, - anon_sym_RBRACK, - STATE(3742), 2, + ACTIONS(7416), 1, + anon_sym_EQ_GT, + STATE(3804), 2, sym_line_comment, sym_block_comment, - [100431] = 4, + [102095] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7454), 1, - anon_sym_SEMI, - STATE(3743), 2, + ACTIONS(6472), 1, + anon_sym_RBRACE, + STATE(3805), 2, sym_line_comment, sym_block_comment, - [100445] = 4, + [102109] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7456), 1, - anon_sym_SEMI, - STATE(3744), 2, + ACTIONS(4645), 1, + anon_sym_fn, + STATE(3806), 2, sym_line_comment, sym_block_comment, - [100459] = 4, + [102123] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4300), 1, - anon_sym_RPAREN, - STATE(3745), 2, + ACTIONS(7418), 1, + anon_sym_SEMI, + STATE(3807), 2, sym_line_comment, sym_block_comment, - [100473] = 4, + [102137] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7458), 1, - anon_sym_EQ_GT, - STATE(3746), 2, + ACTIONS(7420), 1, + anon_sym_COLON, + STATE(3808), 2, sym_line_comment, sym_block_comment, - [100487] = 4, + [102151] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6489), 1, - anon_sym_RBRACE, - STATE(3747), 2, + ACTIONS(7422), 1, + anon_sym_SEMI, + STATE(3809), 2, sym_line_comment, sym_block_comment, - [100501] = 4, + [102165] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7460), 1, - anon_sym_COLON, - STATE(3748), 2, + ACTIONS(7424), 1, + anon_sym_SEMI, + STATE(3810), 2, sym_line_comment, sym_block_comment, - [100515] = 4, + [102179] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7462), 1, - anon_sym_SEMI, - STATE(3749), 2, + ACTIONS(4243), 1, + anon_sym_RPAREN, + STATE(3811), 2, sym_line_comment, sym_block_comment, - [100529] = 4, + [102193] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7464), 1, - anon_sym_COLON_COLON, - STATE(3750), 2, + ACTIONS(7426), 1, + anon_sym_SEMI, + STATE(3812), 2, sym_line_comment, sym_block_comment, - [100543] = 4, + [102207] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7466), 1, + ACTIONS(6766), 1, anon_sym_SEMI, - STATE(3751), 2, + STATE(3813), 2, sym_line_comment, sym_block_comment, - [100557] = 4, + [102221] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4769), 1, - anon_sym_COLON_COLON, - STATE(3752), 2, + ACTIONS(6525), 1, + anon_sym_RBRACE, + STATE(3814), 2, sym_line_comment, sym_block_comment, - [100571] = 4, + [102235] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7468), 1, - anon_sym_SEMI, - STATE(3753), 2, + ACTIONS(7428), 1, + anon_sym_EQ, + STATE(3815), 2, sym_line_comment, sym_block_comment, - [100585] = 4, + [102249] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7470), 1, - anon_sym_RPAREN, - STATE(3754), 2, + ACTIONS(4718), 1, + anon_sym_COLON_COLON, + STATE(3816), 2, sym_line_comment, sym_block_comment, - [100599] = 4, + [102263] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7472), 1, - anon_sym_EQ, - STATE(3755), 2, + ACTIONS(7430), 1, + anon_sym_COLON, + STATE(3817), 2, sym_line_comment, sym_block_comment, - [100613] = 4, + [102277] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7474), 1, - anon_sym_SEMI, - STATE(3756), 2, + ACTIONS(7432), 1, + anon_sym_RBRACE, + STATE(3818), 2, sym_line_comment, sym_block_comment, - [100627] = 4, + [102291] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7476), 1, - anon_sym_SEMI, - STATE(3757), 2, + ACTIONS(6707), 1, + anon_sym_RBRACE, + STATE(3819), 2, sym_line_comment, sym_block_comment, - [100641] = 4, + [102305] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5753), 1, - anon_sym_RPAREN, - STATE(3758), 2, + ACTIONS(7434), 1, + anon_sym_RBRACE, + STATE(3820), 2, sym_line_comment, sym_block_comment, - [100655] = 4, + [102319] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(871), 1, - anon_sym_RBRACK, - STATE(3759), 2, + ACTIONS(7436), 1, + sym_identifier, + STATE(3821), 2, sym_line_comment, sym_block_comment, - [100669] = 4, + [102333] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5408), 1, - anon_sym_SEMI, - STATE(3760), 2, + ACTIONS(6434), 1, + anon_sym_RBRACE, + STATE(3822), 2, sym_line_comment, sym_block_comment, - [100683] = 4, + [102347] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7478), 1, - anon_sym_COLON, - STATE(3761), 2, + ACTIONS(7438), 1, + anon_sym_COLON_COLON, + STATE(3823), 2, sym_line_comment, sym_block_comment, - [100697] = 4, + [102361] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7480), 1, + ACTIONS(7440), 1, anon_sym_COLON, - STATE(3762), 2, + STATE(3824), 2, sym_line_comment, sym_block_comment, - [100711] = 4, + [102375] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7482), 1, - anon_sym_STAR_SLASH, - STATE(3763), 2, + ACTIONS(7442), 1, + anon_sym_EQ, + STATE(3825), 2, sym_line_comment, sym_block_comment, - [100725] = 4, + [102389] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7484), 1, + ACTIONS(7444), 1, anon_sym_COLON, - STATE(3764), 2, + STATE(3826), 2, sym_line_comment, sym_block_comment, - [100739] = 4, + [102403] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7486), 1, - anon_sym_EQ, - STATE(3765), 2, + ACTIONS(7446), 1, + anon_sym_LBRACK, + STATE(3827), 2, sym_line_comment, sym_block_comment, - [100753] = 4, + [102417] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7488), 1, - anon_sym_LT2, - STATE(3766), 2, + ACTIONS(7448), 1, + anon_sym_LBRACK, + STATE(3828), 2, sym_line_comment, sym_block_comment, - [100767] = 4, + [102431] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7490), 1, + ACTIONS(7450), 1, anon_sym_COLON, - STATE(3767), 2, + STATE(3829), 2, sym_line_comment, sym_block_comment, - [100781] = 4, + [102445] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7492), 1, - anon_sym_LBRACK, - STATE(3768), 2, + ACTIONS(7452), 1, + anon_sym_LT2, + STATE(3830), 2, sym_line_comment, sym_block_comment, - [100795] = 4, + [102459] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7494), 1, - anon_sym_LBRACK, - STATE(3769), 2, + ACTIONS(7454), 1, + anon_sym_RBRACE, + STATE(3831), 2, sym_line_comment, sym_block_comment, - [100809] = 4, + [102473] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7496), 1, + ACTIONS(7456), 1, anon_sym_COLON, - STATE(3770), 2, + STATE(3832), 2, sym_line_comment, sym_block_comment, - [100823] = 4, + [102487] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5759), 1, - anon_sym_RPAREN, - STATE(3771), 2, + ACTIONS(7458), 1, + anon_sym_LBRACK, + STATE(3833), 2, sym_line_comment, sym_block_comment, - [100837] = 4, + [102501] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7498), 1, - anon_sym_fn, - STATE(3772), 2, + ACTIONS(7460), 1, + anon_sym_COLON, + STATE(3834), 2, sym_line_comment, sym_block_comment, - [100851] = 4, + [102515] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7500), 1, - anon_sym_COLON, - STATE(3773), 2, + ACTIONS(7462), 1, + anon_sym_fn, + STATE(3835), 2, sym_line_comment, sym_block_comment, - [100865] = 4, + [102529] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7502), 1, - anon_sym_COLON, - STATE(3774), 2, + ACTIONS(3095), 1, + anon_sym_PLUS, + STATE(3836), 2, sym_line_comment, sym_block_comment, - [100879] = 4, + [102543] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - STATE(3775), 2, + ACTIONS(6974), 1, + anon_sym_LBRACK, + STATE(3837), 2, sym_line_comment, sym_block_comment, - [100893] = 4, + [102557] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7504), 1, - anon_sym_RBRACE, - STATE(3776), 2, + ACTIONS(7464), 1, + anon_sym_COLON, + STATE(3838), 2, sym_line_comment, sym_block_comment, - [100907] = 4, + [102571] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7506), 1, - anon_sym_COLON, - STATE(3777), 2, + ACTIONS(7014), 1, + anon_sym_LBRACK, + STATE(3839), 2, sym_line_comment, sym_block_comment, - [100921] = 4, + [102585] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7508), 1, + ACTIONS(7466), 1, anon_sym_COLON, - STATE(3778), 2, + STATE(3840), 2, sym_line_comment, sym_block_comment, - [100935] = 4, + [102599] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7510), 1, + ACTIONS(7468), 1, anon_sym_COLON, - STATE(3779), 2, + STATE(3841), 2, sym_line_comment, sym_block_comment, - [100949] = 4, + [102613] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7512), 1, - anon_sym_COLON_COLON, - STATE(3780), 2, + ACTIONS(7470), 1, + anon_sym_COLON, + STATE(3842), 2, sym_line_comment, sym_block_comment, - [100963] = 4, + [102627] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4688), 1, + ACTIONS(4669), 1, anon_sym_fn, - STATE(3781), 2, + STATE(3843), 2, sym_line_comment, sym_block_comment, - [100977] = 4, + [102641] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7514), 1, - anon_sym_SEMI, - STATE(3782), 2, + ACTIONS(7472), 1, + anon_sym_RBRACK, + STATE(3844), 2, sym_line_comment, sym_block_comment, - [100991] = 4, + [102655] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7516), 1, + ACTIONS(5700), 1, anon_sym_RPAREN, - STATE(3783), 2, + STATE(3845), 2, sym_line_comment, sym_block_comment, - [101005] = 4, + [102669] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(987), 1, - anon_sym_EQ_GT, - STATE(3784), 2, + ACTIONS(7474), 1, + sym_identifier, + STATE(3846), 2, sym_line_comment, sym_block_comment, - [101019] = 4, + [102683] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6902), 1, - anon_sym_SEMI, - STATE(3785), 2, + ACTIONS(7476), 1, + anon_sym_COLON_COLON, + STATE(3847), 2, sym_line_comment, sym_block_comment, - [101033] = 4, + [102697] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5310), 1, - anon_sym_SEMI, - STATE(3786), 2, + ACTIONS(7478), 1, + sym_identifier, + STATE(3848), 2, sym_line_comment, sym_block_comment, - [101047] = 4, + [102711] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7518), 1, - sym__raw_string_literal_end, - STATE(3787), 2, + ACTIONS(6848), 1, + anon_sym_SEMI, + STATE(3849), 2, sym_line_comment, sym_block_comment, - [101061] = 4, + [102725] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7520), 1, + ACTIONS(7480), 1, sym_identifier, - STATE(3788), 2, + STATE(3850), 2, sym_line_comment, sym_block_comment, - [101075] = 4, + [102739] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7522), 1, - sym__line_doc_content, - STATE(3789), 2, + ACTIONS(4122), 1, + sym_identifier, + STATE(3851), 2, sym_line_comment, sym_block_comment, - [101089] = 4, + [102753] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7524), 1, - sym_identifier, - STATE(3790), 2, + ACTIONS(7482), 1, + anon_sym_RBRACE, + STATE(3852), 2, sym_line_comment, sym_block_comment, - [101103] = 4, + [102767] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7526), 1, + ACTIONS(7484), 1, sym_identifier, - STATE(3791), 2, + STATE(3853), 2, sym_line_comment, sym_block_comment, - [101117] = 4, + [102781] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7528), 1, + ACTIONS(7486), 1, anon_sym_fn, - STATE(3792), 2, + STATE(3854), 2, sym_line_comment, sym_block_comment, - [101131] = 4, + [102795] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7530), 1, - anon_sym_EQ, - STATE(3793), 2, + ACTIONS(4057), 1, + anon_sym_COLON_COLON, + STATE(3855), 2, sym_line_comment, sym_block_comment, - [101145] = 4, + [102809] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7532), 1, - sym_identifier, - STATE(3794), 2, + ACTIONS(7488), 1, + anon_sym_SEMI, + STATE(3856), 2, sym_line_comment, sym_block_comment, - [101159] = 4, + [102823] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7534), 1, + ACTIONS(7490), 1, sym_identifier, - STATE(3795), 2, + STATE(3857), 2, sym_line_comment, sym_block_comment, - [101173] = 4, + [102837] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6958), 1, + ACTIONS(7492), 1, anon_sym_SEMI, - STATE(3796), 2, + STATE(3858), 2, sym_line_comment, sym_block_comment, - [101187] = 4, + [102851] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7536), 1, - sym_identifier, - STATE(3797), 2, + ACTIONS(6332), 1, + anon_sym_GT, + STATE(3859), 2, sym_line_comment, sym_block_comment, - [101201] = 4, + [102865] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7538), 1, - anon_sym_SEMI, - STATE(3798), 2, + ACTIONS(3115), 1, + anon_sym_PLUS, + STATE(3860), 2, sym_line_comment, sym_block_comment, - [101215] = 4, + [102879] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7540), 1, - sym_identifier, - STATE(3799), 2, + ACTIONS(7494), 1, + anon_sym_EQ_GT, + STATE(3861), 2, sym_line_comment, sym_block_comment, - [101229] = 4, + [102893] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7542), 1, - anon_sym_COLON_COLON, - STATE(3800), 2, + ACTIONS(5317), 1, + anon_sym_SEMI, + STATE(3862), 2, sym_line_comment, sym_block_comment, - [101243] = 4, + [102907] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7544), 1, + ACTIONS(7496), 1, sym_identifier, - STATE(3801), 2, + STATE(3863), 2, sym_line_comment, sym_block_comment, - [101257] = 4, + [102921] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4114), 1, - anon_sym_COLON_COLON, - STATE(3802), 2, + ACTIONS(7498), 1, + sym_identifier, + STATE(3864), 2, sym_line_comment, sym_block_comment, - [101271] = 4, + [102935] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7546), 1, - sym_identifier, - STATE(3803), 2, + ACTIONS(6130), 1, + anon_sym_GT, + STATE(3865), 2, sym_line_comment, sym_block_comment, - [101285] = 4, + [102949] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7548), 1, - sym_identifier, - STATE(3804), 2, + ACTIONS(5329), 1, + anon_sym_SEMI, + STATE(3866), 2, sym_line_comment, sym_block_comment, - [101299] = 4, + [102963] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7550), 1, - sym_identifier, - STATE(3805), 2, + ACTIONS(830), 1, + anon_sym_RBRACK, + STATE(3867), 2, sym_line_comment, sym_block_comment, - [101313] = 4, + [102977] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7552), 1, - sym_identifier, - STATE(3806), 2, + ACTIONS(7016), 1, + anon_sym_BANG, + STATE(3868), 2, sym_line_comment, sym_block_comment, - [101327] = 4, + [102991] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7554), 1, + ACTIONS(7500), 1, sym_identifier, - STATE(3807), 2, + STATE(3869), 2, sym_line_comment, sym_block_comment, - [101341] = 4, + [103005] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7556), 1, + ACTIONS(7502), 1, sym_identifier, - STATE(3808), 2, + STATE(3870), 2, sym_line_comment, sym_block_comment, - [101355] = 4, + [103019] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7558), 1, - sym_identifier, - STATE(3809), 2, + ACTIONS(7504), 1, + anon_sym_SEMI, + STATE(3871), 2, sym_line_comment, sym_block_comment, - [101369] = 4, + [103033] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7560), 1, - anon_sym_SEMI, - STATE(3810), 2, + ACTIONS(7506), 1, + anon_sym_COLON_COLON, + STATE(3872), 2, sym_line_comment, sym_block_comment, - [101383] = 4, + [103047] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7562), 1, + ACTIONS(7508), 1, sym_identifier, - STATE(3811), 2, + STATE(3873), 2, sym_line_comment, sym_block_comment, - [101397] = 4, + [103061] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7564), 1, + ACTIONS(7510), 1, anon_sym_fn, - STATE(3812), 2, + STATE(3874), 2, sym_line_comment, sym_block_comment, - [101411] = 4, + [103075] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3220), 1, - anon_sym_PLUS, - STATE(3813), 2, + ACTIONS(7512), 1, + sym_identifier, + STATE(3875), 2, sym_line_comment, sym_block_comment, - [101425] = 4, + [103089] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7566), 1, + ACTIONS(7514), 1, anon_sym_fn, - STATE(3814), 2, + STATE(3876), 2, sym_line_comment, sym_block_comment, - [101439] = 4, + [103103] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7568), 1, - sym_identifier, - STATE(3815), 2, + ACTIONS(7516), 1, + anon_sym_SEMI, + STATE(3877), 2, sym_line_comment, sym_block_comment, - [101453] = 1, - ACTIONS(7570), 1, + [103117] = 1, + ACTIONS(7518), 1, ts_builtin_sym_end, - [101457] = 1, - ACTIONS(7572), 1, + [103121] = 1, + ACTIONS(7520), 1, ts_builtin_sym_end, - [101461] = 1, - ACTIONS(7574), 1, + [103125] = 1, + ACTIONS(7522), 1, ts_builtin_sym_end, - [101465] = 1, - ACTIONS(7576), 1, + [103129] = 1, + ACTIONS(7524), 1, ts_builtin_sym_end, - [101469] = 1, - ACTIONS(7578), 1, + [103133] = 1, + ACTIONS(7526), 1, ts_builtin_sym_end, - [101473] = 1, - ACTIONS(7580), 1, + [103137] = 1, + ACTIONS(7528), 1, ts_builtin_sym_end, - [101477] = 1, - ACTIONS(7582), 1, + [103141] = 1, + ACTIONS(7530), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1063)] = 0, - [SMALL_STATE(1064)] = 75, - [SMALL_STATE(1065)] = 148, - [SMALL_STATE(1066)] = 219, - [SMALL_STATE(1067)] = 319, - [SMALL_STATE(1068)] = 419, - [SMALL_STATE(1069)] = 519, - [SMALL_STATE(1070)] = 596, - [SMALL_STATE(1071)] = 675, - [SMALL_STATE(1072)] = 752, - [SMALL_STATE(1073)] = 829, - [SMALL_STATE(1074)] = 893, - [SMALL_STATE(1075)] = 957, - [SMALL_STATE(1076)] = 1021, - [SMALL_STATE(1077)] = 1085, - [SMALL_STATE(1078)] = 1153, - [SMALL_STATE(1079)] = 1217, - [SMALL_STATE(1080)] = 1291, - [SMALL_STATE(1081)] = 1355, - [SMALL_STATE(1082)] = 1419, - [SMALL_STATE(1083)] = 1483, - [SMALL_STATE(1084)] = 1547, - [SMALL_STATE(1085)] = 1618, - [SMALL_STATE(1086)] = 1681, - [SMALL_STATE(1087)] = 1782, - [SMALL_STATE(1088)] = 1845, - [SMALL_STATE(1089)] = 1912, - [SMALL_STATE(1090)] = 1983, - [SMALL_STATE(1091)] = 2046, - [SMALL_STATE(1092)] = 2117, - [SMALL_STATE(1093)] = 2188, - [SMALL_STATE(1094)] = 2255, - [SMALL_STATE(1095)] = 2356, - [SMALL_STATE(1096)] = 2423, - [SMALL_STATE(1097)] = 2486, - [SMALL_STATE(1098)] = 2549, - [SMALL_STATE(1099)] = 2616, - [SMALL_STATE(1100)] = 2683, - [SMALL_STATE(1101)] = 2784, - [SMALL_STATE(1102)] = 2848, - [SMALL_STATE(1103)] = 2912, - [SMALL_STATE(1104)] = 2974, - [SMALL_STATE(1105)] = 3042, - [SMALL_STATE(1106)] = 3104, - [SMALL_STATE(1107)] = 3166, - [SMALL_STATE(1108)] = 3228, - [SMALL_STATE(1109)] = 3298, - [SMALL_STATE(1110)] = 3360, - [SMALL_STATE(1111)] = 3422, - [SMALL_STATE(1112)] = 3484, - [SMALL_STATE(1113)] = 3546, - [SMALL_STATE(1114)] = 3607, - [SMALL_STATE(1115)] = 3668, - [SMALL_STATE(1116)] = 3729, - [SMALL_STATE(1117)] = 3790, - [SMALL_STATE(1118)] = 3851, - [SMALL_STATE(1119)] = 3912, - [SMALL_STATE(1120)] = 3973, - [SMALL_STATE(1121)] = 4034, - [SMALL_STATE(1122)] = 4095, - [SMALL_STATE(1123)] = 4156, - [SMALL_STATE(1124)] = 4217, - [SMALL_STATE(1125)] = 4278, - [SMALL_STATE(1126)] = 4339, - [SMALL_STATE(1127)] = 4400, - [SMALL_STATE(1128)] = 4461, - [SMALL_STATE(1129)] = 4522, - [SMALL_STATE(1130)] = 4583, - [SMALL_STATE(1131)] = 4644, - [SMALL_STATE(1132)] = 4705, - [SMALL_STATE(1133)] = 4766, - [SMALL_STATE(1134)] = 4827, - [SMALL_STATE(1135)] = 4888, - [SMALL_STATE(1136)] = 4949, - [SMALL_STATE(1137)] = 5010, - [SMALL_STATE(1138)] = 5071, - [SMALL_STATE(1139)] = 5132, - [SMALL_STATE(1140)] = 5193, - [SMALL_STATE(1141)] = 5254, - [SMALL_STATE(1142)] = 5315, - [SMALL_STATE(1143)] = 5376, - [SMALL_STATE(1144)] = 5437, - [SMALL_STATE(1145)] = 5498, - [SMALL_STATE(1146)] = 5559, - [SMALL_STATE(1147)] = 5620, - [SMALL_STATE(1148)] = 5681, - [SMALL_STATE(1149)] = 5756, - [SMALL_STATE(1150)] = 5817, - [SMALL_STATE(1151)] = 5880, - [SMALL_STATE(1152)] = 5941, - [SMALL_STATE(1153)] = 6002, - [SMALL_STATE(1154)] = 6063, - [SMALL_STATE(1155)] = 6124, - [SMALL_STATE(1156)] = 6185, - [SMALL_STATE(1157)] = 6248, - [SMALL_STATE(1158)] = 6309, - [SMALL_STATE(1159)] = 6372, - [SMALL_STATE(1160)] = 6433, - [SMALL_STATE(1161)] = 6494, - [SMALL_STATE(1162)] = 6557, - [SMALL_STATE(1163)] = 6618, - [SMALL_STATE(1164)] = 6679, - [SMALL_STATE(1165)] = 6740, - [SMALL_STATE(1166)] = 6801, - [SMALL_STATE(1167)] = 6862, - [SMALL_STATE(1168)] = 6923, - [SMALL_STATE(1169)] = 6984, - [SMALL_STATE(1170)] = 7045, - [SMALL_STATE(1171)] = 7106, - [SMALL_STATE(1172)] = 7167, - [SMALL_STATE(1173)] = 7228, - [SMALL_STATE(1174)] = 7289, - [SMALL_STATE(1175)] = 7350, - [SMALL_STATE(1176)] = 7411, - [SMALL_STATE(1177)] = 7472, - [SMALL_STATE(1178)] = 7533, - [SMALL_STATE(1179)] = 7594, - [SMALL_STATE(1180)] = 7655, - [SMALL_STATE(1181)] = 7716, - [SMALL_STATE(1182)] = 7779, - [SMALL_STATE(1183)] = 7840, - [SMALL_STATE(1184)] = 7901, - [SMALL_STATE(1185)] = 7962, - [SMALL_STATE(1186)] = 8023, - [SMALL_STATE(1187)] = 8084, - [SMALL_STATE(1188)] = 8145, - [SMALL_STATE(1189)] = 8206, - [SMALL_STATE(1190)] = 8267, - [SMALL_STATE(1191)] = 8328, - [SMALL_STATE(1192)] = 8389, - [SMALL_STATE(1193)] = 8450, - [SMALL_STATE(1194)] = 8511, - [SMALL_STATE(1195)] = 8572, - [SMALL_STATE(1196)] = 8633, - [SMALL_STATE(1197)] = 8694, - [SMALL_STATE(1198)] = 8755, - [SMALL_STATE(1199)] = 8816, - [SMALL_STATE(1200)] = 8877, - [SMALL_STATE(1201)] = 8938, - [SMALL_STATE(1202)] = 8999, - [SMALL_STATE(1203)] = 9060, - [SMALL_STATE(1204)] = 9121, - [SMALL_STATE(1205)] = 9182, - [SMALL_STATE(1206)] = 9243, - [SMALL_STATE(1207)] = 9304, - [SMALL_STATE(1208)] = 9365, - [SMALL_STATE(1209)] = 9426, - [SMALL_STATE(1210)] = 9487, - [SMALL_STATE(1211)] = 9548, - [SMALL_STATE(1212)] = 9609, - [SMALL_STATE(1213)] = 9712, - [SMALL_STATE(1214)] = 9775, - [SMALL_STATE(1215)] = 9836, - [SMALL_STATE(1216)] = 9897, - [SMALL_STATE(1217)] = 9958, - [SMALL_STATE(1218)] = 10019, - [SMALL_STATE(1219)] = 10080, - [SMALL_STATE(1220)] = 10141, - [SMALL_STATE(1221)] = 10202, - [SMALL_STATE(1222)] = 10263, - [SMALL_STATE(1223)] = 10324, - [SMALL_STATE(1224)] = 10385, - [SMALL_STATE(1225)] = 10446, - [SMALL_STATE(1226)] = 10507, - [SMALL_STATE(1227)] = 10568, - [SMALL_STATE(1228)] = 10629, - [SMALL_STATE(1229)] = 10690, - [SMALL_STATE(1230)] = 10751, - [SMALL_STATE(1231)] = 10812, - [SMALL_STATE(1232)] = 10873, - [SMALL_STATE(1233)] = 10934, - [SMALL_STATE(1234)] = 10995, - [SMALL_STATE(1235)] = 11056, - [SMALL_STATE(1236)] = 11117, - [SMALL_STATE(1237)] = 11178, - [SMALL_STATE(1238)] = 11281, - [SMALL_STATE(1239)] = 11342, - [SMALL_STATE(1240)] = 11403, - [SMALL_STATE(1241)] = 11464, - [SMALL_STATE(1242)] = 11525, - [SMALL_STATE(1243)] = 11586, - [SMALL_STATE(1244)] = 11647, - [SMALL_STATE(1245)] = 11708, - [SMALL_STATE(1246)] = 11769, - [SMALL_STATE(1247)] = 11830, - [SMALL_STATE(1248)] = 11891, - [SMALL_STATE(1249)] = 11952, - [SMALL_STATE(1250)] = 12013, - [SMALL_STATE(1251)] = 12074, - [SMALL_STATE(1252)] = 12139, - [SMALL_STATE(1253)] = 12200, - [SMALL_STATE(1254)] = 12261, - [SMALL_STATE(1255)] = 12322, - [SMALL_STATE(1256)] = 12383, - [SMALL_STATE(1257)] = 12444, - [SMALL_STATE(1258)] = 12537, - [SMALL_STATE(1259)] = 12598, - [SMALL_STATE(1260)] = 12659, - [SMALL_STATE(1261)] = 12720, - [SMALL_STATE(1262)] = 12781, - [SMALL_STATE(1263)] = 12844, - [SMALL_STATE(1264)] = 12905, - [SMALL_STATE(1265)] = 12968, - [SMALL_STATE(1266)] = 13031, - [SMALL_STATE(1267)] = 13092, - [SMALL_STATE(1268)] = 13157, - [SMALL_STATE(1269)] = 13218, - [SMALL_STATE(1270)] = 13279, - [SMALL_STATE(1271)] = 13340, - [SMALL_STATE(1272)] = 13401, - [SMALL_STATE(1273)] = 13462, - [SMALL_STATE(1274)] = 13523, - [SMALL_STATE(1275)] = 13584, - [SMALL_STATE(1276)] = 13645, - [SMALL_STATE(1277)] = 13706, - [SMALL_STATE(1278)] = 13767, - [SMALL_STATE(1279)] = 13828, - [SMALL_STATE(1280)] = 13889, - [SMALL_STATE(1281)] = 13950, - [SMALL_STATE(1282)] = 14011, - [SMALL_STATE(1283)] = 14104, - [SMALL_STATE(1284)] = 14179, - [SMALL_STATE(1285)] = 14240, - [SMALL_STATE(1286)] = 14343, - [SMALL_STATE(1287)] = 14404, - [SMALL_STATE(1288)] = 14497, - [SMALL_STATE(1289)] = 14558, - [SMALL_STATE(1290)] = 14619, - [SMALL_STATE(1291)] = 14680, - [SMALL_STATE(1292)] = 14741, - [SMALL_STATE(1293)] = 14802, - [SMALL_STATE(1294)] = 14863, - [SMALL_STATE(1295)] = 14926, - [SMALL_STATE(1296)] = 14987, - [SMALL_STATE(1297)] = 15050, - [SMALL_STATE(1298)] = 15111, - [SMALL_STATE(1299)] = 15172, - [SMALL_STATE(1300)] = 15235, - [SMALL_STATE(1301)] = 15296, - [SMALL_STATE(1302)] = 15359, - [SMALL_STATE(1303)] = 15420, - [SMALL_STATE(1304)] = 15483, - [SMALL_STATE(1305)] = 15544, - [SMALL_STATE(1306)] = 15605, - [SMALL_STATE(1307)] = 15666, - [SMALL_STATE(1308)] = 15731, - [SMALL_STATE(1309)] = 15792, - [SMALL_STATE(1310)] = 15853, - [SMALL_STATE(1311)] = 15914, - [SMALL_STATE(1312)] = 15975, - [SMALL_STATE(1313)] = 16036, - [SMALL_STATE(1314)] = 16097, - [SMALL_STATE(1315)] = 16158, - [SMALL_STATE(1316)] = 16219, - [SMALL_STATE(1317)] = 16280, - [SMALL_STATE(1318)] = 16341, - [SMALL_STATE(1319)] = 16402, - [SMALL_STATE(1320)] = 16463, - [SMALL_STATE(1321)] = 16524, - [SMALL_STATE(1322)] = 16585, - [SMALL_STATE(1323)] = 16646, - [SMALL_STATE(1324)] = 16707, - [SMALL_STATE(1325)] = 16768, - [SMALL_STATE(1326)] = 16829, - [SMALL_STATE(1327)] = 16890, - [SMALL_STATE(1328)] = 16951, - [SMALL_STATE(1329)] = 17012, - [SMALL_STATE(1330)] = 17073, - [SMALL_STATE(1331)] = 17134, - [SMALL_STATE(1332)] = 17195, - [SMALL_STATE(1333)] = 17256, - [SMALL_STATE(1334)] = 17319, - [SMALL_STATE(1335)] = 17380, - [SMALL_STATE(1336)] = 17443, - [SMALL_STATE(1337)] = 17506, - [SMALL_STATE(1338)] = 17567, - [SMALL_STATE(1339)] = 17628, - [SMALL_STATE(1340)] = 17689, - [SMALL_STATE(1341)] = 17750, - [SMALL_STATE(1342)] = 17811, - [SMALL_STATE(1343)] = 17872, - [SMALL_STATE(1344)] = 17933, - [SMALL_STATE(1345)] = 17994, - [SMALL_STATE(1346)] = 18055, - [SMALL_STATE(1347)] = 18116, - [SMALL_STATE(1348)] = 18177, - [SMALL_STATE(1349)] = 18238, - [SMALL_STATE(1350)] = 18299, - [SMALL_STATE(1351)] = 18360, - [SMALL_STATE(1352)] = 18421, - [SMALL_STATE(1353)] = 18482, - [SMALL_STATE(1354)] = 18543, - [SMALL_STATE(1355)] = 18604, - [SMALL_STATE(1356)] = 18665, - [SMALL_STATE(1357)] = 18726, - [SMALL_STATE(1358)] = 18787, - [SMALL_STATE(1359)] = 18848, - [SMALL_STATE(1360)] = 18909, - [SMALL_STATE(1361)] = 18970, - [SMALL_STATE(1362)] = 19031, - [SMALL_STATE(1363)] = 19092, - [SMALL_STATE(1364)] = 19153, - [SMALL_STATE(1365)] = 19214, - [SMALL_STATE(1366)] = 19275, - [SMALL_STATE(1367)] = 19336, - [SMALL_STATE(1368)] = 19397, - [SMALL_STATE(1369)] = 19458, - [SMALL_STATE(1370)] = 19519, - [SMALL_STATE(1371)] = 19580, - [SMALL_STATE(1372)] = 19641, - [SMALL_STATE(1373)] = 19702, - [SMALL_STATE(1374)] = 19763, - [SMALL_STATE(1375)] = 19824, - [SMALL_STATE(1376)] = 19885, - [SMALL_STATE(1377)] = 19946, - [SMALL_STATE(1378)] = 20007, - [SMALL_STATE(1379)] = 20068, - [SMALL_STATE(1380)] = 20129, - [SMALL_STATE(1381)] = 20190, - [SMALL_STATE(1382)] = 20251, - [SMALL_STATE(1383)] = 20312, - [SMALL_STATE(1384)] = 20373, - [SMALL_STATE(1385)] = 20434, - [SMALL_STATE(1386)] = 20495, - [SMALL_STATE(1387)] = 20556, - [SMALL_STATE(1388)] = 20617, - [SMALL_STATE(1389)] = 20678, - [SMALL_STATE(1390)] = 20739, - [SMALL_STATE(1391)] = 20800, - [SMALL_STATE(1392)] = 20861, - [SMALL_STATE(1393)] = 20924, - [SMALL_STATE(1394)] = 20985, - [SMALL_STATE(1395)] = 21046, - [SMALL_STATE(1396)] = 21107, - [SMALL_STATE(1397)] = 21168, - [SMALL_STATE(1398)] = 21229, - [SMALL_STATE(1399)] = 21290, - [SMALL_STATE(1400)] = 21351, - [SMALL_STATE(1401)] = 21412, - [SMALL_STATE(1402)] = 21473, - [SMALL_STATE(1403)] = 21534, - [SMALL_STATE(1404)] = 21595, - [SMALL_STATE(1405)] = 21656, - [SMALL_STATE(1406)] = 21717, - [SMALL_STATE(1407)] = 21778, - [SMALL_STATE(1408)] = 21839, - [SMALL_STATE(1409)] = 21900, - [SMALL_STATE(1410)] = 21961, - [SMALL_STATE(1411)] = 22022, - [SMALL_STATE(1412)] = 22083, - [SMALL_STATE(1413)] = 22144, - [SMALL_STATE(1414)] = 22205, - [SMALL_STATE(1415)] = 22266, - [SMALL_STATE(1416)] = 22327, - [SMALL_STATE(1417)] = 22388, - [SMALL_STATE(1418)] = 22449, - [SMALL_STATE(1419)] = 22510, - [SMALL_STATE(1420)] = 22571, - [SMALL_STATE(1421)] = 22632, - [SMALL_STATE(1422)] = 22693, - [SMALL_STATE(1423)] = 22754, - [SMALL_STATE(1424)] = 22815, - [SMALL_STATE(1425)] = 22876, - [SMALL_STATE(1426)] = 22937, - [SMALL_STATE(1427)] = 22998, - [SMALL_STATE(1428)] = 23059, - [SMALL_STATE(1429)] = 23162, - [SMALL_STATE(1430)] = 23223, - [SMALL_STATE(1431)] = 23284, - [SMALL_STATE(1432)] = 23345, - [SMALL_STATE(1433)] = 23406, - [SMALL_STATE(1434)] = 23502, - [SMALL_STATE(1435)] = 23562, - [SMALL_STATE(1436)] = 23622, - [SMALL_STATE(1437)] = 23682, - [SMALL_STATE(1438)] = 23742, - [SMALL_STATE(1439)] = 23802, - [SMALL_STATE(1440)] = 23862, - [SMALL_STATE(1441)] = 23922, - [SMALL_STATE(1442)] = 23982, - [SMALL_STATE(1443)] = 24042, - [SMALL_STATE(1444)] = 24102, - [SMALL_STATE(1445)] = 24162, - [SMALL_STATE(1446)] = 24226, - [SMALL_STATE(1447)] = 24286, - [SMALL_STATE(1448)] = 24346, - [SMALL_STATE(1449)] = 24406, - [SMALL_STATE(1450)] = 24472, - [SMALL_STATE(1451)] = 24532, - [SMALL_STATE(1452)] = 24592, - [SMALL_STATE(1453)] = 24652, - [SMALL_STATE(1454)] = 24712, - [SMALL_STATE(1455)] = 24772, - [SMALL_STATE(1456)] = 24840, - [SMALL_STATE(1457)] = 24900, - [SMALL_STATE(1458)] = 24960, - [SMALL_STATE(1459)] = 25020, - [SMALL_STATE(1460)] = 25080, - [SMALL_STATE(1461)] = 25140, - [SMALL_STATE(1462)] = 25200, - [SMALL_STATE(1463)] = 25260, - [SMALL_STATE(1464)] = 25320, - [SMALL_STATE(1465)] = 25380, - [SMALL_STATE(1466)] = 25440, - [SMALL_STATE(1467)] = 25500, - [SMALL_STATE(1468)] = 25566, - [SMALL_STATE(1469)] = 25626, - [SMALL_STATE(1470)] = 25686, - [SMALL_STATE(1471)] = 25746, - [SMALL_STATE(1472)] = 25806, - [SMALL_STATE(1473)] = 25866, - [SMALL_STATE(1474)] = 25926, - [SMALL_STATE(1475)] = 25986, - [SMALL_STATE(1476)] = 26046, - [SMALL_STATE(1477)] = 26106, - [SMALL_STATE(1478)] = 26172, - [SMALL_STATE(1479)] = 26232, - [SMALL_STATE(1480)] = 26292, - [SMALL_STATE(1481)] = 26352, - [SMALL_STATE(1482)] = 26412, - [SMALL_STATE(1483)] = 26472, - [SMALL_STATE(1484)] = 26532, - [SMALL_STATE(1485)] = 26592, - [SMALL_STATE(1486)] = 26652, - [SMALL_STATE(1487)] = 26712, - [SMALL_STATE(1488)] = 26786, - [SMALL_STATE(1489)] = 26846, - [SMALL_STATE(1490)] = 26906, - [SMALL_STATE(1491)] = 26966, - [SMALL_STATE(1492)] = 27026, - [SMALL_STATE(1493)] = 27086, - [SMALL_STATE(1494)] = 27146, - [SMALL_STATE(1495)] = 27206, - [SMALL_STATE(1496)] = 27266, - [SMALL_STATE(1497)] = 27326, - [SMALL_STATE(1498)] = 27386, - [SMALL_STATE(1499)] = 27448, - [SMALL_STATE(1500)] = 27508, - [SMALL_STATE(1501)] = 27568, - [SMALL_STATE(1502)] = 27632, - [SMALL_STATE(1503)] = 27698, - [SMALL_STATE(1504)] = 27758, - [SMALL_STATE(1505)] = 27818, - [SMALL_STATE(1506)] = 27878, - [SMALL_STATE(1507)] = 27938, - [SMALL_STATE(1508)] = 27998, - [SMALL_STATE(1509)] = 28058, - [SMALL_STATE(1510)] = 28118, - [SMALL_STATE(1511)] = 28178, - [SMALL_STATE(1512)] = 28238, - [SMALL_STATE(1513)] = 28298, - [SMALL_STATE(1514)] = 28358, - [SMALL_STATE(1515)] = 28418, - [SMALL_STATE(1516)] = 28478, - [SMALL_STATE(1517)] = 28540, - [SMALL_STATE(1518)] = 28600, - [SMALL_STATE(1519)] = 28660, - [SMALL_STATE(1520)] = 28720, - [SMALL_STATE(1521)] = 28780, - [SMALL_STATE(1522)] = 28840, - [SMALL_STATE(1523)] = 28900, - [SMALL_STATE(1524)] = 28960, - [SMALL_STATE(1525)] = 29020, - [SMALL_STATE(1526)] = 29080, - [SMALL_STATE(1527)] = 29140, - [SMALL_STATE(1528)] = 29200, - [SMALL_STATE(1529)] = 29260, - [SMALL_STATE(1530)] = 29320, - [SMALL_STATE(1531)] = 29380, - [SMALL_STATE(1532)] = 29440, - [SMALL_STATE(1533)] = 29500, - [SMALL_STATE(1534)] = 29560, - [SMALL_STATE(1535)] = 29620, - [SMALL_STATE(1536)] = 29680, - [SMALL_STATE(1537)] = 29740, - [SMALL_STATE(1538)] = 29800, - [SMALL_STATE(1539)] = 29860, - [SMALL_STATE(1540)] = 29920, - [SMALL_STATE(1541)] = 29980, - [SMALL_STATE(1542)] = 30040, - [SMALL_STATE(1543)] = 30100, - [SMALL_STATE(1544)] = 30160, - [SMALL_STATE(1545)] = 30220, - [SMALL_STATE(1546)] = 30280, - [SMALL_STATE(1547)] = 30340, - [SMALL_STATE(1548)] = 30400, - [SMALL_STATE(1549)] = 30460, - [SMALL_STATE(1550)] = 30520, - [SMALL_STATE(1551)] = 30580, - [SMALL_STATE(1552)] = 30640, - [SMALL_STATE(1553)] = 30700, - [SMALL_STATE(1554)] = 30760, - [SMALL_STATE(1555)] = 30820, - [SMALL_STATE(1556)] = 30880, - [SMALL_STATE(1557)] = 30941, - [SMALL_STATE(1558)] = 31002, - [SMALL_STATE(1559)] = 31073, - [SMALL_STATE(1560)] = 31142, - [SMALL_STATE(1561)] = 31232, - [SMALL_STATE(1562)] = 31322, - [SMALL_STATE(1563)] = 31408, - [SMALL_STATE(1564)] = 31500, - [SMALL_STATE(1565)] = 31586, - [SMALL_STATE(1566)] = 31672, - [SMALL_STATE(1567)] = 31732, - [SMALL_STATE(1568)] = 31824, - [SMALL_STATE(1569)] = 31882, - [SMALL_STATE(1570)] = 31948, - [SMALL_STATE(1571)] = 32006, - [SMALL_STATE(1572)] = 32064, - [SMALL_STATE(1573)] = 32150, - [SMALL_STATE(1574)] = 32236, - [SMALL_STATE(1575)] = 32322, - [SMALL_STATE(1576)] = 32382, - [SMALL_STATE(1577)] = 32452, - [SMALL_STATE(1578)] = 32544, - [SMALL_STATE(1579)] = 32634, - [SMALL_STATE(1580)] = 32704, - [SMALL_STATE(1581)] = 32774, - [SMALL_STATE(1582)] = 32860, - [SMALL_STATE(1583)] = 32950, - [SMALL_STATE(1584)] = 33018, - [SMALL_STATE(1585)] = 33092, - [SMALL_STATE(1586)] = 33164, - [SMALL_STATE(1587)] = 33240, - [SMALL_STATE(1588)] = 33322, - [SMALL_STATE(1589)] = 33406, - [SMALL_STATE(1590)] = 33476, - [SMALL_STATE(1591)] = 33566, - [SMALL_STATE(1592)] = 33656, - [SMALL_STATE(1593)] = 33734, - [SMALL_STATE(1594)] = 33820, - [SMALL_STATE(1595)] = 33912, - [SMALL_STATE(1596)] = 33975, - [SMALL_STATE(1597)] = 34038, - [SMALL_STATE(1598)] = 34103, - [SMALL_STATE(1599)] = 34170, - [SMALL_STATE(1600)] = 34228, - [SMALL_STATE(1601)] = 34288, - [SMALL_STATE(1602)] = 34348, - [SMALL_STATE(1603)] = 34408, - [SMALL_STATE(1604)] = 34464, - [SMALL_STATE(1605)] = 34524, - [SMALL_STATE(1606)] = 34584, - [SMALL_STATE(1607)] = 34640, - [SMALL_STATE(1608)] = 34700, - [SMALL_STATE(1609)] = 34756, - [SMALL_STATE(1610)] = 34820, - [SMALL_STATE(1611)] = 34876, - [SMALL_STATE(1612)] = 34940, - [SMALL_STATE(1613)] = 34998, - [SMALL_STATE(1614)] = 35056, - [SMALL_STATE(1615)] = 35120, - [SMALL_STATE(1616)] = 35184, - [SMALL_STATE(1617)] = 35242, - [SMALL_STATE(1618)] = 35302, - [SMALL_STATE(1619)] = 35359, - [SMALL_STATE(1620)] = 35454, - [SMALL_STATE(1621)] = 35511, - [SMALL_STATE(1622)] = 35566, - [SMALL_STATE(1623)] = 35625, - [SMALL_STATE(1624)] = 35680, - [SMALL_STATE(1625)] = 35735, - [SMALL_STATE(1626)] = 35824, - [SMALL_STATE(1627)] = 35879, - [SMALL_STATE(1628)] = 35936, - [SMALL_STATE(1629)] = 35991, - [SMALL_STATE(1630)] = 36046, - [SMALL_STATE(1631)] = 36101, - [SMALL_STATE(1632)] = 36156, - [SMALL_STATE(1633)] = 36245, - [SMALL_STATE(1634)] = 36304, - [SMALL_STATE(1635)] = 36363, - [SMALL_STATE(1636)] = 36420, - [SMALL_STATE(1637)] = 36515, - [SMALL_STATE(1638)] = 36610, - [SMALL_STATE(1639)] = 36667, - [SMALL_STATE(1640)] = 36762, - [SMALL_STATE(1641)] = 36857, - [SMALL_STATE(1642)] = 36952, - [SMALL_STATE(1643)] = 37047, - [SMALL_STATE(1644)] = 37142, - [SMALL_STATE(1645)] = 37237, - [SMALL_STATE(1646)] = 37294, - [SMALL_STATE(1647)] = 37351, - [SMALL_STATE(1648)] = 37440, - [SMALL_STATE(1649)] = 37535, - [SMALL_STATE(1650)] = 37630, - [SMALL_STATE(1651)] = 37725, - [SMALL_STATE(1652)] = 37784, - [SMALL_STATE(1653)] = 37873, - [SMALL_STATE(1654)] = 37927, - [SMALL_STATE(1655)] = 37981, - [SMALL_STATE(1656)] = 38067, - [SMALL_STATE(1657)] = 38123, - [SMALL_STATE(1658)] = 38197, - [SMALL_STATE(1659)] = 38253, - [SMALL_STATE(1660)] = 38307, - [SMALL_STATE(1661)] = 38361, - [SMALL_STATE(1662)] = 38415, - [SMALL_STATE(1663)] = 38469, - [SMALL_STATE(1664)] = 38523, - [SMALL_STATE(1665)] = 38577, - [SMALL_STATE(1666)] = 38633, - [SMALL_STATE(1667)] = 38701, - [SMALL_STATE(1668)] = 38755, - [SMALL_STATE(1669)] = 38811, - [SMALL_STATE(1670)] = 38865, - [SMALL_STATE(1671)] = 38919, - [SMALL_STATE(1672)] = 38973, - [SMALL_STATE(1673)] = 39027, - [SMALL_STATE(1674)] = 39115, - [SMALL_STATE(1675)] = 39169, - [SMALL_STATE(1676)] = 39251, - [SMALL_STATE(1677)] = 39323, - [SMALL_STATE(1678)] = 39379, - [SMALL_STATE(1679)] = 39457, - [SMALL_STATE(1680)] = 39539, - [SMALL_STATE(1681)] = 39625, - [SMALL_STATE(1682)] = 39681, - [SMALL_STATE(1683)] = 39767, - [SMALL_STATE(1684)] = 39823, - [SMALL_STATE(1685)] = 39915, - [SMALL_STATE(1686)] = 39995, - [SMALL_STATE(1687)] = 40083, - [SMALL_STATE(1688)] = 40175, - [SMALL_STATE(1689)] = 40231, - [SMALL_STATE(1690)] = 40323, - [SMALL_STATE(1691)] = 40379, - [SMALL_STATE(1692)] = 40445, - [SMALL_STATE(1693)] = 40501, - [SMALL_STATE(1694)] = 40557, - [SMALL_STATE(1695)] = 40643, - [SMALL_STATE(1696)] = 40707, - [SMALL_STATE(1697)] = 40777, - [SMALL_STATE(1698)] = 40857, - [SMALL_STATE(1699)] = 40911, - [SMALL_STATE(1700)] = 40965, - [SMALL_STATE(1701)] = 41057, - [SMALL_STATE(1702)] = 41145, - [SMALL_STATE(1703)] = 41201, - [SMALL_STATE(1704)] = 41293, - [SMALL_STATE(1705)] = 41349, - [SMALL_STATE(1706)] = 41437, - [SMALL_STATE(1707)] = 41495, - [SMALL_STATE(1708)] = 41587, - [SMALL_STATE(1709)] = 41643, - [SMALL_STATE(1710)] = 41731, - [SMALL_STATE(1711)] = 41819, - [SMALL_STATE(1712)] = 41905, - [SMALL_STATE(1713)] = 41961, - [SMALL_STATE(1714)] = 42017, - [SMALL_STATE(1715)] = 42103, - [SMALL_STATE(1716)] = 42170, - [SMALL_STATE(1717)] = 42259, - [SMALL_STATE(1718)] = 42348, - [SMALL_STATE(1719)] = 42401, - [SMALL_STATE(1720)] = 42454, - [SMALL_STATE(1721)] = 42507, - [SMALL_STATE(1722)] = 42560, - [SMALL_STATE(1723)] = 42613, - [SMALL_STATE(1724)] = 42702, - [SMALL_STATE(1725)] = 42755, - [SMALL_STATE(1726)] = 42808, - [SMALL_STATE(1727)] = 42861, - [SMALL_STATE(1728)] = 42950, - [SMALL_STATE(1729)] = 43003, - [SMALL_STATE(1730)] = 43056, - [SMALL_STATE(1731)] = 43109, - [SMALL_STATE(1732)] = 43168, - [SMALL_STATE(1733)] = 43221, - [SMALL_STATE(1734)] = 43274, - [SMALL_STATE(1735)] = 43333, - [SMALL_STATE(1736)] = 43386, - [SMALL_STATE(1737)] = 43439, - [SMALL_STATE(1738)] = 43492, - [SMALL_STATE(1739)] = 43545, - [SMALL_STATE(1740)] = 43630, - [SMALL_STATE(1741)] = 43683, - [SMALL_STATE(1742)] = 43772, - [SMALL_STATE(1743)] = 43859, - [SMALL_STATE(1744)] = 43940, - [SMALL_STATE(1745)] = 43993, - [SMALL_STATE(1746)] = 44046, - [SMALL_STATE(1747)] = 44131, - [SMALL_STATE(1748)] = 44184, - [SMALL_STATE(1749)] = 44269, - [SMALL_STATE(1750)] = 44354, - [SMALL_STATE(1751)] = 44441, - [SMALL_STATE(1752)] = 44494, - [SMALL_STATE(1753)] = 44547, - [SMALL_STATE(1754)] = 44600, - [SMALL_STATE(1755)] = 44653, - [SMALL_STATE(1756)] = 44706, - [SMALL_STATE(1757)] = 44759, - [SMALL_STATE(1758)] = 44812, - [SMALL_STATE(1759)] = 44865, - [SMALL_STATE(1760)] = 44918, - [SMALL_STATE(1761)] = 44971, - [SMALL_STATE(1762)] = 45024, - [SMALL_STATE(1763)] = 45077, - [SMALL_STATE(1764)] = 45130, - [SMALL_STATE(1765)] = 45207, - [SMALL_STATE(1766)] = 45266, - [SMALL_STATE(1767)] = 45353, - [SMALL_STATE(1768)] = 45438, - [SMALL_STATE(1769)] = 45525, - [SMALL_STATE(1770)] = 45612, - [SMALL_STATE(1771)] = 45675, - [SMALL_STATE(1772)] = 45744, - [SMALL_STATE(1773)] = 45811, - [SMALL_STATE(1774)] = 45882, - [SMALL_STATE(1775)] = 45959, - [SMALL_STATE(1776)] = 46038, - [SMALL_STATE(1777)] = 46103, - [SMALL_STATE(1778)] = 46188, - [SMALL_STATE(1779)] = 46273, - [SMALL_STATE(1780)] = 46346, - [SMALL_STATE(1781)] = 46427, - [SMALL_STATE(1782)] = 46512, - [SMALL_STATE(1783)] = 46565, - [SMALL_STATE(1784)] = 46618, - [SMALL_STATE(1785)] = 46671, - [SMALL_STATE(1786)] = 46724, - [SMALL_STATE(1787)] = 46777, - [SMALL_STATE(1788)] = 46830, - [SMALL_STATE(1789)] = 46917, - [SMALL_STATE(1790)] = 47006, - [SMALL_STATE(1791)] = 47059, - [SMALL_STATE(1792)] = 47112, - [SMALL_STATE(1793)] = 47165, - [SMALL_STATE(1794)] = 47254, - [SMALL_STATE(1795)] = 47307, - [SMALL_STATE(1796)] = 47360, - [SMALL_STATE(1797)] = 47413, - [SMALL_STATE(1798)] = 47466, - [SMALL_STATE(1799)] = 47553, - [SMALL_STATE(1800)] = 47606, - [SMALL_STATE(1801)] = 47659, - [SMALL_STATE(1802)] = 47712, - [SMALL_STATE(1803)] = 47765, - [SMALL_STATE(1804)] = 47818, - [SMALL_STATE(1805)] = 47871, - [SMALL_STATE(1806)] = 47924, - [SMALL_STATE(1807)] = 47977, - [SMALL_STATE(1808)] = 48030, - [SMALL_STATE(1809)] = 48083, - [SMALL_STATE(1810)] = 48136, - [SMALL_STATE(1811)] = 48189, - [SMALL_STATE(1812)] = 48242, - [SMALL_STATE(1813)] = 48295, - [SMALL_STATE(1814)] = 48348, - [SMALL_STATE(1815)] = 48401, - [SMALL_STATE(1816)] = 48454, - [SMALL_STATE(1817)] = 48543, - [SMALL_STATE(1818)] = 48630, - [SMALL_STATE(1819)] = 48683, - [SMALL_STATE(1820)] = 48736, - [SMALL_STATE(1821)] = 48823, - [SMALL_STATE(1822)] = 48908, - [SMALL_STATE(1823)] = 48961, - [SMALL_STATE(1824)] = 49014, - [SMALL_STATE(1825)] = 49067, - [SMALL_STATE(1826)] = 49156, - [SMALL_STATE(1827)] = 49209, - [SMALL_STATE(1828)] = 49272, - [SMALL_STATE(1829)] = 49341, - [SMALL_STATE(1830)] = 49412, - [SMALL_STATE(1831)] = 49489, - [SMALL_STATE(1832)] = 49568, - [SMALL_STATE(1833)] = 49633, - [SMALL_STATE(1834)] = 49718, - [SMALL_STATE(1835)] = 49803, - [SMALL_STATE(1836)] = 49876, - [SMALL_STATE(1837)] = 49957, - [SMALL_STATE(1838)] = 50010, - [SMALL_STATE(1839)] = 50063, - [SMALL_STATE(1840)] = 50150, - [SMALL_STATE(1841)] = 50203, - [SMALL_STATE(1842)] = 50256, - [SMALL_STATE(1843)] = 50309, - [SMALL_STATE(1844)] = 50362, - [SMALL_STATE(1845)] = 50415, - [SMALL_STATE(1846)] = 50468, - [SMALL_STATE(1847)] = 50521, - [SMALL_STATE(1848)] = 50574, - [SMALL_STATE(1849)] = 50661, - [SMALL_STATE(1850)] = 50714, - [SMALL_STATE(1851)] = 50767, - [SMALL_STATE(1852)] = 50820, - [SMALL_STATE(1853)] = 50873, - [SMALL_STATE(1854)] = 50926, - [SMALL_STATE(1855)] = 50979, - [SMALL_STATE(1856)] = 51032, - [SMALL_STATE(1857)] = 51119, - [SMALL_STATE(1858)] = 51172, - [SMALL_STATE(1859)] = 51259, - [SMALL_STATE(1860)] = 51312, - [SMALL_STATE(1861)] = 51365, - [SMALL_STATE(1862)] = 51418, - [SMALL_STATE(1863)] = 51505, - [SMALL_STATE(1864)] = 51592, - [SMALL_STATE(1865)] = 51653, - [SMALL_STATE(1866)] = 51706, - [SMALL_STATE(1867)] = 51759, - [SMALL_STATE(1868)] = 51848, - [SMALL_STATE(1869)] = 51937, - [SMALL_STATE(1870)] = 52026, - [SMALL_STATE(1871)] = 52079, - [SMALL_STATE(1872)] = 52168, - [SMALL_STATE(1873)] = 52221, - [SMALL_STATE(1874)] = 52310, - [SMALL_STATE(1875)] = 52397, - [SMALL_STATE(1876)] = 52450, - [SMALL_STATE(1877)] = 52539, - [SMALL_STATE(1878)] = 52592, - [SMALL_STATE(1879)] = 52645, - [SMALL_STATE(1880)] = 52704, - [SMALL_STATE(1881)] = 52793, - [SMALL_STATE(1882)] = 52882, - [SMALL_STATE(1883)] = 52971, - [SMALL_STATE(1884)] = 53060, - [SMALL_STATE(1885)] = 53149, - [SMALL_STATE(1886)] = 53238, - [SMALL_STATE(1887)] = 53327, - [SMALL_STATE(1888)] = 53416, - [SMALL_STATE(1889)] = 53505, - [SMALL_STATE(1890)] = 53594, - [SMALL_STATE(1891)] = 53683, - [SMALL_STATE(1892)] = 53764, - [SMALL_STATE(1893)] = 53849, - [SMALL_STATE(1894)] = 53938, - [SMALL_STATE(1895)] = 54023, - [SMALL_STATE(1896)] = 54108, - [SMALL_STATE(1897)] = 54197, - [SMALL_STATE(1898)] = 54286, - [SMALL_STATE(1899)] = 54375, - [SMALL_STATE(1900)] = 54464, - [SMALL_STATE(1901)] = 54553, - [SMALL_STATE(1902)] = 54642, - [SMALL_STATE(1903)] = 54731, - [SMALL_STATE(1904)] = 54820, - [SMALL_STATE(1905)] = 54909, - [SMALL_STATE(1906)] = 54998, - [SMALL_STATE(1907)] = 55087, - [SMALL_STATE(1908)] = 55174, - [SMALL_STATE(1909)] = 55263, - [SMALL_STATE(1910)] = 55352, - [SMALL_STATE(1911)] = 55441, - [SMALL_STATE(1912)] = 55530, - [SMALL_STATE(1913)] = 55617, - [SMALL_STATE(1914)] = 55704, - [SMALL_STATE(1915)] = 55793, - [SMALL_STATE(1916)] = 55882, - [SMALL_STATE(1917)] = 55971, - [SMALL_STATE(1918)] = 56060, - [SMALL_STATE(1919)] = 56149, - [SMALL_STATE(1920)] = 56238, - [SMALL_STATE(1921)] = 56291, - [SMALL_STATE(1922)] = 56344, - [SMALL_STATE(1923)] = 56397, - [SMALL_STATE(1924)] = 56450, - [SMALL_STATE(1925)] = 56503, - [SMALL_STATE(1926)] = 56556, - [SMALL_STATE(1927)] = 56609, - [SMALL_STATE(1928)] = 56686, - [SMALL_STATE(1929)] = 56739, - [SMALL_STATE(1930)] = 56826, - [SMALL_STATE(1931)] = 56879, - [SMALL_STATE(1932)] = 56966, - [SMALL_STATE(1933)] = 57019, - [SMALL_STATE(1934)] = 57108, - [SMALL_STATE(1935)] = 57195, - [SMALL_STATE(1936)] = 57284, - [SMALL_STATE(1937)] = 57337, - [SMALL_STATE(1938)] = 57411, - [SMALL_STATE(1939)] = 57497, - [SMALL_STATE(1940)] = 57583, - [SMALL_STATE(1941)] = 57669, - [SMALL_STATE(1942)] = 57755, - [SMALL_STATE(1943)] = 57841, - [SMALL_STATE(1944)] = 57927, - [SMALL_STATE(1945)] = 58013, - [SMALL_STATE(1946)] = 58087, - [SMALL_STATE(1947)] = 58173, - [SMALL_STATE(1948)] = 58259, - [SMALL_STATE(1949)] = 58345, - [SMALL_STATE(1950)] = 58419, - [SMALL_STATE(1951)] = 58505, - [SMALL_STATE(1952)] = 58591, - [SMALL_STATE(1953)] = 58675, - [SMALL_STATE(1954)] = 58749, - [SMALL_STATE(1955)] = 58835, - [SMALL_STATE(1956)] = 58919, - [SMALL_STATE(1957)] = 59005, - [SMALL_STATE(1958)] = 59091, - [SMALL_STATE(1959)] = 59177, - [SMALL_STATE(1960)] = 59263, - [SMALL_STATE(1961)] = 59349, - [SMALL_STATE(1962)] = 59423, - [SMALL_STATE(1963)] = 59509, - [SMALL_STATE(1964)] = 59595, - [SMALL_STATE(1965)] = 59681, - [SMALL_STATE(1966)] = 59767, - [SMALL_STATE(1967)] = 59853, - [SMALL_STATE(1968)] = 59939, - [SMALL_STATE(1969)] = 60025, - [SMALL_STATE(1970)] = 60111, - [SMALL_STATE(1971)] = 60197, - [SMALL_STATE(1972)] = 60283, - [SMALL_STATE(1973)] = 60369, - [SMALL_STATE(1974)] = 60455, - [SMALL_STATE(1975)] = 60530, - [SMALL_STATE(1976)] = 60605, - [SMALL_STATE(1977)] = 60680, - [SMALL_STATE(1978)] = 60755, - [SMALL_STATE(1979)] = 60830, - [SMALL_STATE(1980)] = 60905, - [SMALL_STATE(1981)] = 60980, - [SMALL_STATE(1982)] = 61055, - [SMALL_STATE(1983)] = 61102, - [SMALL_STATE(1984)] = 61149, - [SMALL_STATE(1985)] = 61196, - [SMALL_STATE(1986)] = 61258, - [SMALL_STATE(1987)] = 61320, - [SMALL_STATE(1988)] = 61382, - [SMALL_STATE(1989)] = 61444, - [SMALL_STATE(1990)] = 61506, - [SMALL_STATE(1991)] = 61568, - [SMALL_STATE(1992)] = 61630, - [SMALL_STATE(1993)] = 61692, - [SMALL_STATE(1994)] = 61754, - [SMALL_STATE(1995)] = 61813, - [SMALL_STATE(1996)] = 61872, - [SMALL_STATE(1997)] = 61908, - [SMALL_STATE(1998)] = 61944, - [SMALL_STATE(1999)] = 61981, - [SMALL_STATE(2000)] = 62018, - [SMALL_STATE(2001)] = 62071, - [SMALL_STATE(2002)] = 62108, - [SMALL_STATE(2003)] = 62145, - [SMALL_STATE(2004)] = 62189, - [SMALL_STATE(2005)] = 62225, - [SMALL_STATE(2006)] = 62259, - [SMALL_STATE(2007)] = 62293, - [SMALL_STATE(2008)] = 62329, - [SMALL_STATE(2009)] = 62365, - [SMALL_STATE(2010)] = 62401, - [SMALL_STATE(2011)] = 62435, - [SMALL_STATE(2012)] = 62479, - [SMALL_STATE(2013)] = 62523, - [SMALL_STATE(2014)] = 62557, - [SMALL_STATE(2015)] = 62590, - [SMALL_STATE(2016)] = 62621, - [SMALL_STATE(2017)] = 62654, - [SMALL_STATE(2018)] = 62695, - [SMALL_STATE(2019)] = 62746, - [SMALL_STATE(2020)] = 62779, - [SMALL_STATE(2021)] = 62812, - [SMALL_STATE(2022)] = 62872, - [SMALL_STATE(2023)] = 62916, - [SMALL_STATE(2024)] = 62976, - [SMALL_STATE(2025)] = 63008, - [SMALL_STATE(2026)] = 63054, - [SMALL_STATE(2027)] = 63086, - [SMALL_STATE(2028)] = 63118, - [SMALL_STATE(2029)] = 63156, - [SMALL_STATE(2030)] = 63194, - [SMALL_STATE(2031)] = 63232, - [SMALL_STATE(2032)] = 63270, - [SMALL_STATE(2033)] = 63303, - [SMALL_STATE(2034)] = 63332, - [SMALL_STATE(2035)] = 63363, - [SMALL_STATE(2036)] = 63404, - [SMALL_STATE(2037)] = 63447, - [SMALL_STATE(2038)] = 63500, - [SMALL_STATE(2039)] = 63529, - [SMALL_STATE(2040)] = 63562, - [SMALL_STATE(2041)] = 63595, - [SMALL_STATE(2042)] = 63624, - [SMALL_STATE(2043)] = 63657, - [SMALL_STATE(2044)] = 63710, - [SMALL_STATE(2045)] = 63739, - [SMALL_STATE(2046)] = 63768, - [SMALL_STATE(2047)] = 63797, - [SMALL_STATE(2048)] = 63830, - [SMALL_STATE(2049)] = 63859, - [SMALL_STATE(2050)] = 63888, - [SMALL_STATE(2051)] = 63921, - [SMALL_STATE(2052)] = 63976, - [SMALL_STATE(2053)] = 64005, - [SMALL_STATE(2054)] = 64038, - [SMALL_STATE(2055)] = 64082, - [SMALL_STATE(2056)] = 64110, - [SMALL_STATE(2057)] = 64138, - [SMALL_STATE(2058)] = 64166, - [SMALL_STATE(2059)] = 64194, - [SMALL_STATE(2060)] = 64222, - [SMALL_STATE(2061)] = 64250, - [SMALL_STATE(2062)] = 64278, - [SMALL_STATE(2063)] = 64306, - [SMALL_STATE(2064)] = 64334, - [SMALL_STATE(2065)] = 64362, - [SMALL_STATE(2066)] = 64390, - [SMALL_STATE(2067)] = 64418, - [SMALL_STATE(2068)] = 64446, - [SMALL_STATE(2069)] = 64474, - [SMALL_STATE(2070)] = 64502, - [SMALL_STATE(2071)] = 64532, - [SMALL_STATE(2072)] = 64560, - [SMALL_STATE(2073)] = 64588, - [SMALL_STATE(2074)] = 64616, - [SMALL_STATE(2075)] = 64644, - [SMALL_STATE(2076)] = 64672, - [SMALL_STATE(2077)] = 64700, - [SMALL_STATE(2078)] = 64728, - [SMALL_STATE(2079)] = 64756, - [SMALL_STATE(2080)] = 64784, - [SMALL_STATE(2081)] = 64812, - [SMALL_STATE(2082)] = 64840, - [SMALL_STATE(2083)] = 64868, - [SMALL_STATE(2084)] = 64896, - [SMALL_STATE(2085)] = 64924, - [SMALL_STATE(2086)] = 64952, - [SMALL_STATE(2087)] = 64980, - [SMALL_STATE(2088)] = 65008, - [SMALL_STATE(2089)] = 65036, - [SMALL_STATE(2090)] = 65066, - [SMALL_STATE(2091)] = 65094, - [SMALL_STATE(2092)] = 65122, - [SMALL_STATE(2093)] = 65151, - [SMALL_STATE(2094)] = 65180, - [SMALL_STATE(2095)] = 65209, - [SMALL_STATE(2096)] = 65244, - [SMALL_STATE(2097)] = 65273, - [SMALL_STATE(2098)] = 65302, - [SMALL_STATE(2099)] = 65331, - [SMALL_STATE(2100)] = 65360, - [SMALL_STATE(2101)] = 65389, - [SMALL_STATE(2102)] = 65418, - [SMALL_STATE(2103)] = 65447, - [SMALL_STATE(2104)] = 65479, - [SMALL_STATE(2105)] = 65511, - [SMALL_STATE(2106)] = 65543, - [SMALL_STATE(2107)] = 65575, - [SMALL_STATE(2108)] = 65607, - [SMALL_STATE(2109)] = 65637, - [SMALL_STATE(2110)] = 65669, - [SMALL_STATE(2111)] = 65697, - [SMALL_STATE(2112)] = 65729, - [SMALL_STATE(2113)] = 65761, - [SMALL_STATE(2114)] = 65793, - [SMALL_STATE(2115)] = 65825, - [SMALL_STATE(2116)] = 65857, - [SMALL_STATE(2117)] = 65901, - [SMALL_STATE(2118)] = 65941, - [SMALL_STATE(2119)] = 65973, - [SMALL_STATE(2120)] = 66019, - [SMALL_STATE(2121)] = 66062, - [SMALL_STATE(2122)] = 66091, - [SMALL_STATE(2123)] = 66134, - [SMALL_STATE(2124)] = 66177, - [SMALL_STATE(2125)] = 66220, - [SMALL_STATE(2126)] = 66257, - [SMALL_STATE(2127)] = 66300, - [SMALL_STATE(2128)] = 66343, - [SMALL_STATE(2129)] = 66372, - [SMALL_STATE(2130)] = 66400, - [SMALL_STATE(2131)] = 66428, - [SMALL_STATE(2132)] = 66452, - [SMALL_STATE(2133)] = 66492, - [SMALL_STATE(2134)] = 66532, - [SMALL_STATE(2135)] = 66560, - [SMALL_STATE(2136)] = 66600, - [SMALL_STATE(2137)] = 66628, - [SMALL_STATE(2138)] = 66668, - [SMALL_STATE(2139)] = 66708, - [SMALL_STATE(2140)] = 66736, - [SMALL_STATE(2141)] = 66774, - [SMALL_STATE(2142)] = 66802, - [SMALL_STATE(2143)] = 66840, - [SMALL_STATE(2144)] = 66870, - [SMALL_STATE(2145)] = 66894, - [SMALL_STATE(2146)] = 66922, - [SMALL_STATE(2147)] = 66962, - [SMALL_STATE(2148)] = 66990, - [SMALL_STATE(2149)] = 67030, - [SMALL_STATE(2150)] = 67054, - [SMALL_STATE(2151)] = 67082, - [SMALL_STATE(2152)] = 67120, - [SMALL_STATE(2153)] = 67150, - [SMALL_STATE(2154)] = 67178, - [SMALL_STATE(2155)] = 67206, - [SMALL_STATE(2156)] = 67244, - [SMALL_STATE(2157)] = 67282, - [SMALL_STATE(2158)] = 67320, - [SMALL_STATE(2159)] = 67358, - [SMALL_STATE(2160)] = 67386, - [SMALL_STATE(2161)] = 67424, - [SMALL_STATE(2162)] = 67462, - [SMALL_STATE(2163)] = 67500, - [SMALL_STATE(2164)] = 67528, - [SMALL_STATE(2165)] = 67568, - [SMALL_STATE(2166)] = 67606, - [SMALL_STATE(2167)] = 67634, - [SMALL_STATE(2168)] = 67662, - [SMALL_STATE(2169)] = 67690, - [SMALL_STATE(2170)] = 67730, - [SMALL_STATE(2171)] = 67754, - [SMALL_STATE(2172)] = 67784, - [SMALL_STATE(2173)] = 67808, - [SMALL_STATE(2174)] = 67846, - [SMALL_STATE(2175)] = 67880, - [SMALL_STATE(2176)] = 67920, - [SMALL_STATE(2177)] = 67950, - [SMALL_STATE(2178)] = 67991, - [SMALL_STATE(2179)] = 68014, - [SMALL_STATE(2180)] = 68037, - [SMALL_STATE(2181)] = 68060, - [SMALL_STATE(2182)] = 68083, - [SMALL_STATE(2183)] = 68106, - [SMALL_STATE(2184)] = 68129, - [SMALL_STATE(2185)] = 68152, - [SMALL_STATE(2186)] = 68175, - [SMALL_STATE(2187)] = 68208, - [SMALL_STATE(2188)] = 68231, - [SMALL_STATE(2189)] = 68254, - [SMALL_STATE(2190)] = 68277, - [SMALL_STATE(2191)] = 68300, - [SMALL_STATE(2192)] = 68323, - [SMALL_STATE(2193)] = 68346, - [SMALL_STATE(2194)] = 68369, - [SMALL_STATE(2195)] = 68392, - [SMALL_STATE(2196)] = 68415, - [SMALL_STATE(2197)] = 68446, - [SMALL_STATE(2198)] = 68481, - [SMALL_STATE(2199)] = 68504, - [SMALL_STATE(2200)] = 68539, - [SMALL_STATE(2201)] = 68580, - [SMALL_STATE(2202)] = 68603, - [SMALL_STATE(2203)] = 68640, - [SMALL_STATE(2204)] = 68677, - [SMALL_STATE(2205)] = 68700, - [SMALL_STATE(2206)] = 68723, - [SMALL_STATE(2207)] = 68754, - [SMALL_STATE(2208)] = 68777, + [SMALL_STATE(1098)] = 0, + [SMALL_STATE(1099)] = 74, + [SMALL_STATE(1100)] = 148, + [SMALL_STATE(1101)] = 219, + [SMALL_STATE(1102)] = 319, + [SMALL_STATE(1103)] = 419, + [SMALL_STATE(1104)] = 519, + [SMALL_STATE(1105)] = 596, + [SMALL_STATE(1106)] = 673, + [SMALL_STATE(1107)] = 752, + [SMALL_STATE(1108)] = 829, + [SMALL_STATE(1109)] = 893, + [SMALL_STATE(1110)] = 967, + [SMALL_STATE(1111)] = 1031, + [SMALL_STATE(1112)] = 1095, + [SMALL_STATE(1113)] = 1159, + [SMALL_STATE(1114)] = 1223, + [SMALL_STATE(1115)] = 1287, + [SMALL_STATE(1116)] = 1351, + [SMALL_STATE(1117)] = 1415, + [SMALL_STATE(1118)] = 1483, + [SMALL_STATE(1119)] = 1547, + [SMALL_STATE(1120)] = 1614, + [SMALL_STATE(1121)] = 1681, + [SMALL_STATE(1122)] = 1752, + [SMALL_STATE(1123)] = 1819, + [SMALL_STATE(1124)] = 1882, + [SMALL_STATE(1125)] = 1983, + [SMALL_STATE(1126)] = 2046, + [SMALL_STATE(1127)] = 2147, + [SMALL_STATE(1128)] = 2210, + [SMALL_STATE(1129)] = 2279, + [SMALL_STATE(1130)] = 2342, + [SMALL_STATE(1131)] = 2409, + [SMALL_STATE(1132)] = 2476, + [SMALL_STATE(1133)] = 2547, + [SMALL_STATE(1134)] = 2610, + [SMALL_STATE(1135)] = 2677, + [SMALL_STATE(1136)] = 2748, + [SMALL_STATE(1137)] = 2849, + [SMALL_STATE(1138)] = 2920, + [SMALL_STATE(1139)] = 2989, + [SMALL_STATE(1140)] = 3051, + [SMALL_STATE(1141)] = 3115, + [SMALL_STATE(1142)] = 3183, + [SMALL_STATE(1143)] = 3253, + [SMALL_STATE(1144)] = 3315, + [SMALL_STATE(1145)] = 3377, + [SMALL_STATE(1146)] = 3439, + [SMALL_STATE(1147)] = 3501, + [SMALL_STATE(1148)] = 3563, + [SMALL_STATE(1149)] = 3625, + [SMALL_STATE(1150)] = 3687, + [SMALL_STATE(1151)] = 3749, + [SMALL_STATE(1152)] = 3817, + [SMALL_STATE(1153)] = 3879, + [SMALL_STATE(1154)] = 3945, + [SMALL_STATE(1155)] = 4009, + [SMALL_STATE(1156)] = 4070, + [SMALL_STATE(1157)] = 4131, + [SMALL_STATE(1158)] = 4192, + [SMALL_STATE(1159)] = 4253, + [SMALL_STATE(1160)] = 4314, + [SMALL_STATE(1161)] = 4375, + [SMALL_STATE(1162)] = 4436, + [SMALL_STATE(1163)] = 4497, + [SMALL_STATE(1164)] = 4558, + [SMALL_STATE(1165)] = 4619, + [SMALL_STATE(1166)] = 4680, + [SMALL_STATE(1167)] = 4741, + [SMALL_STATE(1168)] = 4802, + [SMALL_STATE(1169)] = 4863, + [SMALL_STATE(1170)] = 4924, + [SMALL_STATE(1171)] = 4985, + [SMALL_STATE(1172)] = 5046, + [SMALL_STATE(1173)] = 5107, + [SMALL_STATE(1174)] = 5168, + [SMALL_STATE(1175)] = 5229, + [SMALL_STATE(1176)] = 5292, + [SMALL_STATE(1177)] = 5355, + [SMALL_STATE(1178)] = 5416, + [SMALL_STATE(1179)] = 5477, + [SMALL_STATE(1180)] = 5538, + [SMALL_STATE(1181)] = 5599, + [SMALL_STATE(1182)] = 5660, + [SMALL_STATE(1183)] = 5721, + [SMALL_STATE(1184)] = 5782, + [SMALL_STATE(1185)] = 5843, + [SMALL_STATE(1186)] = 5904, + [SMALL_STATE(1187)] = 5965, + [SMALL_STATE(1188)] = 6026, + [SMALL_STATE(1189)] = 6087, + [SMALL_STATE(1190)] = 6148, + [SMALL_STATE(1191)] = 6209, + [SMALL_STATE(1192)] = 6270, + [SMALL_STATE(1193)] = 6331, + [SMALL_STATE(1194)] = 6392, + [SMALL_STATE(1195)] = 6453, + [SMALL_STATE(1196)] = 6514, + [SMALL_STATE(1197)] = 6575, + [SMALL_STATE(1198)] = 6636, + [SMALL_STATE(1199)] = 6697, + [SMALL_STATE(1200)] = 6758, + [SMALL_STATE(1201)] = 6819, + [SMALL_STATE(1202)] = 6880, + [SMALL_STATE(1203)] = 6941, + [SMALL_STATE(1204)] = 7002, + [SMALL_STATE(1205)] = 7063, + [SMALL_STATE(1206)] = 7124, + [SMALL_STATE(1207)] = 7185, + [SMALL_STATE(1208)] = 7246, + [SMALL_STATE(1209)] = 7307, + [SMALL_STATE(1210)] = 7368, + [SMALL_STATE(1211)] = 7429, + [SMALL_STATE(1212)] = 7490, + [SMALL_STATE(1213)] = 7551, + [SMALL_STATE(1214)] = 7612, + [SMALL_STATE(1215)] = 7673, + [SMALL_STATE(1216)] = 7734, + [SMALL_STATE(1217)] = 7795, + [SMALL_STATE(1218)] = 7856, + [SMALL_STATE(1219)] = 7917, + [SMALL_STATE(1220)] = 7978, + [SMALL_STATE(1221)] = 8039, + [SMALL_STATE(1222)] = 8100, + [SMALL_STATE(1223)] = 8161, + [SMALL_STATE(1224)] = 8222, + [SMALL_STATE(1225)] = 8283, + [SMALL_STATE(1226)] = 8344, + [SMALL_STATE(1227)] = 8405, + [SMALL_STATE(1228)] = 8466, + [SMALL_STATE(1229)] = 8527, + [SMALL_STATE(1230)] = 8588, + [SMALL_STATE(1231)] = 8649, + [SMALL_STATE(1232)] = 8710, + [SMALL_STATE(1233)] = 8771, + [SMALL_STATE(1234)] = 8832, + [SMALL_STATE(1235)] = 8893, + [SMALL_STATE(1236)] = 8954, + [SMALL_STATE(1237)] = 9015, + [SMALL_STATE(1238)] = 9076, + [SMALL_STATE(1239)] = 9137, + [SMALL_STATE(1240)] = 9198, + [SMALL_STATE(1241)] = 9259, + [SMALL_STATE(1242)] = 9320, + [SMALL_STATE(1243)] = 9381, + [SMALL_STATE(1244)] = 9442, + [SMALL_STATE(1245)] = 9503, + [SMALL_STATE(1246)] = 9564, + [SMALL_STATE(1247)] = 9625, + [SMALL_STATE(1248)] = 9686, + [SMALL_STATE(1249)] = 9747, + [SMALL_STATE(1250)] = 9808, + [SMALL_STATE(1251)] = 9869, + [SMALL_STATE(1252)] = 9930, + [SMALL_STATE(1253)] = 9991, + [SMALL_STATE(1254)] = 10052, + [SMALL_STATE(1255)] = 10113, + [SMALL_STATE(1256)] = 10174, + [SMALL_STATE(1257)] = 10235, + [SMALL_STATE(1258)] = 10296, + [SMALL_STATE(1259)] = 10357, + [SMALL_STATE(1260)] = 10418, + [SMALL_STATE(1261)] = 10479, + [SMALL_STATE(1262)] = 10540, + [SMALL_STATE(1263)] = 10601, + [SMALL_STATE(1264)] = 10662, + [SMALL_STATE(1265)] = 10723, + [SMALL_STATE(1266)] = 10784, + [SMALL_STATE(1267)] = 10845, + [SMALL_STATE(1268)] = 10906, + [SMALL_STATE(1269)] = 10967, + [SMALL_STATE(1270)] = 11028, + [SMALL_STATE(1271)] = 11089, + [SMALL_STATE(1272)] = 11150, + [SMALL_STATE(1273)] = 11211, + [SMALL_STATE(1274)] = 11272, + [SMALL_STATE(1275)] = 11333, + [SMALL_STATE(1276)] = 11394, + [SMALL_STATE(1277)] = 11455, + [SMALL_STATE(1278)] = 11516, + [SMALL_STATE(1279)] = 11577, + [SMALL_STATE(1280)] = 11638, + [SMALL_STATE(1281)] = 11699, + [SMALL_STATE(1282)] = 11760, + [SMALL_STATE(1283)] = 11821, + [SMALL_STATE(1284)] = 11882, + [SMALL_STATE(1285)] = 11943, + [SMALL_STATE(1286)] = 12004, + [SMALL_STATE(1287)] = 12065, + [SMALL_STATE(1288)] = 12126, + [SMALL_STATE(1289)] = 12187, + [SMALL_STATE(1290)] = 12248, + [SMALL_STATE(1291)] = 12309, + [SMALL_STATE(1292)] = 12370, + [SMALL_STATE(1293)] = 12431, + [SMALL_STATE(1294)] = 12492, + [SMALL_STATE(1295)] = 12553, + [SMALL_STATE(1296)] = 12614, + [SMALL_STATE(1297)] = 12675, + [SMALL_STATE(1298)] = 12736, + [SMALL_STATE(1299)] = 12797, + [SMALL_STATE(1300)] = 12858, + [SMALL_STATE(1301)] = 12919, + [SMALL_STATE(1302)] = 12980, + [SMALL_STATE(1303)] = 13041, + [SMALL_STATE(1304)] = 13102, + [SMALL_STATE(1305)] = 13163, + [SMALL_STATE(1306)] = 13224, + [SMALL_STATE(1307)] = 13285, + [SMALL_STATE(1308)] = 13346, + [SMALL_STATE(1309)] = 13407, + [SMALL_STATE(1310)] = 13468, + [SMALL_STATE(1311)] = 13529, + [SMALL_STATE(1312)] = 13590, + [SMALL_STATE(1313)] = 13651, + [SMALL_STATE(1314)] = 13712, + [SMALL_STATE(1315)] = 13773, + [SMALL_STATE(1316)] = 13834, + [SMALL_STATE(1317)] = 13895, + [SMALL_STATE(1318)] = 13956, + [SMALL_STATE(1319)] = 14017, + [SMALL_STATE(1320)] = 14078, + [SMALL_STATE(1321)] = 14139, + [SMALL_STATE(1322)] = 14200, + [SMALL_STATE(1323)] = 14261, + [SMALL_STATE(1324)] = 14322, + [SMALL_STATE(1325)] = 14383, + [SMALL_STATE(1326)] = 14444, + [SMALL_STATE(1327)] = 14505, + [SMALL_STATE(1328)] = 14566, + [SMALL_STATE(1329)] = 14627, + [SMALL_STATE(1330)] = 14688, + [SMALL_STATE(1331)] = 14749, + [SMALL_STATE(1332)] = 14810, + [SMALL_STATE(1333)] = 14871, + [SMALL_STATE(1334)] = 14932, + [SMALL_STATE(1335)] = 14993, + [SMALL_STATE(1336)] = 15054, + [SMALL_STATE(1337)] = 15115, + [SMALL_STATE(1338)] = 15176, + [SMALL_STATE(1339)] = 15237, + [SMALL_STATE(1340)] = 15298, + [SMALL_STATE(1341)] = 15359, + [SMALL_STATE(1342)] = 15420, + [SMALL_STATE(1343)] = 15481, + [SMALL_STATE(1344)] = 15542, + [SMALL_STATE(1345)] = 15603, + [SMALL_STATE(1346)] = 15664, + [SMALL_STATE(1347)] = 15725, + [SMALL_STATE(1348)] = 15786, + [SMALL_STATE(1349)] = 15847, + [SMALL_STATE(1350)] = 15908, + [SMALL_STATE(1351)] = 15969, + [SMALL_STATE(1352)] = 16030, + [SMALL_STATE(1353)] = 16091, + [SMALL_STATE(1354)] = 16152, + [SMALL_STATE(1355)] = 16213, + [SMALL_STATE(1356)] = 16274, + [SMALL_STATE(1357)] = 16335, + [SMALL_STATE(1358)] = 16396, + [SMALL_STATE(1359)] = 16457, + [SMALL_STATE(1360)] = 16518, + [SMALL_STATE(1361)] = 16579, + [SMALL_STATE(1362)] = 16640, + [SMALL_STATE(1363)] = 16701, + [SMALL_STATE(1364)] = 16762, + [SMALL_STATE(1365)] = 16823, + [SMALL_STATE(1366)] = 16884, + [SMALL_STATE(1367)] = 16945, + [SMALL_STATE(1368)] = 17006, + [SMALL_STATE(1369)] = 17067, + [SMALL_STATE(1370)] = 17128, + [SMALL_STATE(1371)] = 17189, + [SMALL_STATE(1372)] = 17250, + [SMALL_STATE(1373)] = 17311, + [SMALL_STATE(1374)] = 17372, + [SMALL_STATE(1375)] = 17433, + [SMALL_STATE(1376)] = 17494, + [SMALL_STATE(1377)] = 17555, + [SMALL_STATE(1378)] = 17616, + [SMALL_STATE(1379)] = 17677, + [SMALL_STATE(1380)] = 17738, + [SMALL_STATE(1381)] = 17799, + [SMALL_STATE(1382)] = 17860, + [SMALL_STATE(1383)] = 17921, + [SMALL_STATE(1384)] = 17982, + [SMALL_STATE(1385)] = 18043, + [SMALL_STATE(1386)] = 18104, + [SMALL_STATE(1387)] = 18165, + [SMALL_STATE(1388)] = 18226, + [SMALL_STATE(1389)] = 18287, + [SMALL_STATE(1390)] = 18348, + [SMALL_STATE(1391)] = 18409, + [SMALL_STATE(1392)] = 18470, + [SMALL_STATE(1393)] = 18531, + [SMALL_STATE(1394)] = 18594, + [SMALL_STATE(1395)] = 18659, + [SMALL_STATE(1396)] = 18720, + [SMALL_STATE(1397)] = 18813, + [SMALL_STATE(1398)] = 18876, + [SMALL_STATE(1399)] = 18939, + [SMALL_STATE(1400)] = 19002, + [SMALL_STATE(1401)] = 19105, + [SMALL_STATE(1402)] = 19168, + [SMALL_STATE(1403)] = 19229, + [SMALL_STATE(1404)] = 19290, + [SMALL_STATE(1405)] = 19351, + [SMALL_STATE(1406)] = 19412, + [SMALL_STATE(1407)] = 19473, + [SMALL_STATE(1408)] = 19548, + [SMALL_STATE(1409)] = 19609, + [SMALL_STATE(1410)] = 19670, + [SMALL_STATE(1411)] = 19763, + [SMALL_STATE(1412)] = 19824, + [SMALL_STATE(1413)] = 19917, + [SMALL_STATE(1414)] = 20020, + [SMALL_STATE(1415)] = 20081, + [SMALL_STATE(1416)] = 20142, + [SMALL_STATE(1417)] = 20205, + [SMALL_STATE(1418)] = 20266, + [SMALL_STATE(1419)] = 20329, + [SMALL_STATE(1420)] = 20390, + [SMALL_STATE(1421)] = 20453, + [SMALL_STATE(1422)] = 20516, + [SMALL_STATE(1423)] = 20579, + [SMALL_STATE(1424)] = 20642, + [SMALL_STATE(1425)] = 20705, + [SMALL_STATE(1426)] = 20808, + [SMALL_STATE(1427)] = 20869, + [SMALL_STATE(1428)] = 20930, + [SMALL_STATE(1429)] = 20991, + [SMALL_STATE(1430)] = 21056, + [SMALL_STATE(1431)] = 21117, + [SMALL_STATE(1432)] = 21178, + [SMALL_STATE(1433)] = 21253, + [SMALL_STATE(1434)] = 21314, + [SMALL_STATE(1435)] = 21375, + [SMALL_STATE(1436)] = 21440, + [SMALL_STATE(1437)] = 21501, + [SMALL_STATE(1438)] = 21562, + [SMALL_STATE(1439)] = 21623, + [SMALL_STATE(1440)] = 21684, + [SMALL_STATE(1441)] = 21745, + [SMALL_STATE(1442)] = 21806, + [SMALL_STATE(1443)] = 21867, + [SMALL_STATE(1444)] = 21928, + [SMALL_STATE(1445)] = 21989, + [SMALL_STATE(1446)] = 22050, + [SMALL_STATE(1447)] = 22111, + [SMALL_STATE(1448)] = 22172, + [SMALL_STATE(1449)] = 22233, + [SMALL_STATE(1450)] = 22294, + [SMALL_STATE(1451)] = 22355, + [SMALL_STATE(1452)] = 22416, + [SMALL_STATE(1453)] = 22479, + [SMALL_STATE(1454)] = 22540, + [SMALL_STATE(1455)] = 22603, + [SMALL_STATE(1456)] = 22666, + [SMALL_STATE(1457)] = 22727, + [SMALL_STATE(1458)] = 22788, + [SMALL_STATE(1459)] = 22849, + [SMALL_STATE(1460)] = 22910, + [SMALL_STATE(1461)] = 22971, + [SMALL_STATE(1462)] = 23034, + [SMALL_STATE(1463)] = 23095, + [SMALL_STATE(1464)] = 23156, + [SMALL_STATE(1465)] = 23217, + [SMALL_STATE(1466)] = 23278, + [SMALL_STATE(1467)] = 23339, + [SMALL_STATE(1468)] = 23400, + [SMALL_STATE(1469)] = 23503, + [SMALL_STATE(1470)] = 23564, + [SMALL_STATE(1471)] = 23625, + [SMALL_STATE(1472)] = 23686, + [SMALL_STATE(1473)] = 23747, + [SMALL_STATE(1474)] = 23808, + [SMALL_STATE(1475)] = 23869, + [SMALL_STATE(1476)] = 23929, + [SMALL_STATE(1477)] = 23989, + [SMALL_STATE(1478)] = 24049, + [SMALL_STATE(1479)] = 24109, + [SMALL_STATE(1480)] = 24169, + [SMALL_STATE(1481)] = 24235, + [SMALL_STATE(1482)] = 24295, + [SMALL_STATE(1483)] = 24355, + [SMALL_STATE(1484)] = 24429, + [SMALL_STATE(1485)] = 24489, + [SMALL_STATE(1486)] = 24549, + [SMALL_STATE(1487)] = 24609, + [SMALL_STATE(1488)] = 24669, + [SMALL_STATE(1489)] = 24729, + [SMALL_STATE(1490)] = 24789, + [SMALL_STATE(1491)] = 24849, + [SMALL_STATE(1492)] = 24909, + [SMALL_STATE(1493)] = 24969, + [SMALL_STATE(1494)] = 25029, + [SMALL_STATE(1495)] = 25095, + [SMALL_STATE(1496)] = 25155, + [SMALL_STATE(1497)] = 25215, + [SMALL_STATE(1498)] = 25275, + [SMALL_STATE(1499)] = 25335, + [SMALL_STATE(1500)] = 25395, + [SMALL_STATE(1501)] = 25455, + [SMALL_STATE(1502)] = 25515, + [SMALL_STATE(1503)] = 25575, + [SMALL_STATE(1504)] = 25635, + [SMALL_STATE(1505)] = 25695, + [SMALL_STATE(1506)] = 25755, + [SMALL_STATE(1507)] = 25815, + [SMALL_STATE(1508)] = 25875, + [SMALL_STATE(1509)] = 25935, + [SMALL_STATE(1510)] = 25995, + [SMALL_STATE(1511)] = 26055, + [SMALL_STATE(1512)] = 26115, + [SMALL_STATE(1513)] = 26175, + [SMALL_STATE(1514)] = 26235, + [SMALL_STATE(1515)] = 26295, + [SMALL_STATE(1516)] = 26355, + [SMALL_STATE(1517)] = 26415, + [SMALL_STATE(1518)] = 26475, + [SMALL_STATE(1519)] = 26535, + [SMALL_STATE(1520)] = 26595, + [SMALL_STATE(1521)] = 26655, + [SMALL_STATE(1522)] = 26715, + [SMALL_STATE(1523)] = 26775, + [SMALL_STATE(1524)] = 26837, + [SMALL_STATE(1525)] = 26897, + [SMALL_STATE(1526)] = 26957, + [SMALL_STATE(1527)] = 27017, + [SMALL_STATE(1528)] = 27077, + [SMALL_STATE(1529)] = 27137, + [SMALL_STATE(1530)] = 27197, + [SMALL_STATE(1531)] = 27257, + [SMALL_STATE(1532)] = 27317, + [SMALL_STATE(1533)] = 27377, + [SMALL_STATE(1534)] = 27437, + [SMALL_STATE(1535)] = 27497, + [SMALL_STATE(1536)] = 27557, + [SMALL_STATE(1537)] = 27617, + [SMALL_STATE(1538)] = 27677, + [SMALL_STATE(1539)] = 27741, + [SMALL_STATE(1540)] = 27801, + [SMALL_STATE(1541)] = 27861, + [SMALL_STATE(1542)] = 27921, + [SMALL_STATE(1543)] = 27981, + [SMALL_STATE(1544)] = 28041, + [SMALL_STATE(1545)] = 28101, + [SMALL_STATE(1546)] = 28161, + [SMALL_STATE(1547)] = 28229, + [SMALL_STATE(1548)] = 28289, + [SMALL_STATE(1549)] = 28349, + [SMALL_STATE(1550)] = 28409, + [SMALL_STATE(1551)] = 28469, + [SMALL_STATE(1552)] = 28529, + [SMALL_STATE(1553)] = 28591, + [SMALL_STATE(1554)] = 28651, + [SMALL_STATE(1555)] = 28711, + [SMALL_STATE(1556)] = 28771, + [SMALL_STATE(1557)] = 28831, + [SMALL_STATE(1558)] = 28891, + [SMALL_STATE(1559)] = 28951, + [SMALL_STATE(1560)] = 29011, + [SMALL_STATE(1561)] = 29071, + [SMALL_STATE(1562)] = 29131, + [SMALL_STATE(1563)] = 29191, + [SMALL_STATE(1564)] = 29251, + [SMALL_STATE(1565)] = 29311, + [SMALL_STATE(1566)] = 29371, + [SMALL_STATE(1567)] = 29437, + [SMALL_STATE(1568)] = 29497, + [SMALL_STATE(1569)] = 29557, + [SMALL_STATE(1570)] = 29617, + [SMALL_STATE(1571)] = 29677, + [SMALL_STATE(1572)] = 29737, + [SMALL_STATE(1573)] = 29797, + [SMALL_STATE(1574)] = 29857, + [SMALL_STATE(1575)] = 29953, + [SMALL_STATE(1576)] = 30017, + [SMALL_STATE(1577)] = 30077, + [SMALL_STATE(1578)] = 30137, + [SMALL_STATE(1579)] = 30197, + [SMALL_STATE(1580)] = 30257, + [SMALL_STATE(1581)] = 30317, + [SMALL_STATE(1582)] = 30377, + [SMALL_STATE(1583)] = 30437, + [SMALL_STATE(1584)] = 30497, + [SMALL_STATE(1585)] = 30557, + [SMALL_STATE(1586)] = 30617, + [SMALL_STATE(1587)] = 30677, + [SMALL_STATE(1588)] = 30737, + [SMALL_STATE(1589)] = 30797, + [SMALL_STATE(1590)] = 30857, + [SMALL_STATE(1591)] = 30923, + [SMALL_STATE(1592)] = 30983, + [SMALL_STATE(1593)] = 31043, + [SMALL_STATE(1594)] = 31103, + [SMALL_STATE(1595)] = 31163, + [SMALL_STATE(1596)] = 31223, + [SMALL_STATE(1597)] = 31283, + [SMALL_STATE(1598)] = 31343, + [SMALL_STATE(1599)] = 31403, + [SMALL_STATE(1600)] = 31463, + [SMALL_STATE(1601)] = 31523, + [SMALL_STATE(1602)] = 31583, + [SMALL_STATE(1603)] = 31654, + [SMALL_STATE(1604)] = 31715, + [SMALL_STATE(1605)] = 31776, + [SMALL_STATE(1606)] = 31845, + [SMALL_STATE(1607)] = 31918, + [SMALL_STATE(1608)] = 31986, + [SMALL_STATE(1609)] = 32056, + [SMALL_STATE(1610)] = 32146, + [SMALL_STATE(1611)] = 32232, + [SMALL_STATE(1612)] = 32322, + [SMALL_STATE(1613)] = 32392, + [SMALL_STATE(1614)] = 32482, + [SMALL_STATE(1615)] = 32568, + [SMALL_STATE(1616)] = 32654, + [SMALL_STATE(1617)] = 32720, + [SMALL_STATE(1618)] = 32778, + [SMALL_STATE(1619)] = 32870, + [SMALL_STATE(1620)] = 32956, + [SMALL_STATE(1621)] = 33014, + [SMALL_STATE(1622)] = 33100, + [SMALL_STATE(1623)] = 33192, + [SMALL_STATE(1624)] = 33252, + [SMALL_STATE(1625)] = 33326, + [SMALL_STATE(1626)] = 33398, + [SMALL_STATE(1627)] = 33474, + [SMALL_STATE(1628)] = 33556, + [SMALL_STATE(1629)] = 33616, + [SMALL_STATE(1630)] = 33702, + [SMALL_STATE(1631)] = 33772, + [SMALL_STATE(1632)] = 33856, + [SMALL_STATE(1633)] = 33926, + [SMALL_STATE(1634)] = 34016, + [SMALL_STATE(1635)] = 34106, + [SMALL_STATE(1636)] = 34184, + [SMALL_STATE(1637)] = 34270, + [SMALL_STATE(1638)] = 34360, + [SMALL_STATE(1639)] = 34418, + [SMALL_STATE(1640)] = 34504, + [SMALL_STATE(1641)] = 34596, + [SMALL_STATE(1642)] = 34688, + [SMALL_STATE(1643)] = 34755, + [SMALL_STATE(1644)] = 34818, + [SMALL_STATE(1645)] = 34883, + [SMALL_STATE(1646)] = 34946, + [SMALL_STATE(1647)] = 35006, + [SMALL_STATE(1648)] = 35070, + [SMALL_STATE(1649)] = 35134, + [SMALL_STATE(1650)] = 35190, + [SMALL_STATE(1651)] = 35254, + [SMALL_STATE(1652)] = 35310, + [SMALL_STATE(1653)] = 35366, + [SMALL_STATE(1654)] = 35424, + [SMALL_STATE(1655)] = 35482, + [SMALL_STATE(1656)] = 35540, + [SMALL_STATE(1657)] = 35600, + [SMALL_STATE(1658)] = 35660, + [SMALL_STATE(1659)] = 35716, + [SMALL_STATE(1660)] = 35776, + [SMALL_STATE(1661)] = 35834, + [SMALL_STATE(1662)] = 35894, + [SMALL_STATE(1663)] = 35958, + [SMALL_STATE(1664)] = 36018, + [SMALL_STATE(1665)] = 36078, + [SMALL_STATE(1666)] = 36137, + [SMALL_STATE(1667)] = 36194, + [SMALL_STATE(1668)] = 36289, + [SMALL_STATE(1669)] = 36346, + [SMALL_STATE(1670)] = 36441, + [SMALL_STATE(1671)] = 36536, + [SMALL_STATE(1672)] = 36591, + [SMALL_STATE(1673)] = 36648, + [SMALL_STATE(1674)] = 36707, + [SMALL_STATE(1675)] = 36762, + [SMALL_STATE(1676)] = 36857, + [SMALL_STATE(1677)] = 36912, + [SMALL_STATE(1678)] = 36969, + [SMALL_STATE(1679)] = 37064, + [SMALL_STATE(1680)] = 37119, + [SMALL_STATE(1681)] = 37174, + [SMALL_STATE(1682)] = 37269, + [SMALL_STATE(1683)] = 37326, + [SMALL_STATE(1684)] = 37385, + [SMALL_STATE(1685)] = 37474, + [SMALL_STATE(1686)] = 37563, + [SMALL_STATE(1687)] = 37618, + [SMALL_STATE(1688)] = 37713, + [SMALL_STATE(1689)] = 37768, + [SMALL_STATE(1690)] = 37863, + [SMALL_STATE(1691)] = 37952, + [SMALL_STATE(1692)] = 38011, + [SMALL_STATE(1693)] = 38106, + [SMALL_STATE(1694)] = 38201, + [SMALL_STATE(1695)] = 38296, + [SMALL_STATE(1696)] = 38391, + [SMALL_STATE(1697)] = 38446, + [SMALL_STATE(1698)] = 38503, + [SMALL_STATE(1699)] = 38592, + [SMALL_STATE(1700)] = 38649, + [SMALL_STATE(1701)] = 38731, + [SMALL_STATE(1702)] = 38785, + [SMALL_STATE(1703)] = 38839, + [SMALL_STATE(1704)] = 38893, + [SMALL_STATE(1705)] = 38947, + [SMALL_STATE(1706)] = 39035, + [SMALL_STATE(1707)] = 39089, + [SMALL_STATE(1708)] = 39145, + [SMALL_STATE(1709)] = 39201, + [SMALL_STATE(1710)] = 39255, + [SMALL_STATE(1711)] = 39337, + [SMALL_STATE(1712)] = 39423, + [SMALL_STATE(1713)] = 39509, + [SMALL_STATE(1714)] = 39595, + [SMALL_STATE(1715)] = 39651, + [SMALL_STATE(1716)] = 39707, + [SMALL_STATE(1717)] = 39763, + [SMALL_STATE(1718)] = 39819, + [SMALL_STATE(1719)] = 39907, + [SMALL_STATE(1720)] = 39961, + [SMALL_STATE(1721)] = 40053, + [SMALL_STATE(1722)] = 40145, + [SMALL_STATE(1723)] = 40201, + [SMALL_STATE(1724)] = 40257, + [SMALL_STATE(1725)] = 40313, + [SMALL_STATE(1726)] = 40405, + [SMALL_STATE(1727)] = 40459, + [SMALL_STATE(1728)] = 40547, + [SMALL_STATE(1729)] = 40603, + [SMALL_STATE(1730)] = 40657, + [SMALL_STATE(1731)] = 40711, + [SMALL_STATE(1732)] = 40765, + [SMALL_STATE(1733)] = 40819, + [SMALL_STATE(1734)] = 40873, + [SMALL_STATE(1735)] = 40929, + [SMALL_STATE(1736)] = 40985, + [SMALL_STATE(1737)] = 41041, + [SMALL_STATE(1738)] = 41121, + [SMALL_STATE(1739)] = 41213, + [SMALL_STATE(1740)] = 41269, + [SMALL_STATE(1741)] = 41325, + [SMALL_STATE(1742)] = 41389, + [SMALL_STATE(1743)] = 41459, + [SMALL_STATE(1744)] = 41527, + [SMALL_STATE(1745)] = 41599, + [SMALL_STATE(1746)] = 41677, + [SMALL_STATE(1747)] = 41757, + [SMALL_STATE(1748)] = 41823, + [SMALL_STATE(1749)] = 41909, + [SMALL_STATE(1750)] = 41995, + [SMALL_STATE(1751)] = 42069, + [SMALL_STATE(1752)] = 42123, + [SMALL_STATE(1753)] = 42177, + [SMALL_STATE(1754)] = 42233, + [SMALL_STATE(1755)] = 42321, + [SMALL_STATE(1756)] = 42379, + [SMALL_STATE(1757)] = 42433, + [SMALL_STATE(1758)] = 42519, + [SMALL_STATE(1759)] = 42572, + [SMALL_STATE(1760)] = 42625, + [SMALL_STATE(1761)] = 42678, + [SMALL_STATE(1762)] = 42767, + [SMALL_STATE(1763)] = 42832, + [SMALL_STATE(1764)] = 42921, + [SMALL_STATE(1765)] = 42974, + [SMALL_STATE(1766)] = 43061, + [SMALL_STATE(1767)] = 43146, + [SMALL_STATE(1768)] = 43231, + [SMALL_STATE(1769)] = 43284, + [SMALL_STATE(1770)] = 43337, + [SMALL_STATE(1771)] = 43426, + [SMALL_STATE(1772)] = 43499, + [SMALL_STATE(1773)] = 43552, + [SMALL_STATE(1774)] = 43605, + [SMALL_STATE(1775)] = 43658, + [SMALL_STATE(1776)] = 43711, + [SMALL_STATE(1777)] = 43764, + [SMALL_STATE(1778)] = 43817, + [SMALL_STATE(1779)] = 43870, + [SMALL_STATE(1780)] = 43959, + [SMALL_STATE(1781)] = 44048, + [SMALL_STATE(1782)] = 44101, + [SMALL_STATE(1783)] = 44160, + [SMALL_STATE(1784)] = 44249, + [SMALL_STATE(1785)] = 44302, + [SMALL_STATE(1786)] = 44383, + [SMALL_STATE(1787)] = 44436, + [SMALL_STATE(1788)] = 44495, + [SMALL_STATE(1789)] = 44584, + [SMALL_STATE(1790)] = 44673, + [SMALL_STATE(1791)] = 44760, + [SMALL_STATE(1792)] = 44847, + [SMALL_STATE(1793)] = 44936, + [SMALL_STATE(1794)] = 45021, + [SMALL_STATE(1795)] = 45108, + [SMALL_STATE(1796)] = 45195, + [SMALL_STATE(1797)] = 45282, + [SMALL_STATE(1798)] = 45335, + [SMALL_STATE(1799)] = 45424, + [SMALL_STATE(1800)] = 45477, + [SMALL_STATE(1801)] = 45530, + [SMALL_STATE(1802)] = 45583, + [SMALL_STATE(1803)] = 45636, + [SMALL_STATE(1804)] = 45689, + [SMALL_STATE(1805)] = 45778, + [SMALL_STATE(1806)] = 45831, + [SMALL_STATE(1807)] = 45884, + [SMALL_STATE(1808)] = 45937, + [SMALL_STATE(1809)] = 45990, + [SMALL_STATE(1810)] = 46079, + [SMALL_STATE(1811)] = 46132, + [SMALL_STATE(1812)] = 46185, + [SMALL_STATE(1813)] = 46272, + [SMALL_STATE(1814)] = 46325, + [SMALL_STATE(1815)] = 46406, + [SMALL_STATE(1816)] = 46491, + [SMALL_STATE(1817)] = 46580, + [SMALL_STATE(1818)] = 46665, + [SMALL_STATE(1819)] = 46750, + [SMALL_STATE(1820)] = 46839, + [SMALL_STATE(1821)] = 46892, + [SMALL_STATE(1822)] = 46951, + [SMALL_STATE(1823)] = 47004, + [SMALL_STATE(1824)] = 47057, + [SMALL_STATE(1825)] = 47110, + [SMALL_STATE(1826)] = 47163, + [SMALL_STATE(1827)] = 47216, + [SMALL_STATE(1828)] = 47269, + [SMALL_STATE(1829)] = 47322, + [SMALL_STATE(1830)] = 47411, + [SMALL_STATE(1831)] = 47500, + [SMALL_STATE(1832)] = 47553, + [SMALL_STATE(1833)] = 47606, + [SMALL_STATE(1834)] = 47695, + [SMALL_STATE(1835)] = 47784, + [SMALL_STATE(1836)] = 47837, + [SMALL_STATE(1837)] = 47924, + [SMALL_STATE(1838)] = 48013, + [SMALL_STATE(1839)] = 48102, + [SMALL_STATE(1840)] = 48191, + [SMALL_STATE(1841)] = 48244, + [SMALL_STATE(1842)] = 48333, + [SMALL_STATE(1843)] = 48386, + [SMALL_STATE(1844)] = 48439, + [SMALL_STATE(1845)] = 48492, + [SMALL_STATE(1846)] = 48545, + [SMALL_STATE(1847)] = 48598, + [SMALL_STATE(1848)] = 48687, + [SMALL_STATE(1849)] = 48776, + [SMALL_STATE(1850)] = 48865, + [SMALL_STATE(1851)] = 48954, + [SMALL_STATE(1852)] = 49007, + [SMALL_STATE(1853)] = 49060, + [SMALL_STATE(1854)] = 49113, + [SMALL_STATE(1855)] = 49202, + [SMALL_STATE(1856)] = 49283, + [SMALL_STATE(1857)] = 49336, + [SMALL_STATE(1858)] = 49389, + [SMALL_STATE(1859)] = 49478, + [SMALL_STATE(1860)] = 49531, + [SMALL_STATE(1861)] = 49620, + [SMALL_STATE(1862)] = 49709, + [SMALL_STATE(1863)] = 49762, + [SMALL_STATE(1864)] = 49815, + [SMALL_STATE(1865)] = 49902, + [SMALL_STATE(1866)] = 49991, + [SMALL_STATE(1867)] = 50078, + [SMALL_STATE(1868)] = 50167, + [SMALL_STATE(1869)] = 50252, + [SMALL_STATE(1870)] = 50339, + [SMALL_STATE(1871)] = 50392, + [SMALL_STATE(1872)] = 50445, + [SMALL_STATE(1873)] = 50532, + [SMALL_STATE(1874)] = 50621, + [SMALL_STATE(1875)] = 50674, + [SMALL_STATE(1876)] = 50763, + [SMALL_STATE(1877)] = 50850, + [SMALL_STATE(1878)] = 50939, + [SMALL_STATE(1879)] = 51028, + [SMALL_STATE(1880)] = 51115, + [SMALL_STATE(1881)] = 51202, + [SMALL_STATE(1882)] = 51287, + [SMALL_STATE(1883)] = 51340, + [SMALL_STATE(1884)] = 51429, + [SMALL_STATE(1885)] = 51518, + [SMALL_STATE(1886)] = 51571, + [SMALL_STATE(1887)] = 51660, + [SMALL_STATE(1888)] = 51749, + [SMALL_STATE(1889)] = 51838, + [SMALL_STATE(1890)] = 51927, + [SMALL_STATE(1891)] = 51980, + [SMALL_STATE(1892)] = 52033, + [SMALL_STATE(1893)] = 52086, + [SMALL_STATE(1894)] = 52139, + [SMALL_STATE(1895)] = 52202, + [SMALL_STATE(1896)] = 52271, + [SMALL_STATE(1897)] = 52338, + [SMALL_STATE(1898)] = 52409, + [SMALL_STATE(1899)] = 52486, + [SMALL_STATE(1900)] = 52565, + [SMALL_STATE(1901)] = 52618, + [SMALL_STATE(1902)] = 52683, + [SMALL_STATE(1903)] = 52768, + [SMALL_STATE(1904)] = 52853, + [SMALL_STATE(1905)] = 52926, + [SMALL_STATE(1906)] = 53007, + [SMALL_STATE(1907)] = 53060, + [SMALL_STATE(1908)] = 53113, + [SMALL_STATE(1909)] = 53166, + [SMALL_STATE(1910)] = 53219, + [SMALL_STATE(1911)] = 53272, + [SMALL_STATE(1912)] = 53333, + [SMALL_STATE(1913)] = 53386, + [SMALL_STATE(1914)] = 53455, + [SMALL_STATE(1915)] = 53522, + [SMALL_STATE(1916)] = 53611, + [SMALL_STATE(1917)] = 53682, + [SMALL_STATE(1918)] = 53759, + [SMALL_STATE(1919)] = 53812, + [SMALL_STATE(1920)] = 53865, + [SMALL_STATE(1921)] = 53928, + [SMALL_STATE(1922)] = 53981, + [SMALL_STATE(1923)] = 54060, + [SMALL_STATE(1924)] = 54113, + [SMALL_STATE(1925)] = 54166, + [SMALL_STATE(1926)] = 54219, + [SMALL_STATE(1927)] = 54306, + [SMALL_STATE(1928)] = 54359, + [SMALL_STATE(1929)] = 54448, + [SMALL_STATE(1930)] = 54501, + [SMALL_STATE(1931)] = 54554, + [SMALL_STATE(1932)] = 54607, + [SMALL_STATE(1933)] = 54660, + [SMALL_STATE(1934)] = 54719, + [SMALL_STATE(1935)] = 54772, + [SMALL_STATE(1936)] = 54825, + [SMALL_STATE(1937)] = 54878, + [SMALL_STATE(1938)] = 54931, + [SMALL_STATE(1939)] = 55018, + [SMALL_STATE(1940)] = 55071, + [SMALL_STATE(1941)] = 55124, + [SMALL_STATE(1942)] = 55177, + [SMALL_STATE(1943)] = 55266, + [SMALL_STATE(1944)] = 55353, + [SMALL_STATE(1945)] = 55406, + [SMALL_STATE(1946)] = 55459, + [SMALL_STATE(1947)] = 55544, + [SMALL_STATE(1948)] = 55597, + [SMALL_STATE(1949)] = 55650, + [SMALL_STATE(1950)] = 55703, + [SMALL_STATE(1951)] = 55788, + [SMALL_STATE(1952)] = 55841, + [SMALL_STATE(1953)] = 55930, + [SMALL_STATE(1954)] = 55983, + [SMALL_STATE(1955)] = 56036, + [SMALL_STATE(1956)] = 56089, + [SMALL_STATE(1957)] = 56174, + [SMALL_STATE(1958)] = 56261, + [SMALL_STATE(1959)] = 56314, + [SMALL_STATE(1960)] = 56403, + [SMALL_STATE(1961)] = 56456, + [SMALL_STATE(1962)] = 56545, + [SMALL_STATE(1963)] = 56598, + [SMALL_STATE(1964)] = 56675, + [SMALL_STATE(1965)] = 56762, + [SMALL_STATE(1966)] = 56849, + [SMALL_STATE(1967)] = 56902, + [SMALL_STATE(1968)] = 56955, + [SMALL_STATE(1969)] = 57042, + [SMALL_STATE(1970)] = 57095, + [SMALL_STATE(1971)] = 57182, + [SMALL_STATE(1972)] = 57235, + [SMALL_STATE(1973)] = 57288, + [SMALL_STATE(1974)] = 57341, + [SMALL_STATE(1975)] = 57394, + [SMALL_STATE(1976)] = 57481, + [SMALL_STATE(1977)] = 57558, + [SMALL_STATE(1978)] = 57645, + [SMALL_STATE(1979)] = 57732, + [SMALL_STATE(1980)] = 57785, + [SMALL_STATE(1981)] = 57870, + [SMALL_STATE(1982)] = 57957, + [SMALL_STATE(1983)] = 58046, + [SMALL_STATE(1984)] = 58099, + [SMALL_STATE(1985)] = 58188, + [SMALL_STATE(1986)] = 58241, + [SMALL_STATE(1987)] = 58294, + [SMALL_STATE(1988)] = 58368, + [SMALL_STATE(1989)] = 58454, + [SMALL_STATE(1990)] = 58540, + [SMALL_STATE(1991)] = 58626, + [SMALL_STATE(1992)] = 58712, + [SMALL_STATE(1993)] = 58798, + [SMALL_STATE(1994)] = 58872, + [SMALL_STATE(1995)] = 58958, + [SMALL_STATE(1996)] = 59044, + [SMALL_STATE(1997)] = 59130, + [SMALL_STATE(1998)] = 59216, + [SMALL_STATE(1999)] = 59300, + [SMALL_STATE(2000)] = 59386, + [SMALL_STATE(2001)] = 59472, + [SMALL_STATE(2002)] = 59556, + [SMALL_STATE(2003)] = 59642, + [SMALL_STATE(2004)] = 59728, + [SMALL_STATE(2005)] = 59814, + [SMALL_STATE(2006)] = 59900, + [SMALL_STATE(2007)] = 59986, + [SMALL_STATE(2008)] = 60072, + [SMALL_STATE(2009)] = 60158, + [SMALL_STATE(2010)] = 60232, + [SMALL_STATE(2011)] = 60318, + [SMALL_STATE(2012)] = 60404, + [SMALL_STATE(2013)] = 60490, + [SMALL_STATE(2014)] = 60564, + [SMALL_STATE(2015)] = 60650, + [SMALL_STATE(2016)] = 60736, + [SMALL_STATE(2017)] = 60822, + [SMALL_STATE(2018)] = 60908, + [SMALL_STATE(2019)] = 60982, + [SMALL_STATE(2020)] = 61068, + [SMALL_STATE(2021)] = 61154, + [SMALL_STATE(2022)] = 61240, + [SMALL_STATE(2023)] = 61326, + [SMALL_STATE(2024)] = 61412, + [SMALL_STATE(2025)] = 61495, + [SMALL_STATE(2026)] = 61570, + [SMALL_STATE(2027)] = 61653, + [SMALL_STATE(2028)] = 61736, + [SMALL_STATE(2029)] = 61819, + [SMALL_STATE(2030)] = 61894, + [SMALL_STATE(2031)] = 61977, + [SMALL_STATE(2032)] = 62060, + [SMALL_STATE(2033)] = 62135, + [SMALL_STATE(2034)] = 62210, + [SMALL_STATE(2035)] = 62285, + [SMALL_STATE(2036)] = 62368, + [SMALL_STATE(2037)] = 62451, + [SMALL_STATE(2038)] = 62526, + [SMALL_STATE(2039)] = 62601, + [SMALL_STATE(2040)] = 62676, + [SMALL_STATE(2041)] = 62723, + [SMALL_STATE(2042)] = 62770, + [SMALL_STATE(2043)] = 62817, + [SMALL_STATE(2044)] = 62879, + [SMALL_STATE(2045)] = 62941, + [SMALL_STATE(2046)] = 63003, + [SMALL_STATE(2047)] = 63065, + [SMALL_STATE(2048)] = 63127, + [SMALL_STATE(2049)] = 63189, + [SMALL_STATE(2050)] = 63251, + [SMALL_STATE(2051)] = 63313, + [SMALL_STATE(2052)] = 63375, + [SMALL_STATE(2053)] = 63434, + [SMALL_STATE(2054)] = 63493, + [SMALL_STATE(2055)] = 63529, + [SMALL_STATE(2056)] = 63565, + [SMALL_STATE(2057)] = 63602, + [SMALL_STATE(2058)] = 63639, + [SMALL_STATE(2059)] = 63676, + [SMALL_STATE(2060)] = 63713, + [SMALL_STATE(2061)] = 63766, + [SMALL_STATE(2062)] = 63810, + [SMALL_STATE(2063)] = 63846, + [SMALL_STATE(2064)] = 63880, + [SMALL_STATE(2065)] = 63914, + [SMALL_STATE(2066)] = 63950, + [SMALL_STATE(2067)] = 63986, + [SMALL_STATE(2068)] = 64020, + [SMALL_STATE(2069)] = 64054, + [SMALL_STATE(2070)] = 64098, + [SMALL_STATE(2071)] = 64142, + [SMALL_STATE(2072)] = 64178, + [SMALL_STATE(2073)] = 64211, + [SMALL_STATE(2074)] = 64244, + [SMALL_STATE(2075)] = 64275, + [SMALL_STATE(2076)] = 64308, + [SMALL_STATE(2077)] = 64341, + [SMALL_STATE(2078)] = 64382, + [SMALL_STATE(2079)] = 64433, + [SMALL_STATE(2080)] = 64465, + [SMALL_STATE(2081)] = 64511, + [SMALL_STATE(2082)] = 64555, + [SMALL_STATE(2083)] = 64587, + [SMALL_STATE(2084)] = 64619, + [SMALL_STATE(2085)] = 64679, + [SMALL_STATE(2086)] = 64717, + [SMALL_STATE(2087)] = 64755, + [SMALL_STATE(2088)] = 64793, + [SMALL_STATE(2089)] = 64853, + [SMALL_STATE(2090)] = 64891, + [SMALL_STATE(2091)] = 64920, + [SMALL_STATE(2092)] = 64949, + [SMALL_STATE(2093)] = 64980, + [SMALL_STATE(2094)] = 65009, + [SMALL_STATE(2095)] = 65042, + [SMALL_STATE(2096)] = 65095, + [SMALL_STATE(2097)] = 65150, + [SMALL_STATE(2098)] = 65191, + [SMALL_STATE(2099)] = 65224, + [SMALL_STATE(2100)] = 65253, + [SMALL_STATE(2101)] = 65282, + [SMALL_STATE(2102)] = 65315, + [SMALL_STATE(2103)] = 65344, + [SMALL_STATE(2104)] = 65377, + [SMALL_STATE(2105)] = 65406, + [SMALL_STATE(2106)] = 65435, + [SMALL_STATE(2107)] = 65468, + [SMALL_STATE(2108)] = 65511, + [SMALL_STATE(2109)] = 65540, + [SMALL_STATE(2110)] = 65593, + [SMALL_STATE(2111)] = 65626, + [SMALL_STATE(2112)] = 65659, + [SMALL_STATE(2113)] = 65687, + [SMALL_STATE(2114)] = 65715, + [SMALL_STATE(2115)] = 65743, + [SMALL_STATE(2116)] = 65771, + [SMALL_STATE(2117)] = 65799, + [SMALL_STATE(2118)] = 65827, + [SMALL_STATE(2119)] = 65855, + [SMALL_STATE(2120)] = 65883, + [SMALL_STATE(2121)] = 65911, + [SMALL_STATE(2122)] = 65939, + [SMALL_STATE(2123)] = 65967, + [SMALL_STATE(2124)] = 65995, + [SMALL_STATE(2125)] = 66023, + [SMALL_STATE(2126)] = 66051, + [SMALL_STATE(2127)] = 66079, + [SMALL_STATE(2128)] = 66107, + [SMALL_STATE(2129)] = 66135, + [SMALL_STATE(2130)] = 66163, + [SMALL_STATE(2131)] = 66193, + [SMALL_STATE(2132)] = 66221, + [SMALL_STATE(2133)] = 66249, + [SMALL_STATE(2134)] = 66277, + [SMALL_STATE(2135)] = 66305, + [SMALL_STATE(2136)] = 66333, + [SMALL_STATE(2137)] = 66361, + [SMALL_STATE(2138)] = 66389, + [SMALL_STATE(2139)] = 66417, + [SMALL_STATE(2140)] = 66461, + [SMALL_STATE(2141)] = 66489, + [SMALL_STATE(2142)] = 66517, + [SMALL_STATE(2143)] = 66545, + [SMALL_STATE(2144)] = 66573, + [SMALL_STATE(2145)] = 66601, + [SMALL_STATE(2146)] = 66629, + [SMALL_STATE(2147)] = 66657, + [SMALL_STATE(2148)] = 66687, + [SMALL_STATE(2149)] = 66715, + [SMALL_STATE(2150)] = 66743, + [SMALL_STATE(2151)] = 66772, + [SMALL_STATE(2152)] = 66801, + [SMALL_STATE(2153)] = 66830, + [SMALL_STATE(2154)] = 66865, + [SMALL_STATE(2155)] = 66894, + [SMALL_STATE(2156)] = 66923, + [SMALL_STATE(2157)] = 66952, + [SMALL_STATE(2158)] = 66981, + [SMALL_STATE(2159)] = 67010, + [SMALL_STATE(2160)] = 67039, + [SMALL_STATE(2161)] = 67068, + [SMALL_STATE(2162)] = 67100, + [SMALL_STATE(2163)] = 67132, + [SMALL_STATE(2164)] = 67164, + [SMALL_STATE(2165)] = 67210, + [SMALL_STATE(2166)] = 67238, + [SMALL_STATE(2167)] = 67284, + [SMALL_STATE(2168)] = 67324, + [SMALL_STATE(2169)] = 67364, + [SMALL_STATE(2170)] = 67394, + [SMALL_STATE(2171)] = 67426, + [SMALL_STATE(2172)] = 67470, + [SMALL_STATE(2173)] = 67516, + [SMALL_STATE(2174)] = 67548, + [SMALL_STATE(2175)] = 67594, + [SMALL_STATE(2176)] = 67626, + [SMALL_STATE(2177)] = 67658, + [SMALL_STATE(2178)] = 67704, + [SMALL_STATE(2179)] = 67736, + [SMALL_STATE(2180)] = 67768, + [SMALL_STATE(2181)] = 67800, + [SMALL_STATE(2182)] = 67832, + [SMALL_STATE(2183)] = 67878, + [SMALL_STATE(2184)] = 67910, + [SMALL_STATE(2185)] = 67956, + [SMALL_STATE(2186)] = 67985, + [SMALL_STATE(2187)] = 68028, + [SMALL_STATE(2188)] = 68071, + [SMALL_STATE(2189)] = 68100, + [SMALL_STATE(2190)] = 68143, + [SMALL_STATE(2191)] = 68186, + [SMALL_STATE(2192)] = 68223, + [SMALL_STATE(2193)] = 68266, + [SMALL_STATE(2194)] = 68303, + [SMALL_STATE(2195)] = 68346, + [SMALL_STATE(2196)] = 68380, + [SMALL_STATE(2197)] = 68408, + [SMALL_STATE(2198)] = 68446, + [SMALL_STATE(2199)] = 68486, + [SMALL_STATE(2200)] = 68530, + [SMALL_STATE(2201)] = 68564, + [SMALL_STATE(2202)] = 68592, + [SMALL_STATE(2203)] = 68616, + [SMALL_STATE(2204)] = 68660, + [SMALL_STATE(2205)] = 68688, + [SMALL_STATE(2206)] = 68718, + [SMALL_STATE(2207)] = 68746, + [SMALL_STATE(2208)] = 68770, [SMALL_STATE(2209)] = 68808, - [SMALL_STATE(2210)] = 68849, - [SMALL_STATE(2211)] = 68872, - [SMALL_STATE(2212)] = 68895, - [SMALL_STATE(2213)] = 68932, - [SMALL_STATE(2214)] = 68955, - [SMALL_STATE(2215)] = 68978, - [SMALL_STATE(2216)] = 69015, - [SMALL_STATE(2217)] = 69038, - [SMALL_STATE(2218)] = 69061, - [SMALL_STATE(2219)] = 69084, - [SMALL_STATE(2220)] = 69107, - [SMALL_STATE(2221)] = 69130, - [SMALL_STATE(2222)] = 69153, - [SMALL_STATE(2223)] = 69184, - [SMALL_STATE(2224)] = 69215, - [SMALL_STATE(2225)] = 69250, - [SMALL_STATE(2226)] = 69273, - [SMALL_STATE(2227)] = 69308, - [SMALL_STATE(2228)] = 69331, - [SMALL_STATE(2229)] = 69362, - [SMALL_STATE(2230)] = 69385, - [SMALL_STATE(2231)] = 69408, - [SMALL_STATE(2232)] = 69449, - [SMALL_STATE(2233)] = 69473, - [SMALL_STATE(2234)] = 69505, - [SMALL_STATE(2235)] = 69535, - [SMALL_STATE(2236)] = 69563, - [SMALL_STATE(2237)] = 69591, - [SMALL_STATE(2238)] = 69615, - [SMALL_STATE(2239)] = 69653, - [SMALL_STATE(2240)] = 69683, - [SMALL_STATE(2241)] = 69711, - [SMALL_STATE(2242)] = 69743, - [SMALL_STATE(2243)] = 69771, - [SMALL_STATE(2244)] = 69799, - [SMALL_STATE(2245)] = 69837, - [SMALL_STATE(2246)] = 69875, - [SMALL_STATE(2247)] = 69913, - [SMALL_STATE(2248)] = 69939, - [SMALL_STATE(2249)] = 69967, - [SMALL_STATE(2250)] = 70005, - [SMALL_STATE(2251)] = 70043, - [SMALL_STATE(2252)] = 70067, - [SMALL_STATE(2253)] = 70099, - [SMALL_STATE(2254)] = 70137, - [SMALL_STATE(2255)] = 70175, - [SMALL_STATE(2256)] = 70205, - [SMALL_STATE(2257)] = 70243, - [SMALL_STATE(2258)] = 70281, - [SMALL_STATE(2259)] = 70311, - [SMALL_STATE(2260)] = 70345, - [SMALL_STATE(2261)] = 70373, - [SMALL_STATE(2262)] = 70411, - [SMALL_STATE(2263)] = 70435, - [SMALL_STATE(2264)] = 70461, - [SMALL_STATE(2265)] = 70487, - [SMALL_STATE(2266)] = 70521, - [SMALL_STATE(2267)] = 70559, - [SMALL_STATE(2268)] = 70591, - [SMALL_STATE(2269)] = 70627, - [SMALL_STATE(2270)] = 70665, - [SMALL_STATE(2271)] = 70697, - [SMALL_STATE(2272)] = 70729, - [SMALL_STATE(2273)] = 70767, - [SMALL_STATE(2274)] = 70805, - [SMALL_STATE(2275)] = 70837, - [SMALL_STATE(2276)] = 70869, - [SMALL_STATE(2277)] = 70907, - [SMALL_STATE(2278)] = 70939, - [SMALL_STATE(2279)] = 70971, - [SMALL_STATE(2280)] = 71003, - [SMALL_STATE(2281)] = 71035, - [SMALL_STATE(2282)] = 71063, - [SMALL_STATE(2283)] = 71095, - [SMALL_STATE(2284)] = 71119, - [SMALL_STATE(2285)] = 71144, - [SMALL_STATE(2286)] = 71179, - [SMALL_STATE(2287)] = 71214, - [SMALL_STATE(2288)] = 71249, - [SMALL_STATE(2289)] = 71284, - [SMALL_STATE(2290)] = 71319, - [SMALL_STATE(2291)] = 71354, - [SMALL_STATE(2292)] = 71389, - [SMALL_STATE(2293)] = 71424, - [SMALL_STATE(2294)] = 71459, - [SMALL_STATE(2295)] = 71494, - [SMALL_STATE(2296)] = 71529, - [SMALL_STATE(2297)] = 71554, - [SMALL_STATE(2298)] = 71589, - [SMALL_STATE(2299)] = 71622, - [SMALL_STATE(2300)] = 71657, - [SMALL_STATE(2301)] = 71692, - [SMALL_STATE(2302)] = 71713, - [SMALL_STATE(2303)] = 71734, - [SMALL_STATE(2304)] = 71755, - [SMALL_STATE(2305)] = 71782, - [SMALL_STATE(2306)] = 71817, - [SMALL_STATE(2307)] = 71852, - [SMALL_STATE(2308)] = 71885, - [SMALL_STATE(2309)] = 71920, - [SMALL_STATE(2310)] = 71955, - [SMALL_STATE(2311)] = 71980, - [SMALL_STATE(2312)] = 72013, - [SMALL_STATE(2313)] = 72048, - [SMALL_STATE(2314)] = 72083, - [SMALL_STATE(2315)] = 72118, - [SMALL_STATE(2316)] = 72153, - [SMALL_STATE(2317)] = 72188, - [SMALL_STATE(2318)] = 72217, - [SMALL_STATE(2319)] = 72252, - [SMALL_STATE(2320)] = 72287, - [SMALL_STATE(2321)] = 72322, - [SMALL_STATE(2322)] = 72357, - [SMALL_STATE(2323)] = 72390, - [SMALL_STATE(2324)] = 72425, - [SMALL_STATE(2325)] = 72460, - [SMALL_STATE(2326)] = 72495, - [SMALL_STATE(2327)] = 72530, - [SMALL_STATE(2328)] = 72551, - [SMALL_STATE(2329)] = 72586, - [SMALL_STATE(2330)] = 72621, - [SMALL_STATE(2331)] = 72656, - [SMALL_STATE(2332)] = 72689, - [SMALL_STATE(2333)] = 72724, - [SMALL_STATE(2334)] = 72759, - [SMALL_STATE(2335)] = 72794, - [SMALL_STATE(2336)] = 72829, - [SMALL_STATE(2337)] = 72864, - [SMALL_STATE(2338)] = 72899, - [SMALL_STATE(2339)] = 72931, - [SMALL_STATE(2340)] = 72959, - [SMALL_STATE(2341)] = 72989, - [SMALL_STATE(2342)] = 73021, - [SMALL_STATE(2343)] = 73053, - [SMALL_STATE(2344)] = 73079, - [SMALL_STATE(2345)] = 73111, - [SMALL_STATE(2346)] = 73143, - [SMALL_STATE(2347)] = 73175, - [SMALL_STATE(2348)] = 73207, - [SMALL_STATE(2349)] = 73237, - [SMALL_STATE(2350)] = 73269, - [SMALL_STATE(2351)] = 73299, - [SMALL_STATE(2352)] = 73331, - [SMALL_STATE(2353)] = 73363, - [SMALL_STATE(2354)] = 73395, - [SMALL_STATE(2355)] = 73427, - [SMALL_STATE(2356)] = 73459, - [SMALL_STATE(2357)] = 73487, - [SMALL_STATE(2358)] = 73515, - [SMALL_STATE(2359)] = 73541, - [SMALL_STATE(2360)] = 73567, - [SMALL_STATE(2361)] = 73599, - [SMALL_STATE(2362)] = 73631, - [SMALL_STATE(2363)] = 73663, - [SMALL_STATE(2364)] = 73695, - [SMALL_STATE(2365)] = 73727, - [SMALL_STATE(2366)] = 73759, - [SMALL_STATE(2367)] = 73791, - [SMALL_STATE(2368)] = 73821, - [SMALL_STATE(2369)] = 73849, - [SMALL_STATE(2370)] = 73879, - [SMALL_STATE(2371)] = 73911, - [SMALL_STATE(2372)] = 73941, - [SMALL_STATE(2373)] = 73963, - [SMALL_STATE(2374)] = 73985, - [SMALL_STATE(2375)] = 74017, - [SMALL_STATE(2376)] = 74047, - [SMALL_STATE(2377)] = 74079, - [SMALL_STATE(2378)] = 74105, - [SMALL_STATE(2379)] = 74137, - [SMALL_STATE(2380)] = 74169, - [SMALL_STATE(2381)] = 74201, - [SMALL_STATE(2382)] = 74231, - [SMALL_STATE(2383)] = 74263, - [SMALL_STATE(2384)] = 74293, - [SMALL_STATE(2385)] = 74315, - [SMALL_STATE(2386)] = 74347, - [SMALL_STATE(2387)] = 74369, - [SMALL_STATE(2388)] = 74401, - [SMALL_STATE(2389)] = 74433, - [SMALL_STATE(2390)] = 74461, - [SMALL_STATE(2391)] = 74493, - [SMALL_STATE(2392)] = 74515, - [SMALL_STATE(2393)] = 74545, - [SMALL_STATE(2394)] = 74577, - [SMALL_STATE(2395)] = 74609, - [SMALL_STATE(2396)] = 74641, - [SMALL_STATE(2397)] = 74673, - [SMALL_STATE(2398)] = 74695, - [SMALL_STATE(2399)] = 74727, - [SMALL_STATE(2400)] = 74759, - [SMALL_STATE(2401)] = 74791, - [SMALL_STATE(2402)] = 74823, - [SMALL_STATE(2403)] = 74844, - [SMALL_STATE(2404)] = 74867, - [SMALL_STATE(2405)] = 74888, - [SMALL_STATE(2406)] = 74909, - [SMALL_STATE(2407)] = 74938, - [SMALL_STATE(2408)] = 74959, - [SMALL_STATE(2409)] = 74980, - [SMALL_STATE(2410)] = 75001, - [SMALL_STATE(2411)] = 75030, - [SMALL_STATE(2412)] = 75059, - [SMALL_STATE(2413)] = 75088, - [SMALL_STATE(2414)] = 75117, - [SMALL_STATE(2415)] = 75146, - [SMALL_STATE(2416)] = 75175, - [SMALL_STATE(2417)] = 75204, - [SMALL_STATE(2418)] = 75233, - [SMALL_STATE(2419)] = 75262, - [SMALL_STATE(2420)] = 75291, - [SMALL_STATE(2421)] = 75320, - [SMALL_STATE(2422)] = 75349, - [SMALL_STATE(2423)] = 75376, - [SMALL_STATE(2424)] = 75405, - [SMALL_STATE(2425)] = 75434, - [SMALL_STATE(2426)] = 75457, - [SMALL_STATE(2427)] = 75480, - [SMALL_STATE(2428)] = 75509, - [SMALL_STATE(2429)] = 75538, - [SMALL_STATE(2430)] = 75567, - [SMALL_STATE(2431)] = 75596, - [SMALL_STATE(2432)] = 75625, - [SMALL_STATE(2433)] = 75654, - [SMALL_STATE(2434)] = 75683, - [SMALL_STATE(2435)] = 75712, - [SMALL_STATE(2436)] = 75735, - [SMALL_STATE(2437)] = 75764, - [SMALL_STATE(2438)] = 75793, - [SMALL_STATE(2439)] = 75822, - [SMALL_STATE(2440)] = 75845, - [SMALL_STATE(2441)] = 75874, - [SMALL_STATE(2442)] = 75903, - [SMALL_STATE(2443)] = 75932, - [SMALL_STATE(2444)] = 75961, - [SMALL_STATE(2445)] = 75990, - [SMALL_STATE(2446)] = 76019, - [SMALL_STATE(2447)] = 76048, - [SMALL_STATE(2448)] = 76077, - [SMALL_STATE(2449)] = 76104, - [SMALL_STATE(2450)] = 76127, - [SMALL_STATE(2451)] = 76154, - [SMALL_STATE(2452)] = 76179, - [SMALL_STATE(2453)] = 76204, - [SMALL_STATE(2454)] = 76229, - [SMALL_STATE(2455)] = 76250, - [SMALL_STATE(2456)] = 76279, - [SMALL_STATE(2457)] = 76300, - [SMALL_STATE(2458)] = 76329, - [SMALL_STATE(2459)] = 76358, - [SMALL_STATE(2460)] = 76383, - [SMALL_STATE(2461)] = 76412, - [SMALL_STATE(2462)] = 76431, - [SMALL_STATE(2463)] = 76460, - [SMALL_STATE(2464)] = 76489, - [SMALL_STATE(2465)] = 76510, - [SMALL_STATE(2466)] = 76531, - [SMALL_STATE(2467)] = 76552, - [SMALL_STATE(2468)] = 76575, - [SMALL_STATE(2469)] = 76596, - [SMALL_STATE(2470)] = 76625, - [SMALL_STATE(2471)] = 76654, - [SMALL_STATE(2472)] = 76677, - [SMALL_STATE(2473)] = 76704, - [SMALL_STATE(2474)] = 76733, - [SMALL_STATE(2475)] = 76762, - [SMALL_STATE(2476)] = 76783, - [SMALL_STATE(2477)] = 76812, - [SMALL_STATE(2478)] = 76835, - [SMALL_STATE(2479)] = 76864, - [SMALL_STATE(2480)] = 76893, - [SMALL_STATE(2481)] = 76922, - [SMALL_STATE(2482)] = 76941, - [SMALL_STATE(2483)] = 76964, - [SMALL_STATE(2484)] = 76987, - [SMALL_STATE(2485)] = 77016, - [SMALL_STATE(2486)] = 77045, - [SMALL_STATE(2487)] = 77068, - [SMALL_STATE(2488)] = 77097, - [SMALL_STATE(2489)] = 77126, - [SMALL_STATE(2490)] = 77155, - [SMALL_STATE(2491)] = 77176, - [SMALL_STATE(2492)] = 77205, - [SMALL_STATE(2493)] = 77228, - [SMALL_STATE(2494)] = 77257, - [SMALL_STATE(2495)] = 77278, - [SMALL_STATE(2496)] = 77307, - [SMALL_STATE(2497)] = 77336, - [SMALL_STATE(2498)] = 77359, - [SMALL_STATE(2499)] = 77382, - [SMALL_STATE(2500)] = 77411, - [SMALL_STATE(2501)] = 77438, - [SMALL_STATE(2502)] = 77459, - [SMALL_STATE(2503)] = 77488, - [SMALL_STATE(2504)] = 77515, - [SMALL_STATE(2505)] = 77544, - [SMALL_STATE(2506)] = 77573, - [SMALL_STATE(2507)] = 77596, - [SMALL_STATE(2508)] = 77625, - [SMALL_STATE(2509)] = 77651, - [SMALL_STATE(2510)] = 77669, - [SMALL_STATE(2511)] = 77695, - [SMALL_STATE(2512)] = 77721, - [SMALL_STATE(2513)] = 77747, - [SMALL_STATE(2514)] = 77771, - [SMALL_STATE(2515)] = 77797, - [SMALL_STATE(2516)] = 77821, - [SMALL_STATE(2517)] = 77847, - [SMALL_STATE(2518)] = 77873, - [SMALL_STATE(2519)] = 77891, - [SMALL_STATE(2520)] = 77917, - [SMALL_STATE(2521)] = 77943, - [SMALL_STATE(2522)] = 77969, - [SMALL_STATE(2523)] = 77987, - [SMALL_STATE(2524)] = 78013, - [SMALL_STATE(2525)] = 78039, - [SMALL_STATE(2526)] = 78065, - [SMALL_STATE(2527)] = 78089, - [SMALL_STATE(2528)] = 78111, - [SMALL_STATE(2529)] = 78133, - [SMALL_STATE(2530)] = 78151, - [SMALL_STATE(2531)] = 78177, - [SMALL_STATE(2532)] = 78201, - [SMALL_STATE(2533)] = 78227, - [SMALL_STATE(2534)] = 78245, - [SMALL_STATE(2535)] = 78271, - [SMALL_STATE(2536)] = 78289, - [SMALL_STATE(2537)] = 78313, - [SMALL_STATE(2538)] = 78339, - [SMALL_STATE(2539)] = 78365, - [SMALL_STATE(2540)] = 78389, - [SMALL_STATE(2541)] = 78409, - [SMALL_STATE(2542)] = 78427, - [SMALL_STATE(2543)] = 78453, - [SMALL_STATE(2544)] = 78475, - [SMALL_STATE(2545)] = 78495, - [SMALL_STATE(2546)] = 78521, - [SMALL_STATE(2547)] = 78547, - [SMALL_STATE(2548)] = 78565, - [SMALL_STATE(2549)] = 78591, - [SMALL_STATE(2550)] = 78617, - [SMALL_STATE(2551)] = 78635, - [SMALL_STATE(2552)] = 78653, - [SMALL_STATE(2553)] = 78679, - [SMALL_STATE(2554)] = 78697, - [SMALL_STATE(2555)] = 78721, - [SMALL_STATE(2556)] = 78739, - [SMALL_STATE(2557)] = 78765, - [SMALL_STATE(2558)] = 78791, - [SMALL_STATE(2559)] = 78817, - [SMALL_STATE(2560)] = 78835, - [SMALL_STATE(2561)] = 78859, - [SMALL_STATE(2562)] = 78877, - [SMALL_STATE(2563)] = 78899, - [SMALL_STATE(2564)] = 78917, - [SMALL_STATE(2565)] = 78937, - [SMALL_STATE(2566)] = 78963, - [SMALL_STATE(2567)] = 78987, - [SMALL_STATE(2568)] = 79013, - [SMALL_STATE(2569)] = 79037, - [SMALL_STATE(2570)] = 79063, - [SMALL_STATE(2571)] = 79089, - [SMALL_STATE(2572)] = 79115, - [SMALL_STATE(2573)] = 79137, - [SMALL_STATE(2574)] = 79163, - [SMALL_STATE(2575)] = 79181, - [SMALL_STATE(2576)] = 79199, - [SMALL_STATE(2577)] = 79225, - [SMALL_STATE(2578)] = 79249, - [SMALL_STATE(2579)] = 79275, - [SMALL_STATE(2580)] = 79299, - [SMALL_STATE(2581)] = 79325, - [SMALL_STATE(2582)] = 79347, - [SMALL_STATE(2583)] = 79373, - [SMALL_STATE(2584)] = 79399, - [SMALL_STATE(2585)] = 79417, - [SMALL_STATE(2586)] = 79435, - [SMALL_STATE(2587)] = 79461, - [SMALL_STATE(2588)] = 79479, - [SMALL_STATE(2589)] = 79501, - [SMALL_STATE(2590)] = 79527, - [SMALL_STATE(2591)] = 79553, - [SMALL_STATE(2592)] = 79577, - [SMALL_STATE(2593)] = 79595, - [SMALL_STATE(2594)] = 79621, - [SMALL_STATE(2595)] = 79639, - [SMALL_STATE(2596)] = 79665, - [SMALL_STATE(2597)] = 79691, - [SMALL_STATE(2598)] = 79715, - [SMALL_STATE(2599)] = 79733, - [SMALL_STATE(2600)] = 79759, - [SMALL_STATE(2601)] = 79785, - [SMALL_STATE(2602)] = 79803, - [SMALL_STATE(2603)] = 79829, - [SMALL_STATE(2604)] = 79855, - [SMALL_STATE(2605)] = 79881, - [SMALL_STATE(2606)] = 79901, - [SMALL_STATE(2607)] = 79927, - [SMALL_STATE(2608)] = 79949, - [SMALL_STATE(2609)] = 79975, - [SMALL_STATE(2610)] = 80001, - [SMALL_STATE(2611)] = 80027, - [SMALL_STATE(2612)] = 80051, - [SMALL_STATE(2613)] = 80075, - [SMALL_STATE(2614)] = 80093, - [SMALL_STATE(2615)] = 80111, - [SMALL_STATE(2616)] = 80137, - [SMALL_STATE(2617)] = 80160, - [SMALL_STATE(2618)] = 80183, - [SMALL_STATE(2619)] = 80206, - [SMALL_STATE(2620)] = 80229, - [SMALL_STATE(2621)] = 80252, - [SMALL_STATE(2622)] = 80275, - [SMALL_STATE(2623)] = 80298, - [SMALL_STATE(2624)] = 80321, - [SMALL_STATE(2625)] = 80344, - [SMALL_STATE(2626)] = 80367, - [SMALL_STATE(2627)] = 80390, - [SMALL_STATE(2628)] = 80413, - [SMALL_STATE(2629)] = 80434, - [SMALL_STATE(2630)] = 80457, - [SMALL_STATE(2631)] = 80480, - [SMALL_STATE(2632)] = 80503, - [SMALL_STATE(2633)] = 80526, - [SMALL_STATE(2634)] = 80549, - [SMALL_STATE(2635)] = 80572, - [SMALL_STATE(2636)] = 80591, - [SMALL_STATE(2637)] = 80614, - [SMALL_STATE(2638)] = 80637, - [SMALL_STATE(2639)] = 80660, - [SMALL_STATE(2640)] = 80683, - [SMALL_STATE(2641)] = 80706, - [SMALL_STATE(2642)] = 80729, - [SMALL_STATE(2643)] = 80750, - [SMALL_STATE(2644)] = 80773, - [SMALL_STATE(2645)] = 80796, - [SMALL_STATE(2646)] = 80819, - [SMALL_STATE(2647)] = 80842, - [SMALL_STATE(2648)] = 80863, - [SMALL_STATE(2649)] = 80886, - [SMALL_STATE(2650)] = 80905, - [SMALL_STATE(2651)] = 80926, - [SMALL_STATE(2652)] = 80949, - [SMALL_STATE(2653)] = 80972, - [SMALL_STATE(2654)] = 80995, - [SMALL_STATE(2655)] = 81018, - [SMALL_STATE(2656)] = 81041, - [SMALL_STATE(2657)] = 81060, - [SMALL_STATE(2658)] = 81083, - [SMALL_STATE(2659)] = 81104, - [SMALL_STATE(2660)] = 81127, - [SMALL_STATE(2661)] = 81146, - [SMALL_STATE(2662)] = 81169, - [SMALL_STATE(2663)] = 81192, - [SMALL_STATE(2664)] = 81215, - [SMALL_STATE(2665)] = 81238, - [SMALL_STATE(2666)] = 81261, - [SMALL_STATE(2667)] = 81284, - [SMALL_STATE(2668)] = 81307, - [SMALL_STATE(2669)] = 81330, - [SMALL_STATE(2670)] = 81351, - [SMALL_STATE(2671)] = 81374, - [SMALL_STATE(2672)] = 81397, - [SMALL_STATE(2673)] = 81420, - [SMALL_STATE(2674)] = 81441, - [SMALL_STATE(2675)] = 81460, - [SMALL_STATE(2676)] = 81483, - [SMALL_STATE(2677)] = 81504, - [SMALL_STATE(2678)] = 81527, - [SMALL_STATE(2679)] = 81550, - [SMALL_STATE(2680)] = 81573, - [SMALL_STATE(2681)] = 81596, - [SMALL_STATE(2682)] = 81619, - [SMALL_STATE(2683)] = 81642, - [SMALL_STATE(2684)] = 81665, - [SMALL_STATE(2685)] = 81688, - [SMALL_STATE(2686)] = 81711, - [SMALL_STATE(2687)] = 81734, - [SMALL_STATE(2688)] = 81757, - [SMALL_STATE(2689)] = 81780, - [SMALL_STATE(2690)] = 81803, - [SMALL_STATE(2691)] = 81822, - [SMALL_STATE(2692)] = 81845, - [SMALL_STATE(2693)] = 81868, - [SMALL_STATE(2694)] = 81891, - [SMALL_STATE(2695)] = 81914, - [SMALL_STATE(2696)] = 81937, - [SMALL_STATE(2697)] = 81960, - [SMALL_STATE(2698)] = 81983, - [SMALL_STATE(2699)] = 82006, - [SMALL_STATE(2700)] = 82029, - [SMALL_STATE(2701)] = 82050, - [SMALL_STATE(2702)] = 82071, - [SMALL_STATE(2703)] = 82094, - [SMALL_STATE(2704)] = 82117, - [SMALL_STATE(2705)] = 82138, - [SMALL_STATE(2706)] = 82161, - [SMALL_STATE(2707)] = 82184, - [SMALL_STATE(2708)] = 82207, - [SMALL_STATE(2709)] = 82230, - [SMALL_STATE(2710)] = 82253, - [SMALL_STATE(2711)] = 82276, - [SMALL_STATE(2712)] = 82299, - [SMALL_STATE(2713)] = 82318, - [SMALL_STATE(2714)] = 82341, - [SMALL_STATE(2715)] = 82362, - [SMALL_STATE(2716)] = 82385, - [SMALL_STATE(2717)] = 82408, - [SMALL_STATE(2718)] = 82431, - [SMALL_STATE(2719)] = 82454, - [SMALL_STATE(2720)] = 82477, - [SMALL_STATE(2721)] = 82498, - [SMALL_STATE(2722)] = 82521, - [SMALL_STATE(2723)] = 82544, - [SMALL_STATE(2724)] = 82567, - [SMALL_STATE(2725)] = 82588, - [SMALL_STATE(2726)] = 82609, - [SMALL_STATE(2727)] = 82632, - [SMALL_STATE(2728)] = 82651, - [SMALL_STATE(2729)] = 82672, - [SMALL_STATE(2730)] = 82695, - [SMALL_STATE(2731)] = 82718, - [SMALL_STATE(2732)] = 82741, - [SMALL_STATE(2733)] = 82764, - [SMALL_STATE(2734)] = 82783, - [SMALL_STATE(2735)] = 82802, - [SMALL_STATE(2736)] = 82825, - [SMALL_STATE(2737)] = 82848, - [SMALL_STATE(2738)] = 82871, - [SMALL_STATE(2739)] = 82888, - [SMALL_STATE(2740)] = 82911, - [SMALL_STATE(2741)] = 82934, - [SMALL_STATE(2742)] = 82957, - [SMALL_STATE(2743)] = 82976, - [SMALL_STATE(2744)] = 82999, - [SMALL_STATE(2745)] = 83022, - [SMALL_STATE(2746)] = 83041, - [SMALL_STATE(2747)] = 83058, - [SMALL_STATE(2748)] = 83081, - [SMALL_STATE(2749)] = 83098, - [SMALL_STATE(2750)] = 83121, - [SMALL_STATE(2751)] = 83144, - [SMALL_STATE(2752)] = 83163, - [SMALL_STATE(2753)] = 83182, - [SMALL_STATE(2754)] = 83205, - [SMALL_STATE(2755)] = 83228, - [SMALL_STATE(2756)] = 83247, - [SMALL_STATE(2757)] = 83268, - [SMALL_STATE(2758)] = 83287, - [SMALL_STATE(2759)] = 83310, - [SMALL_STATE(2760)] = 83329, - [SMALL_STATE(2761)] = 83352, - [SMALL_STATE(2762)] = 83375, - [SMALL_STATE(2763)] = 83398, - [SMALL_STATE(2764)] = 83421, - [SMALL_STATE(2765)] = 83442, - [SMALL_STATE(2766)] = 83463, - [SMALL_STATE(2767)] = 83486, - [SMALL_STATE(2768)] = 83509, - [SMALL_STATE(2769)] = 83532, - [SMALL_STATE(2770)] = 83551, - [SMALL_STATE(2771)] = 83574, - [SMALL_STATE(2772)] = 83597, - [SMALL_STATE(2773)] = 83618, - [SMALL_STATE(2774)] = 83637, - [SMALL_STATE(2775)] = 83660, - [SMALL_STATE(2776)] = 83683, - [SMALL_STATE(2777)] = 83706, - [SMALL_STATE(2778)] = 83729, - [SMALL_STATE(2779)] = 83752, - [SMALL_STATE(2780)] = 83775, - [SMALL_STATE(2781)] = 83798, - [SMALL_STATE(2782)] = 83821, - [SMALL_STATE(2783)] = 83844, - [SMALL_STATE(2784)] = 83863, - [SMALL_STATE(2785)] = 83886, - [SMALL_STATE(2786)] = 83905, - [SMALL_STATE(2787)] = 83928, - [SMALL_STATE(2788)] = 83951, - [SMALL_STATE(2789)] = 83974, - [SMALL_STATE(2790)] = 83997, - [SMALL_STATE(2791)] = 84016, - [SMALL_STATE(2792)] = 84039, - [SMALL_STATE(2793)] = 84062, - [SMALL_STATE(2794)] = 84085, - [SMALL_STATE(2795)] = 84104, - [SMALL_STATE(2796)] = 84127, - [SMALL_STATE(2797)] = 84150, - [SMALL_STATE(2798)] = 84173, - [SMALL_STATE(2799)] = 84196, - [SMALL_STATE(2800)] = 84219, - [SMALL_STATE(2801)] = 84242, - [SMALL_STATE(2802)] = 84265, - [SMALL_STATE(2803)] = 84288, - [SMALL_STATE(2804)] = 84311, - [SMALL_STATE(2805)] = 84334, - [SMALL_STATE(2806)] = 84357, - [SMALL_STATE(2807)] = 84378, - [SMALL_STATE(2808)] = 84401, - [SMALL_STATE(2809)] = 84420, - [SMALL_STATE(2810)] = 84443, - [SMALL_STATE(2811)] = 84466, - [SMALL_STATE(2812)] = 84485, - [SMALL_STATE(2813)] = 84504, - [SMALL_STATE(2814)] = 84523, - [SMALL_STATE(2815)] = 84546, - [SMALL_STATE(2816)] = 84569, - [SMALL_STATE(2817)] = 84588, - [SMALL_STATE(2818)] = 84609, - [SMALL_STATE(2819)] = 84632, - [SMALL_STATE(2820)] = 84655, - [SMALL_STATE(2821)] = 84678, - [SMALL_STATE(2822)] = 84701, - [SMALL_STATE(2823)] = 84724, - [SMALL_STATE(2824)] = 84747, - [SMALL_STATE(2825)] = 84770, - [SMALL_STATE(2826)] = 84793, - [SMALL_STATE(2827)] = 84812, - [SMALL_STATE(2828)] = 84831, - [SMALL_STATE(2829)] = 84854, - [SMALL_STATE(2830)] = 84875, - [SMALL_STATE(2831)] = 84894, - [SMALL_STATE(2832)] = 84917, - [SMALL_STATE(2833)] = 84940, - [SMALL_STATE(2834)] = 84963, - [SMALL_STATE(2835)] = 84986, - [SMALL_STATE(2836)] = 85009, - [SMALL_STATE(2837)] = 85028, - [SMALL_STATE(2838)] = 85051, - [SMALL_STATE(2839)] = 85074, - [SMALL_STATE(2840)] = 85097, - [SMALL_STATE(2841)] = 85120, - [SMALL_STATE(2842)] = 85143, - [SMALL_STATE(2843)] = 85166, - [SMALL_STATE(2844)] = 85189, - [SMALL_STATE(2845)] = 85212, - [SMALL_STATE(2846)] = 85235, - [SMALL_STATE(2847)] = 85258, - [SMALL_STATE(2848)] = 85281, - [SMALL_STATE(2849)] = 85304, - [SMALL_STATE(2850)] = 85327, - [SMALL_STATE(2851)] = 85350, - [SMALL_STATE(2852)] = 85373, - [SMALL_STATE(2853)] = 85396, - [SMALL_STATE(2854)] = 85419, - [SMALL_STATE(2855)] = 85442, - [SMALL_STATE(2856)] = 85465, - [SMALL_STATE(2857)] = 85488, - [SMALL_STATE(2858)] = 85511, - [SMALL_STATE(2859)] = 85534, - [SMALL_STATE(2860)] = 85557, - [SMALL_STATE(2861)] = 85574, - [SMALL_STATE(2862)] = 85597, - [SMALL_STATE(2863)] = 85620, - [SMALL_STATE(2864)] = 85643, - [SMALL_STATE(2865)] = 85666, - [SMALL_STATE(2866)] = 85687, - [SMALL_STATE(2867)] = 85710, - [SMALL_STATE(2868)] = 85733, - [SMALL_STATE(2869)] = 85756, - [SMALL_STATE(2870)] = 85779, - [SMALL_STATE(2871)] = 85802, - [SMALL_STATE(2872)] = 85823, - [SMALL_STATE(2873)] = 85846, - [SMALL_STATE(2874)] = 85869, - [SMALL_STATE(2875)] = 85892, - [SMALL_STATE(2876)] = 85909, - [SMALL_STATE(2877)] = 85930, - [SMALL_STATE(2878)] = 85953, - [SMALL_STATE(2879)] = 85973, - [SMALL_STATE(2880)] = 85993, - [SMALL_STATE(2881)] = 86013, - [SMALL_STATE(2882)] = 86031, - [SMALL_STATE(2883)] = 86051, - [SMALL_STATE(2884)] = 86067, - [SMALL_STATE(2885)] = 86087, - [SMALL_STATE(2886)] = 86107, - [SMALL_STATE(2887)] = 86127, - [SMALL_STATE(2888)] = 86147, - [SMALL_STATE(2889)] = 86167, - [SMALL_STATE(2890)] = 86187, - [SMALL_STATE(2891)] = 86207, - [SMALL_STATE(2892)] = 86227, - [SMALL_STATE(2893)] = 86243, - [SMALL_STATE(2894)] = 86263, - [SMALL_STATE(2895)] = 86283, - [SMALL_STATE(2896)] = 86303, - [SMALL_STATE(2897)] = 86323, - [SMALL_STATE(2898)] = 86343, - [SMALL_STATE(2899)] = 86363, - [SMALL_STATE(2900)] = 86383, - [SMALL_STATE(2901)] = 86403, - [SMALL_STATE(2902)] = 86423, - [SMALL_STATE(2903)] = 86443, - [SMALL_STATE(2904)] = 86463, - [SMALL_STATE(2905)] = 86483, - [SMALL_STATE(2906)] = 86503, - [SMALL_STATE(2907)] = 86521, - [SMALL_STATE(2908)] = 86541, - [SMALL_STATE(2909)] = 86561, - [SMALL_STATE(2910)] = 86581, - [SMALL_STATE(2911)] = 86599, - [SMALL_STATE(2912)] = 86619, - [SMALL_STATE(2913)] = 86639, - [SMALL_STATE(2914)] = 86659, - [SMALL_STATE(2915)] = 86679, - [SMALL_STATE(2916)] = 86699, - [SMALL_STATE(2917)] = 86719, - [SMALL_STATE(2918)] = 86739, - [SMALL_STATE(2919)] = 86759, - [SMALL_STATE(2920)] = 86779, - [SMALL_STATE(2921)] = 86799, - [SMALL_STATE(2922)] = 86819, - [SMALL_STATE(2923)] = 86839, - [SMALL_STATE(2924)] = 86859, - [SMALL_STATE(2925)] = 86879, - [SMALL_STATE(2926)] = 86899, - [SMALL_STATE(2927)] = 86919, - [SMALL_STATE(2928)] = 86935, - [SMALL_STATE(2929)] = 86955, - [SMALL_STATE(2930)] = 86975, - [SMALL_STATE(2931)] = 86991, - [SMALL_STATE(2932)] = 87011, - [SMALL_STATE(2933)] = 87029, - [SMALL_STATE(2934)] = 87045, - [SMALL_STATE(2935)] = 87065, - [SMALL_STATE(2936)] = 87081, - [SMALL_STATE(2937)] = 87101, - [SMALL_STATE(2938)] = 87121, - [SMALL_STATE(2939)] = 87137, - [SMALL_STATE(2940)] = 87153, - [SMALL_STATE(2941)] = 87173, - [SMALL_STATE(2942)] = 87193, - [SMALL_STATE(2943)] = 87213, - [SMALL_STATE(2944)] = 87233, - [SMALL_STATE(2945)] = 87253, - [SMALL_STATE(2946)] = 87273, - [SMALL_STATE(2947)] = 87293, - [SMALL_STATE(2948)] = 87313, - [SMALL_STATE(2949)] = 87333, - [SMALL_STATE(2950)] = 87353, - [SMALL_STATE(2951)] = 87369, - [SMALL_STATE(2952)] = 87389, - [SMALL_STATE(2953)] = 87407, - [SMALL_STATE(2954)] = 87427, - [SMALL_STATE(2955)] = 87447, - [SMALL_STATE(2956)] = 87467, - [SMALL_STATE(2957)] = 87485, - [SMALL_STATE(2958)] = 87505, - [SMALL_STATE(2959)] = 87525, - [SMALL_STATE(2960)] = 87545, - [SMALL_STATE(2961)] = 87565, - [SMALL_STATE(2962)] = 87583, - [SMALL_STATE(2963)] = 87603, - [SMALL_STATE(2964)] = 87623, - [SMALL_STATE(2965)] = 87643, - [SMALL_STATE(2966)] = 87663, - [SMALL_STATE(2967)] = 87683, - [SMALL_STATE(2968)] = 87703, - [SMALL_STATE(2969)] = 87723, - [SMALL_STATE(2970)] = 87743, - [SMALL_STATE(2971)] = 87761, - [SMALL_STATE(2972)] = 87781, - [SMALL_STATE(2973)] = 87797, - [SMALL_STATE(2974)] = 87813, - [SMALL_STATE(2975)] = 87833, - [SMALL_STATE(2976)] = 87853, - [SMALL_STATE(2977)] = 87873, - [SMALL_STATE(2978)] = 87893, - [SMALL_STATE(2979)] = 87913, - [SMALL_STATE(2980)] = 87933, - [SMALL_STATE(2981)] = 87953, - [SMALL_STATE(2982)] = 87973, - [SMALL_STATE(2983)] = 87989, - [SMALL_STATE(2984)] = 88009, - [SMALL_STATE(2985)] = 88029, - [SMALL_STATE(2986)] = 88049, - [SMALL_STATE(2987)] = 88069, - [SMALL_STATE(2988)] = 88085, - [SMALL_STATE(2989)] = 88105, - [SMALL_STATE(2990)] = 88123, - [SMALL_STATE(2991)] = 88141, - [SMALL_STATE(2992)] = 88157, - [SMALL_STATE(2993)] = 88177, - [SMALL_STATE(2994)] = 88197, - [SMALL_STATE(2995)] = 88217, - [SMALL_STATE(2996)] = 88233, - [SMALL_STATE(2997)] = 88249, - [SMALL_STATE(2998)] = 88265, - [SMALL_STATE(2999)] = 88281, - [SMALL_STATE(3000)] = 88297, - [SMALL_STATE(3001)] = 88313, - [SMALL_STATE(3002)] = 88333, - [SMALL_STATE(3003)] = 88353, - [SMALL_STATE(3004)] = 88373, - [SMALL_STATE(3005)] = 88393, - [SMALL_STATE(3006)] = 88413, - [SMALL_STATE(3007)] = 88429, - [SMALL_STATE(3008)] = 88445, - [SMALL_STATE(3009)] = 88465, - [SMALL_STATE(3010)] = 88485, - [SMALL_STATE(3011)] = 88501, - [SMALL_STATE(3012)] = 88521, - [SMALL_STATE(3013)] = 88541, - [SMALL_STATE(3014)] = 88557, - [SMALL_STATE(3015)] = 88573, - [SMALL_STATE(3016)] = 88589, - [SMALL_STATE(3017)] = 88605, - [SMALL_STATE(3018)] = 88621, - [SMALL_STATE(3019)] = 88641, - [SMALL_STATE(3020)] = 88657, - [SMALL_STATE(3021)] = 88677, - [SMALL_STATE(3022)] = 88697, - [SMALL_STATE(3023)] = 88717, - [SMALL_STATE(3024)] = 88737, - [SMALL_STATE(3025)] = 88757, - [SMALL_STATE(3026)] = 88777, - [SMALL_STATE(3027)] = 88795, - [SMALL_STATE(3028)] = 88815, - [SMALL_STATE(3029)] = 88831, - [SMALL_STATE(3030)] = 88851, - [SMALL_STATE(3031)] = 88871, - [SMALL_STATE(3032)] = 88891, - [SMALL_STATE(3033)] = 88911, - [SMALL_STATE(3034)] = 88929, - [SMALL_STATE(3035)] = 88949, - [SMALL_STATE(3036)] = 88969, - [SMALL_STATE(3037)] = 88989, - [SMALL_STATE(3038)] = 89007, - [SMALL_STATE(3039)] = 89027, - [SMALL_STATE(3040)] = 89043, - [SMALL_STATE(3041)] = 89063, - [SMALL_STATE(3042)] = 89083, - [SMALL_STATE(3043)] = 89101, - [SMALL_STATE(3044)] = 89121, - [SMALL_STATE(3045)] = 89141, - [SMALL_STATE(3046)] = 89161, - [SMALL_STATE(3047)] = 89179, - [SMALL_STATE(3048)] = 89199, - [SMALL_STATE(3049)] = 89219, - [SMALL_STATE(3050)] = 89239, - [SMALL_STATE(3051)] = 89259, - [SMALL_STATE(3052)] = 89279, - [SMALL_STATE(3053)] = 89299, - [SMALL_STATE(3054)] = 89317, - [SMALL_STATE(3055)] = 89333, - [SMALL_STATE(3056)] = 89353, - [SMALL_STATE(3057)] = 89371, - [SMALL_STATE(3058)] = 89391, - [SMALL_STATE(3059)] = 89407, - [SMALL_STATE(3060)] = 89427, - [SMALL_STATE(3061)] = 89447, - [SMALL_STATE(3062)] = 89467, - [SMALL_STATE(3063)] = 89487, - [SMALL_STATE(3064)] = 89505, - [SMALL_STATE(3065)] = 89525, - [SMALL_STATE(3066)] = 89543, - [SMALL_STATE(3067)] = 89563, - [SMALL_STATE(3068)] = 89579, - [SMALL_STATE(3069)] = 89595, - [SMALL_STATE(3070)] = 89615, - [SMALL_STATE(3071)] = 89633, - [SMALL_STATE(3072)] = 89651, - [SMALL_STATE(3073)] = 89667, - [SMALL_STATE(3074)] = 89685, - [SMALL_STATE(3075)] = 89703, - [SMALL_STATE(3076)] = 89723, - [SMALL_STATE(3077)] = 89743, - [SMALL_STATE(3078)] = 89763, - [SMALL_STATE(3079)] = 89781, - [SMALL_STATE(3080)] = 89801, - [SMALL_STATE(3081)] = 89821, - [SMALL_STATE(3082)] = 89837, - [SMALL_STATE(3083)] = 89855, - [SMALL_STATE(3084)] = 89875, - [SMALL_STATE(3085)] = 89895, - [SMALL_STATE(3086)] = 89915, - [SMALL_STATE(3087)] = 89935, - [SMALL_STATE(3088)] = 89953, - [SMALL_STATE(3089)] = 89969, - [SMALL_STATE(3090)] = 89989, - [SMALL_STATE(3091)] = 90005, - [SMALL_STATE(3092)] = 90023, - [SMALL_STATE(3093)] = 90041, - [SMALL_STATE(3094)] = 90061, - [SMALL_STATE(3095)] = 90081, - [SMALL_STATE(3096)] = 90101, - [SMALL_STATE(3097)] = 90117, - [SMALL_STATE(3098)] = 90135, - [SMALL_STATE(3099)] = 90153, - [SMALL_STATE(3100)] = 90173, - [SMALL_STATE(3101)] = 90193, - [SMALL_STATE(3102)] = 90211, - [SMALL_STATE(3103)] = 90227, - [SMALL_STATE(3104)] = 90245, - [SMALL_STATE(3105)] = 90265, - [SMALL_STATE(3106)] = 90285, - [SMALL_STATE(3107)] = 90305, - [SMALL_STATE(3108)] = 90325, - [SMALL_STATE(3109)] = 90345, - [SMALL_STATE(3110)] = 90365, - [SMALL_STATE(3111)] = 90385, - [SMALL_STATE(3112)] = 90405, - [SMALL_STATE(3113)] = 90425, - [SMALL_STATE(3114)] = 90445, - [SMALL_STATE(3115)] = 90465, - [SMALL_STATE(3116)] = 90485, - [SMALL_STATE(3117)] = 90503, - [SMALL_STATE(3118)] = 90523, - [SMALL_STATE(3119)] = 90539, - [SMALL_STATE(3120)] = 90559, - [SMALL_STATE(3121)] = 90579, - [SMALL_STATE(3122)] = 90599, - [SMALL_STATE(3123)] = 90619, - [SMALL_STATE(3124)] = 90635, - [SMALL_STATE(3125)] = 90655, - [SMALL_STATE(3126)] = 90675, - [SMALL_STATE(3127)] = 90695, - [SMALL_STATE(3128)] = 90711, - [SMALL_STATE(3129)] = 90727, - [SMALL_STATE(3130)] = 90743, - [SMALL_STATE(3131)] = 90759, - [SMALL_STATE(3132)] = 90775, - [SMALL_STATE(3133)] = 90791, - [SMALL_STATE(3134)] = 90807, - [SMALL_STATE(3135)] = 90823, - [SMALL_STATE(3136)] = 90841, - [SMALL_STATE(3137)] = 90861, - [SMALL_STATE(3138)] = 90877, - [SMALL_STATE(3139)] = 90895, - [SMALL_STATE(3140)] = 90911, - [SMALL_STATE(3141)] = 90929, - [SMALL_STATE(3142)] = 90947, - [SMALL_STATE(3143)] = 90963, - [SMALL_STATE(3144)] = 90983, - [SMALL_STATE(3145)] = 91001, - [SMALL_STATE(3146)] = 91021, - [SMALL_STATE(3147)] = 91041, - [SMALL_STATE(3148)] = 91061, - [SMALL_STATE(3149)] = 91081, - [SMALL_STATE(3150)] = 91101, - [SMALL_STATE(3151)] = 91121, - [SMALL_STATE(3152)] = 91141, - [SMALL_STATE(3153)] = 91161, - [SMALL_STATE(3154)] = 91179, - [SMALL_STATE(3155)] = 91199, - [SMALL_STATE(3156)] = 91219, - [SMALL_STATE(3157)] = 91239, - [SMALL_STATE(3158)] = 91259, - [SMALL_STATE(3159)] = 91279, - [SMALL_STATE(3160)] = 91299, - [SMALL_STATE(3161)] = 91319, - [SMALL_STATE(3162)] = 91339, - [SMALL_STATE(3163)] = 91359, - [SMALL_STATE(3164)] = 91379, - [SMALL_STATE(3165)] = 91399, - [SMALL_STATE(3166)] = 91419, - [SMALL_STATE(3167)] = 91439, - [SMALL_STATE(3168)] = 91459, - [SMALL_STATE(3169)] = 91479, - [SMALL_STATE(3170)] = 91499, - [SMALL_STATE(3171)] = 91519, - [SMALL_STATE(3172)] = 91539, - [SMALL_STATE(3173)] = 91559, - [SMALL_STATE(3174)] = 91575, - [SMALL_STATE(3175)] = 91595, - [SMALL_STATE(3176)] = 91613, - [SMALL_STATE(3177)] = 91633, - [SMALL_STATE(3178)] = 91651, - [SMALL_STATE(3179)] = 91671, - [SMALL_STATE(3180)] = 91691, - [SMALL_STATE(3181)] = 91711, - [SMALL_STATE(3182)] = 91731, - [SMALL_STATE(3183)] = 91751, - [SMALL_STATE(3184)] = 91767, - [SMALL_STATE(3185)] = 91787, - [SMALL_STATE(3186)] = 91807, - [SMALL_STATE(3187)] = 91827, - [SMALL_STATE(3188)] = 91847, - [SMALL_STATE(3189)] = 91867, - [SMALL_STATE(3190)] = 91884, - [SMALL_STATE(3191)] = 91901, - [SMALL_STATE(3192)] = 91918, - [SMALL_STATE(3193)] = 91935, - [SMALL_STATE(3194)] = 91952, - [SMALL_STATE(3195)] = 91967, - [SMALL_STATE(3196)] = 91984, - [SMALL_STATE(3197)] = 92001, - [SMALL_STATE(3198)] = 92018, - [SMALL_STATE(3199)] = 92035, - [SMALL_STATE(3200)] = 92050, - [SMALL_STATE(3201)] = 92067, - [SMALL_STATE(3202)] = 92084, - [SMALL_STATE(3203)] = 92101, - [SMALL_STATE(3204)] = 92118, - [SMALL_STATE(3205)] = 92135, - [SMALL_STATE(3206)] = 92152, - [SMALL_STATE(3207)] = 92169, - [SMALL_STATE(3208)] = 92186, - [SMALL_STATE(3209)] = 92203, - [SMALL_STATE(3210)] = 92220, - [SMALL_STATE(3211)] = 92237, - [SMALL_STATE(3212)] = 92254, - [SMALL_STATE(3213)] = 92269, - [SMALL_STATE(3214)] = 92284, - [SMALL_STATE(3215)] = 92301, - [SMALL_STATE(3216)] = 92318, - [SMALL_STATE(3217)] = 92333, - [SMALL_STATE(3218)] = 92348, - [SMALL_STATE(3219)] = 92365, - [SMALL_STATE(3220)] = 92382, - [SMALL_STATE(3221)] = 92397, - [SMALL_STATE(3222)] = 92414, - [SMALL_STATE(3223)] = 92431, - [SMALL_STATE(3224)] = 92448, - [SMALL_STATE(3225)] = 92465, - [SMALL_STATE(3226)] = 92480, - [SMALL_STATE(3227)] = 92497, - [SMALL_STATE(3228)] = 92514, - [SMALL_STATE(3229)] = 92531, - [SMALL_STATE(3230)] = 92548, - [SMALL_STATE(3231)] = 92565, - [SMALL_STATE(3232)] = 92582, - [SMALL_STATE(3233)] = 92599, - [SMALL_STATE(3234)] = 92616, - [SMALL_STATE(3235)] = 92633, - [SMALL_STATE(3236)] = 92650, - [SMALL_STATE(3237)] = 92667, - [SMALL_STATE(3238)] = 92682, - [SMALL_STATE(3239)] = 92699, - [SMALL_STATE(3240)] = 92716, - [SMALL_STATE(3241)] = 92733, - [SMALL_STATE(3242)] = 92750, - [SMALL_STATE(3243)] = 92767, - [SMALL_STATE(3244)] = 92782, - [SMALL_STATE(3245)] = 92799, - [SMALL_STATE(3246)] = 92816, - [SMALL_STATE(3247)] = 92833, - [SMALL_STATE(3248)] = 92850, - [SMALL_STATE(3249)] = 92867, - [SMALL_STATE(3250)] = 92882, - [SMALL_STATE(3251)] = 92899, - [SMALL_STATE(3252)] = 92916, - [SMALL_STATE(3253)] = 92931, - [SMALL_STATE(3254)] = 92948, - [SMALL_STATE(3255)] = 92965, - [SMALL_STATE(3256)] = 92982, - [SMALL_STATE(3257)] = 92999, - [SMALL_STATE(3258)] = 93016, - [SMALL_STATE(3259)] = 93033, - [SMALL_STATE(3260)] = 93050, - [SMALL_STATE(3261)] = 93067, - [SMALL_STATE(3262)] = 93084, - [SMALL_STATE(3263)] = 93101, - [SMALL_STATE(3264)] = 93118, - [SMALL_STATE(3265)] = 93133, - [SMALL_STATE(3266)] = 93148, - [SMALL_STATE(3267)] = 93163, - [SMALL_STATE(3268)] = 93180, - [SMALL_STATE(3269)] = 93197, - [SMALL_STATE(3270)] = 93214, - [SMALL_STATE(3271)] = 93229, - [SMALL_STATE(3272)] = 93246, - [SMALL_STATE(3273)] = 93263, - [SMALL_STATE(3274)] = 93278, - [SMALL_STATE(3275)] = 93295, - [SMALL_STATE(3276)] = 93312, - [SMALL_STATE(3277)] = 93329, - [SMALL_STATE(3278)] = 93346, - [SMALL_STATE(3279)] = 93363, - [SMALL_STATE(3280)] = 93378, - [SMALL_STATE(3281)] = 93395, - [SMALL_STATE(3282)] = 93412, - [SMALL_STATE(3283)] = 93429, - [SMALL_STATE(3284)] = 93446, - [SMALL_STATE(3285)] = 93463, - [SMALL_STATE(3286)] = 93480, - [SMALL_STATE(3287)] = 93497, - [SMALL_STATE(3288)] = 93514, - [SMALL_STATE(3289)] = 93531, - [SMALL_STATE(3290)] = 93548, - [SMALL_STATE(3291)] = 93565, - [SMALL_STATE(3292)] = 93582, - [SMALL_STATE(3293)] = 93599, - [SMALL_STATE(3294)] = 93616, - [SMALL_STATE(3295)] = 93633, - [SMALL_STATE(3296)] = 93650, - [SMALL_STATE(3297)] = 93665, - [SMALL_STATE(3298)] = 93682, - [SMALL_STATE(3299)] = 93699, - [SMALL_STATE(3300)] = 93714, - [SMALL_STATE(3301)] = 93731, - [SMALL_STATE(3302)] = 93748, - [SMALL_STATE(3303)] = 93765, - [SMALL_STATE(3304)] = 93782, - [SMALL_STATE(3305)] = 93799, - [SMALL_STATE(3306)] = 93816, - [SMALL_STATE(3307)] = 93833, - [SMALL_STATE(3308)] = 93850, - [SMALL_STATE(3309)] = 93867, - [SMALL_STATE(3310)] = 93884, - [SMALL_STATE(3311)] = 93901, - [SMALL_STATE(3312)] = 93918, - [SMALL_STATE(3313)] = 93935, - [SMALL_STATE(3314)] = 93952, - [SMALL_STATE(3315)] = 93969, - [SMALL_STATE(3316)] = 93986, - [SMALL_STATE(3317)] = 94003, - [SMALL_STATE(3318)] = 94020, - [SMALL_STATE(3319)] = 94037, - [SMALL_STATE(3320)] = 94054, - [SMALL_STATE(3321)] = 94071, - [SMALL_STATE(3322)] = 94088, - [SMALL_STATE(3323)] = 94105, - [SMALL_STATE(3324)] = 94122, - [SMALL_STATE(3325)] = 94137, - [SMALL_STATE(3326)] = 94154, - [SMALL_STATE(3327)] = 94171, - [SMALL_STATE(3328)] = 94188, - [SMALL_STATE(3329)] = 94205, - [SMALL_STATE(3330)] = 94222, - [SMALL_STATE(3331)] = 94239, - [SMALL_STATE(3332)] = 94256, - [SMALL_STATE(3333)] = 94273, - [SMALL_STATE(3334)] = 94290, - [SMALL_STATE(3335)] = 94307, - [SMALL_STATE(3336)] = 94322, - [SMALL_STATE(3337)] = 94339, - [SMALL_STATE(3338)] = 94356, - [SMALL_STATE(3339)] = 94373, - [SMALL_STATE(3340)] = 94390, - [SMALL_STATE(3341)] = 94407, - [SMALL_STATE(3342)] = 94424, - [SMALL_STATE(3343)] = 94439, - [SMALL_STATE(3344)] = 94456, - [SMALL_STATE(3345)] = 94473, - [SMALL_STATE(3346)] = 94488, - [SMALL_STATE(3347)] = 94505, - [SMALL_STATE(3348)] = 94520, - [SMALL_STATE(3349)] = 94537, - [SMALL_STATE(3350)] = 94552, - [SMALL_STATE(3351)] = 94567, - [SMALL_STATE(3352)] = 94582, - [SMALL_STATE(3353)] = 94599, - [SMALL_STATE(3354)] = 94616, - [SMALL_STATE(3355)] = 94633, - [SMALL_STATE(3356)] = 94650, - [SMALL_STATE(3357)] = 94667, - [SMALL_STATE(3358)] = 94682, - [SMALL_STATE(3359)] = 94699, - [SMALL_STATE(3360)] = 94716, - [SMALL_STATE(3361)] = 94733, - [SMALL_STATE(3362)] = 94750, - [SMALL_STATE(3363)] = 94767, - [SMALL_STATE(3364)] = 94784, - [SMALL_STATE(3365)] = 94801, - [SMALL_STATE(3366)] = 94816, - [SMALL_STATE(3367)] = 94833, - [SMALL_STATE(3368)] = 94850, - [SMALL_STATE(3369)] = 94867, - [SMALL_STATE(3370)] = 94882, - [SMALL_STATE(3371)] = 94899, - [SMALL_STATE(3372)] = 94916, - [SMALL_STATE(3373)] = 94933, - [SMALL_STATE(3374)] = 94948, - [SMALL_STATE(3375)] = 94965, - [SMALL_STATE(3376)] = 94982, - [SMALL_STATE(3377)] = 94997, - [SMALL_STATE(3378)] = 95014, - [SMALL_STATE(3379)] = 95029, - [SMALL_STATE(3380)] = 95046, - [SMALL_STATE(3381)] = 95061, - [SMALL_STATE(3382)] = 95078, - [SMALL_STATE(3383)] = 95095, - [SMALL_STATE(3384)] = 95110, - [SMALL_STATE(3385)] = 95125, - [SMALL_STATE(3386)] = 95142, - [SMALL_STATE(3387)] = 95159, - [SMALL_STATE(3388)] = 95176, - [SMALL_STATE(3389)] = 95193, - [SMALL_STATE(3390)] = 95210, - [SMALL_STATE(3391)] = 95227, - [SMALL_STATE(3392)] = 95244, - [SMALL_STATE(3393)] = 95259, - [SMALL_STATE(3394)] = 95276, - [SMALL_STATE(3395)] = 95291, - [SMALL_STATE(3396)] = 95308, - [SMALL_STATE(3397)] = 95325, - [SMALL_STATE(3398)] = 95342, - [SMALL_STATE(3399)] = 95357, - [SMALL_STATE(3400)] = 95372, - [SMALL_STATE(3401)] = 95389, - [SMALL_STATE(3402)] = 95406, - [SMALL_STATE(3403)] = 95421, - [SMALL_STATE(3404)] = 95438, - [SMALL_STATE(3405)] = 95455, - [SMALL_STATE(3406)] = 95472, - [SMALL_STATE(3407)] = 95489, - [SMALL_STATE(3408)] = 95504, - [SMALL_STATE(3409)] = 95519, - [SMALL_STATE(3410)] = 95536, - [SMALL_STATE(3411)] = 95553, - [SMALL_STATE(3412)] = 95570, - [SMALL_STATE(3413)] = 95587, - [SMALL_STATE(3414)] = 95604, - [SMALL_STATE(3415)] = 95621, - [SMALL_STATE(3416)] = 95638, - [SMALL_STATE(3417)] = 95655, - [SMALL_STATE(3418)] = 95670, - [SMALL_STATE(3419)] = 95687, - [SMALL_STATE(3420)] = 95704, - [SMALL_STATE(3421)] = 95721, - [SMALL_STATE(3422)] = 95738, - [SMALL_STATE(3423)] = 95755, - [SMALL_STATE(3424)] = 95772, - [SMALL_STATE(3425)] = 95789, - [SMALL_STATE(3426)] = 95804, - [SMALL_STATE(3427)] = 95819, - [SMALL_STATE(3428)] = 95836, - [SMALL_STATE(3429)] = 95853, - [SMALL_STATE(3430)] = 95870, - [SMALL_STATE(3431)] = 95887, - [SMALL_STATE(3432)] = 95904, - [SMALL_STATE(3433)] = 95921, - [SMALL_STATE(3434)] = 95938, - [SMALL_STATE(3435)] = 95955, - [SMALL_STATE(3436)] = 95972, - [SMALL_STATE(3437)] = 95989, - [SMALL_STATE(3438)] = 96006, - [SMALL_STATE(3439)] = 96023, - [SMALL_STATE(3440)] = 96040, - [SMALL_STATE(3441)] = 96057, - [SMALL_STATE(3442)] = 96074, - [SMALL_STATE(3443)] = 96091, - [SMALL_STATE(3444)] = 96108, - [SMALL_STATE(3445)] = 96123, - [SMALL_STATE(3446)] = 96140, - [SMALL_STATE(3447)] = 96155, - [SMALL_STATE(3448)] = 96172, - [SMALL_STATE(3449)] = 96189, - [SMALL_STATE(3450)] = 96206, - [SMALL_STATE(3451)] = 96223, - [SMALL_STATE(3452)] = 96238, - [SMALL_STATE(3453)] = 96255, - [SMALL_STATE(3454)] = 96272, - [SMALL_STATE(3455)] = 96289, - [SMALL_STATE(3456)] = 96306, - [SMALL_STATE(3457)] = 96323, - [SMALL_STATE(3458)] = 96338, - [SMALL_STATE(3459)] = 96355, - [SMALL_STATE(3460)] = 96370, - [SMALL_STATE(3461)] = 96387, - [SMALL_STATE(3462)] = 96404, - [SMALL_STATE(3463)] = 96419, - [SMALL_STATE(3464)] = 96436, - [SMALL_STATE(3465)] = 96453, - [SMALL_STATE(3466)] = 96468, - [SMALL_STATE(3467)] = 96485, - [SMALL_STATE(3468)] = 96502, - [SMALL_STATE(3469)] = 96517, - [SMALL_STATE(3470)] = 96534, - [SMALL_STATE(3471)] = 96549, - [SMALL_STATE(3472)] = 96566, - [SMALL_STATE(3473)] = 96583, - [SMALL_STATE(3474)] = 96600, - [SMALL_STATE(3475)] = 96617, - [SMALL_STATE(3476)] = 96634, - [SMALL_STATE(3477)] = 96651, - [SMALL_STATE(3478)] = 96668, - [SMALL_STATE(3479)] = 96685, - [SMALL_STATE(3480)] = 96702, - [SMALL_STATE(3481)] = 96719, - [SMALL_STATE(3482)] = 96736, - [SMALL_STATE(3483)] = 96751, - [SMALL_STATE(3484)] = 96768, - [SMALL_STATE(3485)] = 96785, - [SMALL_STATE(3486)] = 96802, - [SMALL_STATE(3487)] = 96819, - [SMALL_STATE(3488)] = 96836, - [SMALL_STATE(3489)] = 96853, - [SMALL_STATE(3490)] = 96870, - [SMALL_STATE(3491)] = 96887, - [SMALL_STATE(3492)] = 96904, - [SMALL_STATE(3493)] = 96921, - [SMALL_STATE(3494)] = 96938, - [SMALL_STATE(3495)] = 96955, - [SMALL_STATE(3496)] = 96972, - [SMALL_STATE(3497)] = 96987, - [SMALL_STATE(3498)] = 97001, - [SMALL_STATE(3499)] = 97015, - [SMALL_STATE(3500)] = 97029, - [SMALL_STATE(3501)] = 97043, - [SMALL_STATE(3502)] = 97057, - [SMALL_STATE(3503)] = 97071, - [SMALL_STATE(3504)] = 97085, - [SMALL_STATE(3505)] = 97099, - [SMALL_STATE(3506)] = 97113, - [SMALL_STATE(3507)] = 97127, - [SMALL_STATE(3508)] = 97141, - [SMALL_STATE(3509)] = 97155, - [SMALL_STATE(3510)] = 97169, - [SMALL_STATE(3511)] = 97183, - [SMALL_STATE(3512)] = 97197, - [SMALL_STATE(3513)] = 97211, - [SMALL_STATE(3514)] = 97225, - [SMALL_STATE(3515)] = 97239, - [SMALL_STATE(3516)] = 97253, - [SMALL_STATE(3517)] = 97267, - [SMALL_STATE(3518)] = 97281, - [SMALL_STATE(3519)] = 97295, - [SMALL_STATE(3520)] = 97309, - [SMALL_STATE(3521)] = 97323, - [SMALL_STATE(3522)] = 97337, - [SMALL_STATE(3523)] = 97351, - [SMALL_STATE(3524)] = 97365, - [SMALL_STATE(3525)] = 97379, - [SMALL_STATE(3526)] = 97393, - [SMALL_STATE(3527)] = 97407, - [SMALL_STATE(3528)] = 97421, - [SMALL_STATE(3529)] = 97435, - [SMALL_STATE(3530)] = 97449, - [SMALL_STATE(3531)] = 97463, - [SMALL_STATE(3532)] = 97477, - [SMALL_STATE(3533)] = 97491, - [SMALL_STATE(3534)] = 97505, - [SMALL_STATE(3535)] = 97519, - [SMALL_STATE(3536)] = 97533, - [SMALL_STATE(3537)] = 97547, - [SMALL_STATE(3538)] = 97561, - [SMALL_STATE(3539)] = 97575, - [SMALL_STATE(3540)] = 97589, - [SMALL_STATE(3541)] = 97603, - [SMALL_STATE(3542)] = 97617, - [SMALL_STATE(3543)] = 97631, - [SMALL_STATE(3544)] = 97645, - [SMALL_STATE(3545)] = 97659, - [SMALL_STATE(3546)] = 97673, - [SMALL_STATE(3547)] = 97687, - [SMALL_STATE(3548)] = 97701, - [SMALL_STATE(3549)] = 97715, - [SMALL_STATE(3550)] = 97729, - [SMALL_STATE(3551)] = 97743, - [SMALL_STATE(3552)] = 97757, - [SMALL_STATE(3553)] = 97771, - [SMALL_STATE(3554)] = 97785, - [SMALL_STATE(3555)] = 97799, - [SMALL_STATE(3556)] = 97813, - [SMALL_STATE(3557)] = 97827, - [SMALL_STATE(3558)] = 97841, - [SMALL_STATE(3559)] = 97855, - [SMALL_STATE(3560)] = 97869, - [SMALL_STATE(3561)] = 97883, - [SMALL_STATE(3562)] = 97897, - [SMALL_STATE(3563)] = 97911, - [SMALL_STATE(3564)] = 97925, - [SMALL_STATE(3565)] = 97939, - [SMALL_STATE(3566)] = 97953, - [SMALL_STATE(3567)] = 97967, - [SMALL_STATE(3568)] = 97981, - [SMALL_STATE(3569)] = 97995, - [SMALL_STATE(3570)] = 98009, - [SMALL_STATE(3571)] = 98023, - [SMALL_STATE(3572)] = 98037, - [SMALL_STATE(3573)] = 98051, - [SMALL_STATE(3574)] = 98065, - [SMALL_STATE(3575)] = 98079, - [SMALL_STATE(3576)] = 98093, - [SMALL_STATE(3577)] = 98107, - [SMALL_STATE(3578)] = 98121, - [SMALL_STATE(3579)] = 98135, - [SMALL_STATE(3580)] = 98149, - [SMALL_STATE(3581)] = 98163, - [SMALL_STATE(3582)] = 98177, - [SMALL_STATE(3583)] = 98191, - [SMALL_STATE(3584)] = 98205, - [SMALL_STATE(3585)] = 98219, - [SMALL_STATE(3586)] = 98233, - [SMALL_STATE(3587)] = 98247, - [SMALL_STATE(3588)] = 98261, - [SMALL_STATE(3589)] = 98275, - [SMALL_STATE(3590)] = 98289, - [SMALL_STATE(3591)] = 98303, - [SMALL_STATE(3592)] = 98317, - [SMALL_STATE(3593)] = 98331, - [SMALL_STATE(3594)] = 98345, - [SMALL_STATE(3595)] = 98359, - [SMALL_STATE(3596)] = 98373, - [SMALL_STATE(3597)] = 98387, - [SMALL_STATE(3598)] = 98401, - [SMALL_STATE(3599)] = 98415, - [SMALL_STATE(3600)] = 98429, - [SMALL_STATE(3601)] = 98443, - [SMALL_STATE(3602)] = 98457, - [SMALL_STATE(3603)] = 98471, - [SMALL_STATE(3604)] = 98485, - [SMALL_STATE(3605)] = 98499, - [SMALL_STATE(3606)] = 98513, - [SMALL_STATE(3607)] = 98527, - [SMALL_STATE(3608)] = 98541, - [SMALL_STATE(3609)] = 98555, - [SMALL_STATE(3610)] = 98569, - [SMALL_STATE(3611)] = 98583, - [SMALL_STATE(3612)] = 98597, - [SMALL_STATE(3613)] = 98611, - [SMALL_STATE(3614)] = 98625, - [SMALL_STATE(3615)] = 98639, - [SMALL_STATE(3616)] = 98653, - [SMALL_STATE(3617)] = 98667, - [SMALL_STATE(3618)] = 98681, - [SMALL_STATE(3619)] = 98695, - [SMALL_STATE(3620)] = 98709, - [SMALL_STATE(3621)] = 98723, - [SMALL_STATE(3622)] = 98737, - [SMALL_STATE(3623)] = 98751, - [SMALL_STATE(3624)] = 98765, - [SMALL_STATE(3625)] = 98779, - [SMALL_STATE(3626)] = 98793, - [SMALL_STATE(3627)] = 98807, - [SMALL_STATE(3628)] = 98821, - [SMALL_STATE(3629)] = 98835, - [SMALL_STATE(3630)] = 98849, - [SMALL_STATE(3631)] = 98863, - [SMALL_STATE(3632)] = 98877, - [SMALL_STATE(3633)] = 98891, - [SMALL_STATE(3634)] = 98905, - [SMALL_STATE(3635)] = 98919, - [SMALL_STATE(3636)] = 98933, - [SMALL_STATE(3637)] = 98947, - [SMALL_STATE(3638)] = 98961, - [SMALL_STATE(3639)] = 98975, - [SMALL_STATE(3640)] = 98989, - [SMALL_STATE(3641)] = 99003, - [SMALL_STATE(3642)] = 99017, - [SMALL_STATE(3643)] = 99031, - [SMALL_STATE(3644)] = 99045, - [SMALL_STATE(3645)] = 99059, - [SMALL_STATE(3646)] = 99073, - [SMALL_STATE(3647)] = 99087, - [SMALL_STATE(3648)] = 99101, - [SMALL_STATE(3649)] = 99115, - [SMALL_STATE(3650)] = 99129, - [SMALL_STATE(3651)] = 99143, - [SMALL_STATE(3652)] = 99157, - [SMALL_STATE(3653)] = 99171, - [SMALL_STATE(3654)] = 99185, - [SMALL_STATE(3655)] = 99199, - [SMALL_STATE(3656)] = 99213, - [SMALL_STATE(3657)] = 99227, - [SMALL_STATE(3658)] = 99241, - [SMALL_STATE(3659)] = 99255, - [SMALL_STATE(3660)] = 99269, - [SMALL_STATE(3661)] = 99283, - [SMALL_STATE(3662)] = 99297, - [SMALL_STATE(3663)] = 99311, - [SMALL_STATE(3664)] = 99325, - [SMALL_STATE(3665)] = 99339, - [SMALL_STATE(3666)] = 99353, - [SMALL_STATE(3667)] = 99367, - [SMALL_STATE(3668)] = 99381, - [SMALL_STATE(3669)] = 99395, - [SMALL_STATE(3670)] = 99409, - [SMALL_STATE(3671)] = 99423, - [SMALL_STATE(3672)] = 99437, - [SMALL_STATE(3673)] = 99451, - [SMALL_STATE(3674)] = 99465, - [SMALL_STATE(3675)] = 99479, - [SMALL_STATE(3676)] = 99493, - [SMALL_STATE(3677)] = 99507, - [SMALL_STATE(3678)] = 99521, - [SMALL_STATE(3679)] = 99535, - [SMALL_STATE(3680)] = 99549, - [SMALL_STATE(3681)] = 99563, - [SMALL_STATE(3682)] = 99577, - [SMALL_STATE(3683)] = 99591, - [SMALL_STATE(3684)] = 99605, - [SMALL_STATE(3685)] = 99619, - [SMALL_STATE(3686)] = 99633, - [SMALL_STATE(3687)] = 99647, - [SMALL_STATE(3688)] = 99661, - [SMALL_STATE(3689)] = 99675, - [SMALL_STATE(3690)] = 99689, - [SMALL_STATE(3691)] = 99703, - [SMALL_STATE(3692)] = 99717, - [SMALL_STATE(3693)] = 99731, - [SMALL_STATE(3694)] = 99745, - [SMALL_STATE(3695)] = 99759, - [SMALL_STATE(3696)] = 99773, - [SMALL_STATE(3697)] = 99787, - [SMALL_STATE(3698)] = 99801, - [SMALL_STATE(3699)] = 99815, - [SMALL_STATE(3700)] = 99829, - [SMALL_STATE(3701)] = 99843, - [SMALL_STATE(3702)] = 99857, - [SMALL_STATE(3703)] = 99871, - [SMALL_STATE(3704)] = 99885, - [SMALL_STATE(3705)] = 99899, - [SMALL_STATE(3706)] = 99913, - [SMALL_STATE(3707)] = 99927, - [SMALL_STATE(3708)] = 99941, - [SMALL_STATE(3709)] = 99955, - [SMALL_STATE(3710)] = 99969, - [SMALL_STATE(3711)] = 99983, - [SMALL_STATE(3712)] = 99997, - [SMALL_STATE(3713)] = 100011, - [SMALL_STATE(3714)] = 100025, - [SMALL_STATE(3715)] = 100039, - [SMALL_STATE(3716)] = 100053, - [SMALL_STATE(3717)] = 100067, - [SMALL_STATE(3718)] = 100081, - [SMALL_STATE(3719)] = 100095, - [SMALL_STATE(3720)] = 100109, - [SMALL_STATE(3721)] = 100123, - [SMALL_STATE(3722)] = 100137, - [SMALL_STATE(3723)] = 100151, - [SMALL_STATE(3724)] = 100165, - [SMALL_STATE(3725)] = 100179, - [SMALL_STATE(3726)] = 100193, - [SMALL_STATE(3727)] = 100207, - [SMALL_STATE(3728)] = 100221, - [SMALL_STATE(3729)] = 100235, - [SMALL_STATE(3730)] = 100249, - [SMALL_STATE(3731)] = 100263, - [SMALL_STATE(3732)] = 100277, - [SMALL_STATE(3733)] = 100291, - [SMALL_STATE(3734)] = 100305, - [SMALL_STATE(3735)] = 100319, - [SMALL_STATE(3736)] = 100333, - [SMALL_STATE(3737)] = 100347, - [SMALL_STATE(3738)] = 100361, - [SMALL_STATE(3739)] = 100375, - [SMALL_STATE(3740)] = 100389, - [SMALL_STATE(3741)] = 100403, - [SMALL_STATE(3742)] = 100417, - [SMALL_STATE(3743)] = 100431, - [SMALL_STATE(3744)] = 100445, - [SMALL_STATE(3745)] = 100459, - [SMALL_STATE(3746)] = 100473, - [SMALL_STATE(3747)] = 100487, - [SMALL_STATE(3748)] = 100501, - [SMALL_STATE(3749)] = 100515, - [SMALL_STATE(3750)] = 100529, - [SMALL_STATE(3751)] = 100543, - [SMALL_STATE(3752)] = 100557, - [SMALL_STATE(3753)] = 100571, - [SMALL_STATE(3754)] = 100585, - [SMALL_STATE(3755)] = 100599, - [SMALL_STATE(3756)] = 100613, - [SMALL_STATE(3757)] = 100627, - [SMALL_STATE(3758)] = 100641, - [SMALL_STATE(3759)] = 100655, - [SMALL_STATE(3760)] = 100669, - [SMALL_STATE(3761)] = 100683, - [SMALL_STATE(3762)] = 100697, - [SMALL_STATE(3763)] = 100711, - [SMALL_STATE(3764)] = 100725, - [SMALL_STATE(3765)] = 100739, - [SMALL_STATE(3766)] = 100753, - [SMALL_STATE(3767)] = 100767, - [SMALL_STATE(3768)] = 100781, - [SMALL_STATE(3769)] = 100795, - [SMALL_STATE(3770)] = 100809, - [SMALL_STATE(3771)] = 100823, - [SMALL_STATE(3772)] = 100837, - [SMALL_STATE(3773)] = 100851, - [SMALL_STATE(3774)] = 100865, - [SMALL_STATE(3775)] = 100879, - [SMALL_STATE(3776)] = 100893, - [SMALL_STATE(3777)] = 100907, - [SMALL_STATE(3778)] = 100921, - [SMALL_STATE(3779)] = 100935, - [SMALL_STATE(3780)] = 100949, - [SMALL_STATE(3781)] = 100963, - [SMALL_STATE(3782)] = 100977, - [SMALL_STATE(3783)] = 100991, - [SMALL_STATE(3784)] = 101005, - [SMALL_STATE(3785)] = 101019, - [SMALL_STATE(3786)] = 101033, - [SMALL_STATE(3787)] = 101047, - [SMALL_STATE(3788)] = 101061, - [SMALL_STATE(3789)] = 101075, - [SMALL_STATE(3790)] = 101089, - [SMALL_STATE(3791)] = 101103, - [SMALL_STATE(3792)] = 101117, - [SMALL_STATE(3793)] = 101131, - [SMALL_STATE(3794)] = 101145, - [SMALL_STATE(3795)] = 101159, - [SMALL_STATE(3796)] = 101173, - [SMALL_STATE(3797)] = 101187, - [SMALL_STATE(3798)] = 101201, - [SMALL_STATE(3799)] = 101215, - [SMALL_STATE(3800)] = 101229, - [SMALL_STATE(3801)] = 101243, - [SMALL_STATE(3802)] = 101257, - [SMALL_STATE(3803)] = 101271, - [SMALL_STATE(3804)] = 101285, - [SMALL_STATE(3805)] = 101299, - [SMALL_STATE(3806)] = 101313, - [SMALL_STATE(3807)] = 101327, - [SMALL_STATE(3808)] = 101341, - [SMALL_STATE(3809)] = 101355, - [SMALL_STATE(3810)] = 101369, - [SMALL_STATE(3811)] = 101383, - [SMALL_STATE(3812)] = 101397, - [SMALL_STATE(3813)] = 101411, - [SMALL_STATE(3814)] = 101425, - [SMALL_STATE(3815)] = 101439, - [SMALL_STATE(3816)] = 101453, - [SMALL_STATE(3817)] = 101457, - [SMALL_STATE(3818)] = 101461, - [SMALL_STATE(3819)] = 101465, - [SMALL_STATE(3820)] = 101469, - [SMALL_STATE(3821)] = 101473, - [SMALL_STATE(3822)] = 101477, + [SMALL_STATE(2210)] = 68852, + [SMALL_STATE(2211)] = 68896, + [SMALL_STATE(2212)] = 68934, + [SMALL_STATE(2213)] = 68972, + [SMALL_STATE(2214)] = 68996, + [SMALL_STATE(2215)] = 69024, + [SMALL_STATE(2216)] = 69054, + [SMALL_STATE(2217)] = 69082, + [SMALL_STATE(2218)] = 69110, + [SMALL_STATE(2219)] = 69138, + [SMALL_STATE(2220)] = 69166, + [SMALL_STATE(2221)] = 69206, + [SMALL_STATE(2222)] = 69234, + [SMALL_STATE(2223)] = 69272, + [SMALL_STATE(2224)] = 69296, + [SMALL_STATE(2225)] = 69326, + [SMALL_STATE(2226)] = 69364, + [SMALL_STATE(2227)] = 69402, + [SMALL_STATE(2228)] = 69432, + [SMALL_STATE(2229)] = 69470, + [SMALL_STATE(2230)] = 69508, + [SMALL_STATE(2231)] = 69536, + [SMALL_STATE(2232)] = 69576, + [SMALL_STATE(2233)] = 69614, + [SMALL_STATE(2234)] = 69652, + [SMALL_STATE(2235)] = 69680, + [SMALL_STATE(2236)] = 69708, + [SMALL_STATE(2237)] = 69748, + [SMALL_STATE(2238)] = 69776, + [SMALL_STATE(2239)] = 69804, + [SMALL_STATE(2240)] = 69842, + [SMALL_STATE(2241)] = 69870, + [SMALL_STATE(2242)] = 69894, + [SMALL_STATE(2243)] = 69934, + [SMALL_STATE(2244)] = 69957, + [SMALL_STATE(2245)] = 69980, + [SMALL_STATE(2246)] = 70003, + [SMALL_STATE(2247)] = 70026, + [SMALL_STATE(2248)] = 70049, + [SMALL_STATE(2249)] = 70072, + [SMALL_STATE(2250)] = 70095, + [SMALL_STATE(2251)] = 70118, + [SMALL_STATE(2252)] = 70159, + [SMALL_STATE(2253)] = 70196, + [SMALL_STATE(2254)] = 70237, + [SMALL_STATE(2255)] = 70278, + [SMALL_STATE(2256)] = 70301, + [SMALL_STATE(2257)] = 70324, + [SMALL_STATE(2258)] = 70347, + [SMALL_STATE(2259)] = 70378, + [SMALL_STATE(2260)] = 70409, + [SMALL_STATE(2261)] = 70432, + [SMALL_STATE(2262)] = 70455, + [SMALL_STATE(2263)] = 70478, + [SMALL_STATE(2264)] = 70513, + [SMALL_STATE(2265)] = 70536, + [SMALL_STATE(2266)] = 70571, + [SMALL_STATE(2267)] = 70594, + [SMALL_STATE(2268)] = 70635, + [SMALL_STATE(2269)] = 70658, + [SMALL_STATE(2270)] = 70699, + [SMALL_STATE(2271)] = 70730, + [SMALL_STATE(2272)] = 70753, + [SMALL_STATE(2273)] = 70776, + [SMALL_STATE(2274)] = 70807, + [SMALL_STATE(2275)] = 70830, + [SMALL_STATE(2276)] = 70853, + [SMALL_STATE(2277)] = 70876, + [SMALL_STATE(2278)] = 70911, + [SMALL_STATE(2279)] = 70946, + [SMALL_STATE(2280)] = 70969, + [SMALL_STATE(2281)] = 71010, + [SMALL_STATE(2282)] = 71033, + [SMALL_STATE(2283)] = 71074, + [SMALL_STATE(2284)] = 71097, + [SMALL_STATE(2285)] = 71128, + [SMALL_STATE(2286)] = 71151, + [SMALL_STATE(2287)] = 71174, + [SMALL_STATE(2288)] = 71197, + [SMALL_STATE(2289)] = 71220, + [SMALL_STATE(2290)] = 71243, + [SMALL_STATE(2291)] = 71266, + [SMALL_STATE(2292)] = 71289, + [SMALL_STATE(2293)] = 71330, + [SMALL_STATE(2294)] = 71353, + [SMALL_STATE(2295)] = 71376, + [SMALL_STATE(2296)] = 71399, + [SMALL_STATE(2297)] = 71432, + [SMALL_STATE(2298)] = 71455, + [SMALL_STATE(2299)] = 71496, + [SMALL_STATE(2300)] = 71527, + [SMALL_STATE(2301)] = 71568, + [SMALL_STATE(2302)] = 71600, + [SMALL_STATE(2303)] = 71638, + [SMALL_STATE(2304)] = 71670, + [SMALL_STATE(2305)] = 71696, + [SMALL_STATE(2306)] = 71734, + [SMALL_STATE(2307)] = 71766, + [SMALL_STATE(2308)] = 71796, + [SMALL_STATE(2309)] = 71822, + [SMALL_STATE(2310)] = 71858, + [SMALL_STATE(2311)] = 71886, + [SMALL_STATE(2312)] = 71918, + [SMALL_STATE(2313)] = 71950, + [SMALL_STATE(2314)] = 71978, + [SMALL_STATE(2315)] = 72010, + [SMALL_STATE(2316)] = 72048, + [SMALL_STATE(2317)] = 72076, + [SMALL_STATE(2318)] = 72106, + [SMALL_STATE(2319)] = 72144, + [SMALL_STATE(2320)] = 72176, + [SMALL_STATE(2321)] = 72208, + [SMALL_STATE(2322)] = 72232, + [SMALL_STATE(2323)] = 72264, + [SMALL_STATE(2324)] = 72292, + [SMALL_STATE(2325)] = 72318, + [SMALL_STATE(2326)] = 72350, + [SMALL_STATE(2327)] = 72378, + [SMALL_STATE(2328)] = 72406, + [SMALL_STATE(2329)] = 72430, + [SMALL_STATE(2330)] = 72462, + [SMALL_STATE(2331)] = 72492, + [SMALL_STATE(2332)] = 72526, + [SMALL_STATE(2333)] = 72550, + [SMALL_STATE(2334)] = 72578, + [SMALL_STATE(2335)] = 72616, + [SMALL_STATE(2336)] = 72648, + [SMALL_STATE(2337)] = 72672, + [SMALL_STATE(2338)] = 72704, + [SMALL_STATE(2339)] = 72732, + [SMALL_STATE(2340)] = 72770, + [SMALL_STATE(2341)] = 72794, + [SMALL_STATE(2342)] = 72824, + [SMALL_STATE(2343)] = 72845, + [SMALL_STATE(2344)] = 72880, + [SMALL_STATE(2345)] = 72915, + [SMALL_STATE(2346)] = 72950, + [SMALL_STATE(2347)] = 72975, + [SMALL_STATE(2348)] = 73010, + [SMALL_STATE(2349)] = 73045, + [SMALL_STATE(2350)] = 73070, + [SMALL_STATE(2351)] = 73095, + [SMALL_STATE(2352)] = 73122, + [SMALL_STATE(2353)] = 73157, + [SMALL_STATE(2354)] = 73188, + [SMALL_STATE(2355)] = 73221, + [SMALL_STATE(2356)] = 73256, + [SMALL_STATE(2357)] = 73291, + [SMALL_STATE(2358)] = 73324, + [SMALL_STATE(2359)] = 73357, + [SMALL_STATE(2360)] = 73392, + [SMALL_STATE(2361)] = 73427, + [SMALL_STATE(2362)] = 73462, + [SMALL_STATE(2363)] = 73497, + [SMALL_STATE(2364)] = 73532, + [SMALL_STATE(2365)] = 73567, + [SMALL_STATE(2366)] = 73602, + [SMALL_STATE(2367)] = 73637, + [SMALL_STATE(2368)] = 73672, + [SMALL_STATE(2369)] = 73707, + [SMALL_STATE(2370)] = 73740, + [SMALL_STATE(2371)] = 73775, + [SMALL_STATE(2372)] = 73810, + [SMALL_STATE(2373)] = 73845, + [SMALL_STATE(2374)] = 73880, + [SMALL_STATE(2375)] = 73915, + [SMALL_STATE(2376)] = 73950, + [SMALL_STATE(2377)] = 73985, + [SMALL_STATE(2378)] = 74020, + [SMALL_STATE(2379)] = 74055, + [SMALL_STATE(2380)] = 74088, + [SMALL_STATE(2381)] = 74119, + [SMALL_STATE(2382)] = 74140, + [SMALL_STATE(2383)] = 74161, + [SMALL_STATE(2384)] = 74182, + [SMALL_STATE(2385)] = 74217, + [SMALL_STATE(2386)] = 74246, + [SMALL_STATE(2387)] = 74281, + [SMALL_STATE(2388)] = 74316, + [SMALL_STATE(2389)] = 74351, + [SMALL_STATE(2390)] = 74382, + [SMALL_STATE(2391)] = 74417, + [SMALL_STATE(2392)] = 74449, + [SMALL_STATE(2393)] = 74481, + [SMALL_STATE(2394)] = 74513, + [SMALL_STATE(2395)] = 74543, + [SMALL_STATE(2396)] = 74569, + [SMALL_STATE(2397)] = 74601, + [SMALL_STATE(2398)] = 74633, + [SMALL_STATE(2399)] = 74663, + [SMALL_STATE(2400)] = 74693, + [SMALL_STATE(2401)] = 74725, + [SMALL_STATE(2402)] = 74757, + [SMALL_STATE(2403)] = 74789, + [SMALL_STATE(2404)] = 74821, + [SMALL_STATE(2405)] = 74853, + [SMALL_STATE(2406)] = 74883, + [SMALL_STATE(2407)] = 74913, + [SMALL_STATE(2408)] = 74941, + [SMALL_STATE(2409)] = 74973, + [SMALL_STATE(2410)] = 75003, + [SMALL_STATE(2411)] = 75035, + [SMALL_STATE(2412)] = 75067, + [SMALL_STATE(2413)] = 75099, + [SMALL_STATE(2414)] = 75131, + [SMALL_STATE(2415)] = 75163, + [SMALL_STATE(2416)] = 75195, + [SMALL_STATE(2417)] = 75225, + [SMALL_STATE(2418)] = 75253, + [SMALL_STATE(2419)] = 75283, + [SMALL_STATE(2420)] = 75309, + [SMALL_STATE(2421)] = 75341, + [SMALL_STATE(2422)] = 75369, + [SMALL_STATE(2423)] = 75401, + [SMALL_STATE(2424)] = 75433, + [SMALL_STATE(2425)] = 75465, + [SMALL_STATE(2426)] = 75497, + [SMALL_STATE(2427)] = 75525, + [SMALL_STATE(2428)] = 75557, + [SMALL_STATE(2429)] = 75589, + [SMALL_STATE(2430)] = 75617, + [SMALL_STATE(2431)] = 75649, + [SMALL_STATE(2432)] = 75681, + [SMALL_STATE(2433)] = 75713, + [SMALL_STATE(2434)] = 75745, + [SMALL_STATE(2435)] = 75777, + [SMALL_STATE(2436)] = 75809, + [SMALL_STATE(2437)] = 75841, + [SMALL_STATE(2438)] = 75873, + [SMALL_STATE(2439)] = 75905, + [SMALL_STATE(2440)] = 75933, + [SMALL_STATE(2441)] = 75959, + [SMALL_STATE(2442)] = 75991, + [SMALL_STATE(2443)] = 76021, + [SMALL_STATE(2444)] = 76051, + [SMALL_STATE(2445)] = 76083, + [SMALL_STATE(2446)] = 76115, + [SMALL_STATE(2447)] = 76137, + [SMALL_STATE(2448)] = 76159, + [SMALL_STATE(2449)] = 76191, + [SMALL_STATE(2450)] = 76217, + [SMALL_STATE(2451)] = 76239, + [SMALL_STATE(2452)] = 76261, + [SMALL_STATE(2453)] = 76283, + [SMALL_STATE(2454)] = 76305, + [SMALL_STATE(2455)] = 76337, + [SMALL_STATE(2456)] = 76369, + [SMALL_STATE(2457)] = 76392, + [SMALL_STATE(2458)] = 76415, + [SMALL_STATE(2459)] = 76444, + [SMALL_STATE(2460)] = 76467, + [SMALL_STATE(2461)] = 76496, + [SMALL_STATE(2462)] = 76519, + [SMALL_STATE(2463)] = 76548, + [SMALL_STATE(2464)] = 76577, + [SMALL_STATE(2465)] = 76606, + [SMALL_STATE(2466)] = 76635, + [SMALL_STATE(2467)] = 76664, + [SMALL_STATE(2468)] = 76693, + [SMALL_STATE(2469)] = 76718, + [SMALL_STATE(2470)] = 76747, + [SMALL_STATE(2471)] = 76776, + [SMALL_STATE(2472)] = 76803, + [SMALL_STATE(2473)] = 76832, + [SMALL_STATE(2474)] = 76861, + [SMALL_STATE(2475)] = 76890, + [SMALL_STATE(2476)] = 76919, + [SMALL_STATE(2477)] = 76948, + [SMALL_STATE(2478)] = 76969, + [SMALL_STATE(2479)] = 76998, + [SMALL_STATE(2480)] = 77027, + [SMALL_STATE(2481)] = 77056, + [SMALL_STATE(2482)] = 77085, + [SMALL_STATE(2483)] = 77114, + [SMALL_STATE(2484)] = 77143, + [SMALL_STATE(2485)] = 77172, + [SMALL_STATE(2486)] = 77195, + [SMALL_STATE(2487)] = 77224, + [SMALL_STATE(2488)] = 77253, + [SMALL_STATE(2489)] = 77274, + [SMALL_STATE(2490)] = 77303, + [SMALL_STATE(2491)] = 77332, + [SMALL_STATE(2492)] = 77361, + [SMALL_STATE(2493)] = 77390, + [SMALL_STATE(2494)] = 77419, + [SMALL_STATE(2495)] = 77448, + [SMALL_STATE(2496)] = 77477, + [SMALL_STATE(2497)] = 77500, + [SMALL_STATE(2498)] = 77529, + [SMALL_STATE(2499)] = 77550, + [SMALL_STATE(2500)] = 77579, + [SMALL_STATE(2501)] = 77608, + [SMALL_STATE(2502)] = 77637, + [SMALL_STATE(2503)] = 77656, + [SMALL_STATE(2504)] = 77685, + [SMALL_STATE(2505)] = 77708, + [SMALL_STATE(2506)] = 77737, + [SMALL_STATE(2507)] = 77766, + [SMALL_STATE(2508)] = 77791, + [SMALL_STATE(2509)] = 77818, + [SMALL_STATE(2510)] = 77847, + [SMALL_STATE(2511)] = 77876, + [SMALL_STATE(2512)] = 77903, + [SMALL_STATE(2513)] = 77924, + [SMALL_STATE(2514)] = 77953, + [SMALL_STATE(2515)] = 77974, + [SMALL_STATE(2516)] = 78003, + [SMALL_STATE(2517)] = 78024, + [SMALL_STATE(2518)] = 78053, + [SMALL_STATE(2519)] = 78074, + [SMALL_STATE(2520)] = 78095, + [SMALL_STATE(2521)] = 78124, + [SMALL_STATE(2522)] = 78153, + [SMALL_STATE(2523)] = 78182, + [SMALL_STATE(2524)] = 78203, + [SMALL_STATE(2525)] = 78226, + [SMALL_STATE(2526)] = 78255, + [SMALL_STATE(2527)] = 78284, + [SMALL_STATE(2528)] = 78313, + [SMALL_STATE(2529)] = 78334, + [SMALL_STATE(2530)] = 78355, + [SMALL_STATE(2531)] = 78376, + [SMALL_STATE(2532)] = 78399, + [SMALL_STATE(2533)] = 78428, + [SMALL_STATE(2534)] = 78449, + [SMALL_STATE(2535)] = 78470, + [SMALL_STATE(2536)] = 78489, + [SMALL_STATE(2537)] = 78518, + [SMALL_STATE(2538)] = 78547, + [SMALL_STATE(2539)] = 78576, + [SMALL_STATE(2540)] = 78605, + [SMALL_STATE(2541)] = 78630, + [SMALL_STATE(2542)] = 78659, + [SMALL_STATE(2543)] = 78686, + [SMALL_STATE(2544)] = 78709, + [SMALL_STATE(2545)] = 78734, + [SMALL_STATE(2546)] = 78763, + [SMALL_STATE(2547)] = 78792, + [SMALL_STATE(2548)] = 78821, + [SMALL_STATE(2549)] = 78844, + [SMALL_STATE(2550)] = 78873, + [SMALL_STATE(2551)] = 78902, + [SMALL_STATE(2552)] = 78925, + [SMALL_STATE(2553)] = 78954, + [SMALL_STATE(2554)] = 78981, + [SMALL_STATE(2555)] = 79008, + [SMALL_STATE(2556)] = 79031, + [SMALL_STATE(2557)] = 79054, + [SMALL_STATE(2558)] = 79077, + [SMALL_STATE(2559)] = 79098, + [SMALL_STATE(2560)] = 79121, + [SMALL_STATE(2561)] = 79150, + [SMALL_STATE(2562)] = 79171, + [SMALL_STATE(2563)] = 79189, + [SMALL_STATE(2564)] = 79215, + [SMALL_STATE(2565)] = 79241, + [SMALL_STATE(2566)] = 79265, + [SMALL_STATE(2567)] = 79289, + [SMALL_STATE(2568)] = 79315, + [SMALL_STATE(2569)] = 79341, + [SMALL_STATE(2570)] = 79361, + [SMALL_STATE(2571)] = 79385, + [SMALL_STATE(2572)] = 79407, + [SMALL_STATE(2573)] = 79433, + [SMALL_STATE(2574)] = 79459, + [SMALL_STATE(2575)] = 79481, + [SMALL_STATE(2576)] = 79499, + [SMALL_STATE(2577)] = 79517, + [SMALL_STATE(2578)] = 79535, + [SMALL_STATE(2579)] = 79561, + [SMALL_STATE(2580)] = 79583, + [SMALL_STATE(2581)] = 79603, + [SMALL_STATE(2582)] = 79621, + [SMALL_STATE(2583)] = 79641, + [SMALL_STATE(2584)] = 79659, + [SMALL_STATE(2585)] = 79685, + [SMALL_STATE(2586)] = 79711, + [SMALL_STATE(2587)] = 79729, + [SMALL_STATE(2588)] = 79755, + [SMALL_STATE(2589)] = 79781, + [SMALL_STATE(2590)] = 79807, + [SMALL_STATE(2591)] = 79833, + [SMALL_STATE(2592)] = 79857, + [SMALL_STATE(2593)] = 79883, + [SMALL_STATE(2594)] = 79905, + [SMALL_STATE(2595)] = 79931, + [SMALL_STATE(2596)] = 79957, + [SMALL_STATE(2597)] = 79975, + [SMALL_STATE(2598)] = 80001, + [SMALL_STATE(2599)] = 80027, + [SMALL_STATE(2600)] = 80045, + [SMALL_STATE(2601)] = 80063, + [SMALL_STATE(2602)] = 80089, + [SMALL_STATE(2603)] = 80113, + [SMALL_STATE(2604)] = 80139, + [SMALL_STATE(2605)] = 80163, + [SMALL_STATE(2606)] = 80189, + [SMALL_STATE(2607)] = 80215, + [SMALL_STATE(2608)] = 80239, + [SMALL_STATE(2609)] = 80265, + [SMALL_STATE(2610)] = 80291, + [SMALL_STATE(2611)] = 80317, + [SMALL_STATE(2612)] = 80335, + [SMALL_STATE(2613)] = 80359, + [SMALL_STATE(2614)] = 80377, + [SMALL_STATE(2615)] = 80395, + [SMALL_STATE(2616)] = 80413, + [SMALL_STATE(2617)] = 80439, + [SMALL_STATE(2618)] = 80465, + [SMALL_STATE(2619)] = 80489, + [SMALL_STATE(2620)] = 80507, + [SMALL_STATE(2621)] = 80525, + [SMALL_STATE(2622)] = 80551, + [SMALL_STATE(2623)] = 80573, + [SMALL_STATE(2624)] = 80599, + [SMALL_STATE(2625)] = 80623, + [SMALL_STATE(2626)] = 80649, + [SMALL_STATE(2627)] = 80671, + [SMALL_STATE(2628)] = 80689, + [SMALL_STATE(2629)] = 80707, + [SMALL_STATE(2630)] = 80733, + [SMALL_STATE(2631)] = 80759, + [SMALL_STATE(2632)] = 80785, + [SMALL_STATE(2633)] = 80811, + [SMALL_STATE(2634)] = 80837, + [SMALL_STATE(2635)] = 80863, + [SMALL_STATE(2636)] = 80889, + [SMALL_STATE(2637)] = 80909, + [SMALL_STATE(2638)] = 80927, + [SMALL_STATE(2639)] = 80945, + [SMALL_STATE(2640)] = 80969, + [SMALL_STATE(2641)] = 80995, + [SMALL_STATE(2642)] = 81021, + [SMALL_STATE(2643)] = 81047, + [SMALL_STATE(2644)] = 81073, + [SMALL_STATE(2645)] = 81099, + [SMALL_STATE(2646)] = 81117, + [SMALL_STATE(2647)] = 81143, + [SMALL_STATE(2648)] = 81161, + [SMALL_STATE(2649)] = 81179, + [SMALL_STATE(2650)] = 81205, + [SMALL_STATE(2651)] = 81231, + [SMALL_STATE(2652)] = 81255, + [SMALL_STATE(2653)] = 81281, + [SMALL_STATE(2654)] = 81305, + [SMALL_STATE(2655)] = 81329, + [SMALL_STATE(2656)] = 81347, + [SMALL_STATE(2657)] = 81365, + [SMALL_STATE(2658)] = 81389, + [SMALL_STATE(2659)] = 81415, + [SMALL_STATE(2660)] = 81441, + [SMALL_STATE(2661)] = 81463, + [SMALL_STATE(2662)] = 81489, + [SMALL_STATE(2663)] = 81515, + [SMALL_STATE(2664)] = 81541, + [SMALL_STATE(2665)] = 81563, + [SMALL_STATE(2666)] = 81589, + [SMALL_STATE(2667)] = 81615, + [SMALL_STATE(2668)] = 81639, + [SMALL_STATE(2669)] = 81665, + [SMALL_STATE(2670)] = 81683, + [SMALL_STATE(2671)] = 81709, + [SMALL_STATE(2672)] = 81735, + [SMALL_STATE(2673)] = 81754, + [SMALL_STATE(2674)] = 81777, + [SMALL_STATE(2675)] = 81800, + [SMALL_STATE(2676)] = 81823, + [SMALL_STATE(2677)] = 81844, + [SMALL_STATE(2678)] = 81865, + [SMALL_STATE(2679)] = 81888, + [SMALL_STATE(2680)] = 81911, + [SMALL_STATE(2681)] = 81934, + [SMALL_STATE(2682)] = 81957, + [SMALL_STATE(2683)] = 81980, + [SMALL_STATE(2684)] = 82003, + [SMALL_STATE(2685)] = 82022, + [SMALL_STATE(2686)] = 82041, + [SMALL_STATE(2687)] = 82064, + [SMALL_STATE(2688)] = 82083, + [SMALL_STATE(2689)] = 82102, + [SMALL_STATE(2690)] = 82125, + [SMALL_STATE(2691)] = 82146, + [SMALL_STATE(2692)] = 82167, + [SMALL_STATE(2693)] = 82186, + [SMALL_STATE(2694)] = 82209, + [SMALL_STATE(2695)] = 82232, + [SMALL_STATE(2696)] = 82255, + [SMALL_STATE(2697)] = 82278, + [SMALL_STATE(2698)] = 82301, + [SMALL_STATE(2699)] = 82324, + [SMALL_STATE(2700)] = 82343, + [SMALL_STATE(2701)] = 82366, + [SMALL_STATE(2702)] = 82389, + [SMALL_STATE(2703)] = 82412, + [SMALL_STATE(2704)] = 82429, + [SMALL_STATE(2705)] = 82452, + [SMALL_STATE(2706)] = 82475, + [SMALL_STATE(2707)] = 82498, + [SMALL_STATE(2708)] = 82521, + [SMALL_STATE(2709)] = 82544, + [SMALL_STATE(2710)] = 82567, + [SMALL_STATE(2711)] = 82586, + [SMALL_STATE(2712)] = 82609, + [SMALL_STATE(2713)] = 82632, + [SMALL_STATE(2714)] = 82651, + [SMALL_STATE(2715)] = 82674, + [SMALL_STATE(2716)] = 82697, + [SMALL_STATE(2717)] = 82720, + [SMALL_STATE(2718)] = 82743, + [SMALL_STATE(2719)] = 82766, + [SMALL_STATE(2720)] = 82789, + [SMALL_STATE(2721)] = 82812, + [SMALL_STATE(2722)] = 82835, + [SMALL_STATE(2723)] = 82858, + [SMALL_STATE(2724)] = 82881, + [SMALL_STATE(2725)] = 82904, + [SMALL_STATE(2726)] = 82927, + [SMALL_STATE(2727)] = 82950, + [SMALL_STATE(2728)] = 82973, + [SMALL_STATE(2729)] = 82996, + [SMALL_STATE(2730)] = 83019, + [SMALL_STATE(2731)] = 83042, + [SMALL_STATE(2732)] = 83065, + [SMALL_STATE(2733)] = 83088, + [SMALL_STATE(2734)] = 83111, + [SMALL_STATE(2735)] = 83134, + [SMALL_STATE(2736)] = 83157, + [SMALL_STATE(2737)] = 83174, + [SMALL_STATE(2738)] = 83197, + [SMALL_STATE(2739)] = 83220, + [SMALL_STATE(2740)] = 83243, + [SMALL_STATE(2741)] = 83266, + [SMALL_STATE(2742)] = 83289, + [SMALL_STATE(2743)] = 83312, + [SMALL_STATE(2744)] = 83335, + [SMALL_STATE(2745)] = 83358, + [SMALL_STATE(2746)] = 83381, + [SMALL_STATE(2747)] = 83400, + [SMALL_STATE(2748)] = 83423, + [SMALL_STATE(2749)] = 83444, + [SMALL_STATE(2750)] = 83463, + [SMALL_STATE(2751)] = 83486, + [SMALL_STATE(2752)] = 83509, + [SMALL_STATE(2753)] = 83530, + [SMALL_STATE(2754)] = 83549, + [SMALL_STATE(2755)] = 83572, + [SMALL_STATE(2756)] = 83595, + [SMALL_STATE(2757)] = 83618, + [SMALL_STATE(2758)] = 83641, + [SMALL_STATE(2759)] = 83660, + [SMALL_STATE(2760)] = 83683, + [SMALL_STATE(2761)] = 83706, + [SMALL_STATE(2762)] = 83729, + [SMALL_STATE(2763)] = 83752, + [SMALL_STATE(2764)] = 83773, + [SMALL_STATE(2765)] = 83796, + [SMALL_STATE(2766)] = 83819, + [SMALL_STATE(2767)] = 83842, + [SMALL_STATE(2768)] = 83865, + [SMALL_STATE(2769)] = 83888, + [SMALL_STATE(2770)] = 83911, + [SMALL_STATE(2771)] = 83930, + [SMALL_STATE(2772)] = 83953, + [SMALL_STATE(2773)] = 83976, + [SMALL_STATE(2774)] = 83999, + [SMALL_STATE(2775)] = 84022, + [SMALL_STATE(2776)] = 84045, + [SMALL_STATE(2777)] = 84068, + [SMALL_STATE(2778)] = 84091, + [SMALL_STATE(2779)] = 84114, + [SMALL_STATE(2780)] = 84137, + [SMALL_STATE(2781)] = 84156, + [SMALL_STATE(2782)] = 84179, + [SMALL_STATE(2783)] = 84202, + [SMALL_STATE(2784)] = 84225, + [SMALL_STATE(2785)] = 84248, + [SMALL_STATE(2786)] = 84271, + [SMALL_STATE(2787)] = 84294, + [SMALL_STATE(2788)] = 84317, + [SMALL_STATE(2789)] = 84340, + [SMALL_STATE(2790)] = 84363, + [SMALL_STATE(2791)] = 84384, + [SMALL_STATE(2792)] = 84403, + [SMALL_STATE(2793)] = 84426, + [SMALL_STATE(2794)] = 84449, + [SMALL_STATE(2795)] = 84472, + [SMALL_STATE(2796)] = 84495, + [SMALL_STATE(2797)] = 84518, + [SMALL_STATE(2798)] = 84541, + [SMALL_STATE(2799)] = 84562, + [SMALL_STATE(2800)] = 84585, + [SMALL_STATE(2801)] = 84608, + [SMALL_STATE(2802)] = 84631, + [SMALL_STATE(2803)] = 84654, + [SMALL_STATE(2804)] = 84677, + [SMALL_STATE(2805)] = 84700, + [SMALL_STATE(2806)] = 84723, + [SMALL_STATE(2807)] = 84746, + [SMALL_STATE(2808)] = 84769, + [SMALL_STATE(2809)] = 84792, + [SMALL_STATE(2810)] = 84811, + [SMALL_STATE(2811)] = 84834, + [SMALL_STATE(2812)] = 84857, + [SMALL_STATE(2813)] = 84878, + [SMALL_STATE(2814)] = 84901, + [SMALL_STATE(2815)] = 84924, + [SMALL_STATE(2816)] = 84947, + [SMALL_STATE(2817)] = 84970, + [SMALL_STATE(2818)] = 84991, + [SMALL_STATE(2819)] = 85014, + [SMALL_STATE(2820)] = 85037, + [SMALL_STATE(2821)] = 85060, + [SMALL_STATE(2822)] = 85083, + [SMALL_STATE(2823)] = 85106, + [SMALL_STATE(2824)] = 85129, + [SMALL_STATE(2825)] = 85152, + [SMALL_STATE(2826)] = 85173, + [SMALL_STATE(2827)] = 85192, + [SMALL_STATE(2828)] = 85213, + [SMALL_STATE(2829)] = 85234, + [SMALL_STATE(2830)] = 85257, + [SMALL_STATE(2831)] = 85280, + [SMALL_STATE(2832)] = 85303, + [SMALL_STATE(2833)] = 85326, + [SMALL_STATE(2834)] = 85345, + [SMALL_STATE(2835)] = 85368, + [SMALL_STATE(2836)] = 85391, + [SMALL_STATE(2837)] = 85412, + [SMALL_STATE(2838)] = 85435, + [SMALL_STATE(2839)] = 85458, + [SMALL_STATE(2840)] = 85481, + [SMALL_STATE(2841)] = 85504, + [SMALL_STATE(2842)] = 85527, + [SMALL_STATE(2843)] = 85550, + [SMALL_STATE(2844)] = 85573, + [SMALL_STATE(2845)] = 85596, + [SMALL_STATE(2846)] = 85619, + [SMALL_STATE(2847)] = 85642, + [SMALL_STATE(2848)] = 85663, + [SMALL_STATE(2849)] = 85686, + [SMALL_STATE(2850)] = 85709, + [SMALL_STATE(2851)] = 85732, + [SMALL_STATE(2852)] = 85755, + [SMALL_STATE(2853)] = 85774, + [SMALL_STATE(2854)] = 85797, + [SMALL_STATE(2855)] = 85820, + [SMALL_STATE(2856)] = 85839, + [SMALL_STATE(2857)] = 85860, + [SMALL_STATE(2858)] = 85877, + [SMALL_STATE(2859)] = 85900, + [SMALL_STATE(2860)] = 85921, + [SMALL_STATE(2861)] = 85944, + [SMALL_STATE(2862)] = 85967, + [SMALL_STATE(2863)] = 85986, + [SMALL_STATE(2864)] = 86007, + [SMALL_STATE(2865)] = 86030, + [SMALL_STATE(2866)] = 86053, + [SMALL_STATE(2867)] = 86076, + [SMALL_STATE(2868)] = 86099, + [SMALL_STATE(2869)] = 86122, + [SMALL_STATE(2870)] = 86145, + [SMALL_STATE(2871)] = 86166, + [SMALL_STATE(2872)] = 86185, + [SMALL_STATE(2873)] = 86208, + [SMALL_STATE(2874)] = 86231, + [SMALL_STATE(2875)] = 86254, + [SMALL_STATE(2876)] = 86275, + [SMALL_STATE(2877)] = 86296, + [SMALL_STATE(2878)] = 86317, + [SMALL_STATE(2879)] = 86340, + [SMALL_STATE(2880)] = 86357, + [SMALL_STATE(2881)] = 86380, + [SMALL_STATE(2882)] = 86403, + [SMALL_STATE(2883)] = 86426, + [SMALL_STATE(2884)] = 86449, + [SMALL_STATE(2885)] = 86472, + [SMALL_STATE(2886)] = 86495, + [SMALL_STATE(2887)] = 86518, + [SMALL_STATE(2888)] = 86539, + [SMALL_STATE(2889)] = 86562, + [SMALL_STATE(2890)] = 86581, + [SMALL_STATE(2891)] = 86604, + [SMALL_STATE(2892)] = 86627, + [SMALL_STATE(2893)] = 86650, + [SMALL_STATE(2894)] = 86673, + [SMALL_STATE(2895)] = 86696, + [SMALL_STATE(2896)] = 86719, + [SMALL_STATE(2897)] = 86742, + [SMALL_STATE(2898)] = 86765, + [SMALL_STATE(2899)] = 86788, + [SMALL_STATE(2900)] = 86811, + [SMALL_STATE(2901)] = 86832, + [SMALL_STATE(2902)] = 86855, + [SMALL_STATE(2903)] = 86878, + [SMALL_STATE(2904)] = 86901, + [SMALL_STATE(2905)] = 86924, + [SMALL_STATE(2906)] = 86947, + [SMALL_STATE(2907)] = 86970, + [SMALL_STATE(2908)] = 86993, + [SMALL_STATE(2909)] = 87016, + [SMALL_STATE(2910)] = 87033, + [SMALL_STATE(2911)] = 87054, + [SMALL_STATE(2912)] = 87077, + [SMALL_STATE(2913)] = 87100, + [SMALL_STATE(2914)] = 87123, + [SMALL_STATE(2915)] = 87142, + [SMALL_STATE(2916)] = 87161, + [SMALL_STATE(2917)] = 87184, + [SMALL_STATE(2918)] = 87207, + [SMALL_STATE(2919)] = 87230, + [SMALL_STATE(2920)] = 87253, + [SMALL_STATE(2921)] = 87272, + [SMALL_STATE(2922)] = 87291, + [SMALL_STATE(2923)] = 87310, + [SMALL_STATE(2924)] = 87333, + [SMALL_STATE(2925)] = 87356, + [SMALL_STATE(2926)] = 87379, + [SMALL_STATE(2927)] = 87398, + [SMALL_STATE(2928)] = 87421, + [SMALL_STATE(2929)] = 87444, + [SMALL_STATE(2930)] = 87463, + [SMALL_STATE(2931)] = 87486, + [SMALL_STATE(2932)] = 87509, + [SMALL_STATE(2933)] = 87532, + [SMALL_STATE(2934)] = 87555, + [SMALL_STATE(2935)] = 87575, + [SMALL_STATE(2936)] = 87591, + [SMALL_STATE(2937)] = 87611, + [SMALL_STATE(2938)] = 87631, + [SMALL_STATE(2939)] = 87651, + [SMALL_STATE(2940)] = 87671, + [SMALL_STATE(2941)] = 87691, + [SMALL_STATE(2942)] = 87711, + [SMALL_STATE(2943)] = 87727, + [SMALL_STATE(2944)] = 87747, + [SMALL_STATE(2945)] = 87767, + [SMALL_STATE(2946)] = 87787, + [SMALL_STATE(2947)] = 87807, + [SMALL_STATE(2948)] = 87825, + [SMALL_STATE(2949)] = 87845, + [SMALL_STATE(2950)] = 87865, + [SMALL_STATE(2951)] = 87885, + [SMALL_STATE(2952)] = 87905, + [SMALL_STATE(2953)] = 87925, + [SMALL_STATE(2954)] = 87945, + [SMALL_STATE(2955)] = 87965, + [SMALL_STATE(2956)] = 87983, + [SMALL_STATE(2957)] = 88003, + [SMALL_STATE(2958)] = 88023, + [SMALL_STATE(2959)] = 88043, + [SMALL_STATE(2960)] = 88063, + [SMALL_STATE(2961)] = 88083, + [SMALL_STATE(2962)] = 88101, + [SMALL_STATE(2963)] = 88121, + [SMALL_STATE(2964)] = 88139, + [SMALL_STATE(2965)] = 88157, + [SMALL_STATE(2966)] = 88177, + [SMALL_STATE(2967)] = 88197, + [SMALL_STATE(2968)] = 88213, + [SMALL_STATE(2969)] = 88233, + [SMALL_STATE(2970)] = 88253, + [SMALL_STATE(2971)] = 88273, + [SMALL_STATE(2972)] = 88293, + [SMALL_STATE(2973)] = 88309, + [SMALL_STATE(2974)] = 88329, + [SMALL_STATE(2975)] = 88349, + [SMALL_STATE(2976)] = 88369, + [SMALL_STATE(2977)] = 88389, + [SMALL_STATE(2978)] = 88405, + [SMALL_STATE(2979)] = 88425, + [SMALL_STATE(2980)] = 88445, + [SMALL_STATE(2981)] = 88465, + [SMALL_STATE(2982)] = 88485, + [SMALL_STATE(2983)] = 88505, + [SMALL_STATE(2984)] = 88525, + [SMALL_STATE(2985)] = 88541, + [SMALL_STATE(2986)] = 88561, + [SMALL_STATE(2987)] = 88581, + [SMALL_STATE(2988)] = 88601, + [SMALL_STATE(2989)] = 88621, + [SMALL_STATE(2990)] = 88641, + [SMALL_STATE(2991)] = 88661, + [SMALL_STATE(2992)] = 88679, + [SMALL_STATE(2993)] = 88699, + [SMALL_STATE(2994)] = 88719, + [SMALL_STATE(2995)] = 88739, + [SMALL_STATE(2996)] = 88759, + [SMALL_STATE(2997)] = 88779, + [SMALL_STATE(2998)] = 88799, + [SMALL_STATE(2999)] = 88819, + [SMALL_STATE(3000)] = 88839, + [SMALL_STATE(3001)] = 88859, + [SMALL_STATE(3002)] = 88875, + [SMALL_STATE(3003)] = 88895, + [SMALL_STATE(3004)] = 88913, + [SMALL_STATE(3005)] = 88933, + [SMALL_STATE(3006)] = 88953, + [SMALL_STATE(3007)] = 88971, + [SMALL_STATE(3008)] = 88991, + [SMALL_STATE(3009)] = 89011, + [SMALL_STATE(3010)] = 89031, + [SMALL_STATE(3011)] = 89051, + [SMALL_STATE(3012)] = 89071, + [SMALL_STATE(3013)] = 89091, + [SMALL_STATE(3014)] = 89109, + [SMALL_STATE(3015)] = 89125, + [SMALL_STATE(3016)] = 89145, + [SMALL_STATE(3017)] = 89165, + [SMALL_STATE(3018)] = 89185, + [SMALL_STATE(3019)] = 89205, + [SMALL_STATE(3020)] = 89223, + [SMALL_STATE(3021)] = 89239, + [SMALL_STATE(3022)] = 89259, + [SMALL_STATE(3023)] = 89279, + [SMALL_STATE(3024)] = 89299, + [SMALL_STATE(3025)] = 89319, + [SMALL_STATE(3026)] = 89339, + [SMALL_STATE(3027)] = 89357, + [SMALL_STATE(3028)] = 89377, + [SMALL_STATE(3029)] = 89397, + [SMALL_STATE(3030)] = 89417, + [SMALL_STATE(3031)] = 89437, + [SMALL_STATE(3032)] = 89455, + [SMALL_STATE(3033)] = 89475, + [SMALL_STATE(3034)] = 89495, + [SMALL_STATE(3035)] = 89511, + [SMALL_STATE(3036)] = 89531, + [SMALL_STATE(3037)] = 89549, + [SMALL_STATE(3038)] = 89569, + [SMALL_STATE(3039)] = 89589, + [SMALL_STATE(3040)] = 89607, + [SMALL_STATE(3041)] = 89625, + [SMALL_STATE(3042)] = 89643, + [SMALL_STATE(3043)] = 89661, + [SMALL_STATE(3044)] = 89681, + [SMALL_STATE(3045)] = 89699, + [SMALL_STATE(3046)] = 89719, + [SMALL_STATE(3047)] = 89739, + [SMALL_STATE(3048)] = 89759, + [SMALL_STATE(3049)] = 89779, + [SMALL_STATE(3050)] = 89799, + [SMALL_STATE(3051)] = 89819, + [SMALL_STATE(3052)] = 89837, + [SMALL_STATE(3053)] = 89853, + [SMALL_STATE(3054)] = 89873, + [SMALL_STATE(3055)] = 89893, + [SMALL_STATE(3056)] = 89913, + [SMALL_STATE(3057)] = 89933, + [SMALL_STATE(3058)] = 89951, + [SMALL_STATE(3059)] = 89971, + [SMALL_STATE(3060)] = 89991, + [SMALL_STATE(3061)] = 90011, + [SMALL_STATE(3062)] = 90031, + [SMALL_STATE(3063)] = 90047, + [SMALL_STATE(3064)] = 90065, + [SMALL_STATE(3065)] = 90085, + [SMALL_STATE(3066)] = 90105, + [SMALL_STATE(3067)] = 90125, + [SMALL_STATE(3068)] = 90145, + [SMALL_STATE(3069)] = 90161, + [SMALL_STATE(3070)] = 90177, + [SMALL_STATE(3071)] = 90195, + [SMALL_STATE(3072)] = 90211, + [SMALL_STATE(3073)] = 90227, + [SMALL_STATE(3074)] = 90243, + [SMALL_STATE(3075)] = 90259, + [SMALL_STATE(3076)] = 90275, + [SMALL_STATE(3077)] = 90295, + [SMALL_STATE(3078)] = 90315, + [SMALL_STATE(3079)] = 90335, + [SMALL_STATE(3080)] = 90351, + [SMALL_STATE(3081)] = 90371, + [SMALL_STATE(3082)] = 90391, + [SMALL_STATE(3083)] = 90411, + [SMALL_STATE(3084)] = 90431, + [SMALL_STATE(3085)] = 90451, + [SMALL_STATE(3086)] = 90471, + [SMALL_STATE(3087)] = 90491, + [SMALL_STATE(3088)] = 90507, + [SMALL_STATE(3089)] = 90527, + [SMALL_STATE(3090)] = 90547, + [SMALL_STATE(3091)] = 90563, + [SMALL_STATE(3092)] = 90583, + [SMALL_STATE(3093)] = 90599, + [SMALL_STATE(3094)] = 90619, + [SMALL_STATE(3095)] = 90635, + [SMALL_STATE(3096)] = 90655, + [SMALL_STATE(3097)] = 90675, + [SMALL_STATE(3098)] = 90695, + [SMALL_STATE(3099)] = 90715, + [SMALL_STATE(3100)] = 90735, + [SMALL_STATE(3101)] = 90753, + [SMALL_STATE(3102)] = 90773, + [SMALL_STATE(3103)] = 90789, + [SMALL_STATE(3104)] = 90809, + [SMALL_STATE(3105)] = 90829, + [SMALL_STATE(3106)] = 90849, + [SMALL_STATE(3107)] = 90869, + [SMALL_STATE(3108)] = 90887, + [SMALL_STATE(3109)] = 90907, + [SMALL_STATE(3110)] = 90927, + [SMALL_STATE(3111)] = 90947, + [SMALL_STATE(3112)] = 90965, + [SMALL_STATE(3113)] = 90983, + [SMALL_STATE(3114)] = 91003, + [SMALL_STATE(3115)] = 91021, + [SMALL_STATE(3116)] = 91041, + [SMALL_STATE(3117)] = 91061, + [SMALL_STATE(3118)] = 91079, + [SMALL_STATE(3119)] = 91099, + [SMALL_STATE(3120)] = 91119, + [SMALL_STATE(3121)] = 91139, + [SMALL_STATE(3122)] = 91157, + [SMALL_STATE(3123)] = 91177, + [SMALL_STATE(3124)] = 91197, + [SMALL_STATE(3125)] = 91217, + [SMALL_STATE(3126)] = 91237, + [SMALL_STATE(3127)] = 91257, + [SMALL_STATE(3128)] = 91277, + [SMALL_STATE(3129)] = 91297, + [SMALL_STATE(3130)] = 91317, + [SMALL_STATE(3131)] = 91333, + [SMALL_STATE(3132)] = 91353, + [SMALL_STATE(3133)] = 91369, + [SMALL_STATE(3134)] = 91389, + [SMALL_STATE(3135)] = 91409, + [SMALL_STATE(3136)] = 91429, + [SMALL_STATE(3137)] = 91449, + [SMALL_STATE(3138)] = 91465, + [SMALL_STATE(3139)] = 91485, + [SMALL_STATE(3140)] = 91505, + [SMALL_STATE(3141)] = 91525, + [SMALL_STATE(3142)] = 91541, + [SMALL_STATE(3143)] = 91559, + [SMALL_STATE(3144)] = 91579, + [SMALL_STATE(3145)] = 91599, + [SMALL_STATE(3146)] = 91615, + [SMALL_STATE(3147)] = 91635, + [SMALL_STATE(3148)] = 91651, + [SMALL_STATE(3149)] = 91667, + [SMALL_STATE(3150)] = 91683, + [SMALL_STATE(3151)] = 91699, + [SMALL_STATE(3152)] = 91715, + [SMALL_STATE(3153)] = 91731, + [SMALL_STATE(3154)] = 91747, + [SMALL_STATE(3155)] = 91763, + [SMALL_STATE(3156)] = 91781, + [SMALL_STATE(3157)] = 91797, + [SMALL_STATE(3158)] = 91817, + [SMALL_STATE(3159)] = 91837, + [SMALL_STATE(3160)] = 91857, + [SMALL_STATE(3161)] = 91877, + [SMALL_STATE(3162)] = 91893, + [SMALL_STATE(3163)] = 91913, + [SMALL_STATE(3164)] = 91933, + [SMALL_STATE(3165)] = 91953, + [SMALL_STATE(3166)] = 91971, + [SMALL_STATE(3167)] = 91991, + [SMALL_STATE(3168)] = 92011, + [SMALL_STATE(3169)] = 92031, + [SMALL_STATE(3170)] = 92051, + [SMALL_STATE(3171)] = 92071, + [SMALL_STATE(3172)] = 92089, + [SMALL_STATE(3173)] = 92109, + [SMALL_STATE(3174)] = 92125, + [SMALL_STATE(3175)] = 92145, + [SMALL_STATE(3176)] = 92165, + [SMALL_STATE(3177)] = 92185, + [SMALL_STATE(3178)] = 92203, + [SMALL_STATE(3179)] = 92223, + [SMALL_STATE(3180)] = 92241, + [SMALL_STATE(3181)] = 92259, + [SMALL_STATE(3182)] = 92277, + [SMALL_STATE(3183)] = 92295, + [SMALL_STATE(3184)] = 92315, + [SMALL_STATE(3185)] = 92331, + [SMALL_STATE(3186)] = 92351, + [SMALL_STATE(3187)] = 92367, + [SMALL_STATE(3188)] = 92387, + [SMALL_STATE(3189)] = 92407, + [SMALL_STATE(3190)] = 92427, + [SMALL_STATE(3191)] = 92447, + [SMALL_STATE(3192)] = 92463, + [SMALL_STATE(3193)] = 92479, + [SMALL_STATE(3194)] = 92499, + [SMALL_STATE(3195)] = 92519, + [SMALL_STATE(3196)] = 92539, + [SMALL_STATE(3197)] = 92555, + [SMALL_STATE(3198)] = 92575, + [SMALL_STATE(3199)] = 92595, + [SMALL_STATE(3200)] = 92615, + [SMALL_STATE(3201)] = 92635, + [SMALL_STATE(3202)] = 92651, + [SMALL_STATE(3203)] = 92671, + [SMALL_STATE(3204)] = 92687, + [SMALL_STATE(3205)] = 92705, + [SMALL_STATE(3206)] = 92725, + [SMALL_STATE(3207)] = 92745, + [SMALL_STATE(3208)] = 92765, + [SMALL_STATE(3209)] = 92781, + [SMALL_STATE(3210)] = 92797, + [SMALL_STATE(3211)] = 92815, + [SMALL_STATE(3212)] = 92831, + [SMALL_STATE(3213)] = 92851, + [SMALL_STATE(3214)] = 92867, + [SMALL_STATE(3215)] = 92885, + [SMALL_STATE(3216)] = 92901, + [SMALL_STATE(3217)] = 92921, + [SMALL_STATE(3218)] = 92941, + [SMALL_STATE(3219)] = 92961, + [SMALL_STATE(3220)] = 92979, + [SMALL_STATE(3221)] = 92999, + [SMALL_STATE(3222)] = 93015, + [SMALL_STATE(3223)] = 93035, + [SMALL_STATE(3224)] = 93055, + [SMALL_STATE(3225)] = 93075, + [SMALL_STATE(3226)] = 93095, + [SMALL_STATE(3227)] = 93115, + [SMALL_STATE(3228)] = 93135, + [SMALL_STATE(3229)] = 93155, + [SMALL_STATE(3230)] = 93175, + [SMALL_STATE(3231)] = 93195, + [SMALL_STATE(3232)] = 93215, + [SMALL_STATE(3233)] = 93231, + [SMALL_STATE(3234)] = 93251, + [SMALL_STATE(3235)] = 93271, + [SMALL_STATE(3236)] = 93291, + [SMALL_STATE(3237)] = 93309, + [SMALL_STATE(3238)] = 93329, + [SMALL_STATE(3239)] = 93349, + [SMALL_STATE(3240)] = 93365, + [SMALL_STATE(3241)] = 93383, + [SMALL_STATE(3242)] = 93403, + [SMALL_STATE(3243)] = 93420, + [SMALL_STATE(3244)] = 93437, + [SMALL_STATE(3245)] = 93454, + [SMALL_STATE(3246)] = 93471, + [SMALL_STATE(3247)] = 93486, + [SMALL_STATE(3248)] = 93501, + [SMALL_STATE(3249)] = 93518, + [SMALL_STATE(3250)] = 93535, + [SMALL_STATE(3251)] = 93550, + [SMALL_STATE(3252)] = 93567, + [SMALL_STATE(3253)] = 93584, + [SMALL_STATE(3254)] = 93601, + [SMALL_STATE(3255)] = 93616, + [SMALL_STATE(3256)] = 93633, + [SMALL_STATE(3257)] = 93650, + [SMALL_STATE(3258)] = 93667, + [SMALL_STATE(3259)] = 93684, + [SMALL_STATE(3260)] = 93699, + [SMALL_STATE(3261)] = 93714, + [SMALL_STATE(3262)] = 93729, + [SMALL_STATE(3263)] = 93746, + [SMALL_STATE(3264)] = 93763, + [SMALL_STATE(3265)] = 93780, + [SMALL_STATE(3266)] = 93797, + [SMALL_STATE(3267)] = 93814, + [SMALL_STATE(3268)] = 93831, + [SMALL_STATE(3269)] = 93848, + [SMALL_STATE(3270)] = 93865, + [SMALL_STATE(3271)] = 93880, + [SMALL_STATE(3272)] = 93897, + [SMALL_STATE(3273)] = 93914, + [SMALL_STATE(3274)] = 93929, + [SMALL_STATE(3275)] = 93946, + [SMALL_STATE(3276)] = 93963, + [SMALL_STATE(3277)] = 93980, + [SMALL_STATE(3278)] = 93997, + [SMALL_STATE(3279)] = 94014, + [SMALL_STATE(3280)] = 94031, + [SMALL_STATE(3281)] = 94048, + [SMALL_STATE(3282)] = 94063, + [SMALL_STATE(3283)] = 94080, + [SMALL_STATE(3284)] = 94097, + [SMALL_STATE(3285)] = 94112, + [SMALL_STATE(3286)] = 94129, + [SMALL_STATE(3287)] = 94146, + [SMALL_STATE(3288)] = 94163, + [SMALL_STATE(3289)] = 94180, + [SMALL_STATE(3290)] = 94195, + [SMALL_STATE(3291)] = 94212, + [SMALL_STATE(3292)] = 94229, + [SMALL_STATE(3293)] = 94246, + [SMALL_STATE(3294)] = 94263, + [SMALL_STATE(3295)] = 94280, + [SMALL_STATE(3296)] = 94295, + [SMALL_STATE(3297)] = 94312, + [SMALL_STATE(3298)] = 94327, + [SMALL_STATE(3299)] = 94344, + [SMALL_STATE(3300)] = 94361, + [SMALL_STATE(3301)] = 94378, + [SMALL_STATE(3302)] = 94395, + [SMALL_STATE(3303)] = 94410, + [SMALL_STATE(3304)] = 94427, + [SMALL_STATE(3305)] = 94442, + [SMALL_STATE(3306)] = 94459, + [SMALL_STATE(3307)] = 94476, + [SMALL_STATE(3308)] = 94493, + [SMALL_STATE(3309)] = 94510, + [SMALL_STATE(3310)] = 94527, + [SMALL_STATE(3311)] = 94544, + [SMALL_STATE(3312)] = 94561, + [SMALL_STATE(3313)] = 94576, + [SMALL_STATE(3314)] = 94593, + [SMALL_STATE(3315)] = 94610, + [SMALL_STATE(3316)] = 94627, + [SMALL_STATE(3317)] = 94644, + [SMALL_STATE(3318)] = 94661, + [SMALL_STATE(3319)] = 94676, + [SMALL_STATE(3320)] = 94693, + [SMALL_STATE(3321)] = 94708, + [SMALL_STATE(3322)] = 94723, + [SMALL_STATE(3323)] = 94740, + [SMALL_STATE(3324)] = 94757, + [SMALL_STATE(3325)] = 94774, + [SMALL_STATE(3326)] = 94789, + [SMALL_STATE(3327)] = 94804, + [SMALL_STATE(3328)] = 94821, + [SMALL_STATE(3329)] = 94838, + [SMALL_STATE(3330)] = 94853, + [SMALL_STATE(3331)] = 94870, + [SMALL_STATE(3332)] = 94887, + [SMALL_STATE(3333)] = 94902, + [SMALL_STATE(3334)] = 94917, + [SMALL_STATE(3335)] = 94934, + [SMALL_STATE(3336)] = 94951, + [SMALL_STATE(3337)] = 94968, + [SMALL_STATE(3338)] = 94985, + [SMALL_STATE(3339)] = 95002, + [SMALL_STATE(3340)] = 95019, + [SMALL_STATE(3341)] = 95036, + [SMALL_STATE(3342)] = 95051, + [SMALL_STATE(3343)] = 95068, + [SMALL_STATE(3344)] = 95083, + [SMALL_STATE(3345)] = 95100, + [SMALL_STATE(3346)] = 95117, + [SMALL_STATE(3347)] = 95134, + [SMALL_STATE(3348)] = 95151, + [SMALL_STATE(3349)] = 95168, + [SMALL_STATE(3350)] = 95185, + [SMALL_STATE(3351)] = 95202, + [SMALL_STATE(3352)] = 95219, + [SMALL_STATE(3353)] = 95236, + [SMALL_STATE(3354)] = 95253, + [SMALL_STATE(3355)] = 95270, + [SMALL_STATE(3356)] = 95285, + [SMALL_STATE(3357)] = 95302, + [SMALL_STATE(3358)] = 95319, + [SMALL_STATE(3359)] = 95336, + [SMALL_STATE(3360)] = 95353, + [SMALL_STATE(3361)] = 95370, + [SMALL_STATE(3362)] = 95387, + [SMALL_STATE(3363)] = 95404, + [SMALL_STATE(3364)] = 95421, + [SMALL_STATE(3365)] = 95438, + [SMALL_STATE(3366)] = 95453, + [SMALL_STATE(3367)] = 95468, + [SMALL_STATE(3368)] = 95485, + [SMALL_STATE(3369)] = 95502, + [SMALL_STATE(3370)] = 95519, + [SMALL_STATE(3371)] = 95536, + [SMALL_STATE(3372)] = 95553, + [SMALL_STATE(3373)] = 95570, + [SMALL_STATE(3374)] = 95587, + [SMALL_STATE(3375)] = 95604, + [SMALL_STATE(3376)] = 95621, + [SMALL_STATE(3377)] = 95638, + [SMALL_STATE(3378)] = 95655, + [SMALL_STATE(3379)] = 95672, + [SMALL_STATE(3380)] = 95689, + [SMALL_STATE(3381)] = 95706, + [SMALL_STATE(3382)] = 95723, + [SMALL_STATE(3383)] = 95740, + [SMALL_STATE(3384)] = 95757, + [SMALL_STATE(3385)] = 95774, + [SMALL_STATE(3386)] = 95791, + [SMALL_STATE(3387)] = 95808, + [SMALL_STATE(3388)] = 95825, + [SMALL_STATE(3389)] = 95842, + [SMALL_STATE(3390)] = 95859, + [SMALL_STATE(3391)] = 95876, + [SMALL_STATE(3392)] = 95893, + [SMALL_STATE(3393)] = 95910, + [SMALL_STATE(3394)] = 95925, + [SMALL_STATE(3395)] = 95942, + [SMALL_STATE(3396)] = 95957, + [SMALL_STATE(3397)] = 95974, + [SMALL_STATE(3398)] = 95991, + [SMALL_STATE(3399)] = 96008, + [SMALL_STATE(3400)] = 96025, + [SMALL_STATE(3401)] = 96042, + [SMALL_STATE(3402)] = 96057, + [SMALL_STATE(3403)] = 96074, + [SMALL_STATE(3404)] = 96091, + [SMALL_STATE(3405)] = 96108, + [SMALL_STATE(3406)] = 96125, + [SMALL_STATE(3407)] = 96142, + [SMALL_STATE(3408)] = 96157, + [SMALL_STATE(3409)] = 96174, + [SMALL_STATE(3410)] = 96191, + [SMALL_STATE(3411)] = 96208, + [SMALL_STATE(3412)] = 96225, + [SMALL_STATE(3413)] = 96242, + [SMALL_STATE(3414)] = 96257, + [SMALL_STATE(3415)] = 96274, + [SMALL_STATE(3416)] = 96289, + [SMALL_STATE(3417)] = 96306, + [SMALL_STATE(3418)] = 96323, + [SMALL_STATE(3419)] = 96340, + [SMALL_STATE(3420)] = 96355, + [SMALL_STATE(3421)] = 96372, + [SMALL_STATE(3422)] = 96389, + [SMALL_STATE(3423)] = 96406, + [SMALL_STATE(3424)] = 96421, + [SMALL_STATE(3425)] = 96438, + [SMALL_STATE(3426)] = 96455, + [SMALL_STATE(3427)] = 96472, + [SMALL_STATE(3428)] = 96489, + [SMALL_STATE(3429)] = 96506, + [SMALL_STATE(3430)] = 96521, + [SMALL_STATE(3431)] = 96536, + [SMALL_STATE(3432)] = 96553, + [SMALL_STATE(3433)] = 96570, + [SMALL_STATE(3434)] = 96587, + [SMALL_STATE(3435)] = 96604, + [SMALL_STATE(3436)] = 96621, + [SMALL_STATE(3437)] = 96638, + [SMALL_STATE(3438)] = 96655, + [SMALL_STATE(3439)] = 96672, + [SMALL_STATE(3440)] = 96689, + [SMALL_STATE(3441)] = 96706, + [SMALL_STATE(3442)] = 96723, + [SMALL_STATE(3443)] = 96740, + [SMALL_STATE(3444)] = 96757, + [SMALL_STATE(3445)] = 96774, + [SMALL_STATE(3446)] = 96791, + [SMALL_STATE(3447)] = 96808, + [SMALL_STATE(3448)] = 96825, + [SMALL_STATE(3449)] = 96842, + [SMALL_STATE(3450)] = 96859, + [SMALL_STATE(3451)] = 96876, + [SMALL_STATE(3452)] = 96893, + [SMALL_STATE(3453)] = 96910, + [SMALL_STATE(3454)] = 96927, + [SMALL_STATE(3455)] = 96944, + [SMALL_STATE(3456)] = 96961, + [SMALL_STATE(3457)] = 96976, + [SMALL_STATE(3458)] = 96991, + [SMALL_STATE(3459)] = 97006, + [SMALL_STATE(3460)] = 97023, + [SMALL_STATE(3461)] = 97040, + [SMALL_STATE(3462)] = 97057, + [SMALL_STATE(3463)] = 97072, + [SMALL_STATE(3464)] = 97089, + [SMALL_STATE(3465)] = 97106, + [SMALL_STATE(3466)] = 97123, + [SMALL_STATE(3467)] = 97140, + [SMALL_STATE(3468)] = 97157, + [SMALL_STATE(3469)] = 97174, + [SMALL_STATE(3470)] = 97191, + [SMALL_STATE(3471)] = 97208, + [SMALL_STATE(3472)] = 97225, + [SMALL_STATE(3473)] = 97242, + [SMALL_STATE(3474)] = 97259, + [SMALL_STATE(3475)] = 97276, + [SMALL_STATE(3476)] = 97293, + [SMALL_STATE(3477)] = 97310, + [SMALL_STATE(3478)] = 97327, + [SMALL_STATE(3479)] = 97344, + [SMALL_STATE(3480)] = 97361, + [SMALL_STATE(3481)] = 97378, + [SMALL_STATE(3482)] = 97395, + [SMALL_STATE(3483)] = 97410, + [SMALL_STATE(3484)] = 97427, + [SMALL_STATE(3485)] = 97444, + [SMALL_STATE(3486)] = 97461, + [SMALL_STATE(3487)] = 97478, + [SMALL_STATE(3488)] = 97495, + [SMALL_STATE(3489)] = 97512, + [SMALL_STATE(3490)] = 97529, + [SMALL_STATE(3491)] = 97546, + [SMALL_STATE(3492)] = 97563, + [SMALL_STATE(3493)] = 97580, + [SMALL_STATE(3494)] = 97597, + [SMALL_STATE(3495)] = 97614, + [SMALL_STATE(3496)] = 97631, + [SMALL_STATE(3497)] = 97648, + [SMALL_STATE(3498)] = 97665, + [SMALL_STATE(3499)] = 97680, + [SMALL_STATE(3500)] = 97697, + [SMALL_STATE(3501)] = 97712, + [SMALL_STATE(3502)] = 97727, + [SMALL_STATE(3503)] = 97742, + [SMALL_STATE(3504)] = 97759, + [SMALL_STATE(3505)] = 97776, + [SMALL_STATE(3506)] = 97793, + [SMALL_STATE(3507)] = 97808, + [SMALL_STATE(3508)] = 97825, + [SMALL_STATE(3509)] = 97842, + [SMALL_STATE(3510)] = 97859, + [SMALL_STATE(3511)] = 97876, + [SMALL_STATE(3512)] = 97893, + [SMALL_STATE(3513)] = 97908, + [SMALL_STATE(3514)] = 97925, + [SMALL_STATE(3515)] = 97942, + [SMALL_STATE(3516)] = 97959, + [SMALL_STATE(3517)] = 97976, + [SMALL_STATE(3518)] = 97993, + [SMALL_STATE(3519)] = 98008, + [SMALL_STATE(3520)] = 98025, + [SMALL_STATE(3521)] = 98040, + [SMALL_STATE(3522)] = 98057, + [SMALL_STATE(3523)] = 98074, + [SMALL_STATE(3524)] = 98091, + [SMALL_STATE(3525)] = 98106, + [SMALL_STATE(3526)] = 98123, + [SMALL_STATE(3527)] = 98138, + [SMALL_STATE(3528)] = 98155, + [SMALL_STATE(3529)] = 98172, + [SMALL_STATE(3530)] = 98189, + [SMALL_STATE(3531)] = 98204, + [SMALL_STATE(3532)] = 98221, + [SMALL_STATE(3533)] = 98236, + [SMALL_STATE(3534)] = 98253, + [SMALL_STATE(3535)] = 98270, + [SMALL_STATE(3536)] = 98287, + [SMALL_STATE(3537)] = 98304, + [SMALL_STATE(3538)] = 98321, + [SMALL_STATE(3539)] = 98338, + [SMALL_STATE(3540)] = 98355, + [SMALL_STATE(3541)] = 98372, + [SMALL_STATE(3542)] = 98389, + [SMALL_STATE(3543)] = 98406, + [SMALL_STATE(3544)] = 98423, + [SMALL_STATE(3545)] = 98440, + [SMALL_STATE(3546)] = 98457, + [SMALL_STATE(3547)] = 98474, + [SMALL_STATE(3548)] = 98491, + [SMALL_STATE(3549)] = 98508, + [SMALL_STATE(3550)] = 98525, + [SMALL_STATE(3551)] = 98539, + [SMALL_STATE(3552)] = 98553, + [SMALL_STATE(3553)] = 98567, + [SMALL_STATE(3554)] = 98581, + [SMALL_STATE(3555)] = 98595, + [SMALL_STATE(3556)] = 98609, + [SMALL_STATE(3557)] = 98623, + [SMALL_STATE(3558)] = 98637, + [SMALL_STATE(3559)] = 98651, + [SMALL_STATE(3560)] = 98665, + [SMALL_STATE(3561)] = 98679, + [SMALL_STATE(3562)] = 98693, + [SMALL_STATE(3563)] = 98707, + [SMALL_STATE(3564)] = 98721, + [SMALL_STATE(3565)] = 98735, + [SMALL_STATE(3566)] = 98749, + [SMALL_STATE(3567)] = 98763, + [SMALL_STATE(3568)] = 98777, + [SMALL_STATE(3569)] = 98791, + [SMALL_STATE(3570)] = 98805, + [SMALL_STATE(3571)] = 98819, + [SMALL_STATE(3572)] = 98833, + [SMALL_STATE(3573)] = 98847, + [SMALL_STATE(3574)] = 98861, + [SMALL_STATE(3575)] = 98875, + [SMALL_STATE(3576)] = 98889, + [SMALL_STATE(3577)] = 98903, + [SMALL_STATE(3578)] = 98917, + [SMALL_STATE(3579)] = 98931, + [SMALL_STATE(3580)] = 98945, + [SMALL_STATE(3581)] = 98959, + [SMALL_STATE(3582)] = 98973, + [SMALL_STATE(3583)] = 98987, + [SMALL_STATE(3584)] = 99001, + [SMALL_STATE(3585)] = 99015, + [SMALL_STATE(3586)] = 99029, + [SMALL_STATE(3587)] = 99043, + [SMALL_STATE(3588)] = 99057, + [SMALL_STATE(3589)] = 99071, + [SMALL_STATE(3590)] = 99085, + [SMALL_STATE(3591)] = 99099, + [SMALL_STATE(3592)] = 99113, + [SMALL_STATE(3593)] = 99127, + [SMALL_STATE(3594)] = 99141, + [SMALL_STATE(3595)] = 99155, + [SMALL_STATE(3596)] = 99169, + [SMALL_STATE(3597)] = 99183, + [SMALL_STATE(3598)] = 99197, + [SMALL_STATE(3599)] = 99211, + [SMALL_STATE(3600)] = 99225, + [SMALL_STATE(3601)] = 99239, + [SMALL_STATE(3602)] = 99253, + [SMALL_STATE(3603)] = 99267, + [SMALL_STATE(3604)] = 99281, + [SMALL_STATE(3605)] = 99295, + [SMALL_STATE(3606)] = 99309, + [SMALL_STATE(3607)] = 99323, + [SMALL_STATE(3608)] = 99337, + [SMALL_STATE(3609)] = 99351, + [SMALL_STATE(3610)] = 99365, + [SMALL_STATE(3611)] = 99379, + [SMALL_STATE(3612)] = 99393, + [SMALL_STATE(3613)] = 99407, + [SMALL_STATE(3614)] = 99421, + [SMALL_STATE(3615)] = 99435, + [SMALL_STATE(3616)] = 99449, + [SMALL_STATE(3617)] = 99463, + [SMALL_STATE(3618)] = 99477, + [SMALL_STATE(3619)] = 99491, + [SMALL_STATE(3620)] = 99505, + [SMALL_STATE(3621)] = 99519, + [SMALL_STATE(3622)] = 99533, + [SMALL_STATE(3623)] = 99547, + [SMALL_STATE(3624)] = 99561, + [SMALL_STATE(3625)] = 99575, + [SMALL_STATE(3626)] = 99589, + [SMALL_STATE(3627)] = 99603, + [SMALL_STATE(3628)] = 99617, + [SMALL_STATE(3629)] = 99631, + [SMALL_STATE(3630)] = 99645, + [SMALL_STATE(3631)] = 99659, + [SMALL_STATE(3632)] = 99673, + [SMALL_STATE(3633)] = 99687, + [SMALL_STATE(3634)] = 99701, + [SMALL_STATE(3635)] = 99715, + [SMALL_STATE(3636)] = 99729, + [SMALL_STATE(3637)] = 99743, + [SMALL_STATE(3638)] = 99757, + [SMALL_STATE(3639)] = 99771, + [SMALL_STATE(3640)] = 99785, + [SMALL_STATE(3641)] = 99799, + [SMALL_STATE(3642)] = 99813, + [SMALL_STATE(3643)] = 99827, + [SMALL_STATE(3644)] = 99841, + [SMALL_STATE(3645)] = 99855, + [SMALL_STATE(3646)] = 99869, + [SMALL_STATE(3647)] = 99883, + [SMALL_STATE(3648)] = 99897, + [SMALL_STATE(3649)] = 99911, + [SMALL_STATE(3650)] = 99925, + [SMALL_STATE(3651)] = 99939, + [SMALL_STATE(3652)] = 99953, + [SMALL_STATE(3653)] = 99967, + [SMALL_STATE(3654)] = 99981, + [SMALL_STATE(3655)] = 99995, + [SMALL_STATE(3656)] = 100009, + [SMALL_STATE(3657)] = 100023, + [SMALL_STATE(3658)] = 100037, + [SMALL_STATE(3659)] = 100051, + [SMALL_STATE(3660)] = 100065, + [SMALL_STATE(3661)] = 100079, + [SMALL_STATE(3662)] = 100093, + [SMALL_STATE(3663)] = 100107, + [SMALL_STATE(3664)] = 100121, + [SMALL_STATE(3665)] = 100135, + [SMALL_STATE(3666)] = 100149, + [SMALL_STATE(3667)] = 100163, + [SMALL_STATE(3668)] = 100177, + [SMALL_STATE(3669)] = 100191, + [SMALL_STATE(3670)] = 100205, + [SMALL_STATE(3671)] = 100219, + [SMALL_STATE(3672)] = 100233, + [SMALL_STATE(3673)] = 100247, + [SMALL_STATE(3674)] = 100261, + [SMALL_STATE(3675)] = 100275, + [SMALL_STATE(3676)] = 100289, + [SMALL_STATE(3677)] = 100303, + [SMALL_STATE(3678)] = 100317, + [SMALL_STATE(3679)] = 100331, + [SMALL_STATE(3680)] = 100345, + [SMALL_STATE(3681)] = 100359, + [SMALL_STATE(3682)] = 100373, + [SMALL_STATE(3683)] = 100387, + [SMALL_STATE(3684)] = 100401, + [SMALL_STATE(3685)] = 100415, + [SMALL_STATE(3686)] = 100429, + [SMALL_STATE(3687)] = 100443, + [SMALL_STATE(3688)] = 100457, + [SMALL_STATE(3689)] = 100471, + [SMALL_STATE(3690)] = 100485, + [SMALL_STATE(3691)] = 100499, + [SMALL_STATE(3692)] = 100513, + [SMALL_STATE(3693)] = 100527, + [SMALL_STATE(3694)] = 100541, + [SMALL_STATE(3695)] = 100555, + [SMALL_STATE(3696)] = 100569, + [SMALL_STATE(3697)] = 100583, + [SMALL_STATE(3698)] = 100597, + [SMALL_STATE(3699)] = 100611, + [SMALL_STATE(3700)] = 100625, + [SMALL_STATE(3701)] = 100639, + [SMALL_STATE(3702)] = 100653, + [SMALL_STATE(3703)] = 100667, + [SMALL_STATE(3704)] = 100681, + [SMALL_STATE(3705)] = 100695, + [SMALL_STATE(3706)] = 100709, + [SMALL_STATE(3707)] = 100723, + [SMALL_STATE(3708)] = 100737, + [SMALL_STATE(3709)] = 100751, + [SMALL_STATE(3710)] = 100765, + [SMALL_STATE(3711)] = 100779, + [SMALL_STATE(3712)] = 100793, + [SMALL_STATE(3713)] = 100807, + [SMALL_STATE(3714)] = 100821, + [SMALL_STATE(3715)] = 100835, + [SMALL_STATE(3716)] = 100849, + [SMALL_STATE(3717)] = 100863, + [SMALL_STATE(3718)] = 100877, + [SMALL_STATE(3719)] = 100891, + [SMALL_STATE(3720)] = 100905, + [SMALL_STATE(3721)] = 100919, + [SMALL_STATE(3722)] = 100933, + [SMALL_STATE(3723)] = 100947, + [SMALL_STATE(3724)] = 100961, + [SMALL_STATE(3725)] = 100975, + [SMALL_STATE(3726)] = 100989, + [SMALL_STATE(3727)] = 101003, + [SMALL_STATE(3728)] = 101017, + [SMALL_STATE(3729)] = 101031, + [SMALL_STATE(3730)] = 101045, + [SMALL_STATE(3731)] = 101059, + [SMALL_STATE(3732)] = 101073, + [SMALL_STATE(3733)] = 101087, + [SMALL_STATE(3734)] = 101101, + [SMALL_STATE(3735)] = 101115, + [SMALL_STATE(3736)] = 101129, + [SMALL_STATE(3737)] = 101143, + [SMALL_STATE(3738)] = 101157, + [SMALL_STATE(3739)] = 101171, + [SMALL_STATE(3740)] = 101185, + [SMALL_STATE(3741)] = 101199, + [SMALL_STATE(3742)] = 101213, + [SMALL_STATE(3743)] = 101227, + [SMALL_STATE(3744)] = 101241, + [SMALL_STATE(3745)] = 101255, + [SMALL_STATE(3746)] = 101269, + [SMALL_STATE(3747)] = 101283, + [SMALL_STATE(3748)] = 101297, + [SMALL_STATE(3749)] = 101311, + [SMALL_STATE(3750)] = 101325, + [SMALL_STATE(3751)] = 101339, + [SMALL_STATE(3752)] = 101353, + [SMALL_STATE(3753)] = 101367, + [SMALL_STATE(3754)] = 101381, + [SMALL_STATE(3755)] = 101395, + [SMALL_STATE(3756)] = 101409, + [SMALL_STATE(3757)] = 101423, + [SMALL_STATE(3758)] = 101437, + [SMALL_STATE(3759)] = 101451, + [SMALL_STATE(3760)] = 101465, + [SMALL_STATE(3761)] = 101479, + [SMALL_STATE(3762)] = 101493, + [SMALL_STATE(3763)] = 101507, + [SMALL_STATE(3764)] = 101521, + [SMALL_STATE(3765)] = 101535, + [SMALL_STATE(3766)] = 101549, + [SMALL_STATE(3767)] = 101563, + [SMALL_STATE(3768)] = 101577, + [SMALL_STATE(3769)] = 101591, + [SMALL_STATE(3770)] = 101605, + [SMALL_STATE(3771)] = 101619, + [SMALL_STATE(3772)] = 101633, + [SMALL_STATE(3773)] = 101647, + [SMALL_STATE(3774)] = 101661, + [SMALL_STATE(3775)] = 101675, + [SMALL_STATE(3776)] = 101689, + [SMALL_STATE(3777)] = 101703, + [SMALL_STATE(3778)] = 101717, + [SMALL_STATE(3779)] = 101731, + [SMALL_STATE(3780)] = 101745, + [SMALL_STATE(3781)] = 101759, + [SMALL_STATE(3782)] = 101773, + [SMALL_STATE(3783)] = 101787, + [SMALL_STATE(3784)] = 101801, + [SMALL_STATE(3785)] = 101815, + [SMALL_STATE(3786)] = 101829, + [SMALL_STATE(3787)] = 101843, + [SMALL_STATE(3788)] = 101857, + [SMALL_STATE(3789)] = 101871, + [SMALL_STATE(3790)] = 101885, + [SMALL_STATE(3791)] = 101899, + [SMALL_STATE(3792)] = 101913, + [SMALL_STATE(3793)] = 101927, + [SMALL_STATE(3794)] = 101941, + [SMALL_STATE(3795)] = 101955, + [SMALL_STATE(3796)] = 101969, + [SMALL_STATE(3797)] = 101983, + [SMALL_STATE(3798)] = 101997, + [SMALL_STATE(3799)] = 102011, + [SMALL_STATE(3800)] = 102025, + [SMALL_STATE(3801)] = 102039, + [SMALL_STATE(3802)] = 102053, + [SMALL_STATE(3803)] = 102067, + [SMALL_STATE(3804)] = 102081, + [SMALL_STATE(3805)] = 102095, + [SMALL_STATE(3806)] = 102109, + [SMALL_STATE(3807)] = 102123, + [SMALL_STATE(3808)] = 102137, + [SMALL_STATE(3809)] = 102151, + [SMALL_STATE(3810)] = 102165, + [SMALL_STATE(3811)] = 102179, + [SMALL_STATE(3812)] = 102193, + [SMALL_STATE(3813)] = 102207, + [SMALL_STATE(3814)] = 102221, + [SMALL_STATE(3815)] = 102235, + [SMALL_STATE(3816)] = 102249, + [SMALL_STATE(3817)] = 102263, + [SMALL_STATE(3818)] = 102277, + [SMALL_STATE(3819)] = 102291, + [SMALL_STATE(3820)] = 102305, + [SMALL_STATE(3821)] = 102319, + [SMALL_STATE(3822)] = 102333, + [SMALL_STATE(3823)] = 102347, + [SMALL_STATE(3824)] = 102361, + [SMALL_STATE(3825)] = 102375, + [SMALL_STATE(3826)] = 102389, + [SMALL_STATE(3827)] = 102403, + [SMALL_STATE(3828)] = 102417, + [SMALL_STATE(3829)] = 102431, + [SMALL_STATE(3830)] = 102445, + [SMALL_STATE(3831)] = 102459, + [SMALL_STATE(3832)] = 102473, + [SMALL_STATE(3833)] = 102487, + [SMALL_STATE(3834)] = 102501, + [SMALL_STATE(3835)] = 102515, + [SMALL_STATE(3836)] = 102529, + [SMALL_STATE(3837)] = 102543, + [SMALL_STATE(3838)] = 102557, + [SMALL_STATE(3839)] = 102571, + [SMALL_STATE(3840)] = 102585, + [SMALL_STATE(3841)] = 102599, + [SMALL_STATE(3842)] = 102613, + [SMALL_STATE(3843)] = 102627, + [SMALL_STATE(3844)] = 102641, + [SMALL_STATE(3845)] = 102655, + [SMALL_STATE(3846)] = 102669, + [SMALL_STATE(3847)] = 102683, + [SMALL_STATE(3848)] = 102697, + [SMALL_STATE(3849)] = 102711, + [SMALL_STATE(3850)] = 102725, + [SMALL_STATE(3851)] = 102739, + [SMALL_STATE(3852)] = 102753, + [SMALL_STATE(3853)] = 102767, + [SMALL_STATE(3854)] = 102781, + [SMALL_STATE(3855)] = 102795, + [SMALL_STATE(3856)] = 102809, + [SMALL_STATE(3857)] = 102823, + [SMALL_STATE(3858)] = 102837, + [SMALL_STATE(3859)] = 102851, + [SMALL_STATE(3860)] = 102865, + [SMALL_STATE(3861)] = 102879, + [SMALL_STATE(3862)] = 102893, + [SMALL_STATE(3863)] = 102907, + [SMALL_STATE(3864)] = 102921, + [SMALL_STATE(3865)] = 102935, + [SMALL_STATE(3866)] = 102949, + [SMALL_STATE(3867)] = 102963, + [SMALL_STATE(3868)] = 102977, + [SMALL_STATE(3869)] = 102991, + [SMALL_STATE(3870)] = 103005, + [SMALL_STATE(3871)] = 103019, + [SMALL_STATE(3872)] = 103033, + [SMALL_STATE(3873)] = 103047, + [SMALL_STATE(3874)] = 103061, + [SMALL_STATE(3875)] = 103075, + [SMALL_STATE(3876)] = 103089, + [SMALL_STATE(3877)] = 103103, + [SMALL_STATE(3878)] = 103117, + [SMALL_STATE(3879)] = 103121, + [SMALL_STATE(3880)] = 103125, + [SMALL_STATE(3881)] = 103129, + [SMALL_STATE(3882)] = 103133, + [SMALL_STATE(3883)] = 103137, + [SMALL_STATE(3884)] = 103141, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 0), - [129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), - [131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1569), - [134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(523), - [137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2727), - [140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(184), - [143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(134), - [146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(5), - [149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(301), - [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), - [155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(225), - [158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(818), - [161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(870), - [164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3259), - [170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3262), - [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3500), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2117), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2174), - [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1251), - [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1104), - [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3600), - [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3457), - [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(824), - [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1148), - [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(178), - [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(885), - [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(823), - [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2822), - [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(358), - [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3542), - [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2034), - [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2349), - [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3497), - [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3795), - [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3499), - [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1596), - [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2125), - [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1961), - [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(152), - [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2171), - [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3223), - [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2641), - [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1545), - [266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2728), - [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1500), - [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1556), - [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3802), - [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2089), - [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1556), - [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3737), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2, 0, 0), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), - [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2, 0, 0), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), - [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), - [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), - [381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), - [383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1, 0, 0), - [395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1, 0, 0), - [397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, 0, 0), - [399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, 0, 0), - [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), - [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 0), + [131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1616), + [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(804), + [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2833), + [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(203), + [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(187), + [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(34), + [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(307), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1604), + [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(169), + [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(838), + [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(899), + [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(42), + [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3511), + [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3432), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3651), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2167), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2200), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1394), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1141), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3611), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3413), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(866), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1407), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(117), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(915), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(878), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2916), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(342), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3665), + [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2092), + [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2393), + [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3678), + [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3691), + [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3790), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1643), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2191), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1993), + [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(101), + [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2215), + [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(45), + [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3319), + [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2854), + [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1573), + [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2863), + [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1478), + [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1603), + [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3855), + [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2147), + [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1603), + [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3578), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2, 0, 0), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), + [367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2, 0, 0), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), + [387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), + [391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), + [393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, 0, 0), + [405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, 0, 0), + [407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1, 0, 0), + [409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1, 0, 0), + [411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), + [413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(154), - [534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(197), - [537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(72), - [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), - [542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(73), - [545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(74), - [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(197), - [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3581), - [554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(183), - [557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2650), - [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(169), - [563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(155), - [566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3684), - [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(187), - [572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(197), - [575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(99), - [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), - [580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(100), - [583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(101), - [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(197), - [589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3543), - [592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(183), - [595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2650), - [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(169), - [601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(187), - [604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3684), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(210), - [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(198), - [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(111), - [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), - [654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(112), - [657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(113), - [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(198), - [663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(210), - [666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(202), - [669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2642), - [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(203), - [675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3625), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1108), - [757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(184), - [760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(134), - [763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), - [765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(10), - [768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(301), - [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1557), - [774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(225), - [777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(818), - [780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(870), - [783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(38), - [786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3259), - [789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3574), - [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3500), - [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2398), - [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(36), - [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2784), - [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1251), - [807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1501), - [810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(849), - [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1070), - [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(188), - [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2763), - [822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(361), - [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(40), - [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2643), - [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2693), - [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(189), - [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(37), - [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3223), - [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2768), - [846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1545), - [849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2728), - [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1500), - [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1556), - [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3802), - [861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1556), - [864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3737), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1, 0, 0), - [885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1, 0, 0), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), - [893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(197), - [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), - [898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(197), - [901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), - [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), - [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), - [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), - [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), - [927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4, 0, 0), - [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4, 0, 0), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), - [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5, 0, 0), - [945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5, 0, 0), - [947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6, 0, 0), - [949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6, 0, 0), - [951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), - [953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), - [955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), - [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(198), - [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(198), - [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), - [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), - [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), - [1003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2, 0, 0), - [1005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2, 0, 0), - [1007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3, 0, 0), - [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3, 0, 0), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), - [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [1027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1, 0, 0), - [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1, 0, 0), - [1031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, 0, 209), - [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, 0, 209), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delim_tokens, 1, 0, 0), - [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delim_tokens, 1, 0, 0), - [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), - [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3, 0, 0), - [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), - [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), - [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), - [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), - [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [1221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1108), - [1224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(184), - [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), - [1229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(134), - [1232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(10), - [1235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(301), - [1238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), - [1241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(225), - [1244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(818), - [1247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(870), - [1250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [1253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3259), - [1256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3500), - [1259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2398), - [1262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [1265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2784), - [1268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1251), - [1271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1501), - [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(849), - [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1070), - [1280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(188), - [1283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2763), - [1286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(361), - [1289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [1292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2643), - [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2693), - [1298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(189), - [1301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [1304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3223), - [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2768), - [1310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1545), - [1313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2728), - [1316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1500), - [1319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1556), - [1322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3802), - [1325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1556), - [1328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3737), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), - [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 35), - [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 35), - [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, 0, 0), - [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5, 0, 0), - [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6, 0, 0), - [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6, 0, 0), - [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), - [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), - [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), - [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), - [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 0), - [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 0), - [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), - [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 126), - [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 126), - [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 45), - [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 45), - [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 40), - [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 40), - [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), - [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), - [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), - [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 84), - [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 84), - [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), - [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), - [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2, 0, 0), - [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2, 0, 0), - [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, 0, 105), - [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, 0, 105), - [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, 0, 8), - [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, 0, 8), - [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3, 0, 0), - [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3, 0, 0), - [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 2, 0, 0), - [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 2, 0, 0), - [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 8), - [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 8), - [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), - [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), - [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2, 0, 0), - [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2, 0, 0), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), - [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 3, 0, 0), - [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 3, 0, 0), - [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 33), - [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 33), - [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 256), - [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 256), - [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 44), - [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 44), - [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_block, 2, 0, 0), - [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_block, 2, 0, 0), - [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, 0, 154), - [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, 0, 154), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), - [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2, 0, 0), - [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2, 0, 0), - [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3, 0, 0), - [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3, 0, 0), - [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2, 0, 0), - [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2, 0, 0), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), - [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), - [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), - [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), - [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 127), - [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 127), - [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 184), - [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 184), - [1761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2116), - [1764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(475), - [1767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(804), - [1770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2343), - [1773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3347), - [1776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(832), - [1779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(833), - [1782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(870), - [1785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2883), - [1788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1257), - [1791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1562), - [1794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3300), - [1797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3475), - [1800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2644), - [1803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2199), - [1806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(848), - [1809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(835), - [1812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2408), - [1815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2876), - [1818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2464), - [1821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2829), - [1824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2829), - [1827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3663), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 275), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 275), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 279), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 279), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 280), - [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 280), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 253), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 253), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 281), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 281), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 282), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 282), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 283), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 283), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 95), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 95), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, 0, 100), - [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, 0, 100), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 284), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 284), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, 0, 285), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, 0, 285), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 269), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 269), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 286), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 286), - [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 271), - [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 271), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 287), - [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 287), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 275), - [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 275), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 288), - [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 288), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 9, 0, 279), - [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 9, 0, 279), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 289), - [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 289), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 290), - [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 290), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 291), - [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 291), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 34), - [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 34), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, 0, 292), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, 0, 292), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, 0, 293), - [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, 0, 293), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 289), - [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 289), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 294), - [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 294), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), - [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), - [1950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3325), - [1953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1247), - [1956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2826), - [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), - [1961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3609), - [1964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(870), - [1967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3220), - [1970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3443), - [1973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2461), - [1976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2373), - [1979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2284), - [1982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3705), - [1985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3444), - [1988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3298), - [1991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(884), - [1994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(825), - [1997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3716), - [2000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2034), - [2003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3099), - [2006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3719), - [2009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3721), - [2012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3723), - [2015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3100), - [2018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2310), - [2021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1949), - [2024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2176), - [2027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3732), - [2030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2070), - [2033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3732), - [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 95), - [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 95), - [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 100), - [2042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 100), - [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 101), - [2046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 101), - [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 102), - [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 102), - [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 95), - [2054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 95), - [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 95), - [2058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 95), - [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 103), - [2062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 103), - [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 34), - [2066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 34), - [2068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 7), - [2070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 7), - [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, 0, 34), - [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, 0, 34), - [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 43), - [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 43), - [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 60), - [2082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 60), - [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), - [2086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), - [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), - [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), - [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), - [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), - [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), - [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), - [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), - [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), - [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), - [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), - [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), - [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), - [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), - [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), - [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), - [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 6), - [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 6), - [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), - [2146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), - [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 50), - [2150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 50), - [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), - [2154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), - [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), - [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 60), - [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 60), - [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 119), - [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 119), - [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 6), - [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 6), - [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 122), - [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 122), - [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 123), - [2188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 123), - [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 124), - [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 124), - [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 82), - [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 82), - [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 125), - [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 125), - [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 129), - [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 129), - [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 130), - [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 130), - [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 87), - [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 87), - [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 131), - [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 131), - [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 132), - [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 132), - [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 133), - [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 133), - [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 107), - [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 107), - [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 127), - [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 127), - [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 134), - [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 134), - [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, 0, 119), - [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, 0, 119), - [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), - [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), - [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 34), - [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 34), - [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 81), - [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 81), - [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 122), - [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 122), - [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 137), - [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 137), - [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 122), - [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 122), - [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 138), - [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 138), - [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 139), - [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 139), - [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 93), - [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 93), - [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 91), - [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 91), - [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 140), - [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 140), - [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 122), - [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 122), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 141), - [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 141), - [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 142), - [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 142), - [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 72), - [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 72), - [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 143), - [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 143), - [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 144), - [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 144), - [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 145), - [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 145), - [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 146), - [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 146), - [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 149), - [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 149), - [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 150), - [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 150), - [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 144), - [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 144), - [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 146), - [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 146), - [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 95), - [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 95), - [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 144), - [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 144), - [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 151), - [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 151), - [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 146), - [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 146), - [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 144), - [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 144), - [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 146), - [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 146), - [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 152), - [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 152), - [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, 0, 153), - [2372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, 0, 153), - [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 34), - [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 34), - [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), - [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), - [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 60), - [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 60), - [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 6), - [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 6), - [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 26), - [2392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 26), - [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 38), - [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 38), - [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 39), - [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 39), - [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 80), - [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 80), - [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [2412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 81), - [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 81), - [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 123), - [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 123), - [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 167), - [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 167), - [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 168), - [2428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 168), - [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 169), - [2432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 169), - [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 170), - [2436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 170), - [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 171), - [2440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 171), - [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 172), - [2444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 172), - [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 173), - [2448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 173), - [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 129), - [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 129), - [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 175), - [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 175), - [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 176), - [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 176), - [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 177), - [2464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 177), - [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 178), - [2468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 178), - [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 179), - [2472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 179), - [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 132), - [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 132), - [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 180), - [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 180), - [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 181), - [2484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 181), - [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, 0, 82), - [2488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, 0, 82), - [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 182), - [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 182), - [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 183), - [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 183), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, 0, 83), - [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, 0, 83), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, 0, 186), - [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, 0, 186), - [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 87), - [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 87), - [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 81), - [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 81), - [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 190), - [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 190), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 139), - [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 139), - [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 191), - [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 191), - [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 192), - [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 192), - [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 140), - [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 140), - [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 141), - [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 141), - [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 193), - [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 193), - [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 194), - [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 194), - [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 195), - [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 195), - [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 196), - [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 196), - [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, 0, 197), - [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, 0, 197), - [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 200), - [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 200), - [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 201), - [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 201), - [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 149), - [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 149), - [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 202), - [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 202), - [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 186), - [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 186), - [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 88), - [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 88), - [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 195), - [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 195), - [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 95), - [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 95), - [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 146), - [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 146), - [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 195), - [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 195), - [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 203), - [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 203), - [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, 0, 195), - [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, 0, 195), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 204), - [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 204), - [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 205), - [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 205), - [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 206), - [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 206), - [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 207), - [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 207), - [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 208), - [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 208), - [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 26), - [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 26), - [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 89), - [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 89), - [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 90), - [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 90), - [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 6), - [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 6), - [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 41), - [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 41), - [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 7), - [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 7), - [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 60), - [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 60), - [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 6), - [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 6), - [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 34), - [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 34), - [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 80), - [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 80), - [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 91), - [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 91), - [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 81), - [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 81), - [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 213), - [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 213), - [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 80), - [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 80), - [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 216), - [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 216), - [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 217), - [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 217), - [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 168), - [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 168), - [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 218), - [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 218), - [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 170), - [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 170), - [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 219), - [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 219), - [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 172), - [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 172), - [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 220), - [2728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 220), - [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 221), - [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 221), - [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 222), - [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 222), - [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 223), - [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 223), - [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 224), - [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 224), - [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 176), - [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 176), - [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 225), - [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 225), - [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 178), - [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 178), - [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 226), - [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 226), - [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 227), - [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 227), - [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 228), - [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 228), - [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 229), - [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 229), - [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 92), - [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 92), - [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 81), - [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 81), - [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 231), - [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 231), - [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 7), - [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 7), - [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 213), - [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 213), - [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 191), - [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 191), - [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 192), - [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 192), - [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 234), - [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 234), - [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 235), - [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 235), - [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 236), - [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 236), - [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 237), - [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 237), - [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 238), - [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 238), - [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 239), - [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 239), - [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 240), - [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 240), - [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 241), - [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 241), - [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 242), - [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 242), - [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 243), - [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 243), - [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 200), - [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 200), - [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 244), - [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 244), - [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 245), - [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 245), - [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 246), - [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 246), - [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 146), - [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 146), - [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 203), - [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 203), - [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 247), - [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 247), - [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 248), - [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 248), - [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 249), - [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 249), - [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 250), - [2884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 250), - [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 251), - [2888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 251), - [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, 0, 252), - [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, 0, 252), - [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 253), - [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 253), - [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 254), - [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 254), - [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 207), - [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 207), - [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 255), - [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 255), - [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 93), - [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 93), - [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 91), - [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 91), - [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 80), - [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 80), - [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 81), - [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 81), - [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 216), - [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 216), - [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 259), - [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 259), - [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 221), - [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 221), - [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 260), - [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 260), - [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 223), - [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 223), - [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 261), - [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 261), - [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 262), - [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 262), - [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 263), - [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 263), - [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 264), - [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 264), - [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 72), - [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 72), - [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 265), - [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 265), - [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [2976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 234), - [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 234), - [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 235), - [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 235), - [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 267), - [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 267), - [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 237), - [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 237), - [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 268), - [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 268), - [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 269), - [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 269), - [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 270), - [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 270), - [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 271), - [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 271), - [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 272), - [3012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 272), - [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 239), - [3016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 239), - [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 273), - [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 273), - [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 241), - [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 241), - [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 274), - [3028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 274), - [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 276), - [3032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 276), - [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 245), - [3036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 245), - [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 277), - [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 277), - [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 265), - [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 265), - [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 278), - [3048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 278), - [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 94), - [3052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 94), - [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 247), - [3056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 247), - [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 248), - [3060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 248), - [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 282), - [3064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 282), - [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), - [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), - [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), - [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), - [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), - [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), - [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), - [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), - [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), - [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), - [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), - [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), - [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), - [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [3376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), - [3378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), - [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), - [3382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4, 0, 0), - [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4, 0, 0), - [3386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), - [3388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2, 0, 0), - [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2, 0, 0), - [3392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 23), - [3396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 23), - [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [3406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 19), - [3408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 19), - [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), - [3420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), - [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 28), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [3432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 28), - [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 1), - [3442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 1), - [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), - [3454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 5), - [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), - [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 111), - [3460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 111), - [3462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [3466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(3475), - [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 28), - [3471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 28), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), - [3477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), - [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4, 0, 0), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), - [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), - [3497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 47), - [3503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 47), - [3505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 46), - [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 46), - [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 112), - [3511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 112), - [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 29), - [3515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 29), - [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 29), - [3519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 29), - [3521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3707), - [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3, 0, 0), - [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [3528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [3530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 16), - [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), - [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [3536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [3538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 6), - [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), - [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 52), - [3544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 52), - [3546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 51), - [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), - [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 1, 0, 0), - [3552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 184), - [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 184), - [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 184), - [3558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 127), - [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 127), - [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 127), - [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), - [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), - [3568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), - [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [3572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), - [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [3580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), - [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), - [3584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 0), - [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), - [3588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), - [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), - [3592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), - [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 17), - [3604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 47), - [3606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), - [3612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, 0, 0), - [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 52), - [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 55), - [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 55), - [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 56), - [3622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 56), - [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), - [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, 0, 0), - [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), - [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), - [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 7), - [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), - [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), - [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), - [3662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), - [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), - [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), - [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [3682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), - [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, 0, 0), - [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), - [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), - [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 22), - [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 22), - [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), - [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), - [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), - [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), - [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 24), - [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 24), - [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 25), - [3738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 25), - [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 27), - [3742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 27), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 30), - [3748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 30), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 31), - [3754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 31), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [3760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), - [3762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2, 0, 0), - [3764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 73), - [3766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 73), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [3770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 75), - [3772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 75), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 76), - [3778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 76), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [3782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 6, 0, 0), - [3784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 6, 0, 0), - [3786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), - [3788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6, 0, 0), - [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 115), - [3792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 115), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [3798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [3804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), - [3806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 71), - [3808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 71), - [3810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 72), - [3812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 72), - [3814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, 0, 72), - [3816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, 0, 72), - [3818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [3820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [3822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 3, 0, 0), - [3824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 3, 0, 0), - [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [3828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), - [3832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [3836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 106), - [3838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 106), - [3840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), - [3842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), - [3844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), - [3846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), - [3848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 4, 0, 61), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [3852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 4, 0, 61), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), - [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3, 0, 0), - [3860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3, 0, 0), - [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 159), - [3864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 159), - [3866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_never_type, 1, 0, 0), - [3868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_never_type, 1, 0, 0), - [3870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 0), - [3872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 0), - [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 53), - [3876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 53), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 110), - [3882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 110), - [3884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 113), - [3886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 113), - [3888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 0), - [3890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 0), - [3892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 162), - [3894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 162), - [3896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 163), - [3898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 163), - [3900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 113), - [3902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 113), - [3904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), - [3906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), - [3908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 164), - [3910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 164), - [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, 0, 32), - [3914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, 0, 32), - [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3, 0, 0), - [3918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3, 0, 0), - [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 4), - [3922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 4), - [3924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), - [3926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), - [3928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [3930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [3932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 10), - [3934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 10), - [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, 0, 13), - [3938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, 0, 13), - [3940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [3942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [3944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, 0, 57), - [3946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, 0, 57), - [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [3954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [3956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 155), - [3960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 155), - [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), - [3964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), - [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 136), - [3968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 136), - [3970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), - [3972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), - [3974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2, 0, 0), - [3976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2, 0, 0), - [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 0), - [3980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 0), - [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 48), - [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 58), - [3986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 48), - [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 212), - [3990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 212), - [3992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 18), - [3994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 18), - [3996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), - [3998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2, 0, 0), - [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [4002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [4004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), - [4006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), - [4008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 116), - [4010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 116), - [4012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), - [4014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), - [4016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, 0, 26), - [4018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, 0, 26), - [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 118), - [4022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 118), - [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 104), - [4026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 104), - [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 49), - [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), - [4032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), - [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 7, 0, 230), - [4036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 7, 0, 230), - [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 114), - [4040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 114), - [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [4044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [4048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [4050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), - [4052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), - [4054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, 0, 165), - [4056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, 0, 165), - [4058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 79), - [4060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 79), - [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [4064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 11), - [4068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 11), - [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), - [4072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), - [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 87), - [4076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 87), - [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [4080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [4082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [4084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [4088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [4090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), - [4092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), - [4094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), - [4096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), - [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 12), - [4100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 12), - [4102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [4104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), - [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, 0, 109), - [4108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, 0, 109), - [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 113), - [4112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 113), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [4118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), - [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [4136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [4142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), - [4148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [4154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [4158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(3403), - [4161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [4163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), - [4167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 135), - [4169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 135), - [4171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 0), - [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), - [4175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(2712), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3, 0, 0), - [4188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3, 0, 0), - [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), - [4192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), - [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 54), - [4196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 54), - [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), - [4200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), - [4224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), - [4226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), - [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [4250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [4256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [4266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), - [4274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), - [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), - [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [4322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [4368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 127), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 127), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [4382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, 0, 258), - [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [4406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [4420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 147), - [4434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 148), - [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3, 0, 0), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 166), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [4486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 184), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [4508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 198), - [4510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 199), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [4518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 214), - [4520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 215), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [4524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [4530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 18), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [4554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [4574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 117), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), - [4592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [4598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), - [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [4606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), - [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), - [4612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), - [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [4616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5, 0, 0), - [4618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5, 0, 0), - [4620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4, 0, 0), - [4622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4, 0, 0), - [4624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6, 0, 0), - [4626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6, 0, 0), - [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [4630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), - [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [4636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), - [4638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [4646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), - [4648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), - [4650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [4660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [4708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), - [4710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [4714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [4760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [4764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), REDUCE(sym__pattern, 1, 0, 0), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [4781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), - [4783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [4799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [4802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), REDUCE(sym_scoped_type_identifier, 3, 0, 52), - [4805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [4808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 46), REDUCE(sym_scoped_type_identifier, 3, 0, 47), - [4811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [4813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 36), - [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [4845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_pattern, 3, 0, 68), - [4847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_pattern, 3, 0, 68), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [4861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 54), - [4863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 54), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [4871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 21), - [4873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 21), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [4879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 20), - [4881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 20), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [4897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 67), - [4899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 67), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [4903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1, 0, 0), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [4907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 62), - [4909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 62), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [4919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 63), - [4921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 63), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [4941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), - [4943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [4953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), - [4955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), - [4957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), - [4959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 64), - [4961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2, 0, 0), - [4963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 65), - [4965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 70), - [4967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 64), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [4971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), - [4973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), - [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 64), - [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 64), - [4979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 65), - [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 65), - [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 70), - [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3, 0, 0), - [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 64), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [4991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [4995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [5001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [5007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3, 0, 0), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [5013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 70), - [5023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 64), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), - [5029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [5033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 64), - [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 65), - [5037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 70), - [5039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 64), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [5043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [5045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), - [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2, 0, 0), - [5049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [5087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3, 0, 0), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [5109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 1), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [5116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), - [5118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(871), - [5121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2, 0, 0), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [5147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(79), - [5150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), - [5152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(70), - [5155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(75), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [5200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), - [5202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), - [5204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2461), - [5207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), - [5209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2296), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [5244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1, 0, 0), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [5264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2, 0, 0), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [5302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 37), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [5320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), - [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), - [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), - [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), - [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [5336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), - [5346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1, 0, 0), - [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [5366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 6), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), - [5380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), - [5392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [5414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2, 0, 0), - [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [5432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [5444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), - [5446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1433), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [5475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [5479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), REDUCE(sym_tuple_struct_pattern, 4, 0, 64), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [5524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3, 0, 0), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [5558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), REDUCE(sym_tuple_struct_pattern, 3, 0, 64), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [5589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [5599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 109), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [5605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2, 0, 0), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [5609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(2045), - [5612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(262), - [5615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [5621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), - [5624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 72), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [5632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 26), - [5634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 187), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [5648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 0), - [5650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [5668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 120), - [5670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 121), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [5680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 26), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [5688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 232), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [5692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 109), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [5706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), REDUCE(sym_tuple_pattern, 2, 0, 0), - [5709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 266), - [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [5719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 1, 0, 37), - [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [5747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 187), - [5749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, 0, 266), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [5797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), - [5799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 72), - [5801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 232), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [5807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [5829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [5831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [5833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [5835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), - [5837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2982), - [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [5862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 107), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [5874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [5884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 69), - [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [5898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [5904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [5918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [5930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [5970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [5974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), - [5976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), - [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [5980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), - [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [5992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), - [5994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [5996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [6006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(838), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [6011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), - [6013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, 0, 54), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [6019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 210), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [6023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 119), - [6025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), - [6027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [6029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(209), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [6040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [6044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), - [6046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [6082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 156), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), - [6112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [6176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 233), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [6230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), - [6232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2265), - [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [6237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [6243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 174), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [6279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 66), - [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [6315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [6319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [6327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(611), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [6332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), - [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), - [6336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [6342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, 0, 109), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [6360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 108), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [6384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [6398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), - [6400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(927), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [6409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 2, 0, 0), - [6411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 42), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [6451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 26), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [6465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 188), - [6467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 188), SHIFT_REPEAT(800), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [6478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 189), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [6484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), - [6486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2287), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [6493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), - [6495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1953), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [6510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), - [6512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 11), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [6526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, 0, 72), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [6530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(457), - [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [6537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 157), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [6541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 158), - [6543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 128), - [6545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), - [6547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2450), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [6554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [6564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [6566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2146), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [6577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(810), - [6580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [6590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(319), - [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), - [6595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), - [6597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), - [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [6601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, 0, 257), - [6603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), - [6605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 9), - [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [6643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), - [6645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), SHIFT_REPEAT(3395), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [6652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [6664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), - [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [6676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 96), - [6678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 97), - [6680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 211), - [6682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [6684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [6688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), - [6690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4, 0, 0), - [6692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 98), - [6694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), - [6696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(3146), - [6699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 99), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [6703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 85), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [6717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [6757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [6761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), - [6763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(2326), - [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [6768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 41), - [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), - [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), - [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), - [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [6810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [6838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [6842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), - [6844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [6846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [6854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [6860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [6862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [6870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [6878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [6880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [6882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [6884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [6888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [6896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [6898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [6900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [6906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), - [6908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [6910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [6912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [6916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [6920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [6922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [6924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [6926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [6928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [6930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [6946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), - [6948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [6952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [6954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 160), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [6962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, 0, 0), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [6966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 2), - [6968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), - [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), - [6972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 3, 0, 0), - [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [6976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 161), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [6980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 3), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [6986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 39), - [6988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, 0, 74), - [6990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [6994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 2, 0, 86), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [7000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 6, 0, 213), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [7010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [7012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [7050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [7052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [7074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), - [7076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [7096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__outer_line_doc_comment_marker, 1, 0, 0), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [7132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 185), - [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [7146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 77), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [7194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 2), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [7232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 78), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [7250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), - [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [7254] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [7350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inner_line_doc_comment_marker, 1, 0, 0), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [7464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3, 0, 0), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [7522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 3), - [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [7570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 15), - [7572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 4, 0, 59), - [7574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 14), - [7576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), - [7578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2, 0, 0), - [7580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, 0, 0), - [7582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 0), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(377), + [544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(359), + [547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(77), + [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), + [552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(78), + [555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(79), + [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(359), + [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3652), + [564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(365), + [567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2812), + [570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(366), + [573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(378), + [576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3744), + [579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(384), + [582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(383), + [585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(118), + [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), + [590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(119), + [593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(120), + [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(383), + [599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(384), + [602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(397), + [605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2752), + [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(382), + [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3683), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(361), + [647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(359), + [650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(102), + [653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), + [655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(149), + [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(104), + [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(359), + [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3731), + [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(365), + [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2812), + [673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(366), + [676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(361), + [679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3744), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1142), + [863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(203), + [866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(187), + [871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(11), + [874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(307), + [877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1604), + [880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(169), + [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(838), + [886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(899), + [889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(42), + [892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3511), + [895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3627), + [898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3651), + [901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2441), + [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2695), + [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1394), + [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1538), + [916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(850), + [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1106), + [922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(141), + [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2834), + [928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(319), + [931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2719), + [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2731), + [940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(142), + [943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(45), + [946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3319), + [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2835), + [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1573), + [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2863), + [958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1478), + [961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1603), + [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3855), + [967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1603), + [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3578), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [1035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1, 0, 0), + [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1, 0, 0), + [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), + [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), + [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [1045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(359), + [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(359), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [1129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), + [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), + [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), + [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), + [1137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), + [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), + [1141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), + [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), + [1145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4, 0, 0), + [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4, 0, 0), + [1149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5, 0, 0), + [1151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5, 0, 0), + [1153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6, 0, 0), + [1155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6, 0, 0), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), + [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [1185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [1187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), + [1189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), + [1191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), + [1193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), + [1195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2, 0, 0), + [1197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2, 0, 0), + [1199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3, 0, 0), + [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3, 0, 0), + [1203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), + [1205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), + [1207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [1211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [1219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(383), + [1222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(383), + [1225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [1229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [1231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [1239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [1243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, 0, 211), + [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, 0, 211), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1, 0, 0), + [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1, 0, 0), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [1269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delim_tokens, 1, 0, 0), + [1271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delim_tokens, 1, 0, 0), + [1273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), + [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [1291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [1295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), + [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3, 0, 0), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), + [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 37), + [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 37), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, 0, 0), + [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5, 0, 0), + [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), + [1333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), + [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [1337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [1339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6, 0, 0), + [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6, 0, 0), + [1343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 35), + [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 35), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), + [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), + [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), + [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2, 0, 0), + [1359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2, 0, 0), + [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, 0, 8), + [1363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, 0, 8), + [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 2, 0, 0), + [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 2, 0, 0), + [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 8), + [1371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 8), + [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2, 0, 0), + [1375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2, 0, 0), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), + [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 128), + [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 128), + [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 3, 0, 0), + [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 3, 0, 0), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [1393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [1395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), + [1397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 0), + [1399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 0), + [1401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 86), + [1403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 86), + [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_with_attribute, 2, 0, 11), + [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_with_attribute, 2, 0, 11), + [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), + [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), + [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, 0, 156), + [1415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, 0, 156), + [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 46), + [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 46), + [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3, 0, 0), + [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3, 0, 0), + [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, 0, 107), + [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, 0, 107), + [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 42), + [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 42), + [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 47), + [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 47), + [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 5, 0, 0), + [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 5, 0, 0), + [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_expression_with_attribute, 2, 0, 12), + [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_expression_with_attribute, 2, 0, 12), + [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 258), + [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 258), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), + [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), + [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_block, 2, 0, 0), + [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_block, 2, 0, 0), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2, 0, 0), + [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2, 0, 0), + [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3, 0, 0), + [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3, 0, 0), + [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2, 0, 0), + [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2, 0, 0), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [1693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3542), + [1696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1392), + [1699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2914), + [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), + [1704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3715), + [1707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(899), + [1710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3281), + [1713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3497), + [1716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2535), + [1719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2446), + [1722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2349), + [1725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3777), + [1728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3498), + [1731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3519), + [1734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(901), + [1737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(874), + [1740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3783), + [1743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2092), + [1746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3086), + [1749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3785), + [1752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3786), + [1755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3787), + [1758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3175), + [1761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2350), + [1764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1987), + [1767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2224), + [1770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3798), + [1773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2130), + [1776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3798), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [1785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat2, 2, 0, 0), SHIFT_REPEAT(2171), + [1788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat2, 2, 0, 0), SHIFT_REPEAT(525), + [1791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat2, 2, 0, 0), SHIFT_REPEAT(830), + [1794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat2, 2, 0, 0), SHIFT_REPEAT(2395), + [1797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat2, 2, 0, 0), SHIFT_REPEAT(3329), + [1800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat2, 2, 0, 0), SHIFT_REPEAT(856), + [1803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat2, 2, 0, 0), SHIFT_REPEAT(858), + [1806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat2, 2, 0, 0), SHIFT_REPEAT(899), + [1809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat2, 2, 0, 0), SHIFT_REPEAT(3150), + [1812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1396), + [1815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1629), + [1818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat2, 2, 0, 0), SHIFT_REPEAT(3368), + [1821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat2, 2, 0, 0), SHIFT_REPEAT(3839), + [1824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat2, 2, 0, 0), SHIFT_REPEAT(2754), + [1827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat2, 2, 0, 0), SHIFT_REPEAT(2265), + [1830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat2, 2, 0, 0), SHIFT_REPEAT(857), + [1833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat2, 2, 0, 0), SHIFT_REPEAT(859), + [1836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat2, 2, 0, 0), SHIFT_REPEAT(2477), + [1839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat2, 2, 0, 0), SHIFT_REPEAT(2790), + [1842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat2, 2, 0, 0), SHIFT_REPEAT(2529), + [1845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat2, 2, 0, 0), SHIFT_REPEAT(2856), + [1848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat2, 2, 0, 0), SHIFT_REPEAT(2856), + [1851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat2, 2, 0, 0), SHIFT_REPEAT(3722), + [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 186), + [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 186), + [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), + [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), + [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), + [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 129), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 129), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 36), + [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 36), + [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 83), + [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 83), + [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 124), + [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 124), + [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 139), + [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 139), + [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 124), + [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 124), + [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 6), + [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 6), + [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 140), + [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 140), + [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 141), + [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 141), + [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 204), + [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 204), + [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 95), + [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 95), + [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 188), + [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 188), + [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 196), + [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 196), + [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 93), + [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 93), + [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 142), + [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 142), + [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 197), + [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 197), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 215), + [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 215), + [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 133), + [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 133), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 134), + [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 134), + [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 218), + [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 218), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 219), + [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 219), + [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 170), + [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 170), + [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 220), + [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 220), + [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 172), + [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 172), + [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 221), + [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 221), + [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 36), + [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 36), + [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 124), + [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 124), + [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 174), + [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 174), + [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 222), + [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 222), + [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 143), + [2016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 143), + [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 144), + [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 144), + [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 223), + [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 223), + [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 224), + [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 224), + [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 225), + [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 225), + [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 226), + [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 226), + [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 178), + [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 178), + [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 227), + [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 227), + [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 180), + [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 180), + [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 228), + [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 228), + [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 229), + [2056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 229), + [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 74), + [2060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 74), + [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 145), + [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 145), + [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 146), + [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 146), + [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 147), + [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 147), + [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 148), + [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 148), + [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 230), + [2080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 230), + [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 231), + [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 231), + [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 151), + [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 151), + [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 152), + [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 152), + [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 146), + [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 146), + [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 148), + [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 148), + [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 97), + [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 97), + [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 97), + [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 97), + [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 148), + [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 148), + [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 146), + [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 146), + [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 28), + [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 28), + [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), + [2124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), + [2126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(3768), + [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 233), + [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 233), + [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 135), + [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 135), + [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 215), + [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 215), + [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [2143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 40), + [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 40), + [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 193), + [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 193), + [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 194), + [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 194), + [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 236), + [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 236), + [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 237), + [2163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 237), + [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 238), + [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 238), + [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 239), + [2171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 239), + [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 240), + [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 240), + [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 241), + [2179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 241), + [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 242), + [2183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 242), + [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 41), + [2187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 41), + [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 153), + [2191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 153), + [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 243), + [2195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 243), + [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 244), + [2199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 244), + [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 245), + [2203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 245), + [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 6), + [2207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 6), + [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 148), + [2211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 148), + [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 146), + [2215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 146), + [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 43), + [2219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 43), + [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 7), + [2223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 7), + [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 202), + [2227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 202), + [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 246), + [2231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 246), + [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 148), + [2235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 148), + [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 154), + [2239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 154), + [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, 0, 155), + [2243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, 0, 155), + [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 247), + [2247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 247), + [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 248), + [2251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 248), + [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [2255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 148), + [2259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 148), + [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 121), + [2263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 121), + [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 205), + [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 205), + [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 62), + [2271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 62), + [2273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 249), + [2275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 249), + [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 250), + [2295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 250), + [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 251), + [2299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 251), + [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 36), + [2303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 36), + [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 252), + [2307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 252), + [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 143), + [2311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 143), + [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 253), + [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 253), + [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 36), + [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 36), + [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, 0, 254), + [2323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, 0, 254), + [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 7), + [2327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 7), + [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, 0, 36), + [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, 0, 36), + [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 255), + [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 255), + [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 6), + [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 6), + [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 45), + [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 45), + [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 256), + [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 256), + [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 209), + [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 209), + [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 257), + [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 257), + [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 197), + [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 197), + [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 205), + [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 205), + [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 109), + [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 109), + [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 218), + [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 218), + [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), + [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), + [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 262), + [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 262), + [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 52), + [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 52), + [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 223), + [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 223), + [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 263), + [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 263), + [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 225), + [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 225), + [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 264), + [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 264), + [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 265), + [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 265), + [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 124), + [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 124), + [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 266), + [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 266), + [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 62), + [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 62), + [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 6), + [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 6), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 267), + [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 267), + [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 129), + [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 129), + [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 268), + [2451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 268), + [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 125), + [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 125), + [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 195), + [2463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 195), + [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 236), + [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 236), + [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 237), + [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 237), + [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 270), + [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 270), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 239), + [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 239), + [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 169), + [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 169), + [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 271), + [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 271), + [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 272), + [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 272), + [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 273), + [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 273), + [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 274), + [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 274), + [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 170), + [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 170), + [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 275), + [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 275), + [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 241), + [2511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 241), + [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 171), + [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 171), + [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 276), + [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 276), + [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 243), + [2523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 243), + [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 277), + [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 277), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 278), + [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 278), + [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 279), + [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 279), + [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 247), + [2539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 247), + [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 280), + [2543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 280), + [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 268), + [2547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 268), + [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 281), + [2551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 281), + [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 136), + [2555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 136), + [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 249), + [2559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 249), + [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 250), + [2563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 250), + [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 282), + [2567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 282), + [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 283), + [2571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 283), + [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [2575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 82), + [2579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 82), + [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 83), + [2583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 83), + [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, 0, 84), + [2587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, 0, 84), + [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 255), + [2591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 255), + [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 284), + [2595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 284), + [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 285), + [2599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 285), + [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, 0, 85), + [2603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, 0, 85), + [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 172), + [2607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 172), + [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 286), + [2611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 286), + [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, 0, 197), + [2615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, 0, 197), + [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 206), + [2619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 206), + [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 89), + [2623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 89), + [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 173), + [2627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 173), + [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 90), + [2631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 90), + [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 28), + [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 28), + [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 288), + [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 288), + [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 91), + [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 91), + [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 92), + [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 92), + [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 174), + [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 174), + [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, 0, 289), + [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, 0, 289), + [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 272), + [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 272), + [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 290), + [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 290), + [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 274), + [2667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 274), + [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 291), + [2671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 291), + [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 278), + [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 278), + [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 292), + [2679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 292), + [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 9, 0, 282), + [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 9, 0, 282), + [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 293), + [2687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 293), + [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 294), + [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 294), + [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 285), + [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 285), + [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 295), + [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 295), + [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 207), + [2703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 207), + [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 36), + [2711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 36), + [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 82), + [2715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 82), + [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 93), + [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 93), + [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 83), + [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 83), + [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 208), + [2727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 208), + [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 82), + [2731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 82), + [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 94), + [2735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 94), + [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 83), + [2739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 83), + [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 7), + [2743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 7), + [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, 0, 296), + [2747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, 0, 296), + [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 95), + [2751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 95), + [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, 0, 297), + [2755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, 0, 297), + [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 293), + [2759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 293), + [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 298), + [2763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 298), + [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 93), + [2767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 93), + [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 82), + [2771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 82), + [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 83), + [2775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 83), + [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 74), + [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 74), + [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 96), + [2783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 96), + [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 97), + [2787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 97), + [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, 0, 102), + [2791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, 0, 102), + [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 175), + [2795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 175), + [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 131), + [2799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 131), + [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [2803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 209), + [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 209), + [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 97), + [2811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 97), + [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 102), + [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 102), + [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 103), + [2819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 103), + [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 104), + [2823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 104), + [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 97), + [2827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 97), + [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 97), + [2831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 97), + [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 105), + [2835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 105), + [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 210), + [2839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 210), + [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 197), + [2843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 197), + [2845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 198), + [2847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 198), + [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 131), + [2851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 131), + [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 177), + [2855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 177), + [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, 0, 199), + [2859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, 0, 199), + [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 178), + [2863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 178), + [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 179), + [2867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 179), + [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 180), + [2871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 180), + [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 181), + [2875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 181), + [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 134), + [2879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 134), + [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 62), + [2883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 62), + [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 182), + [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 182), + [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 183), + [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 183), + [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 125), + [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 125), + [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 202), + [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 202), + [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 184), + [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 184), + [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 185), + [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 185), + [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 203), + [2911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 203), + [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 126), + [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 126), + [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 84), + [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 84), + [2921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributes, 1, 0, 0), + [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributes, 1, 0, 0), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, 0, 188), + [2929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, 0, 188), + [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 127), + [2933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 127), + [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), + [2937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), + [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 151), + [2941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 151), + [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 132), + [2945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 132), + [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 6), + [2949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 6), + [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [2953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 89), + [2957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 89), + [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, 0, 121), + [2965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, 0, 121), + [2967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 83), + [2969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 83), + [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), + [2973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), + [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 192), + [2977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 192), + [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 141), + [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 141), + [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 62), + [2985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 62), + [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 193), + [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 193), + [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 194), + [3001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 194), + [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 142), + [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 142), + [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [3009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [3023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), + [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), + [3027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributes_repeat1, 1, 0, 0), + [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 1, 0, 0), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), + [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), + [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), + [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), + [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), + [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), + [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), + [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), + [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), + [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), + [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), + [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), + [3305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(3627), + [3308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4, 0, 0), + [3310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4, 0, 0), + [3312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [3314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(3833), + [3317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2, 0, 0), + [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2, 0, 0), + [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 25), + [3325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 25), + [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [3335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), + [3337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), + [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [3347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 21), + [3349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 21), + [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 113), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [3361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 113), + [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), + [3371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 5), + [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), + [3375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 1), + [3377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 1), + [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 30), + [3389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 30), + [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 30), + [3393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 30), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [3397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), + [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), + [3401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3868), + [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 54), + [3406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 54), + [3408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 53), + [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 53), + [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [3414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [3416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 6), + [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), + [3420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), + [3422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), + [3424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(3839), + [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), + [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4, 0, 0), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [3441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), + [3443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [3445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 1, 0, 0), + [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 19), + [3453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 19), + [3455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 18), + [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 18), + [3459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 49), + [3461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 49), + [3463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 48), + [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 48), + [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 114), + [3469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 114), + [3471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(3827), + [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 31), + [3476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 31), + [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3, 0, 0), + [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 31), + [3482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 31), + [3484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 129), + [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 129), + [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 129), + [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), + [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [3498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), + [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [3502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), + [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [3506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), + [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), + [3510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), + [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [3516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 0), + [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), + [3520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(3837), + [3523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 186), + [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 186), + [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 186), + [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [3535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, 0, 0), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [3539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 117), + [3541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 117), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [3545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), + [3551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, 0, 0), + [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), + [3559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, 0, 0), + [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 6, 0, 0), + [3563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 6, 0, 0), + [3565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), + [3567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6, 0, 0), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), + [3573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), + [3575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), + [3577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [3581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), + [3591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [3593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [3595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [3597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 7), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [3601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_block_repeat2, 1, 0, 0), + [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat2, 1, 0, 0), + [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), + [3607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), + [3609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 24), + [3615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 24), + [3617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), + [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [3621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), + [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), + [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 26), + [3645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 26), + [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 27), + [3649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 27), + [3651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 49), + [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 29), + [3655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 29), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [3659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [3663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 32), + [3665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 32), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 33), + [3671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 33), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 54), + [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), + [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), + [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), + [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [3695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 57), + [3697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 57), + [3699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 58), + [3701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 58), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [3707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_without_attribute, 1, 0, 0), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [3711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_without_attribute, 1, 0, 0), + [3713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [3715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2, 0, 0), + [3717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 75), + [3719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 75), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [3723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 77), + [3725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 77), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [3729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 78), + [3731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 78), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 19), + [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [3739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3, 0, 0), + [3741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3, 0, 0), + [3743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), + [3745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), + [3747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 7, 0, 232), + [3749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 7, 0, 232), + [3751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 164), + [3753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 164), + [3755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [3759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), + [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 165), + [3767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 165), + [3769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_never_type, 1, 0, 0), + [3771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_never_type, 1, 0, 0), + [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [3779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 138), + [3781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 138), + [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 166), + [3785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 166), + [3787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 108), + [3789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 108), + [3791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 4), + [3793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 4), + [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [3797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [3799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 112), + [3801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 112), + [3803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [3805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [3807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [3809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [3811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, 0, 15), + [3813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, 0, 15), + [3815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2, 0, 0), + [3817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2, 0, 0), + [3819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [3821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [3823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 0), + [3825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 0), + [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 115), + [3829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 115), + [3831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [3833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 116), + [3837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 116), + [3839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), + [3841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), + [3843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), + [3845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2, 0, 0), + [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 50), + [3849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 51), + [3851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 50), + [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), + [3855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), + [3857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [3859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [3861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, 0, 28), + [3863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, 0, 28), + [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 13), + [3867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 13), + [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), + [3871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), + [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 157), + [3875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 157), + [3877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 14), + [3879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 14), + [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), + [3883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), + [3885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, 0, 111), + [3887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, 0, 111), + [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 89), + [3891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 89), + [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, 0, 167), + [3895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, 0, 167), + [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [3899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [3901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [3903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 55), + [3907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 55), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 118), + [3913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 118), + [3915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [3917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), + [3919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3, 0, 0), + [3921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3, 0, 0), + [3923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, 0, 59), + [3925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, 0, 59), + [3927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 60), + [3929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 161), + [3931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 161), + [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [3935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), + [3939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), + [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 106), + [3943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 106), + [3945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 115), + [3947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 115), + [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [3951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), + [3955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), + [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [3959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 4, 0, 63), + [3963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 4, 0, 63), + [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [3967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [3969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 0), + [3971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 0), + [3973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 10), + [3975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 10), + [3977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 120), + [3979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 120), + [3981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_with_attribute, 2, 0, 12), + [3983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_with_attribute, 2, 0, 12), + [3985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 214), + [3987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 214), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [3993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [3995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), + [3997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), + [3999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [4001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [4003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 73), + [4005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 73), + [4007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 74), + [4009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 74), + [4011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, 0, 74), + [4013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, 0, 74), + [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), + [4017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), + [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 3, 0, 0), + [4021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 3, 0, 0), + [4023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), + [4025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), + [4027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 20), + [4029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 20), + [4031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, 0, 34), + [4033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, 0, 34), + [4035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 81), + [4037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 81), + [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [4041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [4043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), + [4045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), + [4047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 115), + [4049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 115), + [4051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 0), + [4053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 0), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [4067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), + [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [4083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [4087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3, 0, 0), + [4095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3, 0, 0), + [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), + [4099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [4101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), + [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), + [4105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 137), + [4107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 137), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [4113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [4115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [4117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [4119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(2852), + [4122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [4124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(3431), + [4127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 55), + [4129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 55), + [4131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 56), + [4133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 56), + [4135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [4139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), + [4141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [4173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [4183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [4189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), + [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), + [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [4207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), + [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [4221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), + [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [4261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [4269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [4275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [4291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [4293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [4303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [4305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [4307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [4313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [4317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [4319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [4333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [4341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 6, 0, 287), + [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 168), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [4347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 129), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [4351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [4353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [4363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 217), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [4385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 186), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [4405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [4411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [4421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, 0, 261), + [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [4427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 3, 0, 0), + [4429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2, 0, 0), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [4433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 200), + [4435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 201), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 149), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [4457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [4459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 150), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [4463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, 0, 260), + [4465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 216), + [4467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3, 0, 0), + [4469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 129), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [4521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 119), + [4523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 20), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), + [4535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), + [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), + [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), + [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), + [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), + [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), + [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), + [4559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6, 0, 0), + [4561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6, 0, 0), + [4563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4, 0, 0), + [4565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4, 0, 0), + [4567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5, 0, 0), + [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5, 0, 0), + [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), + [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), + [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), + [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), + [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [4597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [4603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), + [4625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), + [4627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [4699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), REDUCE(sym__pattern, 1, 0, 0), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [4726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), + [4728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [4742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 48), REDUCE(sym_scoped_type_identifier, 3, 0, 49), + [4745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 53), REDUCE(sym_scoped_type_identifier, 3, 0, 54), + [4748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [4756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [4758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [4782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [4787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 18), REDUCE(sym_scoped_type_identifier, 3, 0, 19), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [4796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 38), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [4800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_pattern, 3, 0, 70), + [4802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_pattern, 3, 0, 70), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), + [4826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), + [4828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 69), + [4830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 69), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [4842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), + [4844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 56), + [4846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 56), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [4850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [4856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1, 0, 0), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [4870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 22), + [4872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 22), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [4876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 64), + [4878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 64), + [4880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 65), + [4882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 65), + [4884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 23), + [4886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 23), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [4916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3, 0, 0), + [4918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 66), + [4920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [4922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 67), + [4924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 67), + [4926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), + [4928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 72), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [4936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 66), + [4938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 72), + [4940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 66), + [4942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), + [4944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 66), + [4946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [4950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 66), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [4954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [4960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [4964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [4970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), + [4972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 66), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [4976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 67), + [4978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 72), + [4980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 66), + [4982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [4988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [4990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2, 0, 0), + [4992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 67), + [4994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3, 0, 0), + [4996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), + [4998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2, 0, 0), + [5000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 66), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [5004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), + [5006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 72), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [5028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2, 0, 0), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [5064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3, 0, 0), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [5074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(83), + [5077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), + [5079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(84), + [5082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(85), + [5085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 1), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [5094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), + [5096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(910), + [5099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2, 0, 0), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [5117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2535), + [5120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), + [5122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2346), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [5129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [5137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), + [5139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [5217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1, 0, 0), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [5239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [5253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), + [5255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), + [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [5259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), + [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [5285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 6), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [5301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1, 0, 0), + [5303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [5311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 102), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [5319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [5323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2, 0, 0), + [5325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [5333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3879), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [5337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [5339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 39), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [5363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), + [5365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [5375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [5381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), REDUCE(sym_tuple_struct_pattern, 3, 0, 66), + [5384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), REDUCE(sym_tuple_struct_pattern, 4, 0, 66), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [5457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3, 0, 0), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [5473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), + [5475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1574), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [5494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [5528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 189), + [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [5542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [5564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), + [5567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 234), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [5589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 111), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [5593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [5601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(2102), + [5604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(389), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [5617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 74), + [5619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 28), + [5621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 74), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [5627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 269), + [5629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 234), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [5633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), REDUCE(sym_tuple_pattern, 2, 0, 0), + [5636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 0), + [5638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 28), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [5664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 189), + [5666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 111), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [5688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, 0, 269), + [5690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 122), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [5698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [5704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2, 0, 0), + [5706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 123), + [5708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 1, 0, 39), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [5726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [5742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), + [5744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [5764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [5766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [5768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [5780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), + [5782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [5802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 71), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [5838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, 0, 56), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [5860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 158), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [5882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [5884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [5900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [5916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), + [5918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [5934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [5936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [5946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [5948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3130), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [5965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [5969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [5973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [5979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 121), + [5981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [5983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), + [5985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [5991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [5999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [6013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(870), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [6028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 109), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [6036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [6038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), + [6040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [6078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [6080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), + [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), + [6084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 212), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [6090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [6116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [6118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [6124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, 0, 74), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [6148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(400), + [6151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [6203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), + [6205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), SHIFT_REPEAT(3529), + [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [6232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), + [6234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(3227), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [6239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [6261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [6269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 43), + [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [6285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(652), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [6300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), + [6302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2334), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [6307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 13), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [6315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(212), + [6318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(236), + [6321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 9), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [6325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(842), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [6344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 176), + [6346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [6362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 68), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [6378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 98), + [6380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, 0, 111), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [6390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 235), + [6392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 99), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [6400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [6426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), + [6428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), + [6430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), + [6432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [6438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 100), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [6442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 101), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [6460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 130), + [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [6476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 28), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [6484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 190), + [6486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 190), SHIFT_REPEAT(824), + [6489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 191), + [6491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [6493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2187), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [6500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [6510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), + [6512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2339), + [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [6529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [6543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 2, 0, 0), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [6553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), + [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [6557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [6563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [6567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), + [6569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 44), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [6573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 87), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [6593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), + [6595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2013), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [6606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(998), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [6617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 110), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [6621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(476), + [6624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 159), + [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [6628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, 0, 259), + [6630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 160), + [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [6646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), + [6648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [6666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [6670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 213), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [6678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4, 0, 0), + [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [6692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), + [6694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2252), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [6711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), + [6713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), + [6715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3863), + [6717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), + [6719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), + [6721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [6727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 103), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [6733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), + [6735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2553), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [6742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, 0, 0), + [6744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [6746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [6754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 3), + [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [6768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [6774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), + [6784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), + [6786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [6788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [6790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), + [6792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), + [6794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 2), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [6804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [6806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 162), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [6822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [6826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 163), + [6828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [6846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, 0, 76), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [6852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [6854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [6856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [6858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [6866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [6868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [6870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [6872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), + [6874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [6876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), + [6878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [6880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [6886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [6888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [6890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [6892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [6894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [6896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [6898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [6916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 6, 0, 215), + [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [6920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [6936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 2, 0, 88), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [6944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [6980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 3, 0, 0), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [6984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [6988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [6994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [7000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 41), + [7002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [7004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [7010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), + [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), + [7028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [7100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 3), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [7116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 2), + [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [7136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [7146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 79), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [7164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 80), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [7214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3, 0, 0), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [7252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inner_line_doc_comment_marker, 1, 0, 0), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [7294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__outer_line_doc_comment_marker, 1, 0, 0), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [7348] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [7494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 187), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [7518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, 0, 0), + [7520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2, 0, 0), + [7522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), + [7524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 4, 0, 61), + [7526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 17), + [7528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 0), + [7530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 16), }; enum ts_external_scanner_symbol_identifiers { @@ -204125,13 +210897,13 @@ static const bool ts_external_scanner_states[10][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_float_literal] = true, }, [7] = { - [ts_external_token__line_doc_content] = true, + [ts_external_token__raw_string_literal_end] = true, }, [8] = { - [ts_external_token__raw_string_literal_end] = true, + [ts_external_token_raw_string_literal_content] = true, }, [9] = { - [ts_external_token_raw_string_literal_content] = true, + [ts_external_token__line_doc_content] = true, }, }; @@ -204162,6 +210934,7 @@ TS_PUBLIC const TSLanguage *tree_sitter_rust(void) { .state_count = STATE_COUNT, .large_state_count = LARGE_STATE_COUNT, .production_id_count = PRODUCTION_ID_COUNT, + .supertype_count = SUPERTYPE_COUNT, .field_count = FIELD_COUNT, .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, .parse_table = &ts_parse_table[0][0], @@ -204172,6 +210945,9 @@ TS_PUBLIC const TSLanguage *tree_sitter_rust(void) { .field_names = ts_field_names, .field_map_slices = ts_field_map_slices, .field_map_entries = ts_field_map_entries, + .supertype_map_slices = ts_supertype_map_slices, + .supertype_map_entries = ts_supertype_map_entries, + .supertype_symbols = ts_supertype_symbols, .symbol_metadata = ts_symbol_metadata, .public_symbol_map = ts_symbol_map, .alias_map = ts_non_terminal_alias_map, @@ -204190,6 +210966,13 @@ TS_PUBLIC const TSLanguage *tree_sitter_rust(void) { tree_sitter_rust_external_scanner_deserialize, }, .primary_state_ids = ts_primary_state_ids, + .name = "rust", + .max_reserved_word_set_size = 0, + .metadata = { + .major_version = 0, + .minor_version = 23, + .patch_version = 2, + }, }; return &language; } diff --git a/test/corpus/declarations.txt b/test/corpus/declarations.txt index 77195e86..75d07b17 100644 --- a/test/corpus/declarations.txt +++ b/test/corpus/declarations.txt @@ -178,15 +178,17 @@ fn foo(bar: impl for<'a> Baz>) {} (function_item name: (identifier) parameters: (parameters - (attribute_item - (attribute - (identifier))) + (attributes + (attribute_item + (attribute + (identifier)))) (parameter pattern: (identifier) type: (primitive_type)) - (attribute_item - (attribute - (identifier))) + (attributes + (attribute_item + (attribute + (identifier)))) (parameter pattern: (identifier) type: (primitive_type))) @@ -289,7 +291,7 @@ fn foo<'a>(x: impl 'a + Clone) {} (lifetime (identifier)) (type_identifier))))) - (block))) + (block))) ================================================================================ Functions with precise capture syntax @@ -305,7 +307,7 @@ fn capture(&self) -> impl Iterator + use<'_, T> { (identifier) (type_parameters (type_parameter - (type_identifier))) + (type_identifier))) (parameters (self_parameter (self))) @@ -317,10 +319,10 @@ fn capture(&self) -> impl Iterator + use<'_, T> { (type_binding (type_identifier) (primitive_type))))) - (use_bounds - (lifetime - (identifier)) - (type_identifier))) + (use_bounds + (lifetime + (identifier)) + (type_identifier))) (block))) ================================================================================ @@ -346,7 +348,7 @@ fn capture(&self) -> impl Iterator + use<> { (type_binding (type_identifier) (primitive_type))))) - (use_bounds)) + (use_bounds)) (block))) ================================================================================ @@ -721,9 +723,10 @@ struct Empty(pub ()); (field_declaration (field_identifier) (primitive_type)) - (attribute_item - (attribute - (identifier))) + (attributes + (attribute_item + (attribute + (identifier)))) (field_declaration (field_identifier) (primitive_type)))) @@ -832,9 +835,10 @@ struct E<#[attr] T> {} (struct_item name: (type_identifier) type_parameters: (type_parameters - (attribute_item - (attribute - (identifier))) + (attributes + (attribute_item + (attribute + (identifier)))) (type_parameter name: (type_identifier))) body: (field_declaration_list))) @@ -900,13 +904,14 @@ pub enum Node { (field_declaration (field_identifier) (primitive_type)))) - (attribute_item - (attribute - (identifier))) - (attribute_item - (attribute - (identifier))) (enum_variant + (attributes + (attribute_item + (attribute + (identifier))) + (attribute_item + (attribute + (identifier)))) (identifier) (field_declaration_list (field_declaration @@ -1232,58 +1237,141 @@ struct Foo; #[cfg(target_os = "macos")] mod macos_only {} +enum Foo { + #[cfg(foo)] + Variant +} + #![allow(clippy::useless_transmute)] -#[clippy::cyclomatic_complexity = "100"] +fn expressions_with_attributes() { + #[cfg(test)] + { + foo(); + } + + #[bar] + hello(#[world] 1); + + #[decl] + let x = [ #[first] 1, #[second] #[last] 2 ]; +} -------------------------------------------------------------------------------- (source_file - (attribute_item - (attribute - (identifier))) - (function_item - name: (identifier) - parameters: (parameters) - body: (block)) - (attribute_item - (attribute - (identifier) - arguments: (token_tree - (identifier)))) - (struct_item - name: (type_identifier)) - (attribute_item - (attribute - (identifier) - arguments: (token_tree - (identifier) - (identifier)))) - (struct_item - name: (type_identifier)) - (attribute_item - (attribute - (identifier) - arguments: (token_tree - (identifier) - (string_literal - (string_content))))) - (mod_item - name: (identifier) - body: (declaration_list)) + (declaration_with_attribute + attributes: (attributes + (attribute_item + (attribute + (identifier)))) + declaration: (function_item + name: (identifier) + parameters: (parameters) + body: (block))) + (declaration_with_attribute + attributes: (attributes + (attribute_item + (attribute + (identifier) + arguments: (token_tree + (identifier))))) + declaration: (struct_item + name: (type_identifier))) + (declaration_with_attribute + attributes: (attributes + (attribute_item + (attribute + (identifier) + arguments: (token_tree + (identifier) + (identifier))))) + declaration: (struct_item + name: (type_identifier))) + (declaration_with_attribute + attributes: (attributes + (attribute_item + (attribute + (identifier) + arguments: (token_tree + (identifier) + (string_literal + (string_content)))))) + declaration: (mod_item + name: (identifier) + body: (declaration_list))) + (enum_item + name: (type_identifier) + body: (enum_variant_list + (enum_variant + (attributes + (attribute_item + (attribute + (identifier) + arguments: (token_tree + (identifier))))) + name: (identifier)))) (inner_attribute_item (attribute (identifier) arguments: (token_tree (identifier) (identifier)))) - (attribute_item - (attribute - (scoped_identifier - path: (identifier) - name: (identifier)) - value: (string_literal - (string_content))))) + (function_item + name: (identifier) + parameters: (parameters) + body: (block + (expression_statement + (block_expression_with_attribute + attributes: (attributes + (attribute_item + (attribute + (identifier) + arguments: (token_tree + (identifier))))) + expression: (block + (expression_statement + (call_expression + function: (identifier) + arguments: (arguments)))))) + (expression_statement + (expression_with_attribute + attributes: (attributes + (attribute_item + (attribute + (identifier)))) + expression: (call_expression + function: (identifier) + arguments: (arguments + (expression_with_attribute + attributes: (attributes + (attribute_item + (attribute + (identifier)))) + expression: (integer_literal)))))) + (declaration_with_attribute + attributes: (attributes + (attribute_item + (attribute + (identifier)))) + declaration: (let_declaration + pattern: (identifier) + value: (array_expression + (expression_with_attribute + attributes: (attributes + (attribute_item + (attribute + (identifier)))) + expression: (integer_literal)) + (expression_with_attribute + attributes: (attributes + (attribute_item + (attribute + (identifier))) + (attribute_item + (attribute + (identifier)))) + expression: (integer_literal)))))))) ================================================================================ Inner attributes @@ -1315,18 +1403,18 @@ match ty { (match_expression value: (identifier) body: (match_block - (match_arm - (inner_attribute_item - (attribute + (inner_attribute_item + (attribute + (identifier) + arguments: (token_tree (identifier) - arguments: (token_tree - (identifier) - (token_tree - (identifier) - (identifier)) + (token_tree (identifier) - (token_tree - (identifier))))) + (identifier)) + (identifier) + (token_tree + (identifier))))) + (match_arm pattern: (match_pattern (tuple_struct_pattern type: (scoped_identifier @@ -1358,28 +1446,32 @@ fn baz() {} -------------------------------------------------------------------------------- (source_file - (attribute_item - (attribute + (declaration_with_attribute + (attributes + (attribute_item + (attribute + (identifier) + (macro_invocation + (identifier) + (token_tree + (string_literal + (string_content))))))) + (function_item (identifier) - (macro_invocation - (identifier) - (token_tree - (string_literal - (string_content)))))) - (function_item - (identifier) - (parameters) - (block)) - (attribute_item - (attribute + (parameters) + (block))) + (declaration_with_attribute + (attributes + (attribute_item + (attribute + (identifier) + (scoped_identifier + (identifier) + (identifier))))) + (function_item (identifier) - (scoped_identifier - (identifier) - (identifier)))) - (function_item - (identifier) - (parameters) - (block))) + (parameters) + (block)))) ================================================================================ Attribute macros @@ -1396,32 +1488,36 @@ foo(#[bar(some tokens are special in other contexts: $/';()*()+.)] x); (call_expression function: (identifier) arguments: (arguments - (attribute_item - (attribute - (identifier) - arguments: (token_tree - (identifier) - (identifier)))) - (identifier) + (expression_with_attribute + attributes: (attributes + (attribute_item + (attribute + (identifier) + arguments: (token_tree + (identifier) + (identifier))))) + expression: (identifier)) (identifier)))) (expression_statement (call_expression function: (identifier) arguments: (arguments - (attribute_item - (attribute - (identifier) - arguments: (token_tree - (identifier) - (identifier) - (identifier) - (identifier) - (identifier) - (identifier) - (identifier) - (token_tree) - (token_tree)))) - (identifier))))) + (expression_with_attribute + attributes: (attributes + (attribute_item + (attribute + (identifier) + arguments: (token_tree + (identifier) + (identifier) + (identifier) + (identifier) + (identifier) + (identifier) + (identifier) + (token_tree) + (token_tree))))) + expression: (identifier)))))) ================================================================================ Derive macro helper attributes @@ -1447,48 +1543,52 @@ pub enum Error { (scoped_identifier (identifier) (identifier))) - (attribute_item - (attribute - (identifier) - (token_tree - (identifier) - (identifier)))) - (enum_item - (visibility_modifier) - (type_identifier) - (enum_variant_list + (declaration_with_attribute + (attributes (attribute_item (attribute (identifier) (token_tree - (string_literal - (string_content)) (identifier) - (token_tree - (integer_literal))))) - (enum_variant - (identifier) - (ordered_field_declaration_list - (type_identifier))) - (attribute_item - (attribute + (identifier))))) + (enum_item + (visibility_modifier) + (type_identifier) + (enum_variant_list + (enum_variant + (attributes + (attribute_item + (attribute + (identifier) + (token_tree + (string_literal + (string_content)) + (identifier) + (token_tree + (integer_literal)))))) (identifier) - (token_tree - (string_literal - (string_content)) - (identifier) - (identifier) - (identifier) - (identifier)))) - (enum_variant - (identifier) - (field_declaration_list - (field_declaration - (field_identifier) - (primitive_type)) - (field_declaration - (field_identifier) - (type_identifier))))))) + (ordered_field_declaration_list + (type_identifier))) + (enum_variant + (attributes + (attribute_item + (attribute + (identifier) + (token_tree + (string_literal + (string_content)) + (identifier) + (identifier) + (identifier) + (identifier))))) + (identifier) + (field_declaration_list + (field_declaration + (field_identifier) + (primitive_type)) + (field_declaration + (field_identifier) + (type_identifier)))))))) ================================================================================ Attributes and Expressions @@ -1514,30 +1614,36 @@ fn foo() { function: (identifier) arguments: (arguments (identifier) - (attribute_item - (attribute - (identifier) - arguments: (token_tree - (identifier) - (string_literal - (string_content))))) - (identifier)))) + (expression_with_attribute + attributes: (attributes + (attribute_item + (attribute + (identifier) + arguments: (token_tree + (identifier) + (string_literal + (string_content)))))) + expression: (identifier))))) (let_declaration pattern: (identifier) value: (array_expression - (attribute_item - (attribute - (identifier))) - (integer_literal) + (expression_with_attribute + attributes: (attributes + (attribute_item + (attribute + (identifier)))) + expression: (integer_literal)) (integer_literal) (integer_literal))) (let_declaration pattern: (identifier) value: (tuple_expression - (attribute_item - (attribute - (identifier))) - (integer_literal) + (expression_with_attribute + attributes: (attributes + (attribute_item + (attribute + (identifier)))) + expression: (integer_literal)) (integer_literal) (integer_literal)))))) diff --git a/test/corpus/expressions.txt b/test/corpus/expressions.txt index 1668704a..4050e66b 100644 --- a/test/corpus/expressions.txt +++ b/test/corpus/expressions.txt @@ -400,20 +400,24 @@ Array expressions length: (integer_literal))) (expression_statement (array_expression - (attribute_item - (attribute - (identifier) - arguments: (token_tree - (identifier)))) - (string_literal - (string_content)) - (attribute_item - (attribute - (identifier) - arguments: (token_tree - (identifier)))) - (string_literal - (string_content))))) + (expression_with_attribute + attributes: (attributes + (attribute_item + (attribute + (identifier) + arguments: (token_tree + (identifier))))) + expression: (string_literal + (string_content))) + (expression_with_attribute + attributes: (attributes + (attribute_item + (attribute + (identifier) + arguments: (token_tree + (identifier))))) + expression: (string_literal + (string_content)))))) ================================================================================ Tuple expressions @@ -772,9 +776,10 @@ let msg = match x { (float_literal))) value: (integer_literal)) (match_arm - (attribute_item - (attribute - (identifier))) + (attributes + (attribute_item + (attribute + (identifier)))) pattern: (match_pattern (integer_literal)) value: (string_literal